Branch data Line data Source code
1 : : /* Control flow functions for trees.
2 : : Copyright (C) 2001-2024 Free Software Foundation, Inc.
3 : : Contributed by Diego Novillo <dnovillo@redhat.com>
4 : :
5 : : This file is part of GCC.
6 : :
7 : : GCC is free software; you can redistribute it and/or modify
8 : : it under the terms of the GNU General Public License as published by
9 : : the Free Software Foundation; either version 3, or (at your option)
10 : : any later version.
11 : :
12 : : GCC is distributed in the hope that it will be useful,
13 : : but WITHOUT ANY WARRANTY; without even the implied warranty of
14 : : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 : : GNU General Public License for more details.
16 : :
17 : : You should have received a copy of the GNU General Public License
18 : : along with GCC; see the file COPYING3. If not see
19 : : <http://www.gnu.org/licenses/>. */
20 : :
21 : : #include "config.h"
22 : : #include "system.h"
23 : : #include "coretypes.h"
24 : : #include "backend.h"
25 : : #include "target.h"
26 : : #include "rtl.h"
27 : : #include "tree.h"
28 : : #include "gimple.h"
29 : : #include "cfghooks.h"
30 : : #include "tree-pass.h"
31 : : #include "ssa.h"
32 : : #include "cgraph.h"
33 : : #include "gimple-pretty-print.h"
34 : : #include "diagnostic-core.h"
35 : : #include "fold-const.h"
36 : : #include "trans-mem.h"
37 : : #include "stor-layout.h"
38 : : #include "print-tree.h"
39 : : #include "cfganal.h"
40 : : #include "gimple-iterator.h"
41 : : #include "gimple-fold.h"
42 : : #include "tree-eh.h"
43 : : #include "gimplify-me.h"
44 : : #include "gimple-walk.h"
45 : : #include "tree-cfg.h"
46 : : #include "tree-ssa-loop-manip.h"
47 : : #include "tree-ssa-loop-niter.h"
48 : : #include "tree-into-ssa.h"
49 : : #include "tree-dfa.h"
50 : : #include "tree-ssa.h"
51 : : #include "except.h"
52 : : #include "cfgloop.h"
53 : : #include "tree-ssa-propagate.h"
54 : : #include "value-prof.h"
55 : : #include "tree-inline.h"
56 : : #include "tree-ssa-live.h"
57 : : #include "tree-ssa-dce.h"
58 : : #include "omp-general.h"
59 : : #include "omp-expand.h"
60 : : #include "tree-cfgcleanup.h"
61 : : #include "gimplify.h"
62 : : #include "attribs.h"
63 : : #include "selftest.h"
64 : : #include "opts.h"
65 : : #include "asan.h"
66 : : #include "profile.h"
67 : : #include "sreal.h"
68 : : #include "gcc-urlifier.h"
69 : :
70 : : /* This file contains functions for building the Control Flow Graph (CFG)
71 : : for a function tree. */
72 : :
73 : : /* Local declarations. */
74 : :
75 : : /* Initial capacity for the basic block array. */
76 : : static const int initial_cfg_capacity = 20;
77 : :
78 : : /* This hash table allows us to efficiently lookup all CASE_LABEL_EXPRs
79 : : which use a particular edge. The CASE_LABEL_EXPRs are chained together
80 : : via their CASE_CHAIN field, which we clear after we're done with the
81 : : hash table to prevent problems with duplication of GIMPLE_SWITCHes.
82 : :
83 : : Access to this list of CASE_LABEL_EXPRs allows us to efficiently
84 : : update the case vector in response to edge redirections.
85 : :
86 : : Right now this table is set up and torn down at key points in the
87 : : compilation process. It would be nice if we could make the table
88 : : more persistent. The key is getting notification of changes to
89 : : the CFG (particularly edge removal, creation and redirection). */
90 : :
91 : : static hash_map<edge, tree> *edge_to_cases;
92 : :
93 : : /* If we record edge_to_cases, this bitmap will hold indexes
94 : : of basic blocks that end in a GIMPLE_SWITCH which we touched
95 : : due to edge manipulations. */
96 : :
97 : : static bitmap touched_switch_bbs;
98 : :
99 : : /* OpenMP region idxs for blocks during cfg pass. */
100 : : static vec<int> bb_to_omp_idx;
101 : :
102 : : /* CFG statistics. */
103 : : struct cfg_stats_d
104 : : {
105 : : long num_merged_labels;
106 : : };
107 : :
108 : : static struct cfg_stats_d cfg_stats;
109 : :
110 : : /* Data to pass to replace_block_vars_by_duplicates_1. */
111 : : struct replace_decls_d
112 : : {
113 : : hash_map<tree, tree> *vars_map;
114 : : tree to_context;
115 : : };
116 : :
117 : : /* Hash table to store last discriminator assigned for each locus. */
118 : : struct locus_discrim_map
119 : : {
120 : : int location_line;
121 : : int discriminator;
122 : : };
123 : :
124 : : /* Hashtable helpers. */
125 : :
126 : : struct locus_discrim_hasher : free_ptr_hash <locus_discrim_map>
127 : : {
128 : : static inline hashval_t hash (const locus_discrim_map *);
129 : : static inline bool equal (const locus_discrim_map *,
130 : : const locus_discrim_map *);
131 : : };
132 : :
133 : : /* Trivial hash function for a location_t. ITEM is a pointer to
134 : : a hash table entry that maps a location_t to a discriminator. */
135 : :
136 : : inline hashval_t
137 : 58745329 : locus_discrim_hasher::hash (const locus_discrim_map *item)
138 : : {
139 : 58745329 : return item->location_line;
140 : : }
141 : :
142 : : /* Equality function for the locus-to-discriminator map. A and B
143 : : point to the two hash table entries to compare. */
144 : :
145 : : inline bool
146 : 64884193 : locus_discrim_hasher::equal (const locus_discrim_map *a,
147 : : const locus_discrim_map *b)
148 : : {
149 : 64884193 : return a->location_line == b->location_line;
150 : : }
151 : :
152 : : static hash_table<locus_discrim_hasher> *discriminator_per_locus;
153 : :
154 : : /* Basic blocks and flowgraphs. */
155 : : static void make_blocks (gimple_seq);
156 : :
157 : : /* Edges. */
158 : : static void make_edges (void);
159 : : static void assign_discriminators (void);
160 : : static void make_cond_expr_edges (basic_block);
161 : : static void make_gimple_switch_edges (gswitch *, basic_block);
162 : : static bool make_goto_expr_edges (basic_block);
163 : : static void make_gimple_asm_edges (basic_block);
164 : : static edge gimple_redirect_edge_and_branch (edge, basic_block);
165 : : static edge gimple_try_redirect_by_replacing_jump (edge, basic_block);
166 : :
167 : : /* Various helpers. */
168 : : static inline bool stmt_starts_bb_p (gimple *, gimple *);
169 : : static bool gimple_verify_flow_info (void);
170 : : static void gimple_make_forwarder_block (edge);
171 : : static gimple *first_non_label_stmt (basic_block);
172 : : static bool verify_gimple_transaction (gtransaction *);
173 : : static bool call_can_make_abnormal_goto (gimple *);
174 : :
175 : : /* Flowgraph optimization and cleanup. */
176 : : static void gimple_merge_blocks (basic_block, basic_block);
177 : : static bool gimple_can_merge_blocks_p (basic_block, basic_block);
178 : : static void remove_bb (basic_block);
179 : : static edge find_taken_edge_computed_goto (basic_block, tree);
180 : : static edge find_taken_edge_cond_expr (const gcond *, tree);
181 : :
182 : : void
183 : 3023828 : init_empty_tree_cfg_for_function (struct function *fn)
184 : : {
185 : : /* Initialize the basic block array. */
186 : 3023828 : init_flow (fn);
187 : 3023828 : profile_status_for_fn (fn) = PROFILE_ABSENT;
188 : 3023828 : n_basic_blocks_for_fn (fn) = NUM_FIXED_BLOCKS;
189 : 3023828 : last_basic_block_for_fn (fn) = NUM_FIXED_BLOCKS;
190 : 3023828 : vec_safe_grow_cleared (basic_block_info_for_fn (fn),
191 : : initial_cfg_capacity, true);
192 : :
193 : : /* Build a mapping of labels to their associated blocks. */
194 : 3023828 : vec_safe_grow_cleared (label_to_block_map_for_fn (fn),
195 : : initial_cfg_capacity, true);
196 : :
197 : 3023828 : SET_BASIC_BLOCK_FOR_FN (fn, ENTRY_BLOCK, ENTRY_BLOCK_PTR_FOR_FN (fn));
198 : 3023828 : SET_BASIC_BLOCK_FOR_FN (fn, EXIT_BLOCK, EXIT_BLOCK_PTR_FOR_FN (fn));
199 : :
200 : 3023828 : ENTRY_BLOCK_PTR_FOR_FN (fn)->next_bb
201 : 3023828 : = EXIT_BLOCK_PTR_FOR_FN (fn);
202 : 3023828 : EXIT_BLOCK_PTR_FOR_FN (fn)->prev_bb
203 : 3023828 : = ENTRY_BLOCK_PTR_FOR_FN (fn);
204 : 3023828 : }
205 : :
206 : : void
207 : 2940576 : init_empty_tree_cfg (void)
208 : : {
209 : 2940576 : init_empty_tree_cfg_for_function (cfun);
210 : 2940576 : }
211 : :
212 : : /*---------------------------------------------------------------------------
213 : : Create basic blocks
214 : : ---------------------------------------------------------------------------*/
215 : :
216 : : /* Entry point to the CFG builder for trees. SEQ is the sequence of
217 : : statements to be added to the flowgraph. */
218 : :
219 : : static void
220 : 2682190 : build_gimple_cfg (gimple_seq seq)
221 : : {
222 : : /* Register specific gimple functions. */
223 : 2682190 : gimple_register_cfg_hooks ();
224 : :
225 : 2682190 : memset ((void *) &cfg_stats, 0, sizeof (cfg_stats));
226 : :
227 : 2682190 : init_empty_tree_cfg ();
228 : :
229 : 2682190 : make_blocks (seq);
230 : :
231 : : /* Make sure there is always at least one block, even if it's empty. */
232 : 2682190 : if (n_basic_blocks_for_fn (cfun) == NUM_FIXED_BLOCKS)
233 : 0 : create_empty_bb (ENTRY_BLOCK_PTR_FOR_FN (cfun));
234 : :
235 : : /* Adjust the size of the array. */
236 : 2682190 : if (basic_block_info_for_fn (cfun)->length ()
237 : 2682190 : < (size_t) n_basic_blocks_for_fn (cfun))
238 : 0 : vec_safe_grow_cleared (basic_block_info_for_fn (cfun),
239 : : n_basic_blocks_for_fn (cfun));
240 : :
241 : : /* To speed up statement iterator walks, we first purge dead labels. */
242 : 2682190 : cleanup_dead_labels ();
243 : :
244 : : /* Group case nodes to reduce the number of edges.
245 : : We do this after cleaning up dead labels because otherwise we miss
246 : : a lot of obvious case merging opportunities. */
247 : 2682190 : group_case_labels ();
248 : :
249 : : /* Create the edges of the flowgraph. */
250 : 2682190 : discriminator_per_locus = new hash_table<locus_discrim_hasher> (13);
251 : 2682190 : make_edges ();
252 : 2682190 : assign_discriminators ();
253 : 2682190 : cleanup_dead_labels ();
254 : 2682190 : delete discriminator_per_locus;
255 : 2682190 : discriminator_per_locus = NULL;
256 : 2682190 : }
257 : :
258 : : /* Look for ANNOTATE calls with loop annotation kind in BB; if found, remove
259 : : them and propagate the information to LOOP. We assume that the annotations
260 : : come immediately before the condition in BB, if any. */
261 : :
262 : : static void
263 : 1483162 : replace_loop_annotate_in_block (basic_block bb, class loop *loop)
264 : : {
265 : 1483162 : gimple_stmt_iterator gsi = gsi_last_bb (bb);
266 : 1483162 : gimple *stmt = gsi_stmt (gsi);
267 : :
268 : 1483162 : if (!(stmt && gimple_code (stmt) == GIMPLE_COND))
269 : 564446 : return;
270 : :
271 : 928546 : for (gsi_prev_nondebug (&gsi); !gsi_end_p (gsi); gsi_prev (&gsi))
272 : : {
273 : 507199 : stmt = gsi_stmt (gsi);
274 : 507199 : if (gimple_code (stmt) != GIMPLE_CALL)
275 : : break;
276 : 58884 : if (!gimple_call_internal_p (stmt)
277 : 58884 : || gimple_call_internal_fn (stmt) != IFN_ANNOTATE)
278 : : break;
279 : :
280 : 4915 : switch ((annot_expr_kind) tree_to_shwi (gimple_call_arg (stmt, 1)))
281 : : {
282 : 245 : case annot_expr_ivdep_kind:
283 : 245 : loop->safelen = INT_MAX;
284 : 245 : break;
285 : 2006 : case annot_expr_unroll_kind:
286 : 2006 : loop->unroll
287 : 2006 : = (unsigned short) tree_to_shwi (gimple_call_arg (stmt, 2));
288 : 2006 : cfun->has_unroll = true;
289 : 2006 : break;
290 : 2597 : case annot_expr_no_vector_kind:
291 : 2597 : loop->dont_vectorize = true;
292 : 2597 : break;
293 : 3 : case annot_expr_vector_kind:
294 : 3 : loop->force_vectorize = true;
295 : 3 : cfun->has_force_vectorize_loops = true;
296 : 3 : break;
297 : 0 : case annot_expr_parallel_kind:
298 : 0 : loop->can_be_parallel = true;
299 : 0 : loop->safelen = INT_MAX;
300 : 0 : break;
301 : 64 : case annot_expr_maybe_infinite_kind:
302 : 64 : loop->finite_p = false;
303 : 64 : break;
304 : 0 : default:
305 : 0 : gcc_unreachable ();
306 : : }
307 : :
308 : 4915 : stmt = gimple_build_assign (gimple_call_lhs (stmt),
309 : : gimple_call_arg (stmt, 0));
310 : 4915 : gsi_replace (&gsi, stmt, true);
311 : : }
312 : : }
313 : :
314 : : /* Look for ANNOTATE calls with loop annotation kind; if found, remove
315 : : them and propagate the information to the loop. We assume that the
316 : : annotations come immediately before the condition of the loop. */
317 : :
318 : : static void
319 : 2682190 : replace_loop_annotate (void)
320 : : {
321 : 2682190 : basic_block bb;
322 : 2682190 : gimple_stmt_iterator gsi;
323 : 2682190 : gimple *stmt;
324 : :
325 : 8618744 : for (auto loop : loops_list (cfun, 0))
326 : : {
327 : : /* Push the global flag_finite_loops state down to individual loops. */
328 : 572174 : loop->finite_p = flag_finite_loops;
329 : :
330 : : /* Check all exit source blocks for annotations. */
331 : 3191118 : for (auto e : get_loop_exit_edges (loop))
332 : 2055336 : replace_loop_annotate_in_block (e->src, loop);
333 : 2682190 : }
334 : :
335 : : /* Remove IFN_ANNOTATE. Safeguard for the case loop->latch == NULL. */
336 : 19216894 : FOR_EACH_BB_FN (bb, cfun)
337 : : {
338 : 158541676 : for (gsi = gsi_last_bb (bb); !gsi_end_p (gsi); gsi_prev (&gsi))
339 : : {
340 : 62736134 : stmt = gsi_stmt (gsi);
341 : 62736134 : if (gimple_code (stmt) != GIMPLE_CALL)
342 : 53287063 : continue;
343 : 9449071 : if (!gimple_call_internal_p (stmt)
344 : 9449071 : || gimple_call_internal_fn (stmt) != IFN_ANNOTATE)
345 : 9449071 : continue;
346 : :
347 : 0 : switch ((annot_expr_kind) tree_to_shwi (gimple_call_arg (stmt, 1)))
348 : : {
349 : 0 : case annot_expr_ivdep_kind:
350 : 0 : case annot_expr_unroll_kind:
351 : 0 : case annot_expr_no_vector_kind:
352 : 0 : case annot_expr_vector_kind:
353 : 0 : case annot_expr_parallel_kind:
354 : 0 : case annot_expr_maybe_infinite_kind:
355 : 0 : break;
356 : 0 : default:
357 : 0 : gcc_unreachable ();
358 : : }
359 : :
360 : 0 : warning_at (gimple_location (stmt), 0, "ignoring loop annotation");
361 : 0 : stmt = gimple_build_assign (gimple_call_lhs (stmt),
362 : : gimple_call_arg (stmt, 0));
363 : 0 : gsi_replace (&gsi, stmt, true);
364 : : }
365 : : }
366 : 2682190 : }
367 : :
368 : : static unsigned int
369 : 2682190 : execute_build_cfg (void)
370 : : {
371 : 2682190 : gimple_seq body = gimple_body (current_function_decl);
372 : :
373 : 2682190 : build_gimple_cfg (body);
374 : 2682190 : gimple_set_body (current_function_decl, NULL);
375 : 2682190 : if (dump_file && (dump_flags & TDF_DETAILS))
376 : : {
377 : 2 : fprintf (dump_file, "Scope blocks:\n");
378 : 2 : dump_scope_blocks (dump_file, dump_flags);
379 : : }
380 : 2682190 : cleanup_tree_cfg ();
381 : :
382 : 2682190 : bb_to_omp_idx.release ();
383 : :
384 : 2682190 : loop_optimizer_init (AVOID_CFG_MODIFICATIONS);
385 : 2682190 : replace_loop_annotate ();
386 : 2682190 : return 0;
387 : : }
388 : :
389 : : namespace {
390 : :
391 : : const pass_data pass_data_build_cfg =
392 : : {
393 : : GIMPLE_PASS, /* type */
394 : : "cfg", /* name */
395 : : OPTGROUP_NONE, /* optinfo_flags */
396 : : TV_TREE_CFG, /* tv_id */
397 : : PROP_gimple_leh, /* properties_required */
398 : : ( PROP_cfg | PROP_loops ), /* properties_provided */
399 : : 0, /* properties_destroyed */
400 : : 0, /* todo_flags_start */
401 : : 0, /* todo_flags_finish */
402 : : };
403 : :
404 : : class pass_build_cfg : public gimple_opt_pass
405 : : {
406 : : public:
407 : 280130 : pass_build_cfg (gcc::context *ctxt)
408 : 560260 : : gimple_opt_pass (pass_data_build_cfg, ctxt)
409 : : {}
410 : :
411 : : /* opt_pass methods: */
412 : 2682190 : unsigned int execute (function *) final override
413 : : {
414 : 2682190 : return execute_build_cfg ();
415 : : }
416 : :
417 : : }; // class pass_build_cfg
418 : :
419 : : } // anon namespace
420 : :
421 : : gimple_opt_pass *
422 : 280130 : make_pass_build_cfg (gcc::context *ctxt)
423 : : {
424 : 280130 : return new pass_build_cfg (ctxt);
425 : : }
426 : :
427 : :
428 : : /* Return true if T is a computed goto. */
429 : :
430 : : bool
431 : 560742313 : computed_goto_p (gimple *t)
432 : : {
433 : 560742313 : return (gimple_code (t) == GIMPLE_GOTO
434 : 560742313 : && TREE_CODE (gimple_goto_dest (t)) != LABEL_DECL);
435 : : }
436 : :
437 : : /* Returns true if the sequence of statements STMTS only contains
438 : : a call to __builtin_unreachable (). */
439 : :
440 : : bool
441 : 3574655 : gimple_seq_unreachable_p (gimple_seq stmts)
442 : : {
443 : 3574655 : if (stmts == NULL
444 : : /* Return false if -fsanitize=unreachable, we don't want to
445 : : optimize away those calls, but rather turn them into
446 : : __ubsan_handle_builtin_unreachable () or __builtin_trap ()
447 : : later. */
448 : 3574655 : || sanitize_flags_p (SANITIZE_UNREACHABLE))
449 : 3212 : return false;
450 : :
451 : 3571443 : gimple_stmt_iterator gsi = gsi_last (stmts);
452 : :
453 : 3571443 : if (!gimple_call_builtin_p (gsi_stmt (gsi), BUILT_IN_UNREACHABLE))
454 : : return false;
455 : :
456 : 940704 : for (gsi_prev (&gsi); !gsi_end_p (gsi); gsi_prev (&gsi))
457 : : {
458 : 12547 : gimple *stmt = gsi_stmt (gsi);
459 : 12547 : if (gimple_code (stmt) != GIMPLE_LABEL
460 : 7001 : && !is_gimple_debug (stmt)
461 : 13499 : && !gimple_clobber_p (stmt))
462 : : return false;
463 : : }
464 : : return true;
465 : : }
466 : :
467 : : /* Returns true for edge E where e->src ends with a GIMPLE_COND and
468 : : the other edge points to a bb with just __builtin_unreachable ().
469 : : I.e. return true for C->M edge in:
470 : : <bb C>:
471 : : ...
472 : : if (something)
473 : : goto <bb N>;
474 : : else
475 : : goto <bb M>;
476 : : <bb N>:
477 : : __builtin_unreachable ();
478 : : <bb M>: */
479 : :
480 : : bool
481 : 11115426 : assert_unreachable_fallthru_edge_p (edge e)
482 : : {
483 : 11115426 : basic_block pred_bb = e->src;
484 : 31691120 : if (safe_is_a <gcond *> (*gsi_last_bb (pred_bb)))
485 : : {
486 : 11115426 : basic_block other_bb = EDGE_SUCC (pred_bb, 0)->dest;
487 : 11115426 : if (other_bb == e->dest)
488 : 5843893 : other_bb = EDGE_SUCC (pred_bb, 1)->dest;
489 : 11115426 : if (EDGE_COUNT (other_bb->succs) == 0)
490 : 3310316 : return gimple_seq_unreachable_p (bb_seq (other_bb));
491 : : }
492 : : return false;
493 : : }
494 : :
495 : :
496 : : /* Initialize GF_CALL_CTRL_ALTERING flag, which indicates the call
497 : : could alter control flow except via eh. We initialize the flag at
498 : : CFG build time and only ever clear it later. */
499 : :
500 : : static void
501 : 10035117 : gimple_call_initialize_ctrl_altering (gimple *stmt)
502 : : {
503 : 10035117 : int flags = gimple_call_flags (stmt);
504 : :
505 : : /* A call alters control flow if it can make an abnormal goto. */
506 : 10035117 : if (call_can_make_abnormal_goto (stmt)
507 : : /* A call also alters control flow if it does not return. */
508 : 10028410 : || flags & ECF_NORETURN
509 : : /* TM ending statements have backedges out of the transaction.
510 : : Return true so we split the basic block containing them.
511 : : Note that the TM_BUILTIN test is merely an optimization. */
512 : 8528471 : || ((flags & ECF_TM_BUILTIN)
513 : 985 : && is_tm_ending_fndecl (gimple_call_fndecl (stmt)))
514 : : /* BUILT_IN_RETURN call is same as return statement. */
515 : 8527493 : || gimple_call_builtin_p (stmt, BUILT_IN_RETURN)
516 : : /* IFN_UNIQUE should be the last insn, to make checking for it
517 : : as cheap as possible. */
518 : 18562610 : || (gimple_call_internal_p (stmt)
519 : 323763 : && gimple_call_internal_unique_p (stmt)))
520 : 1579092 : gimple_call_set_ctrl_altering (stmt, true);
521 : : else
522 : 8456025 : gimple_call_set_ctrl_altering (stmt, false);
523 : 10035117 : }
524 : :
525 : :
526 : : /* Insert SEQ after BB and build a flowgraph. */
527 : :
528 : : static basic_block
529 : 2733901 : make_blocks_1 (gimple_seq seq, basic_block bb)
530 : : {
531 : 2733901 : gimple_stmt_iterator i = gsi_start (seq);
532 : 2733901 : gimple *stmt = NULL;
533 : 2733901 : gimple *prev_stmt = NULL;
534 : 2733901 : bool start_new_block = true;
535 : 2733901 : bool first_stmt_of_seq = true;
536 : :
537 : 88687069 : while (!gsi_end_p (i))
538 : : {
539 : : /* PREV_STMT should only be set to a debug stmt if the debug
540 : : stmt is before nondebug stmts. Once stmt reaches a nondebug
541 : : nonlabel, prev_stmt will be set to it, so that
542 : : stmt_starts_bb_p will know to start a new block if a label is
543 : : found. However, if stmt was a label after debug stmts only,
544 : : keep the label in prev_stmt even if we find further debug
545 : : stmts, for there may be other labels after them, and they
546 : : should land in the same block. */
547 : 85953168 : if (!prev_stmt || !stmt || !is_gimple_debug (stmt))
548 : : prev_stmt = stmt;
549 : 85953168 : stmt = gsi_stmt (i);
550 : :
551 : 85953168 : if (stmt && is_gimple_call (stmt))
552 : 10035117 : gimple_call_initialize_ctrl_altering (stmt);
553 : :
554 : : /* If the statement starts a new basic block or if we have determined
555 : : in a previous pass that we need to create a new block for STMT, do
556 : : so now. */
557 : 85953168 : if (start_new_block || stmt_starts_bb_p (stmt, prev_stmt))
558 : : {
559 : 20235883 : if (!first_stmt_of_seq)
560 : 17501982 : gsi_split_seq_before (&i, &seq);
561 : 20235883 : bb = create_basic_block (seq, bb);
562 : 20235883 : start_new_block = false;
563 : 20235883 : prev_stmt = NULL;
564 : : }
565 : :
566 : : /* Now add STMT to BB and create the subgraphs for special statement
567 : : codes. */
568 : 85953168 : gimple_set_bb (stmt, bb);
569 : :
570 : : /* If STMT is a basic block terminator, set START_NEW_BLOCK for the
571 : : next iteration. */
572 : 85953168 : if (stmt_ends_bb_p (stmt))
573 : : {
574 : : /* If the stmt can make abnormal goto use a new temporary
575 : : for the assignment to the LHS. This makes sure the old value
576 : : of the LHS is available on the abnormal edge. Otherwise
577 : : we will end up with overlapping life-ranges for abnormal
578 : : SSA names. */
579 : 18399528 : if (gimple_has_lhs (stmt)
580 : 1542037 : && stmt_can_make_abnormal_goto (stmt)
581 : 3177161 : && is_gimple_reg_type (TREE_TYPE (gimple_get_lhs (stmt))))
582 : : {
583 : 2356 : tree lhs = gimple_get_lhs (stmt);
584 : 2356 : tree tmp = create_tmp_var (TREE_TYPE (lhs));
585 : 2356 : gimple *s = gimple_build_assign (lhs, tmp);
586 : 2356 : gimple_set_location (s, gimple_location (stmt));
587 : 2356 : gimple_set_block (s, gimple_block (stmt));
588 : 2356 : gimple_set_lhs (stmt, tmp);
589 : 2356 : gsi_insert_after (&i, s, GSI_SAME_STMT);
590 : : }
591 : : start_new_block = true;
592 : : }
593 : :
594 : 85953168 : gsi_next (&i);
595 : 85953168 : first_stmt_of_seq = false;
596 : : }
597 : 2733901 : return bb;
598 : : }
599 : :
600 : : /* Build a flowgraph for the sequence of stmts SEQ. */
601 : :
602 : : static void
603 : 2682190 : make_blocks (gimple_seq seq)
604 : : {
605 : : /* Look for debug markers right before labels, and move the debug
606 : : stmts after the labels. Accepting labels among debug markers
607 : : adds no value, just complexity; if we wanted to annotate labels
608 : : with view numbers (so sequencing among markers would matter) or
609 : : somesuch, we're probably better off still moving the labels, but
610 : : adding other debug annotations in their original positions or
611 : : emitting nonbind or bind markers associated with the labels in
612 : : the original position of the labels.
613 : :
614 : : Moving labels would probably be simpler, but we can't do that:
615 : : moving labels assigns label ids to them, and doing so because of
616 : : debug markers makes for -fcompare-debug and possibly even codegen
617 : : differences. So, we have to move the debug stmts instead. To
618 : : that end, we scan SEQ backwards, marking the position of the
619 : : latest (earliest we find) label, and moving debug stmts that are
620 : : not separated from it by nondebug nonlabel stmts after the
621 : : label. */
622 : 2682190 : if (MAY_HAVE_DEBUG_MARKER_STMTS)
623 : : {
624 : 1623765 : gimple_stmt_iterator label = gsi_none ();
625 : :
626 : 95276138 : for (gimple_stmt_iterator i = gsi_last (seq); !gsi_end_p (i); gsi_prev (&i))
627 : : {
628 : 46014304 : gimple *stmt = gsi_stmt (i);
629 : :
630 : : /* If this is the first label we encounter (latest in SEQ)
631 : : before nondebug stmts, record its position. */
632 : 46014304 : if (is_a <glabel *> (stmt))
633 : : {
634 : 8481380 : if (gsi_end_p (label))
635 : 7884581 : label = i;
636 : 8481380 : continue;
637 : : }
638 : :
639 : : /* Without a recorded label position to move debug stmts to,
640 : : there's nothing to do. */
641 : 37532924 : if (gsi_end_p (label))
642 : 29630723 : continue;
643 : :
644 : : /* Move the debug stmt at I after LABEL. */
645 : 7902201 : if (is_gimple_debug (stmt))
646 : : {
647 : 21790 : gcc_assert (gimple_debug_nonbind_marker_p (stmt));
648 : : /* As STMT is removed, I advances to the stmt after
649 : : STMT, so the gsi_prev in the for "increment"
650 : : expression gets us to the stmt we're to visit after
651 : : STMT. LABEL, however, would advance to the moved
652 : : stmt if we passed it to gsi_move_after, so pass it a
653 : : copy instead, so as to keep LABEL pointing to the
654 : : LABEL. */
655 : 21790 : gimple_stmt_iterator copy = label;
656 : 21790 : gsi_move_after (&i, ©);
657 : 21790 : continue;
658 : 21790 : }
659 : :
660 : : /* There aren't any (more?) debug stmts before label, so
661 : : there isn't anything else to move after it. */
662 : : label = gsi_none ();
663 : : }
664 : : }
665 : :
666 : 2682190 : make_blocks_1 (seq, ENTRY_BLOCK_PTR_FOR_FN (cfun));
667 : 2682190 : }
668 : :
669 : : /* Create and return a new empty basic block after bb AFTER. */
670 : :
671 : : static basic_block
672 : 63600253 : create_bb (void *h, void *e, basic_block after)
673 : : {
674 : 63600253 : basic_block bb;
675 : :
676 : 63600253 : gcc_assert (!e);
677 : :
678 : : /* Create and initialize a new basic block. Since alloc_block uses
679 : : GC allocation that clears memory to allocate a basic block, we do
680 : : not have to clear the newly allocated basic block here. */
681 : 63600253 : bb = alloc_block ();
682 : :
683 : 63600253 : bb->index = last_basic_block_for_fn (cfun);
684 : 63600253 : bb->flags = BB_NEW;
685 : 63600253 : set_bb_seq (bb, h ? (gimple_seq) h : NULL);
686 : :
687 : : /* Add the new block to the linked list of blocks. */
688 : 63600253 : link_block (bb, after);
689 : :
690 : : /* Grow the basic block array if needed. */
691 : 63600253 : if ((size_t) last_basic_block_for_fn (cfun)
692 : 63600253 : == basic_block_info_for_fn (cfun)->length ())
693 : 18681683 : vec_safe_grow_cleared (basic_block_info_for_fn (cfun),
694 : 18681683 : last_basic_block_for_fn (cfun) + 1);
695 : :
696 : : /* Add the newly created block to the array. */
697 : 63600253 : SET_BASIC_BLOCK_FOR_FN (cfun, last_basic_block_for_fn (cfun), bb);
698 : :
699 : 63600253 : n_basic_blocks_for_fn (cfun)++;
700 : 63600253 : last_basic_block_for_fn (cfun)++;
701 : :
702 : 63600253 : return bb;
703 : : }
704 : :
705 : :
706 : : /*---------------------------------------------------------------------------
707 : : Edge creation
708 : : ---------------------------------------------------------------------------*/
709 : :
710 : : /* If basic block BB has an abnormal edge to a basic block
711 : : containing IFN_ABNORMAL_DISPATCHER internal call, return
712 : : that the dispatcher's basic block, otherwise return NULL. */
713 : :
714 : : basic_block
715 : 431 : get_abnormal_succ_dispatcher (basic_block bb)
716 : : {
717 : 431 : edge e;
718 : 431 : edge_iterator ei;
719 : :
720 : 848 : FOR_EACH_EDGE (e, ei, bb->succs)
721 : 632 : if ((e->flags & (EDGE_ABNORMAL | EDGE_EH)) == EDGE_ABNORMAL)
722 : : {
723 : 215 : gimple_stmt_iterator gsi
724 : 215 : = gsi_start_nondebug_after_labels_bb (e->dest);
725 : 215 : gimple *g = gsi_stmt (gsi);
726 : 215 : if (g && gimple_call_internal_p (g, IFN_ABNORMAL_DISPATCHER))
727 : 215 : return e->dest;
728 : : }
729 : : return NULL;
730 : : }
731 : :
732 : : /* Helper function for make_edges. Create a basic block with
733 : : with ABNORMAL_DISPATCHER internal call in it if needed, and
734 : : create abnormal edges from BBS to it and from it to FOR_BB
735 : : if COMPUTED_GOTO is false, otherwise factor the computed gotos. */
736 : :
737 : : static void
738 : 5023 : handle_abnormal_edges (basic_block *dispatcher_bbs, basic_block for_bb,
739 : : auto_vec<basic_block> *bbs, bool computed_goto)
740 : : {
741 : 5023 : basic_block *dispatcher = dispatcher_bbs + (computed_goto ? 1 : 0);
742 : 5023 : unsigned int idx = 0;
743 : 5023 : basic_block bb;
744 : 5023 : bool inner = false;
745 : :
746 : 5023 : if (!bb_to_omp_idx.is_empty ())
747 : : {
748 : 11 : dispatcher = dispatcher_bbs + 2 * bb_to_omp_idx[for_bb->index];
749 : 11 : if (bb_to_omp_idx[for_bb->index] != 0)
750 : 6 : inner = true;
751 : : }
752 : :
753 : : /* If the dispatcher has been created already, then there are basic
754 : : blocks with abnormal edges to it, so just make a new edge to
755 : : for_bb. */
756 : 5023 : if (*dispatcher == NULL)
757 : : {
758 : : /* Check if there are any basic blocks that need to have
759 : : abnormal edges to this dispatcher. If there are none, return
760 : : early. */
761 : 3286 : if (bb_to_omp_idx.is_empty ())
762 : : {
763 : 3275 : if (bbs->is_empty ())
764 : 5023 : return;
765 : : }
766 : : else
767 : : {
768 : 18 : FOR_EACH_VEC_ELT (*bbs, idx, bb)
769 : 18 : if (bb_to_omp_idx[bb->index] == bb_to_omp_idx[for_bb->index])
770 : : break;
771 : 11 : if (bb == NULL)
772 : : return;
773 : : }
774 : :
775 : : /* Create the dispatcher bb. */
776 : 2474 : *dispatcher = create_basic_block (NULL, for_bb);
777 : 2474 : if (computed_goto)
778 : : {
779 : : /* Factor computed gotos into a common computed goto site. Also
780 : : record the location of that site so that we can un-factor the
781 : : gotos after we have converted back to normal form. */
782 : 534 : gimple_stmt_iterator gsi = gsi_start_bb (*dispatcher);
783 : :
784 : : /* Create the destination of the factored goto. Each original
785 : : computed goto will put its desired destination into this
786 : : variable and jump to the label we create immediately below. */
787 : 534 : tree var = create_tmp_var (ptr_type_node, "gotovar");
788 : :
789 : : /* Build a label for the new block which will contain the
790 : : factored computed goto. */
791 : 534 : tree factored_label_decl
792 : 534 : = create_artificial_label (UNKNOWN_LOCATION);
793 : 534 : gimple *factored_computed_goto_label
794 : 534 : = gimple_build_label (factored_label_decl);
795 : 534 : gsi_insert_after (&gsi, factored_computed_goto_label, GSI_NEW_STMT);
796 : :
797 : : /* Build our new computed goto. */
798 : 534 : gimple *factored_computed_goto = gimple_build_goto (var);
799 : 534 : gsi_insert_after (&gsi, factored_computed_goto, GSI_NEW_STMT);
800 : :
801 : 2072 : FOR_EACH_VEC_ELT (*bbs, idx, bb)
802 : : {
803 : 1004 : if (!bb_to_omp_idx.is_empty ()
804 : 0 : && bb_to_omp_idx[bb->index] != bb_to_omp_idx[for_bb->index])
805 : 0 : continue;
806 : :
807 : 1004 : gsi = gsi_last_bb (bb);
808 : 1004 : gimple *last = gsi_stmt (gsi);
809 : :
810 : 1004 : gcc_assert (computed_goto_p (last));
811 : :
812 : : /* Copy the original computed goto's destination into VAR. */
813 : 1004 : gimple *assignment
814 : 1004 : = gimple_build_assign (var, gimple_goto_dest (last));
815 : 1004 : gsi_insert_before (&gsi, assignment, GSI_SAME_STMT);
816 : :
817 : 1004 : edge e = make_edge (bb, *dispatcher, EDGE_FALLTHRU);
818 : 1004 : e->goto_locus = gimple_location (last);
819 : 1004 : gsi_remove (&gsi, true);
820 : : }
821 : : }
822 : : else
823 : : {
824 : 1940 : tree arg = inner ? boolean_true_node : boolean_false_node;
825 : 1940 : gcall *g = gimple_build_call_internal (IFN_ABNORMAL_DISPATCHER,
826 : : 1, arg);
827 : 1940 : gimple_call_set_ctrl_altering (g, true);
828 : 1940 : gimple_stmt_iterator gsi = gsi_after_labels (*dispatcher);
829 : 1940 : gsi_insert_after (&gsi, g, GSI_NEW_STMT);
830 : :
831 : : /* Create predecessor edges of the dispatcher. */
832 : 12535 : FOR_EACH_VEC_ELT (*bbs, idx, bb)
833 : : {
834 : 6715 : if (!bb_to_omp_idx.is_empty ()
835 : 44 : && bb_to_omp_idx[bb->index] != bb_to_omp_idx[for_bb->index])
836 : 20 : continue;
837 : 6695 : make_edge (bb, *dispatcher, EDGE_ABNORMAL);
838 : : }
839 : : }
840 : : }
841 : :
842 : 4211 : make_edge (*dispatcher, for_bb, EDGE_ABNORMAL);
843 : : }
844 : :
845 : : /* Creates outgoing edges for BB. Returns 1 when it ends with an
846 : : computed goto, returns 2 when it ends with a statement that
847 : : might return to this function via an nonlocal goto, otherwise
848 : : return 0. Updates *PCUR_REGION with the OMP region this BB is in. */
849 : :
850 : : static int
851 : 20235883 : make_edges_bb (basic_block bb, struct omp_region **pcur_region, int *pomp_index)
852 : : {
853 : 20235883 : gimple *last = *gsi_last_bb (bb);
854 : 20235883 : bool fallthru = false;
855 : 20235883 : int ret = 0;
856 : :
857 : 20235883 : if (!last)
858 : : return ret;
859 : :
860 : 20235883 : switch (gimple_code (last))
861 : : {
862 : 5675855 : case GIMPLE_GOTO:
863 : 5675855 : if (make_goto_expr_edges (bb))
864 : 20235883 : ret = 1;
865 : : fallthru = false;
866 : : break;
867 : 2672569 : case GIMPLE_RETURN:
868 : 2672569 : {
869 : 2672569 : edge e = make_edge (bb, EXIT_BLOCK_PTR_FOR_FN (cfun), 0);
870 : 2672569 : e->goto_locus = gimple_location (last);
871 : 2672569 : fallthru = false;
872 : : }
873 : 2672569 : break;
874 : 5123848 : case GIMPLE_COND:
875 : 5123848 : make_cond_expr_edges (bb);
876 : 5123848 : fallthru = false;
877 : 5123848 : break;
878 : 51845 : case GIMPLE_SWITCH:
879 : 51845 : make_gimple_switch_edges (as_a <gswitch *> (last), bb);
880 : 51845 : fallthru = false;
881 : 51845 : break;
882 : 762259 : case GIMPLE_RESX:
883 : 762259 : make_eh_edge (last);
884 : 762259 : fallthru = false;
885 : 762259 : break;
886 : 40417 : case GIMPLE_EH_DISPATCH:
887 : 40417 : fallthru = make_eh_dispatch_edges (as_a <geh_dispatch *> (last));
888 : 40417 : break;
889 : :
890 : 3500687 : case GIMPLE_CALL:
891 : : /* If this function receives a nonlocal goto, then we need to
892 : : make edges from this call site to all the nonlocal goto
893 : : handlers. */
894 : 3500687 : if (stmt_can_make_abnormal_goto (last))
895 : 6707 : ret = 2;
896 : :
897 : : /* If this statement has reachable exception handlers, then
898 : : create abnormal edges to them. */
899 : 3500687 : make_eh_edge (last);
900 : :
901 : : /* BUILTIN_RETURN is really a return statement. */
902 : 3500687 : if (gimple_call_builtin_p (last, BUILT_IN_RETURN))
903 : : {
904 : 367 : make_edge (bb, EXIT_BLOCK_PTR_FOR_FN (cfun), 0);
905 : 367 : fallthru = false;
906 : : }
907 : : /* Some calls are known not to return. */
908 : : else
909 : 3500320 : fallthru = !gimple_call_noreturn_p (last);
910 : : break;
911 : :
912 : 2113615 : case GIMPLE_ASSIGN:
913 : : /* A GIMPLE_ASSIGN may throw internally and thus be considered
914 : : control-altering. */
915 : 2113615 : if (is_ctrl_altering_stmt (last))
916 : 618359 : make_eh_edge (last);
917 : : fallthru = true;
918 : : break;
919 : :
920 : 1433 : case GIMPLE_ASM:
921 : 1433 : make_gimple_asm_edges (bb);
922 : 1433 : fallthru = true;
923 : 1433 : break;
924 : :
925 : 278771 : CASE_GIMPLE_OMP:
926 : 278771 : fallthru = omp_make_gimple_edges (bb, pcur_region, pomp_index);
927 : 278771 : break;
928 : :
929 : 411 : case GIMPLE_TRANSACTION:
930 : 411 : {
931 : 411 : gtransaction *txn = as_a <gtransaction *> (last);
932 : 411 : tree label1 = gimple_transaction_label_norm (txn);
933 : 411 : tree label2 = gimple_transaction_label_uninst (txn);
934 : :
935 : 411 : if (label1)
936 : 401 : make_edge (bb, label_to_block (cfun, label1), EDGE_FALLTHRU);
937 : 411 : if (label2)
938 : 397 : make_edge (bb, label_to_block (cfun, label2),
939 : 397 : EDGE_TM_UNINSTRUMENTED | (label1 ? 0 : EDGE_FALLTHRU));
940 : :
941 : 411 : tree label3 = gimple_transaction_label_over (txn);
942 : 411 : if (gimple_transaction_subcode (txn)
943 : : & (GTMA_HAVE_ABORT | GTMA_IS_OUTER))
944 : 65 : make_edge (bb, label_to_block (cfun, label3), EDGE_TM_ABORT);
945 : :
946 : : fallthru = false;
947 : : }
948 : : break;
949 : :
950 : 14173 : default:
951 : 14173 : gcc_assert (!stmt_ends_bb_p (last));
952 : : fallthru = true;
953 : : break;
954 : : }
955 : :
956 : 12431829 : if (fallthru)
957 : 4364401 : make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
958 : :
959 : : return ret;
960 : : }
961 : :
962 : : /* Join all the blocks in the flowgraph. */
963 : :
964 : : static void
965 : 2682190 : make_edges (void)
966 : : {
967 : 2682190 : basic_block bb;
968 : 2682190 : struct omp_region *cur_region = NULL;
969 : 2682190 : auto_vec<basic_block> ab_edge_goto;
970 : 2682190 : auto_vec<basic_block> ab_edge_call;
971 : 2682190 : int cur_omp_region_idx = 0;
972 : :
973 : : /* Create an edge from entry to the first block with executable
974 : : statements in it. */
975 : 2682190 : make_edge (ENTRY_BLOCK_PTR_FOR_FN (cfun),
976 : 2682190 : BASIC_BLOCK_FOR_FN (cfun, NUM_FIXED_BLOCKS),
977 : : EDGE_FALLTHRU);
978 : :
979 : : /* Traverse the basic block array placing edges. */
980 : 22781016 : FOR_EACH_BB_FN (bb, cfun)
981 : : {
982 : 20098826 : int mer;
983 : :
984 : 20098826 : if (!bb_to_omp_idx.is_empty ())
985 : 676180 : bb_to_omp_idx[bb->index] = cur_omp_region_idx;
986 : :
987 : 20098826 : mer = make_edges_bb (bb, &cur_region, &cur_omp_region_idx);
988 : 20098826 : if (mer == 1)
989 : 1081 : ab_edge_goto.safe_push (bb);
990 : 20097745 : else if (mer == 2)
991 : 6707 : ab_edge_call.safe_push (bb);
992 : :
993 : 20602153 : if (cur_region && bb_to_omp_idx.is_empty ())
994 : 21037 : bb_to_omp_idx.safe_grow_cleared (n_basic_blocks_for_fn (cfun), true);
995 : : }
996 : :
997 : : /* Computed gotos are hell to deal with, especially if there are
998 : : lots of them with a large number of destinations. So we factor
999 : : them to a common computed goto location before we build the
1000 : : edge list. After we convert back to normal form, we will un-factor
1001 : : the computed gotos since factoring introduces an unwanted jump.
1002 : : For non-local gotos and abnormal edges from calls to calls that return
1003 : : twice or forced labels, factor the abnormal edges too, by having all
1004 : : abnormal edges from the calls go to a common artificial basic block
1005 : : with ABNORMAL_DISPATCHER internal call and abnormal edges from that
1006 : : basic block to all forced labels and calls returning twice.
1007 : : We do this per-OpenMP structured block, because those regions
1008 : : are guaranteed to be single entry single exit by the standard,
1009 : : so it is not allowed to enter or exit such regions abnormally this way,
1010 : : thus all computed gotos, non-local gotos and setjmp/longjmp calls
1011 : : must not transfer control across SESE region boundaries. */
1012 : 2682190 : if (!ab_edge_goto.is_empty () || !ab_edge_call.is_empty ())
1013 : : {
1014 : 2510 : gimple_stmt_iterator gsi;
1015 : 2510 : basic_block dispatcher_bb_array[2] = { NULL, NULL };
1016 : 2510 : basic_block *dispatcher_bbs = dispatcher_bb_array;
1017 : 2510 : int count = n_basic_blocks_for_fn (cfun);
1018 : :
1019 : 2510 : if (!bb_to_omp_idx.is_empty ())
1020 : 9 : dispatcher_bbs = XCNEWVEC (basic_block, 2 * count);
1021 : :
1022 : 29128 : FOR_EACH_BB_FN (bb, cfun)
1023 : : {
1024 : 67623 : for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1025 : : {
1026 : 39449 : glabel *label_stmt = dyn_cast <glabel *> (gsi_stmt (gsi));
1027 : 14863 : tree target;
1028 : :
1029 : 14863 : if (!label_stmt)
1030 : : break;
1031 : :
1032 : 14863 : target = gimple_label_label (label_stmt);
1033 : :
1034 : : /* Make an edge to every label block that has been marked as a
1035 : : potential target for a computed goto or a non-local goto. */
1036 : 14863 : if (FORCED_LABEL (target))
1037 : 2365 : handle_abnormal_edges (dispatcher_bbs, bb, &ab_edge_goto,
1038 : : true);
1039 : 14863 : if (DECL_NONLOCAL (target))
1040 : : {
1041 : 476 : handle_abnormal_edges (dispatcher_bbs, bb, &ab_edge_call,
1042 : : false);
1043 : 476 : break;
1044 : : }
1045 : : }
1046 : :
1047 : 26618 : if (!gsi_end_p (gsi) && is_gimple_debug (gsi_stmt (gsi)))
1048 : 2182 : gsi_next_nondebug (&gsi);
1049 : 26618 : if (!gsi_end_p (gsi))
1050 : : {
1051 : : /* Make an edge to every setjmp-like call. */
1052 : 24935 : gimple *call_stmt = gsi_stmt (gsi);
1053 : 24935 : if (is_gimple_call (call_stmt)
1054 : 24935 : && ((gimple_call_flags (call_stmt) & ECF_RETURNS_TWICE)
1055 : 7841 : || gimple_call_builtin_p (call_stmt,
1056 : : BUILT_IN_SETJMP_RECEIVER)))
1057 : 2182 : handle_abnormal_edges (dispatcher_bbs, bb, &ab_edge_call,
1058 : : false);
1059 : : }
1060 : : }
1061 : :
1062 : 2519 : if (!bb_to_omp_idx.is_empty ())
1063 : 9 : XDELETE (dispatcher_bbs);
1064 : : }
1065 : :
1066 : 2682190 : omp_free_regions ();
1067 : 2682190 : }
1068 : :
1069 : : /* Add SEQ after GSI. Start new bb after GSI, and created further bbs as
1070 : : needed. Returns true if new bbs were created.
1071 : : Note: This is transitional code, and should not be used for new code. We
1072 : : should be able to get rid of this by rewriting all target va-arg
1073 : : gimplification hooks to use an interface gimple_build_cond_value as described
1074 : : in https://gcc.gnu.org/ml/gcc-patches/2015-02/msg01194.html. */
1075 : :
1076 : : bool
1077 : 51711 : gimple_find_sub_bbs (gimple_seq seq, gimple_stmt_iterator *gsi)
1078 : : {
1079 : 51711 : gimple *stmt = gsi_stmt (*gsi);
1080 : 51711 : basic_block bb = gimple_bb (stmt);
1081 : 51711 : basic_block lastbb, afterbb;
1082 : 51711 : int old_num_bbs = n_basic_blocks_for_fn (cfun);
1083 : 51711 : edge e;
1084 : 51711 : lastbb = make_blocks_1 (seq, bb);
1085 : 51711 : if (old_num_bbs == n_basic_blocks_for_fn (cfun))
1086 : : return false;
1087 : 51711 : e = split_block (bb, stmt);
1088 : : /* Move e->dest to come after the new basic blocks. */
1089 : 51711 : afterbb = e->dest;
1090 : 51711 : unlink_block (afterbb);
1091 : 51711 : link_block (afterbb, lastbb);
1092 : 51711 : redirect_edge_succ (e, bb->next_bb);
1093 : 51711 : bb = bb->next_bb;
1094 : 188768 : while (bb != afterbb)
1095 : : {
1096 : 137057 : struct omp_region *cur_region = NULL;
1097 : 137057 : profile_count cnt = profile_count::zero ();
1098 : 137057 : bool all = true;
1099 : :
1100 : 137057 : int cur_omp_region_idx = 0;
1101 : 137057 : int mer = make_edges_bb (bb, &cur_region, &cur_omp_region_idx);
1102 : 137057 : gcc_assert (!mer && !cur_region);
1103 : 137057 : add_bb_to_loop (bb, afterbb->loop_father);
1104 : :
1105 : 137057 : edge e;
1106 : 137057 : edge_iterator ei;
1107 : 302813 : FOR_EACH_EDGE (e, ei, bb->preds)
1108 : : {
1109 : 165756 : if (e->count ().initialized_p ())
1110 : 20984 : cnt += e->count ();
1111 : : else
1112 : : all = false;
1113 : : }
1114 : 137057 : tree_guess_outgoing_edge_probabilities (bb);
1115 : 137057 : if (all || profile_status_for_fn (cfun) == PROFILE_READ)
1116 : 16854 : bb->count = cnt;
1117 : :
1118 : 137057 : bb = bb->next_bb;
1119 : : }
1120 : : return true;
1121 : : }
1122 : :
1123 : : /* Find the next available discriminator value for LOCUS. The
1124 : : discriminator distinguishes among several basic blocks that
1125 : : share a common locus, allowing for more accurate sample-based
1126 : : profiling. */
1127 : :
1128 : : static int
1129 : 22406923 : next_discriminator_for_locus (int line)
1130 : : {
1131 : 22406923 : struct locus_discrim_map item;
1132 : 22406923 : struct locus_discrim_map **slot;
1133 : :
1134 : 22406923 : item.location_line = line;
1135 : 22406923 : item.discriminator = 0;
1136 : 22406923 : slot = discriminator_per_locus->find_slot_with_hash (&item, line, INSERT);
1137 : 22406923 : gcc_assert (slot);
1138 : 22406923 : if (*slot == HTAB_EMPTY_ENTRY)
1139 : : {
1140 : 7100054 : *slot = XNEW (struct locus_discrim_map);
1141 : 7100054 : gcc_assert (*slot);
1142 : 7100054 : (*slot)->location_line = line;
1143 : 7100054 : (*slot)->discriminator = 0;
1144 : : }
1145 : 22406923 : (*slot)->discriminator++;
1146 : 22406923 : return (*slot)->discriminator;
1147 : : }
1148 : :
1149 : : /* Return TRUE if LOCUS1 and LOCUS2 refer to the same source line. */
1150 : :
1151 : : static bool
1152 : 132762598 : same_line_p (location_t locus1, expanded_location *from, location_t locus2)
1153 : : {
1154 : 132762598 : expanded_location to;
1155 : :
1156 : 132762598 : if (locus1 == locus2)
1157 : : return true;
1158 : :
1159 : 106876507 : to = expand_location (locus2);
1160 : :
1161 : 106876507 : if (from->line != to.line)
1162 : : return false;
1163 : 55335328 : if (from->file == to.file)
1164 : : return true;
1165 : 750726 : return (from->file != NULL
1166 : 512001 : && to.file != NULL
1167 : 751834 : && filename_cmp (from->file, to.file) == 0);
1168 : : }
1169 : :
1170 : : /* Assign a unique discriminator value to all statements in block bb that
1171 : : have the same line number as locus. */
1172 : :
1173 : : static void
1174 : 12369975 : assign_discriminator (location_t locus, basic_block bb)
1175 : : {
1176 : 12369975 : gimple_stmt_iterator gsi;
1177 : 12369975 : int discriminator;
1178 : :
1179 : 12369975 : if (locus == UNKNOWN_LOCATION)
1180 : 0 : return;
1181 : :
1182 : 12369975 : expanded_location locus_e = expand_location (locus);
1183 : :
1184 : 12369975 : discriminator = next_discriminator_for_locus (locus_e.line);
1185 : :
1186 : 71526695 : for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1187 : : {
1188 : 46786745 : gimple *stmt = gsi_stmt (gsi);
1189 : 46786745 : location_t stmt_locus = gimple_location (stmt);
1190 : 46786745 : if (same_line_p (locus, &locus_e, stmt_locus))
1191 : 63170944 : gimple_set_location (stmt,
1192 : : location_with_discriminator (stmt_locus, discriminator));
1193 : : }
1194 : : }
1195 : :
1196 : : /* Assign discriminators to statement locations. */
1197 : :
1198 : : static void
1199 : 2682190 : assign_discriminators (void)
1200 : : {
1201 : 2682190 : basic_block bb;
1202 : :
1203 : 22783490 : FOR_EACH_BB_FN (bb, cfun)
1204 : : {
1205 : 20101300 : edge e;
1206 : 20101300 : edge_iterator ei;
1207 : 20101300 : gimple_stmt_iterator gsi;
1208 : 20101300 : location_t curr_locus = UNKNOWN_LOCATION;
1209 : 20101300 : expanded_location curr_locus_e = {};
1210 : 20101300 : int curr_discr = 0;
1211 : :
1212 : : /* Traverse the basic block, if two function calls within a basic block
1213 : : are mapped to the same line, assign a new discriminator because a call
1214 : : stmt could be a split point of a basic block. */
1215 : 117704565 : for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1216 : : {
1217 : 77501965 : gimple *stmt = gsi_stmt (gsi);
1218 : :
1219 : : /* Don't allow debug stmts to affect discriminators, but
1220 : : allow them to take discriminators when they're on the
1221 : : same line as the preceding nondebug stmt. */
1222 : 77501965 : if (is_gimple_debug (stmt))
1223 : : {
1224 : 2578232 : if (curr_locus != UNKNOWN_LOCATION
1225 : 2578232 : && same_line_p (curr_locus, &curr_locus_e,
1226 : : gimple_location (stmt)))
1227 : : {
1228 : 284827 : location_t loc = gimple_location (stmt);
1229 : 284827 : location_t dloc = location_with_discriminator (loc,
1230 : : curr_discr);
1231 : 569654 : gimple_set_location (stmt, dloc);
1232 : : }
1233 : 2578232 : continue;
1234 : 2578232 : }
1235 : 74923733 : if (curr_locus == UNKNOWN_LOCATION)
1236 : : {
1237 : 22929512 : curr_locus = gimple_location (stmt);
1238 : 22929512 : curr_locus_e = expand_location (curr_locus);
1239 : : }
1240 : 51994221 : else if (!same_line_p (curr_locus, &curr_locus_e, gimple_location (stmt)))
1241 : : {
1242 : 15862960 : curr_locus = gimple_location (stmt);
1243 : 15862960 : curr_locus_e = expand_location (curr_locus);
1244 : 15862960 : curr_discr = 0;
1245 : : }
1246 : 36131261 : else if (curr_discr != 0)
1247 : : {
1248 : 7409170 : location_t loc = gimple_location (stmt);
1249 : 7409170 : location_t dloc = location_with_discriminator (loc, curr_discr);
1250 : 14816678 : gimple_set_location (stmt, dloc);
1251 : : }
1252 : : /* Allocate a new discriminator for CALL stmt. */
1253 : 74923733 : if (gimple_code (stmt) == GIMPLE_CALL)
1254 : 10036948 : curr_discr = next_discriminator_for_locus (curr_locus_e.line);
1255 : : }
1256 : :
1257 : 20101300 : gimple *last = last_nondebug_stmt (bb);
1258 : 20101300 : location_t locus = last ? gimple_location (last) : UNKNOWN_LOCATION;
1259 : 19888982 : if (locus == UNKNOWN_LOCATION)
1260 : 1455299 : continue;
1261 : :
1262 : 18646001 : expanded_location locus_e = expand_location (locus);
1263 : :
1264 : 43633073 : FOR_EACH_EDGE (e, ei, bb->succs)
1265 : : {
1266 : 24987072 : gimple *first = first_non_label_stmt (e->dest);
1267 : 24987072 : gimple *last = last_nondebug_stmt (e->dest);
1268 : :
1269 : 24987072 : gimple *stmt_on_same_line = NULL;
1270 : 24987072 : if (first && same_line_p (locus, &locus_e,
1271 : : gimple_location (first)))
1272 : : stmt_on_same_line = first;
1273 : 12867989 : else if (last && same_line_p (locus, &locus_e,
1274 : : gimple_location (last)))
1275 : : stmt_on_same_line = last;
1276 : :
1277 : 12369975 : if (stmt_on_same_line)
1278 : : {
1279 : 12369975 : if (has_discriminator (gimple_location (stmt_on_same_line))
1280 : 12369975 : && !has_discriminator (locus))
1281 : 269420 : assign_discriminator (locus, bb);
1282 : : else
1283 : 12100555 : assign_discriminator (locus, e->dest);
1284 : : }
1285 : : }
1286 : : }
1287 : 2682190 : }
1288 : :
1289 : : /* Create the edges for a GIMPLE_COND starting at block BB. */
1290 : :
1291 : : static void
1292 : 5123848 : make_cond_expr_edges (basic_block bb)
1293 : : {
1294 : 10247696 : gcond *entry = as_a <gcond *> (*gsi_last_bb (bb));
1295 : 5123848 : gimple *then_stmt, *else_stmt;
1296 : 5123848 : basic_block then_bb, else_bb;
1297 : 5123848 : tree then_label, else_label;
1298 : 5123848 : edge e;
1299 : :
1300 : 5123848 : gcc_assert (entry);
1301 : :
1302 : : /* Entry basic blocks for each component. */
1303 : 5123848 : then_label = gimple_cond_true_label (entry);
1304 : 5123848 : else_label = gimple_cond_false_label (entry);
1305 : 5123848 : then_bb = label_to_block (cfun, then_label);
1306 : 5123848 : else_bb = label_to_block (cfun, else_label);
1307 : 5123848 : then_stmt = first_stmt (then_bb);
1308 : 5123848 : else_stmt = first_stmt (else_bb);
1309 : :
1310 : 5123848 : e = make_edge (bb, then_bb, EDGE_TRUE_VALUE);
1311 : 5123848 : e->goto_locus = gimple_location (then_stmt);
1312 : 5123848 : e = make_edge (bb, else_bb, EDGE_FALSE_VALUE);
1313 : 5123848 : if (e)
1314 : 5119506 : e->goto_locus = gimple_location (else_stmt);
1315 : :
1316 : : /* We do not need the labels anymore. */
1317 : 5123848 : gimple_cond_set_true_label (entry, NULL_TREE);
1318 : 5123848 : gimple_cond_set_false_label (entry, NULL_TREE);
1319 : 5123848 : }
1320 : :
1321 : :
1322 : : /* Called for each element in the hash table (P) as we delete the
1323 : : edge to cases hash table.
1324 : :
1325 : : Clear all the CASE_CHAINs to prevent problems with copying of
1326 : : SWITCH_EXPRs and structure sharing rules, then free the hash table
1327 : : element. */
1328 : :
1329 : : bool
1330 : 1042324 : edge_to_cases_cleanup (edge const &, tree const &value, void *)
1331 : : {
1332 : 1042324 : tree t, next;
1333 : :
1334 : 2257312 : for (t = value; t; t = next)
1335 : : {
1336 : 1214988 : next = CASE_CHAIN (t);
1337 : 1214988 : CASE_CHAIN (t) = NULL;
1338 : : }
1339 : :
1340 : 1042324 : return true;
1341 : : }
1342 : :
1343 : : /* Start recording information mapping edges to case labels. */
1344 : :
1345 : : void
1346 : 31009987 : start_recording_case_labels (void)
1347 : : {
1348 : 31009987 : gcc_assert (edge_to_cases == NULL);
1349 : 31009987 : edge_to_cases = new hash_map<edge, tree>;
1350 : 31009987 : touched_switch_bbs = BITMAP_ALLOC (NULL);
1351 : 31009987 : }
1352 : :
1353 : : /* Return nonzero if we are recording information for case labels. */
1354 : :
1355 : : static bool
1356 : 386502 : recording_case_labels_p (void)
1357 : : {
1358 : 386502 : return (edge_to_cases != NULL);
1359 : : }
1360 : :
1361 : : /* Stop recording information mapping edges to case labels and
1362 : : remove any information we have recorded. */
1363 : : void
1364 : 31009987 : end_recording_case_labels (void)
1365 : : {
1366 : 31009987 : bitmap_iterator bi;
1367 : 31009987 : unsigned i;
1368 : 32052311 : edge_to_cases->traverse<void *, edge_to_cases_cleanup> (NULL);
1369 : 62019974 : delete edge_to_cases;
1370 : 31009987 : edge_to_cases = NULL;
1371 : 31157701 : EXECUTE_IF_SET_IN_BITMAP (touched_switch_bbs, 0, i, bi)
1372 : : {
1373 : 147714 : basic_block bb = BASIC_BLOCK_FOR_FN (cfun, i);
1374 : 147714 : if (bb)
1375 : : {
1376 : 439828 : if (gswitch *stmt = safe_dyn_cast <gswitch *> (*gsi_last_bb (bb)))
1377 : 145857 : group_case_labels_stmt (stmt);
1378 : : }
1379 : : }
1380 : 31009987 : BITMAP_FREE (touched_switch_bbs);
1381 : 31009987 : }
1382 : :
1383 : : /* If we are inside a {start,end}_recording_cases block, then return
1384 : : a chain of CASE_LABEL_EXPRs from T which reference E.
1385 : :
1386 : : Otherwise return NULL. */
1387 : :
1388 : : tree
1389 : 386502 : get_cases_for_edge (edge e, gswitch *t)
1390 : : {
1391 : 386502 : tree *slot;
1392 : 386502 : size_t i, n;
1393 : :
1394 : : /* If we are not recording cases, then we do not have CASE_LABEL_EXPR
1395 : : chains available. Return NULL so the caller can detect this case. */
1396 : 386502 : if (!recording_case_labels_p ())
1397 : : return NULL;
1398 : :
1399 : 340618 : slot = edge_to_cases->get (e);
1400 : 340618 : if (slot)
1401 : 192934 : return *slot;
1402 : :
1403 : : /* If we did not find E in the hash table, then this must be the first
1404 : : time we have been queried for information about E & T. Add all the
1405 : : elements from T to the hash table then perform the query again. */
1406 : :
1407 : 147684 : n = gimple_switch_num_labels (t);
1408 : 1353765 : for (i = 0; i < n; i++)
1409 : : {
1410 : 1206081 : tree elt = gimple_switch_label (t, i);
1411 : 1206081 : tree lab = CASE_LABEL (elt);
1412 : 1206081 : basic_block label_bb = label_to_block (cfun, lab);
1413 : 1206081 : edge this_edge = find_edge (e->src, label_bb);
1414 : :
1415 : : /* Add it to the chain of CASE_LABEL_EXPRs referencing E, or create
1416 : : a new chain. */
1417 : 1206081 : tree &s = edge_to_cases->get_or_insert (this_edge);
1418 : 1206081 : CASE_CHAIN (elt) = s;
1419 : 1206081 : s = elt;
1420 : : }
1421 : :
1422 : 147684 : return *edge_to_cases->get (e);
1423 : : }
1424 : :
1425 : : /* Create the edges for a GIMPLE_SWITCH starting at block BB. */
1426 : :
1427 : : static void
1428 : 51845 : make_gimple_switch_edges (gswitch *entry, basic_block bb)
1429 : : {
1430 : 51845 : size_t i, n;
1431 : :
1432 : 51845 : n = gimple_switch_num_labels (entry);
1433 : :
1434 : 377529 : for (i = 0; i < n; ++i)
1435 : : {
1436 : 325684 : basic_block label_bb = gimple_switch_label_bb (cfun, entry, i);
1437 : 325684 : make_edge (bb, label_bb, 0);
1438 : : }
1439 : 51845 : }
1440 : :
1441 : :
1442 : : /* Return the basic block holding label DEST. */
1443 : :
1444 : : basic_block
1445 : 447911087 : label_to_block (struct function *ifun, tree dest)
1446 : : {
1447 : 447911087 : int uid = LABEL_DECL_UID (dest);
1448 : :
1449 : : /* We would die hard when faced by an undefined label. Emit a label to
1450 : : the very first basic block. This will hopefully make even the dataflow
1451 : : and undefined variable warnings quite right. */
1452 : 447911087 : if (seen_error () && uid < 0)
1453 : : {
1454 : 97 : gimple_stmt_iterator gsi =
1455 : 97 : gsi_start_bb (BASIC_BLOCK_FOR_FN (cfun, NUM_FIXED_BLOCKS));
1456 : 97 : gimple *stmt;
1457 : :
1458 : 97 : stmt = gimple_build_label (dest);
1459 : 97 : gsi_insert_before (&gsi, stmt, GSI_NEW_STMT);
1460 : 97 : uid = LABEL_DECL_UID (dest);
1461 : : }
1462 : 447911087 : if (vec_safe_length (ifun->cfg->x_label_to_block_map) <= (unsigned int) uid)
1463 : : return NULL;
1464 : 447911087 : return (*ifun->cfg->x_label_to_block_map)[uid];
1465 : : }
1466 : :
1467 : : /* Create edges for a goto statement at block BB. Returns true
1468 : : if abnormal edges should be created. */
1469 : :
1470 : : static bool
1471 : 5675855 : make_goto_expr_edges (basic_block bb)
1472 : : {
1473 : 5675855 : gimple_stmt_iterator last = gsi_last_bb (bb);
1474 : 5675855 : gimple *goto_t = gsi_stmt (last);
1475 : :
1476 : : /* A simple GOTO creates normal edges. */
1477 : 5675855 : if (simple_goto_p (goto_t))
1478 : : {
1479 : 5674774 : tree dest = gimple_goto_dest (goto_t);
1480 : 5674774 : basic_block label_bb = label_to_block (cfun, dest);
1481 : 5674774 : edge e = make_edge (bb, label_bb, EDGE_FALLTHRU);
1482 : 5674774 : e->goto_locus = gimple_location (goto_t);
1483 : 5674774 : gsi_remove (&last, true);
1484 : 5674774 : return false;
1485 : : }
1486 : :
1487 : : /* A computed GOTO creates abnormal edges. */
1488 : : return true;
1489 : : }
1490 : :
1491 : : /* Create edges for an asm statement with labels at block BB. */
1492 : :
1493 : : static void
1494 : 1433 : make_gimple_asm_edges (basic_block bb)
1495 : : {
1496 : 2866 : gasm *stmt = as_a <gasm *> (*gsi_last_bb (bb));
1497 : 1433 : int i, n = gimple_asm_nlabels (stmt);
1498 : :
1499 : 2196 : for (i = 0; i < n; ++i)
1500 : : {
1501 : 763 : tree label = TREE_VALUE (gimple_asm_label_op (stmt, i));
1502 : 763 : basic_block label_bb = label_to_block (cfun, label);
1503 : 763 : make_edge (bb, label_bb, 0);
1504 : : }
1505 : 1433 : }
1506 : :
1507 : : /*---------------------------------------------------------------------------
1508 : : Flowgraph analysis
1509 : : ---------------------------------------------------------------------------*/
1510 : :
1511 : : /* Cleanup useless labels in basic blocks. This is something we wish
1512 : : to do early because it allows us to group case labels before creating
1513 : : the edges for the CFG, and it speeds up block statement iterators in
1514 : : all passes later on.
1515 : : We rerun this pass after CFG is created, to get rid of the labels that
1516 : : are no longer referenced. After then we do not run it any more, since
1517 : : (almost) no new labels should be created. */
1518 : :
1519 : : /* A map from basic block index to the leading label of that block. */
1520 : : struct label_record
1521 : : {
1522 : : /* The label. */
1523 : : tree label;
1524 : :
1525 : : /* True if the label is referenced from somewhere. */
1526 : : bool used;
1527 : : };
1528 : :
1529 : : /* Given LABEL return the first label in the same basic block. */
1530 : :
1531 : : static tree
1532 : 19117570 : main_block_label (tree label, label_record *label_for_bb)
1533 : : {
1534 : 19117570 : basic_block bb = label_to_block (cfun, label);
1535 : 19117570 : tree main_label = label_for_bb[bb->index].label;
1536 : :
1537 : : /* label_to_block possibly inserted undefined label into the chain. */
1538 : 19117570 : if (!main_label)
1539 : : {
1540 : 88 : label_for_bb[bb->index].label = label;
1541 : 88 : main_label = label;
1542 : : }
1543 : :
1544 : 19117570 : label_for_bb[bb->index].used = true;
1545 : 19117570 : return main_label;
1546 : : }
1547 : :
1548 : : /* Clean up redundant labels within the exception tree. */
1549 : :
1550 : : static void
1551 : 6780621 : cleanup_dead_labels_eh (label_record *label_for_bb)
1552 : : {
1553 : 6780621 : eh_landing_pad lp;
1554 : 6780621 : eh_region r;
1555 : 6780621 : tree lab;
1556 : 6780621 : int i;
1557 : :
1558 : 6780621 : if (cfun->eh == NULL)
1559 : 6780621 : return;
1560 : :
1561 : 9784331 : for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
1562 : 3003710 : if (lp && lp->post_landing_pad)
1563 : : {
1564 : 1714710 : lab = main_block_label (lp->post_landing_pad, label_for_bb);
1565 : 1714710 : if (lab != lp->post_landing_pad)
1566 : : {
1567 : 0 : EH_LANDING_PAD_NR (lp->post_landing_pad) = 0;
1568 : 0 : lp->post_landing_pad = lab;
1569 : 0 : EH_LANDING_PAD_NR (lab) = lp->index;
1570 : : }
1571 : : }
1572 : :
1573 : 11528920 : FOR_ALL_EH_REGION (r)
1574 : 4748299 : switch (r->type)
1575 : : {
1576 : : case ERT_CLEANUP:
1577 : : case ERT_MUST_NOT_THROW:
1578 : : break;
1579 : :
1580 : 127431 : case ERT_TRY:
1581 : 127431 : {
1582 : 127431 : eh_catch c;
1583 : 254329 : for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
1584 : : {
1585 : 126898 : lab = c->label;
1586 : 126898 : if (lab)
1587 : 85286 : c->label = main_block_label (lab, label_for_bb);
1588 : : }
1589 : : }
1590 : : break;
1591 : :
1592 : 8841 : case ERT_ALLOWED_EXCEPTIONS:
1593 : 8841 : lab = r->u.allowed.label;
1594 : 8841 : if (lab)
1595 : 876 : r->u.allowed.label = main_block_label (lab, label_for_bb);
1596 : : break;
1597 : : }
1598 : : }
1599 : :
1600 : :
1601 : : /* Cleanup redundant labels. This is a three-step process:
1602 : : 1) Find the leading label for each block.
1603 : : 2) Redirect all references to labels to the leading labels.
1604 : : 3) Cleanup all useless labels. */
1605 : :
1606 : : void
1607 : 6780621 : cleanup_dead_labels (void)
1608 : : {
1609 : 6780621 : basic_block bb;
1610 : 6780621 : label_record *label_for_bb = XCNEWVEC (struct label_record,
1611 : : last_basic_block_for_fn (cfun));
1612 : :
1613 : : /* Find a suitable label for each block. We use the first user-defined
1614 : : label if there is one, or otherwise just the first label we see. */
1615 : 58806832 : FOR_EACH_BB_FN (bb, cfun)
1616 : : {
1617 : 52026211 : gimple_stmt_iterator i;
1618 : :
1619 : 136032844 : for (i = gsi_start_bb (bb); !gsi_end_p (i); gsi_next (&i))
1620 : : {
1621 : 82746423 : tree label;
1622 : 84014788 : glabel *label_stmt = dyn_cast <glabel *> (gsi_stmt (i));
1623 : :
1624 : 31988577 : if (!label_stmt)
1625 : : break;
1626 : :
1627 : 31988577 : label = gimple_label_label (label_stmt);
1628 : :
1629 : : /* If we have not yet seen a label for the current block,
1630 : : remember this one and see if there are more labels. */
1631 : 31988577 : if (!label_for_bb[bb->index].label)
1632 : : {
1633 : 29878334 : label_for_bb[bb->index].label = label;
1634 : 29878334 : continue;
1635 : : }
1636 : :
1637 : : /* If we did see a label for the current block already, but it
1638 : : is an artificially created label, replace it if the current
1639 : : label is a user defined label. */
1640 : 2110243 : if (!DECL_ARTIFICIAL (label)
1641 : 2110243 : && DECL_ARTIFICIAL (label_for_bb[bb->index].label))
1642 : : {
1643 : 8155 : label_for_bb[bb->index].label = label;
1644 : 8155 : break;
1645 : : }
1646 : : }
1647 : : }
1648 : :
1649 : : /* Now redirect all jumps/branches to the selected label.
1650 : : First do so for each block ending in a control statement. */
1651 : 58806832 : FOR_EACH_BB_FN (bb, cfun)
1652 : : {
1653 : 52026211 : gimple *stmt = *gsi_last_bb (bb);
1654 : 52026211 : tree label, new_label;
1655 : :
1656 : 52026211 : if (!stmt)
1657 : 526770 : continue;
1658 : :
1659 : 51499441 : switch (gimple_code (stmt))
1660 : : {
1661 : 15440588 : case GIMPLE_COND:
1662 : 15440588 : {
1663 : 15440588 : gcond *cond_stmt = as_a <gcond *> (stmt);
1664 : 15440588 : label = gimple_cond_true_label (cond_stmt);
1665 : 15440588 : if (label)
1666 : : {
1667 : 5095149 : new_label = main_block_label (label, label_for_bb);
1668 : 5095149 : if (new_label != label)
1669 : 8719 : gimple_cond_set_true_label (cond_stmt, new_label);
1670 : : }
1671 : :
1672 : 15440588 : label = gimple_cond_false_label (cond_stmt);
1673 : 15440588 : if (label)
1674 : : {
1675 : 5095149 : new_label = main_block_label (label, label_for_bb);
1676 : 5095149 : if (new_label != label)
1677 : 99454 : gimple_cond_set_false_label (cond_stmt, new_label);
1678 : : }
1679 : : }
1680 : : break;
1681 : :
1682 : 110255 : case GIMPLE_SWITCH:
1683 : 110255 : {
1684 : 110255 : gswitch *switch_stmt = as_a <gswitch *> (stmt);
1685 : 110255 : size_t i, n = gimple_switch_num_labels (switch_stmt);
1686 : :
1687 : : /* Replace all destination labels. */
1688 : 1585544 : for (i = 0; i < n; ++i)
1689 : : {
1690 : 1475289 : tree case_label = gimple_switch_label (switch_stmt, i);
1691 : 1475289 : label = CASE_LABEL (case_label);
1692 : 1475289 : new_label = main_block_label (label, label_for_bb);
1693 : 1475289 : if (new_label != label)
1694 : 790985 : CASE_LABEL (case_label) = new_label;
1695 : : }
1696 : : break;
1697 : : }
1698 : :
1699 : 4961 : case GIMPLE_ASM:
1700 : 4961 : {
1701 : 4961 : gasm *asm_stmt = as_a <gasm *> (stmt);
1702 : 4961 : int i, n = gimple_asm_nlabels (asm_stmt);
1703 : :
1704 : 7207 : for (i = 0; i < n; ++i)
1705 : : {
1706 : 2246 : tree cons = gimple_asm_label_op (asm_stmt, i);
1707 : 2246 : tree label = main_block_label (TREE_VALUE (cons), label_for_bb);
1708 : 2246 : TREE_VALUE (cons) = label;
1709 : : }
1710 : : break;
1711 : : }
1712 : :
1713 : : /* We have to handle gotos until they're removed, and we don't
1714 : : remove them until after we've created the CFG edges. */
1715 : 5648540 : case GIMPLE_GOTO:
1716 : 5648540 : if (!computed_goto_p (stmt))
1717 : : {
1718 : 5646455 : ggoto *goto_stmt = as_a <ggoto *> (stmt);
1719 : 5646455 : label = gimple_goto_dest (goto_stmt);
1720 : 5646455 : new_label = main_block_label (label, label_for_bb);
1721 : 5646455 : if (new_label != label)
1722 : 1006208 : gimple_goto_set_dest (goto_stmt, new_label);
1723 : : }
1724 : : break;
1725 : :
1726 : 822 : case GIMPLE_TRANSACTION:
1727 : 822 : {
1728 : 822 : gtransaction *txn = as_a <gtransaction *> (stmt);
1729 : :
1730 : 822 : label = gimple_transaction_label_norm (txn);
1731 : 822 : if (label)
1732 : : {
1733 : 802 : new_label = main_block_label (label, label_for_bb);
1734 : 802 : if (new_label != label)
1735 : 0 : gimple_transaction_set_label_norm (txn, new_label);
1736 : : }
1737 : :
1738 : 822 : label = gimple_transaction_label_uninst (txn);
1739 : 822 : if (label)
1740 : : {
1741 : 794 : new_label = main_block_label (label, label_for_bb);
1742 : 794 : if (new_label != label)
1743 : 0 : gimple_transaction_set_label_uninst (txn, new_label);
1744 : : }
1745 : :
1746 : 822 : label = gimple_transaction_label_over (txn);
1747 : 822 : if (label)
1748 : : {
1749 : 814 : new_label = main_block_label (label, label_for_bb);
1750 : 814 : if (new_label != label)
1751 : 7 : gimple_transaction_set_label_over (txn, new_label);
1752 : : }
1753 : : }
1754 : : break;
1755 : :
1756 : : default:
1757 : : break;
1758 : : }
1759 : : }
1760 : :
1761 : : /* Do the same for the exception region tree labels. */
1762 : 6780621 : cleanup_dead_labels_eh (label_for_bb);
1763 : :
1764 : : /* Finally, purge dead labels. All user-defined labels and labels that
1765 : : can be the target of non-local gotos and labels which have their
1766 : : address taken are preserved. */
1767 : 58806832 : FOR_EACH_BB_FN (bb, cfun)
1768 : : {
1769 : 52026211 : gimple_stmt_iterator i;
1770 : 52026211 : tree label_for_this_bb = label_for_bb[bb->index].label;
1771 : :
1772 : 52026211 : if (!label_for_this_bb)
1773 : 22147789 : continue;
1774 : :
1775 : : /* If the main label of the block is unused, we may still remove it. */
1776 : 29878422 : if (!label_for_bb[bb->index].used)
1777 : 14025996 : label_for_this_bb = NULL;
1778 : :
1779 : 91745518 : for (i = gsi_start_bb (bb); !gsi_end_p (i); )
1780 : : {
1781 : 61133202 : tree label;
1782 : 61867096 : glabel *label_stmt = dyn_cast <glabel *> (gsi_stmt (i));
1783 : :
1784 : 31988674 : if (!label_stmt)
1785 : : break;
1786 : :
1787 : 31988674 : label = gimple_label_label (label_stmt);
1788 : :
1789 : 31988674 : if (label == label_for_this_bb
1790 : 16136248 : || !DECL_ARTIFICIAL (label)
1791 : 15498924 : || DECL_NONLOCAL (label)
1792 : 47486145 : || FORCED_LABEL (label))
1793 : 16514780 : gsi_next (&i);
1794 : : else
1795 : : {
1796 : 15473894 : gcc_checking_assert (EH_LANDING_PAD_NR (label) == 0);
1797 : 15473894 : gsi_remove (&i, true);
1798 : : }
1799 : : }
1800 : : }
1801 : :
1802 : 6780621 : free (label_for_bb);
1803 : 6780621 : }
1804 : :
1805 : : /* Scan the sorted vector of cases in STMT (a GIMPLE_SWITCH) and combine
1806 : : the ones jumping to the same label.
1807 : : Eg. three separate entries 1: 2: 3: become one entry 1..3: */
1808 : :
1809 : : bool
1810 : 257652 : group_case_labels_stmt (gswitch *stmt)
1811 : : {
1812 : 257652 : int old_size = gimple_switch_num_labels (stmt);
1813 : 257652 : int i, next_index, new_size;
1814 : 257652 : basic_block default_bb = NULL;
1815 : 257652 : hash_set<tree> *removed_labels = NULL;
1816 : :
1817 : 257652 : default_bb = gimple_switch_default_bb (cfun, stmt);
1818 : :
1819 : : /* Look for possible opportunities to merge cases. */
1820 : 257652 : new_size = i = 1;
1821 : 2203443 : while (i < old_size)
1822 : : {
1823 : 1688139 : tree base_case, base_high;
1824 : 1688139 : basic_block base_bb;
1825 : :
1826 : 1688139 : base_case = gimple_switch_label (stmt, i);
1827 : :
1828 : 1688139 : gcc_assert (base_case);
1829 : 1688139 : base_bb = label_to_block (cfun, CASE_LABEL (base_case));
1830 : :
1831 : : /* Discard cases that have the same destination as the default case or
1832 : : whose destination blocks have already been removed as unreachable. */
1833 : 1692349 : if (base_bb == NULL
1834 : 1688139 : || base_bb == default_bb
1835 : 1688139 : || (removed_labels
1836 : 0 : && removed_labels->contains (CASE_LABEL (base_case))))
1837 : : {
1838 : 4210 : i++;
1839 : 4210 : continue;
1840 : : }
1841 : :
1842 : 1683929 : base_high = CASE_HIGH (base_case)
1843 : 3367858 : ? CASE_HIGH (base_case)
1844 : 1574199 : : CASE_LOW (base_case);
1845 : 1683929 : next_index = i + 1;
1846 : :
1847 : : /* Try to merge case labels. Break out when we reach the end
1848 : : of the label vector or when we cannot merge the next case
1849 : : label with the current one. */
1850 : 2432866 : while (next_index < old_size)
1851 : : {
1852 : 2176920 : tree merge_case = gimple_switch_label (stmt, next_index);
1853 : 2176920 : basic_block merge_bb = label_to_block (cfun, CASE_LABEL (merge_case));
1854 : 2176920 : wide_int bhp1 = wi::to_wide (base_high) + 1;
1855 : :
1856 : : /* Merge the cases if they jump to the same place,
1857 : : and their ranges are consecutive. */
1858 : 2176920 : if (merge_bb == base_bb
1859 : 849426 : && (removed_labels == NULL
1860 : 0 : || !removed_labels->contains (CASE_LABEL (merge_case)))
1861 : 3026346 : && wi::to_wide (CASE_LOW (merge_case)) == bhp1)
1862 : : {
1863 : 748937 : base_high
1864 : 748937 : = (CASE_HIGH (merge_case)
1865 : 748937 : ? CASE_HIGH (merge_case) : CASE_LOW (merge_case));
1866 : 748937 : CASE_HIGH (base_case) = base_high;
1867 : 748937 : next_index++;
1868 : : }
1869 : : else
1870 : : break;
1871 : 2176920 : }
1872 : :
1873 : : /* Discard cases that have an unreachable destination block. */
1874 : 1693972 : if (EDGE_COUNT (base_bb->succs) == 0
1875 : 291547 : && gimple_seq_unreachable_p (bb_seq (base_bb))
1876 : : /* Don't optimize this if __builtin_unreachable () is the
1877 : : implicitly added one by the C++ FE too early, before
1878 : : -Wreturn-type can be diagnosed. We'll optimize it later
1879 : : during switchconv pass or any other cfg cleanup. */
1880 : 1403598 : && (gimple_in_ssa_p (cfun)
1881 : 1157 : || (LOCATION_LOCUS (gimple_location (last_nondebug_stmt (base_bb)))
1882 : : != BUILTINS_LOCATION)))
1883 : : {
1884 : 1172 : edge base_edge = find_edge (gimple_bb (stmt), base_bb);
1885 : 1172 : if (base_edge != NULL)
1886 : : {
1887 : 30 : for (gimple_stmt_iterator gsi = gsi_start_bb (base_bb);
1888 : 30 : !gsi_end_p (gsi); gsi_next (&gsi))
1889 : 30 : if (glabel *stmt = dyn_cast <glabel *> (gsi_stmt (gsi)))
1890 : : {
1891 : 15 : if (FORCED_LABEL (gimple_label_label (stmt))
1892 : 15 : || DECL_NONLOCAL (gimple_label_label (stmt)))
1893 : : {
1894 : : /* Forced/non-local labels aren't going to be removed,
1895 : : but they will be moved to some neighbouring basic
1896 : : block. If some later case label refers to one of
1897 : : those labels, we should throw that case away rather
1898 : : than keeping it around and refering to some random
1899 : : other basic block without an edge to it. */
1900 : 0 : if (removed_labels == NULL)
1901 : 0 : removed_labels = new hash_set<tree>;
1902 : 0 : removed_labels->add (gimple_label_label (stmt));
1903 : : }
1904 : : }
1905 : : else
1906 : : break;
1907 : 15 : remove_edge_and_dominated_blocks (base_edge);
1908 : : }
1909 : 1172 : i = next_index;
1910 : 1172 : continue;
1911 : 1172 : }
1912 : :
1913 : 1682757 : if (new_size < i)
1914 : 82800 : gimple_switch_set_label (stmt, new_size,
1915 : : gimple_switch_label (stmt, i));
1916 : 1682757 : i = next_index;
1917 : 1682757 : new_size++;
1918 : : }
1919 : :
1920 : 257652 : gcc_assert (new_size <= old_size);
1921 : :
1922 : 257652 : if (new_size < old_size)
1923 : 19552 : gimple_switch_set_num_labels (stmt, new_size);
1924 : :
1925 : 257652 : delete removed_labels;
1926 : 257652 : return new_size < old_size;
1927 : : }
1928 : :
1929 : : /* Look for blocks ending in a multiway branch (a GIMPLE_SWITCH),
1930 : : and scan the sorted vector of cases. Combine the ones jumping to the
1931 : : same label. */
1932 : :
1933 : : bool
1934 : 4098431 : group_case_labels (void)
1935 : : {
1936 : 4098431 : basic_block bb;
1937 : 4098431 : bool changed = false;
1938 : :
1939 : 36023342 : FOR_EACH_BB_FN (bb, cfun)
1940 : : {
1941 : 95389465 : if (gswitch *stmt = safe_dyn_cast <gswitch *> (*gsi_last_bb (bb)))
1942 : 58410 : changed |= group_case_labels_stmt (stmt);
1943 : : }
1944 : :
1945 : 4098431 : return changed;
1946 : : }
1947 : :
1948 : : /* Checks whether we can merge block B into block A. */
1949 : :
1950 : : static bool
1951 : 400996745 : gimple_can_merge_blocks_p (basic_block a, basic_block b)
1952 : : {
1953 : 400996745 : gimple *stmt;
1954 : :
1955 : 572188757 : if (!single_succ_p (a))
1956 : : return false;
1957 : :
1958 : 192761756 : if (single_succ_edge (a)->flags & EDGE_COMPLEX)
1959 : : return false;
1960 : :
1961 : 182065410 : if (single_succ (a) != b)
1962 : : return false;
1963 : :
1964 : 465197964 : if (!single_pred_p (b))
1965 : : return false;
1966 : :
1967 : 85770963 : if (a == ENTRY_BLOCK_PTR_FOR_FN (cfun)
1968 : 53493423 : || b == EXIT_BLOCK_PTR_FOR_FN (cfun))
1969 : : return false;
1970 : :
1971 : : /* If A ends by a statement causing exceptions or something similar, we
1972 : : cannot merge the blocks. */
1973 : 25837893 : stmt = *gsi_last_bb (a);
1974 : 25837893 : if (stmt && stmt_ends_bb_p (stmt))
1975 : : return false;
1976 : :
1977 : : /* Examine the labels at the beginning of B. */
1978 : 48279333 : for (gimple_stmt_iterator gsi = gsi_start_bb (b); !gsi_end_p (gsi);
1979 : 161425 : gsi_next (&gsi))
1980 : : {
1981 : 22871555 : tree lab;
1982 : 22871555 : glabel *label_stmt = dyn_cast <glabel *> (gsi_stmt (gsi));
1983 : 1832709 : if (!label_stmt)
1984 : : break;
1985 : 1832709 : lab = gimple_label_label (label_stmt);
1986 : :
1987 : : /* Do not remove user forced labels or for -O0 any user labels. */
1988 : 1875539 : if (!DECL_ARTIFICIAL (lab) && (!optimize || FORCED_LABEL (lab)))
1989 : 379427001 : return false;
1990 : : }
1991 : :
1992 : : /* Protect simple loop latches. We only want to avoid merging
1993 : : the latch with the loop header or with a block in another
1994 : : loop in this case. */
1995 : 22387670 : if (current_loops
1996 : 19996758 : && b->loop_father->latch == b
1997 : 346877 : && loops_state_satisfies_p (LOOPS_HAVE_SIMPLE_LATCHES)
1998 : 22419640 : && (b->loop_father->header == a
1999 : 20462 : || b->loop_father != a->loop_father))
2000 : : return false;
2001 : :
2002 : : /* It must be possible to eliminate all phi nodes in B. If ssa form
2003 : : is not up-to-date and a name-mapping is registered, we cannot eliminate
2004 : : any phis. Symbols marked for renaming are never a problem though. */
2005 : 27885573 : for (gphi_iterator gsi = gsi_start_phis (b); !gsi_end_p (gsi);
2006 : 5509555 : gsi_next (&gsi))
2007 : : {
2008 : 5509555 : gphi *phi = gsi.phi ();
2009 : : /* Technically only new names matter. */
2010 : 5509555 : if (name_registered_for_update_p (PHI_RESULT (phi)))
2011 : 0 : return false;
2012 : : }
2013 : :
2014 : : /* When not optimizing, don't merge if we'd lose goto_locus. */
2015 : 22376018 : if (!optimize
2016 : 22376018 : && single_succ_edge (a)->goto_locus != UNKNOWN_LOCATION)
2017 : : {
2018 : 839528 : location_t goto_locus = single_succ_edge (a)->goto_locus;
2019 : 839528 : gimple_stmt_iterator prev, next;
2020 : 839528 : prev = gsi_last_nondebug_bb (a);
2021 : 839528 : next = gsi_after_labels (b);
2022 : 839528 : if (!gsi_end_p (next) && is_gimple_debug (gsi_stmt (next)))
2023 : 6 : gsi_next_nondebug (&next);
2024 : 839528 : if ((gsi_end_p (prev)
2025 : 729741 : || gimple_location (gsi_stmt (prev)) != goto_locus)
2026 : 1548249 : && (gsi_end_p (next)
2027 : 772706 : || gimple_location (gsi_stmt (next)) != goto_locus))
2028 : 806274 : return false;
2029 : : }
2030 : :
2031 : : return true;
2032 : : }
2033 : :
2034 : : /* Replaces all uses of NAME by VAL. */
2035 : :
2036 : : void
2037 : 3360424 : replace_uses_by (tree name, tree val)
2038 : : {
2039 : 3360424 : imm_use_iterator imm_iter;
2040 : 3360424 : use_operand_p use;
2041 : 3360424 : gimple *stmt;
2042 : 3360424 : edge e;
2043 : :
2044 : 9281699 : FOR_EACH_IMM_USE_STMT (stmt, imm_iter, name)
2045 : : {
2046 : : /* Mark the block if we change the last stmt in it. */
2047 : 5921275 : if (cfgcleanup_altered_bbs
2048 : 5921275 : && stmt_ends_bb_p (stmt))
2049 : 736473 : bitmap_set_bit (cfgcleanup_altered_bbs, gimple_bb (stmt)->index);
2050 : :
2051 : 18056175 : FOR_EACH_IMM_USE_ON_STMT (use, imm_iter)
2052 : : {
2053 : 6067450 : replace_exp (use, val);
2054 : :
2055 : 6067450 : if (gimple_code (stmt) == GIMPLE_PHI)
2056 : : {
2057 : 2247054 : e = gimple_phi_arg_edge (as_a <gphi *> (stmt),
2058 : 2247054 : PHI_ARG_INDEX_FROM_USE (use));
2059 : 2247054 : if (e->flags & EDGE_ABNORMAL
2060 : 2247054 : && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (val))
2061 : : {
2062 : : /* This can only occur for virtual operands, since
2063 : : for the real ones SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name))
2064 : : would prevent replacement. */
2065 : 0 : gcc_checking_assert (virtual_operand_p (name));
2066 : 0 : SSA_NAME_OCCURS_IN_ABNORMAL_PHI (val) = 1;
2067 : : }
2068 : : }
2069 : : }
2070 : :
2071 : 5921275 : if (gimple_code (stmt) != GIMPLE_PHI)
2072 : : {
2073 : 3813500 : gimple_stmt_iterator gsi = gsi_for_stmt (stmt);
2074 : 3813500 : gimple *orig_stmt = stmt;
2075 : 3813500 : size_t i;
2076 : :
2077 : : /* FIXME. It shouldn't be required to keep TREE_CONSTANT
2078 : : on ADDR_EXPRs up-to-date on GIMPLE. Propagation will
2079 : : only change sth from non-invariant to invariant, and only
2080 : : when propagating constants. */
2081 : 3813500 : if (is_gimple_min_invariant (val))
2082 : 1614076 : for (i = 0; i < gimple_num_ops (stmt); i++)
2083 : : {
2084 : 1169740 : tree op = gimple_op (stmt, i);
2085 : : /* Operands may be empty here. For example, the labels
2086 : : of a GIMPLE_COND are nulled out following the creation
2087 : : of the corresponding CFG edges. */
2088 : 1169740 : if (op && TREE_CODE (op) == ADDR_EXPR)
2089 : 57433 : recompute_tree_invariant_for_addr_expr (op);
2090 : : }
2091 : :
2092 : 3813500 : if (fold_stmt (&gsi))
2093 : 608466 : stmt = gsi_stmt (gsi);
2094 : :
2095 : 3813500 : if (maybe_clean_or_replace_eh_stmt (orig_stmt, stmt))
2096 : 108 : gimple_purge_dead_eh_edges (gimple_bb (stmt));
2097 : :
2098 : 3813500 : update_stmt (stmt);
2099 : : }
2100 : 3360424 : }
2101 : :
2102 : 3360424 : gcc_checking_assert (has_zero_uses (name));
2103 : :
2104 : : /* Also update the trees stored in loop structures. */
2105 : 3360424 : if (current_loops)
2106 : : {
2107 : 82872841 : for (auto loop : loops_list (cfun, 0))
2108 : 76151993 : substitute_in_loop_info (loop, name, val);
2109 : : }
2110 : 3360424 : }
2111 : :
2112 : : /* Merge block B into block A. */
2113 : :
2114 : : static void
2115 : 13591970 : gimple_merge_blocks (basic_block a, basic_block b)
2116 : : {
2117 : 13591970 : gimple_stmt_iterator last, gsi;
2118 : 13591970 : gphi_iterator psi;
2119 : :
2120 : 13591970 : if (dump_file)
2121 : 18281 : fprintf (dump_file, "Merging blocks %d and %d\n", a->index, b->index);
2122 : :
2123 : : /* Remove all single-valued PHI nodes from block B of the form
2124 : : V_i = PHI <V_j> by propagating V_j to all the uses of V_i. */
2125 : 13591970 : gsi = gsi_last_bb (a);
2126 : 17506944 : for (psi = gsi_start_phis (b); !gsi_end_p (psi); )
2127 : : {
2128 : 3914974 : gimple *phi = gsi_stmt (psi);
2129 : 3914974 : tree def = gimple_phi_result (phi), use = gimple_phi_arg_def (phi, 0);
2130 : 3914974 : gimple *copy;
2131 : 3914974 : bool may_replace_uses = (virtual_operand_p (def)
2132 : 3914974 : || may_propagate_copy (def, use));
2133 : :
2134 : : /* In case we maintain loop closed ssa form, do not propagate arguments
2135 : : of loop exit phi nodes. */
2136 : 3914974 : if (current_loops
2137 : 3914974 : && loops_state_satisfies_p (LOOP_CLOSED_SSA)
2138 : 575057 : && !virtual_operand_p (def)
2139 : 406465 : && TREE_CODE (use) == SSA_NAME
2140 : 4220994 : && a->loop_father != b->loop_father)
2141 : : may_replace_uses = false;
2142 : :
2143 : 3914376 : if (!may_replace_uses)
2144 : : {
2145 : 1650 : gcc_assert (!virtual_operand_p (def));
2146 : :
2147 : : /* Note that just emitting the copies is fine -- there is no problem
2148 : : with ordering of phi nodes. This is because A is the single
2149 : : predecessor of B, therefore results of the phi nodes cannot
2150 : : appear as arguments of the phi nodes. */
2151 : 825 : copy = gimple_build_assign (def, use);
2152 : 825 : gsi_insert_after (&gsi, copy, GSI_NEW_STMT);
2153 : 825 : remove_phi_node (&psi, false);
2154 : : }
2155 : : else
2156 : : {
2157 : : /* If we deal with a PHI for virtual operands, we can simply
2158 : : propagate these without fussing with folding or updating
2159 : : the stmt. */
2160 : 7828298 : if (virtual_operand_p (def))
2161 : : {
2162 : 1578386 : imm_use_iterator iter;
2163 : 1578386 : use_operand_p use_p;
2164 : 1578386 : gimple *stmt;
2165 : :
2166 : 4487913 : FOR_EACH_IMM_USE_STMT (stmt, iter, def)
2167 : 8777651 : FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
2168 : 4512448 : SET_USE (use_p, use);
2169 : :
2170 : 1578386 : if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (def))
2171 : 270 : SSA_NAME_OCCURS_IN_ABNORMAL_PHI (use) = 1;
2172 : : }
2173 : : else
2174 : 2335763 : replace_uses_by (def, use);
2175 : :
2176 : 3914149 : remove_phi_node (&psi, true);
2177 : : }
2178 : : }
2179 : :
2180 : : /* Ensure that B follows A. */
2181 : 13591970 : move_block_after (b, a);
2182 : :
2183 : 13591970 : gcc_assert (single_succ_edge (a)->flags & EDGE_FALLTHRU);
2184 : 27183940 : gcc_assert (!*gsi_last_bb (a)
2185 : : || !stmt_ends_bb_p (*gsi_last_bb (a)));
2186 : :
2187 : : /* Remove labels from B and set gimple_bb to A for other statements. */
2188 : 105055338 : for (gsi = gsi_start_bb (b); !gsi_end_p (gsi);)
2189 : : {
2190 : 77871398 : gimple *stmt = gsi_stmt (gsi);
2191 : 77871398 : if (glabel *label_stmt = dyn_cast <glabel *> (stmt))
2192 : : {
2193 : 104781 : tree label = gimple_label_label (label_stmt);
2194 : 104781 : int lp_nr;
2195 : :
2196 : 104781 : gsi_remove (&gsi, false);
2197 : :
2198 : : /* Now that we can thread computed gotos, we might have
2199 : : a situation where we have a forced label in block B
2200 : : However, the label at the start of block B might still be
2201 : : used in other ways (think about the runtime checking for
2202 : : Fortran assigned gotos). So we cannot just delete the
2203 : : label. Instead we move the label to the start of block A. */
2204 : 104781 : if (FORCED_LABEL (label))
2205 : : {
2206 : 3210 : gimple_stmt_iterator dest_gsi = gsi_start_bb (a);
2207 : 3210 : tree first_label = NULL_TREE;
2208 : 3210 : if (!gsi_end_p (dest_gsi))
2209 : 3196 : if (glabel *first_label_stmt
2210 : 3196 : = dyn_cast <glabel *> (gsi_stmt (dest_gsi)))
2211 : 2703 : first_label = gimple_label_label (first_label_stmt);
2212 : 2703 : if (first_label
2213 : 2703 : && (DECL_NONLOCAL (first_label)
2214 : 2703 : || EH_LANDING_PAD_NR (first_label) != 0))
2215 : 3 : gsi_insert_after (&dest_gsi, stmt, GSI_NEW_STMT);
2216 : : else
2217 : 3207 : gsi_insert_before (&dest_gsi, stmt, GSI_NEW_STMT);
2218 : : }
2219 : : /* Other user labels keep around in a form of a debug stmt. */
2220 : 101571 : else if (!DECL_ARTIFICIAL (label) && MAY_HAVE_DEBUG_BIND_STMTS)
2221 : : {
2222 : 7850 : gimple *dbg = gimple_build_debug_bind (label,
2223 : : integer_zero_node,
2224 : : stmt);
2225 : 7850 : gimple_debug_bind_reset_value (dbg);
2226 : 7850 : gsi_insert_before (&gsi, dbg, GSI_SAME_STMT);
2227 : : }
2228 : :
2229 : 104781 : lp_nr = EH_LANDING_PAD_NR (label);
2230 : 104781 : if (lp_nr)
2231 : : {
2232 : 10066 : eh_landing_pad lp = get_eh_landing_pad_from_number (lp_nr);
2233 : 10066 : lp->post_landing_pad = NULL;
2234 : : }
2235 : : }
2236 : : else
2237 : : {
2238 : 77766617 : gimple_set_bb (stmt, a);
2239 : 77766617 : gsi_next (&gsi);
2240 : : }
2241 : : }
2242 : :
2243 : : /* When merging two BBs, if their counts are different, the larger count
2244 : : is selected as the new bb count. This is to handle inconsistent
2245 : : profiles. */
2246 : 13591970 : if (a->loop_father == b->loop_father)
2247 : : {
2248 : 13526102 : a->count = a->count.merge (b->count);
2249 : : }
2250 : :
2251 : : /* Merge the sequences. */
2252 : 13591970 : last = gsi_last_bb (a);
2253 : 27183940 : gsi_insert_seq_after (&last, bb_seq (b), GSI_NEW_STMT);
2254 : 13591970 : set_bb_seq (b, NULL);
2255 : :
2256 : 13591970 : if (cfgcleanup_altered_bbs)
2257 : 13568391 : bitmap_set_bit (cfgcleanup_altered_bbs, a->index);
2258 : 13591970 : }
2259 : :
2260 : :
2261 : : /* Return the one of two successors of BB that is not reachable by a
2262 : : complex edge, if there is one. Else, return BB. We use
2263 : : this in optimizations that use post-dominators for their heuristics,
2264 : : to catch the cases in C++ where function calls are involved. */
2265 : :
2266 : : basic_block
2267 : 6 : single_noncomplex_succ (basic_block bb)
2268 : : {
2269 : 6 : edge e0, e1;
2270 : 6 : if (EDGE_COUNT (bb->succs) != 2)
2271 : : return bb;
2272 : :
2273 : 6 : e0 = EDGE_SUCC (bb, 0);
2274 : 6 : e1 = EDGE_SUCC (bb, 1);
2275 : 6 : if (e0->flags & EDGE_COMPLEX)
2276 : 6 : return e1->dest;
2277 : 0 : if (e1->flags & EDGE_COMPLEX)
2278 : 0 : return e0->dest;
2279 : :
2280 : : return bb;
2281 : : }
2282 : :
2283 : : /* T is CALL_EXPR. Set current_function_calls_* flags. */
2284 : :
2285 : : void
2286 : 49177363 : notice_special_calls (gcall *call)
2287 : : {
2288 : 49177363 : int flags = gimple_call_flags (call);
2289 : :
2290 : 49177363 : if (flags & ECF_MAY_BE_ALLOCA)
2291 : 143074 : cfun->calls_alloca = true;
2292 : 49177363 : if (flags & ECF_RETURNS_TWICE)
2293 : 7079 : cfun->calls_setjmp = true;
2294 : 49177363 : if (gimple_call_must_tail_p (call))
2295 : 100 : cfun->has_musttail = true;
2296 : 49177363 : }
2297 : :
2298 : :
2299 : : /* Clear flags set by notice_special_calls. Used by dead code removal
2300 : : to update the flags. */
2301 : :
2302 : : void
2303 : 7642351 : clear_special_calls (void)
2304 : : {
2305 : 7642351 : cfun->calls_alloca = false;
2306 : 7642351 : cfun->calls_setjmp = false;
2307 : 7642351 : cfun->has_musttail = false;
2308 : 7642351 : }
2309 : :
2310 : : /* Remove PHI nodes associated with basic block BB and all edges out of BB. */
2311 : :
2312 : : static void
2313 : 33588621 : remove_phi_nodes_and_edges_for_unreachable_block (basic_block bb)
2314 : : {
2315 : : /* Since this block is no longer reachable, we can just delete all
2316 : : of its PHI nodes. */
2317 : 33588621 : remove_phi_nodes (bb);
2318 : :
2319 : : /* Remove edges to BB's successors. */
2320 : 98784256 : while (EDGE_COUNT (bb->succs) > 0)
2321 : 31607014 : remove_edge (EDGE_SUCC (bb, 0));
2322 : 33588621 : }
2323 : :
2324 : :
2325 : : /* Remove statements of basic block BB. */
2326 : :
2327 : : static void
2328 : 33588621 : remove_bb (basic_block bb)
2329 : : {
2330 : 33588621 : gimple_stmt_iterator i;
2331 : :
2332 : 33588621 : if (dump_file)
2333 : : {
2334 : 39775 : fprintf (dump_file, "Removing basic block %d\n", bb->index);
2335 : 39775 : if (dump_flags & TDF_DETAILS)
2336 : : {
2337 : 27030 : dump_bb (dump_file, bb, 0, TDF_BLOCKS);
2338 : 27030 : fprintf (dump_file, "\n");
2339 : : }
2340 : : }
2341 : :
2342 : 33588621 : if (current_loops)
2343 : : {
2344 : 31838019 : class loop *loop = bb->loop_father;
2345 : :
2346 : : /* If a loop gets removed, clean up the information associated
2347 : : with it. */
2348 : 31838019 : if (loop->latch == bb
2349 : 31653260 : || loop->header == bb)
2350 : 223567 : free_numbers_of_iterations_estimates (loop);
2351 : : }
2352 : :
2353 : : /* Remove all the instructions in the block. */
2354 : 33588621 : if (bb_seq (bb) != NULL)
2355 : : {
2356 : : /* Walk backwards so as to get a chance to substitute all
2357 : : released DEFs into debug stmts. See
2358 : : eliminate_unnecessary_stmts() in tree-ssa-dce.cc for more
2359 : : details. */
2360 : 6072068 : for (i = gsi_last_bb (bb); !gsi_end_p (i);)
2361 : : {
2362 : 16475772 : gimple *stmt = gsi_stmt (i);
2363 : 16475772 : glabel *label_stmt = dyn_cast <glabel *> (stmt);
2364 : 1955206 : if (label_stmt
2365 : 1955206 : && (FORCED_LABEL (gimple_label_label (label_stmt))
2366 : 1952730 : || DECL_NONLOCAL (gimple_label_label (label_stmt))))
2367 : : {
2368 : 2478 : basic_block new_bb;
2369 : 2478 : gimple_stmt_iterator new_gsi;
2370 : :
2371 : : /* A non-reachable non-local label may still be referenced.
2372 : : But it no longer needs to carry the extra semantics of
2373 : : non-locality. */
2374 : 2478 : if (DECL_NONLOCAL (gimple_label_label (label_stmt)))
2375 : : {
2376 : 2 : DECL_NONLOCAL (gimple_label_label (label_stmt)) = 0;
2377 : 2 : FORCED_LABEL (gimple_label_label (label_stmt)) = 1;
2378 : : }
2379 : :
2380 : 2478 : new_bb = bb->prev_bb;
2381 : : /* Don't move any labels into ENTRY block. */
2382 : 2478 : if (new_bb == ENTRY_BLOCK_PTR_FOR_FN (cfun))
2383 : : {
2384 : 0 : new_bb = single_succ (new_bb);
2385 : 0 : gcc_assert (new_bb != bb);
2386 : : }
2387 : 2478 : if ((unsigned) bb->index < bb_to_omp_idx.length ()
2388 : 8 : && ((unsigned) new_bb->index >= bb_to_omp_idx.length ()
2389 : 8 : || (bb_to_omp_idx[bb->index]
2390 : 8 : != bb_to_omp_idx[new_bb->index])))
2391 : : {
2392 : : /* During cfg pass make sure to put orphaned labels
2393 : : into the right OMP region. */
2394 : : unsigned int i;
2395 : : int idx;
2396 : 24 : new_bb = NULL;
2397 : 24 : FOR_EACH_VEC_ELT (bb_to_omp_idx, i, idx)
2398 : 24 : if (i >= NUM_FIXED_BLOCKS
2399 : 8 : && idx == bb_to_omp_idx[bb->index]
2400 : 32 : && i != (unsigned) bb->index)
2401 : : {
2402 : 8 : new_bb = BASIC_BLOCK_FOR_FN (cfun, i);
2403 : 8 : break;
2404 : : }
2405 : 8 : if (new_bb == NULL)
2406 : : {
2407 : 0 : new_bb = single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun));
2408 : 0 : gcc_assert (new_bb != bb);
2409 : : }
2410 : : }
2411 : 2478 : new_gsi = gsi_after_labels (new_bb);
2412 : 2478 : gsi_remove (&i, false);
2413 : 2478 : gsi_insert_before (&new_gsi, stmt, GSI_NEW_STMT);
2414 : : }
2415 : : else
2416 : : {
2417 : : /* Release SSA definitions. */
2418 : 16473294 : release_defs (stmt);
2419 : 16473294 : gsi_remove (&i, true);
2420 : : }
2421 : :
2422 : 16475772 : if (gsi_end_p (i))
2423 : 32951544 : i = gsi_last_bb (bb);
2424 : : else
2425 : 22547840 : gsi_prev (&i);
2426 : : }
2427 : : }
2428 : :
2429 : 33588621 : if ((unsigned) bb->index < bb_to_omp_idx.length ())
2430 : 22114 : bb_to_omp_idx[bb->index] = -1;
2431 : 33588621 : remove_phi_nodes_and_edges_for_unreachable_block (bb);
2432 : 33588621 : bb->il.gimple.seq = NULL;
2433 : 33588621 : bb->il.gimple.phi_nodes = NULL;
2434 : 33588621 : }
2435 : :
2436 : :
2437 : : /* Given a basic block BB and a value VAL for use in the final statement
2438 : : of the block (if a GIMPLE_COND, GIMPLE_SWITCH, or computed goto), return
2439 : : the edge that will be taken out of the block.
2440 : : If VAL is NULL_TREE, then the current value of the final statement's
2441 : : predicate or index is used.
2442 : : If the value does not match a unique edge, NULL is returned. */
2443 : :
2444 : : edge
2445 : 226625915 : find_taken_edge (basic_block bb, tree val)
2446 : : {
2447 : 226625915 : gimple *stmt;
2448 : :
2449 : 226625915 : stmt = *gsi_last_bb (bb);
2450 : :
2451 : : /* Handle ENTRY and EXIT. */
2452 : 226625915 : if (!stmt)
2453 : : ;
2454 : :
2455 : 223366032 : else if (gimple_code (stmt) == GIMPLE_COND)
2456 : 182640658 : return find_taken_edge_cond_expr (as_a <gcond *> (stmt), val);
2457 : :
2458 : 40725374 : else if (gimple_code (stmt) == GIMPLE_SWITCH)
2459 : 992555 : return find_taken_edge_switch_expr (as_a <gswitch *> (stmt), val);
2460 : :
2461 : 39732819 : else if (computed_goto_p (stmt))
2462 : : {
2463 : : /* Only optimize if the argument is a label, if the argument is
2464 : : not a label then we cannot construct a proper CFG.
2465 : :
2466 : : It may be the case that we only need to allow the LABEL_REF to
2467 : : appear inside an ADDR_EXPR, but we also allow the LABEL_REF to
2468 : : appear inside a LABEL_EXPR just to be safe. */
2469 : 2797 : if (val
2470 : 1527 : && (TREE_CODE (val) == ADDR_EXPR || TREE_CODE (val) == LABEL_EXPR)
2471 : 3043 : && TREE_CODE (TREE_OPERAND (val, 0)) == LABEL_DECL)
2472 : 182 : return find_taken_edge_computed_goto (bb, TREE_OPERAND (val, 0));
2473 : : }
2474 : :
2475 : : /* Otherwise we only know the taken successor edge if it's unique. */
2476 : 42992520 : return single_succ_p (bb) ? single_succ_edge (bb) : NULL;
2477 : : }
2478 : :
2479 : : /* Given a constant value VAL and the entry block BB to a GOTO_EXPR
2480 : : statement, determine which of the outgoing edges will be taken out of the
2481 : : block. Return NULL if either edge may be taken. */
2482 : :
2483 : : static edge
2484 : 182 : find_taken_edge_computed_goto (basic_block bb, tree val)
2485 : : {
2486 : 182 : basic_block dest;
2487 : 182 : edge e = NULL;
2488 : :
2489 : 182 : dest = label_to_block (cfun, val);
2490 : 182 : if (dest)
2491 : 178 : e = find_edge (bb, dest);
2492 : :
2493 : : /* It's possible for find_edge to return NULL here on invalid code
2494 : : that abuses the labels-as-values extension (e.g. code that attempts to
2495 : : jump *between* functions via stored labels-as-values; PR 84136).
2496 : : If so, then we simply return that NULL for the edge.
2497 : : We don't currently have a way of detecting such invalid code, so we
2498 : : can't assert that it was the case when a NULL edge occurs here. */
2499 : :
2500 : 182 : return e;
2501 : : }
2502 : :
2503 : : /* Given COND_STMT and a constant value VAL for use as the predicate,
2504 : : determine which of the two edges will be taken out of
2505 : : the statement's block. Return NULL if either edge may be taken.
2506 : : If VAL is NULL_TREE, then the current value of COND_STMT's predicate
2507 : : is used. */
2508 : :
2509 : : static edge
2510 : 182640658 : find_taken_edge_cond_expr (const gcond *cond_stmt, tree val)
2511 : : {
2512 : 182640658 : edge true_edge, false_edge;
2513 : :
2514 : 182640658 : if (val == NULL_TREE)
2515 : : {
2516 : : /* Use the current value of the predicate. */
2517 : 170043781 : if (gimple_cond_true_p (cond_stmt))
2518 : 59129 : val = integer_one_node;
2519 : 169984652 : else if (gimple_cond_false_p (cond_stmt))
2520 : 138114 : val = integer_zero_node;
2521 : : else
2522 : : return NULL;
2523 : : }
2524 : 12596877 : else if (TREE_CODE (val) != INTEGER_CST)
2525 : : return NULL;
2526 : :
2527 : 11618037 : extract_true_false_edges_from_block (gimple_bb (cond_stmt),
2528 : : &true_edge, &false_edge);
2529 : :
2530 : 11618037 : return (integer_zerop (val) ? false_edge : true_edge);
2531 : : }
2532 : :
2533 : : /* Given SWITCH_STMT and an INTEGER_CST VAL for use as the index, determine
2534 : : which edge will be taken out of the statement's block. Return NULL if any
2535 : : edge may be taken.
2536 : : If VAL is NULL_TREE, then the current value of SWITCH_STMT's index
2537 : : is used. */
2538 : :
2539 : : edge
2540 : 992559 : find_taken_edge_switch_expr (const gswitch *switch_stmt, tree val)
2541 : : {
2542 : 992559 : basic_block dest_bb;
2543 : 992559 : edge e;
2544 : 992559 : tree taken_case;
2545 : :
2546 : 992559 : if (gimple_switch_num_labels (switch_stmt) == 1)
2547 : 1 : taken_case = gimple_switch_default_label (switch_stmt);
2548 : : else
2549 : : {
2550 : 992558 : if (val == NULL_TREE)
2551 : 139085 : val = gimple_switch_index (switch_stmt);
2552 : 992558 : if (TREE_CODE (val) != INTEGER_CST)
2553 : : return NULL;
2554 : : else
2555 : 22833 : taken_case = find_case_label_for_value (switch_stmt, val);
2556 : : }
2557 : 22834 : dest_bb = label_to_block (cfun, CASE_LABEL (taken_case));
2558 : :
2559 : 22834 : e = find_edge (gimple_bb (switch_stmt), dest_bb);
2560 : 22834 : gcc_assert (e);
2561 : : return e;
2562 : : }
2563 : :
2564 : :
2565 : : /* Return the CASE_LABEL_EXPR that SWITCH_STMT will take for VAL.
2566 : : We can make optimal use here of the fact that the case labels are
2567 : : sorted: We can do a binary search for a case matching VAL. */
2568 : :
2569 : : tree
2570 : 22833 : find_case_label_for_value (const gswitch *switch_stmt, tree val)
2571 : : {
2572 : 22833 : size_t low, high, n = gimple_switch_num_labels (switch_stmt);
2573 : 22833 : tree default_case = gimple_switch_default_label (switch_stmt);
2574 : :
2575 : 47200 : for (low = 0, high = n; high - low > 1; )
2576 : : {
2577 : 44497 : size_t i = (high + low) / 2;
2578 : 44497 : tree t = gimple_switch_label (switch_stmt, i);
2579 : 44497 : int cmp;
2580 : :
2581 : : /* Cache the result of comparing CASE_LOW and val. */
2582 : 44497 : cmp = tree_int_cst_compare (CASE_LOW (t), val);
2583 : :
2584 : 44497 : if (cmp > 0)
2585 : : high = i;
2586 : : else
2587 : 32798 : low = i;
2588 : :
2589 : 44497 : if (CASE_HIGH (t) == NULL)
2590 : : {
2591 : : /* A singe-valued case label. */
2592 : 43509 : if (cmp == 0)
2593 : : return t;
2594 : : }
2595 : : else
2596 : : {
2597 : : /* A case range. We can only handle integer ranges. */
2598 : 988 : if (cmp <= 0 && tree_int_cst_compare (CASE_HIGH (t), val) >= 0)
2599 : : return t;
2600 : : }
2601 : : }
2602 : :
2603 : : return default_case;
2604 : : }
2605 : :
2606 : :
2607 : : /* Dump a basic block on stderr. */
2608 : :
2609 : : void
2610 : 0 : gimple_debug_bb (basic_block bb)
2611 : : {
2612 : 0 : dump_bb (stderr, bb, 0, TDF_VOPS|TDF_MEMSYMS|TDF_BLOCKS);
2613 : 0 : }
2614 : :
2615 : :
2616 : : /* Dump basic block with index N on stderr. */
2617 : :
2618 : : basic_block
2619 : 0 : gimple_debug_bb_n (int n)
2620 : : {
2621 : 0 : gimple_debug_bb (BASIC_BLOCK_FOR_FN (cfun, n));
2622 : 0 : return BASIC_BLOCK_FOR_FN (cfun, n);
2623 : : }
2624 : :
2625 : :
2626 : : /* Dump the CFG on stderr.
2627 : :
2628 : : FLAGS are the same used by the tree dumping functions
2629 : : (see TDF_* in dumpfile.h). */
2630 : :
2631 : : void
2632 : 0 : gimple_debug_cfg (dump_flags_t flags)
2633 : : {
2634 : 0 : gimple_dump_cfg (stderr, flags);
2635 : 0 : }
2636 : :
2637 : :
2638 : : /* Dump the program showing basic block boundaries on the given FILE.
2639 : :
2640 : : FLAGS are the same used by the tree dumping functions (see TDF_* in
2641 : : tree.h). */
2642 : :
2643 : : void
2644 : 121 : gimple_dump_cfg (FILE *file, dump_flags_t flags)
2645 : : {
2646 : 121 : if (flags & TDF_DETAILS)
2647 : : {
2648 : 2 : dump_function_header (file, current_function_decl, flags);
2649 : 2 : fprintf (file, ";; \n%d basic blocks, %d edges, last basic block %d.\n\n",
2650 : : n_basic_blocks_for_fn (cfun), n_edges_for_fn (cfun),
2651 : 2 : last_basic_block_for_fn (cfun));
2652 : :
2653 : 2 : brief_dump_cfg (file, flags);
2654 : 2 : fprintf (file, "\n");
2655 : : }
2656 : :
2657 : 121 : if (flags & TDF_STATS)
2658 : 18 : dump_cfg_stats (file);
2659 : :
2660 : 121 : dump_function_to_file (current_function_decl, file, flags | TDF_BLOCKS);
2661 : 121 : }
2662 : :
2663 : :
2664 : : /* Dump CFG statistics on FILE. */
2665 : :
2666 : : void
2667 : 18 : dump_cfg_stats (FILE *file)
2668 : : {
2669 : 18 : static long max_num_merged_labels = 0;
2670 : 18 : unsigned long size, total = 0;
2671 : 18 : long num_edges;
2672 : 18 : basic_block bb;
2673 : 18 : const char * const fmt_str = "%-30s%-13s%12s\n";
2674 : 18 : const char * const fmt_str_1 = "%-30s%13d" PRsa (11) "\n";
2675 : 18 : const char * const fmt_str_2 = "%-30s%13ld" PRsa (11) "\n";
2676 : 18 : const char * const fmt_str_3 = "%-43s" PRsa (11) "\n";
2677 : 18 : const char *funcname = current_function_name ();
2678 : :
2679 : 18 : fprintf (file, "\nCFG Statistics for %s\n\n", funcname);
2680 : :
2681 : 18 : fprintf (file, "---------------------------------------------------------\n");
2682 : 18 : fprintf (file, fmt_str, "", " Number of ", "Memory");
2683 : 18 : fprintf (file, fmt_str, "", " instances ", "used ");
2684 : 18 : fprintf (file, "---------------------------------------------------------\n");
2685 : :
2686 : 18 : size = n_basic_blocks_for_fn (cfun) * sizeof (struct basic_block_def);
2687 : 18 : total += size;
2688 : 18 : fprintf (file, fmt_str_1, "Basic blocks", n_basic_blocks_for_fn (cfun),
2689 : 0 : SIZE_AMOUNT (size));
2690 : :
2691 : 18 : num_edges = 0;
2692 : 48 : FOR_EACH_BB_FN (bb, cfun)
2693 : 60 : num_edges += EDGE_COUNT (bb->succs);
2694 : 18 : size = num_edges * sizeof (class edge_def);
2695 : 18 : total += size;
2696 : 18 : fprintf (file, fmt_str_2, "Edges", num_edges, SIZE_AMOUNT (size));
2697 : :
2698 : 18 : fprintf (file, "---------------------------------------------------------\n");
2699 : 18 : fprintf (file, fmt_str_3, "Total memory used by CFG data",
2700 : 0 : SIZE_AMOUNT (total));
2701 : 18 : fprintf (file, "---------------------------------------------------------\n");
2702 : 18 : fprintf (file, "\n");
2703 : :
2704 : 18 : if (cfg_stats.num_merged_labels > max_num_merged_labels)
2705 : 0 : max_num_merged_labels = cfg_stats.num_merged_labels;
2706 : :
2707 : 18 : fprintf (file, "Coalesced label blocks: %ld (Max so far: %ld)\n",
2708 : : cfg_stats.num_merged_labels, max_num_merged_labels);
2709 : :
2710 : 18 : fprintf (file, "\n");
2711 : 18 : }
2712 : :
2713 : :
2714 : : /* Dump CFG statistics on stderr. Keep extern so that it's always
2715 : : linked in the final executable. */
2716 : :
2717 : : DEBUG_FUNCTION void
2718 : 0 : debug_cfg_stats (void)
2719 : : {
2720 : 0 : dump_cfg_stats (stderr);
2721 : 0 : }
2722 : :
2723 : : /*---------------------------------------------------------------------------
2724 : : Miscellaneous helpers
2725 : : ---------------------------------------------------------------------------*/
2726 : :
2727 : : /* Return true if T, a GIMPLE_CALL, can make an abnormal transfer of control
2728 : : flow. Transfers of control flow associated with EH are excluded. */
2729 : :
2730 : : static bool
2731 : 127995982 : call_can_make_abnormal_goto (gimple *t)
2732 : : {
2733 : : /* If the function has no non-local labels, then a call cannot make an
2734 : : abnormal transfer of control. */
2735 : 127995982 : if (!cfun->has_nonlocal_label
2736 : 127995982 : && !cfun->calls_setjmp)
2737 : : return false;
2738 : :
2739 : : /* Likewise if the call has no side effects. */
2740 : 212369 : if (!gimple_has_side_effects (t))
2741 : : return false;
2742 : :
2743 : : /* Likewise if the called function is leaf. */
2744 : 205079 : if (gimple_call_flags (t) & ECF_LEAF)
2745 : : return false;
2746 : :
2747 : : return true;
2748 : : }
2749 : :
2750 : :
2751 : : /* Return true if T can make an abnormal transfer of control flow.
2752 : : Transfers of control flow associated with EH are excluded. */
2753 : :
2754 : : bool
2755 : 515359680 : stmt_can_make_abnormal_goto (gimple *t)
2756 : : {
2757 : 515359680 : if (computed_goto_p (t))
2758 : : return true;
2759 : 515355868 : if (is_gimple_call (t))
2760 : 117960865 : return call_can_make_abnormal_goto (t);
2761 : : return false;
2762 : : }
2763 : :
2764 : :
2765 : : /* Return true if T represents a stmt that always transfers control. */
2766 : :
2767 : : bool
2768 : 14866530033 : is_ctrl_stmt (gimple *t)
2769 : : {
2770 : 14866530033 : switch (gimple_code (t))
2771 : : {
2772 : : case GIMPLE_COND:
2773 : : case GIMPLE_SWITCH:
2774 : : case GIMPLE_GOTO:
2775 : : case GIMPLE_RETURN:
2776 : : case GIMPLE_RESX:
2777 : : return true;
2778 : 12815765388 : default:
2779 : 12815765388 : return false;
2780 : : }
2781 : : }
2782 : :
2783 : :
2784 : : /* Return true if T is a statement that may alter the flow of control
2785 : : (e.g., a call to a non-returning function). */
2786 : :
2787 : : bool
2788 : 12145216826 : is_ctrl_altering_stmt (gimple *t)
2789 : : {
2790 : 12145216826 : gcc_assert (t);
2791 : :
2792 : 12145216826 : switch (gimple_code (t))
2793 : : {
2794 : 1021571873 : case GIMPLE_CALL:
2795 : : /* Per stmt call flag indicates whether the call could alter
2796 : : controlflow. */
2797 : 1021571873 : if (gimple_call_ctrl_altering_p (t))
2798 : : return true;
2799 : : break;
2800 : :
2801 : : case GIMPLE_EH_DISPATCH:
2802 : : /* EH_DISPATCH branches to the individual catch handlers at
2803 : : this level of a try or allowed-exceptions region. It can
2804 : : fallthru to the next statement as well. */
2805 : : return true;
2806 : :
2807 : 13596112 : case GIMPLE_ASM:
2808 : 13596112 : if (gimple_asm_nlabels (as_a <gasm *> (t)) > 0)
2809 : : return true;
2810 : : break;
2811 : :
2812 : : CASE_GIMPLE_OMP:
2813 : : /* OpenMP directives alter control flow. */
2814 : : return true;
2815 : :
2816 : : case GIMPLE_TRANSACTION:
2817 : : /* A transaction start alters control flow. */
2818 : : return true;
2819 : :
2820 : : default:
2821 : : break;
2822 : : }
2823 : :
2824 : : /* If a statement can throw, it alters control flow. */
2825 : 11990657199 : return stmt_can_throw_internal (cfun, t);
2826 : : }
2827 : :
2828 : :
2829 : : /* Return true if T is a simple local goto. */
2830 : :
2831 : : bool
2832 : 5727245 : simple_goto_p (gimple *t)
2833 : : {
2834 : 5727245 : return (gimple_code (t) == GIMPLE_GOTO
2835 : 5727245 : && TREE_CODE (gimple_goto_dest (t)) == LABEL_DECL);
2836 : : }
2837 : :
2838 : :
2839 : : /* Return true if STMT should start a new basic block. PREV_STMT is
2840 : : the statement preceding STMT. It is used when STMT is a label or a
2841 : : case label. Labels should only start a new basic block if their
2842 : : previous statement wasn't a label. Otherwise, sequence of labels
2843 : : would generate unnecessary basic blocks that only contain a single
2844 : : label. */
2845 : :
2846 : : static inline bool
2847 : 67501917 : stmt_starts_bb_p (gimple *stmt, gimple *prev_stmt)
2848 : : {
2849 : 67501917 : if (stmt == NULL)
2850 : : return false;
2851 : :
2852 : : /* PREV_STMT is only set to a debug stmt if the debug stmt is before
2853 : : any nondebug stmts in the block. We don't want to start another
2854 : : block in this case: the debug stmt will already have started the
2855 : : one STMT would start if we weren't outputting debug stmts. */
2856 : 67501917 : if (prev_stmt && is_gimple_debug (prev_stmt))
2857 : : return false;
2858 : :
2859 : : /* Labels start a new basic block only if the preceding statement
2860 : : wasn't a label of the same type. This prevents the creation of
2861 : : consecutive blocks that have nothing but a single label. */
2862 : 67017249 : if (glabel *label_stmt = dyn_cast <glabel *> (stmt))
2863 : : {
2864 : : /* Nonlocal and computed GOTO targets always start a new block. */
2865 : 3878344 : if (DECL_NONLOCAL (gimple_label_label (label_stmt))
2866 : 3878344 : || FORCED_LABEL (gimple_label_label (label_stmt)))
2867 : : return true;
2868 : :
2869 : 5649808 : if (glabel *plabel = safe_dyn_cast <glabel *> (prev_stmt))
2870 : : {
2871 : 2104126 : if (DECL_NONLOCAL (gimple_label_label (plabel))
2872 : 2104126 : || !DECL_ARTIFICIAL (gimple_label_label (plabel)))
2873 : : return true;
2874 : :
2875 : 2094770 : cfg_stats.num_merged_labels++;
2876 : 2094770 : return false;
2877 : : }
2878 : : else
2879 : : return true;
2880 : : }
2881 : 63138905 : else if (gimple_code (stmt) == GIMPLE_CALL)
2882 : : {
2883 : 8529724 : if (gimple_call_flags (stmt) & ECF_RETURNS_TWICE)
2884 : : /* setjmp acts similar to a nonlocal GOTO target and thus should
2885 : : start a new block. */
2886 : : return true;
2887 : 8528666 : if (gimple_call_internal_p (stmt, IFN_PHI)
2888 : 0 : && prev_stmt
2889 : 0 : && gimple_code (prev_stmt) != GIMPLE_LABEL
2890 : 8528666 : && (gimple_code (prev_stmt) != GIMPLE_CALL
2891 : 0 : || ! gimple_call_internal_p (prev_stmt, IFN_PHI)))
2892 : : /* PHI nodes start a new block unless preceeded by a label
2893 : : or another PHI. */
2894 : : return true;
2895 : : }
2896 : :
2897 : : return false;
2898 : : }
2899 : :
2900 : :
2901 : : /* Return true if T should end a basic block. */
2902 : :
2903 : : bool
2904 : 13021709202 : stmt_ends_bb_p (gimple *t)
2905 : : {
2906 : 13021709202 : return is_ctrl_stmt (t) || is_ctrl_altering_stmt (t);
2907 : : }
2908 : :
2909 : : /* Remove block annotations and other data structures. */
2910 : :
2911 : : void
2912 : 2919937 : delete_tree_cfg_annotations (struct function *fn)
2913 : : {
2914 : 2919937 : vec_free (label_to_block_map_for_fn (fn));
2915 : 2919937 : }
2916 : :
2917 : : /* Return the virtual phi in BB. */
2918 : :
2919 : : gphi *
2920 : 2561132236 : get_virtual_phi (basic_block bb)
2921 : : {
2922 : 2561132236 : for (gphi_iterator gsi = gsi_start_phis (bb);
2923 : 3164789578 : !gsi_end_p (gsi);
2924 : 603657342 : gsi_next (&gsi))
2925 : : {
2926 : 1377327737 : gphi *phi = gsi.phi ();
2927 : :
2928 : 2754655474 : if (virtual_operand_p (PHI_RESULT (phi)))
2929 : 773670395 : return phi;
2930 : : }
2931 : :
2932 : 1787461841 : return NULL;
2933 : : }
2934 : :
2935 : : /* Return the first statement in basic block BB. */
2936 : :
2937 : : gimple *
2938 : 41795290 : first_stmt (basic_block bb)
2939 : : {
2940 : 41795290 : gimple_stmt_iterator i = gsi_start_bb (bb);
2941 : 41795290 : gimple *stmt = NULL;
2942 : :
2943 : 119893194 : while (!gsi_end_p (i) && is_gimple_debug ((stmt = gsi_stmt (i))))
2944 : : {
2945 : 78097904 : gsi_next (&i);
2946 : 78097904 : stmt = NULL;
2947 : : }
2948 : 41795290 : return stmt;
2949 : : }
2950 : :
2951 : : /* Return the first non-label statement in basic block BB. */
2952 : :
2953 : : static gimple *
2954 : 24987072 : first_non_label_stmt (basic_block bb)
2955 : : {
2956 : 24987072 : gimple_stmt_iterator i = gsi_start_bb (bb);
2957 : 45159046 : while (!gsi_end_p (i) && gimple_code (gsi_stmt (i)) == GIMPLE_LABEL)
2958 : 20171974 : gsi_next (&i);
2959 : 24987072 : return !gsi_end_p (i) ? gsi_stmt (i) : NULL;
2960 : : }
2961 : :
2962 : : /* Return the last statement in basic block BB. */
2963 : :
2964 : : gimple *
2965 : 201214407 : last_nondebug_stmt (basic_block bb)
2966 : : {
2967 : 201214407 : gimple_stmt_iterator i = gsi_last_bb (bb);
2968 : : gimple *stmt = NULL;
2969 : :
2970 : 215754646 : while (!gsi_end_p (i) && is_gimple_debug ((stmt = gsi_stmt (i))))
2971 : : {
2972 : 280217103 : gsi_prev (&i);
2973 : : stmt = NULL;
2974 : : }
2975 : 201214407 : return stmt;
2976 : : }
2977 : :
2978 : : /* Return the last statement of an otherwise empty block. Return NULL
2979 : : if the block is totally empty, or if it contains more than one
2980 : : statement. */
2981 : :
2982 : : gimple *
2983 : 9177214 : last_and_only_stmt (basic_block bb)
2984 : : {
2985 : 9177214 : gimple_stmt_iterator i = gsi_last_nondebug_bb (bb);
2986 : 9177214 : gimple *last, *prev;
2987 : :
2988 : 9177214 : if (gsi_end_p (i))
2989 : : return NULL;
2990 : :
2991 : 8441324 : last = gsi_stmt (i);
2992 : 8441324 : gsi_prev_nondebug (&i);
2993 : 8441324 : if (gsi_end_p (i))
2994 : : return last;
2995 : :
2996 : : /* Empty statements should no longer appear in the instruction stream.
2997 : : Everything that might have appeared before should be deleted by
2998 : : remove_useless_stmts, and the optimizers should just gsi_remove
2999 : : instead of smashing with build_empty_stmt.
3000 : :
3001 : : Thus the only thing that should appear here in a block containing
3002 : : one executable statement is a label. */
3003 : 6936511 : prev = gsi_stmt (i);
3004 : 6936511 : if (gimple_code (prev) == GIMPLE_LABEL)
3005 : : return last;
3006 : : else
3007 : : return NULL;
3008 : : }
3009 : :
3010 : : /* Returns the basic block after which the new basic block created
3011 : : by splitting edge EDGE_IN should be placed. Tries to keep the new block
3012 : : near its "logical" location. This is of most help to humans looking
3013 : : at debugging dumps. */
3014 : :
3015 : : basic_block
3016 : 24892894 : split_edge_bb_loc (edge edge_in)
3017 : : {
3018 : 24892894 : basic_block dest = edge_in->dest;
3019 : 24892894 : basic_block dest_prev = dest->prev_bb;
3020 : :
3021 : 24892894 : if (dest_prev)
3022 : : {
3023 : 24892894 : edge e = find_edge (dest_prev, dest);
3024 : 24892894 : if (e && !(e->flags & EDGE_COMPLEX))
3025 : 20951272 : return edge_in->src;
3026 : : }
3027 : : return dest_prev;
3028 : : }
3029 : :
3030 : : /* Split a (typically critical) edge EDGE_IN. Return the new block.
3031 : : Abort on abnormal edges. */
3032 : :
3033 : : static basic_block
3034 : 23369716 : gimple_split_edge (edge edge_in)
3035 : : {
3036 : 23369716 : basic_block new_bb, after_bb, dest;
3037 : 23369716 : edge new_edge, e;
3038 : :
3039 : : /* Abnormal edges cannot be split. */
3040 : 23369716 : gcc_assert (!(edge_in->flags & EDGE_ABNORMAL));
3041 : :
3042 : 23369716 : dest = edge_in->dest;
3043 : :
3044 : 23369716 : after_bb = split_edge_bb_loc (edge_in);
3045 : :
3046 : 23369716 : new_bb = create_empty_bb (after_bb);
3047 : 23369716 : new_bb->count = edge_in->count ();
3048 : :
3049 : : /* We want to avoid re-allocating PHIs when we first
3050 : : add the fallthru edge from new_bb to dest but we also
3051 : : want to avoid changing PHI argument order when
3052 : : first redirecting edge_in away from dest. The former
3053 : : avoids changing PHI argument order by adding them
3054 : : last and then the redirection swapping it back into
3055 : : place by means of unordered remove.
3056 : : So hack around things by temporarily removing all PHIs
3057 : : from the destination during the edge redirection and then
3058 : : making sure the edges stay in order. */
3059 : 23369716 : gimple_seq saved_phis = phi_nodes (dest);
3060 : 23369716 : unsigned old_dest_idx = edge_in->dest_idx;
3061 : 23369716 : set_phi_nodes (dest, NULL);
3062 : 23369716 : new_edge = make_single_succ_edge (new_bb, dest, EDGE_FALLTHRU);
3063 : 23369716 : e = redirect_edge_and_branch (edge_in, new_bb);
3064 : 23369716 : gcc_assert (e == edge_in && new_edge->dest_idx == old_dest_idx);
3065 : : /* set_phi_nodes sets the BB of the PHI nodes, so do it manually here. */
3066 : 23369716 : dest->il.gimple.phi_nodes = saved_phis;
3067 : :
3068 : 23369716 : return new_bb;
3069 : : }
3070 : :
3071 : :
3072 : : /* Verify properties of the address expression T whose base should be
3073 : : TREE_ADDRESSABLE if VERIFY_ADDRESSABLE is true. */
3074 : :
3075 : : static bool
3076 : 529297127 : verify_address (tree t, bool verify_addressable)
3077 : : {
3078 : 529297127 : bool old_constant;
3079 : 529297127 : bool old_side_effects;
3080 : 529297127 : bool new_constant;
3081 : 529297127 : bool new_side_effects;
3082 : :
3083 : 529297127 : old_constant = TREE_CONSTANT (t);
3084 : 529297127 : old_side_effects = TREE_SIDE_EFFECTS (t);
3085 : :
3086 : 529297127 : recompute_tree_invariant_for_addr_expr (t);
3087 : 529297127 : new_side_effects = TREE_SIDE_EFFECTS (t);
3088 : 529297127 : new_constant = TREE_CONSTANT (t);
3089 : :
3090 : 529297127 : if (old_constant != new_constant)
3091 : : {
3092 : 0 : error ("constant not recomputed when %<ADDR_EXPR%> changed");
3093 : 0 : return true;
3094 : : }
3095 : 529297127 : if (old_side_effects != new_side_effects)
3096 : : {
3097 : 0 : error ("side effects not recomputed when %<ADDR_EXPR%> changed");
3098 : 0 : return true;
3099 : : }
3100 : :
3101 : 529297127 : tree base = TREE_OPERAND (t, 0);
3102 : 662054305 : while (handled_component_p (base))
3103 : 132757178 : base = TREE_OPERAND (base, 0);
3104 : :
3105 : 529297127 : if (!(VAR_P (base)
3106 : : || TREE_CODE (base) == PARM_DECL
3107 : : || TREE_CODE (base) == RESULT_DECL))
3108 : : return false;
3109 : :
3110 : 379820847 : if (verify_addressable && !TREE_ADDRESSABLE (base))
3111 : : {
3112 : 0 : error ("address taken but %<TREE_ADDRESSABLE%> bit not set");
3113 : 0 : return true;
3114 : : }
3115 : :
3116 : : return false;
3117 : : }
3118 : :
3119 : :
3120 : : /* Verify if EXPR is a valid GIMPLE reference expression. If
3121 : : REQUIRE_LVALUE is true verifies it is an lvalue. Returns true
3122 : : if there is an error, otherwise false. */
3123 : :
3124 : : static bool
3125 : 3455102199 : verify_types_in_gimple_reference (tree expr, bool require_lvalue)
3126 : : {
3127 : 3455102199 : const char *code_name = get_tree_code_name (TREE_CODE (expr));
3128 : :
3129 : 3455102199 : if (TREE_CODE (expr) == REALPART_EXPR
3130 : 3455102199 : || TREE_CODE (expr) == IMAGPART_EXPR
3131 : 3422867638 : || TREE_CODE (expr) == BIT_FIELD_REF
3132 : 3410812744 : || TREE_CODE (expr) == VIEW_CONVERT_EXPR)
3133 : : {
3134 : 86584667 : tree op = TREE_OPERAND (expr, 0);
3135 : 86584667 : if (TREE_CODE (expr) != VIEW_CONVERT_EXPR
3136 : 86584667 : && !is_gimple_reg_type (TREE_TYPE (expr)))
3137 : : {
3138 : 0 : error ("non-scalar %qs", code_name);
3139 : 0 : return true;
3140 : : }
3141 : :
3142 : 86584667 : if (TREE_CODE (expr) == BIT_FIELD_REF)
3143 : : {
3144 : 12054894 : tree t1 = TREE_OPERAND (expr, 1);
3145 : 12054894 : tree t2 = TREE_OPERAND (expr, 2);
3146 : 12054894 : poly_uint64 size, bitpos;
3147 : 12054894 : if (!poly_int_tree_p (t1, &size)
3148 : 12054894 : || !poly_int_tree_p (t2, &bitpos)
3149 : 12054894 : || !types_compatible_p (bitsizetype, TREE_TYPE (t1))
3150 : 24109788 : || !types_compatible_p (bitsizetype, TREE_TYPE (t2)))
3151 : : {
3152 : 0 : error ("invalid position or size operand to %qs", code_name);
3153 : 0 : return true;
3154 : : }
3155 : 24069852 : if (INTEGRAL_TYPE_P (TREE_TYPE (expr))
3156 : 22271156 : && maybe_ne (TYPE_PRECISION (TREE_TYPE (expr)), size))
3157 : : {
3158 : 0 : error ("integral result type precision does not match "
3159 : : "field size of %qs", code_name);
3160 : 0 : return true;
3161 : : }
3162 : 12054894 : else if (!INTEGRAL_TYPE_P (TREE_TYPE (expr))
3163 : 1798696 : && TYPE_MODE (TREE_TYPE (expr)) != BLKmode
3164 : 3597134 : && maybe_ne (GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (expr))),
3165 : : size))
3166 : : {
3167 : 0 : error ("mode size of non-integral result does not "
3168 : : "match field size of %qs",
3169 : : code_name);
3170 : 0 : return true;
3171 : : }
3172 : 24109084 : if (INTEGRAL_TYPE_P (TREE_TYPE (op))
3173 : 12275637 : && !type_has_mode_precision_p (TREE_TYPE (op)))
3174 : : {
3175 : 0 : error ("%qs of non-mode-precision operand", code_name);
3176 : 0 : return true;
3177 : : }
3178 : 12054894 : if (!AGGREGATE_TYPE_P (TREE_TYPE (op))
3179 : 12054894 : && known_gt (size + bitpos,
3180 : : tree_to_poly_uint64 (TYPE_SIZE (TREE_TYPE (op)))))
3181 : : {
3182 : 0 : error ("position plus size exceeds size of referenced object in "
3183 : : "%qs", code_name);
3184 : 0 : return true;
3185 : : }
3186 : : }
3187 : :
3188 : 86584667 : if ((TREE_CODE (expr) == REALPART_EXPR
3189 : 86584667 : || TREE_CODE (expr) == IMAGPART_EXPR)
3190 : 118819228 : && !useless_type_conversion_p (TREE_TYPE (expr),
3191 : 32234561 : TREE_TYPE (TREE_TYPE (op))))
3192 : : {
3193 : 0 : error ("type mismatch in %qs reference", code_name);
3194 : 0 : debug_generic_stmt (TREE_TYPE (expr));
3195 : 0 : debug_generic_stmt (TREE_TYPE (TREE_TYPE (op)));
3196 : 0 : return true;
3197 : : }
3198 : :
3199 : 86584667 : if (TREE_CODE (expr) == VIEW_CONVERT_EXPR)
3200 : : {
3201 : : /* For VIEW_CONVERT_EXPRs which are allowed here too, we only check
3202 : : that their operand is not a register an invariant when
3203 : : requiring an lvalue (this usually means there is a SRA or IPA-SRA
3204 : : bug). Otherwise there is nothing to verify, gross mismatches at
3205 : : most invoke undefined behavior. */
3206 : 42295212 : if (require_lvalue
3207 : 42295212 : && (is_gimple_reg (op) || is_gimple_min_invariant (op)))
3208 : : {
3209 : 0 : error ("conversion of %qs on the left hand side of %qs",
3210 : 0 : get_tree_code_name (TREE_CODE (op)), code_name);
3211 : 0 : debug_generic_stmt (expr);
3212 : 0 : return true;
3213 : : }
3214 : 42295212 : else if (is_gimple_reg (op)
3215 : 42295212 : && TYPE_SIZE (TREE_TYPE (expr)) != TYPE_SIZE (TREE_TYPE (op)))
3216 : : {
3217 : 0 : error ("conversion of register to a different size in %qs",
3218 : : code_name);
3219 : 0 : debug_generic_stmt (expr);
3220 : 0 : return true;
3221 : : }
3222 : : }
3223 : :
3224 : : expr = op;
3225 : : }
3226 : :
3227 : : bool require_non_reg = false;
3228 : 5722778420 : while (handled_component_p (expr))
3229 : : {
3230 : 2267676221 : require_non_reg = true;
3231 : 2267676221 : code_name = get_tree_code_name (TREE_CODE (expr));
3232 : :
3233 : 2267676221 : if (TREE_CODE (expr) == REALPART_EXPR
3234 : 2267676221 : || TREE_CODE (expr) == IMAGPART_EXPR
3235 : 2267676221 : || TREE_CODE (expr) == BIT_FIELD_REF)
3236 : : {
3237 : 0 : error ("non-top-level %qs", code_name);
3238 : 0 : return true;
3239 : : }
3240 : :
3241 : 2267676221 : tree op = TREE_OPERAND (expr, 0);
3242 : :
3243 : 2267676221 : if (TREE_CODE (expr) == ARRAY_REF
3244 : 2267676221 : || TREE_CODE (expr) == ARRAY_RANGE_REF)
3245 : : {
3246 : 419076495 : if (!is_gimple_val (TREE_OPERAND (expr, 1))
3247 : 419076495 : || (TREE_OPERAND (expr, 2)
3248 : 2605514 : && !is_gimple_val (TREE_OPERAND (expr, 2)))
3249 : 838152990 : || (TREE_OPERAND (expr, 3)
3250 : 627411 : && !is_gimple_val (TREE_OPERAND (expr, 3))))
3251 : : {
3252 : 0 : error ("invalid operands to %qs", code_name);
3253 : 0 : debug_generic_stmt (expr);
3254 : 0 : return true;
3255 : : }
3256 : : }
3257 : :
3258 : : /* Verify if the reference array element types are compatible. */
3259 : 2267676221 : if (TREE_CODE (expr) == ARRAY_REF
3260 : 2686322391 : && !useless_type_conversion_p (TREE_TYPE (expr),
3261 : 418646170 : TREE_TYPE (TREE_TYPE (op))))
3262 : : {
3263 : 0 : error ("type mismatch in %qs", code_name);
3264 : 0 : debug_generic_stmt (TREE_TYPE (expr));
3265 : 0 : debug_generic_stmt (TREE_TYPE (TREE_TYPE (op)));
3266 : 0 : return true;
3267 : : }
3268 : 2267676221 : if (TREE_CODE (expr) == ARRAY_RANGE_REF
3269 : 2268106546 : && !useless_type_conversion_p (TREE_TYPE (TREE_TYPE (expr)),
3270 : 430325 : TREE_TYPE (TREE_TYPE (op))))
3271 : : {
3272 : 0 : error ("type mismatch in %qs", code_name);
3273 : 0 : debug_generic_stmt (TREE_TYPE (TREE_TYPE (expr)));
3274 : 0 : debug_generic_stmt (TREE_TYPE (TREE_TYPE (op)));
3275 : 0 : return true;
3276 : : }
3277 : :
3278 : 2267676221 : if (TREE_CODE (expr) == COMPONENT_REF)
3279 : : {
3280 : 1846299658 : if (TREE_OPERAND (expr, 2)
3281 : 1846299658 : && !is_gimple_val (TREE_OPERAND (expr, 2)))
3282 : : {
3283 : 0 : error ("invalid %qs offset operator", code_name);
3284 : 0 : return true;
3285 : : }
3286 : 1846299658 : if (!useless_type_conversion_p (TREE_TYPE (expr),
3287 : 1846299658 : TREE_TYPE (TREE_OPERAND (expr, 1))))
3288 : : {
3289 : 0 : error ("type mismatch in %qs", code_name);
3290 : 0 : debug_generic_stmt (TREE_TYPE (expr));
3291 : 0 : debug_generic_stmt (TREE_TYPE (TREE_OPERAND (expr, 1)));
3292 : 0 : return true;
3293 : : }
3294 : : }
3295 : :
3296 : : expr = op;
3297 : : }
3298 : :
3299 : 3455102199 : code_name = get_tree_code_name (TREE_CODE (expr));
3300 : :
3301 : 3455102199 : if (TREE_CODE (expr) == MEM_REF)
3302 : : {
3303 : 1130006276 : if (!is_gimple_mem_ref_addr (TREE_OPERAND (expr, 0))
3304 : 1130006276 : || (TREE_CODE (TREE_OPERAND (expr, 0)) == ADDR_EXPR
3305 : 283768344 : && verify_address (TREE_OPERAND (expr, 0), false)))
3306 : : {
3307 : 0 : error ("invalid address operand in %qs", code_name);
3308 : 0 : debug_generic_stmt (expr);
3309 : 0 : return true;
3310 : : }
3311 : 1130006276 : if (!poly_int_tree_p (TREE_OPERAND (expr, 1))
3312 : 1130006276 : || !POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (expr, 1))))
3313 : : {
3314 : 0 : error ("invalid offset operand in %qs", code_name);
3315 : 0 : debug_generic_stmt (expr);
3316 : 0 : return true;
3317 : : }
3318 : 1130006276 : if (MR_DEPENDENCE_CLIQUE (expr) != 0
3319 : 1130006276 : && MR_DEPENDENCE_CLIQUE (expr) > cfun->last_clique)
3320 : : {
3321 : 0 : error ("invalid clique in %qs", code_name);
3322 : 0 : debug_generic_stmt (expr);
3323 : 0 : return true;
3324 : : }
3325 : : }
3326 : 2325095923 : else if (TREE_CODE (expr) == TARGET_MEM_REF)
3327 : : {
3328 : 27278401 : if (!TMR_BASE (expr)
3329 : 27278401 : || !is_gimple_mem_ref_addr (TMR_BASE (expr))
3330 : 54556802 : || (TREE_CODE (TMR_BASE (expr)) == ADDR_EXPR
3331 : 6490226 : && verify_address (TMR_BASE (expr), false)))
3332 : : {
3333 : 0 : error ("invalid address operand in %qs", code_name);
3334 : 0 : return true;
3335 : : }
3336 : 27278401 : if (!TMR_OFFSET (expr)
3337 : 27278401 : || !poly_int_tree_p (TMR_OFFSET (expr))
3338 : 54556802 : || !POINTER_TYPE_P (TREE_TYPE (TMR_OFFSET (expr))))
3339 : : {
3340 : 0 : error ("invalid offset operand in %qs", code_name);
3341 : 0 : debug_generic_stmt (expr);
3342 : 0 : return true;
3343 : : }
3344 : 27278401 : if (MR_DEPENDENCE_CLIQUE (expr) != 0
3345 : 27278401 : && MR_DEPENDENCE_CLIQUE (expr) > cfun->last_clique)
3346 : : {
3347 : 0 : error ("invalid clique in %qs", code_name);
3348 : 0 : debug_generic_stmt (expr);
3349 : 0 : return true;
3350 : : }
3351 : : }
3352 : 2297817522 : else if (INDIRECT_REF_P (expr))
3353 : : {
3354 : 0 : error ("%qs in gimple IL", code_name);
3355 : 0 : debug_generic_stmt (expr);
3356 : 0 : return true;
3357 : : }
3358 : 2297817522 : else if (require_non_reg
3359 : 2297817522 : && (is_gimple_reg (expr)
3360 : 911416578 : || (is_gimple_min_invariant (expr)
3361 : : /* STRING_CSTs are representatives of the string table
3362 : : entry which lives in memory. */
3363 : 8512483 : && TREE_CODE (expr) != STRING_CST)))
3364 : : {
3365 : 0 : error ("%qs as base where non-register is required", code_name);
3366 : 0 : debug_generic_stmt (expr);
3367 : 0 : return true;
3368 : : }
3369 : :
3370 : 3455102199 : if (!require_lvalue
3371 : 3455102199 : && (is_gimple_reg (expr) || is_gimple_min_invariant (expr)))
3372 : 1082130087 : return false;
3373 : :
3374 : 2372972112 : if (TREE_CODE (expr) != SSA_NAME && is_gimple_id (expr))
3375 : : return false;
3376 : :
3377 : 1157284677 : if (TREE_CODE (expr) != TARGET_MEM_REF
3378 : 1157284677 : && TREE_CODE (expr) != MEM_REF)
3379 : : {
3380 : 0 : error ("invalid expression for min lvalue");
3381 : 0 : return true;
3382 : : }
3383 : :
3384 : : return false;
3385 : : }
3386 : :
3387 : : /* Returns true if there is one pointer type in TYPE_POINTER_TO (SRC_OBJ)
3388 : : list of pointer-to types that is trivially convertible to DEST. */
3389 : :
3390 : : static bool
3391 : 96 : one_pointer_to_useless_type_conversion_p (tree dest, tree src_obj)
3392 : : {
3393 : 96 : tree src;
3394 : :
3395 : 96 : if (!TYPE_POINTER_TO (src_obj))
3396 : : return true;
3397 : :
3398 : 96 : for (src = TYPE_POINTER_TO (src_obj); src; src = TYPE_NEXT_PTR_TO (src))
3399 : 96 : if (useless_type_conversion_p (dest, src))
3400 : : return true;
3401 : :
3402 : : return false;
3403 : : }
3404 : :
3405 : : /* Return true if TYPE1 is a fixed-point type and if conversions to and
3406 : : from TYPE2 can be handled by FIXED_CONVERT_EXPR. */
3407 : :
3408 : : static bool
3409 : 0 : valid_fixed_convert_types_p (tree type1, tree type2)
3410 : : {
3411 : 0 : return (FIXED_POINT_TYPE_P (type1)
3412 : 0 : && (INTEGRAL_TYPE_P (type2)
3413 : 0 : || SCALAR_FLOAT_TYPE_P (type2)
3414 : 0 : || FIXED_POINT_TYPE_P (type2)));
3415 : : }
3416 : :
3417 : : /* Verify the contents of a GIMPLE_CALL STMT. Returns true when there
3418 : : is a problem, otherwise false. */
3419 : :
3420 : : static bool
3421 : 979348286 : verify_gimple_call (gcall *stmt)
3422 : : {
3423 : 979348286 : tree fn = gimple_call_fn (stmt);
3424 : 979348286 : tree fntype, fndecl;
3425 : 979348286 : unsigned i;
3426 : :
3427 : 979348286 : if (gimple_call_internal_p (stmt))
3428 : : {
3429 : 28546400 : if (fn)
3430 : : {
3431 : 0 : error ("gimple call has two targets");
3432 : 0 : debug_generic_stmt (fn);
3433 : 0 : return true;
3434 : : }
3435 : : }
3436 : : else
3437 : : {
3438 : 950801886 : if (!fn)
3439 : : {
3440 : 0 : error ("gimple call has no target");
3441 : 0 : return true;
3442 : : }
3443 : : }
3444 : :
3445 : 950801886 : if (fn && !is_gimple_call_addr (fn))
3446 : : {
3447 : 0 : error ("invalid function in gimple call");
3448 : 0 : debug_generic_stmt (fn);
3449 : 0 : return true;
3450 : : }
3451 : :
3452 : 979348286 : if (fn
3453 : 979348286 : && (!POINTER_TYPE_P (TREE_TYPE (fn))
3454 : 950801886 : || (TREE_CODE (TREE_TYPE (TREE_TYPE (fn))) != FUNCTION_TYPE
3455 : 151276318 : && TREE_CODE (TREE_TYPE (TREE_TYPE (fn))) != METHOD_TYPE)))
3456 : : {
3457 : 0 : error ("non-function in gimple call");
3458 : 0 : return true;
3459 : : }
3460 : :
3461 : 979348286 : fndecl = gimple_call_fndecl (stmt);
3462 : 979348286 : if (fndecl
3463 : 925370108 : && TREE_CODE (fndecl) == FUNCTION_DECL
3464 : 925370108 : && DECL_LOOPING_CONST_OR_PURE_P (fndecl)
3465 : 5790986 : && !DECL_PURE_P (fndecl)
3466 : 979755338 : && !TREE_READONLY (fndecl))
3467 : : {
3468 : 0 : error ("invalid pure const state for function");
3469 : 0 : return true;
3470 : : }
3471 : :
3472 : 979348286 : tree lhs = gimple_call_lhs (stmt);
3473 : 979348286 : if (lhs
3474 : 979348286 : && (!is_gimple_reg (lhs)
3475 : 61820905 : && (!is_gimple_lvalue (lhs)
3476 : 61820905 : || verify_types_in_gimple_reference
3477 : 61820905 : (TREE_CODE (lhs) == WITH_SIZE_EXPR
3478 : 0 : ? TREE_OPERAND (lhs, 0) : lhs, true))))
3479 : : {
3480 : 0 : error ("invalid LHS in gimple call");
3481 : 0 : return true;
3482 : : }
3483 : :
3484 : 979348286 : if (gimple_call_ctrl_altering_p (stmt)
3485 : 132332276 : && gimple_call_noreturn_p (stmt)
3486 : 1107409352 : && should_remove_lhs_p (lhs))
3487 : : {
3488 : 0 : error ("LHS in %<noreturn%> call");
3489 : 0 : return true;
3490 : : }
3491 : :
3492 : 979348286 : fntype = gimple_call_fntype (stmt);
3493 : 979348286 : if (fntype
3494 : 979348286 : && lhs
3495 : 363751776 : && !useless_type_conversion_p (TREE_TYPE (lhs), TREE_TYPE (fntype))
3496 : : /* ??? At least C++ misses conversions at assignments from
3497 : : void * call results.
3498 : : For now simply allow arbitrary pointer type conversions. */
3499 : 979348286 : && !(POINTER_TYPE_P (TREE_TYPE (lhs))
3500 : 0 : && POINTER_TYPE_P (TREE_TYPE (fntype))))
3501 : : {
3502 : 0 : error ("invalid conversion in gimple call");
3503 : 0 : debug_generic_stmt (TREE_TYPE (lhs));
3504 : 0 : debug_generic_stmt (TREE_TYPE (fntype));
3505 : 0 : return true;
3506 : : }
3507 : :
3508 : 979348286 : if (gimple_call_chain (stmt)
3509 : 979348286 : && !is_gimple_val (gimple_call_chain (stmt)))
3510 : : {
3511 : 0 : error ("invalid static chain in gimple call");
3512 : 0 : debug_generic_stmt (gimple_call_chain (stmt));
3513 : 0 : return true;
3514 : : }
3515 : :
3516 : : /* If there is a static chain argument, the call should either be
3517 : : indirect, or the decl should have DECL_STATIC_CHAIN set. */
3518 : 979348286 : if (gimple_call_chain (stmt)
3519 : 4952794 : && fndecl
3520 : 980829607 : && !DECL_STATIC_CHAIN (fndecl))
3521 : : {
3522 : 0 : error ("static chain with function that doesn%'t use one");
3523 : 0 : return true;
3524 : : }
3525 : :
3526 : 979348286 : if (fndecl && fndecl_built_in_p (fndecl, BUILT_IN_NORMAL))
3527 : : {
3528 : 231573006 : switch (DECL_FUNCTION_CODE (fndecl))
3529 : : {
3530 : 20850219 : case BUILT_IN_UNREACHABLE:
3531 : 20850219 : case BUILT_IN_UNREACHABLE_TRAP:
3532 : 20850219 : case BUILT_IN_TRAP:
3533 : 20850219 : if (gimple_call_num_args (stmt) > 0)
3534 : : {
3535 : : /* Built-in unreachable with parameters might not be caught by
3536 : : undefined behavior sanitizer. Front-ends do check users do not
3537 : : call them that way but we also produce calls to
3538 : : __builtin_unreachable internally, for example when IPA figures
3539 : : out a call cannot happen in a legal program. In such cases,
3540 : : we must make sure arguments are stripped off. */
3541 : 0 : error ("%<__builtin_unreachable%> or %<__builtin_trap%> call "
3542 : : "with arguments");
3543 : 0 : return true;
3544 : : }
3545 : : break;
3546 : : default:
3547 : : break;
3548 : : }
3549 : : }
3550 : :
3551 : : /* For a call to .DEFERRED_INIT,
3552 : : LHS = DEFERRED_INIT (SIZE of the DECL, INIT_TYPE, NAME of the DECL)
3553 : : we should guarantee that when the 1st argument is a constant, it should
3554 : : be the same as the size of the LHS. */
3555 : :
3556 : 979348286 : if (gimple_call_internal_p (stmt, IFN_DEFERRED_INIT))
3557 : : {
3558 : 42536 : tree size_of_arg0 = gimple_call_arg (stmt, 0);
3559 : 42536 : tree size_of_lhs = TYPE_SIZE_UNIT (TREE_TYPE (lhs));
3560 : :
3561 : 42536 : if (TREE_CODE (lhs) == SSA_NAME)
3562 : 42536 : lhs = SSA_NAME_VAR (lhs);
3563 : :
3564 : 42536 : poly_uint64 size_from_arg0, size_from_lhs;
3565 : 42536 : bool is_constant_size_arg0 = poly_int_tree_p (size_of_arg0,
3566 : : &size_from_arg0);
3567 : 42536 : bool is_constant_size_lhs = poly_int_tree_p (size_of_lhs,
3568 : : &size_from_lhs);
3569 : 42536 : if (is_constant_size_arg0 && is_constant_size_lhs)
3570 : 40217 : if (maybe_ne (size_from_arg0, size_from_lhs))
3571 : : {
3572 : 0 : error ("%<DEFERRED_INIT%> calls should have same "
3573 : : "constant size for the first argument and LHS");
3574 : 0 : return true;
3575 : : }
3576 : : }
3577 : :
3578 : : /* ??? The C frontend passes unpromoted arguments in case it
3579 : : didn't see a function declaration before the call. So for now
3580 : : leave the call arguments mostly unverified. Once we gimplify
3581 : : unit-at-a-time we have a chance to fix this. */
3582 : 2922020299 : for (i = 0; i < gimple_call_num_args (stmt); ++i)
3583 : : {
3584 : 1942672014 : tree arg = gimple_call_arg (stmt, i);
3585 : 1942672014 : if ((is_gimple_reg_type (TREE_TYPE (arg))
3586 : 1832122256 : && !is_gimple_val (arg))
3587 : 3774794269 : || (!is_gimple_reg_type (TREE_TYPE (arg))
3588 : 110549758 : && !is_gimple_lvalue (arg)))
3589 : : {
3590 : 1 : error ("invalid argument to gimple call");
3591 : 1 : debug_generic_expr (arg);
3592 : 1 : return true;
3593 : : }
3594 : 1942672013 : if (!is_gimple_reg (arg))
3595 : : {
3596 : 1140528617 : if (TREE_CODE (arg) == WITH_SIZE_EXPR)
3597 : 22152 : arg = TREE_OPERAND (arg, 0);
3598 : 1140528617 : if (verify_types_in_gimple_reference (arg, false))
3599 : : return true;
3600 : : }
3601 : : }
3602 : :
3603 : : return false;
3604 : : }
3605 : :
3606 : : /* Verifies the gimple comparison with the result type TYPE and
3607 : : the operands OP0 and OP1, comparison code is CODE. */
3608 : :
3609 : : static bool
3610 : 770606683 : verify_gimple_comparison (tree type, tree op0, tree op1, enum tree_code code)
3611 : : {
3612 : 770606683 : tree op0_type = TREE_TYPE (op0);
3613 : 770606683 : tree op1_type = TREE_TYPE (op1);
3614 : :
3615 : 770606683 : if (!is_gimple_val (op0) || !is_gimple_val (op1))
3616 : : {
3617 : 0 : error ("invalid operands in gimple comparison");
3618 : 0 : return true;
3619 : : }
3620 : :
3621 : : /* For comparisons we do not have the operations type as the
3622 : : effective type the comparison is carried out in. Instead
3623 : : we require that either the first operand is trivially
3624 : : convertible into the second, or the other way around. */
3625 : 770606683 : if (!useless_type_conversion_p (op0_type, op1_type)
3626 : 770606683 : && !useless_type_conversion_p (op1_type, op0_type))
3627 : : {
3628 : 0 : error ("mismatching comparison operand types");
3629 : 0 : debug_generic_expr (op0_type);
3630 : 0 : debug_generic_expr (op1_type);
3631 : 0 : return true;
3632 : : }
3633 : :
3634 : : /* The resulting type of a comparison may be an effective boolean type. */
3635 : 770606683 : if (INTEGRAL_TYPE_P (type)
3636 : 770606683 : && (TREE_CODE (type) == BOOLEAN_TYPE
3637 : 686 : || TYPE_PRECISION (type) == 1))
3638 : : {
3639 : 769341391 : if ((VECTOR_TYPE_P (op0_type)
3640 : 769258213 : || VECTOR_TYPE_P (op1_type))
3641 : 83178 : && code != EQ_EXPR && code != NE_EXPR
3642 : 0 : && !VECTOR_BOOLEAN_TYPE_P (op0_type)
3643 : 769341391 : && !VECTOR_INTEGER_TYPE_P (op0_type))
3644 : : {
3645 : 0 : error ("unsupported operation or type for vector comparison"
3646 : : " returning a boolean");
3647 : 0 : debug_generic_expr (op0_type);
3648 : 0 : debug_generic_expr (op1_type);
3649 : 0 : return true;
3650 : : }
3651 : : }
3652 : : /* Or a boolean vector type with the same element count
3653 : : as the comparison operand types. */
3654 : 1265292 : else if (VECTOR_TYPE_P (type)
3655 : 1265292 : && TREE_CODE (TREE_TYPE (type)) == BOOLEAN_TYPE)
3656 : : {
3657 : 1265292 : if (TREE_CODE (op0_type) != VECTOR_TYPE
3658 : 1265292 : || TREE_CODE (op1_type) != VECTOR_TYPE)
3659 : : {
3660 : 0 : error ("non-vector operands in vector comparison");
3661 : 0 : debug_generic_expr (op0_type);
3662 : 0 : debug_generic_expr (op1_type);
3663 : 0 : return true;
3664 : : }
3665 : :
3666 : 1265292 : if (maybe_ne (TYPE_VECTOR_SUBPARTS (type),
3667 : 2530584 : TYPE_VECTOR_SUBPARTS (op0_type)))
3668 : : {
3669 : 0 : error ("invalid vector comparison resulting type");
3670 : 0 : debug_generic_expr (type);
3671 : 0 : return true;
3672 : : }
3673 : : }
3674 : : else
3675 : : {
3676 : 0 : error ("bogus comparison result type");
3677 : 0 : debug_generic_expr (type);
3678 : 0 : return true;
3679 : : }
3680 : :
3681 : : return false;
3682 : : }
3683 : :
3684 : : /* Verify a gimple assignment statement STMT with an unary rhs.
3685 : : Returns true if anything is wrong. */
3686 : :
3687 : : static bool
3688 : 402420642 : verify_gimple_assign_unary (gassign *stmt)
3689 : : {
3690 : 402420642 : enum tree_code rhs_code = gimple_assign_rhs_code (stmt);
3691 : 402420642 : tree lhs = gimple_assign_lhs (stmt);
3692 : 402420642 : tree lhs_type = TREE_TYPE (lhs);
3693 : 402420642 : tree rhs1 = gimple_assign_rhs1 (stmt);
3694 : 402420642 : tree rhs1_type = TREE_TYPE (rhs1);
3695 : :
3696 : 402420642 : if (!is_gimple_reg (lhs))
3697 : : {
3698 : 0 : error ("non-register as LHS of unary operation");
3699 : 0 : return true;
3700 : : }
3701 : :
3702 : 402420642 : if (!is_gimple_val (rhs1))
3703 : : {
3704 : 0 : error ("invalid operand in unary operation");
3705 : 0 : return true;
3706 : : }
3707 : :
3708 : 402420642 : const char* const code_name = get_tree_code_name (rhs_code);
3709 : :
3710 : : /* First handle conversions. */
3711 : 402420642 : switch (rhs_code)
3712 : : {
3713 : 357332018 : CASE_CONVERT:
3714 : 357332018 : {
3715 : : /* Allow conversions between vectors with the same number of elements,
3716 : : provided that the conversion is OK for the element types too. */
3717 : 357332018 : if (VECTOR_TYPE_P (lhs_type)
3718 : 128820 : && VECTOR_TYPE_P (rhs1_type)
3719 : 357460838 : && known_eq (TYPE_VECTOR_SUBPARTS (lhs_type),
3720 : : TYPE_VECTOR_SUBPARTS (rhs1_type)))
3721 : : {
3722 : 128820 : lhs_type = TREE_TYPE (lhs_type);
3723 : 128820 : rhs1_type = TREE_TYPE (rhs1_type);
3724 : : }
3725 : 357203198 : else if (VECTOR_TYPE_P (lhs_type) || VECTOR_TYPE_P (rhs1_type))
3726 : : {
3727 : 0 : error ("invalid vector types in nop conversion");
3728 : 0 : debug_generic_expr (lhs_type);
3729 : 0 : debug_generic_expr (rhs1_type);
3730 : 0 : return true;
3731 : : }
3732 : :
3733 : : /* Allow conversions from pointer type to integral type only if
3734 : : there is no sign or zero extension involved.
3735 : : For targets were the precision of ptrofftype doesn't match that
3736 : : of pointers we allow conversions to types where
3737 : : POINTERS_EXTEND_UNSIGNED specifies how that works. */
3738 : 357332018 : if ((POINTER_TYPE_P (lhs_type)
3739 : 21028095 : && INTEGRAL_TYPE_P (rhs1_type))
3740 : 361267181 : || (POINTER_TYPE_P (rhs1_type)
3741 : 45064080 : && INTEGRAL_TYPE_P (lhs_type)
3742 : 41128917 : && (TYPE_PRECISION (rhs1_type) >= TYPE_PRECISION (lhs_type)
3743 : : #if defined(POINTERS_EXTEND_UNSIGNED)
3744 : 0 : || (TYPE_MODE (rhs1_type) == ptr_mode
3745 : 0 : && (TYPE_PRECISION (lhs_type)
3746 : 0 : == BITS_PER_WORD /* word_mode */
3747 : 0 : || (TYPE_PRECISION (lhs_type)
3748 : 0 : == GET_MODE_PRECISION (Pmode))))
3749 : : #endif
3750 : : )))
3751 : 58221849 : return false;
3752 : :
3753 : : /* Allow conversion from integral to offset type and vice versa. */
3754 : 299110169 : if ((TREE_CODE (lhs_type) == OFFSET_TYPE
3755 : 7465 : && INTEGRAL_TYPE_P (rhs1_type))
3756 : 299109006 : || (INTEGRAL_TYPE_P (lhs_type)
3757 : 275550270 : && TREE_CODE (rhs1_type) == OFFSET_TYPE))
3758 : : return false;
3759 : :
3760 : : /* Otherwise assert we are converting between types of the
3761 : : same kind. */
3762 : 299065507 : if (INTEGRAL_TYPE_P (lhs_type) != INTEGRAL_TYPE_P (rhs1_type))
3763 : : {
3764 : 0 : error ("invalid types in nop conversion");
3765 : 0 : debug_generic_expr (lhs_type);
3766 : 0 : debug_generic_expr (rhs1_type);
3767 : 0 : return true;
3768 : : }
3769 : :
3770 : : return false;
3771 : : }
3772 : :
3773 : 0 : case ADDR_SPACE_CONVERT_EXPR:
3774 : 0 : {
3775 : 0 : if (!POINTER_TYPE_P (rhs1_type) || !POINTER_TYPE_P (lhs_type)
3776 : 0 : || (TYPE_ADDR_SPACE (TREE_TYPE (rhs1_type))
3777 : 0 : == TYPE_ADDR_SPACE (TREE_TYPE (lhs_type))))
3778 : : {
3779 : 0 : error ("invalid types in address space conversion");
3780 : 0 : debug_generic_expr (lhs_type);
3781 : 0 : debug_generic_expr (rhs1_type);
3782 : 0 : return true;
3783 : : }
3784 : :
3785 : : return false;
3786 : : }
3787 : :
3788 : 0 : case FIXED_CONVERT_EXPR:
3789 : 0 : {
3790 : 0 : if (!valid_fixed_convert_types_p (lhs_type, rhs1_type)
3791 : 402420642 : && !valid_fixed_convert_types_p (rhs1_type, lhs_type))
3792 : : {
3793 : 0 : error ("invalid types in fixed-point conversion");
3794 : 0 : debug_generic_expr (lhs_type);
3795 : 0 : debug_generic_expr (rhs1_type);
3796 : 0 : return true;
3797 : : }
3798 : :
3799 : : return false;
3800 : : }
3801 : :
3802 : 16066586 : case FLOAT_EXPR:
3803 : 16066586 : {
3804 : 15972070 : if ((!INTEGRAL_TYPE_P (rhs1_type) || !SCALAR_FLOAT_TYPE_P (lhs_type))
3805 : 16066586 : && (!VECTOR_INTEGER_TYPE_P (rhs1_type)
3806 : 94516 : || !VECTOR_FLOAT_TYPE_P (lhs_type)))
3807 : : {
3808 : 0 : error ("invalid types in conversion to floating-point");
3809 : 0 : debug_generic_expr (lhs_type);
3810 : 0 : debug_generic_expr (rhs1_type);
3811 : 0 : return true;
3812 : : }
3813 : :
3814 : : return false;
3815 : : }
3816 : :
3817 : 5046107 : case FIX_TRUNC_EXPR:
3818 : 5046107 : {
3819 : 5023359 : if ((!INTEGRAL_TYPE_P (lhs_type) || !SCALAR_FLOAT_TYPE_P (rhs1_type))
3820 : 5046107 : && (!VECTOR_INTEGER_TYPE_P (lhs_type)
3821 : 22748 : || !VECTOR_FLOAT_TYPE_P (rhs1_type)))
3822 : : {
3823 : 0 : error ("invalid types in conversion to integer");
3824 : 0 : debug_generic_expr (lhs_type);
3825 : 0 : debug_generic_expr (rhs1_type);
3826 : 0 : return true;
3827 : : }
3828 : :
3829 : : return false;
3830 : : }
3831 : :
3832 : 679841 : case VEC_UNPACK_HI_EXPR:
3833 : 679841 : case VEC_UNPACK_LO_EXPR:
3834 : 679841 : case VEC_UNPACK_FLOAT_HI_EXPR:
3835 : 679841 : case VEC_UNPACK_FLOAT_LO_EXPR:
3836 : 679841 : case VEC_UNPACK_FIX_TRUNC_HI_EXPR:
3837 : 679841 : case VEC_UNPACK_FIX_TRUNC_LO_EXPR:
3838 : 679841 : if (TREE_CODE (rhs1_type) != VECTOR_TYPE
3839 : 679841 : || TREE_CODE (lhs_type) != VECTOR_TYPE
3840 : 679841 : || (!INTEGRAL_TYPE_P (TREE_TYPE (lhs_type))
3841 : 122138 : && !SCALAR_FLOAT_TYPE_P (TREE_TYPE (lhs_type)))
3842 : 679841 : || (!INTEGRAL_TYPE_P (TREE_TYPE (rhs1_type))
3843 : 38570 : && !SCALAR_FLOAT_TYPE_P (TREE_TYPE (rhs1_type)))
3844 : 679841 : || ((rhs_code == VEC_UNPACK_HI_EXPR
3845 : 679841 : || rhs_code == VEC_UNPACK_LO_EXPR)
3846 : 1183874 : && (INTEGRAL_TYPE_P (TREE_TYPE (lhs_type))
3847 : 591937 : != INTEGRAL_TYPE_P (TREE_TYPE (rhs1_type))))
3848 : 679841 : || ((rhs_code == VEC_UNPACK_FLOAT_HI_EXPR
3849 : 679841 : || rhs_code == VEC_UNPACK_FLOAT_LO_EXPR)
3850 : 85736 : && (INTEGRAL_TYPE_P (TREE_TYPE (lhs_type))
3851 : 85736 : || SCALAR_FLOAT_TYPE_P (TREE_TYPE (rhs1_type))))
3852 : 679841 : || ((rhs_code == VEC_UNPACK_FIX_TRUNC_HI_EXPR
3853 : 679841 : || rhs_code == VEC_UNPACK_FIX_TRUNC_LO_EXPR)
3854 : 2168 : && (INTEGRAL_TYPE_P (TREE_TYPE (rhs1_type))
3855 : 2168 : || SCALAR_FLOAT_TYPE_P (TREE_TYPE (lhs_type))))
3856 : 1359682 : || (maybe_ne (GET_MODE_SIZE (element_mode (lhs_type)),
3857 : 1359682 : 2 * GET_MODE_SIZE (element_mode (rhs1_type)))
3858 : 46522 : && (!VECTOR_BOOLEAN_TYPE_P (lhs_type)
3859 : 46522 : || !VECTOR_BOOLEAN_TYPE_P (rhs1_type)))
3860 : 1359682 : || maybe_ne (2 * TYPE_VECTOR_SUBPARTS (lhs_type),
3861 : 1359682 : TYPE_VECTOR_SUBPARTS (rhs1_type)))
3862 : : {
3863 : 0 : error ("type mismatch in %qs expression", code_name);
3864 : 0 : debug_generic_expr (lhs_type);
3865 : 0 : debug_generic_expr (rhs1_type);
3866 : 0 : return true;
3867 : : }
3868 : :
3869 : : return false;
3870 : :
3871 : 23122779 : case NEGATE_EXPR:
3872 : 23122779 : case ABS_EXPR:
3873 : 23122779 : case BIT_NOT_EXPR:
3874 : 23122779 : case PAREN_EXPR:
3875 : 23122779 : case CONJ_EXPR:
3876 : : /* Disallow pointer and offset types for many of the unary gimple. */
3877 : 23122779 : if (POINTER_TYPE_P (lhs_type)
3878 : 23122779 : || TREE_CODE (lhs_type) == OFFSET_TYPE)
3879 : : {
3880 : 0 : error ("invalid types for %qs", code_name);
3881 : 0 : debug_generic_expr (lhs_type);
3882 : 0 : debug_generic_expr (rhs1_type);
3883 : 0 : return true;
3884 : : }
3885 : 23122779 : break;
3886 : :
3887 : 173311 : case ABSU_EXPR:
3888 : 32046 : if (!ANY_INTEGRAL_TYPE_P (lhs_type)
3889 : 173311 : || !TYPE_UNSIGNED (lhs_type)
3890 : 173311 : || !ANY_INTEGRAL_TYPE_P (rhs1_type)
3891 : 173311 : || TYPE_UNSIGNED (rhs1_type)
3892 : 346622 : || element_precision (lhs_type) != element_precision (rhs1_type))
3893 : : {
3894 : 0 : error ("invalid types for %qs", code_name);
3895 : 0 : debug_generic_expr (lhs_type);
3896 : 0 : debug_generic_expr (rhs1_type);
3897 : 0 : return true;
3898 : : }
3899 : : return false;
3900 : :
3901 : 0 : case VEC_DUPLICATE_EXPR:
3902 : 0 : if (TREE_CODE (lhs_type) != VECTOR_TYPE
3903 : 0 : || !useless_type_conversion_p (TREE_TYPE (lhs_type), rhs1_type))
3904 : : {
3905 : 0 : error ("%qs should be from a scalar to a like vector", code_name);
3906 : 0 : debug_generic_expr (lhs_type);
3907 : 0 : debug_generic_expr (rhs1_type);
3908 : 0 : return true;
3909 : : }
3910 : : return false;
3911 : :
3912 : 0 : default:
3913 : 0 : gcc_unreachable ();
3914 : : }
3915 : :
3916 : : /* For the remaining codes assert there is no conversion involved. */
3917 : 23122779 : if (!useless_type_conversion_p (lhs_type, rhs1_type))
3918 : : {
3919 : 0 : error ("non-trivial conversion in unary operation");
3920 : 0 : debug_generic_expr (lhs_type);
3921 : 0 : debug_generic_expr (rhs1_type);
3922 : 0 : return true;
3923 : : }
3924 : :
3925 : : return false;
3926 : : }
3927 : :
3928 : : /* Verify a gimple assignment statement STMT with a binary rhs.
3929 : : Returns true if anything is wrong. */
3930 : :
3931 : : static bool
3932 : 951179842 : verify_gimple_assign_binary (gassign *stmt)
3933 : : {
3934 : 951179842 : enum tree_code rhs_code = gimple_assign_rhs_code (stmt);
3935 : 951179842 : tree lhs = gimple_assign_lhs (stmt);
3936 : 951179842 : tree lhs_type = TREE_TYPE (lhs);
3937 : 951179842 : tree rhs1 = gimple_assign_rhs1 (stmt);
3938 : 951179842 : tree rhs1_type = TREE_TYPE (rhs1);
3939 : 951179842 : tree rhs2 = gimple_assign_rhs2 (stmt);
3940 : 951179842 : tree rhs2_type = TREE_TYPE (rhs2);
3941 : :
3942 : 951179842 : if (!is_gimple_reg (lhs))
3943 : : {
3944 : 0 : error ("non-register as LHS of binary operation");
3945 : 0 : return true;
3946 : : }
3947 : :
3948 : 951179842 : if (!is_gimple_val (rhs1)
3949 : 951179842 : || !is_gimple_val (rhs2))
3950 : : {
3951 : 0 : error ("invalid operands in binary operation");
3952 : 0 : return true;
3953 : : }
3954 : :
3955 : 951179842 : const char* const code_name = get_tree_code_name (rhs_code);
3956 : :
3957 : : /* First handle operations that involve different types. */
3958 : 951179842 : switch (rhs_code)
3959 : : {
3960 : 2196680 : case COMPLEX_EXPR:
3961 : 2196680 : {
3962 : 2196680 : if (TREE_CODE (lhs_type) != COMPLEX_TYPE
3963 : 2196680 : || !(INTEGRAL_TYPE_P (rhs1_type)
3964 : : || SCALAR_FLOAT_TYPE_P (rhs1_type))
3965 : 2196680 : || !(INTEGRAL_TYPE_P (rhs2_type)
3966 : : || SCALAR_FLOAT_TYPE_P (rhs2_type)))
3967 : : {
3968 : 0 : error ("type mismatch in %qs", code_name);
3969 : 0 : debug_generic_expr (lhs_type);
3970 : 0 : debug_generic_expr (rhs1_type);
3971 : 0 : debug_generic_expr (rhs2_type);
3972 : 0 : return true;
3973 : : }
3974 : :
3975 : : return false;
3976 : : }
3977 : :
3978 : 30174617 : case LSHIFT_EXPR:
3979 : 30174617 : case RSHIFT_EXPR:
3980 : 30174617 : case LROTATE_EXPR:
3981 : 30174617 : case RROTATE_EXPR:
3982 : 30174617 : {
3983 : : /* Shifts and rotates are ok on integral types, fixed point
3984 : : types and integer vector types. */
3985 : 30174617 : if ((!INTEGRAL_TYPE_P (rhs1_type)
3986 : 499354 : && !FIXED_POINT_TYPE_P (rhs1_type)
3987 : 499354 : && ! (VECTOR_TYPE_P (rhs1_type)
3988 : 499354 : && INTEGRAL_TYPE_P (TREE_TYPE (rhs1_type))))
3989 : 30174617 : || (!INTEGRAL_TYPE_P (rhs2_type)
3990 : : /* Vector shifts of vectors are also ok. */
3991 : 98125 : && ! (VECTOR_TYPE_P (rhs1_type)
3992 : 98125 : && INTEGRAL_TYPE_P (TREE_TYPE (rhs1_type))
3993 : 98125 : && VECTOR_TYPE_P (rhs2_type)
3994 : 98125 : && INTEGRAL_TYPE_P (TREE_TYPE (rhs2_type))))
3995 : 60349234 : || !useless_type_conversion_p (lhs_type, rhs1_type))
3996 : : {
3997 : 0 : error ("type mismatch in %qs", code_name);
3998 : 0 : debug_generic_expr (lhs_type);
3999 : 0 : debug_generic_expr (rhs1_type);
4000 : 0 : debug_generic_expr (rhs2_type);
4001 : 0 : return true;
4002 : : }
4003 : :
4004 : : return false;
4005 : : }
4006 : :
4007 : 0 : case WIDEN_LSHIFT_EXPR:
4008 : 0 : {
4009 : 0 : if (!INTEGRAL_TYPE_P (lhs_type)
4010 : 0 : || !INTEGRAL_TYPE_P (rhs1_type)
4011 : 0 : || TREE_CODE (rhs2) != INTEGER_CST
4012 : 0 : || (2 * TYPE_PRECISION (rhs1_type) > TYPE_PRECISION (lhs_type)))
4013 : : {
4014 : 0 : error ("type mismatch in %qs", code_name);
4015 : 0 : debug_generic_expr (lhs_type);
4016 : 0 : debug_generic_expr (rhs1_type);
4017 : 0 : debug_generic_expr (rhs2_type);
4018 : 0 : return true;
4019 : : }
4020 : :
4021 : : return false;
4022 : : }
4023 : :
4024 : 0 : case VEC_WIDEN_LSHIFT_HI_EXPR:
4025 : 0 : case VEC_WIDEN_LSHIFT_LO_EXPR:
4026 : 0 : {
4027 : 0 : if (TREE_CODE (rhs1_type) != VECTOR_TYPE
4028 : 0 : || TREE_CODE (lhs_type) != VECTOR_TYPE
4029 : 0 : || !INTEGRAL_TYPE_P (TREE_TYPE (rhs1_type))
4030 : 0 : || !INTEGRAL_TYPE_P (TREE_TYPE (lhs_type))
4031 : 0 : || TREE_CODE (rhs2) != INTEGER_CST
4032 : 0 : || (2 * TYPE_PRECISION (TREE_TYPE (rhs1_type))
4033 : 0 : > TYPE_PRECISION (TREE_TYPE (lhs_type))))
4034 : : {
4035 : 0 : error ("type mismatch in %qs", code_name);
4036 : 0 : debug_generic_expr (lhs_type);
4037 : 0 : debug_generic_expr (rhs1_type);
4038 : 0 : debug_generic_expr (rhs2_type);
4039 : 0 : return true;
4040 : : }
4041 : :
4042 : : return false;
4043 : : }
4044 : :
4045 : 426710306 : case PLUS_EXPR:
4046 : 426710306 : case MINUS_EXPR:
4047 : 426710306 : {
4048 : 426710306 : tree lhs_etype = lhs_type;
4049 : 426710306 : tree rhs1_etype = rhs1_type;
4050 : 426710306 : tree rhs2_etype = rhs2_type;
4051 : 426710306 : if (VECTOR_TYPE_P (lhs_type))
4052 : : {
4053 : 4264391 : if (TREE_CODE (rhs1_type) != VECTOR_TYPE
4054 : 4264391 : || TREE_CODE (rhs2_type) != VECTOR_TYPE)
4055 : : {
4056 : 0 : error ("invalid non-vector operands to %qs", code_name);
4057 : 0 : return true;
4058 : : }
4059 : 4264391 : lhs_etype = TREE_TYPE (lhs_type);
4060 : 4264391 : rhs1_etype = TREE_TYPE (rhs1_type);
4061 : 4264391 : rhs2_etype = TREE_TYPE (rhs2_type);
4062 : : }
4063 : 426710306 : if (POINTER_TYPE_P (lhs_etype)
4064 : 426710306 : || POINTER_TYPE_P (rhs1_etype)
4065 : 426710306 : || POINTER_TYPE_P (rhs2_etype))
4066 : : {
4067 : 0 : error ("invalid (pointer) operands %qs", code_name);
4068 : 0 : return true;
4069 : : }
4070 : :
4071 : : /* Continue with generic binary expression handling. */
4072 : : break;
4073 : : }
4074 : :
4075 : 141334821 : case POINTER_PLUS_EXPR:
4076 : 141334821 : {
4077 : 141334821 : if (!POINTER_TYPE_P (rhs1_type)
4078 : 141334821 : || !useless_type_conversion_p (lhs_type, rhs1_type)
4079 : 282669642 : || !ptrofftype_p (rhs2_type))
4080 : : {
4081 : 0 : error ("type mismatch in %qs", code_name);
4082 : 0 : debug_generic_stmt (lhs_type);
4083 : 0 : debug_generic_stmt (rhs1_type);
4084 : 0 : debug_generic_stmt (rhs2_type);
4085 : 0 : return true;
4086 : : }
4087 : :
4088 : : return false;
4089 : : }
4090 : :
4091 : 13158593 : case POINTER_DIFF_EXPR:
4092 : 13158593 : {
4093 : 13158593 : if (!POINTER_TYPE_P (rhs1_type)
4094 : 13158593 : || !POINTER_TYPE_P (rhs2_type)
4095 : : /* Because we special-case pointers to void we allow difference
4096 : : of arbitrary pointers with the same mode. */
4097 : 13158593 : || TYPE_MODE (rhs1_type) != TYPE_MODE (rhs2_type)
4098 : 13158593 : || !INTEGRAL_TYPE_P (lhs_type)
4099 : 13158593 : || TYPE_UNSIGNED (lhs_type)
4100 : 26317186 : || TYPE_PRECISION (lhs_type) != TYPE_PRECISION (rhs1_type))
4101 : : {
4102 : 0 : error ("type mismatch in %qs", code_name);
4103 : 0 : debug_generic_stmt (lhs_type);
4104 : 0 : debug_generic_stmt (rhs1_type);
4105 : 0 : debug_generic_stmt (rhs2_type);
4106 : 0 : return true;
4107 : : }
4108 : :
4109 : : return false;
4110 : : }
4111 : :
4112 : 0 : case TRUTH_ANDIF_EXPR:
4113 : 0 : case TRUTH_ORIF_EXPR:
4114 : 0 : case TRUTH_AND_EXPR:
4115 : 0 : case TRUTH_OR_EXPR:
4116 : 0 : case TRUTH_XOR_EXPR:
4117 : :
4118 : 0 : gcc_unreachable ();
4119 : :
4120 : 80974695 : case LT_EXPR:
4121 : 80974695 : case LE_EXPR:
4122 : 80974695 : case GT_EXPR:
4123 : 80974695 : case GE_EXPR:
4124 : 80974695 : case EQ_EXPR:
4125 : 80974695 : case NE_EXPR:
4126 : 80974695 : case UNORDERED_EXPR:
4127 : 80974695 : case ORDERED_EXPR:
4128 : 80974695 : case UNLT_EXPR:
4129 : 80974695 : case UNLE_EXPR:
4130 : 80974695 : case UNGT_EXPR:
4131 : 80974695 : case UNGE_EXPR:
4132 : 80974695 : case UNEQ_EXPR:
4133 : 80974695 : case LTGT_EXPR:
4134 : : /* Comparisons are also binary, but the result type is not
4135 : : connected to the operand types. */
4136 : 80974695 : return verify_gimple_comparison (lhs_type, rhs1, rhs2, rhs_code);
4137 : :
4138 : 129549 : case WIDEN_MULT_EXPR:
4139 : 129549 : if (TREE_CODE (lhs_type) != INTEGER_TYPE)
4140 : : return true;
4141 : 129549 : return ((2 * TYPE_PRECISION (rhs1_type) > TYPE_PRECISION (lhs_type))
4142 : 129549 : || (TYPE_PRECISION (rhs1_type) != TYPE_PRECISION (rhs2_type)));
4143 : :
4144 : 0 : case WIDEN_SUM_EXPR:
4145 : 0 : {
4146 : 0 : if (((TREE_CODE (rhs1_type) != VECTOR_TYPE
4147 : 0 : || TREE_CODE (lhs_type) != VECTOR_TYPE)
4148 : 0 : && ((!INTEGRAL_TYPE_P (rhs1_type)
4149 : 0 : && !SCALAR_FLOAT_TYPE_P (rhs1_type))
4150 : 0 : || (!INTEGRAL_TYPE_P (lhs_type)
4151 : 0 : && !SCALAR_FLOAT_TYPE_P (lhs_type))))
4152 : 0 : || !useless_type_conversion_p (lhs_type, rhs2_type)
4153 : 0 : || maybe_lt (GET_MODE_SIZE (element_mode (rhs2_type)),
4154 : 0 : 2 * GET_MODE_SIZE (element_mode (rhs1_type))))
4155 : : {
4156 : 0 : error ("type mismatch in %qs", code_name);
4157 : 0 : debug_generic_expr (lhs_type);
4158 : 0 : debug_generic_expr (rhs1_type);
4159 : 0 : debug_generic_expr (rhs2_type);
4160 : 0 : return true;
4161 : : }
4162 : : return false;
4163 : : }
4164 : :
4165 : 36141 : case VEC_WIDEN_MULT_HI_EXPR:
4166 : 36141 : case VEC_WIDEN_MULT_LO_EXPR:
4167 : 36141 : case VEC_WIDEN_MULT_EVEN_EXPR:
4168 : 36141 : case VEC_WIDEN_MULT_ODD_EXPR:
4169 : 36141 : {
4170 : 36141 : if (TREE_CODE (rhs1_type) != VECTOR_TYPE
4171 : 36141 : || TREE_CODE (lhs_type) != VECTOR_TYPE
4172 : 36141 : || !types_compatible_p (rhs1_type, rhs2_type)
4173 : 108423 : || maybe_ne (GET_MODE_SIZE (element_mode (lhs_type)),
4174 : 72282 : 2 * GET_MODE_SIZE (element_mode (rhs1_type))))
4175 : : {
4176 : 0 : error ("type mismatch in %qs", code_name);
4177 : 0 : debug_generic_expr (lhs_type);
4178 : 0 : debug_generic_expr (rhs1_type);
4179 : 0 : debug_generic_expr (rhs2_type);
4180 : 0 : return true;
4181 : : }
4182 : : return false;
4183 : : }
4184 : :
4185 : 414815 : case VEC_PACK_TRUNC_EXPR:
4186 : : /* ??? We currently use VEC_PACK_TRUNC_EXPR to simply concat
4187 : : vector boolean types. */
4188 : 414815 : if (VECTOR_BOOLEAN_TYPE_P (lhs_type)
4189 : 42307 : && VECTOR_BOOLEAN_TYPE_P (rhs1_type)
4190 : 42307 : && types_compatible_p (rhs1_type, rhs2_type)
4191 : 829630 : && known_eq (TYPE_VECTOR_SUBPARTS (lhs_type),
4192 : : 2 * TYPE_VECTOR_SUBPARTS (rhs1_type)))
4193 : 42307 : return false;
4194 : :
4195 : : /* Fallthru. */
4196 : 385527 : case VEC_PACK_SAT_EXPR:
4197 : 385527 : case VEC_PACK_FIX_TRUNC_EXPR:
4198 : 385527 : {
4199 : 385527 : if (TREE_CODE (rhs1_type) != VECTOR_TYPE
4200 : 385527 : || TREE_CODE (lhs_type) != VECTOR_TYPE
4201 : 758035 : || !((rhs_code == VEC_PACK_FIX_TRUNC_EXPR
4202 : 13019 : && SCALAR_FLOAT_TYPE_P (TREE_TYPE (rhs1_type))
4203 : 13019 : && INTEGRAL_TYPE_P (TREE_TYPE (lhs_type)))
4204 : 372508 : || (INTEGRAL_TYPE_P (TREE_TYPE (rhs1_type))
4205 : 372508 : == INTEGRAL_TYPE_P (TREE_TYPE (lhs_type))))
4206 : 385527 : || !types_compatible_p (rhs1_type, rhs2_type)
4207 : 771054 : || maybe_ne (GET_MODE_SIZE (element_mode (rhs1_type)),
4208 : 771054 : 2 * GET_MODE_SIZE (element_mode (lhs_type)))
4209 : 771054 : || maybe_ne (2 * TYPE_VECTOR_SUBPARTS (rhs1_type),
4210 : 771054 : TYPE_VECTOR_SUBPARTS (lhs_type)))
4211 : : {
4212 : 0 : error ("type mismatch in %qs", code_name);
4213 : 0 : debug_generic_expr (lhs_type);
4214 : 0 : debug_generic_expr (rhs1_type);
4215 : 0 : debug_generic_expr (rhs2_type);
4216 : 0 : return true;
4217 : : }
4218 : :
4219 : : return false;
4220 : : }
4221 : :
4222 : 1012 : case VEC_PACK_FLOAT_EXPR:
4223 : 1012 : if (TREE_CODE (rhs1_type) != VECTOR_TYPE
4224 : 1012 : || TREE_CODE (lhs_type) != VECTOR_TYPE
4225 : 1012 : || !INTEGRAL_TYPE_P (TREE_TYPE (rhs1_type))
4226 : 1012 : || !SCALAR_FLOAT_TYPE_P (TREE_TYPE (lhs_type))
4227 : 1012 : || !types_compatible_p (rhs1_type, rhs2_type)
4228 : 2024 : || maybe_ne (GET_MODE_SIZE (element_mode (rhs1_type)),
4229 : 2024 : 2 * GET_MODE_SIZE (element_mode (lhs_type)))
4230 : 2024 : || maybe_ne (2 * TYPE_VECTOR_SUBPARTS (rhs1_type),
4231 : 2024 : TYPE_VECTOR_SUBPARTS (lhs_type)))
4232 : : {
4233 : 0 : error ("type mismatch in %qs", code_name);
4234 : 0 : debug_generic_expr (lhs_type);
4235 : 0 : debug_generic_expr (rhs1_type);
4236 : 0 : debug_generic_expr (rhs2_type);
4237 : 0 : return true;
4238 : : }
4239 : :
4240 : : return false;
4241 : :
4242 : 192315583 : case MULT_EXPR:
4243 : 192315583 : case MULT_HIGHPART_EXPR:
4244 : 192315583 : case TRUNC_DIV_EXPR:
4245 : 192315583 : case CEIL_DIV_EXPR:
4246 : 192315583 : case FLOOR_DIV_EXPR:
4247 : 192315583 : case ROUND_DIV_EXPR:
4248 : 192315583 : case TRUNC_MOD_EXPR:
4249 : 192315583 : case CEIL_MOD_EXPR:
4250 : 192315583 : case FLOOR_MOD_EXPR:
4251 : 192315583 : case ROUND_MOD_EXPR:
4252 : 192315583 : case RDIV_EXPR:
4253 : 192315583 : case EXACT_DIV_EXPR:
4254 : 192315583 : case BIT_IOR_EXPR:
4255 : 192315583 : case BIT_XOR_EXPR:
4256 : : /* Disallow pointer and offset types for many of the binary gimple. */
4257 : 192315583 : if (POINTER_TYPE_P (lhs_type)
4258 : 192315583 : || TREE_CODE (lhs_type) == OFFSET_TYPE)
4259 : : {
4260 : 0 : error ("invalid types for %qs", code_name);
4261 : 0 : debug_generic_expr (lhs_type);
4262 : 0 : debug_generic_expr (rhs1_type);
4263 : 0 : debug_generic_expr (rhs2_type);
4264 : 0 : return true;
4265 : : }
4266 : : /* Continue with generic binary expression handling. */
4267 : : break;
4268 : :
4269 : : case MIN_EXPR:
4270 : : case MAX_EXPR:
4271 : : /* Continue with generic binary expression handling. */
4272 : : break;
4273 : :
4274 : 50652893 : case BIT_AND_EXPR:
4275 : 50652893 : if (POINTER_TYPE_P (lhs_type)
4276 : 173514 : && TREE_CODE (rhs2) == INTEGER_CST)
4277 : : break;
4278 : : /* Disallow pointer and offset types for many of the binary gimple. */
4279 : 50479379 : if (POINTER_TYPE_P (lhs_type)
4280 : 50479379 : || TREE_CODE (lhs_type) == OFFSET_TYPE)
4281 : : {
4282 : 0 : error ("invalid types for %qs", code_name);
4283 : 0 : debug_generic_expr (lhs_type);
4284 : 0 : debug_generic_expr (rhs1_type);
4285 : 0 : debug_generic_expr (rhs2_type);
4286 : 0 : return true;
4287 : : }
4288 : : /* Continue with generic binary expression handling. */
4289 : : break;
4290 : :
4291 : 0 : case VEC_SERIES_EXPR:
4292 : 0 : if (!useless_type_conversion_p (rhs1_type, rhs2_type))
4293 : : {
4294 : 0 : error ("type mismatch in %qs", code_name);
4295 : 0 : debug_generic_expr (rhs1_type);
4296 : 0 : debug_generic_expr (rhs2_type);
4297 : 0 : return true;
4298 : : }
4299 : 0 : if (TREE_CODE (lhs_type) != VECTOR_TYPE
4300 : 0 : || !useless_type_conversion_p (TREE_TYPE (lhs_type), rhs1_type))
4301 : : {
4302 : 0 : error ("vector type expected in %qs", code_name);
4303 : 0 : debug_generic_expr (lhs_type);
4304 : 0 : return true;
4305 : : }
4306 : : return false;
4307 : :
4308 : 0 : default:
4309 : 0 : gcc_unreachable ();
4310 : : }
4311 : :
4312 : 682745900 : if (!useless_type_conversion_p (lhs_type, rhs1_type)
4313 : 682745900 : || !useless_type_conversion_p (lhs_type, rhs2_type))
4314 : : {
4315 : 0 : error ("type mismatch in binary expression");
4316 : 0 : debug_generic_stmt (lhs_type);
4317 : 0 : debug_generic_stmt (rhs1_type);
4318 : 0 : debug_generic_stmt (rhs2_type);
4319 : 0 : return true;
4320 : : }
4321 : :
4322 : : return false;
4323 : : }
4324 : :
4325 : : /* Verify a gimple assignment statement STMT with a ternary rhs.
4326 : : Returns true if anything is wrong. */
4327 : :
4328 : : static bool
4329 : 8395811 : verify_gimple_assign_ternary (gassign *stmt)
4330 : : {
4331 : 8395811 : enum tree_code rhs_code = gimple_assign_rhs_code (stmt);
4332 : 8395811 : tree lhs = gimple_assign_lhs (stmt);
4333 : 8395811 : tree lhs_type = TREE_TYPE (lhs);
4334 : 8395811 : tree rhs1 = gimple_assign_rhs1 (stmt);
4335 : 8395811 : tree rhs1_type = TREE_TYPE (rhs1);
4336 : 8395811 : tree rhs2 = gimple_assign_rhs2 (stmt);
4337 : 8395811 : tree rhs2_type = TREE_TYPE (rhs2);
4338 : 8395811 : tree rhs3 = gimple_assign_rhs3 (stmt);
4339 : 8395811 : tree rhs3_type = TREE_TYPE (rhs3);
4340 : :
4341 : 8395811 : if (!is_gimple_reg (lhs))
4342 : : {
4343 : 0 : error ("non-register as LHS of ternary operation");
4344 : 0 : return true;
4345 : : }
4346 : :
4347 : 8395811 : if (!is_gimple_val (rhs1)
4348 : 8395811 : || !is_gimple_val (rhs2)
4349 : 16791622 : || !is_gimple_val (rhs3))
4350 : : {
4351 : 0 : error ("invalid operands in ternary operation");
4352 : 0 : return true;
4353 : : }
4354 : :
4355 : 8395811 : const char* const code_name = get_tree_code_name (rhs_code);
4356 : :
4357 : : /* First handle operations that involve different types. */
4358 : 8395811 : switch (rhs_code)
4359 : : {
4360 : 0 : case WIDEN_MULT_PLUS_EXPR:
4361 : 0 : case WIDEN_MULT_MINUS_EXPR:
4362 : 0 : if ((!INTEGRAL_TYPE_P (rhs1_type)
4363 : 0 : && !FIXED_POINT_TYPE_P (rhs1_type))
4364 : 0 : || !useless_type_conversion_p (rhs1_type, rhs2_type)
4365 : 0 : || !useless_type_conversion_p (lhs_type, rhs3_type)
4366 : 0 : || 2 * TYPE_PRECISION (rhs1_type) > TYPE_PRECISION (lhs_type)
4367 : 0 : || TYPE_PRECISION (rhs1_type) != TYPE_PRECISION (rhs2_type))
4368 : : {
4369 : 0 : error ("type mismatch in %qs", code_name);
4370 : 0 : debug_generic_expr (lhs_type);
4371 : 0 : debug_generic_expr (rhs1_type);
4372 : 0 : debug_generic_expr (rhs2_type);
4373 : 0 : debug_generic_expr (rhs3_type);
4374 : 0 : return true;
4375 : : }
4376 : : break;
4377 : :
4378 : 1096130 : case VEC_COND_EXPR:
4379 : 1096130 : if (!VECTOR_BOOLEAN_TYPE_P (rhs1_type)
4380 : 2192260 : || maybe_ne (TYPE_VECTOR_SUBPARTS (rhs1_type),
4381 : 2192260 : TYPE_VECTOR_SUBPARTS (lhs_type)))
4382 : : {
4383 : 0 : error ("the first argument of a %qs must be of a "
4384 : : "boolean vector type of the same number of elements "
4385 : : "as the result", code_name);
4386 : 0 : debug_generic_expr (lhs_type);
4387 : 0 : debug_generic_expr (rhs1_type);
4388 : 0 : return true;
4389 : : }
4390 : : /* Fallthrough. */
4391 : 2130116 : case COND_EXPR:
4392 : 2130116 : if (!useless_type_conversion_p (lhs_type, rhs2_type)
4393 : 2130116 : || !useless_type_conversion_p (lhs_type, rhs3_type))
4394 : : {
4395 : 0 : error ("type mismatch in %qs", code_name);
4396 : 0 : debug_generic_expr (lhs_type);
4397 : 0 : debug_generic_expr (rhs2_type);
4398 : 0 : debug_generic_expr (rhs3_type);
4399 : 0 : return true;
4400 : : }
4401 : : break;
4402 : :
4403 : 6170212 : case VEC_PERM_EXPR:
4404 : : /* If permute is constant, then we allow for lhs and rhs
4405 : : to have different vector types, provided:
4406 : : (1) lhs, rhs1, rhs2 have same element type.
4407 : : (2) rhs3 vector is constant and has integer element type.
4408 : : (3) len(lhs) == len(rhs3) && len(rhs1) == len(rhs2). */
4409 : :
4410 : 6170212 : if (TREE_CODE (lhs_type) != VECTOR_TYPE
4411 : 6170212 : || TREE_CODE (rhs1_type) != VECTOR_TYPE
4412 : 6170212 : || TREE_CODE (rhs2_type) != VECTOR_TYPE
4413 : 6170212 : || TREE_CODE (rhs3_type) != VECTOR_TYPE)
4414 : : {
4415 : 0 : error ("vector types expected in %qs", code_name);
4416 : 0 : debug_generic_expr (lhs_type);
4417 : 0 : debug_generic_expr (rhs1_type);
4418 : 0 : debug_generic_expr (rhs2_type);
4419 : 0 : debug_generic_expr (rhs3_type);
4420 : 0 : return true;
4421 : : }
4422 : :
4423 : : /* If rhs3 is constant, we allow lhs, rhs1 and rhs2 to be different vector types,
4424 : : as long as lhs, rhs1 and rhs2 have same element type. */
4425 : 6170212 : if (TREE_CONSTANT (rhs3)
4426 : 6170212 : ? (!useless_type_conversion_p (TREE_TYPE (lhs_type), TREE_TYPE (rhs1_type))
4427 : 6055330 : || !useless_type_conversion_p (TREE_TYPE (lhs_type), TREE_TYPE (rhs2_type)))
4428 : 114882 : : (!useless_type_conversion_p (lhs_type, rhs1_type)
4429 : 114882 : || !useless_type_conversion_p (lhs_type, rhs2_type)))
4430 : : {
4431 : 0 : error ("type mismatch in %qs", code_name);
4432 : 0 : debug_generic_expr (lhs_type);
4433 : 0 : debug_generic_expr (rhs1_type);
4434 : 0 : debug_generic_expr (rhs2_type);
4435 : 0 : debug_generic_expr (rhs3_type);
4436 : 0 : return true;
4437 : : }
4438 : :
4439 : : /* If rhs3 is constant, relax the check len(rhs2) == len(rhs3). */
4440 : 6170212 : if (maybe_ne (TYPE_VECTOR_SUBPARTS (rhs1_type),
4441 : 6170212 : TYPE_VECTOR_SUBPARTS (rhs2_type))
4442 : 6170212 : || (!TREE_CONSTANT(rhs3)
4443 : 114882 : && maybe_ne (TYPE_VECTOR_SUBPARTS (rhs2_type),
4444 : 114882 : TYPE_VECTOR_SUBPARTS (rhs3_type)))
4445 : 12340424 : || maybe_ne (TYPE_VECTOR_SUBPARTS (rhs3_type),
4446 : 6170212 : TYPE_VECTOR_SUBPARTS (lhs_type)))
4447 : : {
4448 : 0 : error ("vectors with different element number found in %qs",
4449 : : code_name);
4450 : 0 : debug_generic_expr (lhs_type);
4451 : 0 : debug_generic_expr (rhs1_type);
4452 : 0 : debug_generic_expr (rhs2_type);
4453 : 0 : debug_generic_expr (rhs3_type);
4454 : 0 : return true;
4455 : : }
4456 : :
4457 : 6170212 : if (TREE_CODE (TREE_TYPE (rhs3_type)) != INTEGER_TYPE
4458 : 6170212 : || (TREE_CODE (rhs3) != VECTOR_CST
4459 : 114882 : && (GET_MODE_BITSIZE (SCALAR_INT_TYPE_MODE
4460 : : (TREE_TYPE (rhs3_type)))
4461 : 6285094 : != GET_MODE_BITSIZE (SCALAR_TYPE_MODE
4462 : : (TREE_TYPE (rhs1_type))))))
4463 : : {
4464 : 0 : error ("invalid mask type in %qs", code_name);
4465 : 0 : debug_generic_expr (lhs_type);
4466 : 0 : debug_generic_expr (rhs1_type);
4467 : 0 : debug_generic_expr (rhs2_type);
4468 : 0 : debug_generic_expr (rhs3_type);
4469 : 0 : return true;
4470 : : }
4471 : :
4472 : : return false;
4473 : :
4474 : 4510 : case SAD_EXPR:
4475 : 4510 : if (!useless_type_conversion_p (rhs1_type, rhs2_type)
4476 : 4510 : || !useless_type_conversion_p (lhs_type, rhs3_type)
4477 : 9020 : || 2 * GET_MODE_UNIT_BITSIZE (TYPE_MODE (TREE_TYPE (rhs1_type)))
4478 : 9020 : > GET_MODE_UNIT_BITSIZE (TYPE_MODE (TREE_TYPE (lhs_type))))
4479 : : {
4480 : 0 : error ("type mismatch in %qs", code_name);
4481 : 0 : debug_generic_expr (lhs_type);
4482 : 0 : debug_generic_expr (rhs1_type);
4483 : 0 : debug_generic_expr (rhs2_type);
4484 : 0 : debug_generic_expr (rhs3_type);
4485 : 0 : return true;
4486 : : }
4487 : :
4488 : 4510 : if (TREE_CODE (rhs1_type) != VECTOR_TYPE
4489 : 4510 : || TREE_CODE (rhs2_type) != VECTOR_TYPE
4490 : 4510 : || TREE_CODE (rhs3_type) != VECTOR_TYPE)
4491 : : {
4492 : 0 : error ("vector types expected in %qs", code_name);
4493 : 0 : debug_generic_expr (lhs_type);
4494 : 0 : debug_generic_expr (rhs1_type);
4495 : 0 : debug_generic_expr (rhs2_type);
4496 : 0 : debug_generic_expr (rhs3_type);
4497 : 0 : return true;
4498 : : }
4499 : :
4500 : : return false;
4501 : :
4502 : 81247 : case BIT_INSERT_EXPR:
4503 : 81247 : if (! useless_type_conversion_p (lhs_type, rhs1_type))
4504 : : {
4505 : 0 : error ("type mismatch in %qs", code_name);
4506 : 0 : debug_generic_expr (lhs_type);
4507 : 0 : debug_generic_expr (rhs1_type);
4508 : 0 : return true;
4509 : : }
4510 : 81247 : if (! ((INTEGRAL_TYPE_P (rhs1_type)
4511 : 3291 : && INTEGRAL_TYPE_P (rhs2_type))
4512 : : /* Vector element insert. */
4513 : 77956 : || (VECTOR_TYPE_P (rhs1_type)
4514 : 77956 : && types_compatible_p (TREE_TYPE (rhs1_type), rhs2_type))
4515 : : /* Aligned sub-vector insert. */
4516 : 4290 : || (VECTOR_TYPE_P (rhs1_type)
4517 : 4290 : && VECTOR_TYPE_P (rhs2_type)
4518 : 4290 : && types_compatible_p (TREE_TYPE (rhs1_type),
4519 : 4290 : TREE_TYPE (rhs2_type))
4520 : 4290 : && multiple_p (TYPE_VECTOR_SUBPARTS (rhs1_type),
4521 : 4290 : TYPE_VECTOR_SUBPARTS (rhs2_type))
4522 : 4290 : && multiple_p (wi::to_poly_offset (rhs3),
4523 : 4290 : wi::to_poly_offset (TYPE_SIZE (rhs2_type))))))
4524 : : {
4525 : 0 : error ("not allowed type combination in %qs", code_name);
4526 : 0 : debug_generic_expr (rhs1_type);
4527 : 0 : debug_generic_expr (rhs2_type);
4528 : 0 : return true;
4529 : : }
4530 : 81247 : if (! tree_fits_uhwi_p (rhs3)
4531 : 81247 : || ! types_compatible_p (bitsizetype, TREE_TYPE (rhs3))
4532 : 162494 : || ! tree_fits_uhwi_p (TYPE_SIZE (rhs2_type)))
4533 : : {
4534 : 0 : error ("invalid position or size in %qs", code_name);
4535 : 0 : return true;
4536 : : }
4537 : 81247 : if (INTEGRAL_TYPE_P (rhs1_type)
4538 : 81247 : && !type_has_mode_precision_p (rhs1_type))
4539 : : {
4540 : 0 : error ("%qs into non-mode-precision operand", code_name);
4541 : 0 : return true;
4542 : : }
4543 : 81247 : if (INTEGRAL_TYPE_P (rhs1_type))
4544 : : {
4545 : 3291 : unsigned HOST_WIDE_INT bitpos = tree_to_uhwi (rhs3);
4546 : 3291 : if (bitpos >= TYPE_PRECISION (rhs1_type)
4547 : 3291 : || (bitpos + TYPE_PRECISION (rhs2_type)
4548 : 3291 : > TYPE_PRECISION (rhs1_type)))
4549 : : {
4550 : 0 : error ("insertion out of range in %qs", code_name);
4551 : 0 : return true;
4552 : : }
4553 : : }
4554 : 77956 : else if (VECTOR_TYPE_P (rhs1_type))
4555 : : {
4556 : 77956 : unsigned HOST_WIDE_INT bitpos = tree_to_uhwi (rhs3);
4557 : 77956 : unsigned HOST_WIDE_INT bitsize = tree_to_uhwi (TYPE_SIZE (rhs2_type));
4558 : 77956 : if (bitpos % bitsize != 0)
4559 : : {
4560 : 0 : error ("%qs not at element boundary", code_name);
4561 : 0 : return true;
4562 : : }
4563 : : }
4564 : : return false;
4565 : :
4566 : 9726 : case DOT_PROD_EXPR:
4567 : 9726 : {
4568 : 9726 : if (((TREE_CODE (rhs1_type) != VECTOR_TYPE
4569 : 9726 : || TREE_CODE (lhs_type) != VECTOR_TYPE)
4570 : 0 : && ((!INTEGRAL_TYPE_P (rhs1_type)
4571 : 0 : && !SCALAR_FLOAT_TYPE_P (rhs1_type))
4572 : 0 : || (!INTEGRAL_TYPE_P (lhs_type)
4573 : 0 : && !SCALAR_FLOAT_TYPE_P (lhs_type))))
4574 : : /* rhs1_type and rhs2_type may differ in sign. */
4575 : 9726 : || !tree_nop_conversion_p (rhs1_type, rhs2_type)
4576 : 9726 : || !useless_type_conversion_p (lhs_type, rhs3_type)
4577 : 29178 : || maybe_lt (GET_MODE_SIZE (element_mode (rhs3_type)),
4578 : 19452 : 2 * GET_MODE_SIZE (element_mode (rhs1_type))))
4579 : : {
4580 : 0 : error ("type mismatch in %qs", code_name);
4581 : 0 : debug_generic_expr (lhs_type);
4582 : 0 : debug_generic_expr (rhs1_type);
4583 : 0 : debug_generic_expr (rhs2_type);
4584 : 0 : return true;
4585 : : }
4586 : : return false;
4587 : : }
4588 : :
4589 : : case REALIGN_LOAD_EXPR:
4590 : : /* FIXME. */
4591 : : return false;
4592 : :
4593 : 0 : default:
4594 : 0 : gcc_unreachable ();
4595 : : }
4596 : : return false;
4597 : : }
4598 : :
4599 : : /* Verify a gimple assignment statement STMT with a single rhs.
4600 : : Returns true if anything is wrong. */
4601 : :
4602 : : static bool
4603 : 2893190681 : verify_gimple_assign_single (gassign *stmt)
4604 : : {
4605 : 2893190681 : enum tree_code rhs_code = gimple_assign_rhs_code (stmt);
4606 : 2893190681 : tree lhs = gimple_assign_lhs (stmt);
4607 : 2893190681 : tree lhs_type = TREE_TYPE (lhs);
4608 : 2893190681 : tree rhs1 = gimple_assign_rhs1 (stmt);
4609 : 2893190681 : tree rhs1_type = TREE_TYPE (rhs1);
4610 : 2893190681 : bool res = false;
4611 : :
4612 : 2893190681 : const char* const code_name = get_tree_code_name (rhs_code);
4613 : :
4614 : 2893190681 : if (!useless_type_conversion_p (lhs_type, rhs1_type))
4615 : : {
4616 : 0 : error ("non-trivial conversion in %qs", code_name);
4617 : 0 : debug_generic_expr (lhs_type);
4618 : 0 : debug_generic_expr (rhs1_type);
4619 : 0 : return true;
4620 : : }
4621 : :
4622 : 2893190681 : if (gimple_clobber_p (stmt)
4623 : 2893190681 : && !(DECL_P (lhs) || TREE_CODE (lhs) == MEM_REF))
4624 : : {
4625 : 0 : error ("%qs LHS in clobber statement",
4626 : : get_tree_code_name (TREE_CODE (lhs)));
4627 : 0 : debug_generic_expr (lhs);
4628 : 0 : return true;
4629 : : }
4630 : :
4631 : 2893190681 : if (TREE_CODE (lhs) == WITH_SIZE_EXPR)
4632 : : {
4633 : 0 : error ("%qs LHS in assignment statement",
4634 : : get_tree_code_name (TREE_CODE (lhs)));
4635 : 0 : debug_generic_expr (lhs);
4636 : 0 : return true;
4637 : : }
4638 : :
4639 : 2893190681 : if (handled_component_p (lhs)
4640 : 2114565199 : || TREE_CODE (lhs) == MEM_REF
4641 : 1881943529 : || TREE_CODE (lhs) == TARGET_MEM_REF)
4642 : 1019488310 : res |= verify_types_in_gimple_reference (lhs, true);
4643 : :
4644 : : /* Special codes we cannot handle via their class. */
4645 : 2893190681 : switch (rhs_code)
4646 : : {
4647 : 239038557 : case ADDR_EXPR:
4648 : 239038557 : {
4649 : 239038557 : tree op = TREE_OPERAND (rhs1, 0);
4650 : 239038557 : if (!is_gimple_addressable (op))
4651 : : {
4652 : 0 : error ("invalid operand in %qs", code_name);
4653 : 0 : return true;
4654 : : }
4655 : :
4656 : : /* Technically there is no longer a need for matching types, but
4657 : : gimple hygiene asks for this check. In LTO we can end up
4658 : : combining incompatible units and thus end up with addresses
4659 : : of globals that change their type to a common one. */
4660 : 239038557 : if (!in_lto_p
4661 : 238627650 : && !types_compatible_p (TREE_TYPE (op),
4662 : 238627650 : TREE_TYPE (TREE_TYPE (rhs1)))
4663 : 239038653 : && !one_pointer_to_useless_type_conversion_p (TREE_TYPE (rhs1),
4664 : 96 : TREE_TYPE (op)))
4665 : : {
4666 : 0 : error ("type mismatch in %qs", code_name);
4667 : 0 : debug_generic_stmt (TREE_TYPE (rhs1));
4668 : 0 : debug_generic_stmt (TREE_TYPE (op));
4669 : 0 : return true;
4670 : : }
4671 : :
4672 : 239038557 : return (verify_address (rhs1, true)
4673 : 239038557 : || verify_types_in_gimple_reference (op, true));
4674 : : }
4675 : :
4676 : : /* tcc_reference */
4677 : 0 : case INDIRECT_REF:
4678 : 0 : error ("%qs in gimple IL", code_name);
4679 : 0 : return true;
4680 : :
4681 : 45 : case WITH_SIZE_EXPR:
4682 : 45 : if (!is_gimple_val (TREE_OPERAND (rhs1, 1)))
4683 : : {
4684 : 0 : error ("invalid %qs size argument in load", code_name);
4685 : 0 : debug_generic_stmt (lhs);
4686 : 0 : debug_generic_stmt (rhs1);
4687 : 0 : return true;
4688 : : }
4689 : 45 : rhs1 = TREE_OPERAND (rhs1, 0);
4690 : : /* Fallthru. */
4691 : 994225810 : case COMPONENT_REF:
4692 : 994225810 : case BIT_FIELD_REF:
4693 : 994225810 : case ARRAY_REF:
4694 : 994225810 : case ARRAY_RANGE_REF:
4695 : 994225810 : case VIEW_CONVERT_EXPR:
4696 : 994225810 : case REALPART_EXPR:
4697 : 994225810 : case IMAGPART_EXPR:
4698 : 994225810 : case TARGET_MEM_REF:
4699 : 994225810 : case MEM_REF:
4700 : 994225810 : if (!is_gimple_reg (lhs)
4701 : 994225810 : && is_gimple_reg_type (TREE_TYPE (lhs)))
4702 : : {
4703 : 0 : error ("invalid RHS for gimple memory store: %qs", code_name);
4704 : 0 : debug_generic_stmt (lhs);
4705 : 0 : debug_generic_stmt (rhs1);
4706 : 0 : return true;
4707 : : }
4708 : 994225810 : return res || verify_types_in_gimple_reference (rhs1, false);
4709 : :
4710 : : /* tcc_constant */
4711 : : case SSA_NAME:
4712 : : case INTEGER_CST:
4713 : : case REAL_CST:
4714 : : case FIXED_CST:
4715 : : case COMPLEX_CST:
4716 : : case VECTOR_CST:
4717 : : case STRING_CST:
4718 : : return res;
4719 : :
4720 : : /* tcc_declaration */
4721 : : case CONST_DECL:
4722 : : return res;
4723 : 307133813 : case VAR_DECL:
4724 : 307133813 : case PARM_DECL:
4725 : 307133813 : if (!is_gimple_reg (lhs)
4726 : 82951426 : && !is_gimple_reg (rhs1)
4727 : 379154431 : && is_gimple_reg_type (TREE_TYPE (lhs)))
4728 : : {
4729 : 0 : error ("invalid RHS for gimple memory store: %qs", code_name);
4730 : 0 : debug_generic_stmt (lhs);
4731 : 0 : debug_generic_stmt (rhs1);
4732 : 0 : return true;
4733 : : }
4734 : : return res;
4735 : :
4736 : 304796278 : case CONSTRUCTOR:
4737 : 304796278 : if (VECTOR_TYPE_P (rhs1_type))
4738 : : {
4739 : 6504336 : unsigned int i;
4740 : 6504336 : tree elt_i, elt_v, elt_t = NULL_TREE;
4741 : :
4742 : 1665819154 : if (CONSTRUCTOR_NELTS (rhs1) == 0)
4743 : : return res;
4744 : : /* For vector CONSTRUCTORs we require that either it is empty
4745 : : CONSTRUCTOR, or it is a CONSTRUCTOR of smaller vector elements
4746 : : (then the element count must be correct to cover the whole
4747 : : outer vector and index must be NULL on all elements, or it is
4748 : : a CONSTRUCTOR of scalar elements, where we as an exception allow
4749 : : smaller number of elements (assuming zero filling) and
4750 : : consecutive indexes as compared to NULL indexes (such
4751 : : CONSTRUCTORs can appear in the IL from FEs). */
4752 : 26267734 : FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (rhs1), i, elt_i, elt_v)
4753 : : {
4754 : 20374894 : if (elt_t == NULL_TREE)
4755 : : {
4756 : 5892840 : elt_t = TREE_TYPE (elt_v);
4757 : 5892840 : if (VECTOR_TYPE_P (elt_t))
4758 : : {
4759 : 67926 : tree elt_t = TREE_TYPE (elt_v);
4760 : 67926 : if (!useless_type_conversion_p (TREE_TYPE (rhs1_type),
4761 : 67926 : TREE_TYPE (elt_t)))
4762 : : {
4763 : 0 : error ("incorrect type of vector %qs elements",
4764 : : code_name);
4765 : 0 : debug_generic_stmt (rhs1);
4766 : 0 : return true;
4767 : : }
4768 : 135852 : else if (maybe_ne (CONSTRUCTOR_NELTS (rhs1)
4769 : 135852 : * TYPE_VECTOR_SUBPARTS (elt_t),
4770 : 135852 : TYPE_VECTOR_SUBPARTS (rhs1_type)))
4771 : : {
4772 : 0 : error ("incorrect number of vector %qs elements",
4773 : : code_name);
4774 : 0 : debug_generic_stmt (rhs1);
4775 : 0 : return true;
4776 : : }
4777 : : }
4778 : 5824914 : else if (!useless_type_conversion_p (TREE_TYPE (rhs1_type),
4779 : : elt_t))
4780 : : {
4781 : 0 : error ("incorrect type of vector %qs elements",
4782 : : code_name);
4783 : 0 : debug_generic_stmt (rhs1);
4784 : 0 : return true;
4785 : : }
4786 : 11649828 : else if (maybe_gt (CONSTRUCTOR_NELTS (rhs1),
4787 : : TYPE_VECTOR_SUBPARTS (rhs1_type)))
4788 : : {
4789 : 0 : error ("incorrect number of vector %qs elements",
4790 : : code_name);
4791 : 0 : debug_generic_stmt (rhs1);
4792 : 0 : return true;
4793 : : }
4794 : : }
4795 : 14482054 : else if (!useless_type_conversion_p (elt_t, TREE_TYPE (elt_v)))
4796 : : {
4797 : 0 : error ("incorrect type of vector CONSTRUCTOR elements");
4798 : 0 : debug_generic_stmt (rhs1);
4799 : 0 : return true;
4800 : : }
4801 : 20374894 : if (elt_i != NULL_TREE
4802 : 20374894 : && (VECTOR_TYPE_P (elt_t)
4803 : 5821208 : || TREE_CODE (elt_i) != INTEGER_CST
4804 : 5821208 : || compare_tree_int (elt_i, i) != 0))
4805 : : {
4806 : 0 : error ("vector %qs with non-NULL element index",
4807 : : code_name);
4808 : 0 : debug_generic_stmt (rhs1);
4809 : 0 : return true;
4810 : : }
4811 : 20374894 : if (!is_gimple_val (elt_v))
4812 : : {
4813 : 0 : error ("vector %qs element is not a GIMPLE value",
4814 : : code_name);
4815 : 0 : debug_generic_stmt (rhs1);
4816 : 0 : return true;
4817 : : }
4818 : : }
4819 : : }
4820 : 298291942 : else if (CONSTRUCTOR_NELTS (rhs1) != 0)
4821 : : {
4822 : 0 : error ("non-vector %qs with elements", code_name);
4823 : 0 : debug_generic_stmt (rhs1);
4824 : 0 : return true;
4825 : : }
4826 : : return res;
4827 : :
4828 : : case OBJ_TYPE_REF:
4829 : : /* FIXME. */
4830 : : return res;
4831 : :
4832 : : default:;
4833 : : }
4834 : :
4835 : : return res;
4836 : : }
4837 : :
4838 : : /* Verify the contents of a GIMPLE_ASSIGN STMT. Returns true when there
4839 : : is a problem, otherwise false. */
4840 : :
4841 : : static bool
4842 : 4255186976 : verify_gimple_assign (gassign *stmt)
4843 : : {
4844 : 4255186976 : if (gimple_assign_nontemporal_move_p (stmt))
4845 : : {
4846 : 612 : tree lhs = gimple_assign_lhs (stmt);
4847 : 612 : if (is_gimple_reg (lhs))
4848 : : {
4849 : 0 : error ("nontemporal store lhs cannot be a gimple register");
4850 : 0 : debug_generic_stmt (lhs);
4851 : 0 : return true;
4852 : : }
4853 : : }
4854 : :
4855 : 4255186976 : switch (gimple_assign_rhs_class (stmt))
4856 : : {
4857 : 2893190681 : case GIMPLE_SINGLE_RHS:
4858 : 2893190681 : return verify_gimple_assign_single (stmt);
4859 : :
4860 : 402420642 : case GIMPLE_UNARY_RHS:
4861 : 402420642 : return verify_gimple_assign_unary (stmt);
4862 : :
4863 : 951179842 : case GIMPLE_BINARY_RHS:
4864 : 951179842 : return verify_gimple_assign_binary (stmt);
4865 : :
4866 : 8395811 : case GIMPLE_TERNARY_RHS:
4867 : 8395811 : return verify_gimple_assign_ternary (stmt);
4868 : :
4869 : 0 : default:
4870 : 0 : gcc_unreachable ();
4871 : : }
4872 : : }
4873 : :
4874 : : /* Verify the contents of a GIMPLE_RETURN STMT. Returns true when there
4875 : : is a problem, otherwise false. */
4876 : :
4877 : : static bool
4878 : 237128923 : verify_gimple_return (greturn *stmt)
4879 : : {
4880 : 237128923 : tree op = gimple_return_retval (stmt);
4881 : 237128923 : tree restype = TREE_TYPE (TREE_TYPE (cfun->decl));
4882 : :
4883 : : /* We cannot test for present return values as we do not fix up missing
4884 : : return values from the original source. */
4885 : 237128923 : if (op == NULL)
4886 : : return false;
4887 : :
4888 : 133114035 : if (!is_gimple_val (op)
4889 : 133114035 : && TREE_CODE (op) != RESULT_DECL)
4890 : : {
4891 : 0 : error ("invalid operand in return statement");
4892 : 0 : debug_generic_stmt (op);
4893 : 0 : return true;
4894 : : }
4895 : :
4896 : 133114035 : if ((TREE_CODE (op) == RESULT_DECL
4897 : 9538968 : && DECL_BY_REFERENCE (op))
4898 : 142100806 : || (TREE_CODE (op) == SSA_NAME
4899 : 80440936 : && SSA_NAME_VAR (op)
4900 : 12875370 : && TREE_CODE (SSA_NAME_VAR (op)) == RESULT_DECL
4901 : 2243985 : && DECL_BY_REFERENCE (SSA_NAME_VAR (op))))
4902 : 2796076 : op = TREE_TYPE (op);
4903 : :
4904 : 133114035 : if (!useless_type_conversion_p (restype, TREE_TYPE (op)))
4905 : : {
4906 : 0 : error ("invalid conversion in return statement");
4907 : 0 : debug_generic_stmt (restype);
4908 : 0 : debug_generic_stmt (TREE_TYPE (op));
4909 : 0 : return true;
4910 : : }
4911 : :
4912 : : return false;
4913 : : }
4914 : :
4915 : :
4916 : : /* Verify the contents of a GIMPLE_GOTO STMT. Returns true when there
4917 : : is a problem, otherwise false. */
4918 : :
4919 : : static bool
4920 : 22067588 : verify_gimple_goto (ggoto *stmt)
4921 : : {
4922 : 22067588 : tree dest = gimple_goto_dest (stmt);
4923 : :
4924 : : /* ??? We have two canonical forms of direct goto destinations, a
4925 : : bare LABEL_DECL and an ADDR_EXPR of a LABEL_DECL. */
4926 : 22067588 : if (TREE_CODE (dest) != LABEL_DECL
4927 : 22067588 : && (!is_gimple_val (dest)
4928 : 57809 : || !POINTER_TYPE_P (TREE_TYPE (dest))))
4929 : : {
4930 : 0 : error ("goto destination is neither a label nor a pointer");
4931 : 0 : return true;
4932 : : }
4933 : :
4934 : : return false;
4935 : : }
4936 : :
4937 : : /* Verify the contents of a GIMPLE_SWITCH STMT. Returns true when there
4938 : : is a problem, otherwise false. */
4939 : :
4940 : : static bool
4941 : 4356684 : verify_gimple_switch (gswitch *stmt)
4942 : : {
4943 : 4356684 : unsigned int i, n;
4944 : 4356684 : tree elt, prev_upper_bound = NULL_TREE;
4945 : 4356684 : tree index_type, elt_type = NULL_TREE;
4946 : :
4947 : 4356684 : if (!is_gimple_val (gimple_switch_index (stmt)))
4948 : : {
4949 : 0 : error ("invalid operand to switch statement");
4950 : 0 : debug_generic_stmt (gimple_switch_index (stmt));
4951 : 0 : return true;
4952 : : }
4953 : :
4954 : 4356684 : index_type = TREE_TYPE (gimple_switch_index (stmt));
4955 : 4356684 : if (! INTEGRAL_TYPE_P (index_type))
4956 : : {
4957 : 0 : error ("non-integral type switch statement");
4958 : 0 : debug_generic_expr (index_type);
4959 : 0 : return true;
4960 : : }
4961 : :
4962 : 4356684 : elt = gimple_switch_label (stmt, 0);
4963 : 4356684 : if (CASE_LOW (elt) != NULL_TREE
4964 : 4356684 : || CASE_HIGH (elt) != NULL_TREE
4965 : 8713368 : || CASE_CHAIN (elt) != NULL_TREE)
4966 : : {
4967 : 0 : error ("invalid default case label in switch statement");
4968 : 0 : debug_generic_expr (elt);
4969 : 0 : return true;
4970 : : }
4971 : :
4972 : 4356684 : n = gimple_switch_num_labels (stmt);
4973 : 39280905 : for (i = 1; i < n; i++)
4974 : : {
4975 : 30567537 : elt = gimple_switch_label (stmt, i);
4976 : :
4977 : 30567537 : if (CASE_CHAIN (elt))
4978 : : {
4979 : 0 : error ("invalid %<CASE_CHAIN%>");
4980 : 0 : debug_generic_expr (elt);
4981 : 0 : return true;
4982 : : }
4983 : 30567537 : if (! CASE_LOW (elt))
4984 : : {
4985 : 0 : error ("invalid case label in switch statement");
4986 : 0 : debug_generic_expr (elt);
4987 : 0 : return true;
4988 : : }
4989 : 30567537 : if (CASE_HIGH (elt)
4990 : 30567537 : && ! tree_int_cst_lt (CASE_LOW (elt), CASE_HIGH (elt)))
4991 : : {
4992 : 0 : error ("invalid case range in switch statement");
4993 : 0 : debug_generic_expr (elt);
4994 : 0 : return true;
4995 : : }
4996 : :
4997 : 30567537 : if (! elt_type)
4998 : : {
4999 : 4353825 : elt_type = TREE_TYPE (CASE_LOW (elt));
5000 : 4353825 : if (TYPE_PRECISION (index_type) < TYPE_PRECISION (elt_type))
5001 : : {
5002 : 0 : error ("type precision mismatch in switch statement");
5003 : 0 : return true;
5004 : : }
5005 : : }
5006 : 30567537 : if (TREE_TYPE (CASE_LOW (elt)) != elt_type
5007 : 30567537 : || (CASE_HIGH (elt) && TREE_TYPE (CASE_HIGH (elt)) != elt_type))
5008 : : {
5009 : 0 : error ("type mismatch for case label in switch statement");
5010 : 0 : debug_generic_expr (elt);
5011 : 0 : return true;
5012 : : }
5013 : :
5014 : 30567537 : if (prev_upper_bound)
5015 : : {
5016 : 26213712 : if (! tree_int_cst_lt (prev_upper_bound, CASE_LOW (elt)))
5017 : : {
5018 : 0 : error ("case labels not sorted in switch statement");
5019 : 0 : return true;
5020 : : }
5021 : : }
5022 : :
5023 : 30567537 : prev_upper_bound = CASE_HIGH (elt);
5024 : 30567537 : if (! prev_upper_bound)
5025 : 28231319 : prev_upper_bound = CASE_LOW (elt);
5026 : : }
5027 : :
5028 : : return false;
5029 : : }
5030 : :
5031 : : /* Verify a gimple debug statement STMT.
5032 : : Returns true if anything is wrong. */
5033 : :
5034 : : static bool
5035 : 0 : verify_gimple_debug (gimple *stmt ATTRIBUTE_UNUSED)
5036 : : {
5037 : : /* There isn't much that could be wrong in a gimple debug stmt. A
5038 : : gimple debug bind stmt, for example, maps a tree, that's usually
5039 : : a VAR_DECL or a PARM_DECL, but that could also be some scalarized
5040 : : component or member of an aggregate type, to another tree, that
5041 : : can be an arbitrary expression. These stmts expand into debug
5042 : : insns, and are converted to debug notes by var-tracking.cc. */
5043 : 0 : return false;
5044 : : }
5045 : :
5046 : : /* Verify a gimple label statement STMT.
5047 : : Returns true if anything is wrong. */
5048 : :
5049 : : static bool
5050 : 207729854 : verify_gimple_label (glabel *stmt)
5051 : : {
5052 : 207729854 : tree decl = gimple_label_label (stmt);
5053 : 207729854 : int uid;
5054 : 207729854 : bool err = false;
5055 : :
5056 : 207729854 : if (TREE_CODE (decl) != LABEL_DECL)
5057 : : return true;
5058 : 415402895 : if (!DECL_NONLOCAL (decl) && !FORCED_LABEL (decl)
5059 : 412269529 : && DECL_CONTEXT (decl) != current_function_decl)
5060 : : {
5061 : 0 : error ("label context is not the current function declaration");
5062 : 0 : err |= true;
5063 : : }
5064 : :
5065 : 207729854 : uid = LABEL_DECL_UID (decl);
5066 : 207729854 : if (cfun->cfg
5067 : 207729854 : && (uid == -1
5068 : 130901913 : || (*label_to_block_map_for_fn (cfun))[uid] != gimple_bb (stmt)))
5069 : : {
5070 : 0 : error ("incorrect entry in %<label_to_block_map%>");
5071 : 0 : err |= true;
5072 : : }
5073 : :
5074 : 207729854 : uid = EH_LANDING_PAD_NR (decl);
5075 : 207729854 : if (uid)
5076 : : {
5077 : 73569998 : eh_landing_pad lp = get_eh_landing_pad_from_number (uid);
5078 : 73569998 : if (decl != lp->post_landing_pad)
5079 : : {
5080 : 0 : error ("incorrect setting of landing pad number");
5081 : 0 : err |= true;
5082 : : }
5083 : : }
5084 : :
5085 : : return err;
5086 : : }
5087 : :
5088 : : /* Verify a gimple cond statement STMT.
5089 : : Returns true if anything is wrong. */
5090 : :
5091 : : static bool
5092 : 689631988 : verify_gimple_cond (gcond *stmt)
5093 : : {
5094 : 689631988 : if (TREE_CODE_CLASS (gimple_cond_code (stmt)) != tcc_comparison)
5095 : : {
5096 : 0 : error ("invalid comparison code in gimple cond");
5097 : 0 : return true;
5098 : : }
5099 : 689631988 : if (!(!gimple_cond_true_label (stmt)
5100 : 26374036 : || TREE_CODE (gimple_cond_true_label (stmt)) == LABEL_DECL)
5101 : 716006024 : || !(!gimple_cond_false_label (stmt)
5102 : 26374036 : || TREE_CODE (gimple_cond_false_label (stmt)) == LABEL_DECL))
5103 : : {
5104 : 0 : error ("invalid labels in gimple cond");
5105 : 0 : return true;
5106 : : }
5107 : :
5108 : 689631988 : return verify_gimple_comparison (boolean_type_node,
5109 : : gimple_cond_lhs (stmt),
5110 : : gimple_cond_rhs (stmt),
5111 : 689631988 : gimple_cond_code (stmt));
5112 : : }
5113 : :
5114 : : /* Verify the GIMPLE statement STMT. Returns true if there is an
5115 : : error, otherwise false. */
5116 : :
5117 : : static bool
5118 : 11614359731 : verify_gimple_stmt (gimple *stmt)
5119 : : {
5120 : 11614359731 : switch (gimple_code (stmt))
5121 : : {
5122 : 4255186976 : case GIMPLE_ASSIGN:
5123 : 4255186976 : return verify_gimple_assign (as_a <gassign *> (stmt));
5124 : :
5125 : 207729854 : case GIMPLE_LABEL:
5126 : 207729854 : return verify_gimple_label (as_a <glabel *> (stmt));
5127 : :
5128 : 979348286 : case GIMPLE_CALL:
5129 : 979348286 : return verify_gimple_call (as_a <gcall *> (stmt));
5130 : :
5131 : 689631988 : case GIMPLE_COND:
5132 : 689631988 : return verify_gimple_cond (as_a <gcond *> (stmt));
5133 : :
5134 : 22067588 : case GIMPLE_GOTO:
5135 : 22067588 : return verify_gimple_goto (as_a <ggoto *> (stmt));
5136 : :
5137 : 4356684 : case GIMPLE_SWITCH:
5138 : 4356684 : return verify_gimple_switch (as_a <gswitch *> (stmt));
5139 : :
5140 : 237128923 : case GIMPLE_RETURN:
5141 : 237128923 : return verify_gimple_return (as_a <greturn *> (stmt));
5142 : :
5143 : : case GIMPLE_ASM:
5144 : : return false;
5145 : :
5146 : 30952 : case GIMPLE_TRANSACTION:
5147 : 30952 : return verify_gimple_transaction (as_a <gtransaction *> (stmt));
5148 : :
5149 : : /* Tuples that do not have tree operands. */
5150 : : case GIMPLE_NOP:
5151 : : case GIMPLE_PREDICT:
5152 : : case GIMPLE_RESX:
5153 : : case GIMPLE_EH_DISPATCH:
5154 : : case GIMPLE_EH_MUST_NOT_THROW:
5155 : : return false;
5156 : :
5157 : : CASE_GIMPLE_OMP:
5158 : : /* OpenMP directives are validated by the FE and never operated
5159 : : on by the optimizers. Furthermore, GIMPLE_OMP_FOR may contain
5160 : : non-gimple expressions when the main index variable has had
5161 : : its address taken. This does not affect the loop itself
5162 : : because the header of an GIMPLE_OMP_FOR is merely used to determine
5163 : : how to setup the parallel iteration. */
5164 : : return false;
5165 : :
5166 : : case GIMPLE_ASSUME:
5167 : : return false;
5168 : :
5169 : : case GIMPLE_DEBUG:
5170 : : return verify_gimple_debug (stmt);
5171 : :
5172 : 0 : default:
5173 : 0 : gcc_unreachable ();
5174 : : }
5175 : : }
5176 : :
5177 : : /* Verify the contents of a GIMPLE_PHI. Returns true if there is a problem,
5178 : : and false otherwise. */
5179 : :
5180 : : static bool
5181 : 622841010 : verify_gimple_phi (gphi *phi)
5182 : : {
5183 : 622841010 : bool err = false;
5184 : 622841010 : unsigned i;
5185 : 622841010 : tree phi_result = gimple_phi_result (phi);
5186 : 622841010 : bool virtual_p;
5187 : :
5188 : 622841010 : if (!phi_result)
5189 : : {
5190 : 0 : error ("invalid %<PHI%> result");
5191 : 0 : return true;
5192 : : }
5193 : :
5194 : 622841010 : virtual_p = virtual_operand_p (phi_result);
5195 : 622841010 : if (TREE_CODE (phi_result) != SSA_NAME
5196 : 622841010 : || (virtual_p
5197 : 296184237 : && SSA_NAME_VAR (phi_result) != gimple_vop (cfun)))
5198 : : {
5199 : 0 : error ("invalid %<PHI%> result");
5200 : 0 : err = true;
5201 : : }
5202 : :
5203 : 2156092000 : for (i = 0; i < gimple_phi_num_args (phi); i++)
5204 : : {
5205 : 1533250990 : tree t = gimple_phi_arg_def (phi, i);
5206 : :
5207 : 1533250990 : if (!t)
5208 : : {
5209 : 0 : error ("missing %<PHI%> def");
5210 : 0 : err |= true;
5211 : 0 : continue;
5212 : : }
5213 : : /* Addressable variables do have SSA_NAMEs but they
5214 : : are not considered gimple values. */
5215 : 1533250990 : else if ((TREE_CODE (t) == SSA_NAME
5216 : 1328670063 : && virtual_p != virtual_operand_p (t))
5217 : 1533250990 : || (virtual_p
5218 : 766637785 : && (TREE_CODE (t) != SSA_NAME
5219 : 766637785 : || SSA_NAME_VAR (t) != gimple_vop (cfun)))
5220 : 1533250990 : || (!virtual_p
5221 : 766613205 : && !is_gimple_val (t)))
5222 : : {
5223 : 0 : error ("invalid %<PHI%> argument");
5224 : 0 : debug_generic_expr (t);
5225 : 0 : err |= true;
5226 : : }
5227 : : #ifdef ENABLE_TYPES_CHECKING
5228 : 1533250990 : if (!useless_type_conversion_p (TREE_TYPE (phi_result), TREE_TYPE (t)))
5229 : : {
5230 : 0 : error ("incompatible types in %<PHI%> argument %u", i);
5231 : 0 : debug_generic_stmt (TREE_TYPE (phi_result));
5232 : 0 : debug_generic_stmt (TREE_TYPE (t));
5233 : 0 : err |= true;
5234 : : }
5235 : : #endif
5236 : : }
5237 : :
5238 : : return err;
5239 : : }
5240 : :
5241 : : /* Verify the GIMPLE statements inside the sequence STMTS. */
5242 : :
5243 : : static bool
5244 : 50119306 : verify_gimple_in_seq_2 (gimple_seq stmts)
5245 : : {
5246 : 50119306 : gimple_stmt_iterator ittr;
5247 : 50119306 : bool err = false;
5248 : :
5249 : 484968505 : for (ittr = gsi_start (stmts); !gsi_end_p (ittr); gsi_next (&ittr))
5250 : : {
5251 : 434849199 : gimple *stmt = gsi_stmt (ittr);
5252 : :
5253 : 434849199 : switch (gimple_code (stmt))
5254 : : {
5255 : 14344328 : case GIMPLE_BIND:
5256 : 14344328 : err |= verify_gimple_in_seq_2 (
5257 : 14344328 : gimple_bind_body (as_a <gbind *> (stmt)));
5258 : 14344328 : break;
5259 : :
5260 : 10245872 : case GIMPLE_TRY:
5261 : 10245872 : err |= verify_gimple_in_seq_2 (gimple_try_eval (stmt));
5262 : 10245872 : err |= verify_gimple_in_seq_2 (gimple_try_cleanup (stmt));
5263 : 10245872 : break;
5264 : :
5265 : 21025 : case GIMPLE_EH_FILTER:
5266 : 21025 : err |= verify_gimple_in_seq_2 (gimple_eh_filter_failure (stmt));
5267 : 21025 : break;
5268 : :
5269 : 1298 : case GIMPLE_EH_ELSE:
5270 : 1298 : {
5271 : 1298 : geh_else *eh_else = as_a <geh_else *> (stmt);
5272 : 1298 : err |= verify_gimple_in_seq_2 (gimple_eh_else_n_body (eh_else));
5273 : 1298 : err |= verify_gimple_in_seq_2 (gimple_eh_else_e_body (eh_else));
5274 : : }
5275 : 1298 : break;
5276 : :
5277 : 167939 : case GIMPLE_CATCH:
5278 : 167939 : err |= verify_gimple_in_seq_2 (gimple_catch_handler (
5279 : 167939 : as_a <gcatch *> (stmt)));
5280 : 167939 : break;
5281 : :
5282 : 330 : case GIMPLE_ASSUME:
5283 : 330 : err |= verify_gimple_in_seq_2 (gimple_assume_body (stmt));
5284 : 330 : break;
5285 : :
5286 : 2974 : case GIMPLE_TRANSACTION:
5287 : 2974 : err |= verify_gimple_transaction (as_a <gtransaction *> (stmt));
5288 : 2974 : break;
5289 : :
5290 : 410065433 : default:
5291 : 410065433 : {
5292 : 410065433 : bool err2 = verify_gimple_stmt (stmt);
5293 : 410065433 : if (err2)
5294 : 1 : debug_gimple_stmt (stmt);
5295 : 410065433 : err |= err2;
5296 : : }
5297 : : }
5298 : : }
5299 : :
5300 : 50119306 : return err;
5301 : : }
5302 : :
5303 : : /* Verify the contents of a GIMPLE_TRANSACTION. Returns true if there
5304 : : is a problem, otherwise false. */
5305 : :
5306 : : static bool
5307 : 33926 : verify_gimple_transaction (gtransaction *stmt)
5308 : : {
5309 : 33926 : tree lab;
5310 : :
5311 : 33926 : lab = gimple_transaction_label_norm (stmt);
5312 : 33926 : if (lab != NULL && TREE_CODE (lab) != LABEL_DECL)
5313 : : return true;
5314 : 33926 : lab = gimple_transaction_label_uninst (stmt);
5315 : 33926 : if (lab != NULL && TREE_CODE (lab) != LABEL_DECL)
5316 : : return true;
5317 : 33926 : lab = gimple_transaction_label_over (stmt);
5318 : 33926 : if (lab != NULL && TREE_CODE (lab) != LABEL_DECL)
5319 : : return true;
5320 : :
5321 : 33926 : return verify_gimple_in_seq_2 (gimple_transaction_body (stmt));
5322 : : }
5323 : :
5324 : :
5325 : : /* Verify the GIMPLE statements inside the statement list STMTS. */
5326 : :
5327 : : DEBUG_FUNCTION bool
5328 : 15057418 : verify_gimple_in_seq (gimple_seq stmts, bool ice)
5329 : : {
5330 : 15057418 : timevar_push (TV_TREE_STMT_VERIFY);
5331 : 15057418 : bool res = verify_gimple_in_seq_2 (stmts);
5332 : 15057418 : if (res && ice)
5333 : 0 : internal_error ("%<verify_gimple%> failed");
5334 : 15057418 : timevar_pop (TV_TREE_STMT_VERIFY);
5335 : 15057418 : return res;
5336 : : }
5337 : :
5338 : : /* Return true when the T can be shared. */
5339 : :
5340 : : static bool
5341 : 29077895617 : tree_node_can_be_shared (tree t)
5342 : : {
5343 : 29077895617 : if (IS_TYPE_OR_DECL_P (t)
5344 : 20740408221 : || TREE_CODE (t) == SSA_NAME
5345 : 10754960546 : || TREE_CODE (t) == IDENTIFIER_NODE
5346 : 10754960370 : || TREE_CODE (t) == CASE_LABEL_EXPR
5347 : 39803487478 : || is_gimple_min_invariant (t))
5348 : 24773843939 : return true;
5349 : :
5350 : 4304051678 : if (t == error_mark_node)
5351 : : return true;
5352 : :
5353 : : return false;
5354 : : }
5355 : :
5356 : : /* Called via walk_tree. Verify tree sharing. */
5357 : :
5358 : : static tree
5359 : 29077895617 : verify_node_sharing_1 (tree *tp, int *walk_subtrees, void *data)
5360 : : {
5361 : 29077895617 : hash_set<void *> *visited = (hash_set<void *> *) data;
5362 : :
5363 : 29077895617 : if (tree_node_can_be_shared (*tp))
5364 : : {
5365 : 24773843939 : *walk_subtrees = false;
5366 : 24773843939 : return NULL;
5367 : : }
5368 : :
5369 : 4304051678 : if (visited->add (*tp))
5370 : 0 : return *tp;
5371 : :
5372 : : return NULL;
5373 : : }
5374 : :
5375 : : /* Called via walk_gimple_stmt. Verify tree sharing. */
5376 : :
5377 : : static tree
5378 : 27544644627 : verify_node_sharing (tree *tp, int *walk_subtrees, void *data)
5379 : : {
5380 : 27544644627 : struct walk_stmt_info *wi = (struct walk_stmt_info *) data;
5381 : 27544644627 : return verify_node_sharing_1 (tp, walk_subtrees, wi->info);
5382 : : }
5383 : :
5384 : : static bool eh_error_found;
5385 : : bool
5386 : 190279668 : verify_eh_throw_stmt_node (gimple *const &stmt, const int &,
5387 : : hash_set<gimple *> *visited)
5388 : : {
5389 : 190279668 : if (!visited->contains (stmt))
5390 : : {
5391 : 0 : error ("dead statement in EH table");
5392 : 0 : debug_gimple_stmt (stmt);
5393 : 0 : eh_error_found = true;
5394 : : }
5395 : 190279668 : return true;
5396 : : }
5397 : :
5398 : : /* Verify if the location LOCs block is in BLOCKS. */
5399 : :
5400 : : static bool
5401 : 21270272911 : verify_location (hash_set<tree> *blocks, location_t loc)
5402 : : {
5403 : 34994790451 : tree block = LOCATION_BLOCK (loc);
5404 : 34994790451 : if (block != NULL_TREE
5405 : 34994790451 : && !blocks->contains (block))
5406 : : {
5407 : 0 : error ("location references block not in block tree");
5408 : 0 : return true;
5409 : : }
5410 : 34994790451 : if (block != NULL_TREE)
5411 : 13724517540 : return verify_location (blocks, BLOCK_SOURCE_LOCATION (block));
5412 : : return false;
5413 : : }
5414 : :
5415 : : /* Called via walk_tree. Verify that expressions have no blocks. */
5416 : :
5417 : : static tree
5418 : 1442454068 : verify_expr_no_block (tree *tp, int *walk_subtrees, void *)
5419 : : {
5420 : 1442454068 : if (!EXPR_P (*tp))
5421 : : {
5422 : 887204216 : *walk_subtrees = false;
5423 : 887204216 : return NULL;
5424 : : }
5425 : :
5426 : 1997703920 : location_t loc = EXPR_LOCATION (*tp);
5427 : 555249852 : if (LOCATION_BLOCK (loc) != NULL)
5428 : 0 : return *tp;
5429 : :
5430 : : return NULL;
5431 : : }
5432 : :
5433 : : /* Called via walk_tree. Verify locations of expressions. */
5434 : :
5435 : : static tree
5436 : 32316099344 : verify_expr_location_1 (tree *tp, int *walk_subtrees, void *data)
5437 : : {
5438 : 32316099344 : hash_set<tree> *blocks = (hash_set<tree> *) data;
5439 : 32316099344 : tree t = *tp;
5440 : :
5441 : : /* ??? This doesn't really belong here but there's no good place to
5442 : : stick this remainder of old verify_expr. */
5443 : : /* ??? This barfs on debug stmts which contain binds to vars with
5444 : : different function context. */
5445 : : #if 0
5446 : : if (VAR_P (t)
5447 : : || TREE_CODE (t) == PARM_DECL
5448 : : || TREE_CODE (t) == RESULT_DECL)
5449 : : {
5450 : : tree context = decl_function_context (t);
5451 : : if (context != cfun->decl
5452 : : && !SCOPE_FILE_SCOPE_P (context)
5453 : : && !TREE_STATIC (t)
5454 : : && !DECL_EXTERNAL (t))
5455 : : {
5456 : : error ("local declaration from a different function");
5457 : : return t;
5458 : : }
5459 : : }
5460 : : #endif
5461 : :
5462 : 32316099344 : if (VAR_P (t) && DECL_HAS_DEBUG_EXPR_P (t))
5463 : : {
5464 : 398077317 : tree x = DECL_DEBUG_EXPR (t);
5465 : 398077317 : tree addr = walk_tree (&x, verify_expr_no_block, NULL, NULL);
5466 : 398077317 : if (addr)
5467 : 0 : return addr;
5468 : : }
5469 : 32316099344 : if ((VAR_P (t)
5470 : : || TREE_CODE (t) == PARM_DECL
5471 : : || TREE_CODE (t) == RESULT_DECL)
5472 : 6765766658 : && DECL_HAS_VALUE_EXPR_P (t))
5473 : : {
5474 : 1608 : tree x = DECL_VALUE_EXPR (t);
5475 : 1608 : tree addr = walk_tree (&x, verify_expr_no_block, NULL, NULL);
5476 : 1608 : if (addr)
5477 : 0 : return addr;
5478 : : }
5479 : :
5480 : 32316099344 : if (!EXPR_P (t))
5481 : : {
5482 : 25438010891 : *walk_subtrees = false;
5483 : 25438010891 : return NULL;
5484 : : }
5485 : :
5486 : 6878088453 : location_t loc = EXPR_LOCATION (t);
5487 : 6878088453 : if (verify_location (blocks, loc))
5488 : : return t;
5489 : :
5490 : : return NULL;
5491 : : }
5492 : :
5493 : : /* Called via walk_gimple_op. Verify locations of expressions. */
5494 : :
5495 : : static tree
5496 : 30756749778 : verify_expr_location (tree *tp, int *walk_subtrees, void *data)
5497 : : {
5498 : 30756749778 : struct walk_stmt_info *wi = (struct walk_stmt_info *) data;
5499 : 30756749778 : return verify_expr_location_1 (tp, walk_subtrees, wi->info);
5500 : : }
5501 : :
5502 : : /* Insert all subblocks of BLOCK into BLOCKS and recurse. */
5503 : :
5504 : : static void
5505 : 2102451146 : collect_subblocks (hash_set<tree> *blocks, tree block)
5506 : : {
5507 : 2102451146 : tree t;
5508 : 3976879244 : for (t = BLOCK_SUBBLOCKS (block); t; t = BLOCK_CHAIN (t))
5509 : : {
5510 : 1874428098 : blocks->add (t);
5511 : 1874428098 : collect_subblocks (blocks, t);
5512 : : }
5513 : 2102451146 : }
5514 : :
5515 : : /* Disable warnings about missing quoting in GCC diagnostics for
5516 : : the verification errors. Their format strings don't follow
5517 : : GCC diagnostic conventions and trigger an ICE in the end. */
5518 : : #if __GNUC__ >= 10
5519 : : # pragma GCC diagnostic push
5520 : : # pragma GCC diagnostic ignored "-Wformat-diag"
5521 : : #endif
5522 : :
5523 : : /* Verify the GIMPLE statements in the CFG of FN. */
5524 : :
5525 : : DEBUG_FUNCTION bool
5526 : 228023048 : verify_gimple_in_cfg (struct function *fn, bool verify_nothrow, bool ice)
5527 : : {
5528 : 228023048 : basic_block bb;
5529 : 228023048 : bool err = false;
5530 : :
5531 : 228023048 : timevar_push (TV_TREE_STMT_VERIFY);
5532 : 228023048 : hash_set<void *> visited;
5533 : 228023048 : hash_set<gimple *> visited_throwing_stmts;
5534 : :
5535 : : /* Collect all BLOCKs referenced by the BLOCK tree of FN. */
5536 : 228023048 : hash_set<tree> blocks;
5537 : 228023048 : if (DECL_INITIAL (fn->decl))
5538 : : {
5539 : 228023048 : blocks.add (DECL_INITIAL (fn->decl));
5540 : 228023048 : collect_subblocks (&blocks, DECL_INITIAL (fn->decl));
5541 : : }
5542 : :
5543 : 2047972795 : FOR_EACH_BB_FN (bb, fn)
5544 : : {
5545 : 1819949747 : gimple_stmt_iterator gsi;
5546 : 1819949747 : edge_iterator ei;
5547 : 1819949747 : edge e;
5548 : :
5549 : 1819949747 : for (gphi_iterator gpi = gsi_start_phis (bb);
5550 : 2442790757 : !gsi_end_p (gpi);
5551 : 622841010 : gsi_next (&gpi))
5552 : : {
5553 : 622841010 : gphi *phi = gpi.phi ();
5554 : 622841010 : bool err2 = false;
5555 : 622841010 : unsigned i;
5556 : :
5557 : 622841010 : if (gimple_bb (phi) != bb)
5558 : : {
5559 : 0 : error ("gimple_bb (phi) is set to a wrong basic block");
5560 : 0 : err2 = true;
5561 : : }
5562 : :
5563 : 622841010 : err2 |= verify_gimple_phi (phi);
5564 : :
5565 : : /* Only PHI arguments have locations. */
5566 : 622841010 : if (gimple_location (phi) != UNKNOWN_LOCATION)
5567 : : {
5568 : 0 : error ("PHI node with location");
5569 : 0 : err2 = true;
5570 : : }
5571 : :
5572 : 2156092000 : for (i = 0; i < gimple_phi_num_args (phi); i++)
5573 : : {
5574 : 1533250990 : tree arg = gimple_phi_arg_def (phi, i);
5575 : 1533250990 : tree addr = walk_tree (&arg, verify_node_sharing_1,
5576 : : &visited, NULL);
5577 : 1533250990 : if (addr)
5578 : : {
5579 : 0 : error ("incorrect sharing of tree nodes");
5580 : 0 : debug_generic_expr (addr);
5581 : 0 : err2 |= true;
5582 : : }
5583 : 1533250990 : location_t loc = gimple_phi_arg_location (phi, i);
5584 : 1533250990 : if (virtual_operand_p (gimple_phi_result (phi))
5585 : 1533250990 : && loc != UNKNOWN_LOCATION)
5586 : : {
5587 : 0 : error ("virtual PHI with argument locations");
5588 : 0 : err2 = true;
5589 : : }
5590 : 1533250990 : addr = walk_tree (&arg, verify_expr_location_1, &blocks, NULL);
5591 : 1533250990 : if (addr)
5592 : : {
5593 : 0 : debug_generic_expr (addr);
5594 : 0 : err2 = true;
5595 : : }
5596 : 1533250990 : err2 |= verify_location (&blocks, loc);
5597 : : }
5598 : :
5599 : 622841010 : if (err2)
5600 : 0 : debug_gimple_stmt (phi);
5601 : 622841010 : err |= err2;
5602 : : }
5603 : :
5604 : 14844193792 : for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
5605 : : {
5606 : 11204294298 : gimple *stmt = gsi_stmt (gsi);
5607 : 11204294298 : bool err2 = false;
5608 : 11204294298 : struct walk_stmt_info wi;
5609 : 11204294298 : tree addr;
5610 : 11204294298 : int lp_nr;
5611 : :
5612 : 11204294298 : if (gimple_bb (stmt) != bb)
5613 : : {
5614 : 0 : error ("gimple_bb (stmt) is set to a wrong basic block");
5615 : 0 : err2 = true;
5616 : : }
5617 : :
5618 : 11204294298 : err2 |= verify_gimple_stmt (stmt);
5619 : 11204294298 : err2 |= verify_location (&blocks, gimple_location (stmt));
5620 : :
5621 : 11204294298 : memset (&wi, 0, sizeof (wi));
5622 : 11204294298 : wi.info = (void *) &visited;
5623 : 11204294298 : addr = walk_gimple_op (stmt, verify_node_sharing, &wi);
5624 : 11204294298 : if (addr)
5625 : : {
5626 : 0 : error ("incorrect sharing of tree nodes");
5627 : 0 : debug_generic_expr (addr);
5628 : 0 : err2 |= true;
5629 : : }
5630 : :
5631 : 11204294298 : memset (&wi, 0, sizeof (wi));
5632 : 11204294298 : wi.info = (void *) &blocks;
5633 : 11204294298 : addr = walk_gimple_op (stmt, verify_expr_location, &wi);
5634 : 11204294298 : if (addr)
5635 : : {
5636 : 0 : debug_generic_expr (addr);
5637 : 0 : err2 |= true;
5638 : : }
5639 : :
5640 : : /* If the statement is marked as part of an EH region, then it is
5641 : : expected that the statement could throw. Verify that when we
5642 : : have optimizations that simplify statements such that we prove
5643 : : that they cannot throw, that we update other data structures
5644 : : to match. */
5645 : 11204294298 : lp_nr = lookup_stmt_eh_lp (stmt);
5646 : 11204294298 : if (lp_nr != 0)
5647 : 190279668 : visited_throwing_stmts.add (stmt);
5648 : 190279668 : if (lp_nr > 0)
5649 : : {
5650 : 183634113 : if (!stmt_could_throw_p (cfun, stmt))
5651 : : {
5652 : 19 : if (verify_nothrow)
5653 : : {
5654 : 0 : error ("statement marked for throw, but doesn%'t");
5655 : 0 : err2 |= true;
5656 : : }
5657 : : }
5658 : 183634094 : else if (!gsi_one_before_end_p (gsi))
5659 : : {
5660 : 0 : error ("statement marked for throw in middle of block");
5661 : 0 : err2 |= true;
5662 : : }
5663 : : }
5664 : :
5665 : 11204294298 : if (err2)
5666 : 0 : debug_gimple_stmt (stmt);
5667 : 11204294298 : err |= err2;
5668 : : }
5669 : :
5670 : 4342288271 : FOR_EACH_EDGE (e, ei, bb->succs)
5671 : 2522338524 : if (e->goto_locus != UNKNOWN_LOCATION)
5672 : 1654639170 : err |= verify_location (&blocks, e->goto_locus);
5673 : : }
5674 : :
5675 : 228023048 : hash_map<gimple *, int> *eh_table = get_eh_throw_stmt_table (cfun);
5676 : 228023048 : eh_error_found = false;
5677 : 228023048 : if (eh_table)
5678 : 32648970 : eh_table->traverse<hash_set<gimple *> *, verify_eh_throw_stmt_node>
5679 : 222928638 : (&visited_throwing_stmts);
5680 : :
5681 : 228023048 : if (ice && (err || eh_error_found))
5682 : 0 : internal_error ("verify_gimple failed");
5683 : :
5684 : 228023048 : verify_histograms ();
5685 : 228023048 : timevar_pop (TV_TREE_STMT_VERIFY);
5686 : :
5687 : 228023048 : return (err || eh_error_found);
5688 : 228023048 : }
5689 : :
5690 : :
5691 : : /* Verifies that the flow information is OK. */
5692 : :
5693 : : static bool
5694 : 218964749 : gimple_verify_flow_info (void)
5695 : : {
5696 : 218964749 : bool err = false;
5697 : 218964749 : basic_block bb;
5698 : 218964749 : gimple_stmt_iterator gsi;
5699 : 218964749 : gimple *stmt;
5700 : 218964749 : edge e;
5701 : 218964749 : edge_iterator ei;
5702 : :
5703 : 218964749 : if (ENTRY_BLOCK_PTR_FOR_FN (cfun)->il.gimple.seq
5704 : 218964749 : || ENTRY_BLOCK_PTR_FOR_FN (cfun)->il.gimple.phi_nodes)
5705 : : {
5706 : 0 : error ("ENTRY_BLOCK has IL associated with it");
5707 : 0 : err = true;
5708 : : }
5709 : :
5710 : 218964749 : if (EXIT_BLOCK_PTR_FOR_FN (cfun)->il.gimple.seq
5711 : 218964749 : || EXIT_BLOCK_PTR_FOR_FN (cfun)->il.gimple.phi_nodes)
5712 : : {
5713 : 0 : error ("EXIT_BLOCK has IL associated with it");
5714 : 0 : err = true;
5715 : : }
5716 : :
5717 : 434086431 : FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR_FOR_FN (cfun)->preds)
5718 : 215121682 : if (e->flags & EDGE_FALLTHRU)
5719 : : {
5720 : 0 : error ("fallthru to exit from bb %d", e->src->index);
5721 : 0 : err = true;
5722 : : }
5723 : 218964749 : if (cfun->cfg->full_profile
5724 : 218964749 : && !ENTRY_BLOCK_PTR_FOR_FN (cfun)->count.initialized_p ())
5725 : : {
5726 : 0 : error ("entry block count not initialized");
5727 : 0 : err = true;
5728 : : }
5729 : 218964749 : if (cfun->cfg->full_profile
5730 : 218964749 : && !EXIT_BLOCK_PTR_FOR_FN (cfun)->count.initialized_p ())
5731 : : {
5732 : 0 : error ("exit block count not initialized");
5733 : 0 : err = true;
5734 : : }
5735 : 218964749 : if (cfun->cfg->full_profile
5736 : 332044659 : && !single_succ_edge
5737 : 113079910 : (ENTRY_BLOCK_PTR_FOR_FN (cfun))->probability.initialized_p ())
5738 : : {
5739 : 0 : error ("probability of edge from entry block not initialized");
5740 : 0 : err = true;
5741 : : }
5742 : :
5743 : :
5744 : 2085222010 : FOR_EACH_BB_FN (bb, cfun)
5745 : : {
5746 : 1866257261 : bool found_ctrl_stmt = false;
5747 : :
5748 : 1866257261 : stmt = NULL;
5749 : :
5750 : 1866257261 : if (cfun->cfg->full_profile)
5751 : : {
5752 : 1224349139 : if (!bb->count.initialized_p ())
5753 : : {
5754 : 0 : error ("count of bb %d not initialized", bb->index);
5755 : 0 : err = true;
5756 : : }
5757 : 2950660691 : FOR_EACH_EDGE (e, ei, bb->succs)
5758 : 1726311552 : if (!e->probability.initialized_p ())
5759 : : {
5760 : 0 : error ("probability of edge %d->%d not initialized",
5761 : 0 : bb->index, e->dest->index);
5762 : 0 : err = true;
5763 : : }
5764 : : }
5765 : :
5766 : : /* Skip labels on the start of basic block. */
5767 : 3870948616 : for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
5768 : : {
5769 : 1846330718 : tree label;
5770 : 1846330718 : gimple *prev_stmt = stmt;
5771 : :
5772 : 1846330718 : stmt = gsi_stmt (gsi);
5773 : :
5774 : 1846330718 : if (gimple_code (stmt) != GIMPLE_LABEL)
5775 : : break;
5776 : :
5777 : 138434094 : label = gimple_label_label (as_a <glabel *> (stmt));
5778 : 138434094 : if (prev_stmt && DECL_NONLOCAL (label))
5779 : : {
5780 : 0 : error ("nonlocal label %qD is not first in a sequence "
5781 : : "of labels in bb %d", label, bb->index);
5782 : 0 : err = true;
5783 : : }
5784 : :
5785 : 140384588 : if (prev_stmt && EH_LANDING_PAD_NR (label) != 0)
5786 : : {
5787 : 0 : error ("EH landing pad label %qD is not first in a sequence "
5788 : : "of labels in bb %d", label, bb->index);
5789 : 0 : err = true;
5790 : : }
5791 : :
5792 : 138434094 : if (label_to_block (cfun, label) != bb)
5793 : : {
5794 : 0 : error ("label %qD to block does not match in bb %d",
5795 : : label, bb->index);
5796 : 0 : err = true;
5797 : : }
5798 : :
5799 : 138434094 : if (decl_function_context (label) != current_function_decl)
5800 : : {
5801 : 0 : error ("label %qD has incorrect context in bb %d",
5802 : : label, bb->index);
5803 : 0 : err = true;
5804 : : }
5805 : : }
5806 : :
5807 : : /* Verify that body of basic block BB is free of control flow. */
5808 : : bool seen_nondebug_stmt = false;
5809 : 13933803034 : for (; !gsi_end_p (gsi); gsi_next (&gsi))
5810 : : {
5811 : 12067545773 : gimple *stmt = gsi_stmt (gsi);
5812 : :
5813 : : /* Do NOT disregard debug stmts after found_ctrl_stmt. */
5814 : 12067545773 : if (found_ctrl_stmt)
5815 : : {
5816 : 0 : error ("control flow in the middle of basic block %d",
5817 : : bb->index);
5818 : 0 : err = true;
5819 : : }
5820 : :
5821 : 12067545773 : if (stmt_ends_bb_p (stmt))
5822 : 1250280965 : found_ctrl_stmt = true;
5823 : :
5824 : 12067545773 : if (glabel *label_stmt = dyn_cast <glabel *> (stmt))
5825 : : {
5826 : 0 : error ("label %qD in the middle of basic block %d",
5827 : : gimple_label_label (label_stmt), bb->index);
5828 : 0 : err = true;
5829 : : }
5830 : :
5831 : : /* Check that no statements appear between a returns_twice call
5832 : : and its associated abnormal edge. */
5833 : 12067545773 : if (gimple_code (stmt) == GIMPLE_CALL
5834 : 12067545773 : && gimple_call_flags (stmt) & ECF_RETURNS_TWICE)
5835 : : {
5836 : 133130 : bool misplaced = false;
5837 : : /* TM is an exception: it points abnormal edges just after the
5838 : : call that starts a transaction, i.e. it must end the BB. */
5839 : 133130 : if (gimple_call_builtin_p (stmt, BUILT_IN_TM_START))
5840 : : {
5841 : 3788 : if (single_succ_p (bb)
5842 : 2989 : && bb_has_abnormal_pred (single_succ (bb))
5843 : 6130 : && !gsi_one_nondebug_before_end_p (gsi))
5844 : : {
5845 : 0 : error ("returns_twice call is not last in basic block "
5846 : : "%d", bb->index);
5847 : 0 : misplaced = true;
5848 : : }
5849 : : }
5850 : : else
5851 : : {
5852 : 129342 : if (seen_nondebug_stmt && bb_has_abnormal_pred (bb))
5853 : : {
5854 : 0 : error ("returns_twice call is not first in basic block "
5855 : : "%d", bb->index);
5856 : 0 : misplaced = true;
5857 : : }
5858 : : }
5859 : 0 : if (misplaced)
5860 : : {
5861 : 0 : print_gimple_stmt (stderr, stmt, 0, TDF_SLIM);
5862 : 0 : err = true;
5863 : : }
5864 : : }
5865 : 12067545773 : if (!is_gimple_debug (stmt))
5866 : 6117649426 : seen_nondebug_stmt = true;
5867 : : }
5868 : :
5869 : 1866257261 : gsi = gsi_last_nondebug_bb (bb);
5870 : 1866257261 : if (gsi_end_p (gsi))
5871 : 129571410 : continue;
5872 : :
5873 : 1736685851 : stmt = gsi_stmt (gsi);
5874 : :
5875 : 1736685851 : if (gimple_code (stmt) == GIMPLE_LABEL)
5876 : 43087700 : continue;
5877 : :
5878 : 1693598151 : if (verify_eh_edges (stmt))
5879 : 0 : err = true;
5880 : :
5881 : 1693598151 : if (is_ctrl_stmt (stmt))
5882 : : {
5883 : 2614946913 : FOR_EACH_EDGE (e, ei, bb->succs)
5884 : 1657580630 : if (e->flags & EDGE_FALLTHRU)
5885 : : {
5886 : 0 : error ("fallthru edge after a control statement in bb %d",
5887 : : bb->index);
5888 : 0 : err = true;
5889 : : }
5890 : : }
5891 : :
5892 : 1693598151 : if (gimple_code (stmt) != GIMPLE_COND)
5893 : : {
5894 : : /* Verify that there are no edges with EDGE_TRUE/FALSE_FLAG set
5895 : : after anything else but if statement. */
5896 : 2039925296 : FOR_EACH_EDGE (e, ei, bb->succs)
5897 : 1042945149 : if (e->flags & (EDGE_TRUE_VALUE | EDGE_FALSE_VALUE))
5898 : : {
5899 : 0 : error ("true/false edge after a non-GIMPLE_COND in bb %d",
5900 : : bb->index);
5901 : 0 : err = true;
5902 : : }
5903 : : }
5904 : :
5905 : 1693598151 : switch (gimple_code (stmt))
5906 : : {
5907 : 696618004 : case GIMPLE_COND:
5908 : 696618004 : {
5909 : 696618004 : edge true_edge;
5910 : 696618004 : edge false_edge;
5911 : :
5912 : 696618004 : extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
5913 : :
5914 : 696618004 : if (!true_edge
5915 : 696618004 : || !false_edge
5916 : 696618004 : || !(true_edge->flags & EDGE_TRUE_VALUE)
5917 : 696618004 : || !(false_edge->flags & EDGE_FALSE_VALUE)
5918 : 696618004 : || (true_edge->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL))
5919 : 696618004 : || (false_edge->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL))
5920 : 1393236008 : || EDGE_COUNT (bb->succs) >= 3)
5921 : : {
5922 : 0 : error ("wrong outgoing edge flags at end of bb %d",
5923 : : bb->index);
5924 : 0 : err = true;
5925 : : }
5926 : : }
5927 : 696618004 : break;
5928 : :
5929 : 49521 : case GIMPLE_GOTO:
5930 : 49521 : if (simple_goto_p (stmt))
5931 : : {
5932 : 0 : error ("explicit goto at end of bb %d", bb->index);
5933 : 0 : err = true;
5934 : : }
5935 : : else
5936 : : {
5937 : : /* FIXME. We should double check that the labels in the
5938 : : destination blocks have their address taken. */
5939 : 178961 : FOR_EACH_EDGE (e, ei, bb->succs)
5940 : 129440 : if ((e->flags & (EDGE_FALLTHRU | EDGE_TRUE_VALUE
5941 : : | EDGE_FALSE_VALUE))
5942 : 129440 : || !(e->flags & EDGE_ABNORMAL))
5943 : : {
5944 : 0 : error ("wrong outgoing edge flags at end of bb %d",
5945 : : bb->index);
5946 : 0 : err = true;
5947 : : }
5948 : : }
5949 : : break;
5950 : :
5951 : 361487454 : case GIMPLE_CALL:
5952 : 361487454 : if (!gimple_call_builtin_p (stmt, BUILT_IN_RETURN))
5953 : : break;
5954 : : /* fallthru */
5955 : 215118793 : case GIMPLE_RETURN:
5956 : 215118793 : if (!single_succ_p (bb)
5957 : 215118793 : || (single_succ_edge (bb)->flags
5958 : 215118793 : & (EDGE_FALLTHRU | EDGE_ABNORMAL
5959 : : | EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)))
5960 : : {
5961 : 0 : error ("wrong outgoing edge flags at end of bb %d", bb->index);
5962 : 0 : err = true;
5963 : : }
5964 : 215118793 : if (single_succ (bb) != EXIT_BLOCK_PTR_FOR_FN (cfun))
5965 : : {
5966 : 0 : error ("return edge does not point to exit in bb %d",
5967 : : bb->index);
5968 : 0 : err = true;
5969 : : }
5970 : : break;
5971 : :
5972 : 3954313 : case GIMPLE_SWITCH:
5973 : 3954313 : {
5974 : 3954313 : gswitch *switch_stmt = as_a <gswitch *> (stmt);
5975 : 3954313 : tree prev;
5976 : 3954313 : edge e;
5977 : 3954313 : size_t i, n;
5978 : :
5979 : 3954313 : n = gimple_switch_num_labels (switch_stmt);
5980 : :
5981 : : /* Mark all the destination basic blocks. */
5982 : 32649037 : for (i = 0; i < n; ++i)
5983 : : {
5984 : 28694724 : basic_block label_bb = gimple_switch_label_bb (cfun, switch_stmt, i);
5985 : 28694724 : gcc_assert (!label_bb->aux || label_bb->aux == (void *)1);
5986 : 28694724 : label_bb->aux = (void *)1;
5987 : : }
5988 : :
5989 : : /* Verify that the case labels are sorted. */
5990 : 3954313 : prev = gimple_switch_label (switch_stmt, 0);
5991 : 28694724 : for (i = 1; i < n; ++i)
5992 : : {
5993 : 24740411 : tree c = gimple_switch_label (switch_stmt, i);
5994 : 24740411 : if (!CASE_LOW (c))
5995 : : {
5996 : 0 : error ("found default case not at the start of "
5997 : : "case vector");
5998 : 0 : err = true;
5999 : 0 : continue;
6000 : : }
6001 : 24740411 : if (CASE_LOW (prev)
6002 : 24740411 : && !tree_int_cst_lt (CASE_LOW (prev), CASE_LOW (c)))
6003 : : {
6004 : 0 : error ("case labels not sorted: ");
6005 : 0 : print_generic_expr (stderr, prev);
6006 : 0 : fprintf (stderr," is greater than ");
6007 : 0 : print_generic_expr (stderr, c);
6008 : 0 : fprintf (stderr," but comes before it.\n");
6009 : 0 : err = true;
6010 : : }
6011 : : prev = c;
6012 : : }
6013 : : /* VRP will remove the default case if it can prove it will
6014 : : never be executed. So do not verify there always exists
6015 : : a default case here. */
6016 : :
6017 : 28868509 : FOR_EACH_EDGE (e, ei, bb->succs)
6018 : : {
6019 : 24914196 : if (!e->dest->aux)
6020 : : {
6021 : 0 : error ("extra outgoing edge %d->%d",
6022 : : bb->index, e->dest->index);
6023 : 0 : err = true;
6024 : : }
6025 : :
6026 : 24914196 : e->dest->aux = (void *)2;
6027 : 24914196 : if ((e->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL
6028 : : | EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)))
6029 : : {
6030 : 0 : error ("wrong outgoing edge flags at end of bb %d",
6031 : : bb->index);
6032 : 0 : err = true;
6033 : : }
6034 : : }
6035 : :
6036 : : /* Check that we have all of them. */
6037 : 32649037 : for (i = 0; i < n; ++i)
6038 : : {
6039 : 28694724 : basic_block label_bb = gimple_switch_label_bb (cfun,
6040 : : switch_stmt, i);
6041 : :
6042 : 28694724 : if (label_bb->aux != (void *)2)
6043 : : {
6044 : 0 : error ("missing edge %i->%i", bb->index, label_bb->index);
6045 : 0 : err = true;
6046 : : }
6047 : : }
6048 : :
6049 : 28868509 : FOR_EACH_EDGE (e, ei, bb->succs)
6050 : 24914196 : e->dest->aux = (void *)0;
6051 : : }
6052 : 3954313 : break;
6053 : :
6054 : 1823433 : case GIMPLE_EH_DISPATCH:
6055 : 1823433 : if (verify_eh_dispatch_edge (as_a <geh_dispatch *> (stmt)))
6056 : 0 : err = true;
6057 : : break;
6058 : :
6059 : : default:
6060 : : break;
6061 : : }
6062 : : }
6063 : :
6064 : 218964749 : if (dom_info_state (CDI_DOMINATORS) >= DOM_NO_FAST_QUERY)
6065 : 178975998 : verify_dominators (CDI_DOMINATORS);
6066 : :
6067 : 218964749 : return err;
6068 : : }
6069 : :
6070 : : #if __GNUC__ >= 10
6071 : : # pragma GCC diagnostic pop
6072 : : #endif
6073 : :
6074 : : /* Updates phi nodes after creating a forwarder block joined
6075 : : by edge FALLTHRU. */
6076 : :
6077 : : static void
6078 : 208428 : gimple_make_forwarder_block (edge fallthru)
6079 : : {
6080 : 208428 : edge e;
6081 : 208428 : edge_iterator ei;
6082 : 208428 : basic_block dummy, bb;
6083 : 208428 : tree var;
6084 : 208428 : gphi_iterator gsi;
6085 : 208428 : bool forward_location_p;
6086 : :
6087 : 208428 : dummy = fallthru->src;
6088 : 208428 : bb = fallthru->dest;
6089 : :
6090 : 208428 : if (single_pred_p (bb))
6091 : 149 : return;
6092 : :
6093 : : /* We can forward location info if we have only one predecessor. */
6094 : 208279 : forward_location_p = single_pred_p (dummy);
6095 : :
6096 : : /* If we redirected a branch we must create new PHI nodes at the
6097 : : start of BB. */
6098 : 724838 : for (gsi = gsi_start_phis (dummy); !gsi_end_p (gsi); gsi_next (&gsi))
6099 : : {
6100 : 516559 : gphi *phi, *new_phi;
6101 : :
6102 : 516559 : phi = gsi.phi ();
6103 : 516559 : var = gimple_phi_result (phi);
6104 : 516559 : new_phi = create_phi_node (var, bb);
6105 : 516559 : gimple_phi_set_result (phi, copy_ssa_name (var, phi));
6106 : 516613 : add_phi_arg (new_phi, gimple_phi_result (phi), fallthru,
6107 : : forward_location_p
6108 : 54 : ? gimple_phi_arg_location (phi, 0) : UNKNOWN_LOCATION);
6109 : : }
6110 : :
6111 : : /* Add the arguments we have stored on edges. */
6112 : 633518 : FOR_EACH_EDGE (e, ei, bb->preds)
6113 : : {
6114 : 425239 : if (e == fallthru)
6115 : 208279 : continue;
6116 : :
6117 : 216960 : flush_pending_stmts (e);
6118 : : }
6119 : : }
6120 : :
6121 : :
6122 : : /* Return a non-special label in the head of basic block BLOCK.
6123 : : Create one if it doesn't exist. */
6124 : :
6125 : : tree
6126 : 5930803 : gimple_block_label (basic_block bb)
6127 : : {
6128 : 5930803 : gimple_stmt_iterator i, s = gsi_start_bb (bb);
6129 : 5930803 : bool first = true;
6130 : 5930803 : tree label;
6131 : 5930803 : glabel *stmt;
6132 : :
6133 : 5930803 : for (i = s; !gsi_end_p (i); first = false, gsi_next (&i))
6134 : : {
6135 : 4734516 : stmt = dyn_cast <glabel *> (gsi_stmt (i));
6136 : 4646068 : if (!stmt)
6137 : : break;
6138 : 4646068 : label = gimple_label_label (stmt);
6139 : 4646068 : if (!DECL_NONLOCAL (label))
6140 : : {
6141 : 4646068 : if (!first)
6142 : 0 : gsi_move_before (&i, &s);
6143 : 4646068 : return label;
6144 : : }
6145 : : }
6146 : :
6147 : 1284735 : label = create_artificial_label (UNKNOWN_LOCATION);
6148 : 1284735 : stmt = gimple_build_label (label);
6149 : 1284735 : gsi_insert_before (&s, stmt, GSI_NEW_STMT);
6150 : 1284735 : return label;
6151 : : }
6152 : :
6153 : :
6154 : : /* Attempt to perform edge redirection by replacing a possibly complex
6155 : : jump instruction by a goto or by removing the jump completely.
6156 : : This can apply only if all edges now point to the same block. The
6157 : : parameters and return values are equivalent to
6158 : : redirect_edge_and_branch. */
6159 : :
6160 : : static edge
6161 : 56828385 : gimple_try_redirect_by_replacing_jump (edge e, basic_block target)
6162 : : {
6163 : 56828385 : basic_block src = e->src;
6164 : 56828385 : gimple_stmt_iterator i;
6165 : 56828385 : gimple *stmt;
6166 : :
6167 : : /* We can replace or remove a complex jump only when we have exactly
6168 : : two edges. */
6169 : 113342941 : if (EDGE_COUNT (src->succs) != 2
6170 : : /* Verify that all targets will be TARGET. Specifically, the
6171 : : edge that is not E must also go to TARGET. */
6172 : 56828385 : || EDGE_SUCC (src, EDGE_SUCC (src, 0) == e)->dest != target)
6173 : : return NULL;
6174 : :
6175 : 313859 : i = gsi_last_bb (src);
6176 : 313859 : if (gsi_end_p (i))
6177 : : return NULL;
6178 : :
6179 : 313859 : stmt = gsi_stmt (i);
6180 : :
6181 : 313859 : if (gimple_code (stmt) == GIMPLE_COND || gimple_code (stmt) == GIMPLE_SWITCH)
6182 : : {
6183 : 313829 : gsi_remove (&i, true);
6184 : 313829 : e = ssa_redirect_edge (e, target);
6185 : 313829 : e->flags = EDGE_FALLTHRU;
6186 : 313829 : return e;
6187 : : }
6188 : :
6189 : : return NULL;
6190 : : }
6191 : :
6192 : :
6193 : : /* Redirect E to DEST. Return NULL on failure. Otherwise, return the
6194 : : edge representing the redirected branch. */
6195 : :
6196 : : static edge
6197 : 58117192 : gimple_redirect_edge_and_branch (edge e, basic_block dest)
6198 : : {
6199 : 58117192 : basic_block bb = e->src;
6200 : 58117192 : gimple_stmt_iterator gsi;
6201 : 58117192 : edge ret;
6202 : 58117192 : gimple *stmt;
6203 : :
6204 : 58117192 : if (e->flags & EDGE_ABNORMAL)
6205 : : return NULL;
6206 : :
6207 : 58117192 : if (e->dest == dest)
6208 : : return NULL;
6209 : :
6210 : 58093204 : if (e->flags & EDGE_EH)
6211 : 1060322 : return redirect_eh_edge (e, dest);
6212 : :
6213 : 57032882 : if (e->src != ENTRY_BLOCK_PTR_FOR_FN (cfun))
6214 : : {
6215 : 56828385 : ret = gimple_try_redirect_by_replacing_jump (e, dest);
6216 : 56828385 : if (ret)
6217 : : return ret;
6218 : : }
6219 : :
6220 : 56719053 : gsi = gsi_last_nondebug_bb (bb);
6221 : 56719053 : stmt = gsi_end_p (gsi) ? NULL : gsi_stmt (gsi);
6222 : :
6223 : 56719053 : switch (stmt ? gimple_code (stmt) : GIMPLE_ERROR_MARK)
6224 : : {
6225 : : case GIMPLE_COND:
6226 : : /* For COND_EXPR, we only need to redirect the edge. */
6227 : : break;
6228 : :
6229 : 0 : case GIMPLE_GOTO:
6230 : : /* No non-abnormal edges should lead from a non-simple goto, and
6231 : : simple ones should be represented implicitly. */
6232 : 0 : gcc_unreachable ();
6233 : :
6234 : 377572 : case GIMPLE_SWITCH:
6235 : 377572 : {
6236 : 377572 : gswitch *switch_stmt = as_a <gswitch *> (stmt);
6237 : 377572 : tree label = gimple_block_label (dest);
6238 : 377572 : tree cases = get_cases_for_edge (e, switch_stmt);
6239 : :
6240 : : /* If we have a list of cases associated with E, then use it
6241 : : as it's a lot faster than walking the entire case vector. */
6242 : 377572 : if (cases)
6243 : : {
6244 : 331688 : edge e2 = find_edge (e->src, dest);
6245 : 331688 : tree last, first;
6246 : :
6247 : 331688 : first = cases;
6248 : 1062200 : while (cases)
6249 : : {
6250 : 398824 : last = cases;
6251 : 398824 : CASE_LABEL (cases) = label;
6252 : 398824 : cases = CASE_CHAIN (cases);
6253 : : }
6254 : :
6255 : : /* If there was already an edge in the CFG, then we need
6256 : : to move all the cases associated with E to E2. */
6257 : 331688 : if (e2)
6258 : : {
6259 : 8907 : tree cases2 = get_cases_for_edge (e2, switch_stmt);
6260 : :
6261 : 8907 : CASE_CHAIN (last) = CASE_CHAIN (cases2);
6262 : 8907 : CASE_CHAIN (cases2) = first;
6263 : : }
6264 : 331688 : bitmap_set_bit (touched_switch_bbs, gimple_bb (stmt)->index);
6265 : : }
6266 : : else
6267 : : {
6268 : 45884 : size_t i, n = gimple_switch_num_labels (switch_stmt);
6269 : :
6270 : 4579753 : for (i = 0; i < n; i++)
6271 : : {
6272 : 4533869 : tree elt = gimple_switch_label (switch_stmt, i);
6273 : 4533869 : if (label_to_block (cfun, CASE_LABEL (elt)) == e->dest)
6274 : 53081 : CASE_LABEL (elt) = label;
6275 : : }
6276 : : }
6277 : : }
6278 : : break;
6279 : :
6280 : 8398 : case GIMPLE_ASM:
6281 : 8398 : {
6282 : 8398 : gasm *asm_stmt = as_a <gasm *> (stmt);
6283 : 8398 : int i, n = gimple_asm_nlabels (asm_stmt);
6284 : 8398 : tree label = NULL;
6285 : :
6286 : 11786 : for (i = 0; i < n; ++i)
6287 : : {
6288 : 3388 : tree cons = gimple_asm_label_op (asm_stmt, i);
6289 : 3388 : if (label_to_block (cfun, TREE_VALUE (cons)) == e->dest)
6290 : : {
6291 : 1654 : if (!label)
6292 : 1628 : label = gimple_block_label (dest);
6293 : 1654 : TREE_VALUE (cons) = label;
6294 : : }
6295 : : }
6296 : :
6297 : : /* If we didn't find any label matching the former edge in the
6298 : : asm labels, we must be redirecting the fallthrough
6299 : : edge. */
6300 : 8398 : gcc_assert (label || (e->flags & EDGE_FALLTHRU));
6301 : : }
6302 : : break;
6303 : :
6304 : 228 : case GIMPLE_RETURN:
6305 : 228 : gsi_remove (&gsi, true);
6306 : 228 : e->flags |= EDGE_FALLTHRU;
6307 : 228 : break;
6308 : :
6309 : : case GIMPLE_OMP_RETURN:
6310 : : case GIMPLE_OMP_CONTINUE:
6311 : : case GIMPLE_OMP_SECTIONS_SWITCH:
6312 : : case GIMPLE_OMP_FOR:
6313 : : /* The edges from OMP constructs can be simply redirected. */
6314 : : break;
6315 : :
6316 : 0 : case GIMPLE_EH_DISPATCH:
6317 : 0 : if (!(e->flags & EDGE_FALLTHRU))
6318 : 0 : redirect_eh_dispatch_edge (as_a <geh_dispatch *> (stmt), e, dest);
6319 : : break;
6320 : :
6321 : 345 : case GIMPLE_TRANSACTION:
6322 : 345 : if (e->flags & EDGE_TM_ABORT)
6323 : 81 : gimple_transaction_set_label_over (as_a <gtransaction *> (stmt),
6324 : : gimple_block_label (dest));
6325 : 264 : else if (e->flags & EDGE_TM_UNINSTRUMENTED)
6326 : 129 : gimple_transaction_set_label_uninst (as_a <gtransaction *> (stmt),
6327 : : gimple_block_label (dest));
6328 : : else
6329 : 135 : gimple_transaction_set_label_norm (as_a <gtransaction *> (stmt),
6330 : : gimple_block_label (dest));
6331 : : break;
6332 : :
6333 : 8111355 : default:
6334 : : /* Otherwise it must be a fallthru edge, and we don't need to
6335 : : do anything besides redirecting it. */
6336 : 8111355 : gcc_assert (e->flags & EDGE_FALLTHRU);
6337 : : break;
6338 : : }
6339 : :
6340 : : /* Update/insert PHI nodes as necessary. */
6341 : :
6342 : : /* Now update the edges in the CFG. */
6343 : 56719053 : e = ssa_redirect_edge (e, dest);
6344 : :
6345 : 56719053 : return e;
6346 : : }
6347 : :
6348 : : /* Returns true if it is possible to remove edge E by redirecting
6349 : : it to the destination of the other edge from E->src. */
6350 : :
6351 : : static bool
6352 : 244283 : gimple_can_remove_branch_p (const_edge e)
6353 : : {
6354 : 244283 : if (e->flags & (EDGE_ABNORMAL | EDGE_EH))
6355 : 0 : return false;
6356 : :
6357 : : return true;
6358 : : }
6359 : :
6360 : : /* Simple wrapper, as we can always redirect fallthru edges. */
6361 : :
6362 : : static basic_block
6363 : 3048652 : gimple_redirect_edge_and_branch_force (edge e, basic_block dest)
6364 : : {
6365 : 3048652 : e = gimple_redirect_edge_and_branch (e, dest);
6366 : 3048652 : gcc_assert (e);
6367 : :
6368 : 3048652 : return NULL;
6369 : : }
6370 : :
6371 : :
6372 : : /* Splits basic block BB after statement STMT (but at least after the
6373 : : labels). If STMT is NULL, BB is split just after the labels. */
6374 : :
6375 : : static basic_block
6376 : 4889492 : gimple_split_block (basic_block bb, void *stmt)
6377 : : {
6378 : 4889492 : gimple_stmt_iterator gsi;
6379 : 4889492 : gimple_stmt_iterator gsi_tgt;
6380 : 4889492 : gimple_seq list;
6381 : 4889492 : basic_block new_bb;
6382 : 4889492 : edge e;
6383 : 4889492 : edge_iterator ei;
6384 : :
6385 : 4889492 : new_bb = create_empty_bb (bb);
6386 : :
6387 : : /* Redirect the outgoing edges. */
6388 : 4889492 : new_bb->succs = bb->succs;
6389 : 4889492 : bb->succs = NULL;
6390 : 11368797 : FOR_EACH_EDGE (e, ei, new_bb->succs)
6391 : 6479305 : e->src = new_bb;
6392 : :
6393 : : /* Get a stmt iterator pointing to the first stmt to move. */
6394 : 4889492 : if (!stmt || gimple_code ((gimple *) stmt) == GIMPLE_LABEL)
6395 : 1383597 : gsi = gsi_after_labels (bb);
6396 : : else
6397 : : {
6398 : 3505895 : gsi = gsi_for_stmt ((gimple *) stmt);
6399 : 3505895 : gsi_next (&gsi);
6400 : : }
6401 : :
6402 : : /* Move everything from GSI to the new basic block. */
6403 : 4889492 : if (gsi_end_p (gsi))
6404 : : return new_bb;
6405 : :
6406 : : /* Split the statement list - avoid re-creating new containers as this
6407 : : brings ugly quadratic memory consumption in the inliner.
6408 : : (We are still quadratic since we need to update stmt BB pointers,
6409 : : sadly.) */
6410 : 4490934 : gsi_split_seq_before (&gsi, &list);
6411 : 4490934 : set_bb_seq (new_bb, list);
6412 : 4490934 : for (gsi_tgt = gsi_start (list);
6413 : 25799925 : !gsi_end_p (gsi_tgt); gsi_next (&gsi_tgt))
6414 : 21308991 : gimple_set_bb (gsi_stmt (gsi_tgt), new_bb);
6415 : :
6416 : : return new_bb;
6417 : : }
6418 : :
6419 : :
6420 : : /* Moves basic block BB after block AFTER. */
6421 : :
6422 : : static bool
6423 : 18731015 : gimple_move_block_after (basic_block bb, basic_block after)
6424 : : {
6425 : 18731015 : if (bb->prev_bb == after)
6426 : : return true;
6427 : :
6428 : 4857686 : unlink_block (bb);
6429 : 4857686 : link_block (bb, after);
6430 : :
6431 : 4857686 : return true;
6432 : : }
6433 : :
6434 : :
6435 : : /* Return TRUE if block BB has no executable statements, otherwise return
6436 : : FALSE. */
6437 : :
6438 : : static bool
6439 : 12470530 : gimple_empty_block_p (basic_block bb)
6440 : : {
6441 : : /* BB must have no executable statements. */
6442 : 12470530 : gimple_stmt_iterator gsi = gsi_after_labels (bb);
6443 : 12470530 : if (phi_nodes (bb))
6444 : : return false;
6445 : 15091126 : while (!gsi_end_p (gsi))
6446 : : {
6447 : 6322331 : gimple *stmt = gsi_stmt (gsi);
6448 : 6322331 : if (is_gimple_debug (stmt))
6449 : : ;
6450 : 2829946 : else if (gimple_code (stmt) == GIMPLE_NOP
6451 : 2829946 : || gimple_code (stmt) == GIMPLE_PREDICT)
6452 : : ;
6453 : : else
6454 : : return false;
6455 : 3548414 : gsi_next (&gsi);
6456 : : }
6457 : : return true;
6458 : : }
6459 : :
6460 : :
6461 : : /* Split a basic block if it ends with a conditional branch and if the
6462 : : other part of the block is not empty. */
6463 : :
6464 : : static basic_block
6465 : 567 : gimple_split_block_before_cond_jump (basic_block bb)
6466 : : {
6467 : 567 : gimple *last, *split_point;
6468 : 567 : gimple_stmt_iterator gsi = gsi_last_nondebug_bb (bb);
6469 : 567 : if (gsi_end_p (gsi))
6470 : : return NULL;
6471 : 567 : last = gsi_stmt (gsi);
6472 : 567 : if (gimple_code (last) != GIMPLE_COND
6473 : 567 : && gimple_code (last) != GIMPLE_SWITCH)
6474 : : return NULL;
6475 : 567 : gsi_prev (&gsi);
6476 : 567 : split_point = gsi_stmt (gsi);
6477 : 567 : return split_block (bb, split_point)->dest;
6478 : : }
6479 : :
6480 : :
6481 : : /* Return true if basic_block can be duplicated. */
6482 : :
6483 : : static bool
6484 : 7994646 : gimple_can_duplicate_bb_p (const_basic_block bb)
6485 : : {
6486 : 7994646 : gimple *last = last_nondebug_stmt (CONST_CAST_BB (bb));
6487 : :
6488 : : /* Do checks that can only fail for the last stmt, to minimize the work in the
6489 : : stmt loop. */
6490 : 7994646 : if (last) {
6491 : : /* A transaction is a single entry multiple exit region. It
6492 : : must be duplicated in its entirety or not at all. */
6493 : 6778536 : if (gimple_code (last) == GIMPLE_TRANSACTION)
6494 : : return false;
6495 : :
6496 : : /* An IFN_UNIQUE call must be duplicated as part of its group,
6497 : : or not at all. */
6498 : 6778535 : if (is_gimple_call (last)
6499 : 60522 : && gimple_call_internal_p (last)
6500 : 6778805 : && gimple_call_internal_unique_p (last))
6501 : : return false;
6502 : :
6503 : : /* Prohibit duplication of returns_twice calls, otherwise associated
6504 : : abnormal edges also need to be duplicated properly.
6505 : : return_twice functions will always be the last statement. */
6506 : 6778535 : if (is_gimple_call (last)
6507 : 6778535 : && (gimple_call_flags (last) & ECF_RETURNS_TWICE))
6508 : : return false;
6509 : : }
6510 : :
6511 : 15989188 : for (gimple_stmt_iterator gsi = gsi_start_bb (CONST_CAST_BB (bb));
6512 : 49955140 : !gsi_end_p (gsi); gsi_next (&gsi))
6513 : : {
6514 : 41960546 : gimple *g = gsi_stmt (gsi);
6515 : :
6516 : : /* An IFN_GOMP_SIMT_ENTER_ALLOC/IFN_GOMP_SIMT_EXIT call must be
6517 : : duplicated as part of its group, or not at all.
6518 : : The IFN_GOMP_SIMT_VOTE_ANY and IFN_GOMP_SIMT_XCHG_* are part of such a
6519 : : group, so the same holds there. */
6520 : 41960546 : if (is_gimple_call (g)
6521 : 41960546 : && (gimple_call_internal_p (g, IFN_GOMP_SIMT_ENTER_ALLOC)
6522 : 432882 : || gimple_call_internal_p (g, IFN_GOMP_SIMT_EXIT)
6523 : 432882 : || gimple_call_internal_p (g, IFN_GOMP_SIMT_VOTE_ANY)
6524 : 432882 : || gimple_call_internal_p (g, IFN_GOMP_SIMT_XCHG_BFLY)
6525 : 432882 : || gimple_call_internal_p (g, IFN_GOMP_SIMT_XCHG_IDX)))
6526 : 52 : return false;
6527 : : }
6528 : :
6529 : : return true;
6530 : : }
6531 : :
6532 : : /* Create a duplicate of the basic block BB. NOTE: This does not
6533 : : preserve SSA form. */
6534 : :
6535 : : static basic_block
6536 : 3309379 : gimple_duplicate_bb (basic_block bb, copy_bb_data *id)
6537 : : {
6538 : 3309379 : basic_block new_bb;
6539 : 3309379 : gimple_stmt_iterator gsi_tgt;
6540 : :
6541 : 3309379 : new_bb = create_empty_bb (EXIT_BLOCK_PTR_FOR_FN (cfun)->prev_bb);
6542 : :
6543 : : /* Copy the PHI nodes. We ignore PHI node arguments here because
6544 : : the incoming edges have not been setup yet. */
6545 : 3309379 : for (gphi_iterator gpi = gsi_start_phis (bb);
6546 : 7817547 : !gsi_end_p (gpi);
6547 : 4508168 : gsi_next (&gpi))
6548 : : {
6549 : 4508168 : gphi *phi, *copy;
6550 : 4508168 : phi = gpi.phi ();
6551 : 4508168 : copy = create_phi_node (NULL_TREE, new_bb);
6552 : 4508168 : create_new_def_for (gimple_phi_result (phi), copy,
6553 : : gimple_phi_result_ptr (copy));
6554 : 4508168 : gimple_set_uid (copy, gimple_uid (phi));
6555 : : }
6556 : :
6557 : 3309379 : gsi_tgt = gsi_start_bb (new_bb);
6558 : 6618758 : for (gimple_stmt_iterator gsi = gsi_start_bb (bb);
6559 : 19558466 : !gsi_end_p (gsi);
6560 : 16249087 : gsi_next (&gsi))
6561 : : {
6562 : 16249087 : def_operand_p def_p;
6563 : 16249087 : ssa_op_iter op_iter;
6564 : 16249087 : tree lhs;
6565 : 16249087 : gimple *stmt, *copy;
6566 : :
6567 : 16249087 : stmt = gsi_stmt (gsi);
6568 : 16249087 : if (gimple_code (stmt) == GIMPLE_LABEL)
6569 : 60212 : continue;
6570 : :
6571 : : /* Don't duplicate label debug stmts. */
6572 : 16190319 : if (gimple_debug_bind_p (stmt)
6573 : 9084865 : && TREE_CODE (gimple_debug_bind_get_var (stmt))
6574 : : == LABEL_DECL)
6575 : 1444 : continue;
6576 : :
6577 : : /* Create a new copy of STMT and duplicate STMT's virtual
6578 : : operands. */
6579 : 16188875 : copy = gimple_copy (stmt);
6580 : 16188875 : gsi_insert_after (&gsi_tgt, copy, GSI_NEW_STMT);
6581 : :
6582 : 16188875 : maybe_duplicate_eh_stmt (copy, stmt);
6583 : 16188875 : gimple_duplicate_stmt_histograms (cfun, copy, cfun, stmt);
6584 : :
6585 : : /* When copying around a stmt writing into a local non-user
6586 : : aggregate, make sure it won't share stack slot with other
6587 : : vars. */
6588 : 16188875 : lhs = gimple_get_lhs (stmt);
6589 : 16188875 : if (lhs && TREE_CODE (lhs) != SSA_NAME)
6590 : : {
6591 : 680277 : tree base = get_base_address (lhs);
6592 : 680277 : if (base
6593 : 680277 : && (VAR_P (base) || TREE_CODE (base) == RESULT_DECL)
6594 : 451645 : && DECL_IGNORED_P (base)
6595 : 173746 : && !TREE_STATIC (base)
6596 : 172544 : && !DECL_EXTERNAL (base)
6597 : 852815 : && (!VAR_P (base) || !DECL_HAS_VALUE_EXPR_P (base)))
6598 : 172538 : DECL_NONSHAREABLE (base) = 1;
6599 : : }
6600 : :
6601 : : /* If requested remap dependence info of cliques brought in
6602 : : via inlining. */
6603 : 16188875 : if (id)
6604 : 44397453 : for (unsigned i = 0; i < gimple_num_ops (copy); ++i)
6605 : : {
6606 : 31003316 : tree op = gimple_op (copy, i);
6607 : 31003316 : if (!op)
6608 : 7679824 : continue;
6609 : 23323492 : if (TREE_CODE (op) == ADDR_EXPR
6610 : 22530326 : || TREE_CODE (op) == WITH_SIZE_EXPR)
6611 : 793166 : op = TREE_OPERAND (op, 0);
6612 : 24934879 : while (handled_component_p (op))
6613 : 1611387 : op = TREE_OPERAND (op, 0);
6614 : 23323492 : if ((TREE_CODE (op) == MEM_REF
6615 : 23323492 : || TREE_CODE (op) == TARGET_MEM_REF)
6616 : 860981 : && MR_DEPENDENCE_CLIQUE (op) > 1
6617 : 23374759 : && MR_DEPENDENCE_CLIQUE (op) != bb->loop_father->owned_clique)
6618 : : {
6619 : 25204 : if (!id->dependence_map)
6620 : 10648 : id->dependence_map = new hash_map<dependence_hash,
6621 : : unsigned short>;
6622 : 25204 : bool existed;
6623 : 25204 : unsigned short &newc = id->dependence_map->get_or_insert
6624 : 25204 : (MR_DEPENDENCE_CLIQUE (op), &existed);
6625 : 25204 : if (!existed)
6626 : : {
6627 : 15705 : gcc_assert (MR_DEPENDENCE_CLIQUE (op) <= cfun->last_clique);
6628 : 31410 : newc = get_new_clique (cfun);
6629 : : }
6630 : 25204 : MR_DEPENDENCE_CLIQUE (op) = newc;
6631 : : }
6632 : : }
6633 : :
6634 : : /* Create new names for all the definitions created by COPY and
6635 : : add replacement mappings for each new name. */
6636 : 20669215 : FOR_EACH_SSA_DEF_OPERAND (def_p, copy, op_iter, SSA_OP_ALL_DEFS)
6637 : 4480340 : create_new_def_for (DEF_FROM_PTR (def_p), copy, def_p);
6638 : : }
6639 : :
6640 : 3309379 : return new_bb;
6641 : : }
6642 : :
6643 : : /* Adds phi node arguments for edge E_COPY after basic block duplication. */
6644 : :
6645 : : static void
6646 : 4367968 : add_phi_args_after_copy_edge (edge e_copy)
6647 : : {
6648 : 4367968 : basic_block bb, bb_copy = e_copy->src, dest;
6649 : 4367968 : edge e;
6650 : 4367968 : edge_iterator ei;
6651 : 4367968 : gphi *phi, *phi_copy;
6652 : 4367968 : tree def;
6653 : 4367968 : gphi_iterator psi, psi_copy;
6654 : :
6655 : 4367968 : if (gimple_seq_empty_p (phi_nodes (e_copy->dest)))
6656 : 2759280 : return;
6657 : :
6658 : 1608688 : bb = bb_copy->flags & BB_DUPLICATED ? get_bb_original (bb_copy) : bb_copy;
6659 : :
6660 : 1608688 : if (e_copy->dest->flags & BB_DUPLICATED)
6661 : 670749 : dest = get_bb_original (e_copy->dest);
6662 : : else
6663 : : dest = e_copy->dest;
6664 : :
6665 : 1608688 : e = find_edge (bb, dest);
6666 : 1608688 : if (!e)
6667 : : {
6668 : : /* During loop unrolling the target of the latch edge is copied.
6669 : : In this case we are not looking for edge to dest, but to
6670 : : duplicated block whose original was dest. */
6671 : 959 : FOR_EACH_EDGE (e, ei, bb->succs)
6672 : : {
6673 : 959 : if ((e->dest->flags & BB_DUPLICATED)
6674 : 959 : && get_bb_original (e->dest) == dest)
6675 : : break;
6676 : : }
6677 : :
6678 : 959 : gcc_assert (e != NULL);
6679 : : }
6680 : :
6681 : 1608688 : for (psi = gsi_start_phis (e->dest),
6682 : 1608688 : psi_copy = gsi_start_phis (e_copy->dest);
6683 : 4714384 : !gsi_end_p (psi);
6684 : 3105696 : gsi_next (&psi), gsi_next (&psi_copy))
6685 : : {
6686 : 3105696 : phi = psi.phi ();
6687 : 3105696 : phi_copy = psi_copy.phi ();
6688 : 3105696 : def = PHI_ARG_DEF_FROM_EDGE (phi, e);
6689 : 3105696 : add_phi_arg (phi_copy, def, e_copy,
6690 : : gimple_phi_arg_location_from_edge (phi, e));
6691 : : }
6692 : : }
6693 : :
6694 : :
6695 : : /* Basic block BB_COPY was created by code duplication. Add phi node
6696 : : arguments for edges going out of BB_COPY. The blocks that were
6697 : : duplicated have BB_DUPLICATED set. */
6698 : :
6699 : : void
6700 : 3018552 : add_phi_args_after_copy_bb (basic_block bb_copy)
6701 : : {
6702 : 3018552 : edge e_copy;
6703 : 3018552 : edge_iterator ei;
6704 : :
6705 : 7386496 : FOR_EACH_EDGE (e_copy, ei, bb_copy->succs)
6706 : : {
6707 : 4367944 : add_phi_args_after_copy_edge (e_copy);
6708 : : }
6709 : 3018552 : }
6710 : :
6711 : : /* Blocks in REGION_COPY array of length N_REGION were created by
6712 : : duplication of basic blocks. Add phi node arguments for edges
6713 : : going from these blocks. If E_COPY is not NULL, also add
6714 : : phi node arguments for its destination.*/
6715 : :
6716 : : void
6717 : 1568449 : add_phi_args_after_copy (basic_block *region_copy, unsigned n_region,
6718 : : edge e_copy)
6719 : : {
6720 : 1568449 : unsigned i;
6721 : :
6722 : 3628181 : for (i = 0; i < n_region; i++)
6723 : 2059732 : region_copy[i]->flags |= BB_DUPLICATED;
6724 : :
6725 : 3628181 : for (i = 0; i < n_region; i++)
6726 : 2059732 : add_phi_args_after_copy_bb (region_copy[i]);
6727 : 1568449 : if (e_copy)
6728 : 24 : add_phi_args_after_copy_edge (e_copy);
6729 : :
6730 : 3628181 : for (i = 0; i < n_region; i++)
6731 : 2059732 : region_copy[i]->flags &= ~BB_DUPLICATED;
6732 : 1568449 : }
6733 : :
6734 : : /* Duplicates a REGION (set of N_REGION basic blocks) with just a single
6735 : : important exit edge EXIT. By important we mean that no SSA name defined
6736 : : inside region is live over the other exit edges of the region. All entry
6737 : : edges to the region must go to ENTRY->dest. The edge ENTRY is redirected
6738 : : to the duplicate of the region. Dominance and loop information is
6739 : : updated if UPDATE_DOMINANCE is true, but not the SSA web. If
6740 : : UPDATE_DOMINANCE is false then we assume that the caller will update the
6741 : : dominance information after calling this function. The new basic
6742 : : blocks are stored to REGION_COPY in the same order as they had in REGION,
6743 : : provided that REGION_COPY is not NULL.
6744 : : The function returns false if it is unable to copy the region,
6745 : : true otherwise.
6746 : :
6747 : : It is callers responsibility to update profile. */
6748 : :
6749 : : bool
6750 : 507503 : gimple_duplicate_seme_region (edge entry, edge exit,
6751 : : basic_block *region, unsigned n_region,
6752 : : basic_block *region_copy,
6753 : : bool update_dominance)
6754 : : {
6755 : 507503 : unsigned i;
6756 : 507503 : bool free_region_copy = false, copying_header = false;
6757 : 507503 : class loop *loop = entry->dest->loop_father;
6758 : 507503 : edge exit_copy;
6759 : 507503 : edge redirected;
6760 : :
6761 : 507503 : if (!can_copy_bbs_p (region, n_region))
6762 : : return false;
6763 : :
6764 : : /* Some sanity checking. Note that we do not check for all possible
6765 : : missuses of the functions. I.e. if you ask to copy something weird,
6766 : : it will work, but the state of structures probably will not be
6767 : : correct. */
6768 : 1021159 : for (i = 0; i < n_region; i++)
6769 : : {
6770 : : /* We do not handle subloops, i.e. all the blocks must belong to the
6771 : : same loop. */
6772 : 513656 : if (region[i]->loop_father != loop)
6773 : : return false;
6774 : :
6775 : 513656 : if (region[i] != entry->dest
6776 : 6153 : && region[i] == loop->header)
6777 : : return false;
6778 : : }
6779 : :
6780 : : /* In case the function is used for loop header copying (which is the primary
6781 : : use), ensure that EXIT and its copy will be new latch and entry edges. */
6782 : 507503 : if (loop->header == entry->dest)
6783 : : {
6784 : 507503 : copying_header = true;
6785 : :
6786 : 507503 : if (!dominated_by_p (CDI_DOMINATORS, loop->latch, exit->src))
6787 : : return false;
6788 : :
6789 : 1021159 : for (i = 0; i < n_region; i++)
6790 : 513656 : if (region[i] != exit->src
6791 : 513656 : && dominated_by_p (CDI_DOMINATORS, region[i], exit->src))
6792 : : return false;
6793 : : }
6794 : :
6795 : 507503 : initialize_original_copy_tables ();
6796 : :
6797 : 507503 : if (copying_header)
6798 : 507503 : set_loop_copy (loop, loop_outer (loop));
6799 : : else
6800 : 0 : set_loop_copy (loop, loop);
6801 : :
6802 : 507503 : if (!region_copy)
6803 : : {
6804 : 0 : region_copy = XNEWVEC (basic_block, n_region);
6805 : 0 : free_region_copy = true;
6806 : : }
6807 : :
6808 : : /* Record blocks outside the region that are dominated by something
6809 : : inside. */
6810 : 507503 : auto_vec<basic_block> doms;
6811 : 507503 : if (update_dominance)
6812 : 507503 : doms = get_dominated_by_region (CDI_DOMINATORS, region, n_region);
6813 : :
6814 : 507503 : copy_bbs (region, n_region, region_copy, &exit, 1, &exit_copy, loop,
6815 : : split_edge_bb_loc (entry), update_dominance);
6816 : :
6817 : 507503 : if (copying_header)
6818 : : {
6819 : 507503 : loop->header = exit->dest;
6820 : 507503 : loop->latch = exit->src;
6821 : : }
6822 : :
6823 : : /* Redirect the entry and add the phi node arguments. */
6824 : 507503 : redirected = redirect_edge_and_branch (entry, get_bb_copy (entry->dest));
6825 : 507503 : gcc_assert (redirected != NULL);
6826 : 507503 : flush_pending_stmts (entry);
6827 : :
6828 : : /* Concerning updating of dominators: We must recount dominators
6829 : : for entry block and its copy. Anything that is outside of the
6830 : : region, but was dominated by something inside needs recounting as
6831 : : well. */
6832 : 507503 : if (update_dominance)
6833 : : {
6834 : 507503 : set_immediate_dominator (CDI_DOMINATORS, entry->dest, entry->src);
6835 : 507503 : doms.safe_push (get_bb_original (entry->dest));
6836 : 507503 : iterate_fix_dominators (CDI_DOMINATORS, doms, false);
6837 : : }
6838 : :
6839 : : /* Add the other PHI node arguments. */
6840 : 507503 : add_phi_args_after_copy (region_copy, n_region, NULL);
6841 : :
6842 : 507503 : if (free_region_copy)
6843 : 0 : free (region_copy);
6844 : :
6845 : 507503 : free_original_copy_tables ();
6846 : 507503 : return true;
6847 : 507503 : }
6848 : :
6849 : : /* Checks if BB is part of the region defined by N_REGION BBS. */
6850 : : static bool
6851 : 0 : bb_part_of_region_p (basic_block bb, basic_block* bbs, unsigned n_region)
6852 : : {
6853 : 0 : unsigned int n;
6854 : :
6855 : 0 : for (n = 0; n < n_region; n++)
6856 : : {
6857 : 0 : if (bb == bbs[n])
6858 : : return true;
6859 : : }
6860 : : return false;
6861 : : }
6862 : :
6863 : :
6864 : : /* For each PHI in BB, copy the argument associated with SRC_E to TGT_E.
6865 : : Assuming the argument exists, just does not have a value. */
6866 : :
6867 : : void
6868 : 27196490 : copy_phi_arg_into_existing_phi (edge src_e, edge tgt_e)
6869 : : {
6870 : 27196490 : int src_idx = src_e->dest_idx;
6871 : 27196490 : int tgt_idx = tgt_e->dest_idx;
6872 : :
6873 : : /* Iterate over each PHI in e->dest. */
6874 : 27196490 : for (gphi_iterator gsi = gsi_start_phis (src_e->dest),
6875 : 27196490 : gsi2 = gsi_start_phis (tgt_e->dest);
6876 : 66533317 : !gsi_end_p (gsi);
6877 : 39336827 : gsi_next (&gsi), gsi_next (&gsi2))
6878 : : {
6879 : 39336827 : gphi *src_phi = gsi.phi ();
6880 : 39336827 : gphi *dest_phi = gsi2.phi ();
6881 : 39336827 : tree val = gimple_phi_arg_def (src_phi, src_idx);
6882 : 39336827 : location_t locus = gimple_phi_arg_location (src_phi, src_idx);
6883 : :
6884 : 39336827 : SET_PHI_ARG_DEF (dest_phi, tgt_idx, val);
6885 : 39336827 : gimple_phi_arg_set_location (dest_phi, tgt_idx, locus);
6886 : : }
6887 : 27196490 : }
6888 : :
6889 : : /* Duplicates REGION consisting of N_REGION blocks. The new blocks
6890 : : are stored to REGION_COPY in the same order in that they appear
6891 : : in REGION, if REGION_COPY is not NULL. ENTRY is the entry to
6892 : : the region, EXIT an exit from it. The condition guarding EXIT
6893 : : is moved to ENTRY. Returns true if duplication succeeds, false
6894 : : otherwise.
6895 : :
6896 : : For example,
6897 : :
6898 : : some_code;
6899 : : if (cond)
6900 : : A;
6901 : : else
6902 : : B;
6903 : :
6904 : : is transformed to
6905 : :
6906 : : if (cond)
6907 : : {
6908 : : some_code;
6909 : : A;
6910 : : }
6911 : : else
6912 : : {
6913 : : some_code;
6914 : : B;
6915 : : }
6916 : : */
6917 : :
6918 : : bool
6919 : 24 : gimple_duplicate_sese_tail (edge entry, edge exit,
6920 : : basic_block *region, unsigned n_region,
6921 : : basic_block *region_copy)
6922 : : {
6923 : 24 : unsigned i;
6924 : 24 : bool free_region_copy = false;
6925 : 24 : class loop *loop = exit->dest->loop_father;
6926 : 24 : class loop *orig_loop = entry->dest->loop_father;
6927 : 24 : basic_block switch_bb, entry_bb, nentry_bb;
6928 : 24 : profile_count total_count = profile_count::uninitialized (),
6929 : 24 : exit_count = profile_count::uninitialized ();
6930 : 24 : edge exits[2], nexits[2], e;
6931 : 24 : gimple_stmt_iterator gsi;
6932 : 24 : edge sorig, snew;
6933 : 24 : basic_block exit_bb;
6934 : 24 : class loop *target, *aloop, *cloop;
6935 : :
6936 : 24 : gcc_assert (EDGE_COUNT (exit->src->succs) == 2);
6937 : 24 : exits[0] = exit;
6938 : 24 : exits[1] = EDGE_SUCC (exit->src, EDGE_SUCC (exit->src, 0) == exit);
6939 : :
6940 : 24 : if (!can_copy_bbs_p (region, n_region))
6941 : : return false;
6942 : :
6943 : 24 : initialize_original_copy_tables ();
6944 : 24 : set_loop_copy (orig_loop, loop);
6945 : :
6946 : 24 : target= loop;
6947 : 24 : for (aloop = orig_loop->inner; aloop; aloop = aloop->next)
6948 : : {
6949 : 0 : if (bb_part_of_region_p (aloop->header, region, n_region))
6950 : : {
6951 : 0 : cloop = duplicate_loop (aloop, target);
6952 : 0 : duplicate_subloops (aloop, cloop);
6953 : : }
6954 : : }
6955 : :
6956 : 24 : if (!region_copy)
6957 : : {
6958 : 0 : region_copy = XNEWVEC (basic_block, n_region);
6959 : 0 : free_region_copy = true;
6960 : : }
6961 : :
6962 : 24 : gcc_assert (!need_ssa_update_p (cfun));
6963 : :
6964 : : /* Record blocks outside the region that are dominated by something
6965 : : inside. */
6966 : 24 : auto_vec<basic_block> doms = get_dominated_by_region (CDI_DOMINATORS, region,
6967 : 24 : n_region);
6968 : :
6969 : 24 : total_count = exit->src->count;
6970 : 24 : exit_count = exit->count ();
6971 : : /* Fix up corner cases, to avoid division by zero or creation of negative
6972 : : frequencies. */
6973 : 24 : if (exit_count > total_count)
6974 : 0 : exit_count = total_count;
6975 : :
6976 : 24 : copy_bbs (region, n_region, region_copy, exits, 2, nexits, orig_loop,
6977 : : split_edge_bb_loc (exit), true);
6978 : 24 : if (total_count.initialized_p () && exit_count.initialized_p ())
6979 : : {
6980 : 24 : scale_bbs_frequencies_profile_count (region, n_region,
6981 : : total_count - exit_count,
6982 : : total_count);
6983 : 24 : scale_bbs_frequencies_profile_count (region_copy, n_region, exit_count,
6984 : : total_count);
6985 : : }
6986 : :
6987 : : /* Create the switch block, and put the exit condition to it. */
6988 : 24 : entry_bb = entry->dest;
6989 : 24 : nentry_bb = get_bb_copy (entry_bb);
6990 : 24 : if (!*gsi_last_bb (entry->src)
6991 : 24 : || !stmt_ends_bb_p (*gsi_last_bb (entry->src)))
6992 : 24 : switch_bb = entry->src;
6993 : : else
6994 : 0 : switch_bb = split_edge (entry);
6995 : 24 : set_immediate_dominator (CDI_DOMINATORS, nentry_bb, switch_bb);
6996 : :
6997 : 48 : gcond *cond_stmt = as_a <gcond *> (*gsi_last_bb (exit->src));
6998 : 24 : cond_stmt = as_a <gcond *> (gimple_copy (cond_stmt));
6999 : :
7000 : 24 : gsi = gsi_last_bb (switch_bb);
7001 : 24 : gsi_insert_after (&gsi, cond_stmt, GSI_NEW_STMT);
7002 : :
7003 : 24 : sorig = single_succ_edge (switch_bb);
7004 : 24 : sorig->flags = exits[1]->flags;
7005 : 24 : sorig->probability = exits[1]->probability;
7006 : 24 : snew = make_edge (switch_bb, nentry_bb, exits[0]->flags);
7007 : 24 : snew->probability = exits[0]->probability;
7008 : :
7009 : :
7010 : : /* Register the new edge from SWITCH_BB in loop exit lists. */
7011 : 24 : rescan_loop_exit (snew, true, false);
7012 : :
7013 : : /* Add the PHI node arguments. */
7014 : 24 : add_phi_args_after_copy (region_copy, n_region, snew);
7015 : :
7016 : : /* Get rid of now superfluous conditions and associated edges (and phi node
7017 : : arguments). */
7018 : 24 : exit_bb = exit->dest;
7019 : :
7020 : 24 : e = redirect_edge_and_branch (exits[0], exits[1]->dest);
7021 : 24 : PENDING_STMT (e) = NULL;
7022 : :
7023 : : /* The latch of ORIG_LOOP was copied, and so was the backedge
7024 : : to the original header. We redirect this backedge to EXIT_BB. */
7025 : 50 : for (i = 0; i < n_region; i++)
7026 : 26 : if (get_bb_original (region_copy[i]) == orig_loop->latch)
7027 : : {
7028 : 0 : gcc_assert (single_succ_edge (region_copy[i]));
7029 : 0 : e = redirect_edge_and_branch (single_succ_edge (region_copy[i]), exit_bb);
7030 : 0 : PENDING_STMT (e) = NULL;
7031 : 0 : copy_phi_arg_into_existing_phi (nexits[0], e);
7032 : : }
7033 : 24 : e = redirect_edge_and_branch (nexits[1], nexits[0]->dest);
7034 : 24 : PENDING_STMT (e) = NULL;
7035 : :
7036 : : /* Anything that is outside of the region, but was dominated by something
7037 : : inside needs to update dominance info. */
7038 : 24 : iterate_fix_dominators (CDI_DOMINATORS, doms, false);
7039 : :
7040 : 24 : if (free_region_copy)
7041 : 0 : free (region_copy);
7042 : :
7043 : 24 : free_original_copy_tables ();
7044 : 24 : return true;
7045 : 24 : }
7046 : :
7047 : : /* Add all the blocks dominated by ENTRY to the array BBS_P. Stop
7048 : : adding blocks when the dominator traversal reaches EXIT. This
7049 : : function silently assumes that ENTRY strictly dominates EXIT. */
7050 : :
7051 : : void
7052 : 555529 : gather_blocks_in_sese_region (basic_block entry, basic_block exit,
7053 : : vec<basic_block> *bbs_p)
7054 : : {
7055 : 555529 : basic_block son;
7056 : :
7057 : 555529 : for (son = first_dom_son (CDI_DOMINATORS, entry);
7058 : 1110948 : son;
7059 : 555419 : son = next_dom_son (CDI_DOMINATORS, son))
7060 : : {
7061 : 555419 : bbs_p->safe_push (son);
7062 : 555419 : if (son != exit)
7063 : 513961 : gather_blocks_in_sese_region (son, exit, bbs_p);
7064 : : }
7065 : 555529 : }
7066 : :
7067 : : /* Replaces *TP with a duplicate (belonging to function TO_CONTEXT).
7068 : : The duplicates are recorded in VARS_MAP. */
7069 : :
7070 : : static void
7071 : 4172183 : replace_by_duplicate_decl (tree *tp, hash_map<tree, tree> *vars_map,
7072 : : tree to_context)
7073 : : {
7074 : 4172183 : tree t = *tp, new_t;
7075 : 4172183 : struct function *f = DECL_STRUCT_FUNCTION (to_context);
7076 : :
7077 : 4172183 : if (DECL_CONTEXT (t) == to_context)
7078 : 33076 : return;
7079 : :
7080 : 4139107 : bool existed;
7081 : 4139107 : tree &loc = vars_map->get_or_insert (t, &existed);
7082 : :
7083 : 4139107 : if (!existed)
7084 : : {
7085 : 1234813 : if (SSA_VAR_P (t))
7086 : : {
7087 : 1224310 : new_t = copy_var_decl (t, DECL_NAME (t), TREE_TYPE (t));
7088 : 1224310 : add_local_decl (f, new_t);
7089 : : }
7090 : : else
7091 : : {
7092 : 10503 : gcc_assert (TREE_CODE (t) == CONST_DECL);
7093 : 10503 : new_t = copy_node (t);
7094 : : }
7095 : 1234813 : DECL_CONTEXT (new_t) = to_context;
7096 : :
7097 : 1234813 : loc = new_t;
7098 : : }
7099 : : else
7100 : 2904294 : new_t = loc;
7101 : :
7102 : 4139107 : *tp = new_t;
7103 : : }
7104 : :
7105 : :
7106 : : /* Creates an ssa name in TO_CONTEXT equivalent to NAME.
7107 : : VARS_MAP maps old ssa names and var_decls to the new ones. */
7108 : :
7109 : : static tree
7110 : 13282 : replace_ssa_name (tree name, hash_map<tree, tree> *vars_map,
7111 : : tree to_context)
7112 : : {
7113 : 13282 : tree new_name;
7114 : :
7115 : 26564 : gcc_assert (!virtual_operand_p (name));
7116 : :
7117 : 13282 : tree *loc = vars_map->get (name);
7118 : :
7119 : 13282 : if (!loc)
7120 : : {
7121 : 5437 : tree decl = SSA_NAME_VAR (name);
7122 : 5437 : if (decl)
7123 : : {
7124 : 1307 : gcc_assert (!SSA_NAME_IS_DEFAULT_DEF (name));
7125 : 1307 : replace_by_duplicate_decl (&decl, vars_map, to_context);
7126 : 1307 : new_name = make_ssa_name_fn (DECL_STRUCT_FUNCTION (to_context),
7127 : 1307 : decl, SSA_NAME_DEF_STMT (name));
7128 : : }
7129 : : else
7130 : 4130 : new_name = copy_ssa_name_fn (DECL_STRUCT_FUNCTION (to_context),
7131 : 4130 : name, SSA_NAME_DEF_STMT (name));
7132 : :
7133 : : /* Now that we've used the def stmt to define new_name, make sure it
7134 : : doesn't define name anymore. */
7135 : 5437 : SSA_NAME_DEF_STMT (name) = NULL;
7136 : :
7137 : 5437 : vars_map->put (name, new_name);
7138 : : }
7139 : : else
7140 : 7845 : new_name = *loc;
7141 : :
7142 : 13282 : return new_name;
7143 : : }
7144 : :
7145 : : struct move_stmt_d
7146 : : {
7147 : : tree orig_block;
7148 : : tree new_block;
7149 : : tree from_context;
7150 : : tree to_context;
7151 : : hash_map<tree, tree> *vars_map;
7152 : : htab_t new_label_map;
7153 : : hash_map<void *, void *> *eh_map;
7154 : : bool remap_decls_p;
7155 : : };
7156 : :
7157 : : /* Helper for move_block_to_fn. Set TREE_BLOCK in every expression
7158 : : contained in *TP if it has been ORIG_BLOCK previously and change the
7159 : : DECL_CONTEXT of every local variable referenced in *TP. */
7160 : :
7161 : : static tree
7162 : 6793836 : move_stmt_op (tree *tp, int *walk_subtrees, void *data)
7163 : : {
7164 : 6793836 : struct walk_stmt_info *wi = (struct walk_stmt_info *) data;
7165 : 6793836 : struct move_stmt_d *p = (struct move_stmt_d *) wi->info;
7166 : 6793836 : tree t = *tp;
7167 : :
7168 : 6793836 : if (EXPR_P (t))
7169 : : {
7170 : 1070831 : tree block = TREE_BLOCK (t);
7171 : 1070831 : if (block == NULL_TREE)
7172 : : ;
7173 : 28352 : else if (block == p->orig_block
7174 : 26421 : || p->orig_block == NULL_TREE)
7175 : : {
7176 : : /* tree_node_can_be_shared says we can share invariant
7177 : : addresses but unshare_expr copies them anyways. Make sure
7178 : : to unshare before adjusting the block in place - we do not
7179 : : always see a copy here. */
7180 : 1940 : if (TREE_CODE (t) == ADDR_EXPR
7181 : 1940 : && is_gimple_min_invariant (t))
7182 : 1931 : *tp = t = unshare_expr (t);
7183 : 1940 : TREE_SET_BLOCK (t, p->new_block);
7184 : : }
7185 : 26412 : else if (flag_checking)
7186 : : {
7187 : 94193 : while (block && TREE_CODE (block) == BLOCK && block != p->orig_block)
7188 : 67781 : block = BLOCK_SUPERCONTEXT (block);
7189 : 26412 : gcc_assert (block == p->orig_block);
7190 : : }
7191 : : }
7192 : 5723005 : else if (DECL_P (t) || TREE_CODE (t) == SSA_NAME)
7193 : : {
7194 : 4217044 : if (TREE_CODE (t) == SSA_NAME)
7195 : 11603 : *tp = replace_ssa_name (t, p->vars_map, p->to_context);
7196 : 4205441 : else if (TREE_CODE (t) == PARM_DECL
7197 : 4205441 : && gimple_in_ssa_p (cfun))
7198 : 191 : *tp = *(p->vars_map->get (t));
7199 : 4205250 : else if (TREE_CODE (t) == LABEL_DECL)
7200 : : {
7201 : 2779 : if (p->new_label_map)
7202 : : {
7203 : 440 : struct tree_map in, *out;
7204 : 440 : in.base.from = t;
7205 : 440 : out = (struct tree_map *)
7206 : 440 : htab_find_with_hash (p->new_label_map, &in, DECL_UID (t));
7207 : 440 : if (out)
7208 : 0 : *tp = t = out->to;
7209 : : }
7210 : :
7211 : : /* For FORCED_LABELs we can end up with references from other
7212 : : functions if some SESE regions are outlined. It is UB to
7213 : : jump in between them, but they could be used just for printing
7214 : : addresses etc. In that case, DECL_CONTEXT on the label should
7215 : : be the function containing the glabel stmt with that LABEL_DECL,
7216 : : rather than whatever function a reference to the label was seen
7217 : : last time. */
7218 : 2779 : if (!FORCED_LABEL (t) && !DECL_NONLOCAL (t))
7219 : 2772 : DECL_CONTEXT (t) = p->to_context;
7220 : : }
7221 : 4202471 : else if (p->remap_decls_p)
7222 : : {
7223 : : /* Replace T with its duplicate. T should no longer appear in the
7224 : : parent function, so this looks wasteful; however, it may appear
7225 : : in referenced_vars, and more importantly, as virtual operands of
7226 : : statements, and in alias lists of other variables. It would be
7227 : : quite difficult to expunge it from all those places. ??? It might
7228 : : suffice to do this for addressable variables. */
7229 : 3531834 : if ((VAR_P (t) && !is_global_var (t))
7230 : 4242602 : || TREE_CODE (t) == CONST_DECL)
7231 : 3502000 : replace_by_duplicate_decl (tp, p->vars_map, p->to_context);
7232 : : }
7233 : 4217044 : *walk_subtrees = 0;
7234 : 4217044 : }
7235 : 1505961 : else if (TYPE_P (t))
7236 : 0 : *walk_subtrees = 0;
7237 : :
7238 : 6793836 : return NULL_TREE;
7239 : : }
7240 : :
7241 : : /* Helper for move_stmt_r. Given an EH region number for the source
7242 : : function, map that to the duplicate EH regio number in the dest. */
7243 : :
7244 : : static int
7245 : 0 : move_stmt_eh_region_nr (int old_nr, struct move_stmt_d *p)
7246 : : {
7247 : 0 : eh_region old_r, new_r;
7248 : :
7249 : 0 : old_r = get_eh_region_from_number (old_nr);
7250 : 0 : new_r = static_cast<eh_region> (*p->eh_map->get (old_r));
7251 : :
7252 : 0 : return new_r->index;
7253 : : }
7254 : :
7255 : : /* Similar, but operate on INTEGER_CSTs. */
7256 : :
7257 : : static tree
7258 : 0 : move_stmt_eh_region_tree_nr (tree old_t_nr, struct move_stmt_d *p)
7259 : : {
7260 : 0 : int old_nr, new_nr;
7261 : :
7262 : 0 : old_nr = tree_to_shwi (old_t_nr);
7263 : 0 : new_nr = move_stmt_eh_region_nr (old_nr, p);
7264 : :
7265 : 0 : return build_int_cst (integer_type_node, new_nr);
7266 : : }
7267 : :
7268 : : /* Like move_stmt_op, but for gimple statements.
7269 : :
7270 : : Helper for move_block_to_fn. Set GIMPLE_BLOCK in every expression
7271 : : contained in the current statement in *GSI_P and change the
7272 : : DECL_CONTEXT of every local variable referenced in the current
7273 : : statement. */
7274 : :
7275 : : static tree
7276 : 1935466 : move_stmt_r (gimple_stmt_iterator *gsi_p, bool *handled_ops_p,
7277 : : struct walk_stmt_info *wi)
7278 : : {
7279 : 1935466 : struct move_stmt_d *p = (struct move_stmt_d *) wi->info;
7280 : 1935466 : gimple *stmt = gsi_stmt (*gsi_p);
7281 : 1935466 : tree block = gimple_block (stmt);
7282 : :
7283 : 1935466 : if (block == p->orig_block
7284 : 1703595 : || (p->orig_block == NULL_TREE
7285 : 1035 : && block != NULL_TREE))
7286 : 232906 : gimple_set_block (stmt, p->new_block);
7287 : :
7288 : 1935466 : switch (gimple_code (stmt))
7289 : : {
7290 : 254994 : case GIMPLE_CALL:
7291 : : /* Remap the region numbers for __builtin_eh_{pointer,filter}. */
7292 : 254994 : {
7293 : 254994 : tree r, fndecl = gimple_call_fndecl (stmt);
7294 : 254994 : if (fndecl && fndecl_built_in_p (fndecl, BUILT_IN_NORMAL))
7295 : 94221 : switch (DECL_FUNCTION_CODE (fndecl))
7296 : : {
7297 : 0 : case BUILT_IN_EH_COPY_VALUES:
7298 : 0 : r = gimple_call_arg (stmt, 1);
7299 : 0 : r = move_stmt_eh_region_tree_nr (r, p);
7300 : 0 : gimple_call_set_arg (stmt, 1, r);
7301 : : /* FALLTHRU */
7302 : :
7303 : 0 : case BUILT_IN_EH_POINTER:
7304 : 0 : case BUILT_IN_EH_FILTER:
7305 : 0 : r = gimple_call_arg (stmt, 0);
7306 : 0 : r = move_stmt_eh_region_tree_nr (r, p);
7307 : 0 : gimple_call_set_arg (stmt, 0, r);
7308 : 0 : break;
7309 : :
7310 : : default:
7311 : : break;
7312 : : }
7313 : : }
7314 : : break;
7315 : :
7316 : 0 : case GIMPLE_RESX:
7317 : 0 : {
7318 : 0 : gresx *resx_stmt = as_a <gresx *> (stmt);
7319 : 0 : int r = gimple_resx_region (resx_stmt);
7320 : 0 : r = move_stmt_eh_region_nr (r, p);
7321 : 0 : gimple_resx_set_region (resx_stmt, r);
7322 : : }
7323 : 0 : break;
7324 : :
7325 : 0 : case GIMPLE_EH_DISPATCH:
7326 : 0 : {
7327 : 0 : geh_dispatch *eh_dispatch_stmt = as_a <geh_dispatch *> (stmt);
7328 : 0 : int r = gimple_eh_dispatch_region (eh_dispatch_stmt);
7329 : 0 : r = move_stmt_eh_region_nr (r, p);
7330 : 0 : gimple_eh_dispatch_set_region (eh_dispatch_stmt, r);
7331 : : }
7332 : 0 : break;
7333 : :
7334 : : case GIMPLE_OMP_RETURN:
7335 : : case GIMPLE_OMP_CONTINUE:
7336 : : break;
7337 : :
7338 : 1393 : case GIMPLE_LABEL:
7339 : 1393 : {
7340 : : /* For FORCED_LABEL, move_stmt_op doesn't adjust DECL_CONTEXT,
7341 : : so that such labels can be referenced from other regions.
7342 : : Make sure to update it when seeing a GIMPLE_LABEL though,
7343 : : that is the owner of the label. */
7344 : 1393 : walk_gimple_op (stmt, move_stmt_op, wi);
7345 : 1393 : *handled_ops_p = true;
7346 : 1393 : tree label = gimple_label_label (as_a <glabel *> (stmt));
7347 : 1393 : if (FORCED_LABEL (label) || DECL_NONLOCAL (label))
7348 : 5 : DECL_CONTEXT (label) = p->to_context;
7349 : : }
7350 : : break;
7351 : :
7352 : 1679079 : default:
7353 : 1679079 : if (is_gimple_omp (stmt))
7354 : : {
7355 : : /* Do not remap variables inside OMP directives. Variables
7356 : : referenced in clauses and directive header belong to the
7357 : : parent function and should not be moved into the child
7358 : : function. */
7359 : 0 : bool save_remap_decls_p = p->remap_decls_p;
7360 : 0 : p->remap_decls_p = false;
7361 : 0 : *handled_ops_p = true;
7362 : :
7363 : 0 : walk_gimple_seq_mod (gimple_omp_body_ptr (stmt), move_stmt_r,
7364 : : move_stmt_op, wi);
7365 : :
7366 : 0 : p->remap_decls_p = save_remap_decls_p;
7367 : : }
7368 : : break;
7369 : : }
7370 : :
7371 : 1935466 : return NULL_TREE;
7372 : : }
7373 : :
7374 : : /* Move basic block BB from function CFUN to function DEST_FN. The
7375 : : block is moved out of the original linked list and placed after
7376 : : block AFTER in the new list. Also, the block is removed from the
7377 : : original array of blocks and placed in DEST_FN's array of blocks.
7378 : : If UPDATE_EDGE_COUNT_P is true, the edge counts on both CFGs is
7379 : : updated to reflect the moved edges.
7380 : :
7381 : : The local variables are remapped to new instances, VARS_MAP is used
7382 : : to record the mapping. */
7383 : :
7384 : : static void
7385 : 594729 : move_block_to_fn (struct function *dest_cfun, basic_block bb,
7386 : : basic_block after, bool update_edge_count_p,
7387 : : struct move_stmt_d *d)
7388 : : {
7389 : 594729 : struct control_flow_graph *cfg;
7390 : 594729 : edge_iterator ei;
7391 : 594729 : edge e;
7392 : 594729 : gimple_stmt_iterator si;
7393 : 594729 : unsigned old_len;
7394 : :
7395 : : /* Remove BB from dominance structures. */
7396 : 594729 : delete_from_dominance_info (CDI_DOMINATORS, bb);
7397 : :
7398 : : /* Move BB from its current loop to the copy in the new function. */
7399 : 594729 : if (current_loops)
7400 : : {
7401 : 594729 : class loop *new_loop = (class loop *)bb->loop_father->aux;
7402 : 594729 : if (new_loop)
7403 : 341581 : bb->loop_father = new_loop;
7404 : : }
7405 : :
7406 : : /* Link BB to the new linked list. */
7407 : 594729 : move_block_after (bb, after);
7408 : :
7409 : : /* Update the edge count in the corresponding flowgraphs. */
7410 : 594729 : if (update_edge_count_p)
7411 : 1276760 : FOR_EACH_EDGE (e, ei, bb->succs)
7412 : : {
7413 : 723083 : cfun->cfg->x_n_edges--;
7414 : 723083 : dest_cfun->cfg->x_n_edges++;
7415 : : }
7416 : :
7417 : : /* Remove BB from the original basic block array. */
7418 : 594729 : (*cfun->cfg->x_basic_block_info)[bb->index] = NULL;
7419 : 594729 : cfun->cfg->x_n_basic_blocks--;
7420 : :
7421 : : /* Grow DEST_CFUN's basic block array if needed. */
7422 : 594729 : cfg = dest_cfun->cfg;
7423 : 594729 : cfg->x_n_basic_blocks++;
7424 : 594729 : if (bb->index >= cfg->x_last_basic_block)
7425 : 41162 : cfg->x_last_basic_block = bb->index + 1;
7426 : :
7427 : 594729 : old_len = vec_safe_length (cfg->x_basic_block_info);
7428 : 594729 : if ((unsigned) cfg->x_last_basic_block >= old_len)
7429 : 33388 : vec_safe_grow_cleared (cfg->x_basic_block_info,
7430 : 33388 : cfg->x_last_basic_block + 1);
7431 : :
7432 : 594729 : (*cfg->x_basic_block_info)[bb->index] = bb;
7433 : :
7434 : : /* Remap the variables in phi nodes. */
7435 : 594729 : for (gphi_iterator psi = gsi_start_phis (bb);
7436 : 595983 : !gsi_end_p (psi); )
7437 : : {
7438 : 1254 : gphi *phi = psi.phi ();
7439 : 1254 : use_operand_p use;
7440 : 1254 : tree op = PHI_RESULT (phi);
7441 : 1254 : ssa_op_iter oi;
7442 : 1254 : unsigned i;
7443 : :
7444 : 2508 : if (virtual_operand_p (op))
7445 : : {
7446 : : /* Remove the phi nodes for virtual operands (alias analysis will be
7447 : : run for the new function, anyway). But replace all uses that
7448 : : might be outside of the region we move. */
7449 : 552 : use_operand_p use_p;
7450 : 552 : imm_use_iterator iter;
7451 : 552 : gimple *use_stmt;
7452 : 1099 : FOR_EACH_IMM_USE_STMT (use_stmt, iter, op)
7453 : 1641 : FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
7454 : 1099 : SET_USE (use_p, SSA_NAME_VAR (op));
7455 : 552 : remove_phi_node (&psi, true);
7456 : 552 : continue;
7457 : 552 : }
7458 : :
7459 : 702 : SET_PHI_RESULT (phi,
7460 : : replace_ssa_name (op, d->vars_map, dest_cfun->decl));
7461 : 1850 : FOR_EACH_PHI_ARG (use, phi, oi, SSA_OP_USE)
7462 : : {
7463 : 1148 : op = USE_FROM_PTR (use);
7464 : 1148 : if (TREE_CODE (op) == SSA_NAME)
7465 : 977 : SET_USE (use, replace_ssa_name (op, d->vars_map, dest_cfun->decl));
7466 : : }
7467 : :
7468 : 1850 : for (i = 0; i < EDGE_COUNT (bb->preds); i++)
7469 : : {
7470 : 1148 : location_t locus = gimple_phi_arg_location (phi, i);
7471 : 1148 : tree block = LOCATION_BLOCK (locus);
7472 : :
7473 : 1148 : if (locus == UNKNOWN_LOCATION)
7474 : 955 : continue;
7475 : 193 : if (d->orig_block == NULL_TREE || block == d->orig_block)
7476 : : {
7477 : 193 : locus = set_block (locus, d->new_block);
7478 : 193 : gimple_phi_arg_set_location (phi, i, locus);
7479 : : }
7480 : : }
7481 : :
7482 : 702 : gsi_next (&psi);
7483 : : }
7484 : :
7485 : 3124924 : for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
7486 : : {
7487 : 1935466 : gimple *stmt = gsi_stmt (si);
7488 : 1935466 : struct walk_stmt_info wi;
7489 : :
7490 : 1935466 : memset (&wi, 0, sizeof (wi));
7491 : 1935466 : wi.info = d;
7492 : 1935466 : walk_gimple_stmt (&si, move_stmt_r, move_stmt_op, &wi);
7493 : :
7494 : 1935466 : if (glabel *label_stmt = dyn_cast <glabel *> (stmt))
7495 : : {
7496 : 1393 : tree label = gimple_label_label (label_stmt);
7497 : 1393 : int uid = LABEL_DECL_UID (label);
7498 : :
7499 : 1393 : gcc_assert (uid > -1);
7500 : :
7501 : 1393 : old_len = vec_safe_length (cfg->x_label_to_block_map);
7502 : 1393 : if (old_len <= (unsigned) uid)
7503 : 175 : vec_safe_grow_cleared (cfg->x_label_to_block_map, uid + 1);
7504 : :
7505 : 1393 : (*cfg->x_label_to_block_map)[uid] = bb;
7506 : 1393 : (*cfun->cfg->x_label_to_block_map)[uid] = NULL;
7507 : :
7508 : 1393 : gcc_assert (DECL_CONTEXT (label) == dest_cfun->decl);
7509 : :
7510 : 1393 : if (uid >= dest_cfun->cfg->last_label_uid)
7511 : 319 : dest_cfun->cfg->last_label_uid = uid + 1;
7512 : : }
7513 : :
7514 : 1935466 : maybe_duplicate_eh_stmt_fn (dest_cfun, stmt, cfun, stmt, d->eh_map, 0);
7515 : 1935466 : remove_stmt_from_eh_lp_fn (cfun, stmt);
7516 : :
7517 : 1935466 : gimple_duplicate_stmt_histograms (dest_cfun, stmt, cfun, stmt);
7518 : 1935466 : gimple_remove_stmt_histograms (cfun, stmt);
7519 : :
7520 : : /* We cannot leave any operands allocated from the operand caches of
7521 : : the current function. */
7522 : 1935466 : free_stmt_operands (cfun, stmt);
7523 : 1935466 : push_cfun (dest_cfun);
7524 : 1935466 : update_stmt (stmt);
7525 : 1935466 : if (is_gimple_call (stmt))
7526 : 254994 : notice_special_calls (as_a <gcall *> (stmt));
7527 : 1935466 : pop_cfun ();
7528 : : }
7529 : :
7530 : 1317812 : FOR_EACH_EDGE (e, ei, bb->succs)
7531 : 723083 : if (e->goto_locus != UNKNOWN_LOCATION)
7532 : : {
7533 : 210468 : tree block = LOCATION_BLOCK (e->goto_locus);
7534 : 210468 : if (d->orig_block == NULL_TREE
7535 : 210272 : || block == d->orig_block)
7536 : 24346 : e->goto_locus = set_block (e->goto_locus, d->new_block);
7537 : : }
7538 : 594729 : }
7539 : :
7540 : : /* Examine the statements in BB (which is in SRC_CFUN); find and return
7541 : : the outermost EH region. Use REGION as the incoming base EH region.
7542 : : If there is no single outermost region, return NULL and set *ALL to
7543 : : true. */
7544 : :
7545 : : static eh_region
7546 : 594724 : find_outermost_region_in_block (struct function *src_cfun,
7547 : : basic_block bb, eh_region region,
7548 : : bool *all)
7549 : : {
7550 : 594724 : gimple_stmt_iterator si;
7551 : :
7552 : 3124902 : for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
7553 : : {
7554 : 1935455 : gimple *stmt = gsi_stmt (si);
7555 : 1935455 : eh_region stmt_region;
7556 : 1935455 : int lp_nr;
7557 : :
7558 : 1935455 : lp_nr = lookup_stmt_eh_lp_fn (src_cfun, stmt);
7559 : 1935455 : stmt_region = get_eh_region_from_lp_number_fn (src_cfun, lp_nr);
7560 : 1935455 : if (stmt_region)
7561 : : {
7562 : 3181 : if (region == NULL)
7563 : : region = stmt_region;
7564 : 1359 : else if (stmt_region != region)
7565 : : {
7566 : 241 : region = eh_region_outermost (src_cfun, stmt_region, region);
7567 : 241 : if (region == NULL)
7568 : : {
7569 : 1 : *all = true;
7570 : 1 : return NULL;
7571 : : }
7572 : : }
7573 : : }
7574 : : }
7575 : :
7576 : : return region;
7577 : : }
7578 : :
7579 : : static tree
7580 : 0 : new_label_mapper (tree decl, void *data)
7581 : : {
7582 : 0 : htab_t hash = (htab_t) data;
7583 : 0 : struct tree_map *m;
7584 : 0 : void **slot;
7585 : :
7586 : 0 : gcc_assert (TREE_CODE (decl) == LABEL_DECL);
7587 : :
7588 : 0 : m = XNEW (struct tree_map);
7589 : 0 : m->hash = DECL_UID (decl);
7590 : 0 : m->base.from = decl;
7591 : 0 : m->to = create_artificial_label (UNKNOWN_LOCATION);
7592 : 0 : LABEL_DECL_UID (m->to) = LABEL_DECL_UID (decl);
7593 : 0 : if (LABEL_DECL_UID (m->to) >= cfun->cfg->last_label_uid)
7594 : 0 : cfun->cfg->last_label_uid = LABEL_DECL_UID (m->to) + 1;
7595 : :
7596 : 0 : slot = htab_find_slot_with_hash (hash, m, m->hash, INSERT);
7597 : 0 : gcc_assert (*slot == NULL);
7598 : :
7599 : 0 : *slot = m;
7600 : :
7601 : 0 : return m->to;
7602 : : }
7603 : :
7604 : : /* Tree walker to replace the decls used inside value expressions by
7605 : : duplicates. */
7606 : :
7607 : : static tree
7608 : 247235 : replace_block_vars_by_duplicates_1 (tree *tp, int *walk_subtrees, void *data)
7609 : : {
7610 : 247235 : struct replace_decls_d *rd = (struct replace_decls_d *)data;
7611 : :
7612 : 247235 : switch (TREE_CODE (*tp))
7613 : : {
7614 : 47399 : case VAR_DECL:
7615 : 47399 : case PARM_DECL:
7616 : 47399 : case RESULT_DECL:
7617 : 47399 : replace_by_duplicate_decl (tp, rd->vars_map, rd->to_context);
7618 : 47399 : break;
7619 : : default:
7620 : : break;
7621 : : }
7622 : :
7623 : 247235 : if (IS_TYPE_OR_DECL_P (*tp))
7624 : 80493 : *walk_subtrees = false;
7625 : :
7626 : 247235 : return NULL;
7627 : : }
7628 : :
7629 : : /* Change DECL_CONTEXT of all BLOCK_VARS in block, including
7630 : : subblocks. */
7631 : :
7632 : : static void
7633 : 160300 : replace_block_vars_by_duplicates (tree block, hash_map<tree, tree> *vars_map,
7634 : : tree to_context)
7635 : : {
7636 : 160300 : tree *tp, t;
7637 : :
7638 : 786454 : for (tp = &BLOCK_VARS (block); *tp; tp = &DECL_CHAIN (*tp))
7639 : : {
7640 : 626154 : t = *tp;
7641 : 626154 : if (!VAR_P (t) && TREE_CODE (t) != CONST_DECL)
7642 : 7076 : continue;
7643 : 619078 : replace_by_duplicate_decl (&t, vars_map, to_context);
7644 : 619078 : if (t != *tp)
7645 : : {
7646 : 619078 : if (VAR_P (*tp) && DECL_HAS_VALUE_EXPR_P (*tp))
7647 : : {
7648 : 42505 : tree x = DECL_VALUE_EXPR (*tp);
7649 : 42505 : struct replace_decls_d rd = { vars_map, to_context };
7650 : 42505 : unshare_expr (x);
7651 : 42505 : walk_tree (&x, replace_block_vars_by_duplicates_1, &rd, NULL);
7652 : 42505 : SET_DECL_VALUE_EXPR (t, x);
7653 : 42505 : DECL_HAS_VALUE_EXPR_P (t) = 1;
7654 : : }
7655 : 619078 : DECL_CHAIN (t) = DECL_CHAIN (*tp);
7656 : 619078 : *tp = t;
7657 : : }
7658 : : }
7659 : :
7660 : 279438 : for (block = BLOCK_SUBBLOCKS (block); block; block = BLOCK_CHAIN (block))
7661 : 119138 : replace_block_vars_by_duplicates (block, vars_map, to_context);
7662 : 160300 : }
7663 : :
7664 : : /* Fixup the loop arrays and numbers after moving LOOP and its subloops
7665 : : from FN1 to FN2. */
7666 : :
7667 : : static void
7668 : 65885 : fixup_loop_arrays_after_move (struct function *fn1, struct function *fn2,
7669 : : class loop *loop)
7670 : : {
7671 : : /* Discard it from the old loop array. */
7672 : 131770 : (*get_loops (fn1))[loop->num] = NULL;
7673 : :
7674 : : /* Place it in the new loop array, assigning it a new number. */
7675 : 65885 : loop->num = number_of_loops (fn2);
7676 : 65885 : vec_safe_push (loops_for_fn (fn2)->larray, loop);
7677 : :
7678 : : /* Recurse to children. */
7679 : 93408 : for (loop = loop->inner; loop; loop = loop->next)
7680 : 27523 : fixup_loop_arrays_after_move (fn1, fn2, loop);
7681 : 65885 : }
7682 : :
7683 : : /* Verify that the blocks in BBS_P are a single-entry, single-exit region
7684 : : delimited by ENTRY_BB and EXIT_BB, possibly containing noreturn blocks. */
7685 : :
7686 : : DEBUG_FUNCTION void
7687 : 41162 : verify_sese (basic_block entry, basic_block exit, vec<basic_block> *bbs_p)
7688 : : {
7689 : 41162 : basic_block bb;
7690 : 41162 : edge_iterator ei;
7691 : 41162 : edge e;
7692 : 41162 : bitmap bbs = BITMAP_ALLOC (NULL);
7693 : 41162 : int i;
7694 : :
7695 : 41162 : gcc_assert (entry != NULL);
7696 : 41162 : gcc_assert (entry != exit);
7697 : 41162 : gcc_assert (bbs_p != NULL);
7698 : :
7699 : 41162 : gcc_assert (bbs_p->length () > 0);
7700 : :
7701 : 635891 : FOR_EACH_VEC_ELT (*bbs_p, i, bb)
7702 : 594729 : bitmap_set_bit (bbs, bb->index);
7703 : :
7704 : 41162 : gcc_assert (bitmap_bit_p (bbs, entry->index));
7705 : 41162 : gcc_assert (exit == NULL || bitmap_bit_p (bbs, exit->index));
7706 : :
7707 : 635891 : FOR_EACH_VEC_ELT (*bbs_p, i, bb)
7708 : : {
7709 : 594729 : if (bb == entry)
7710 : : {
7711 : 41162 : gcc_assert (single_pred_p (entry));
7712 : 41162 : gcc_assert (!bitmap_bit_p (bbs, single_pred (entry)->index));
7713 : : }
7714 : : else
7715 : 1276650 : for (ei = ei_start (bb->preds); !ei_end_p (ei); ei_next (&ei))
7716 : : {
7717 : 723083 : e = ei_edge (ei);
7718 : 723083 : gcc_assert (bitmap_bit_p (bbs, e->src->index));
7719 : : }
7720 : :
7721 : 594729 : if (bb == exit)
7722 : : {
7723 : 41052 : gcc_assert (single_succ_p (exit));
7724 : 41052 : gcc_assert (!bitmap_bit_p (bbs, single_succ (exit)->index));
7725 : : }
7726 : : else
7727 : 1276760 : for (ei = ei_start (bb->succs); !ei_end_p (ei); ei_next (&ei))
7728 : : {
7729 : 723083 : e = ei_edge (ei);
7730 : 723083 : gcc_assert (bitmap_bit_p (bbs, e->dest->index));
7731 : : }
7732 : : }
7733 : :
7734 : 41162 : BITMAP_FREE (bbs);
7735 : 41162 : }
7736 : :
7737 : : /* If FROM is an SSA_NAME, mark the version in bitmap DATA. */
7738 : :
7739 : : bool
7740 : 1240453 : gather_ssa_name_hash_map_from (tree const &from, tree const &, void *data)
7741 : : {
7742 : 1240453 : bitmap release_names = (bitmap)data;
7743 : :
7744 : 1240453 : if (TREE_CODE (from) != SSA_NAME)
7745 : : return true;
7746 : :
7747 : 5437 : bitmap_set_bit (release_names, SSA_NAME_VERSION (from));
7748 : 5437 : return true;
7749 : : }
7750 : :
7751 : : /* Return LOOP_DIST_ALIAS call if present in BB. */
7752 : :
7753 : : static gimple *
7754 : 113 : find_loop_dist_alias (basic_block bb)
7755 : : {
7756 : 113 : gimple_stmt_iterator gsi = gsi_last_bb (bb);
7757 : 142 : if (!safe_is_a <gcond *> (*gsi))
7758 : : return NULL;
7759 : :
7760 : 30 : gsi_prev (&gsi);
7761 : 30 : if (gsi_end_p (gsi))
7762 : : return NULL;
7763 : :
7764 : 22 : gimple *g = gsi_stmt (gsi);
7765 : 22 : if (gimple_call_internal_p (g, IFN_LOOP_DIST_ALIAS))
7766 : : return g;
7767 : : return NULL;
7768 : : }
7769 : :
7770 : : /* Fold loop internal call G like IFN_LOOP_VECTORIZED/IFN_LOOP_DIST_ALIAS
7771 : : to VALUE and update any immediate uses of it's LHS. */
7772 : :
7773 : : void
7774 : 23762 : fold_loop_internal_call (gimple *g, tree value)
7775 : : {
7776 : 23762 : tree lhs = gimple_call_lhs (g);
7777 : 23762 : use_operand_p use_p;
7778 : 23762 : imm_use_iterator iter;
7779 : 23762 : gimple *use_stmt;
7780 : 23762 : gimple_stmt_iterator gsi = gsi_for_stmt (g);
7781 : :
7782 : 23762 : replace_call_with_value (&gsi, value);
7783 : 47449 : FOR_EACH_IMM_USE_STMT (use_stmt, iter, lhs)
7784 : : {
7785 : 71061 : FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
7786 : 23687 : SET_USE (use_p, value);
7787 : 23687 : update_stmt (use_stmt);
7788 : : /* If we turn conditional to constant, scale profile counts.
7789 : : We know that the conditional was created by loop distribution
7790 : : and all basic blocks dominated by the taken edge are part of
7791 : : the loop distributed. */
7792 : 23687 : if (gimple_code (use_stmt) == GIMPLE_COND)
7793 : : {
7794 : 23687 : edge true_edge, false_edge;
7795 : 23687 : extract_true_false_edges_from_block (gimple_bb (use_stmt),
7796 : : &true_edge, &false_edge);
7797 : 23687 : edge taken_edge = NULL, other_edge = NULL;
7798 : 23687 : if (gimple_cond_true_p (as_a <gcond *>(use_stmt)))
7799 : : {
7800 : 5409 : taken_edge = true_edge;
7801 : 5409 : other_edge = false_edge;
7802 : : }
7803 : 18278 : else if (gimple_cond_false_p (as_a <gcond *>(use_stmt)))
7804 : : {
7805 : 18270 : taken_edge = false_edge;
7806 : 18270 : other_edge = true_edge;
7807 : : }
7808 : 23679 : if (taken_edge
7809 : 47366 : && !(taken_edge->probability == profile_probability::always ()))
7810 : : {
7811 : 27 : profile_count old_count = taken_edge->count ();
7812 : 27 : profile_count new_count = taken_edge->src->count;
7813 : 27 : taken_edge->probability = profile_probability::always ();
7814 : 27 : other_edge->probability = profile_probability::never ();
7815 : : /* If we have multiple predecessors, we can't use the dominance
7816 : : test. This should not happen as the guarded code should
7817 : : start with pre-header. */
7818 : 27 : gcc_assert (single_pred_edge (taken_edge->dest));
7819 : 54 : if (old_count.nonzero_p ())
7820 : : {
7821 : 25 : taken_edge->dest->count
7822 : 25 : = taken_edge->dest->count.apply_scale (new_count,
7823 : : old_count);
7824 : 25 : scale_strictly_dominated_blocks (taken_edge->dest,
7825 : : new_count, old_count);
7826 : : }
7827 : : }
7828 : : }
7829 : 23762 : }
7830 : 23762 : }
7831 : :
7832 : : /* Move a single-entry, single-exit region delimited by ENTRY_BB and
7833 : : EXIT_BB to function DEST_CFUN. The whole region is replaced by a
7834 : : single basic block in the original CFG and the new basic block is
7835 : : returned. DEST_CFUN must not have a CFG yet.
7836 : :
7837 : : Note that the region need not be a pure SESE region. Blocks inside
7838 : : the region may contain calls to abort/exit. The only restriction
7839 : : is that ENTRY_BB should be the only entry point and it must
7840 : : dominate EXIT_BB.
7841 : :
7842 : : Change TREE_BLOCK of all statements in ORIG_BLOCK to the new
7843 : : functions outermost BLOCK, move all subblocks of ORIG_BLOCK
7844 : : to the new function.
7845 : :
7846 : : All local variables referenced in the region are assumed to be in
7847 : : the corresponding BLOCK_VARS and unexpanded variable lists
7848 : : associated with DEST_CFUN.
7849 : :
7850 : : TODO: investigate whether we can reuse gimple_duplicate_sese_region to
7851 : : reimplement move_sese_region_to_fn by duplicating the region rather than
7852 : : moving it. */
7853 : :
7854 : : basic_block
7855 : 41162 : move_sese_region_to_fn (struct function *dest_cfun, basic_block entry_bb,
7856 : : basic_block exit_bb, tree orig_block)
7857 : : {
7858 : 41162 : vec<basic_block> bbs;
7859 : 41162 : basic_block dom_entry = get_immediate_dominator (CDI_DOMINATORS, entry_bb);
7860 : 41162 : basic_block after, bb, *entry_pred, *exit_succ, abb;
7861 : 41162 : struct function *saved_cfun = cfun;
7862 : 41162 : int *entry_flag, *exit_flag;
7863 : 41162 : profile_probability *entry_prob, *exit_prob;
7864 : 41162 : unsigned i, num_entry_edges, num_exit_edges, num_nodes;
7865 : 41162 : edge e;
7866 : 41162 : edge_iterator ei;
7867 : 41162 : htab_t new_label_map;
7868 : 41162 : hash_map<void *, void *> *eh_map;
7869 : 41162 : class loop *loop = entry_bb->loop_father;
7870 : 41162 : class loop *loop0 = get_loop (saved_cfun, 0);
7871 : 41162 : struct move_stmt_d d;
7872 : :
7873 : : /* If ENTRY does not strictly dominate EXIT, this cannot be an SESE
7874 : : region. */
7875 : 41162 : gcc_assert (entry_bb != exit_bb
7876 : : && (!exit_bb
7877 : : || dominated_by_p (CDI_DOMINATORS, exit_bb, entry_bb)));
7878 : :
7879 : : /* Collect all the blocks in the region. Manually add ENTRY_BB
7880 : : because it won't be added by dfs_enumerate_from. */
7881 : 41162 : bbs.create (0);
7882 : 41162 : bbs.safe_push (entry_bb);
7883 : 41162 : gather_blocks_in_sese_region (entry_bb, exit_bb, &bbs);
7884 : :
7885 : 41162 : if (flag_checking)
7886 : 41162 : verify_sese (entry_bb, exit_bb, &bbs);
7887 : :
7888 : : /* The blocks that used to be dominated by something in BBS will now be
7889 : : dominated by the new block. */
7890 : 41162 : auto_vec<basic_block> dom_bbs = get_dominated_by_region (CDI_DOMINATORS,
7891 : : bbs.address (),
7892 : 82324 : bbs.length ());
7893 : :
7894 : : /* Detach ENTRY_BB and EXIT_BB from CFUN->CFG. We need to remember
7895 : : the predecessor edges to ENTRY_BB and the successor edges to
7896 : : EXIT_BB so that we can re-attach them to the new basic block that
7897 : : will replace the region. */
7898 : 41162 : num_entry_edges = EDGE_COUNT (entry_bb->preds);
7899 : 41162 : entry_pred = XNEWVEC (basic_block, num_entry_edges);
7900 : 41162 : entry_flag = XNEWVEC (int, num_entry_edges);
7901 : 41162 : entry_prob = XNEWVEC (profile_probability, num_entry_edges);
7902 : 41162 : i = 0;
7903 : 82324 : for (ei = ei_start (entry_bb->preds); (e = ei_safe_edge (ei)) != NULL;)
7904 : : {
7905 : 41162 : entry_prob[i] = e->probability;
7906 : 41162 : entry_flag[i] = e->flags;
7907 : 41162 : entry_pred[i++] = e->src;
7908 : 41162 : remove_edge (e);
7909 : : }
7910 : :
7911 : 41162 : if (exit_bb)
7912 : : {
7913 : 41052 : num_exit_edges = EDGE_COUNT (exit_bb->succs);
7914 : 41052 : exit_succ = XNEWVEC (basic_block, num_exit_edges);
7915 : 41052 : exit_flag = XNEWVEC (int, num_exit_edges);
7916 : 41052 : exit_prob = XNEWVEC (profile_probability, num_exit_edges);
7917 : 41052 : i = 0;
7918 : 82104 : for (ei = ei_start (exit_bb->succs); (e = ei_safe_edge (ei)) != NULL;)
7919 : : {
7920 : 41052 : exit_prob[i] = e->probability;
7921 : 41052 : exit_flag[i] = e->flags;
7922 : 41052 : exit_succ[i++] = e->dest;
7923 : 41052 : remove_edge (e);
7924 : : }
7925 : : }
7926 : : else
7927 : : {
7928 : : num_exit_edges = 0;
7929 : : exit_succ = NULL;
7930 : : exit_flag = NULL;
7931 : : exit_prob = NULL;
7932 : : }
7933 : :
7934 : : /* Switch context to the child function to initialize DEST_FN's CFG. */
7935 : 41162 : gcc_assert (dest_cfun->cfg == NULL);
7936 : 41162 : push_cfun (dest_cfun);
7937 : :
7938 : 41162 : init_empty_tree_cfg ();
7939 : :
7940 : : /* Initialize EH information for the new function. */
7941 : 41162 : eh_map = NULL;
7942 : 41162 : new_label_map = NULL;
7943 : 41162 : if (saved_cfun->eh)
7944 : : {
7945 : 41162 : eh_region region = NULL;
7946 : 41162 : bool all = false;
7947 : :
7948 : 635885 : FOR_EACH_VEC_ELT (bbs, i, bb)
7949 : : {
7950 : 594724 : region = find_outermost_region_in_block (saved_cfun, bb, region, &all);
7951 : 594724 : if (all)
7952 : : break;
7953 : : }
7954 : :
7955 : 41162 : init_eh_for_function ();
7956 : 41162 : if (region != NULL || all)
7957 : : {
7958 : 1822 : new_label_map = htab_create (17, tree_map_hash, tree_map_eq, free);
7959 : 1822 : eh_map = duplicate_eh_regions (saved_cfun, region, 0,
7960 : : new_label_mapper, new_label_map);
7961 : : }
7962 : : }
7963 : :
7964 : : /* Initialize an empty loop tree. */
7965 : 41162 : struct loops *loops = ggc_cleared_alloc<struct loops> ();
7966 : 41162 : init_loops_structure (dest_cfun, loops, 1);
7967 : 41162 : loops->state = LOOPS_MAY_HAVE_MULTIPLE_LATCHES;
7968 : 41162 : set_loops_for_fn (dest_cfun, loops);
7969 : :
7970 : 82324 : vec<loop_p, va_gc> *larray = get_loops (saved_cfun)->copy ();
7971 : :
7972 : : /* Move the outlined loop tree part. */
7973 : 41162 : num_nodes = bbs.length ();
7974 : 635891 : FOR_EACH_VEC_ELT (bbs, i, bb)
7975 : : {
7976 : 594729 : if (bb->loop_father->header == bb)
7977 : : {
7978 : 65885 : class loop *this_loop = bb->loop_father;
7979 : : /* Avoid the need to remap SSA names used in nb_iterations. */
7980 : 65885 : free_numbers_of_iterations_estimates (this_loop);
7981 : 65885 : class loop *outer = loop_outer (this_loop);
7982 : 65885 : if (outer == loop
7983 : : /* If the SESE region contains some bbs ending with
7984 : : a noreturn call, those are considered to belong
7985 : : to the outermost loop in saved_cfun, rather than
7986 : : the entry_bb's loop_father. */
7987 : 65885 : || outer == loop0)
7988 : : {
7989 : 38362 : if (outer != loop)
7990 : 8 : num_nodes -= this_loop->num_nodes;
7991 : 38362 : flow_loop_tree_node_remove (bb->loop_father);
7992 : 38362 : flow_loop_tree_node_add (get_loop (dest_cfun, 0), this_loop);
7993 : 38362 : fixup_loop_arrays_after_move (saved_cfun, cfun, this_loop);
7994 : : }
7995 : : }
7996 : 528844 : else if (bb->loop_father == loop0 && loop0 != loop)
7997 : 1225 : num_nodes--;
7998 : :
7999 : : /* Remove loop exits from the outlined region. */
8000 : 594729 : if (loops_for_fn (saved_cfun)->exits)
8001 : 5900 : FOR_EACH_EDGE (e, ei, bb->succs)
8002 : : {
8003 : 3203 : struct loops *l = loops_for_fn (saved_cfun);
8004 : 3203 : loop_exit **slot
8005 : 3203 : = l->exits->find_slot_with_hash (e, htab_hash_pointer (e),
8006 : : NO_INSERT);
8007 : 3203 : if (slot)
8008 : 307 : l->exits->clear_slot (slot);
8009 : : }
8010 : : }
8011 : :
8012 : : /* Adjust the number of blocks in the tree root of the outlined part. */
8013 : 82324 : get_loop (dest_cfun, 0)->num_nodes = bbs.length () + 2;
8014 : :
8015 : : /* Setup a mapping to be used by move_block_to_fn. */
8016 : 41162 : loop->aux = current_loops->tree_root;
8017 : 41162 : loop0->aux = current_loops->tree_root;
8018 : :
8019 : : /* Fix up orig_loop_num. If the block referenced in it has been moved
8020 : : to dest_cfun, update orig_loop_num field, otherwise clear it. */
8021 : 41162 : signed char *moved_orig_loop_num = NULL;
8022 : 189371 : for (auto dloop : loops_list (dest_cfun, 0))
8023 : 65885 : if (dloop->orig_loop_num)
8024 : : {
8025 : 2 : if (moved_orig_loop_num == NULL)
8026 : 2 : moved_orig_loop_num
8027 : 2 : = XCNEWVEC (signed char, vec_safe_length (larray));
8028 : 2 : if ((*larray)[dloop->orig_loop_num] != NULL
8029 : 2 : && get_loop (saved_cfun, dloop->orig_loop_num) == NULL)
8030 : : {
8031 : 0 : if (moved_orig_loop_num[dloop->orig_loop_num] >= 0
8032 : 0 : && moved_orig_loop_num[dloop->orig_loop_num] < 2)
8033 : 0 : moved_orig_loop_num[dloop->orig_loop_num]++;
8034 : 0 : dloop->orig_loop_num = (*larray)[dloop->orig_loop_num]->num;
8035 : : }
8036 : : else
8037 : : {
8038 : 2 : moved_orig_loop_num[dloop->orig_loop_num] = -1;
8039 : 2 : dloop->orig_loop_num = 0;
8040 : : }
8041 : 41162 : }
8042 : 41162 : pop_cfun ();
8043 : :
8044 : 41162 : if (moved_orig_loop_num)
8045 : : {
8046 : 29 : FOR_EACH_VEC_ELT (bbs, i, bb)
8047 : : {
8048 : 27 : gimple *g = find_loop_dist_alias (bb);
8049 : 27 : if (g == NULL)
8050 : 27 : continue;
8051 : :
8052 : 0 : int orig_loop_num = tree_to_shwi (gimple_call_arg (g, 0));
8053 : 0 : gcc_assert (orig_loop_num
8054 : : && (unsigned) orig_loop_num < vec_safe_length (larray));
8055 : 0 : if (moved_orig_loop_num[orig_loop_num] == 2)
8056 : : {
8057 : : /* If we have moved both loops with this orig_loop_num into
8058 : : dest_cfun and the LOOP_DIST_ALIAS call is being moved there
8059 : : too, update the first argument. */
8060 : 0 : gcc_assert ((*larray)[orig_loop_num] != NULL
8061 : : && (get_loop (saved_cfun, orig_loop_num) == NULL));
8062 : 0 : tree t = build_int_cst (integer_type_node,
8063 : 0 : (*larray)[orig_loop_num]->num);
8064 : 0 : gimple_call_set_arg (g, 0, t);
8065 : 0 : update_stmt (g);
8066 : : /* Make sure the following loop will not update it. */
8067 : 0 : moved_orig_loop_num[orig_loop_num] = 0;
8068 : : }
8069 : : else
8070 : : /* Otherwise at least one of the loops stayed in saved_cfun.
8071 : : Remove the LOOP_DIST_ALIAS call. */
8072 : 0 : fold_loop_internal_call (g, gimple_call_arg (g, 1));
8073 : : }
8074 : 88 : FOR_EACH_BB_FN (bb, saved_cfun)
8075 : : {
8076 : 86 : gimple *g = find_loop_dist_alias (bb);
8077 : 86 : if (g == NULL)
8078 : 85 : continue;
8079 : 1 : int orig_loop_num = tree_to_shwi (gimple_call_arg (g, 0));
8080 : 2 : gcc_assert (orig_loop_num
8081 : : && (unsigned) orig_loop_num < vec_safe_length (larray));
8082 : 1 : if (moved_orig_loop_num[orig_loop_num])
8083 : : /* LOOP_DIST_ALIAS call remained in saved_cfun, if at least one
8084 : : of the corresponding loops was moved, remove it. */
8085 : 1 : fold_loop_internal_call (g, gimple_call_arg (g, 1));
8086 : : }
8087 : 2 : XDELETEVEC (moved_orig_loop_num);
8088 : : }
8089 : 41162 : ggc_free (larray);
8090 : :
8091 : : /* Move blocks from BBS into DEST_CFUN. */
8092 : 41162 : gcc_assert (bbs.length () >= 2);
8093 : 41162 : after = dest_cfun->cfg->x_entry_block_ptr;
8094 : 41162 : hash_map<tree, tree> vars_map;
8095 : :
8096 : 41162 : memset (&d, 0, sizeof (d));
8097 : 41162 : d.orig_block = orig_block;
8098 : 41162 : d.new_block = DECL_INITIAL (dest_cfun->decl);
8099 : 41162 : d.from_context = cfun->decl;
8100 : 41162 : d.to_context = dest_cfun->decl;
8101 : 41162 : d.vars_map = &vars_map;
8102 : 41162 : d.new_label_map = new_label_map;
8103 : 41162 : d.eh_map = eh_map;
8104 : 41162 : d.remap_decls_p = true;
8105 : :
8106 : 41162 : if (gimple_in_ssa_p (cfun))
8107 : 406 : for (tree arg = DECL_ARGUMENTS (d.to_context); arg; arg = DECL_CHAIN (arg))
8108 : : {
8109 : 203 : tree narg = make_ssa_name_fn (dest_cfun, arg, gimple_build_nop ());
8110 : 203 : set_ssa_default_def (dest_cfun, arg, narg);
8111 : 203 : vars_map.put (arg, narg);
8112 : : }
8113 : :
8114 : 635891 : FOR_EACH_VEC_ELT (bbs, i, bb)
8115 : : {
8116 : : /* No need to update edge counts on the last block. It has
8117 : : already been updated earlier when we detached the region from
8118 : : the original CFG. */
8119 : 594729 : move_block_to_fn (dest_cfun, bb, after, bb != exit_bb, &d);
8120 : 594729 : after = bb;
8121 : : }
8122 : :
8123 : : /* Adjust the maximum clique used. */
8124 : 41162 : dest_cfun->last_clique = saved_cfun->last_clique;
8125 : :
8126 : 41162 : loop->aux = NULL;
8127 : 41162 : loop0->aux = NULL;
8128 : : /* Loop sizes are no longer correct, fix them up. */
8129 : 41162 : loop->num_nodes -= num_nodes;
8130 : 41162 : for (class loop *outer = loop_outer (loop);
8131 : 45157 : outer; outer = loop_outer (outer))
8132 : 3995 : outer->num_nodes -= num_nodes;
8133 : 41162 : loop0->num_nodes -= bbs.length () - num_nodes;
8134 : :
8135 : 41162 : if (saved_cfun->has_simduid_loops || saved_cfun->has_force_vectorize_loops)
8136 : : {
8137 : 9262 : class loop *aloop;
8138 : 31146 : for (i = 0; vec_safe_iterate (loops->larray, i, &aloop); i++)
8139 : 21884 : if (aloop != NULL)
8140 : : {
8141 : 21884 : if (aloop->simduid)
8142 : : {
8143 : 2399 : replace_by_duplicate_decl (&aloop->simduid, d.vars_map,
8144 : : d.to_context);
8145 : 2399 : dest_cfun->has_simduid_loops = true;
8146 : : }
8147 : 21884 : if (aloop->force_vectorize)
8148 : 4222 : dest_cfun->has_force_vectorize_loops = true;
8149 : : }
8150 : : }
8151 : :
8152 : : /* Rewire BLOCK_SUBBLOCKS of orig_block. */
8153 : 41162 : if (orig_block)
8154 : : {
8155 : 40959 : tree block;
8156 : 40959 : gcc_assert (BLOCK_SUBBLOCKS (DECL_INITIAL (dest_cfun->decl))
8157 : : == NULL_TREE);
8158 : 81918 : BLOCK_SUBBLOCKS (DECL_INITIAL (dest_cfun->decl))
8159 : 40959 : = BLOCK_SUBBLOCKS (orig_block);
8160 : 40959 : for (block = BLOCK_SUBBLOCKS (orig_block);
8161 : 79060 : block; block = BLOCK_CHAIN (block))
8162 : 38101 : BLOCK_SUPERCONTEXT (block) = DECL_INITIAL (dest_cfun->decl);
8163 : 40959 : BLOCK_SUBBLOCKS (orig_block) = NULL_TREE;
8164 : : }
8165 : :
8166 : 41162 : replace_block_vars_by_duplicates (DECL_INITIAL (dest_cfun->decl),
8167 : : &vars_map, dest_cfun->decl);
8168 : :
8169 : 41162 : if (new_label_map)
8170 : 1822 : htab_delete (new_label_map);
8171 : 41162 : if (eh_map)
8172 : 1822 : delete eh_map;
8173 : :
8174 : : /* We need to release ssa-names in a defined order, so first find them,
8175 : : and then iterate in ascending version order. */
8176 : 41162 : bitmap release_names = BITMAP_ALLOC (NULL);
8177 : 1281615 : vars_map.traverse<void *, gather_ssa_name_hash_map_from> (release_names);
8178 : 41162 : bitmap_iterator bi;
8179 : 46599 : EXECUTE_IF_SET_IN_BITMAP (release_names, 0, i, bi)
8180 : 5437 : release_ssa_name (ssa_name (i));
8181 : 41162 : BITMAP_FREE (release_names);
8182 : :
8183 : : /* Rewire the entry and exit blocks. The successor to the entry
8184 : : block turns into the successor of DEST_FN's ENTRY_BLOCK_PTR in
8185 : : the child function. Similarly, the predecessor of DEST_FN's
8186 : : EXIT_BLOCK_PTR turns into the predecessor of EXIT_BLOCK_PTR. We
8187 : : need to switch CFUN between DEST_CFUN and SAVED_CFUN so that the
8188 : : various CFG manipulation function get to the right CFG.
8189 : :
8190 : : FIXME, this is silly. The CFG ought to become a parameter to
8191 : : these helpers. */
8192 : 41162 : push_cfun (dest_cfun);
8193 : 41162 : ENTRY_BLOCK_PTR_FOR_FN (cfun)->count = entry_bb->count;
8194 : 41162 : make_single_succ_edge (ENTRY_BLOCK_PTR_FOR_FN (cfun), entry_bb, EDGE_FALLTHRU);
8195 : 41162 : if (exit_bb)
8196 : : {
8197 : 41052 : make_single_succ_edge (exit_bb, EXIT_BLOCK_PTR_FOR_FN (cfun), 0);
8198 : 41052 : EXIT_BLOCK_PTR_FOR_FN (cfun)->count = exit_bb->count;
8199 : : }
8200 : : else
8201 : 110 : EXIT_BLOCK_PTR_FOR_FN (cfun)->count = profile_count::zero ();
8202 : 41162 : pop_cfun ();
8203 : :
8204 : : /* Back in the original function, the SESE region has disappeared,
8205 : : create a new basic block in its place. */
8206 : 41162 : bb = create_empty_bb (entry_pred[0]);
8207 : 41162 : if (current_loops)
8208 : 41162 : add_bb_to_loop (bb, loop);
8209 : 41162 : profile_count count = profile_count::zero ();
8210 : 82324 : for (i = 0; i < num_entry_edges; i++)
8211 : : {
8212 : 41162 : e = make_edge (entry_pred[i], bb, entry_flag[i]);
8213 : 41162 : e->probability = entry_prob[i];
8214 : 41162 : count += e->count ();
8215 : : }
8216 : 41162 : bb->count = count;
8217 : :
8218 : 82214 : for (i = 0; i < num_exit_edges; i++)
8219 : : {
8220 : 41052 : e = make_edge (bb, exit_succ[i], exit_flag[i]);
8221 : 41052 : e->probability = exit_prob[i];
8222 : : }
8223 : :
8224 : 41162 : set_immediate_dominator (CDI_DOMINATORS, bb, dom_entry);
8225 : 78325 : FOR_EACH_VEC_ELT (dom_bbs, i, abb)
8226 : 37163 : set_immediate_dominator (CDI_DOMINATORS, abb, bb);
8227 : :
8228 : 41162 : if (exit_bb)
8229 : : {
8230 : 41052 : free (exit_prob);
8231 : 41052 : free (exit_flag);
8232 : 41052 : free (exit_succ);
8233 : : }
8234 : 41162 : free (entry_prob);
8235 : 41162 : free (entry_flag);
8236 : 41162 : free (entry_pred);
8237 : 41162 : bbs.release ();
8238 : :
8239 : 41162 : return bb;
8240 : 41162 : }
8241 : :
8242 : : /* Dump default def DEF to file FILE using FLAGS and indentation
8243 : : SPC. */
8244 : :
8245 : : static void
8246 : 549 : dump_default_def (FILE *file, tree def, int spc, dump_flags_t flags)
8247 : : {
8248 : 1647 : for (int i = 0; i < spc; ++i)
8249 : 1098 : fprintf (file, " ");
8250 : 549 : dump_ssaname_info_to_file (file, def, spc);
8251 : :
8252 : 549 : print_generic_expr (file, TREE_TYPE (def), flags);
8253 : 549 : fprintf (file, " ");
8254 : 549 : print_generic_expr (file, def, flags);
8255 : 549 : fprintf (file, " = ");
8256 : 549 : print_generic_expr (file, SSA_NAME_VAR (def), flags);
8257 : 549 : fprintf (file, ";\n");
8258 : 549 : }
8259 : :
8260 : : /* Print no_sanitize attribute to FILE for a given attribute VALUE. */
8261 : :
8262 : : static void
8263 : 69 : print_no_sanitize_attr_value (FILE *file, tree value)
8264 : : {
8265 : 69 : unsigned int flags = tree_to_uhwi (value);
8266 : 69 : bool first = true;
8267 : 2346 : for (int i = 0; sanitizer_opts[i].name != NULL; ++i)
8268 : : {
8269 : 2277 : if ((sanitizer_opts[i].flag & flags) == sanitizer_opts[i].flag)
8270 : : {
8271 : 289 : if (!first)
8272 : 220 : fprintf (file, " | ");
8273 : 289 : fprintf (file, "%s", sanitizer_opts[i].name);
8274 : 289 : first = false;
8275 : : }
8276 : : }
8277 : 69 : }
8278 : :
8279 : : /* Dump FUNCTION_DECL FN to file FILE using FLAGS (see TDF_* in dumpfile.h)
8280 : : */
8281 : :
8282 : : void
8283 : 56314 : dump_function_to_file (tree fndecl, FILE *file, dump_flags_t flags)
8284 : : {
8285 : 56314 : tree arg, var, old_current_fndecl = current_function_decl;
8286 : 56314 : struct function *dsf;
8287 : 56314 : bool ignore_topmost_bind = false, any_var = false;
8288 : 56314 : basic_block bb;
8289 : 56314 : tree chain;
8290 : 56314 : bool tmclone = (TREE_CODE (fndecl) == FUNCTION_DECL
8291 : 107402 : && decl_is_tm_clone (fndecl));
8292 : 56314 : struct function *fun = DECL_STRUCT_FUNCTION (fndecl);
8293 : :
8294 : 56314 : tree fntype = TREE_TYPE (fndecl);
8295 : 56314 : tree attrs[] = { DECL_ATTRIBUTES (fndecl), TYPE_ATTRIBUTES (fntype) };
8296 : :
8297 : 168942 : for (int i = 0; i != 2; ++i)
8298 : : {
8299 : 112628 : if (!attrs[i])
8300 : 90898 : continue;
8301 : :
8302 : 21730 : fprintf (file, "__attribute__((");
8303 : :
8304 : 21730 : bool first = true;
8305 : 21730 : tree chain;
8306 : 60214 : for (chain = attrs[i]; chain; first = false, chain = TREE_CHAIN (chain))
8307 : : {
8308 : 38484 : if (!first)
8309 : 16754 : fprintf (file, ", ");
8310 : :
8311 : 38484 : tree name = get_attribute_name (chain);
8312 : 38484 : print_generic_expr (file, name, dump_flags);
8313 : 38484 : if (TREE_VALUE (chain) != NULL_TREE)
8314 : : {
8315 : 10106 : fprintf (file, " (");
8316 : :
8317 : 10106 : if (strstr (IDENTIFIER_POINTER (name), "no_sanitize"))
8318 : 69 : print_no_sanitize_attr_value (file, TREE_VALUE (chain));
8319 : 10037 : else if (!strcmp (IDENTIFIER_POINTER (name),
8320 : : "omp declare variant base"))
8321 : : {
8322 : 95 : tree a = TREE_VALUE (chain);
8323 : 95 : print_generic_expr (file, TREE_PURPOSE (a), dump_flags);
8324 : 95 : fprintf (file, " match ");
8325 : 95 : print_omp_context_selector (file, TREE_VALUE (a),
8326 : : dump_flags);
8327 : : }
8328 : : else
8329 : 9942 : print_generic_expr (file, TREE_VALUE (chain), dump_flags);
8330 : 10106 : fprintf (file, ")");
8331 : : }
8332 : : }
8333 : :
8334 : 21730 : fprintf (file, "))\n");
8335 : : }
8336 : :
8337 : 56314 : current_function_decl = fndecl;
8338 : 56314 : if (flags & TDF_GIMPLE)
8339 : : {
8340 : 41 : static bool hotness_bb_param_printed = false;
8341 : 41 : if (profile_info != NULL
8342 : 0 : && !hotness_bb_param_printed)
8343 : : {
8344 : 0 : hotness_bb_param_printed = true;
8345 : 0 : fprintf (file,
8346 : : "/* --param=gimple-fe-computed-hot-bb-threshold=%" PRId64
8347 : : " */\n", get_hot_bb_threshold ());
8348 : : }
8349 : :
8350 : 41 : print_generic_expr (file, TREE_TYPE (TREE_TYPE (fndecl)),
8351 : : dump_flags | TDF_SLIM);
8352 : 41 : fprintf (file, " __GIMPLE (%s",
8353 : 41 : (fun->curr_properties & PROP_ssa) ? "ssa"
8354 : 9 : : (fun->curr_properties & PROP_cfg) ? "cfg"
8355 : : : "");
8356 : :
8357 : 41 : if (fun && fun->cfg)
8358 : : {
8359 : 37 : basic_block bb = ENTRY_BLOCK_PTR_FOR_FN (fun);
8360 : 37 : if (bb->count.initialized_p ())
8361 : 0 : fprintf (file, ",%s(%" PRIu64 ")",
8362 : : profile_quality_as_string (bb->count.quality ()),
8363 : : bb->count.value ());
8364 : 37 : if (dump_flags & TDF_UID)
8365 : 0 : fprintf (file, ")\n%sD_%u (", function_name (fun),
8366 : 0 : DECL_UID (fndecl));
8367 : : else
8368 : 37 : fprintf (file, ")\n%s (", function_name (fun));
8369 : : }
8370 : : }
8371 : : else
8372 : : {
8373 : 56273 : print_generic_expr (file, TREE_TYPE (fntype), dump_flags);
8374 : 56273 : if (dump_flags & TDF_UID)
8375 : 1270 : fprintf (file, " %sD.%u %s(", function_name (fun), DECL_UID (fndecl),
8376 : : tmclone ? "[tm-clone] " : "");
8377 : : else
8378 : 111239 : fprintf (file, " %s %s(", function_name (fun),
8379 : : tmclone ? "[tm-clone] " : "");
8380 : : }
8381 : :
8382 : 56314 : arg = DECL_ARGUMENTS (fndecl);
8383 : 132158 : while (arg)
8384 : : {
8385 : 75844 : print_generic_expr (file, TREE_TYPE (arg), dump_flags);
8386 : 75844 : fprintf (file, " ");
8387 : 75844 : print_generic_expr (file, arg, dump_flags);
8388 : 75844 : if (DECL_CHAIN (arg))
8389 : 39086 : fprintf (file, ", ");
8390 : 75844 : arg = DECL_CHAIN (arg);
8391 : : }
8392 : 56314 : fprintf (file, ")\n");
8393 : :
8394 : 56314 : dsf = DECL_STRUCT_FUNCTION (fndecl);
8395 : 56314 : if (dsf && (flags & TDF_EH))
8396 : 622 : dump_eh_tree (file, dsf);
8397 : :
8398 : 56314 : if (flags & TDF_RAW && !gimple_has_body_p (fndecl))
8399 : : {
8400 : 0 : dump_node (fndecl, TDF_SLIM | flags, file);
8401 : 0 : current_function_decl = old_current_fndecl;
8402 : 0 : return;
8403 : : }
8404 : :
8405 : : /* When GIMPLE is lowered, the variables are no longer available in
8406 : : BIND_EXPRs, so display them separately. */
8407 : 56314 : if (fun && fun->decl == fndecl && (fun->curr_properties & PROP_gimple_lcf))
8408 : : {
8409 : 46688 : unsigned ix;
8410 : 46688 : ignore_topmost_bind = true;
8411 : :
8412 : 46688 : fprintf (file, "{\n");
8413 : 92437 : if (gimple_in_ssa_p (fun)
8414 : 45749 : && (flags & TDF_ALIAS))
8415 : : {
8416 : 1189 : for (arg = DECL_ARGUMENTS (fndecl); arg != NULL;
8417 : 575 : arg = DECL_CHAIN (arg))
8418 : : {
8419 : 575 : tree def = ssa_default_def (fun, arg);
8420 : 575 : if (def)
8421 : 549 : dump_default_def (file, def, 2, flags);
8422 : : }
8423 : :
8424 : 614 : tree res = DECL_RESULT (fun->decl);
8425 : 614 : if (res != NULL_TREE
8426 : 614 : && DECL_BY_REFERENCE (res))
8427 : : {
8428 : 0 : tree def = ssa_default_def (fun, res);
8429 : 0 : if (def)
8430 : 0 : dump_default_def (file, def, 2, flags);
8431 : : }
8432 : :
8433 : 614 : tree static_chain = fun->static_chain_decl;
8434 : 614 : if (static_chain != NULL_TREE)
8435 : : {
8436 : 0 : tree def = ssa_default_def (fun, static_chain);
8437 : 0 : if (def)
8438 : 0 : dump_default_def (file, def, 2, flags);
8439 : : }
8440 : : }
8441 : :
8442 : 46688 : if (!vec_safe_is_empty (fun->local_decls))
8443 : 260762 : FOR_EACH_LOCAL_DECL (fun, ix, var)
8444 : : {
8445 : 233419 : print_generic_decl (file, var, flags);
8446 : 233419 : fprintf (file, "\n");
8447 : :
8448 : 233419 : any_var = true;
8449 : : }
8450 : :
8451 : 46688 : tree name;
8452 : :
8453 : 46688 : if (gimple_in_ssa_p (fun))
8454 : 1599727 : FOR_EACH_SSA_NAME (ix, name, fun)
8455 : : {
8456 : 1167373 : if (!SSA_NAME_VAR (name)
8457 : : /* SSA name with decls without a name still get
8458 : : dumped as _N, list those explicitely as well even
8459 : : though we've dumped the decl declaration as D.xxx
8460 : : above. */
8461 : 678301 : || !SSA_NAME_IDENTIFIER (name))
8462 : : {
8463 : 491620 : fprintf (file, " ");
8464 : 491620 : print_generic_expr (file, TREE_TYPE (name), flags);
8465 : 491620 : fprintf (file, " ");
8466 : 491620 : print_generic_expr (file, name, flags);
8467 : 491620 : fprintf (file, ";\n");
8468 : :
8469 : 491620 : any_var = true;
8470 : : }
8471 : : }
8472 : : }
8473 : :
8474 : 56314 : if (fun && fun->decl == fndecl
8475 : 56314 : && fun->cfg
8476 : 46447 : && basic_block_info_for_fn (fun))
8477 : : {
8478 : : /* If the CFG has been built, emit a CFG-based dump. */
8479 : 46447 : if (!ignore_topmost_bind)
8480 : 0 : fprintf (file, "{\n");
8481 : :
8482 : 46447 : if (any_var && n_basic_blocks_for_fn (fun))
8483 : 40599 : fprintf (file, "\n");
8484 : :
8485 : 289282 : FOR_EACH_BB_FN (bb, fun)
8486 : 242835 : dump_bb (file, bb, 2, flags);
8487 : :
8488 : 46447 : fprintf (file, "}\n");
8489 : : }
8490 : 9867 : else if (fun && (fun->curr_properties & PROP_gimple_any))
8491 : : {
8492 : : /* The function is now in GIMPLE form but the CFG has not been
8493 : : built yet. Emit the single sequence of GIMPLE statements
8494 : : that make up its body. */
8495 : 4170 : gimple_seq body = gimple_body (fndecl);
8496 : :
8497 : 4170 : if (gimple_seq_first_stmt (body)
8498 : 4170 : && gimple_seq_first_stmt (body) == gimple_seq_last_stmt (body)
8499 : 8099 : && gimple_code (gimple_seq_first_stmt (body)) == GIMPLE_BIND)
8500 : 3929 : print_gimple_seq (file, body, 0, flags);
8501 : : else
8502 : : {
8503 : 241 : if (!ignore_topmost_bind)
8504 : 0 : fprintf (file, "{\n");
8505 : :
8506 : 241 : if (any_var)
8507 : 186 : fprintf (file, "\n");
8508 : :
8509 : 241 : print_gimple_seq (file, body, 2, flags);
8510 : 241 : fprintf (file, "}\n");
8511 : : }
8512 : : }
8513 : : else
8514 : : {
8515 : 5697 : int indent;
8516 : :
8517 : : /* Make a tree based dump. */
8518 : 5697 : chain = DECL_SAVED_TREE (fndecl);
8519 : 5697 : if (chain && TREE_CODE (chain) == BIND_EXPR)
8520 : : {
8521 : 5697 : if (ignore_topmost_bind)
8522 : : {
8523 : 0 : chain = BIND_EXPR_BODY (chain);
8524 : 0 : indent = 2;
8525 : : }
8526 : : else
8527 : : indent = 0;
8528 : : }
8529 : : else
8530 : : {
8531 : 0 : if (!ignore_topmost_bind)
8532 : : {
8533 : 0 : fprintf (file, "{\n");
8534 : : /* No topmost bind, pretend it's ignored for later. */
8535 : 0 : ignore_topmost_bind = true;
8536 : : }
8537 : : indent = 2;
8538 : : }
8539 : :
8540 : 5697 : if (any_var)
8541 : 0 : fprintf (file, "\n");
8542 : :
8543 : 5697 : print_generic_stmt_indented (file, chain, flags, indent);
8544 : 5697 : if (ignore_topmost_bind)
8545 : 0 : fprintf (file, "}\n");
8546 : : }
8547 : :
8548 : 56314 : if (flags & TDF_ENUMERATE_LOCALS)
8549 : 38 : dump_enumerated_decls (file, flags);
8550 : 56314 : fprintf (file, "\n\n");
8551 : :
8552 : 56314 : current_function_decl = old_current_fndecl;
8553 : : }
8554 : :
8555 : : /* Dump FUNCTION_DECL FN to stderr using FLAGS (see TDF_* in tree.h) */
8556 : :
8557 : : DEBUG_FUNCTION void
8558 : 0 : debug_function (tree fn, dump_flags_t flags)
8559 : : {
8560 : 0 : dump_function_to_file (fn, stderr, flags);
8561 : 0 : }
8562 : :
8563 : :
8564 : : /* Print on FILE the indexes for the predecessors of basic_block BB. */
8565 : :
8566 : : static void
8567 : 5280 : print_pred_bbs (FILE *file, basic_block bb)
8568 : : {
8569 : 5280 : edge e;
8570 : 5280 : edge_iterator ei;
8571 : :
8572 : 11949 : FOR_EACH_EDGE (e, ei, bb->preds)
8573 : 6669 : fprintf (file, "bb_%d ", e->src->index);
8574 : 5280 : }
8575 : :
8576 : :
8577 : : /* Print on FILE the indexes for the successors of basic_block BB. */
8578 : :
8579 : : static void
8580 : 5280 : print_succ_bbs (FILE *file, basic_block bb)
8581 : : {
8582 : 5280 : edge e;
8583 : 5280 : edge_iterator ei;
8584 : :
8585 : 12042 : FOR_EACH_EDGE (e, ei, bb->succs)
8586 : 6762 : fprintf (file, "bb_%d ", e->dest->index);
8587 : 5280 : }
8588 : :
8589 : : /* Print to FILE the basic block BB following the VERBOSITY level. */
8590 : :
8591 : : void
8592 : 5280 : print_loops_bb (FILE *file, basic_block bb, int indent, int verbosity)
8593 : : {
8594 : 5280 : char *s_indent = (char *) alloca ((size_t) indent + 1);
8595 : 5280 : memset ((void *) s_indent, ' ', (size_t) indent);
8596 : 5280 : s_indent[indent] = '\0';
8597 : :
8598 : : /* Print basic_block's header. */
8599 : 5280 : if (verbosity >= 2)
8600 : : {
8601 : 5280 : fprintf (file, "%s bb_%d (preds = {", s_indent, bb->index);
8602 : 5280 : print_pred_bbs (file, bb);
8603 : 5280 : fprintf (file, "}, succs = {");
8604 : 5280 : print_succ_bbs (file, bb);
8605 : 5280 : fprintf (file, "})\n");
8606 : : }
8607 : :
8608 : : /* Print basic_block's body. */
8609 : 5280 : if (verbosity >= 3)
8610 : : {
8611 : 2885 : fprintf (file, "%s {\n", s_indent);
8612 : 2885 : dump_bb (file, bb, indent + 4, TDF_VOPS|TDF_MEMSYMS);
8613 : 2885 : fprintf (file, "%s }\n", s_indent);
8614 : : }
8615 : 5280 : }
8616 : :
8617 : : /* Print loop information. */
8618 : :
8619 : : void
8620 : 8605 : print_loop_info (FILE *file, const class loop *loop, const char *prefix)
8621 : : {
8622 : 8605 : if (loop->can_be_parallel)
8623 : 0 : fprintf (file, ", can_be_parallel");
8624 : 8605 : if (loop->warned_aggressive_loop_optimizations)
8625 : 0 : fprintf (file, ", warned_aggressive_loop_optimizations");
8626 : 8605 : if (loop->dont_vectorize)
8627 : 1 : fprintf (file, ", dont_vectorize");
8628 : 8605 : if (loop->force_vectorize)
8629 : 0 : fprintf (file, ", force_vectorize");
8630 : 8605 : if (loop->in_oacc_kernels_region)
8631 : 181 : fprintf (file, ", in_oacc_kernels_region");
8632 : 8605 : if (loop->finite_p)
8633 : 1913 : fprintf (file, ", finite_p");
8634 : 8605 : if (loop->unroll)
8635 : 68 : fprintf (file, "\n%sunroll %d", prefix, loop->unroll);
8636 : 8605 : if (loop->nb_iterations)
8637 : : {
8638 : 40 : fprintf (file, "\n%sniter ", prefix);
8639 : 40 : print_generic_expr (file, loop->nb_iterations);
8640 : : }
8641 : :
8642 : 8605 : if (loop->any_upper_bound)
8643 : : {
8644 : 1867 : fprintf (file, "\n%supper_bound ", prefix);
8645 : 1867 : print_decu (loop->nb_iterations_upper_bound, file);
8646 : : }
8647 : 8605 : if (loop->any_likely_upper_bound)
8648 : : {
8649 : 1867 : fprintf (file, "\n%slikely_upper_bound ", prefix);
8650 : 1867 : print_decu (loop->nb_iterations_likely_upper_bound, file);
8651 : : }
8652 : :
8653 : 8605 : if (loop->any_estimate)
8654 : : {
8655 : 916 : fprintf (file, "\n%sestimate ", prefix);
8656 : 916 : print_decu (loop->nb_iterations_estimate, file);
8657 : : }
8658 : 8605 : bool reliable;
8659 : 8605 : sreal iterations;
8660 : 8605 : if (loop->num && expected_loop_iterations_by_profile (loop, &iterations, &reliable))
8661 : : {
8662 : 4836 : fprintf (file, "\n%siterations by profile: %f (%s%s) entry count:", prefix,
8663 : : iterations.to_double (), reliable ? "reliable" : "unreliable",
8664 : 2200 : maybe_flat_loop_profile (loop) ? ", maybe flat" : "");
8665 : 2200 : loop_count_in (loop).dump (file, cfun);
8666 : : }
8667 : :
8668 : 8605 : }
8669 : :
8670 : : static void print_loop_and_siblings (FILE *, class loop *, int, int);
8671 : :
8672 : : /* Pretty print LOOP on FILE, indented INDENT spaces. Following
8673 : : VERBOSITY level this outputs the contents of the loop, or just its
8674 : : structure. */
8675 : :
8676 : : static void
8677 : 1248 : print_loop (FILE *file, class loop *loop, int indent, int verbosity)
8678 : : {
8679 : 1248 : char *s_indent;
8680 : 1248 : basic_block bb;
8681 : :
8682 : 1248 : if (loop == NULL)
8683 : : return;
8684 : :
8685 : 1248 : s_indent = (char *) alloca ((size_t) indent + 1);
8686 : 1248 : memset ((void *) s_indent, ' ', (size_t) indent);
8687 : 1248 : s_indent[indent] = '\0';
8688 : :
8689 : : /* Print loop's header. */
8690 : 1248 : fprintf (file, "%sloop_%d (", s_indent, loop->num);
8691 : 1248 : if (loop->header)
8692 : 1248 : fprintf (file, "header = %d", loop->header->index);
8693 : : else
8694 : : {
8695 : 0 : fprintf (file, "deleted)\n");
8696 : 0 : return;
8697 : : }
8698 : 1248 : if (loop->latch)
8699 : 1248 : fprintf (file, ", latch = %d", loop->latch->index);
8700 : : else
8701 : 0 : fprintf (file, ", multiple latches");
8702 : 1248 : print_loop_info (file, loop, s_indent);
8703 : 1248 : fprintf (file, ")\n");
8704 : :
8705 : : /* Print loop's body. */
8706 : 1248 : if (verbosity >= 1)
8707 : : {
8708 : 1248 : fprintf (file, "%s{\n", s_indent);
8709 : 21050 : FOR_EACH_BB_FN (bb, cfun)
8710 : 19802 : if (bb->loop_father == loop)
8711 : 4790 : print_loops_bb (file, bb, indent, verbosity);
8712 : :
8713 : 1248 : print_loop_and_siblings (file, loop->inner, indent + 2, verbosity);
8714 : 1248 : fprintf (file, "%s}\n", s_indent);
8715 : : }
8716 : : }
8717 : :
8718 : : /* Print the LOOP and its sibling loops on FILE, indented INDENT
8719 : : spaces. Following VERBOSITY level this outputs the contents of the
8720 : : loop, or just its structure. */
8721 : :
8722 : : static void
8723 : 1248 : print_loop_and_siblings (FILE *file, class loop *loop, int indent,
8724 : : int verbosity)
8725 : : {
8726 : 2120 : if (loop == NULL)
8727 : 1248 : return;
8728 : :
8729 : 1248 : print_loop (file, loop, indent, verbosity);
8730 : 376 : print_loop_and_siblings (file, loop->next, indent, verbosity);
8731 : : }
8732 : :
8733 : : /* Follow a CFG edge from the entry point of the program, and on entry
8734 : : of a loop, pretty print the loop structure on FILE. */
8735 : :
8736 : : void
8737 : 376 : print_loops (FILE *file, int verbosity)
8738 : : {
8739 : 376 : basic_block bb;
8740 : :
8741 : 376 : bb = ENTRY_BLOCK_PTR_FOR_FN (cfun);
8742 : 376 : fprintf (file, "\nLoops in function: %s\n", current_function_name ());
8743 : 376 : if (bb && bb->loop_father)
8744 : 752 : print_loop_and_siblings (file, bb->loop_father, 0, verbosity);
8745 : 376 : }
8746 : :
8747 : : /* Dump a loop. */
8748 : :
8749 : : DEBUG_FUNCTION void
8750 : 0 : debug (class loop &ref)
8751 : : {
8752 : 0 : print_loop (stderr, &ref, 0, /*verbosity*/0);
8753 : 0 : }
8754 : :
8755 : : DEBUG_FUNCTION void
8756 : 0 : debug (class loop *ptr)
8757 : : {
8758 : 0 : if (ptr)
8759 : 0 : debug (*ptr);
8760 : : else
8761 : 0 : fprintf (stderr, "<nil>\n");
8762 : 0 : }
8763 : :
8764 : : /* Dump a loop verbosely. */
8765 : :
8766 : : DEBUG_FUNCTION void
8767 : 0 : debug_verbose (class loop &ref)
8768 : : {
8769 : 0 : print_loop (stderr, &ref, 0, /*verbosity*/3);
8770 : 0 : }
8771 : :
8772 : : DEBUG_FUNCTION void
8773 : 0 : debug_verbose (class loop *ptr)
8774 : : {
8775 : 0 : if (ptr)
8776 : 0 : debug (*ptr);
8777 : : else
8778 : 0 : fprintf (stderr, "<nil>\n");
8779 : 0 : }
8780 : :
8781 : :
8782 : : /* Debugging loops structure at tree level, at some VERBOSITY level. */
8783 : :
8784 : : DEBUG_FUNCTION void
8785 : 0 : debug_loops (int verbosity)
8786 : : {
8787 : 0 : print_loops (stderr, verbosity);
8788 : 0 : }
8789 : :
8790 : : /* Print on stderr the code of LOOP, at some VERBOSITY level. */
8791 : :
8792 : : DEBUG_FUNCTION void
8793 : 0 : debug_loop (class loop *loop, int verbosity)
8794 : : {
8795 : 0 : print_loop (stderr, loop, 0, verbosity);
8796 : 0 : }
8797 : :
8798 : : /* Print on stderr the code of loop number NUM, at some VERBOSITY
8799 : : level. */
8800 : :
8801 : : DEBUG_FUNCTION void
8802 : 0 : debug_loop_num (unsigned num, int verbosity)
8803 : : {
8804 : 0 : debug_loop (get_loop (cfun, num), verbosity);
8805 : 0 : }
8806 : :
8807 : : /* Return true if BB ends with a call, possibly followed by some
8808 : : instructions that must stay with the call. Return false,
8809 : : otherwise. */
8810 : :
8811 : : static bool
8812 : 3 : gimple_block_ends_with_call_p (basic_block bb)
8813 : : {
8814 : 3 : gimple_stmt_iterator gsi = gsi_last_nondebug_bb (bb);
8815 : 3 : return !gsi_end_p (gsi) && is_gimple_call (gsi_stmt (gsi));
8816 : : }
8817 : :
8818 : :
8819 : : /* Return true if BB ends with a conditional branch. Return false,
8820 : : otherwise. */
8821 : :
8822 : : static bool
8823 : 1717 : gimple_block_ends_with_condjump_p (const_basic_block bb)
8824 : : {
8825 : 3434 : return safe_is_a <gcond *> (*gsi_last_bb (const_cast <basic_block> (bb)));
8826 : : }
8827 : :
8828 : :
8829 : : /* Return true if statement T may terminate execution of BB in ways not
8830 : : explicitly represtented in the CFG. */
8831 : :
8832 : : bool
8833 : 332219425 : stmt_can_terminate_bb_p (gimple *t)
8834 : : {
8835 : 332219425 : tree fndecl = NULL_TREE;
8836 : 332219425 : int call_flags = 0;
8837 : :
8838 : : /* Eh exception not handled internally terminates execution of the whole
8839 : : function. */
8840 : 332219425 : if (stmt_can_throw_external (cfun, t))
8841 : : return true;
8842 : :
8843 : : /* NORETURN and LONGJMP calls already have an edge to exit.
8844 : : CONST and PURE calls do not need one.
8845 : : We don't currently check for CONST and PURE here, although
8846 : : it would be a good idea, because those attributes are
8847 : : figured out from the RTL in mark_constant_function, and
8848 : : the counter incrementation code from -fprofile-arcs
8849 : : leads to different results from -fbranch-probabilities. */
8850 : 326426938 : if (is_gimple_call (t))
8851 : : {
8852 : 10582621 : fndecl = gimple_call_fndecl (t);
8853 : 10582621 : call_flags = gimple_call_flags (t);
8854 : : }
8855 : :
8856 : 326426938 : if (is_gimple_call (t)
8857 : 10582621 : && fndecl
8858 : 9072696 : && fndecl_built_in_p (fndecl)
8859 : : && (call_flags & ECF_NOTHROW)
8860 : 3674124 : && !(call_flags & ECF_RETURNS_TWICE)
8861 : : /* fork() doesn't really return twice, but the effect of
8862 : : wrapping it in __gcov_fork() which calls __gcov_dump() and
8863 : : __gcov_reset() and clears the counters before forking has the same
8864 : : effect as returning twice. Force a fake edge. */
8865 : 329712684 : && !fndecl_built_in_p (fndecl, BUILT_IN_FORK))
8866 : : return false;
8867 : :
8868 : 323141320 : if (is_gimple_call (t))
8869 : : {
8870 : 7297003 : edge_iterator ei;
8871 : 7297003 : edge e;
8872 : 7297003 : basic_block bb;
8873 : :
8874 : 7297003 : if (call_flags & (ECF_PURE | ECF_CONST)
8875 : 1541162 : && !(call_flags & ECF_LOOPING_CONST_OR_PURE))
8876 : 6549027 : return false;
8877 : :
8878 : : /* Function call may do longjmp, terminate program or do other things.
8879 : : Special case noreturn that have non-abnormal edges out as in this case
8880 : : the fact is sufficiently represented by lack of edges out of T. */
8881 : 5846444 : if (!(call_flags & ECF_NORETURN))
8882 : : return true;
8883 : :
8884 : 823125 : bb = gimple_bb (t);
8885 : 1571069 : FOR_EACH_EDGE (e, ei, bb->succs)
8886 : 823093 : if ((e->flags & EDGE_FAKE) == 0)
8887 : : return true;
8888 : : }
8889 : :
8890 : 316592293 : if (gasm *asm_stmt = dyn_cast <gasm *> (t))
8891 : 227884 : if (gimple_asm_volatile_p (asm_stmt) || gimple_asm_basic_p (asm_stmt))
8892 : : return true;
8893 : :
8894 : : return false;
8895 : : }
8896 : :
8897 : :
8898 : : /* Add fake edges to the function exit for any non constant and non
8899 : : noreturn calls (or noreturn calls with EH/abnormal edges),
8900 : : volatile inline assembly in the bitmap of blocks specified by BLOCKS
8901 : : or to the whole CFG if BLOCKS is zero. Return the number of blocks
8902 : : that were split.
8903 : :
8904 : : The goal is to expose cases in which entering a basic block does
8905 : : not imply that all subsequent instructions must be executed. */
8906 : :
8907 : : static int
8908 : 2230 : gimple_flow_call_edges_add (sbitmap blocks)
8909 : : {
8910 : 2230 : int i;
8911 : 2230 : int blocks_split = 0;
8912 : 2230 : int last_bb = last_basic_block_for_fn (cfun);
8913 : 2230 : bool check_last_block = false;
8914 : :
8915 : 2230 : if (n_basic_blocks_for_fn (cfun) == NUM_FIXED_BLOCKS)
8916 : : return 0;
8917 : :
8918 : 2230 : if (! blocks)
8919 : : check_last_block = true;
8920 : : else
8921 : 0 : check_last_block = bitmap_bit_p (blocks,
8922 : 0 : EXIT_BLOCK_PTR_FOR_FN (cfun)->prev_bb->index);
8923 : :
8924 : : /* In the last basic block, before epilogue generation, there will be
8925 : : a fallthru edge to EXIT. Special care is required if the last insn
8926 : : of the last basic block is a call because make_edge folds duplicate
8927 : : edges, which would result in the fallthru edge also being marked
8928 : : fake, which would result in the fallthru edge being removed by
8929 : : remove_fake_edges, which would result in an invalid CFG.
8930 : :
8931 : : Moreover, we can't elide the outgoing fake edge, since the block
8932 : : profiler needs to take this into account in order to solve the minimal
8933 : : spanning tree in the case that the call doesn't return.
8934 : :
8935 : : Handle this by adding a dummy instruction in a new last basic block. */
8936 : 0 : if (check_last_block)
8937 : : {
8938 : 2230 : basic_block bb = EXIT_BLOCK_PTR_FOR_FN (cfun)->prev_bb;
8939 : 2230 : gimple_stmt_iterator gsi = gsi_last_nondebug_bb (bb);
8940 : 2230 : gimple *t = NULL;
8941 : :
8942 : 2230 : if (!gsi_end_p (gsi))
8943 : 2226 : t = gsi_stmt (gsi);
8944 : :
8945 : 2226 : if (t && stmt_can_terminate_bb_p (t))
8946 : : {
8947 : 131 : edge e;
8948 : :
8949 : 131 : e = find_edge (bb, EXIT_BLOCK_PTR_FOR_FN (cfun));
8950 : 131 : if (e)
8951 : : {
8952 : 0 : gsi_insert_on_edge (e, gimple_build_nop ());
8953 : 0 : gsi_commit_edge_inserts ();
8954 : : }
8955 : : }
8956 : : }
8957 : :
8958 : : /* Now add fake edges to the function exit for any non constant
8959 : : calls since there is no way that we can determine if they will
8960 : : return or not... */
8961 : 16052 : for (i = 0; i < last_bb; i++)
8962 : : {
8963 : 13822 : basic_block bb = BASIC_BLOCK_FOR_FN (cfun, i);
8964 : 13822 : gimple_stmt_iterator gsi;
8965 : 13822 : gimple *stmt, *last_stmt;
8966 : :
8967 : 13822 : if (!bb)
8968 : 6 : continue;
8969 : :
8970 : 13816 : if (blocks && !bitmap_bit_p (blocks, i))
8971 : 0 : continue;
8972 : :
8973 : 13816 : gsi = gsi_last_nondebug_bb (bb);
8974 : 13816 : if (!gsi_end_p (gsi))
8975 : : {
8976 : 21520 : last_stmt = gsi_stmt (gsi);
8977 : 21520 : do
8978 : : {
8979 : 21520 : stmt = gsi_stmt (gsi);
8980 : 21520 : if (stmt_can_terminate_bb_p (stmt))
8981 : : {
8982 : 3157 : edge e;
8983 : :
8984 : : /* The handling above of the final block before the
8985 : : epilogue should be enough to verify that there is
8986 : : no edge to the exit block in CFG already.
8987 : : Calling make_edge in such case would cause us to
8988 : : mark that edge as fake and remove it later. */
8989 : 3157 : if (flag_checking && stmt == last_stmt)
8990 : : {
8991 : 878 : e = find_edge (bb, EXIT_BLOCK_PTR_FOR_FN (cfun));
8992 : 878 : gcc_assert (e == NULL);
8993 : : }
8994 : :
8995 : : /* Note that the following may create a new basic block
8996 : : and renumber the existing basic blocks. */
8997 : 3157 : if (stmt != last_stmt)
8998 : : {
8999 : 2279 : e = split_block (bb, stmt);
9000 : 2279 : if (e)
9001 : 2279 : blocks_split++;
9002 : : }
9003 : 3157 : e = make_edge (bb, EXIT_BLOCK_PTR_FOR_FN (cfun), EDGE_FAKE);
9004 : 3157 : e->probability = profile_probability::guessed_never ();
9005 : : }
9006 : 21520 : gsi_prev (&gsi);
9007 : : }
9008 : 21520 : while (!gsi_end_p (gsi));
9009 : : }
9010 : : }
9011 : :
9012 : 2230 : if (blocks_split)
9013 : 955 : checking_verify_flow_info ();
9014 : :
9015 : : return blocks_split;
9016 : : }
9017 : :
9018 : : /* Removes edge E and all the blocks dominated by it, and updates dominance
9019 : : information. The IL in E->src needs to be updated separately.
9020 : : If dominance info is not available, only the edge E is removed.*/
9021 : :
9022 : : void
9023 : 3028452 : remove_edge_and_dominated_blocks (edge e)
9024 : : {
9025 : 3028452 : vec<basic_block> bbs_to_fix_dom = vNULL;
9026 : 3028452 : edge f;
9027 : 3028452 : edge_iterator ei;
9028 : 3028452 : bool none_removed = false;
9029 : 3028452 : unsigned i;
9030 : 3028452 : basic_block bb, dbb;
9031 : 3028452 : bitmap_iterator bi;
9032 : :
9033 : : /* If we are removing a path inside a non-root loop that may change
9034 : : loop ownership of blocks or remove loops. Mark loops for fixup. */
9035 : 3028452 : class loop *src_loop = e->src->loop_father;
9036 : 3028452 : if (current_loops
9037 : 2798083 : && loop_outer (src_loop) != NULL
9038 : 3609483 : && src_loop == e->dest->loop_father)
9039 : : {
9040 : 230968 : loops_state_set (LOOPS_NEED_FIXUP);
9041 : : /* If we are removing a backedge clear the number of iterations
9042 : : and estimates. */
9043 : 230968 : class loop *dest_loop = e->dest->loop_father;
9044 : 230968 : if (e->dest == src_loop->header
9045 : 230968 : || (e->dest == dest_loop->header
9046 : 0 : && flow_loop_nested_p (dest_loop, src_loop)))
9047 : : {
9048 : 9047 : free_numbers_of_iterations_estimates (dest_loop);
9049 : : /* If we removed the last backedge mark the loop for removal. */
9050 : 26952 : FOR_EACH_EDGE (f, ei, dest_loop->header->preds)
9051 : 18344 : if (f != e
9052 : 18344 : && (f->src->loop_father == dest_loop
9053 : 9027 : || flow_loop_nested_p (dest_loop, f->src->loop_father)))
9054 : : break;
9055 : 9047 : if (!f)
9056 : 8608 : mark_loop_for_removal (dest_loop);
9057 : : }
9058 : : }
9059 : :
9060 : 3028452 : if (!dom_info_available_p (CDI_DOMINATORS))
9061 : : {
9062 : 2824524 : remove_edge (e);
9063 : 5649048 : return;
9064 : : }
9065 : :
9066 : : /* No updating is needed for edges to exit. */
9067 : 203928 : if (e->dest == EXIT_BLOCK_PTR_FOR_FN (cfun))
9068 : : {
9069 : 0 : if (cfgcleanup_altered_bbs)
9070 : 0 : bitmap_set_bit (cfgcleanup_altered_bbs, e->src->index);
9071 : 0 : remove_edge (e);
9072 : 0 : return;
9073 : : }
9074 : :
9075 : : /* First, we find the basic blocks to remove. If E->dest has a predecessor
9076 : : that is not dominated by E->dest, then this set is empty. Otherwise,
9077 : : all the basic blocks dominated by E->dest are removed.
9078 : :
9079 : : Also, to DF_IDOM we store the immediate dominators of the blocks in
9080 : : the dominance frontier of E (i.e., of the successors of the
9081 : : removed blocks, if there are any, and of E->dest otherwise). */
9082 : 220063 : FOR_EACH_EDGE (f, ei, e->dest->preds)
9083 : : {
9084 : 215847 : if (f == e)
9085 : 16094 : continue;
9086 : :
9087 : 199753 : if (!dominated_by_p (CDI_DOMINATORS, f->src, e->dest))
9088 : : {
9089 : : none_removed = true;
9090 : : break;
9091 : : }
9092 : : }
9093 : :
9094 : 203928 : auto_bitmap df, df_idom;
9095 : 203928 : auto_vec<basic_block> bbs_to_remove;
9096 : 203928 : if (none_removed)
9097 : 199712 : bitmap_set_bit (df_idom,
9098 : 199712 : get_immediate_dominator (CDI_DOMINATORS, e->dest)->index);
9099 : : else
9100 : : {
9101 : 4216 : bbs_to_remove = get_all_dominated_blocks (CDI_DOMINATORS, e->dest);
9102 : 10010 : FOR_EACH_VEC_ELT (bbs_to_remove, i, bb)
9103 : : {
9104 : 11825 : FOR_EACH_EDGE (f, ei, bb->succs)
9105 : : {
9106 : 6031 : if (f->dest != EXIT_BLOCK_PTR_FOR_FN (cfun))
9107 : 6029 : bitmap_set_bit (df, f->dest->index);
9108 : : }
9109 : : }
9110 : 10010 : FOR_EACH_VEC_ELT (bbs_to_remove, i, bb)
9111 : 5794 : bitmap_clear_bit (df, bb->index);
9112 : :
9113 : 8240 : EXECUTE_IF_SET_IN_BITMAP (df, 0, i, bi)
9114 : : {
9115 : 4024 : bb = BASIC_BLOCK_FOR_FN (cfun, i);
9116 : 4024 : bitmap_set_bit (df_idom,
9117 : 4024 : get_immediate_dominator (CDI_DOMINATORS, bb)->index);
9118 : : }
9119 : : }
9120 : :
9121 : 203928 : if (cfgcleanup_altered_bbs)
9122 : : {
9123 : : /* Record the set of the altered basic blocks. */
9124 : 20907 : bitmap_set_bit (cfgcleanup_altered_bbs, e->src->index);
9125 : 20907 : bitmap_ior_into (cfgcleanup_altered_bbs, df);
9126 : : }
9127 : :
9128 : : /* Remove E and the cancelled blocks. */
9129 : 203928 : if (none_removed)
9130 : 199712 : remove_edge (e);
9131 : : else
9132 : : {
9133 : : /* Walk backwards so as to get a chance to substitute all
9134 : : released DEFs into debug stmts. See
9135 : : eliminate_unnecessary_stmts() in tree-ssa-dce.cc for more
9136 : : details. */
9137 : 14226 : for (i = bbs_to_remove.length (); i-- > 0; )
9138 : 5794 : delete_basic_block (bbs_to_remove[i]);
9139 : : }
9140 : :
9141 : : /* Update the dominance information. The immediate dominator may change only
9142 : : for blocks whose immediate dominator belongs to DF_IDOM:
9143 : :
9144 : : Suppose that idom(X) = Y before removal of E and idom(X) != Y after the
9145 : : removal. Let Z the arbitrary block such that idom(Z) = Y and
9146 : : Z dominates X after the removal. Before removal, there exists a path P
9147 : : from Y to X that avoids Z. Let F be the last edge on P that is
9148 : : removed, and let W = F->dest. Before removal, idom(W) = Y (since Y
9149 : : dominates W, and because of P, Z does not dominate W), and W belongs to
9150 : : the dominance frontier of E. Therefore, Y belongs to DF_IDOM. */
9151 : 406991 : EXECUTE_IF_SET_IN_BITMAP (df_idom, 0, i, bi)
9152 : : {
9153 : 203063 : bb = BASIC_BLOCK_FOR_FN (cfun, i);
9154 : 203063 : for (dbb = first_dom_son (CDI_DOMINATORS, bb);
9155 : 713888 : dbb;
9156 : 510825 : dbb = next_dom_son (CDI_DOMINATORS, dbb))
9157 : 510825 : bbs_to_fix_dom.safe_push (dbb);
9158 : : }
9159 : :
9160 : 203928 : iterate_fix_dominators (CDI_DOMINATORS, bbs_to_fix_dom, true);
9161 : :
9162 : 203928 : bbs_to_fix_dom.release ();
9163 : 203928 : }
9164 : :
9165 : : /* Purge dead EH edges from basic block BB. */
9166 : :
9167 : : bool
9168 : 406321144 : gimple_purge_dead_eh_edges (basic_block bb)
9169 : : {
9170 : 406321144 : bool changed = false;
9171 : 406321144 : edge e;
9172 : 406321144 : edge_iterator ei;
9173 : 406321144 : gimple *stmt = *gsi_last_bb (bb);
9174 : :
9175 : 406321144 : if (stmt && stmt_can_throw_internal (cfun, stmt))
9176 : : return false;
9177 : :
9178 : 872545390 : for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
9179 : : {
9180 : 506455844 : if (e->flags & EDGE_EH)
9181 : : {
9182 : 743667 : remove_edge_and_dominated_blocks (e);
9183 : 743667 : changed = true;
9184 : : }
9185 : : else
9186 : 505712177 : ei_next (&ei);
9187 : : }
9188 : :
9189 : : return changed;
9190 : : }
9191 : :
9192 : : /* Purge dead EH edges from basic block listed in BLOCKS. */
9193 : :
9194 : : bool
9195 : 6662651 : gimple_purge_all_dead_eh_edges (const_bitmap blocks)
9196 : : {
9197 : 6662651 : bool changed = false;
9198 : 6662651 : unsigned i;
9199 : 6662651 : bitmap_iterator bi;
9200 : :
9201 : 6848872 : EXECUTE_IF_SET_IN_BITMAP (blocks, 0, i, bi)
9202 : : {
9203 : 186221 : basic_block bb = BASIC_BLOCK_FOR_FN (cfun, i);
9204 : :
9205 : : /* Earlier gimple_purge_dead_eh_edges could have removed
9206 : : this basic block already. */
9207 : 186221 : gcc_assert (bb || changed);
9208 : 186221 : if (bb != NULL)
9209 : 186220 : changed |= gimple_purge_dead_eh_edges (bb);
9210 : : }
9211 : :
9212 : 6662651 : return changed;
9213 : : }
9214 : :
9215 : : /* Purge dead abnormal call edges from basic block BB. */
9216 : :
9217 : : bool
9218 : 76932639 : gimple_purge_dead_abnormal_call_edges (basic_block bb)
9219 : : {
9220 : 76932639 : bool changed = false;
9221 : 76932639 : edge e;
9222 : 76932639 : edge_iterator ei;
9223 : 76932639 : gimple *stmt = *gsi_last_bb (bb);
9224 : :
9225 : 76932639 : if (stmt && stmt_can_make_abnormal_goto (stmt))
9226 : : return false;
9227 : :
9228 : 182119906 : for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
9229 : : {
9230 : 105231145 : if (e->flags & EDGE_ABNORMAL)
9231 : : {
9232 : 1294 : if (e->flags & EDGE_FALLTHRU)
9233 : 0 : e->flags &= ~EDGE_ABNORMAL;
9234 : : else
9235 : 1294 : remove_edge_and_dominated_blocks (e);
9236 : : changed = true;
9237 : : }
9238 : : else
9239 : 105229851 : ei_next (&ei);
9240 : : }
9241 : :
9242 : : return changed;
9243 : : }
9244 : :
9245 : : /* Purge dead abnormal call edges from basic block listed in BLOCKS. */
9246 : :
9247 : : bool
9248 : 5225066 : gimple_purge_all_dead_abnormal_call_edges (const_bitmap blocks)
9249 : : {
9250 : 5225066 : bool changed = false;
9251 : 5225066 : unsigned i;
9252 : 5225066 : bitmap_iterator bi;
9253 : :
9254 : 5225078 : EXECUTE_IF_SET_IN_BITMAP (blocks, 0, i, bi)
9255 : : {
9256 : 12 : basic_block bb = BASIC_BLOCK_FOR_FN (cfun, i);
9257 : :
9258 : : /* Earlier gimple_purge_dead_abnormal_call_edges could have removed
9259 : : this basic block already. */
9260 : 12 : gcc_assert (bb || changed);
9261 : 12 : if (bb != NULL)
9262 : 12 : changed |= gimple_purge_dead_abnormal_call_edges (bb);
9263 : : }
9264 : :
9265 : 5225066 : return changed;
9266 : : }
9267 : :
9268 : : /* This function is called whenever a new edge is created or
9269 : : redirected. */
9270 : :
9271 : : static void
9272 : 143746496 : gimple_execute_on_growing_pred (edge e)
9273 : : {
9274 : 143746496 : basic_block bb = e->dest;
9275 : :
9276 : 143746496 : if (!gimple_seq_empty_p (phi_nodes (bb)))
9277 : 27371971 : reserve_phi_args_for_new_edge (bb);
9278 : 143746496 : }
9279 : :
9280 : : /* This function is called immediately before edge E is removed from
9281 : : the edge vector E->dest->preds. */
9282 : :
9283 : : static void
9284 : 117270747 : gimple_execute_on_shrinking_pred (edge e)
9285 : : {
9286 : 117270747 : if (!gimple_seq_empty_p (phi_nodes (e->dest)))
9287 : 29824287 : remove_phi_args (e);
9288 : 117270747 : }
9289 : :
9290 : : /*---------------------------------------------------------------------------
9291 : : Helper functions for Loop versioning
9292 : : ---------------------------------------------------------------------------*/
9293 : :
9294 : : /* Adjust phi nodes for 'first' basic block. 'second' basic block is a copy
9295 : : of 'first'. Both of them are dominated by 'new_head' basic block. When
9296 : : 'new_head' was created by 'second's incoming edge it received phi arguments
9297 : : on the edge by split_edge(). Later, additional edge 'e' was created to
9298 : : connect 'new_head' and 'first'. Now this routine adds phi args on this
9299 : : additional edge 'e' that new_head to second edge received as part of edge
9300 : : splitting. */
9301 : :
9302 : : static void
9303 : 32541 : gimple_lv_adjust_loop_header_phi (basic_block first, basic_block second,
9304 : : basic_block new_head, edge e)
9305 : : {
9306 : 32541 : gphi *phi1, *phi2;
9307 : 32541 : gphi_iterator psi1, psi2;
9308 : 32541 : tree def;
9309 : 32541 : edge e2 = find_edge (new_head, second);
9310 : :
9311 : : /* Because NEW_HEAD has been created by splitting SECOND's incoming
9312 : : edge, we should always have an edge from NEW_HEAD to SECOND. */
9313 : 32541 : gcc_assert (e2 != NULL);
9314 : :
9315 : : /* Browse all 'second' basic block phi nodes and add phi args to
9316 : : edge 'e' for 'first' head. PHI args are always in correct order. */
9317 : :
9318 : 32541 : for (psi2 = gsi_start_phis (second),
9319 : 32541 : psi1 = gsi_start_phis (first);
9320 : 124509 : !gsi_end_p (psi2) && !gsi_end_p (psi1);
9321 : 91968 : gsi_next (&psi2), gsi_next (&psi1))
9322 : : {
9323 : 91968 : phi1 = psi1.phi ();
9324 : 91968 : phi2 = psi2.phi ();
9325 : 91968 : def = PHI_ARG_DEF (phi2, e2->dest_idx);
9326 : 91968 : add_phi_arg (phi1, def, e, gimple_phi_arg_location_from_edge (phi2, e2));
9327 : : }
9328 : 32541 : }
9329 : :
9330 : :
9331 : : /* Adds a if else statement to COND_BB with condition COND_EXPR.
9332 : : SECOND_HEAD is the destination of the THEN and FIRST_HEAD is
9333 : : the destination of the ELSE part. */
9334 : :
9335 : : static void
9336 : 32541 : gimple_lv_add_condition_to_bb (basic_block first_head ATTRIBUTE_UNUSED,
9337 : : basic_block second_head ATTRIBUTE_UNUSED,
9338 : : basic_block cond_bb, void *cond_e)
9339 : : {
9340 : 32541 : gimple_stmt_iterator gsi;
9341 : 32541 : gimple *new_cond_expr;
9342 : 32541 : tree cond_expr = (tree) cond_e;
9343 : 32541 : edge e0;
9344 : :
9345 : : /* Build new conditional expr */
9346 : 32541 : gsi = gsi_last_bb (cond_bb);
9347 : :
9348 : 32541 : cond_expr = force_gimple_operand_gsi_1 (&gsi, cond_expr,
9349 : : is_gimple_condexpr_for_cond,
9350 : : NULL_TREE, false,
9351 : : GSI_CONTINUE_LINKING);
9352 : 32541 : new_cond_expr = gimple_build_cond_from_tree (cond_expr,
9353 : : NULL_TREE, NULL_TREE);
9354 : :
9355 : : /* Add new cond in cond_bb. */
9356 : 32541 : gsi_insert_after (&gsi, new_cond_expr, GSI_NEW_STMT);
9357 : :
9358 : : /* Adjust edges appropriately to connect new head with first head
9359 : : as well as second head. */
9360 : 32541 : e0 = single_succ_edge (cond_bb);
9361 : 32541 : e0->flags &= ~EDGE_FALLTHRU;
9362 : 32541 : e0->flags |= EDGE_FALSE_VALUE;
9363 : 32541 : }
9364 : :
9365 : :
9366 : : /* Do book-keeping of basic block BB for the profile consistency checker.
9367 : : Store the counting in RECORD. */
9368 : : static void
9369 : 0 : gimple_account_profile_record (basic_block bb,
9370 : : struct profile_record *record)
9371 : : {
9372 : 0 : gimple_stmt_iterator i;
9373 : 0 : for (i = gsi_start_nondebug_after_labels_bb (bb); !gsi_end_p (i);
9374 : 0 : gsi_next_nondebug (&i))
9375 : : {
9376 : 0 : record->size
9377 : 0 : += estimate_num_insns (gsi_stmt (i), &eni_size_weights);
9378 : 0 : if (profile_info)
9379 : : {
9380 : 0 : if (ENTRY_BLOCK_PTR_FOR_FN (cfun)->count.ipa ().initialized_p ()
9381 : 0 : && ENTRY_BLOCK_PTR_FOR_FN (cfun)->count.ipa ().nonzero_p ()
9382 : 0 : && bb->count.ipa ().initialized_p ())
9383 : 0 : record->time
9384 : 0 : += estimate_num_insns (gsi_stmt (i),
9385 : : &eni_time_weights)
9386 : 0 : * bb->count.ipa ().to_gcov_type ();
9387 : : }
9388 : 0 : else if (bb->count.initialized_p ()
9389 : 0 : && ENTRY_BLOCK_PTR_FOR_FN (cfun)->count.initialized_p ())
9390 : 0 : record->time
9391 : 0 : += estimate_num_insns
9392 : 0 : (gsi_stmt (i),
9393 : : &eni_time_weights)
9394 : 0 : * bb->count.to_sreal_scale
9395 : 0 : (ENTRY_BLOCK_PTR_FOR_FN (cfun)->count).to_double ();
9396 : : else
9397 : 0 : record->time
9398 : 0 : += estimate_num_insns (gsi_stmt (i), &eni_time_weights);
9399 : : }
9400 : 0 : }
9401 : :
9402 : : struct cfg_hooks gimple_cfg_hooks = {
9403 : : "gimple",
9404 : : gimple_verify_flow_info,
9405 : : gimple_dump_bb, /* dump_bb */
9406 : : gimple_dump_bb_for_graph, /* dump_bb_for_graph */
9407 : : create_bb, /* create_basic_block */
9408 : : gimple_redirect_edge_and_branch, /* redirect_edge_and_branch */
9409 : : gimple_redirect_edge_and_branch_force, /* redirect_edge_and_branch_force */
9410 : : gimple_can_remove_branch_p, /* can_remove_branch_p */
9411 : : remove_bb, /* delete_basic_block */
9412 : : gimple_split_block, /* split_block */
9413 : : gimple_move_block_after, /* move_block_after */
9414 : : gimple_can_merge_blocks_p, /* can_merge_blocks_p */
9415 : : gimple_merge_blocks, /* merge_blocks */
9416 : : gimple_predict_edge, /* predict_edge */
9417 : : gimple_predicted_by_p, /* predicted_by_p */
9418 : : gimple_can_duplicate_bb_p, /* can_duplicate_block_p */
9419 : : gimple_duplicate_bb, /* duplicate_block */
9420 : : gimple_split_edge, /* split_edge */
9421 : : gimple_make_forwarder_block, /* make_forward_block */
9422 : : NULL, /* tidy_fallthru_edge */
9423 : : NULL, /* force_nonfallthru */
9424 : : gimple_block_ends_with_call_p,/* block_ends_with_call_p */
9425 : : gimple_block_ends_with_condjump_p, /* block_ends_with_condjump_p */
9426 : : gimple_flow_call_edges_add, /* flow_call_edges_add */
9427 : : gimple_execute_on_growing_pred, /* execute_on_growing_pred */
9428 : : gimple_execute_on_shrinking_pred, /* execute_on_shrinking_pred */
9429 : : gimple_duplicate_loop_body_to_header_edge, /* duplicate loop for trees */
9430 : : gimple_lv_add_condition_to_bb, /* lv_add_condition_to_bb */
9431 : : gimple_lv_adjust_loop_header_phi, /* lv_adjust_loop_header_phi*/
9432 : : extract_true_false_edges_from_block, /* extract_cond_bb_edges */
9433 : : flush_pending_stmts, /* flush_pending_stmts */
9434 : : gimple_empty_block_p, /* block_empty_p */
9435 : : gimple_split_block_before_cond_jump, /* split_block_before_cond_jump */
9436 : : gimple_account_profile_record,
9437 : : };
9438 : :
9439 : :
9440 : : /* Split all critical edges. Split some extra (not necessarily critical) edges
9441 : : if FOR_EDGE_INSERTION_P is true. */
9442 : :
9443 : : unsigned int
9444 : 4046236 : split_critical_edges (bool for_edge_insertion_p /* = false */)
9445 : : {
9446 : 4046236 : basic_block bb;
9447 : 4046236 : edge e;
9448 : 4046236 : edge_iterator ei;
9449 : :
9450 : : /* split_edge can redirect edges out of SWITCH_EXPRs, which can get
9451 : : expensive. So we want to enable recording of edge to CASE_LABEL_EXPR
9452 : : mappings around the calls to split_edge. */
9453 : 4046236 : start_recording_case_labels ();
9454 : 70095173 : FOR_ALL_BB_FN (bb, cfun)
9455 : : {
9456 : 146457751 : FOR_EACH_EDGE (e, ei, bb->succs)
9457 : : {
9458 : 80408814 : if (EDGE_CRITICAL_P (e) && !(e->flags & EDGE_ABNORMAL))
9459 : 14221709 : split_edge (e);
9460 : : /* PRE inserts statements to edges and expects that
9461 : : since split_critical_edges was done beforehand, committing edge
9462 : : insertions will not split more edges. In addition to critical
9463 : : edges we must split edges that have multiple successors and
9464 : : end by control flow statements, such as RESX.
9465 : : Go ahead and split them too. This matches the logic in
9466 : : gimple_find_edge_insert_loc. */
9467 : 66187105 : else if (for_edge_insertion_p
9468 : 52097131 : && (!single_pred_p (e->dest)
9469 : 29086699 : || !gimple_seq_empty_p (phi_nodes (e->dest))
9470 : 28855426 : || e->dest == EXIT_BLOCK_PTR_FOR_FN (cfun))
9471 : 26212171 : && e->src != ENTRY_BLOCK_PTR_FOR_FN (cfun)
9472 : 92398903 : && !(e->flags & EDGE_ABNORMAL))
9473 : : {
9474 : 26197053 : gimple_stmt_iterator gsi;
9475 : :
9476 : 26197053 : gsi = gsi_last_bb (e->src);
9477 : 26197053 : if (!gsi_end_p (gsi)
9478 : 13037503 : && stmt_ends_bb_p (gsi_stmt (gsi))
9479 : 29375831 : && (gimple_code (gsi_stmt (gsi)) != GIMPLE_RETURN
9480 : 201564 : && !gimple_call_builtin_p (gsi_stmt (gsi),
9481 : : BUILT_IN_RETURN)))
9482 : 200516 : split_edge (e);
9483 : : }
9484 : : }
9485 : : }
9486 : 4046236 : end_recording_case_labels ();
9487 : 4046236 : return 0;
9488 : : }
9489 : :
9490 : : namespace {
9491 : :
9492 : : const pass_data pass_data_split_crit_edges =
9493 : : {
9494 : : GIMPLE_PASS, /* type */
9495 : : "crited", /* name */
9496 : : OPTGROUP_NONE, /* optinfo_flags */
9497 : : TV_TREE_SPLIT_EDGES, /* tv_id */
9498 : : PROP_cfg, /* properties_required */
9499 : : PROP_no_crit_edges, /* properties_provided */
9500 : : 0, /* properties_destroyed */
9501 : : 0, /* todo_flags_start */
9502 : : 0, /* todo_flags_finish */
9503 : : };
9504 : :
9505 : : class pass_split_crit_edges : public gimple_opt_pass
9506 : : {
9507 : : public:
9508 : 560228 : pass_split_crit_edges (gcc::context *ctxt)
9509 : 1120456 : : gimple_opt_pass (pass_data_split_crit_edges, ctxt)
9510 : : {}
9511 : :
9512 : : /* opt_pass methods: */
9513 : 998770 : unsigned int execute (function *) final override
9514 : : {
9515 : 998770 : return split_critical_edges ();
9516 : : }
9517 : :
9518 : 280114 : opt_pass * clone () final override
9519 : : {
9520 : 280114 : return new pass_split_crit_edges (m_ctxt);
9521 : : }
9522 : : }; // class pass_split_crit_edges
9523 : :
9524 : : } // anon namespace
9525 : :
9526 : : gimple_opt_pass *
9527 : 280114 : make_pass_split_crit_edges (gcc::context *ctxt)
9528 : : {
9529 : 280114 : return new pass_split_crit_edges (ctxt);
9530 : : }
9531 : :
9532 : :
9533 : : /* Insert COND expression which is GIMPLE_COND after STMT
9534 : : in basic block BB with appropriate basic block split
9535 : : and creation of a new conditionally executed basic block.
9536 : : Update profile so the new bb is visited with probability PROB.
9537 : : Return created basic block. */
9538 : : basic_block
9539 : 2079 : insert_cond_bb (basic_block bb, gimple *stmt, gimple *cond,
9540 : : profile_probability prob)
9541 : : {
9542 : 2079 : edge fall = split_block (bb, stmt);
9543 : 2079 : gimple_stmt_iterator iter = gsi_last_bb (bb);
9544 : 2079 : basic_block new_bb;
9545 : :
9546 : : /* Insert cond statement. */
9547 : 2079 : gcc_assert (gimple_code (cond) == GIMPLE_COND);
9548 : 2079 : if (gsi_end_p (iter))
9549 : 0 : gsi_insert_before (&iter, cond, GSI_CONTINUE_LINKING);
9550 : : else
9551 : 2079 : gsi_insert_after (&iter, cond, GSI_CONTINUE_LINKING);
9552 : :
9553 : : /* Create conditionally executed block. */
9554 : 2079 : new_bb = create_empty_bb (bb);
9555 : 2079 : edge e = make_edge (bb, new_bb, EDGE_TRUE_VALUE);
9556 : 2079 : e->probability = prob;
9557 : 2079 : new_bb->count = e->count ();
9558 : 2079 : make_single_succ_edge (new_bb, fall->dest, EDGE_FALLTHRU);
9559 : :
9560 : : /* Fix edge for split bb. */
9561 : 2079 : fall->flags = EDGE_FALSE_VALUE;
9562 : 2079 : fall->probability -= e->probability;
9563 : :
9564 : : /* Update dominance info. */
9565 : 2079 : if (dom_info_available_p (CDI_DOMINATORS))
9566 : : {
9567 : 2079 : set_immediate_dominator (CDI_DOMINATORS, new_bb, bb);
9568 : 2079 : set_immediate_dominator (CDI_DOMINATORS, fall->dest, bb);
9569 : : }
9570 : :
9571 : : /* Update loop info. */
9572 : 2079 : if (current_loops)
9573 : 2079 : add_bb_to_loop (new_bb, bb->loop_father);
9574 : :
9575 : 2079 : return new_bb;
9576 : : }
9577 : :
9578 : :
9579 : :
9580 : : /* Given a basic block B which ends with a conditional and has
9581 : : precisely two successors, determine which of the edges is taken if
9582 : : the conditional is true and which is taken if the conditional is
9583 : : false. Set TRUE_EDGE and FALSE_EDGE appropriately. */
9584 : :
9585 : : void
9586 : 769416670 : extract_true_false_edges_from_block (basic_block b,
9587 : : edge *true_edge,
9588 : : edge *false_edge)
9589 : : {
9590 : 769416670 : edge e = EDGE_SUCC (b, 0);
9591 : :
9592 : 769416670 : if (e->flags & EDGE_TRUE_VALUE)
9593 : : {
9594 : 734362876 : *true_edge = e;
9595 : 734362876 : *false_edge = EDGE_SUCC (b, 1);
9596 : : }
9597 : : else
9598 : : {
9599 : 35053794 : *false_edge = e;
9600 : 35053794 : *true_edge = EDGE_SUCC (b, 1);
9601 : : }
9602 : 769416670 : }
9603 : :
9604 : :
9605 : : /* From a controlling predicate in the immediate dominator DOM of
9606 : : PHIBLOCK determine the edges into PHIBLOCK that are chosen if the
9607 : : predicate evaluates to true and false and store them to
9608 : : *TRUE_CONTROLLED_EDGE and *FALSE_CONTROLLED_EDGE if
9609 : : they are non-NULL. Returns true if the edges can be determined,
9610 : : else return false. */
9611 : :
9612 : : bool
9613 : 150327 : extract_true_false_controlled_edges (basic_block dom, basic_block phiblock,
9614 : : edge *true_controlled_edge,
9615 : : edge *false_controlled_edge)
9616 : : {
9617 : 150327 : basic_block bb = phiblock;
9618 : 150327 : edge true_edge, false_edge, tem;
9619 : 150327 : edge e0 = NULL, e1 = NULL;
9620 : :
9621 : : /* We have to verify that one edge into the PHI node is dominated
9622 : : by the true edge of the predicate block and the other edge
9623 : : dominated by the false edge. This ensures that the PHI argument
9624 : : we are going to take is completely determined by the path we
9625 : : take from the predicate block.
9626 : : We can only use BB dominance checks below if the destination of
9627 : : the true/false edges are dominated by their edge, thus only
9628 : : have a single predecessor. */
9629 : 150327 : extract_true_false_edges_from_block (dom, &true_edge, &false_edge);
9630 : 150327 : tem = EDGE_PRED (bb, 0);
9631 : 150327 : if (tem == true_edge
9632 : 150327 : || (single_pred_p (true_edge->dest)
9633 : 112501 : && (tem->src == true_edge->dest
9634 : 80375 : || dominated_by_p (CDI_DOMINATORS,
9635 : : tem->src, true_edge->dest))))
9636 : : e0 = tem;
9637 : 60620 : else if (tem == false_edge
9638 : 60620 : || (single_pred_p (false_edge->dest)
9639 : 47951 : && (tem->src == false_edge->dest
9640 : 35177 : || dominated_by_p (CDI_DOMINATORS,
9641 : : tem->src, false_edge->dest))))
9642 : : e1 = tem;
9643 : : else
9644 : 26446 : return false;
9645 : 123881 : tem = EDGE_PRED (bb, 1);
9646 : 123881 : if (tem == true_edge
9647 : 123881 : || (single_pred_p (true_edge->dest)
9648 : 90685 : && (tem->src == true_edge->dest
9649 : 74390 : || dominated_by_p (CDI_DOMINATORS,
9650 : : tem->src, true_edge->dest))))
9651 : : e0 = tem;
9652 : 93586 : else if (tem == false_edge
9653 : 93586 : || (single_pred_p (false_edge->dest)
9654 : 71272 : && (tem->src == false_edge->dest
9655 : 23879 : || dominated_by_p (CDI_DOMINATORS,
9656 : : tem->src, false_edge->dest))))
9657 : : e1 = tem;
9658 : : else
9659 : 15933 : return false;
9660 : 107948 : if (!e0 || !e1)
9661 : : return false;
9662 : :
9663 : 107948 : if (true_controlled_edge)
9664 : 107948 : *true_controlled_edge = e0;
9665 : 107948 : if (false_controlled_edge)
9666 : 107948 : *false_controlled_edge = e1;
9667 : :
9668 : : return true;
9669 : : }
9670 : :
9671 : : /* Generate a range test LHS CODE RHS that determines whether INDEX is in the
9672 : : range [low, high]. Place associated stmts before *GSI. */
9673 : :
9674 : : void
9675 : 5568 : generate_range_test (basic_block bb, tree index, tree low, tree high,
9676 : : tree *lhs, tree *rhs)
9677 : : {
9678 : 5568 : tree type = TREE_TYPE (index);
9679 : 5568 : tree utype = range_check_type (type);
9680 : :
9681 : 5568 : low = fold_convert (utype, low);
9682 : 5568 : high = fold_convert (utype, high);
9683 : :
9684 : 5568 : gimple_seq seq = NULL;
9685 : 5568 : index = gimple_convert (&seq, utype, index);
9686 : 5568 : *lhs = gimple_build (&seq, MINUS_EXPR, utype, index, low);
9687 : 5568 : *rhs = const_binop (MINUS_EXPR, utype, high, low);
9688 : :
9689 : 5568 : gimple_stmt_iterator gsi = gsi_last_bb (bb);
9690 : 5568 : gsi_insert_seq_before (&gsi, seq, GSI_SAME_STMT);
9691 : 5568 : }
9692 : :
9693 : : /* Return the basic block that belongs to label numbered INDEX
9694 : : of a switch statement. */
9695 : :
9696 : : basic_block
9697 : 59242116 : gimple_switch_label_bb (function *ifun, gswitch *gs, unsigned index)
9698 : : {
9699 : 59242116 : return label_to_block (ifun, CASE_LABEL (gimple_switch_label (gs, index)));
9700 : : }
9701 : :
9702 : : /* Return the default basic block of a switch statement. */
9703 : :
9704 : : basic_block
9705 : 310760 : gimple_switch_default_bb (function *ifun, gswitch *gs)
9706 : : {
9707 : 310760 : return gimple_switch_label_bb (ifun, gs, 0);
9708 : : }
9709 : :
9710 : : /* Return the edge that belongs to label numbered INDEX
9711 : : of a switch statement. */
9712 : :
9713 : : edge
9714 : 1216119 : gimple_switch_edge (function *ifun, gswitch *gs, unsigned index)
9715 : : {
9716 : 1216119 : return find_edge (gimple_bb (gs), gimple_switch_label_bb (ifun, gs, index));
9717 : : }
9718 : :
9719 : : /* Return the default edge of a switch statement. */
9720 : :
9721 : : edge
9722 : 137600 : gimple_switch_default_edge (function *ifun, gswitch *gs)
9723 : : {
9724 : 137600 : return gimple_switch_edge (ifun, gs, 0);
9725 : : }
9726 : :
9727 : : /* Return true if the only executable statement in BB is a GIMPLE_COND. */
9728 : :
9729 : : bool
9730 : 13330 : cond_only_block_p (basic_block bb)
9731 : : {
9732 : : /* BB must have no executable statements. */
9733 : 13330 : gimple_stmt_iterator gsi = gsi_after_labels (bb);
9734 : 13330 : if (phi_nodes (bb))
9735 : : return false;
9736 : 30488 : while (!gsi_end_p (gsi))
9737 : : {
9738 : 17919 : gimple *stmt = gsi_stmt (gsi);
9739 : 17919 : if (is_gimple_debug (stmt))
9740 : : ;
9741 : 13330 : else if (gimple_code (stmt) == GIMPLE_NOP
9742 : : || gimple_code (stmt) == GIMPLE_PREDICT
9743 : : || gimple_code (stmt) == GIMPLE_COND)
9744 : : ;
9745 : : else
9746 : : return false;
9747 : 17158 : gsi_next (&gsi);
9748 : : }
9749 : : return true;
9750 : : }
9751 : :
9752 : :
9753 : : /* Emit return warnings. */
9754 : :
9755 : : namespace {
9756 : :
9757 : : const pass_data pass_data_warn_function_return =
9758 : : {
9759 : : GIMPLE_PASS, /* type */
9760 : : "*warn_function_return", /* name */
9761 : : OPTGROUP_NONE, /* optinfo_flags */
9762 : : TV_NONE, /* tv_id */
9763 : : PROP_cfg, /* properties_required */
9764 : : 0, /* properties_provided */
9765 : : 0, /* properties_destroyed */
9766 : : 0, /* todo_flags_start */
9767 : : 0, /* todo_flags_finish */
9768 : : };
9769 : :
9770 : : class pass_warn_function_return : public gimple_opt_pass
9771 : : {
9772 : : public:
9773 : 280114 : pass_warn_function_return (gcc::context *ctxt)
9774 : 560228 : : gimple_opt_pass (pass_data_warn_function_return, ctxt)
9775 : : {}
9776 : :
9777 : : /* opt_pass methods: */
9778 : : unsigned int execute (function *) final override;
9779 : :
9780 : : }; // class pass_warn_function_return
9781 : :
9782 : : unsigned int
9783 : 2682168 : pass_warn_function_return::execute (function *fun)
9784 : : {
9785 : 2682168 : location_t location;
9786 : 2682168 : gimple *last;
9787 : 2682168 : edge e;
9788 : 2682168 : edge_iterator ei;
9789 : :
9790 : 2682168 : if (!targetm.warn_func_return (fun->decl))
9791 : : return 0;
9792 : :
9793 : : /* If we have a path to EXIT, then we do return. */
9794 : 2682096 : if (TREE_THIS_VOLATILE (fun->decl)
9795 : 2682096 : && EDGE_COUNT (EXIT_BLOCK_PTR_FOR_FN (fun)->preds) > 0)
9796 : : {
9797 : 74 : location = UNKNOWN_LOCATION;
9798 : 74 : for (ei = ei_start (EXIT_BLOCK_PTR_FOR_FN (fun)->preds);
9799 : 115 : (e = ei_safe_edge (ei)); )
9800 : : {
9801 : 74 : last = *gsi_last_bb (e->src);
9802 : 74 : if ((gimple_code (last) == GIMPLE_RETURN
9803 : 0 : || gimple_call_builtin_p (last, BUILT_IN_RETURN))
9804 : 74 : && location == UNKNOWN_LOCATION
9805 : 74 : && ((location = LOCATION_LOCUS (gimple_location (last)))
9806 : : != UNKNOWN_LOCATION)
9807 : 146 : && !optimize)
9808 : : break;
9809 : : /* When optimizing, replace return stmts in noreturn functions
9810 : : with __builtin_unreachable () call. */
9811 : 41 : if (optimize && gimple_code (last) == GIMPLE_RETURN)
9812 : : {
9813 : 41 : location_t loc = gimple_location (last);
9814 : 41 : gimple *new_stmt = gimple_build_builtin_unreachable (loc);
9815 : 41 : gimple_stmt_iterator gsi = gsi_for_stmt (last);
9816 : 41 : gsi_replace (&gsi, new_stmt, true);
9817 : 41 : remove_edge (e);
9818 : : }
9819 : : else
9820 : 0 : ei_next (&ei);
9821 : : }
9822 : 74 : if (location == UNKNOWN_LOCATION)
9823 : 2 : location = cfun->function_end_locus;
9824 : 74 : warning_at (location, 0, "%<noreturn%> function does return");
9825 : : }
9826 : :
9827 : : /* If we see "return;" in some basic block, then we do reach the end
9828 : : without returning a value. */
9829 : 2682022 : else if (warn_return_type > 0
9830 : 1758477 : && !warning_suppressed_p (fun->decl, OPT_Wreturn_type)
9831 : 4437391 : && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (fun->decl))))
9832 : : {
9833 : 1837278 : FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR_FOR_FN (fun)->preds)
9834 : : {
9835 : 2747563 : greturn *return_stmt = dyn_cast <greturn *> (*gsi_last_bb (e->src));
9836 : 915770 : if (return_stmt
9837 : 915770 : && gimple_return_retval (return_stmt) == NULL
9838 : 42 : && !warning_suppressed_p (return_stmt, OPT_Wreturn_type))
9839 : : {
9840 : 19 : location = gimple_location (return_stmt);
9841 : 19 : if (LOCATION_LOCUS (location) == UNKNOWN_LOCATION)
9842 : 0 : location = fun->function_end_locus;
9843 : 19 : if (warning_at (location, OPT_Wreturn_type,
9844 : : "control reaches end of non-void function"))
9845 : 17 : suppress_warning (fun->decl, OPT_Wreturn_type);
9846 : : break;
9847 : : }
9848 : : }
9849 : : /* The C++ FE turns fallthrough from the end of non-void function
9850 : : into __builtin_unreachable () call with BUILTINS_LOCATION.
9851 : : Recognize those as well as calls from ubsan_instrument_return. */
9852 : 921391 : basic_block bb;
9853 : 921391 : if (!warning_suppressed_p (fun->decl, OPT_Wreturn_type))
9854 : 4554359 : FOR_EACH_BB_FN (bb, fun)
9855 : 3633503 : if (EDGE_COUNT (bb->succs) == 0)
9856 : : {
9857 : 171700 : gimple *last = *gsi_last_bb (bb);
9858 : 171700 : const enum built_in_function ubsan_missing_ret
9859 : : = BUILT_IN_UBSAN_HANDLE_MISSING_RETURN;
9860 : 171700 : if (last
9861 : 171700 : && ((LOCATION_LOCUS (gimple_location (last))
9862 : : == BUILTINS_LOCATION
9863 : 503 : && (gimple_call_builtin_p (last, BUILT_IN_UNREACHABLE)
9864 : 186 : || gimple_call_builtin_p (last,
9865 : : BUILT_IN_UNREACHABLE_TRAP)
9866 : 3 : || gimple_call_builtin_p (last, BUILT_IN_TRAP)))
9867 : 171197 : || gimple_call_builtin_p (last, ubsan_missing_ret)))
9868 : : {
9869 : 518 : gimple_stmt_iterator gsi = gsi_for_stmt (last);
9870 : 518 : gsi_prev_nondebug (&gsi);
9871 : 518 : gimple *prev = gsi_stmt (gsi);
9872 : 518 : if (prev == NULL)
9873 : : location = UNKNOWN_LOCATION;
9874 : : else
9875 : 186 : location = gimple_location (prev);
9876 : 518 : if (LOCATION_LOCUS (location) == UNKNOWN_LOCATION)
9877 : 358 : location = fun->function_end_locus;
9878 : 518 : if (warning_at (location, OPT_Wreturn_type,
9879 : : "control reaches end of non-void function"))
9880 : 123 : suppress_warning (fun->decl, OPT_Wreturn_type);
9881 : 518 : break;
9882 : : }
9883 : : }
9884 : : }
9885 : : return 0;
9886 : : }
9887 : :
9888 : : } // anon namespace
9889 : :
9890 : : gimple_opt_pass *
9891 : 280114 : make_pass_warn_function_return (gcc::context *ctxt)
9892 : : {
9893 : 280114 : return new pass_warn_function_return (ctxt);
9894 : : }
9895 : :
9896 : : /* Walk a gimplified function and warn for functions whose return value is
9897 : : ignored and attribute((warn_unused_result)) is set. This is done before
9898 : : inlining, so we don't have to worry about that. */
9899 : :
9900 : : static void
9901 : 9203234 : do_warn_unused_result (gimple_seq seq)
9902 : : {
9903 : 9203234 : tree fdecl, ftype;
9904 : 9203234 : gimple_stmt_iterator i;
9905 : :
9906 : 58646397 : for (i = gsi_start (seq); !gsi_end_p (i); gsi_next (&i))
9907 : : {
9908 : 49443163 : gimple *g = gsi_stmt (i);
9909 : :
9910 : 49443163 : switch (gimple_code (g))
9911 : : {
9912 : 3365297 : case GIMPLE_BIND:
9913 : 3365297 : do_warn_unused_result (gimple_bind_body (as_a <gbind *>(g)));
9914 : 3365297 : break;
9915 : 1810681 : case GIMPLE_TRY:
9916 : 1810681 : do_warn_unused_result (gimple_try_eval (g));
9917 : 1810681 : do_warn_unused_result (gimple_try_cleanup (g));
9918 : 1810681 : break;
9919 : 18548 : case GIMPLE_CATCH:
9920 : 37096 : do_warn_unused_result (gimple_catch_handler (
9921 : 18548 : as_a <gcatch *> (g)));
9922 : 18548 : break;
9923 : 4280 : case GIMPLE_EH_FILTER:
9924 : 4280 : do_warn_unused_result (gimple_eh_filter_failure (g));
9925 : 4280 : break;
9926 : :
9927 : 7026259 : case GIMPLE_CALL:
9928 : 7026259 : if (gimple_call_lhs (g))
9929 : : break;
9930 : 3988773 : if (gimple_call_internal_p (g))
9931 : : break;
9932 : :
9933 : : /* This is a naked call, as opposed to a GIMPLE_CALL with an
9934 : : LHS. All calls whose value is ignored should be
9935 : : represented like this. Look for the attribute. */
9936 : 3968953 : fdecl = gimple_call_fndecl (g);
9937 : 3968953 : ftype = gimple_call_fntype (g);
9938 : :
9939 : 3968953 : if (lookup_attribute ("warn_unused_result", TYPE_ATTRIBUTES (ftype)))
9940 : : {
9941 : 186 : auto_urlify_attributes sentinel;
9942 : :
9943 : 186 : location_t loc = gimple_location (g);
9944 : :
9945 : 186 : if (fdecl)
9946 : 114 : warning_at (loc, OPT_Wunused_result,
9947 : : "ignoring return value of %qD "
9948 : : "declared with attribute %<warn_unused_result%>",
9949 : : fdecl);
9950 : : else
9951 : 72 : warning_at (loc, OPT_Wunused_result,
9952 : : "ignoring return value of function "
9953 : : "declared with attribute %<warn_unused_result%>");
9954 : 186 : }
9955 : : break;
9956 : :
9957 : : default:
9958 : : /* Not a container, not a call, or a call whose value is used. */
9959 : : break;
9960 : : }
9961 : : }
9962 : 9203234 : }
9963 : :
9964 : : namespace {
9965 : :
9966 : : const pass_data pass_data_warn_unused_result =
9967 : : {
9968 : : GIMPLE_PASS, /* type */
9969 : : "*warn_unused_result", /* name */
9970 : : OPTGROUP_NONE, /* optinfo_flags */
9971 : : TV_NONE, /* tv_id */
9972 : : PROP_gimple_any, /* properties_required */
9973 : : 0, /* properties_provided */
9974 : : 0, /* properties_destroyed */
9975 : : 0, /* todo_flags_start */
9976 : : 0, /* todo_flags_finish */
9977 : : };
9978 : :
9979 : : class pass_warn_unused_result : public gimple_opt_pass
9980 : : {
9981 : : public:
9982 : 280114 : pass_warn_unused_result (gcc::context *ctxt)
9983 : 560228 : : gimple_opt_pass (pass_data_warn_unused_result, ctxt)
9984 : : {}
9985 : :
9986 : : /* opt_pass methods: */
9987 : 2682193 : bool gate (function *) final override { return flag_warn_unused_result; }
9988 : 2193747 : unsigned int execute (function *) final override
9989 : : {
9990 : 2193747 : do_warn_unused_result (gimple_body (current_function_decl));
9991 : 2193747 : return 0;
9992 : : }
9993 : :
9994 : : }; // class pass_warn_unused_result
9995 : :
9996 : : } // anon namespace
9997 : :
9998 : : gimple_opt_pass *
9999 : 280114 : make_pass_warn_unused_result (gcc::context *ctxt)
10000 : : {
10001 : 280114 : return new pass_warn_unused_result (ctxt);
10002 : : }
10003 : :
10004 : : /* Maybe Remove stores to variables we marked write-only.
10005 : : Return true if a store was removed. */
10006 : : static bool
10007 : 399912035 : maybe_remove_writeonly_store (gimple_stmt_iterator &gsi, gimple *stmt,
10008 : : bitmap dce_ssa_names)
10009 : : {
10010 : : /* Keep access when store has side effect, i.e. in case when source
10011 : : is volatile. */
10012 : 399912035 : if (!gimple_store_p (stmt)
10013 : 57992984 : || gimple_has_side_effects (stmt)
10014 : 446574842 : || optimize_debug)
10015 : 353301370 : return false;
10016 : :
10017 : 46610665 : tree lhs = get_base_address (gimple_get_lhs (stmt));
10018 : :
10019 : 46610665 : if (!VAR_P (lhs)
10020 : 36570427 : || (!TREE_STATIC (lhs) && !DECL_EXTERNAL (lhs))
10021 : 53357165 : || !varpool_node::get (lhs)->writeonly)
10022 : : return false;
10023 : :
10024 : 29628 : if (dump_file && (dump_flags & TDF_DETAILS))
10025 : : {
10026 : 0 : fprintf (dump_file, "Removing statement, writes"
10027 : : " to write only var:\n");
10028 : 0 : print_gimple_stmt (dump_file, stmt, 0,
10029 : : TDF_VOPS|TDF_MEMSYMS);
10030 : : }
10031 : :
10032 : : /* Mark ssa name defining to be checked for simple dce. */
10033 : 29628 : if (gimple_assign_single_p (stmt))
10034 : : {
10035 : 29628 : tree rhs = gimple_assign_rhs1 (stmt);
10036 : 29628 : if (TREE_CODE (rhs) == SSA_NAME
10037 : 29628 : && !SSA_NAME_IS_DEFAULT_DEF (rhs))
10038 : 9287 : bitmap_set_bit (dce_ssa_names, SSA_NAME_VERSION (rhs));
10039 : : }
10040 : 29628 : unlink_stmt_vdef (stmt);
10041 : 29628 : gsi_remove (&gsi, true);
10042 : 29628 : release_defs (stmt);
10043 : 29628 : return true;
10044 : : }
10045 : :
10046 : : /* IPA passes, compilation of earlier functions or inlining
10047 : : might have changed some properties, such as marked functions nothrow,
10048 : : pure, const or noreturn.
10049 : : Remove redundant edges and basic blocks, and create new ones if necessary. */
10050 : :
10051 : : unsigned int
10052 : 10402372 : execute_fixup_cfg (void)
10053 : : {
10054 : 10402372 : basic_block bb;
10055 : 10402372 : gimple_stmt_iterator gsi;
10056 : 10402372 : int todo = 0;
10057 : 10402372 : cgraph_node *node = cgraph_node::get (current_function_decl);
10058 : : /* Same scaling is also done by ipa_merge_profiles. */
10059 : 10402372 : profile_count num = node->count;
10060 : 10402372 : profile_count den = ENTRY_BLOCK_PTR_FOR_FN (cfun)->count;
10061 : 10402372 : bool scale = num.initialized_p () && !(num == den);
10062 : 10402372 : auto_bitmap dce_ssa_names;
10063 : :
10064 : 10402372 : if (scale)
10065 : : {
10066 : 22602 : profile_count::adjust_for_ipa_scaling (&num, &den);
10067 : 22602 : ENTRY_BLOCK_PTR_FOR_FN (cfun)->count = node->count;
10068 : 22602 : EXIT_BLOCK_PTR_FOR_FN (cfun)->count
10069 : 22602 : = EXIT_BLOCK_PTR_FOR_FN (cfun)->count.apply_scale (num, den);
10070 : : }
10071 : :
10072 : 92101817 : FOR_EACH_BB_FN (bb, cfun)
10073 : : {
10074 : 81699445 : if (scale)
10075 : 985788 : bb->count = bb->count.apply_scale (num, den);
10076 : 563310925 : for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi);)
10077 : : {
10078 : 399912035 : gimple *stmt = gsi_stmt (gsi);
10079 : 399912035 : tree decl = is_gimple_call (stmt)
10080 : 399912035 : ? gimple_call_fndecl (stmt)
10081 : 440429122 : : NULL;
10082 : 40517087 : if (decl)
10083 : : {
10084 : 38058359 : int flags = gimple_call_flags (stmt);
10085 : 38058359 : if (flags & (ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE))
10086 : : {
10087 : 5955015 : if (gimple_in_ssa_p (cfun))
10088 : : {
10089 : 5294023 : todo |= TODO_update_ssa | TODO_cleanup_cfg;
10090 : 5294023 : update_stmt (stmt);
10091 : : }
10092 : : }
10093 : 38058359 : if (flags & ECF_NORETURN
10094 : 38058359 : && fixup_noreturn_call (stmt))
10095 : 78873 : todo |= TODO_cleanup_cfg;
10096 : : }
10097 : :
10098 : : /* Remove stores to variables we marked write-only. */
10099 : 399912035 : if (maybe_remove_writeonly_store (gsi, stmt, dce_ssa_names))
10100 : : {
10101 : 29628 : todo |= TODO_update_ssa | TODO_cleanup_cfg;
10102 : 29628 : continue;
10103 : : }
10104 : :
10105 : : /* For calls we can simply remove LHS when it is known
10106 : : to be write-only. */
10107 : 399882407 : if (is_gimple_call (stmt)
10108 : 399882407 : && gimple_get_lhs (stmt))
10109 : : {
10110 : 16427724 : tree lhs = get_base_address (gimple_get_lhs (stmt));
10111 : :
10112 : 16427724 : if (VAR_P (lhs)
10113 : 4125319 : && (TREE_STATIC (lhs) || DECL_EXTERNAL (lhs))
10114 : 16436967 : && varpool_node::get (lhs)->writeonly)
10115 : : {
10116 : 2 : gimple_call_set_lhs (stmt, NULL);
10117 : 2 : update_stmt (stmt);
10118 : 2 : todo |= TODO_update_ssa | TODO_cleanup_cfg;
10119 : : }
10120 : : }
10121 : :
10122 : 399882407 : gsi_next (&gsi);
10123 : : }
10124 : 163398890 : if (gimple *last = *gsi_last_bb (bb))
10125 : : {
10126 : 76056756 : if (maybe_clean_eh_stmt (last)
10127 : 76056756 : && gimple_purge_dead_eh_edges (bb))
10128 : 158901 : todo |= TODO_cleanup_cfg;
10129 : 76056756 : if (gimple_purge_dead_abnormal_call_edges (bb))
10130 : 1060 : todo |= TODO_cleanup_cfg;
10131 : : }
10132 : :
10133 : : /* If we have a basic block with no successors that does not
10134 : : end with a control statement or a noreturn call end it with
10135 : : a call to __builtin_unreachable. This situation can occur
10136 : : when inlining a noreturn call that does in fact return. */
10137 : 81699445 : if (EDGE_COUNT (bb->succs) == 0)
10138 : : {
10139 : 5639804 : gimple *stmt = last_nondebug_stmt (bb);
10140 : 5639804 : if (!stmt
10141 : 5639804 : || (!is_ctrl_stmt (stmt)
10142 : 4908587 : && (!is_gimple_call (stmt)
10143 : 4908568 : || !gimple_call_noreturn_p (stmt))))
10144 : : {
10145 : 128 : if (stmt && is_gimple_call (stmt))
10146 : 93 : gimple_call_set_ctrl_altering (stmt, false);
10147 : 128 : stmt = gimple_build_builtin_unreachable (UNKNOWN_LOCATION);
10148 : 128 : gimple_stmt_iterator gsi = gsi_last_bb (bb);
10149 : 128 : gsi_insert_after (&gsi, stmt, GSI_NEW_STMT);
10150 : 128 : if (!cfun->after_inlining)
10151 : 104 : if (tree fndecl = gimple_call_fndecl (stmt))
10152 : : {
10153 : 104 : gcall *call_stmt = dyn_cast <gcall *> (stmt);
10154 : 104 : node->create_edge (cgraph_node::get_create (fndecl),
10155 : : call_stmt, bb->count);
10156 : : }
10157 : : }
10158 : : }
10159 : : }
10160 : 10402372 : if (scale)
10161 : : {
10162 : 22602 : update_max_bb_count ();
10163 : 22602 : compute_function_frequency ();
10164 : : }
10165 : :
10166 : 10402372 : if (current_loops
10167 : 10402372 : && (todo & TODO_cleanup_cfg))
10168 : 1797888 : loops_state_set (LOOPS_NEED_FIXUP);
10169 : :
10170 : 10402372 : simple_dce_from_worklist (dce_ssa_names);
10171 : :
10172 : 10402372 : return todo;
10173 : 10402372 : }
10174 : :
10175 : : namespace {
10176 : :
10177 : : const pass_data pass_data_fixup_cfg =
10178 : : {
10179 : : GIMPLE_PASS, /* type */
10180 : : "fixup_cfg", /* name */
10181 : : OPTGROUP_NONE, /* optinfo_flags */
10182 : : TV_NONE, /* tv_id */
10183 : : PROP_cfg, /* properties_required */
10184 : : 0, /* properties_provided */
10185 : : 0, /* properties_destroyed */
10186 : : 0, /* todo_flags_start */
10187 : : 0, /* todo_flags_finish */
10188 : : };
10189 : :
10190 : : class pass_fixup_cfg : public gimple_opt_pass
10191 : : {
10192 : : public:
10193 : 840342 : pass_fixup_cfg (gcc::context *ctxt)
10194 : 1680684 : : gimple_opt_pass (pass_data_fixup_cfg, ctxt)
10195 : : {}
10196 : :
10197 : : /* opt_pass methods: */
10198 : 560228 : opt_pass * clone () final override { return new pass_fixup_cfg (m_ctxt); }
10199 : 6742848 : unsigned int execute (function *) final override
10200 : : {
10201 : 6742848 : return execute_fixup_cfg ();
10202 : : }
10203 : :
10204 : : }; // class pass_fixup_cfg
10205 : :
10206 : : } // anon namespace
10207 : :
10208 : : gimple_opt_pass *
10209 : 280114 : make_pass_fixup_cfg (gcc::context *ctxt)
10210 : : {
10211 : 280114 : return new pass_fixup_cfg (ctxt);
10212 : : }
10213 : :
10214 : : /* Garbage collection support for edge_def. */
10215 : :
10216 : : extern void gt_ggc_mx (tree&);
10217 : : extern void gt_ggc_mx (gimple *&);
10218 : : extern void gt_ggc_mx (rtx&);
10219 : : extern void gt_ggc_mx (basic_block&);
10220 : :
10221 : : static void
10222 : 37065380 : gt_ggc_mx (rtx_insn *& x)
10223 : : {
10224 : 0 : if (x)
10225 : 0 : gt_ggc_mx_rtx_def ((void *) x);
10226 : 0 : }
10227 : :
10228 : : void
10229 : 119740224 : gt_ggc_mx (edge_def *e)
10230 : : {
10231 : 119740224 : tree block = LOCATION_BLOCK (e->goto_locus);
10232 : 119740224 : gt_ggc_mx (e->src);
10233 : 119740224 : gt_ggc_mx (e->dest);
10234 : 119740224 : if (current_ir_type () == IR_GIMPLE)
10235 : 82674844 : gt_ggc_mx (e->insns.g);
10236 : : else
10237 : 37065380 : gt_ggc_mx (e->insns.r);
10238 : 119740224 : gt_ggc_mx (block);
10239 : 119740224 : }
10240 : :
10241 : : /* PCH support for edge_def. */
10242 : :
10243 : : extern void gt_pch_nx (tree&);
10244 : : extern void gt_pch_nx (gimple *&);
10245 : : extern void gt_pch_nx (rtx&);
10246 : : extern void gt_pch_nx (basic_block&);
10247 : :
10248 : : static void
10249 : 0 : gt_pch_nx (rtx_insn *& x)
10250 : : {
10251 : 0 : if (x)
10252 : 0 : gt_pch_nx_rtx_def ((void *) x);
10253 : 0 : }
10254 : :
10255 : : void
10256 : 0 : gt_pch_nx (edge_def *e)
10257 : : {
10258 : 0 : tree block = LOCATION_BLOCK (e->goto_locus);
10259 : 0 : gt_pch_nx (e->src);
10260 : 0 : gt_pch_nx (e->dest);
10261 : 0 : if (current_ir_type () == IR_GIMPLE)
10262 : 0 : gt_pch_nx (e->insns.g);
10263 : : else
10264 : 0 : gt_pch_nx (e->insns.r);
10265 : 0 : gt_pch_nx (block);
10266 : 0 : }
10267 : :
10268 : : void
10269 : 0 : gt_pch_nx (edge_def *e, gt_pointer_operator op, void *cookie)
10270 : : {
10271 : 0 : tree block = LOCATION_BLOCK (e->goto_locus);
10272 : 0 : op (&(e->src), NULL, cookie);
10273 : 0 : op (&(e->dest), NULL, cookie);
10274 : 0 : if (current_ir_type () == IR_GIMPLE)
10275 : 0 : op (&(e->insns.g), NULL, cookie);
10276 : : else
10277 : 0 : op (&(e->insns.r), NULL, cookie);
10278 : 0 : op (&(block), &(block), cookie);
10279 : 0 : }
10280 : :
10281 : : #if CHECKING_P
10282 : :
10283 : : namespace selftest {
10284 : :
10285 : : /* Helper function for CFG selftests: create a dummy function decl
10286 : : and push it as cfun. */
10287 : :
10288 : : static tree
10289 : 12 : push_fndecl (const char *name)
10290 : : {
10291 : 12 : tree fn_type = build_function_type_array (integer_type_node, 0, NULL);
10292 : : /* FIXME: this uses input_location: */
10293 : 12 : tree fndecl = build_fn_decl (name, fn_type);
10294 : 12 : tree retval = build_decl (UNKNOWN_LOCATION, RESULT_DECL,
10295 : : NULL_TREE, integer_type_node);
10296 : 12 : DECL_RESULT (fndecl) = retval;
10297 : 12 : push_struct_function (fndecl);
10298 : 12 : function *fun = DECL_STRUCT_FUNCTION (fndecl);
10299 : 12 : ASSERT_TRUE (fun != NULL);
10300 : 12 : init_empty_tree_cfg_for_function (fun);
10301 : 12 : ASSERT_EQ (2, n_basic_blocks_for_fn (fun));
10302 : 12 : ASSERT_EQ (0, n_edges_for_fn (fun));
10303 : 12 : return fndecl;
10304 : : }
10305 : :
10306 : : /* These tests directly create CFGs.
10307 : : Compare with the static fns within tree-cfg.cc:
10308 : : - build_gimple_cfg
10309 : : - make_blocks: calls create_basic_block (seq, bb);
10310 : : - make_edges. */
10311 : :
10312 : : /* Verify a simple cfg of the form:
10313 : : ENTRY -> A -> B -> C -> EXIT. */
10314 : :
10315 : : static void
10316 : 4 : test_linear_chain ()
10317 : : {
10318 : 4 : gimple_register_cfg_hooks ();
10319 : :
10320 : 4 : tree fndecl = push_fndecl ("cfg_test_linear_chain");
10321 : 4 : function *fun = DECL_STRUCT_FUNCTION (fndecl);
10322 : :
10323 : : /* Create some empty blocks. */
10324 : 4 : basic_block bb_a = create_empty_bb (ENTRY_BLOCK_PTR_FOR_FN (fun));
10325 : 4 : basic_block bb_b = create_empty_bb (bb_a);
10326 : 4 : basic_block bb_c = create_empty_bb (bb_b);
10327 : :
10328 : 4 : ASSERT_EQ (5, n_basic_blocks_for_fn (fun));
10329 : 4 : ASSERT_EQ (0, n_edges_for_fn (fun));
10330 : :
10331 : : /* Create some edges: a simple linear chain of BBs. */
10332 : 4 : make_edge (ENTRY_BLOCK_PTR_FOR_FN (fun), bb_a, EDGE_FALLTHRU);
10333 : 4 : make_edge (bb_a, bb_b, 0);
10334 : 4 : make_edge (bb_b, bb_c, 0);
10335 : 4 : make_edge (bb_c, EXIT_BLOCK_PTR_FOR_FN (fun), 0);
10336 : :
10337 : : /* Verify the edges. */
10338 : 4 : ASSERT_EQ (4, n_edges_for_fn (fun));
10339 : 4 : ASSERT_EQ (NULL, ENTRY_BLOCK_PTR_FOR_FN (fun)->preds);
10340 : 4 : ASSERT_EQ (1, ENTRY_BLOCK_PTR_FOR_FN (fun)->succs->length ());
10341 : 4 : ASSERT_EQ (1, bb_a->preds->length ());
10342 : 4 : ASSERT_EQ (1, bb_a->succs->length ());
10343 : 4 : ASSERT_EQ (1, bb_b->preds->length ());
10344 : 4 : ASSERT_EQ (1, bb_b->succs->length ());
10345 : 4 : ASSERT_EQ (1, bb_c->preds->length ());
10346 : 4 : ASSERT_EQ (1, bb_c->succs->length ());
10347 : 4 : ASSERT_EQ (1, EXIT_BLOCK_PTR_FOR_FN (fun)->preds->length ());
10348 : 4 : ASSERT_EQ (NULL, EXIT_BLOCK_PTR_FOR_FN (fun)->succs);
10349 : :
10350 : : /* Verify the dominance information
10351 : : Each BB in our simple chain should be dominated by the one before
10352 : : it. */
10353 : 4 : calculate_dominance_info (CDI_DOMINATORS);
10354 : 4 : ASSERT_EQ (bb_a, get_immediate_dominator (CDI_DOMINATORS, bb_b));
10355 : 4 : ASSERT_EQ (bb_b, get_immediate_dominator (CDI_DOMINATORS, bb_c));
10356 : 4 : auto_vec<basic_block> dom_by_b = get_dominated_by (CDI_DOMINATORS, bb_b);
10357 : 4 : ASSERT_EQ (1, dom_by_b.length ());
10358 : 4 : ASSERT_EQ (bb_c, dom_by_b[0]);
10359 : 4 : free_dominance_info (CDI_DOMINATORS);
10360 : :
10361 : : /* Similarly for post-dominance: each BB in our chain is post-dominated
10362 : : by the one after it. */
10363 : 4 : calculate_dominance_info (CDI_POST_DOMINATORS);
10364 : 4 : ASSERT_EQ (bb_b, get_immediate_dominator (CDI_POST_DOMINATORS, bb_a));
10365 : 4 : ASSERT_EQ (bb_c, get_immediate_dominator (CDI_POST_DOMINATORS, bb_b));
10366 : 4 : auto_vec<basic_block> postdom_by_b = get_dominated_by (CDI_POST_DOMINATORS, bb_b);
10367 : 4 : ASSERT_EQ (1, postdom_by_b.length ());
10368 : 4 : ASSERT_EQ (bb_a, postdom_by_b[0]);
10369 : 4 : free_dominance_info (CDI_POST_DOMINATORS);
10370 : :
10371 : 4 : pop_cfun ();
10372 : 4 : }
10373 : :
10374 : : /* Verify a simple CFG of the form:
10375 : : ENTRY
10376 : : |
10377 : : A
10378 : : / \
10379 : : /t \f
10380 : : B C
10381 : : \ /
10382 : : \ /
10383 : : D
10384 : : |
10385 : : EXIT. */
10386 : :
10387 : : static void
10388 : 4 : test_diamond ()
10389 : : {
10390 : 4 : gimple_register_cfg_hooks ();
10391 : :
10392 : 4 : tree fndecl = push_fndecl ("cfg_test_diamond");
10393 : 4 : function *fun = DECL_STRUCT_FUNCTION (fndecl);
10394 : :
10395 : : /* Create some empty blocks. */
10396 : 4 : basic_block bb_a = create_empty_bb (ENTRY_BLOCK_PTR_FOR_FN (fun));
10397 : 4 : basic_block bb_b = create_empty_bb (bb_a);
10398 : 4 : basic_block bb_c = create_empty_bb (bb_a);
10399 : 4 : basic_block bb_d = create_empty_bb (bb_b);
10400 : :
10401 : 4 : ASSERT_EQ (6, n_basic_blocks_for_fn (fun));
10402 : 4 : ASSERT_EQ (0, n_edges_for_fn (fun));
10403 : :
10404 : : /* Create the edges. */
10405 : 4 : make_edge (ENTRY_BLOCK_PTR_FOR_FN (fun), bb_a, EDGE_FALLTHRU);
10406 : 4 : make_edge (bb_a, bb_b, EDGE_TRUE_VALUE);
10407 : 4 : make_edge (bb_a, bb_c, EDGE_FALSE_VALUE);
10408 : 4 : make_edge (bb_b, bb_d, 0);
10409 : 4 : make_edge (bb_c, bb_d, 0);
10410 : 4 : make_edge (bb_d, EXIT_BLOCK_PTR_FOR_FN (fun), 0);
10411 : :
10412 : : /* Verify the edges. */
10413 : 4 : ASSERT_EQ (6, n_edges_for_fn (fun));
10414 : 4 : ASSERT_EQ (1, bb_a->preds->length ());
10415 : 4 : ASSERT_EQ (2, bb_a->succs->length ());
10416 : 4 : ASSERT_EQ (1, bb_b->preds->length ());
10417 : 4 : ASSERT_EQ (1, bb_b->succs->length ());
10418 : 4 : ASSERT_EQ (1, bb_c->preds->length ());
10419 : 4 : ASSERT_EQ (1, bb_c->succs->length ());
10420 : 4 : ASSERT_EQ (2, bb_d->preds->length ());
10421 : 4 : ASSERT_EQ (1, bb_d->succs->length ());
10422 : :
10423 : : /* Verify the dominance information. */
10424 : 4 : calculate_dominance_info (CDI_DOMINATORS);
10425 : 4 : ASSERT_EQ (bb_a, get_immediate_dominator (CDI_DOMINATORS, bb_b));
10426 : 4 : ASSERT_EQ (bb_a, get_immediate_dominator (CDI_DOMINATORS, bb_c));
10427 : 4 : ASSERT_EQ (bb_a, get_immediate_dominator (CDI_DOMINATORS, bb_d));
10428 : 4 : auto_vec<basic_block> dom_by_a = get_dominated_by (CDI_DOMINATORS, bb_a);
10429 : 4 : ASSERT_EQ (3, dom_by_a.length ()); /* B, C, D, in some order. */
10430 : 4 : dom_by_a.release ();
10431 : 4 : auto_vec<basic_block> dom_by_b = get_dominated_by (CDI_DOMINATORS, bb_b);
10432 : 4 : ASSERT_EQ (0, dom_by_b.length ());
10433 : 4 : dom_by_b.release ();
10434 : 4 : free_dominance_info (CDI_DOMINATORS);
10435 : :
10436 : : /* Similarly for post-dominance. */
10437 : 4 : calculate_dominance_info (CDI_POST_DOMINATORS);
10438 : 4 : ASSERT_EQ (bb_d, get_immediate_dominator (CDI_POST_DOMINATORS, bb_a));
10439 : 4 : ASSERT_EQ (bb_d, get_immediate_dominator (CDI_POST_DOMINATORS, bb_b));
10440 : 4 : ASSERT_EQ (bb_d, get_immediate_dominator (CDI_POST_DOMINATORS, bb_c));
10441 : 4 : auto_vec<basic_block> postdom_by_d = get_dominated_by (CDI_POST_DOMINATORS, bb_d);
10442 : 4 : ASSERT_EQ (3, postdom_by_d.length ()); /* A, B, C in some order. */
10443 : 4 : postdom_by_d.release ();
10444 : 4 : auto_vec<basic_block> postdom_by_b = get_dominated_by (CDI_POST_DOMINATORS, bb_b);
10445 : 4 : ASSERT_EQ (0, postdom_by_b.length ());
10446 : 4 : postdom_by_b.release ();
10447 : 4 : free_dominance_info (CDI_POST_DOMINATORS);
10448 : :
10449 : 4 : pop_cfun ();
10450 : 4 : }
10451 : :
10452 : : /* Verify that we can handle a CFG containing a "complete" aka
10453 : : fully-connected subgraph (where A B C D below all have edges
10454 : : pointing to each other node, also to themselves).
10455 : : e.g.:
10456 : : ENTRY EXIT
10457 : : | ^
10458 : : | /
10459 : : | /
10460 : : | /
10461 : : V/
10462 : : A<--->B
10463 : : ^^ ^^
10464 : : | \ / |
10465 : : | X |
10466 : : | / \ |
10467 : : VV VV
10468 : : C<--->D
10469 : : */
10470 : :
10471 : : static void
10472 : 4 : test_fully_connected ()
10473 : : {
10474 : 4 : gimple_register_cfg_hooks ();
10475 : :
10476 : 4 : tree fndecl = push_fndecl ("cfg_fully_connected");
10477 : 4 : function *fun = DECL_STRUCT_FUNCTION (fndecl);
10478 : :
10479 : 4 : const int n = 4;
10480 : :
10481 : : /* Create some empty blocks. */
10482 : 4 : auto_vec <basic_block> subgraph_nodes;
10483 : 20 : for (int i = 0; i < n; i++)
10484 : 16 : subgraph_nodes.safe_push (create_empty_bb (ENTRY_BLOCK_PTR_FOR_FN (fun)));
10485 : :
10486 : 4 : ASSERT_EQ (n + 2, n_basic_blocks_for_fn (fun));
10487 : 4 : ASSERT_EQ (0, n_edges_for_fn (fun));
10488 : :
10489 : : /* Create the edges. */
10490 : 4 : make_edge (ENTRY_BLOCK_PTR_FOR_FN (fun), subgraph_nodes[0], EDGE_FALLTHRU);
10491 : 4 : make_edge (subgraph_nodes[0], EXIT_BLOCK_PTR_FOR_FN (fun), 0);
10492 : 20 : for (int i = 0; i < n; i++)
10493 : 80 : for (int j = 0; j < n; j++)
10494 : 64 : make_edge (subgraph_nodes[i], subgraph_nodes[j], 0);
10495 : :
10496 : : /* Verify the edges. */
10497 : 4 : ASSERT_EQ (2 + (n * n), n_edges_for_fn (fun));
10498 : : /* The first one is linked to ENTRY/EXIT as well as itself and
10499 : : everything else. */
10500 : 4 : ASSERT_EQ (n + 1, subgraph_nodes[0]->preds->length ());
10501 : 4 : ASSERT_EQ (n + 1, subgraph_nodes[0]->succs->length ());
10502 : : /* The other ones in the subgraph are linked to everything in
10503 : : the subgraph (including themselves). */
10504 : 16 : for (int i = 1; i < n; i++)
10505 : : {
10506 : 12 : ASSERT_EQ (n, subgraph_nodes[i]->preds->length ());
10507 : 12 : ASSERT_EQ (n, subgraph_nodes[i]->succs->length ());
10508 : : }
10509 : :
10510 : : /* Verify the dominance information. */
10511 : 4 : calculate_dominance_info (CDI_DOMINATORS);
10512 : : /* The initial block in the subgraph should be dominated by ENTRY. */
10513 : 4 : ASSERT_EQ (ENTRY_BLOCK_PTR_FOR_FN (fun),
10514 : : get_immediate_dominator (CDI_DOMINATORS,
10515 : : subgraph_nodes[0]));
10516 : : /* Every other block in the subgraph should be dominated by the
10517 : : initial block. */
10518 : 16 : for (int i = 1; i < n; i++)
10519 : 12 : ASSERT_EQ (subgraph_nodes[0],
10520 : : get_immediate_dominator (CDI_DOMINATORS,
10521 : : subgraph_nodes[i]));
10522 : 4 : free_dominance_info (CDI_DOMINATORS);
10523 : :
10524 : : /* Similarly for post-dominance. */
10525 : 4 : calculate_dominance_info (CDI_POST_DOMINATORS);
10526 : : /* The initial block in the subgraph should be postdominated by EXIT. */
10527 : 4 : ASSERT_EQ (EXIT_BLOCK_PTR_FOR_FN (fun),
10528 : : get_immediate_dominator (CDI_POST_DOMINATORS,
10529 : : subgraph_nodes[0]));
10530 : : /* Every other block in the subgraph should be postdominated by the
10531 : : initial block, since that leads to EXIT. */
10532 : 16 : for (int i = 1; i < n; i++)
10533 : 12 : ASSERT_EQ (subgraph_nodes[0],
10534 : : get_immediate_dominator (CDI_POST_DOMINATORS,
10535 : : subgraph_nodes[i]));
10536 : 4 : free_dominance_info (CDI_POST_DOMINATORS);
10537 : :
10538 : 4 : pop_cfun ();
10539 : 4 : }
10540 : :
10541 : : /* Run all of the selftests within this file. */
10542 : :
10543 : : void
10544 : 4 : tree_cfg_cc_tests ()
10545 : : {
10546 : 4 : test_linear_chain ();
10547 : 4 : test_diamond ();
10548 : 4 : test_fully_connected ();
10549 : 4 : }
10550 : :
10551 : : } // namespace selftest
10552 : :
10553 : : /* TODO: test the dominator/postdominator logic with various graphs/nodes:
10554 : : - loop
10555 : : - nested loops
10556 : : - switch statement (a block with many out-edges)
10557 : : - something that jumps to itself
10558 : : - etc */
10559 : :
10560 : : #endif /* CHECKING_P */
|