]> gcc.gnu.org Git - gcc.git/blame - gcc/cfgloop.cc
OpenACC: Fix reduction tree-sharing issue [PR106982]
[gcc.git] / gcc / cfgloop.cc
CommitLineData
402209ff 1/* Natural loop discovery code for GNU compiler.
7adcbafe 2 Copyright (C) 2000-2022 Free Software Foundation, Inc.
402209ff
JH
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify it under
7the terms of the GNU General Public License as published by the Free
9dcd6f09 8Software Foundation; either version 3, or (at your option) any later
402209ff
JH
9version.
10
11GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14for more details.
15
16You should have received a copy of the GNU General Public License
9dcd6f09
NC
17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
402209ff
JH
19
20#include "config.h"
21#include "system.h"
4977bab6 22#include "coretypes.h"
c7131fb2 23#include "backend.h"
957060b5 24#include "rtl.h"
c7131fb2
AM
25#include "tree.h"
26#include "gimple.h"
957060b5
AM
27#include "cfghooks.h"
28#include "gimple-ssa.h"
29#include "diagnostic-core.h"
60393bbc 30#include "cfganal.h"
3d436d2a 31#include "cfgloop.h"
5be5c238 32#include "gimple-iterator.h"
7ee2468b 33#include "dumpfile.h"
0a1a3afb
RB
34#include "tree-ssa.h"
35#include "tree-pretty-print.h"
f470c378 36
d73be268 37static void flow_loops_cfg_dump (FILE *);
402209ff
JH
38\f
39/* Dump loop related CFG information. */
40
41static void
d73be268 42flow_loops_cfg_dump (FILE *file)
402209ff 43{
e0082a72 44 basic_block bb;
402209ff 45
d73be268 46 if (!file)
402209ff
JH
47 return;
48
11cd3bed 49 FOR_EACH_BB_FN (bb, cfun)
402209ff
JH
50 {
51 edge succ;
628f6a4e 52 edge_iterator ei;
402209ff 53
e0082a72 54 fprintf (file, ";; %d succs { ", bb->index);
628f6a4e 55 FOR_EACH_EDGE (succ, ei, bb->succs)
0b17ab2f 56 fprintf (file, "%d ", succ->dest->index);
2ecfd709 57 fprintf (file, "}\n");
402209ff 58 }
402209ff
JH
59}
60
da7d8304 61/* Return nonzero if the nodes of LOOP are a subset of OUTER. */
402209ff 62
2ecfd709 63bool
99b1c316 64flow_loop_nested_p (const class loop *outer, const class loop *loop)
402209ff 65{
9ba025a2
ZD
66 unsigned odepth = loop_depth (outer);
67
68 return (loop_depth (loop) > odepth
9771b263 69 && (*loop->superloops)[odepth] == outer);
402209ff
JH
70}
71
1ad03593
SP
72/* Returns the loop such that LOOP is nested DEPTH (indexed from zero)
73 loops within LOOP. */
a7e5372d 74
99b1c316
MS
75class loop *
76superloop_at_depth (class loop *loop, unsigned depth)
a7e5372d 77{
9ba025a2
ZD
78 unsigned ldepth = loop_depth (loop);
79
80 gcc_assert (depth <= ldepth);
a7e5372d 81
9ba025a2 82 if (depth == ldepth)
a7e5372d
ZD
83 return loop;
84
9771b263 85 return (*loop->superloops)[depth];
a7e5372d
ZD
86}
87
89f8f30f
ZD
88/* Returns the list of the latch edges of LOOP. */
89
9771b263 90static vec<edge>
99b1c316 91get_loop_latch_edges (const class loop *loop)
89f8f30f
ZD
92{
93 edge_iterator ei;
94 edge e;
6e1aa848 95 vec<edge> ret = vNULL;
89f8f30f
ZD
96
97 FOR_EACH_EDGE (e, ei, loop->header->preds)
98 {
99 if (dominated_by_p (CDI_DOMINATORS, e->src, loop->header))
9771b263 100 ret.safe_push (e);
89f8f30f
ZD
101 }
102
103 return ret;
104}
105
402209ff
JH
106/* Dump the loop information specified by LOOP to the stream FILE
107 using auxiliary dump callback function LOOP_DUMP_AUX if non null. */
108
109void
99b1c316
MS
110flow_loop_dump (const class loop *loop, FILE *file,
111 void (*loop_dump_aux) (const class loop *, FILE *, int),
d329e058 112 int verbose)
402209ff 113{
2ecfd709 114 basic_block *bbs;
3d436d2a 115 unsigned i;
9771b263 116 vec<edge> latches;
89f8f30f 117 edge e;
2ecfd709 118
402209ff
JH
119 if (! loop || ! loop->header)
120 return;
121
7490e6c4 122 fprintf (file, ";;\n;; Loop %d\n", loop->num);
402209ff 123
89f8f30f
ZD
124 fprintf (file, ";; header %d, ", loop->header->index);
125 if (loop->latch)
126 fprintf (file, "latch %d\n", loop->latch->index);
127 else
128 {
129 fprintf (file, "multiple latches:");
130 latches = get_loop_latch_edges (loop);
9771b263 131 FOR_EACH_VEC_ELT (latches, i, e)
89f8f30f 132 fprintf (file, " %d", e->src->index);
9771b263 133 latches.release ();
89f8f30f
ZD
134 fprintf (file, "\n");
135 }
136
99f8a411 137 fprintf (file, ";; depth %d, outer %ld\n",
9ba025a2
ZD
138 loop_depth (loop), (long) (loop_outer (loop)
139 ? loop_outer (loop)->num : -1));
402209ff 140
199b1891
ML
141 if (loop->latch)
142 {
143 bool read_profile_p;
144 gcov_type nit = expected_loop_iterations_unbounded (loop, &read_profile_p);
145 if (read_profile_p && !loop->any_estimate)
65e009bb
JJ
146 fprintf (file, ";; profile-based iteration count: %" PRIu64 "\n",
147 (uint64_t) nit);
199b1891
ML
148 }
149
2ecfd709
ZD
150 fprintf (file, ";; nodes:");
151 bbs = get_loop_body (loop);
152 for (i = 0; i < loop->num_nodes; i++)
153 fprintf (file, " %d", bbs[i]->index);
154 free (bbs);
155 fprintf (file, "\n");
5f0d2358 156
402209ff
JH
157 if (loop_dump_aux)
158 loop_dump_aux (loop, file, verbose);
159}
160
d73be268 161/* Dump the loop information about loops to the stream FILE,
402209ff
JH
162 using auxiliary dump callback function LOOP_DUMP_AUX if non null. */
163
164void
99b1c316 165flow_loops_dump (FILE *file, void (*loop_dump_aux) (const class loop *, FILE *, int), int verbose)
402209ff 166{
d73be268 167 if (!current_loops || ! file)
402209ff
JH
168 return;
169
0fc822d0 170 fprintf (file, ";; %d loops found\n", number_of_loops (cfun));
2ecfd709 171
e41ba804 172 for (auto loop : loops_list (cfun, LI_INCLUDE_ROOT))
402209ff 173 {
2ecfd709 174 flow_loop_dump (loop, file, loop_dump_aux, verbose);
402209ff
JH
175 }
176
177 if (verbose)
d73be268 178 flow_loops_cfg_dump (file);
402209ff
JH
179}
180
2ecfd709 181/* Free data allocated for LOOP. */
9e2f83a5 182
35b07080 183void
99b1c316 184flow_loop_free (class loop *loop)
2ecfd709 185{
6270df4c
ZD
186 struct loop_exit *exit, *next;
187
9771b263 188 vec_free (loop->superloops);
6270df4c
ZD
189
190 /* Break the list of the loop exit records. They will be freed when the
191 corresponding edge is rescanned or removed, and this avoids
192 accessing the (already released) head of the list stored in the
193 loop structure. */
9e2f83a5 194 for (exit = loop->exits->next; exit != loop->exits; exit = next)
6270df4c
ZD
195 {
196 next = exit->next;
197 exit->next = exit;
198 exit->prev = exit;
199 }
9e2f83a5
ZD
200
201 ggc_free (loop->exits);
202 ggc_free (loop);
2ecfd709
ZD
203}
204
402209ff
JH
205/* Free all the memory allocated for LOOPS. */
206
207void
d329e058 208flow_loops_free (struct loops *loops)
402209ff 209{
42fd6772 210 if (loops->larray)
402209ff 211 {
3d436d2a 212 unsigned i;
42fd6772 213 loop_p loop;
402209ff
JH
214
215 /* Free the loop descriptors. */
9771b263 216 FOR_EACH_VEC_SAFE_ELT (loops->larray, i, loop)
402209ff 217 {
2ecfd709
ZD
218 if (!loop)
219 continue;
220
221 flow_loop_free (loop);
402209ff 222 }
5f0d2358 223
9771b263 224 vec_free (loops->larray);
402209ff
JH
225 }
226}
227
2ecfd709
ZD
228/* Find the nodes contained within the LOOP with header HEADER.
229 Return the number of nodes within the loop. */
402209ff 230
2b271002 231int
99b1c316 232flow_loop_nodes_find (basic_block header, class loop *loop)
402209ff 233{
6e1aa848 234 vec<basic_block> stack = vNULL;
2ecfd709 235 int num_nodes = 1;
89f8f30f
ZD
236 edge latch;
237 edge_iterator latch_ei;
402209ff 238
2ecfd709 239 header->loop_father = loop;
402209ff 240
89f8f30f 241 FOR_EACH_EDGE (latch, latch_ei, loop->header->preds)
402209ff 242 {
89f8f30f
ZD
243 if (latch->src->loop_father == loop
244 || !dominated_by_p (CDI_DOMINATORS, latch->src, loop->header))
245 continue;
246
402209ff 247 num_nodes++;
9771b263 248 stack.safe_push (latch->src);
89f8f30f 249 latch->src->loop_father = loop;
d329e058 250
9771b263 251 while (!stack.is_empty ())
402209ff 252 {
2ecfd709
ZD
253 basic_block node;
254 edge e;
628f6a4e 255 edge_iterator ei;
402209ff 256
9771b263 257 node = stack.pop ();
d329e058 258
628f6a4e 259 FOR_EACH_EDGE (e, ei, node->preds)
402209ff 260 {
2ecfd709
ZD
261 basic_block ancestor = e->src;
262
89f8f30f 263 if (ancestor->loop_father != loop)
2ecfd709
ZD
264 {
265 ancestor->loop_father = loop;
2ecfd709 266 num_nodes++;
9771b263 267 stack.safe_push (ancestor);
2ecfd709 268 }
402209ff
JH
269 }
270 }
271 }
9771b263 272 stack.release ();
89f8f30f 273
402209ff
JH
274 return num_nodes;
275}
276
9ba025a2
ZD
277/* Records the vector of superloops of the loop LOOP, whose immediate
278 superloop is FATHER. */
279
35b07080 280static void
99b1c316 281establish_preds (class loop *loop, class loop *father)
35b07080 282{
9ba025a2
ZD
283 loop_p ploop;
284 unsigned depth = loop_depth (father) + 1;
285 unsigned i;
a310245f 286
9771b263
DN
287 loop->superloops = 0;
288 vec_alloc (loop->superloops, depth);
289 FOR_EACH_VEC_SAFE_ELT (father->superloops, i, ploop)
290 loop->superloops->quick_push (ploop);
291 loop->superloops->quick_push (father);
35b07080
ZD
292
293 for (ploop = loop->inner; ploop; ploop = ploop->next)
9ba025a2 294 establish_preds (ploop, loop);
35b07080
ZD
295}
296
2ecfd709 297/* Add LOOP to the loop hierarchy tree where FATHER is father of the
35b07080 298 added loop. If LOOP has some children, take care of that their
1cc521f1
MM
299 pred field will be initialized correctly. If AFTER is non-null
300 then it's expected it's a pointer into FATHERs inner sibling
301 list and LOOP is added behind AFTER, otherwise it's added in front
302 of FATHERs siblings. */
402209ff 303
2ecfd709 304void
99b1c316
MS
305flow_loop_tree_node_add (class loop *father, class loop *loop,
306 class loop *after)
402209ff 307{
1cc521f1
MM
308 if (after)
309 {
310 loop->next = after->next;
311 after->next = loop;
312 }
313 else
314 {
315 loop->next = father->inner;
316 father->inner = loop;
317 }
2ecfd709 318
9ba025a2 319 establish_preds (loop, father);
402209ff
JH
320}
321
2ecfd709 322/* Remove LOOP from the loop hierarchy tree. */
402209ff 323
2ecfd709 324void
99b1c316 325flow_loop_tree_node_remove (class loop *loop)
402209ff 326{
99b1c316 327 class loop *prev, *father;
402209ff 328
9ba025a2 329 father = loop_outer (loop);
402209ff 330
2ecfd709
ZD
331 /* Remove loop from the list of sons. */
332 if (father->inner == loop)
333 father->inner = loop->next;
334 else
335 {
9ba025a2
ZD
336 for (prev = father->inner; prev->next != loop; prev = prev->next)
337 continue;
2ecfd709
ZD
338 prev->next = loop->next;
339 }
402209ff 340
9771b263 341 loop->superloops = NULL;
402209ff
JH
342}
343
6270df4c
ZD
344/* Allocates and returns new loop structure. */
345
99b1c316 346class loop *
6270df4c
ZD
347alloc_loop (void)
348{
99b1c316 349 class loop *loop = ggc_cleared_alloc<class loop> ();
9e2f83a5 350
766090c2 351 loop->exits = ggc_cleared_alloc<loop_exit> ();
9e2f83a5 352 loop->exits->next = loop->exits->prev = loop->exits;
204b560f 353 loop->can_be_parallel = false;
18767ebc 354 loop->constraints = 0;
807e902e 355 loop->nb_iterations_upper_bound = 0;
200eafbf 356 loop->nb_iterations_likely_upper_bound = 0;
807e902e 357 loop->nb_iterations_estimate = 0;
6270df4c
ZD
358 return loop;
359}
360
4ed88ee3
ZD
361/* Initializes loops structure LOOPS, reserving place for NUM_LOOPS loops
362 (including the root of the loop tree). */
363
dd366ec3
RB
364void
365init_loops_structure (struct function *fn,
366 struct loops *loops, unsigned num_loops)
4ed88ee3 367{
99b1c316 368 class loop *root;
4ed88ee3
ZD
369
370 memset (loops, 0, sizeof *loops);
9771b263 371 vec_alloc (loops->larray, num_loops);
4ed88ee3
ZD
372
373 /* Dummy loop containing whole function. */
374 root = alloc_loop ();
0cae8d31 375 root->num_nodes = n_basic_blocks_for_fn (fn);
fefa31b5
DM
376 root->latch = EXIT_BLOCK_PTR_FOR_FN (fn);
377 root->header = ENTRY_BLOCK_PTR_FOR_FN (fn);
378 ENTRY_BLOCK_PTR_FOR_FN (fn)->loop_father = root;
379 EXIT_BLOCK_PTR_FOR_FN (fn)->loop_father = root;
4ed88ee3 380
9771b263 381 loops->larray->quick_push (root);
4ed88ee3
ZD
382 loops->tree_root = root;
383}
384
0375167b
RB
385/* Returns whether HEADER is a loop header. */
386
387bool
388bb_loop_header_p (basic_block header)
389{
390 edge_iterator ei;
391 edge e;
392
393 /* If we have an abnormal predecessor, do not consider the
394 loop (not worth the problems). */
395 if (bb_has_abnormal_pred (header))
396 return false;
397
398 /* Look for back edges where a predecessor is dominated
399 by this block. A natural loop has a single entry
400 node (header) that dominates all the nodes in the
401 loop. It also has single back edge to the header
402 from a latch node. */
403 FOR_EACH_EDGE (e, ei, header->preds)
404 {
405 basic_block latch = e->src;
fefa31b5 406 if (latch != ENTRY_BLOCK_PTR_FOR_FN (cfun)
0375167b
RB
407 && dominated_by_p (CDI_DOMINATORS, latch, header))
408 return true;
409 }
410
411 return false;
412}
413
5f0d2358 414/* Find all the natural loops in the function and save in LOOPS structure and
391886c8 415 recalculate loop_father information in basic block structures.
0375167b
RB
416 If LOOPS is non-NULL then the loop structures for already recorded loops
417 will be re-used and their number will not change. We assume that no
418 stale loops exist in LOOPS.
419 When LOOPS is NULL it is allocated and re-built from scratch.
420 Return the built LOOPS structure. */
402209ff 421
0375167b 422struct loops *
70388d94 423flow_loops_find (struct loops *loops)
402209ff 424{
0375167b 425 bool from_scratch = (loops == NULL);
402209ff 426 int *rc_order;
0375167b
RB
427 int b;
428 unsigned i;
402209ff 429
4ed88ee3
ZD
430 /* Ensure that the dominators are computed. */
431 calculate_dominance_info (CDI_DOMINATORS);
402209ff 432
0375167b 433 if (!loops)
4ed88ee3 434 {
766090c2 435 loops = ggc_cleared_alloc<struct loops> ();
dd366ec3 436 init_loops_structure (cfun, loops, 1);
4ed88ee3 437 }
402209ff 438
0375167b
RB
439 /* Ensure that loop exits were released. */
440 gcc_assert (loops->exits == NULL);
402209ff 441
0375167b
RB
442 /* Taking care of this degenerate case makes the rest of
443 this code simpler. */
0cae8d31 444 if (n_basic_blocks_for_fn (cfun) == NUM_FIXED_BLOCKS)
0375167b 445 return loops;
2ecfd709 446
0375167b 447 /* The root loop node contains all basic-blocks. */
0cae8d31 448 loops->tree_root->num_nodes = n_basic_blocks_for_fn (cfun);
d329e058 449
0375167b
RB
450 /* Compute depth first search order of the CFG so that outer
451 natural loops will be found before inner natural loops. */
0cae8d31 452 rc_order = XNEWVEC (int, n_basic_blocks_for_fn (cfun));
0375167b 453 pre_and_rev_post_order_compute (NULL, rc_order, false);
16f2b86a 454
0375167b
RB
455 /* Gather all loop headers in reverse completion order and allocate
456 loop structures for loops that are not already present. */
ef062b13 457 auto_vec<loop_p> larray (loops->larray->length ());
0cae8d31 458 for (b = 0; b < n_basic_blocks_for_fn (cfun) - NUM_FIXED_BLOCKS; b++)
0375167b 459 {
06e28de2 460 basic_block header = BASIC_BLOCK_FOR_FN (cfun, rc_order[b]);
0375167b 461 if (bb_loop_header_p (header))
402209ff 462 {
99b1c316 463 class loop *loop;
2ecfd709 464
0375167b
RB
465 /* The current active loop tree has valid loop-fathers for
466 header blocks. */
467 if (!from_scratch
468 && header->loop_father->header == header)
2ecfd709 469 {
0375167b
RB
470 loop = header->loop_father;
471 /* If we found an existing loop remove it from the
472 loop tree. It is going to be inserted again
473 below. */
474 flow_loop_tree_node_remove (loop);
2ecfd709 475 }
0375167b
RB
476 else
477 {
478 /* Otherwise allocate a new loop structure for the loop. */
479 loop = alloc_loop ();
480 /* ??? We could re-use unused loop slots here. */
481 loop->num = loops->larray->length ();
482 vec_safe_push (loops->larray, loop);
483 loop->header = header;
484
485 if (!from_scratch
486 && dump_file && (dump_flags & TDF_DETAILS))
487 fprintf (dump_file, "flow_loops_find: discovered new "
488 "loop %d with header %d\n",
489 loop->num, header->index);
490 }
6aaf596b
RB
491 /* Reset latch, we recompute it below. */
492 loop->latch = NULL;
0375167b 493 larray.safe_push (loop);
402209ff 494 }
402209ff 495
0375167b
RB
496 /* Make blocks part of the loop root node at start. */
497 header->loop_father = loops->tree_root;
498 }
2ecfd709 499
0375167b 500 free (rc_order);
2ecfd709 501
0375167b
RB
502 /* Now iterate over the loops found, insert them into the loop tree
503 and assign basic-block ownership. */
504 for (i = 0; i < larray.length (); ++i)
402209ff 505 {
99b1c316 506 class loop *loop = larray[i];
0375167b 507 basic_block header = loop->header;
09c5c12e
TV
508 edge_iterator ei;
509 edge e;
402209ff 510
0375167b
RB
511 flow_loop_tree_node_add (header->loop_father, loop);
512 loop->num_nodes = flow_loop_nodes_find (loop->header, loop);
09c5c12e
TV
513
514 /* Look for the latch for this header block, if it has just a
515 single one. */
516 FOR_EACH_EDGE (e, ei, header->preds)
517 {
518 basic_block latch = e->src;
519
520 if (flow_bb_inside_loop_p (loop, latch))
521 {
522 if (loop->latch != NULL)
523 {
524 /* More than one latch edge. */
525 loop->latch = NULL;
526 break;
527 }
528 loop->latch = latch;
529 }
530 }
2ecfd709 531 }
3d436d2a 532
0375167b 533 return loops;
402209ff
JH
534}
535
26993e95
RB
536/* qsort helper for sort_sibling_loops. */
537
538static int *sort_sibling_loops_cmp_rpo;
539static int
540sort_sibling_loops_cmp (const void *la_, const void *lb_)
541{
99b1c316
MS
542 const class loop *la = *(const class loop * const *)la_;
543 const class loop *lb = *(const class loop * const *)lb_;
26993e95
RB
544 return (sort_sibling_loops_cmp_rpo[la->header->index]
545 - sort_sibling_loops_cmp_rpo[lb->header->index]);
546}
547
548/* Sort sibling loops in RPO order. */
549
550void
551sort_sibling_loops (function *fn)
552{
553 /* Match flow_loops_find in the order we sort sibling loops. */
554 sort_sibling_loops_cmp_rpo = XNEWVEC (int, last_basic_block_for_fn (cfun));
555 int *rc_order = XNEWVEC (int, n_basic_blocks_for_fn (cfun));
556 pre_and_rev_post_order_compute_fn (fn, NULL, rc_order, false);
557 for (int i = 0; i < n_basic_blocks_for_fn (cfun) - NUM_FIXED_BLOCKS; ++i)
558 sort_sibling_loops_cmp_rpo[rc_order[i]] = i;
559 free (rc_order);
560
561 auto_vec<loop_p, 3> siblings;
e41ba804 562 for (auto loop : loops_list (fn, LI_INCLUDE_ROOT))
26993e95
RB
563 if (loop->inner && loop->inner->next)
564 {
565 loop_p sibling = loop->inner;
566 do
567 {
568 siblings.safe_push (sibling);
569 sibling = sibling->next;
570 }
571 while (sibling);
572 siblings.qsort (sort_sibling_loops_cmp);
573 loop_p *siblingp = &loop->inner;
574 for (unsigned i = 0; i < siblings.length (); ++i)
575 {
576 *siblingp = siblings[i];
577 siblingp = &(*siblingp)->next;
578 }
579 *siblingp = NULL;
580 siblings.truncate (0);
581 }
582
583 free (sort_sibling_loops_cmp_rpo);
584 sort_sibling_loops_cmp_rpo = NULL;
585}
586
89f8f30f
ZD
587/* Ratio of frequencies of edges so that one of more latch edges is
588 considered to belong to inner loop with same header. */
589#define HEAVY_EDGE_RATIO 8
590
591/* Minimum number of samples for that we apply
592 find_subloop_latch_edge_by_profile heuristics. */
593#define HEAVY_EDGE_MIN_SAMPLES 10
594
595/* If the profile info is available, finds an edge in LATCHES that much more
596 frequent than the remaining edges. Returns such an edge, or NULL if we do
597 not find one.
598
599 We do not use guessed profile here, only the measured one. The guessed
600 profile is usually too flat and unreliable for this (and it is mostly based
601 on the loop structure of the program, so it does not make much sense to
602 derive the loop structure from it). */
b8698a0f 603
89f8f30f 604static edge
9771b263 605find_subloop_latch_edge_by_profile (vec<edge> latches)
89f8f30f
ZD
606{
607 unsigned i;
608 edge e, me = NULL;
3995f3a2 609 profile_count mcount = profile_count::zero (), tcount = profile_count::zero ();
89f8f30f 610
9771b263 611 FOR_EACH_VEC_ELT (latches, i, e)
89f8f30f 612 {
ef30ab83 613 if (e->count ()> mcount)
89f8f30f
ZD
614 {
615 me = e;
ef30ab83 616 mcount = e->count();
89f8f30f 617 }
ef30ab83 618 tcount += e->count();
89f8f30f
ZD
619 }
620
e7a74006 621 if (!tcount.initialized_p () || !(tcount.ipa () > HEAVY_EDGE_MIN_SAMPLES)
3995f3a2 622 || (tcount - mcount).apply_scale (HEAVY_EDGE_RATIO, 1) > tcount)
89f8f30f
ZD
623 return NULL;
624
625 if (dump_file)
626 fprintf (dump_file,
627 "Found latch edge %d -> %d using profile information.\n",
628 me->src->index, me->dest->index);
629 return me;
630}
631
632/* Among LATCHES, guesses a latch edge of LOOP corresponding to subloop, based
633 on the structure of induction variables. Returns this edge, or NULL if we
634 do not find any.
635
636 We are quite conservative, and look just for an obvious simple innermost
637 loop (which is the case where we would lose the most performance by not
638 disambiguating the loop). More precisely, we look for the following
639 situation: The source of the chosen latch edge dominates sources of all
640 the other latch edges. Additionally, the header does not contain a phi node
641 such that the argument from the chosen edge is equal to the argument from
642 another edge. */
643
644static edge
99b1c316 645find_subloop_latch_edge_by_ivs (class loop *loop ATTRIBUTE_UNUSED, vec<edge> latches)
89f8f30f 646{
9771b263 647 edge e, latch = latches[0];
89f8f30f 648 unsigned i;
538dd0b7
DM
649 gphi *phi;
650 gphi_iterator psi;
726a989a 651 tree lop;
89f8f30f
ZD
652 basic_block bb;
653
654 /* Find the candidate for the latch edge. */
9771b263 655 for (i = 1; latches.iterate (i, &e); i++)
89f8f30f
ZD
656 if (dominated_by_p (CDI_DOMINATORS, latch->src, e->src))
657 latch = e;
658
659 /* Verify that it dominates all the latch edges. */
9771b263 660 FOR_EACH_VEC_ELT (latches, i, e)
89f8f30f
ZD
661 if (!dominated_by_p (CDI_DOMINATORS, e->src, latch->src))
662 return NULL;
663
664 /* Check for a phi node that would deny that this is a latch edge of
665 a subloop. */
726a989a 666 for (psi = gsi_start_phis (loop->header); !gsi_end_p (psi); gsi_next (&psi))
89f8f30f 667 {
538dd0b7 668 phi = psi.phi ();
89f8f30f
ZD
669 lop = PHI_ARG_DEF_FROM_EDGE (phi, latch);
670
671 /* Ignore the values that are not changed inside the subloop. */
672 if (TREE_CODE (lop) != SSA_NAME
673 || SSA_NAME_DEF_STMT (lop) == phi)
674 continue;
726a989a 675 bb = gimple_bb (SSA_NAME_DEF_STMT (lop));
89f8f30f
ZD
676 if (!bb || !flow_bb_inside_loop_p (loop, bb))
677 continue;
678
9771b263 679 FOR_EACH_VEC_ELT (latches, i, e)
89f8f30f
ZD
680 if (e != latch
681 && PHI_ARG_DEF_FROM_EDGE (phi, e) == lop)
682 return NULL;
683 }
684
685 if (dump_file)
686 fprintf (dump_file,
687 "Found latch edge %d -> %d using iv structure.\n",
688 latch->src->index, latch->dest->index);
689 return latch;
690}
691
692/* If we can determine that one of the several latch edges of LOOP behaves
693 as a latch edge of a separate subloop, returns this edge. Otherwise
694 returns NULL. */
695
696static edge
99b1c316 697find_subloop_latch_edge (class loop *loop)
89f8f30f 698{
9771b263 699 vec<edge> latches = get_loop_latch_edges (loop);
89f8f30f
ZD
700 edge latch = NULL;
701
9771b263 702 if (latches.length () > 1)
89f8f30f
ZD
703 {
704 latch = find_subloop_latch_edge_by_profile (latches);
705
706 if (!latch
707 /* We consider ivs to guess the latch edge only in SSA. Perhaps we
708 should use cfghook for this, but it is hard to imagine it would
709 be useful elsewhere. */
710 && current_ir_type () == IR_GIMPLE)
711 latch = find_subloop_latch_edge_by_ivs (loop, latches);
712 }
713
9771b263 714 latches.release ();
89f8f30f
ZD
715 return latch;
716}
717
718/* Callback for make_forwarder_block. Returns true if the edge E is marked
719 in the set MFB_REIS_SET. */
720
6e2830c3 721static hash_set<edge> *mfb_reis_set;
89f8f30f
ZD
722static bool
723mfb_redirect_edges_in_set (edge e)
724{
6e2830c3 725 return mfb_reis_set->contains (e);
89f8f30f
ZD
726}
727
728/* Creates a subloop of LOOP with latch edge LATCH. */
729
730static void
99b1c316 731form_subloop (class loop *loop, edge latch)
89f8f30f
ZD
732{
733 edge_iterator ei;
734 edge e, new_entry;
99b1c316 735 class loop *new_loop;
b8698a0f 736
6e2830c3 737 mfb_reis_set = new hash_set<edge>;
89f8f30f
ZD
738 FOR_EACH_EDGE (e, ei, loop->header->preds)
739 {
740 if (e != latch)
6e2830c3 741 mfb_reis_set->add (e);
89f8f30f
ZD
742 }
743 new_entry = make_forwarder_block (loop->header, mfb_redirect_edges_in_set,
744 NULL);
6e2830c3 745 delete mfb_reis_set;
89f8f30f
ZD
746
747 loop->header = new_entry->src;
748
749 /* Find the blocks and subloops that belong to the new loop, and add it to
750 the appropriate place in the loop tree. */
751 new_loop = alloc_loop ();
752 new_loop->header = new_entry->dest;
753 new_loop->latch = latch->src;
754 add_loop (new_loop, loop);
755}
756
757/* Make all the latch edges of LOOP to go to a single forwarder block --
758 a new latch of LOOP. */
759
760static void
99b1c316 761merge_latch_edges (class loop *loop)
89f8f30f 762{
9771b263 763 vec<edge> latches = get_loop_latch_edges (loop);
89f8f30f
ZD
764 edge latch, e;
765 unsigned i;
766
9771b263 767 gcc_assert (latches.length () > 0);
89f8f30f 768
9771b263
DN
769 if (latches.length () == 1)
770 loop->latch = latches[0]->src;
89f8f30f
ZD
771 else
772 {
773 if (dump_file)
774 fprintf (dump_file, "Merged latch edges of loop %d\n", loop->num);
775
6e2830c3 776 mfb_reis_set = new hash_set<edge>;
9771b263 777 FOR_EACH_VEC_ELT (latches, i, e)
6e2830c3 778 mfb_reis_set->add (e);
89f8f30f
ZD
779 latch = make_forwarder_block (loop->header, mfb_redirect_edges_in_set,
780 NULL);
6e2830c3 781 delete mfb_reis_set;
89f8f30f
ZD
782
783 loop->header = latch->dest;
784 loop->latch = latch->src;
785 }
786
9771b263 787 latches.release ();
89f8f30f
ZD
788}
789
790/* LOOP may have several latch edges. Transform it into (possibly several)
791 loops with single latch edge. */
792
793static void
99b1c316 794disambiguate_multiple_latches (class loop *loop)
89f8f30f
ZD
795{
796 edge e;
797
ea2c620c 798 /* We eliminate the multiple latches by splitting the header to the forwarder
89f8f30f
ZD
799 block F and the rest R, and redirecting the edges. There are two cases:
800
801 1) If there is a latch edge E that corresponds to a subloop (we guess
802 that based on profile -- if it is taken much more often than the
803 remaining edges; and on trees, using the information about induction
804 variables of the loops), we redirect E to R, all the remaining edges to
805 F, then rescan the loops and try again for the outer loop.
806 2) If there is no such edge, we redirect all latch edges to F, and the
807 entry edges to R, thus making F the single latch of the loop. */
808
809 if (dump_file)
810 fprintf (dump_file, "Disambiguating loop %d with multiple latches\n",
811 loop->num);
812
813 /* During latch merging, we may need to redirect the entry edges to a new
814 block. This would cause problems if the entry edge was the one from the
815 entry block. To avoid having to handle this case specially, split
816 such entry edge. */
fefa31b5 817 e = find_edge (ENTRY_BLOCK_PTR_FOR_FN (cfun), loop->header);
89f8f30f
ZD
818 if (e)
819 split_edge (e);
820
821 while (1)
822 {
823 e = find_subloop_latch_edge (loop);
824 if (!e)
825 break;
826
827 form_subloop (loop, e);
828 }
829
830 merge_latch_edges (loop);
831}
832
833/* Split loops with multiple latch edges. */
834
835void
836disambiguate_loops_with_multiple_latches (void)
837{
e41ba804 838 for (auto loop : loops_list (cfun, 0))
89f8f30f
ZD
839 {
840 if (!loop->latch)
841 disambiguate_multiple_latches (loop);
842 }
843}
844
da7d8304 845/* Return nonzero if basic block BB belongs to LOOP. */
2ecfd709 846bool
99b1c316 847flow_bb_inside_loop_p (const class loop *loop, const_basic_block bb)
2ecfd709 848{
99b1c316 849 class loop *source_loop;
2ecfd709 850
fefa31b5
DM
851 if (bb == ENTRY_BLOCK_PTR_FOR_FN (cfun)
852 || bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
2ecfd709
ZD
853 return 0;
854
855 source_loop = bb->loop_father;
856 return loop == source_loop || flow_loop_nested_p (loop, source_loop);
857}
858
89f8f30f 859/* Enumeration predicate for get_loop_body_with_size. */
2ecfd709 860static bool
ed7a4b4b 861glb_enum_p (const_basic_block bb, const void *glb_loop)
2ecfd709 862{
99b1c316 863 const class loop *const loop = (const class loop *) glb_loop;
89f8f30f
ZD
864 return (bb != loop->header
865 && dominated_by_p (CDI_DOMINATORS, bb, loop->header));
866}
867
868/* Gets basic blocks of a LOOP. Header is the 0-th block, rest is in dfs
869 order against direction of edges from latch. Specially, if
870 header != latch, latch is the 1-st block. LOOP cannot be the fake
871 loop tree root, and its size must be at most MAX_SIZE. The blocks
872 in the LOOP body are stored to BODY, and the size of the LOOP is
873 returned. */
874
875unsigned
99b1c316 876get_loop_body_with_size (const class loop *loop, basic_block *body,
89f8f30f
ZD
877 unsigned max_size)
878{
879 return dfs_enumerate_from (loop->header, 1, glb_enum_p,
ed7a4b4b 880 body, max_size, loop);
2ecfd709
ZD
881}
882
8d28e87d
ZD
883/* Gets basic blocks of a LOOP. Header is the 0-th block, rest is in dfs
884 order against direction of edges from latch. Specially, if
885 header != latch, latch is the 1-st block. */
89f8f30f 886
2ecfd709 887basic_block *
99b1c316 888get_loop_body (const class loop *loop)
2ecfd709 889{
89f8f30f 890 basic_block *body, bb;
3d436d2a 891 unsigned tv = 0;
2ecfd709 892
341c100f 893 gcc_assert (loop->num_nodes);
2ecfd709 894
c302207e 895 body = XNEWVEC (basic_block, loop->num_nodes);
2ecfd709 896
fefa31b5 897 if (loop->latch == EXIT_BLOCK_PTR_FOR_FN (cfun))
2ecfd709 898 {
89f8f30f
ZD
899 /* There may be blocks unreachable from EXIT_BLOCK, hence we need to
900 special-case the fake loop that contains the whole function. */
0cae8d31 901 gcc_assert (loop->num_nodes == (unsigned) n_basic_blocks_for_fn (cfun));
89f8f30f 902 body[tv++] = loop->header;
fefa31b5 903 body[tv++] = EXIT_BLOCK_PTR_FOR_FN (cfun);
11cd3bed 904 FOR_EACH_BB_FN (bb, cfun)
89f8f30f 905 body[tv++] = bb;
2ecfd709 906 }
89f8f30f
ZD
907 else
908 tv = get_loop_body_with_size (loop, body, loop->num_nodes);
2ecfd709 909
341c100f 910 gcc_assert (tv == loop->num_nodes);
89f8f30f 911 return body;
2ecfd709
ZD
912}
913
50654f6c
ZD
914/* Fills dominance descendants inside LOOP of the basic block BB into
915 array TOVISIT from index *TV. */
916
917static void
99b1c316 918fill_sons_in_loop (const class loop *loop, basic_block bb,
50654f6c
ZD
919 basic_block *tovisit, int *tv)
920{
921 basic_block son, postpone = NULL;
922
923 tovisit[(*tv)++] = bb;
924 for (son = first_dom_son (CDI_DOMINATORS, bb);
925 son;
926 son = next_dom_son (CDI_DOMINATORS, son))
927 {
928 if (!flow_bb_inside_loop_p (loop, son))
929 continue;
930
931 if (dominated_by_p (CDI_DOMINATORS, loop->latch, son))
932 {
933 postpone = son;
934 continue;
935 }
936 fill_sons_in_loop (loop, son, tovisit, tv);
937 }
938
939 if (postpone)
940 fill_sons_in_loop (loop, postpone, tovisit, tv);
941}
942
943/* Gets body of a LOOP (that must be different from the outermost loop)
944 sorted by dominance relation. Additionally, if a basic block s dominates
945 the latch, then only blocks dominated by s are be after it. */
946
947basic_block *
99b1c316 948get_loop_body_in_dom_order (const class loop *loop)
50654f6c
ZD
949{
950 basic_block *tovisit;
951 int tv;
952
341c100f 953 gcc_assert (loop->num_nodes);
50654f6c 954
c302207e 955 tovisit = XNEWVEC (basic_block, loop->num_nodes);
50654f6c 956
fefa31b5 957 gcc_assert (loop->latch != EXIT_BLOCK_PTR_FOR_FN (cfun));
50654f6c
ZD
958
959 tv = 0;
960 fill_sons_in_loop (loop, loop->header, tovisit, &tv);
961
341c100f 962 gcc_assert (tv == (int) loop->num_nodes);
50654f6c
ZD
963
964 return tovisit;
965}
966
e855c69d
AB
967/* Gets body of a LOOP sorted via provided BB_COMPARATOR. */
968
969basic_block *
99b1c316 970get_loop_body_in_custom_order (const class loop *loop,
e855c69d
AB
971 int (*bb_comparator) (const void *, const void *))
972{
973 basic_block *bbs = get_loop_body (loop);
974
975 qsort (bbs, loop->num_nodes, sizeof (basic_block), bb_comparator);
976
977 return bbs;
978}
979
eef99cd9
GB
980/* Same as above, but use gcc_sort_r instead of qsort. */
981
982basic_block *
983get_loop_body_in_custom_order (const class loop *loop, void *data,
984 int (*bb_comparator) (const void *, const void *, void *))
985{
986 basic_block *bbs = get_loop_body (loop);
987
988 gcc_sort_r (bbs, loop->num_nodes, sizeof (basic_block), bb_comparator, data);
989
990 return bbs;
991}
992
40923b20
DP
993/* Get body of a LOOP in breadth first sort order. */
994
995basic_block *
99b1c316 996get_loop_body_in_bfs_order (const class loop *loop)
40923b20
DP
997{
998 basic_block *blocks;
999 basic_block bb;
895548a5
KT
1000 unsigned int i = 1;
1001 unsigned int vc = 0;
40923b20 1002
341c100f 1003 gcc_assert (loop->num_nodes);
fefa31b5 1004 gcc_assert (loop->latch != EXIT_BLOCK_PTR_FOR_FN (cfun));
40923b20 1005
c302207e 1006 blocks = XNEWVEC (basic_block, loop->num_nodes);
0e3de1d4 1007 auto_bitmap visited;
895548a5
KT
1008 blocks[0] = loop->header;
1009 bitmap_set_bit (visited, loop->header->index);
40923b20
DP
1010 while (i < loop->num_nodes)
1011 {
1012 edge e;
628f6a4e 1013 edge_iterator ei;
895548a5
KT
1014 gcc_assert (i > vc);
1015 bb = blocks[vc++];
c22cacf3 1016
628f6a4e 1017 FOR_EACH_EDGE (e, ei, bb->succs)
c22cacf3
MS
1018 {
1019 if (flow_bb_inside_loop_p (loop, e->dest))
1020 {
895548a5 1021 /* This bb is now visited. */
fcaa4ca4
NF
1022 if (bitmap_set_bit (visited, e->dest->index))
1023 blocks[i++] = e->dest;
c22cacf3
MS
1024 }
1025 }
40923b20 1026 }
c22cacf3 1027
40923b20
DP
1028 return blocks;
1029}
1030
6270df4c
ZD
1031/* Hash function for struct loop_exit. */
1032
2a22f99c
TS
1033hashval_t
1034loop_exit_hasher::hash (loop_exit *exit)
6270df4c 1035{
6270df4c
ZD
1036 return htab_hash_pointer (exit->e);
1037}
1038
1039/* Equality function for struct loop_exit. Compares with edge. */
1040
2a22f99c
TS
1041bool
1042loop_exit_hasher::equal (loop_exit *exit, edge e)
6270df4c 1043{
6270df4c
ZD
1044 return exit->e == e;
1045}
1046
1047/* Frees the list of loop exit descriptions EX. */
1048
2a22f99c
TS
1049void
1050loop_exit_hasher::remove (loop_exit *exit)
6270df4c 1051{
2a22f99c 1052 loop_exit *next;
6270df4c
ZD
1053 for (; exit; exit = next)
1054 {
1055 next = exit->next_e;
b8698a0f 1056
6270df4c
ZD
1057 exit->next->prev = exit->prev;
1058 exit->prev->next = exit->next;
1059
9e2f83a5 1060 ggc_free (exit);
6270df4c
ZD
1061 }
1062}
1063
1064/* Returns the list of records for E as an exit of a loop. */
1065
1066static struct loop_exit *
1067get_exit_descriptions (edge e)
1068{
2a22f99c 1069 return current_loops->exits->find_with_hash (e, htab_hash_pointer (e));
6270df4c
ZD
1070}
1071
1072/* Updates the lists of loop exits in that E appears.
1073 If REMOVED is true, E is being removed, and we
1074 just remove it from the lists of exits.
1075 If NEW_EDGE is true and E is not a loop exit, we
1076 do not try to remove it from loop exit lists. */
1077
1078void
1079rescan_loop_exit (edge e, bool new_edge, bool removed)
1080{
6270df4c 1081 struct loop_exit *exits = NULL, *exit;
99b1c316 1082 class loop *aloop, *cloop;
6270df4c 1083
f87000d0 1084 if (!loops_state_satisfies_p (LOOPS_HAVE_RECORDED_EXITS))
6270df4c
ZD
1085 return;
1086
1087 if (!removed
1088 && e->src->loop_father != NULL
1089 && e->dest->loop_father != NULL
1090 && !flow_bb_inside_loop_p (e->src->loop_father, e->dest))
1091 {
1092 cloop = find_common_loop (e->src->loop_father, e->dest->loop_father);
1093 for (aloop = e->src->loop_father;
1094 aloop != cloop;
9ba025a2 1095 aloop = loop_outer (aloop))
6270df4c 1096 {
766090c2 1097 exit = ggc_alloc<loop_exit> ();
6270df4c
ZD
1098 exit->e = e;
1099
9e2f83a5
ZD
1100 exit->next = aloop->exits->next;
1101 exit->prev = aloop->exits;
6270df4c
ZD
1102 exit->next->prev = exit;
1103 exit->prev->next = exit;
1104
1105 exit->next_e = exits;
1106 exits = exit;
1107 }
b8698a0f 1108 }
6270df4c
ZD
1109
1110 if (!exits && new_edge)
1111 return;
1112
2a22f99c
TS
1113 loop_exit **slot
1114 = current_loops->exits->find_slot_with_hash (e, htab_hash_pointer (e),
1115 exits ? INSERT : NO_INSERT);
6270df4c
ZD
1116 if (!slot)
1117 return;
1118
1119 if (exits)
1120 {
1121 if (*slot)
2a22f99c 1122 loop_exit_hasher::remove (*slot);
6270df4c
ZD
1123 *slot = exits;
1124 }
1125 else
2a22f99c 1126 current_loops->exits->clear_slot (slot);
6270df4c
ZD
1127}
1128
1129/* For each loop, record list of exit edges, and start maintaining these
1130 lists. */
1131
1132void
1133record_loop_exits (void)
1134{
1135 basic_block bb;
1136 edge_iterator ei;
1137 edge e;
1138
4839cb59
ZD
1139 if (!current_loops)
1140 return;
1141
f87000d0 1142 if (loops_state_satisfies_p (LOOPS_HAVE_RECORDED_EXITS))
6270df4c 1143 return;
f87000d0 1144 loops_state_set (LOOPS_HAVE_RECORDED_EXITS);
6270df4c
ZD
1145
1146 gcc_assert (current_loops->exits == NULL);
2a22f99c
TS
1147 current_loops->exits
1148 = hash_table<loop_exit_hasher>::create_ggc (2 * number_of_loops (cfun));
6270df4c 1149
11cd3bed 1150 FOR_EACH_BB_FN (bb, cfun)
6270df4c
ZD
1151 {
1152 FOR_EACH_EDGE (e, ei, bb->succs)
1153 {
1154 rescan_loop_exit (e, true, false);
1155 }
1156 }
1157}
1158
1159/* Dumps information about the exit in *SLOT to FILE.
1160 Callback for htab_traverse. */
1161
2a22f99c
TS
1162int
1163dump_recorded_exit (loop_exit **slot, FILE *file)
6270df4c 1164{
2a22f99c 1165 struct loop_exit *exit = *slot;
6270df4c
ZD
1166 unsigned n = 0;
1167 edge e = exit->e;
1168
1169 for (; exit != NULL; exit = exit->next_e)
1170 n++;
1171
2a22f99c 1172 fprintf (file, "Edge %d->%d exits %u loops\n",
6270df4c
ZD
1173 e->src->index, e->dest->index, n);
1174
1175 return 1;
1176}
1177
1178/* Dumps the recorded exits of loops to FILE. */
1179
1180extern void dump_recorded_exits (FILE *);
1181void
1182dump_recorded_exits (FILE *file)
1183{
1184 if (!current_loops->exits)
1185 return;
2a22f99c 1186 current_loops->exits->traverse<FILE *, dump_recorded_exit> (file);
6270df4c
ZD
1187}
1188
1189/* Releases lists of loop exits. */
1190
1191void
61183076 1192release_recorded_exits (function *fn)
6270df4c 1193{
61183076
RB
1194 gcc_assert (loops_state_satisfies_p (fn, LOOPS_HAVE_RECORDED_EXITS));
1195 loops_for_fn (fn)->exits->empty ();
1196 loops_for_fn (fn)->exits = NULL;
1197 loops_state_clear (fn, LOOPS_HAVE_RECORDED_EXITS);
6270df4c
ZD
1198}
1199
ca83d385
ZD
1200/* Returns the list of the exit edges of a LOOP. */
1201
4b9d61f7 1202auto_vec<edge>
f10d2d85 1203get_loop_exit_edges (const class loop *loop, basic_block *body)
35b07080 1204{
4b9d61f7 1205 auto_vec<edge> edges;
ca83d385
ZD
1206 edge e;
1207 unsigned i;
628f6a4e 1208 edge_iterator ei;
6270df4c 1209 struct loop_exit *exit;
35b07080 1210
fefa31b5 1211 gcc_assert (loop->latch != EXIT_BLOCK_PTR_FOR_FN (cfun));
35b07080 1212
6270df4c
ZD
1213 /* If we maintain the lists of exits, use them. Otherwise we must
1214 scan the body of the loop. */
f87000d0 1215 if (loops_state_satisfies_p (LOOPS_HAVE_RECORDED_EXITS))
6270df4c 1216 {
9e2f83a5 1217 for (exit = loop->exits->next; exit->e; exit = exit->next)
9771b263 1218 edges.safe_push (exit->e);
6270df4c
ZD
1219 }
1220 else
1221 {
f10d2d85
RB
1222 bool body_from_caller = true;
1223 if (!body)
1224 {
1225 body = get_loop_body (loop);
1226 body_from_caller = false;
1227 }
6270df4c
ZD
1228 for (i = 0; i < loop->num_nodes; i++)
1229 FOR_EACH_EDGE (e, ei, body[i]->succs)
1230 {
1231 if (!flow_bb_inside_loop_p (loop, e->dest))
9771b263 1232 edges.safe_push (e);
6270df4c 1233 }
f10d2d85
RB
1234 if (!body_from_caller)
1235 free (body);
6270df4c 1236 }
35b07080
ZD
1237
1238 return edges;
1239}
1240
50654f6c
ZD
1241/* Counts the number of conditional branches inside LOOP. */
1242
1243unsigned
99b1c316 1244num_loop_branches (const class loop *loop)
50654f6c
ZD
1245{
1246 unsigned i, n;
1247 basic_block * body;
1248
fefa31b5 1249 gcc_assert (loop->latch != EXIT_BLOCK_PTR_FOR_FN (cfun));
50654f6c
ZD
1250
1251 body = get_loop_body (loop);
1252 n = 0;
1253 for (i = 0; i < loop->num_nodes; i++)
628f6a4e 1254 if (EDGE_COUNT (body[i]->succs) >= 2)
50654f6c
ZD
1255 n++;
1256 free (body);
1257
1258 return n;
1259}
1260
2ecfd709
ZD
1261/* Adds basic block BB to LOOP. */
1262void
99b1c316 1263add_bb_to_loop (basic_block bb, class loop *loop)
d329e058 1264{
9ba025a2
ZD
1265 unsigned i;
1266 loop_p ploop;
6270df4c
ZD
1267 edge_iterator ei;
1268 edge e;
1269
1270 gcc_assert (bb->loop_father == NULL);
1271 bb->loop_father = loop;
6270df4c 1272 loop->num_nodes++;
9771b263 1273 FOR_EACH_VEC_SAFE_ELT (loop->superloops, i, ploop)
9ba025a2 1274 ploop->num_nodes++;
6270df4c
ZD
1275
1276 FOR_EACH_EDGE (e, ei, bb->succs)
1277 {
1278 rescan_loop_exit (e, true, false);
1279 }
1280 FOR_EACH_EDGE (e, ei, bb->preds)
1281 {
1282 rescan_loop_exit (e, true, false);
1283 }
598ec7bd 1284}
2ecfd709
ZD
1285
1286/* Remove basic block BB from loops. */
1287void
d329e058
AJ
1288remove_bb_from_loops (basic_block bb)
1289{
9771b263 1290 unsigned i;
99b1c316 1291 class loop *loop = bb->loop_father;
9ba025a2 1292 loop_p ploop;
6270df4c
ZD
1293 edge_iterator ei;
1294 edge e;
1295
1296 gcc_assert (loop != NULL);
1297 loop->num_nodes--;
9771b263 1298 FOR_EACH_VEC_SAFE_ELT (loop->superloops, i, ploop)
9ba025a2 1299 ploop->num_nodes--;
6270df4c 1300 bb->loop_father = NULL;
6270df4c
ZD
1301
1302 FOR_EACH_EDGE (e, ei, bb->succs)
1303 {
1304 rescan_loop_exit (e, false, true);
1305 }
1306 FOR_EACH_EDGE (e, ei, bb->preds)
1307 {
1308 rescan_loop_exit (e, false, true);
1309 }
a310245f 1310}
2ecfd709
ZD
1311
1312/* Finds nearest common ancestor in loop tree for given loops. */
99b1c316
MS
1313class loop *
1314find_common_loop (class loop *loop_s, class loop *loop_d)
2ecfd709 1315{
9ba025a2
ZD
1316 unsigned sdepth, ddepth;
1317
2ecfd709
ZD
1318 if (!loop_s) return loop_d;
1319 if (!loop_d) return loop_s;
d329e058 1320
9ba025a2
ZD
1321 sdepth = loop_depth (loop_s);
1322 ddepth = loop_depth (loop_d);
1323
1324 if (sdepth < ddepth)
9771b263 1325 loop_d = (*loop_d->superloops)[sdepth];
9ba025a2 1326 else if (sdepth > ddepth)
9771b263 1327 loop_s = (*loop_s->superloops)[ddepth];
2ecfd709
ZD
1328
1329 while (loop_s != loop_d)
1330 {
9ba025a2
ZD
1331 loop_s = loop_outer (loop_s);
1332 loop_d = loop_outer (loop_d);
2ecfd709
ZD
1333 }
1334 return loop_s;
1335}
1336
42fd6772
ZD
1337/* Removes LOOP from structures and frees its data. */
1338
1339void
99b1c316 1340delete_loop (class loop *loop)
42fd6772
ZD
1341{
1342 /* Remove the loop from structure. */
1343 flow_loop_tree_node_remove (loop);
1344
1345 /* Remove loop from loops array. */
9771b263 1346 (*current_loops->larray)[loop->num] = NULL;
42fd6772
ZD
1347
1348 /* Free loop data. */
1349 flow_loop_free (loop);
1350}
1351
3d436d2a 1352/* Cancels the LOOP; it must be innermost one. */
b00bf166
KH
1353
1354static void
99b1c316 1355cancel_loop (class loop *loop)
3d436d2a
ZD
1356{
1357 basic_block *bbs;
1358 unsigned i;
99b1c316 1359 class loop *outer = loop_outer (loop);
3d436d2a 1360
341c100f 1361 gcc_assert (!loop->inner);
3d436d2a
ZD
1362
1363 /* Move blocks up one level (they should be removed as soon as possible). */
1364 bbs = get_loop_body (loop);
1365 for (i = 0; i < loop->num_nodes; i++)
9ba025a2 1366 bbs[i]->loop_father = outer;
3d436d2a 1367
b78384e0 1368 free (bbs);
42fd6772 1369 delete_loop (loop);
3d436d2a
ZD
1370}
1371
1372/* Cancels LOOP and all its subloops. */
1373void
99b1c316 1374cancel_loop_tree (class loop *loop)
3d436d2a
ZD
1375{
1376 while (loop->inner)
d73be268
ZD
1377 cancel_loop_tree (loop->inner);
1378 cancel_loop (loop);
3d436d2a
ZD
1379}
1380
0ecf545c
MS
1381/* Disable warnings about missing quoting in GCC diagnostics for
1382 the verification errors. Their format strings don't follow GCC
1383 diagnostic conventions and the calls are ultimately followed by
1384 a deliberate ICE triggered by a failed assertion. */
1385#if __GNUC__ >= 10
1386# pragma GCC diagnostic push
1387# pragma GCC diagnostic ignored "-Wformat-diag"
1388#endif
1389
d73be268 1390/* Checks that information about loops is correct
e0bb17a8 1391 -- sizes of loops are all right
2ecfd709
ZD
1392 -- results of get_loop_body really belong to the loop
1393 -- loop header have just single entry edge and single latch edge
1394 -- loop latches have only single successor that is header of their loop
3d436d2a 1395 -- irreducible loops are correctly marked
cc360b36 1396 -- the cached loop depth and loop father of each bb is correct
2ecfd709 1397 */
24e47c76 1398DEBUG_FUNCTION void
d73be268 1399verify_loop_structure (void)
2ecfd709 1400{
3d436d2a 1401 unsigned *sizes, i, j;
a271b42d 1402 basic_block bb, *bbs;
2ecfd709 1403 int err = 0;
35b07080 1404 edge e;
0fc822d0 1405 unsigned num = number_of_loops (cfun);
6270df4c 1406 struct loop_exit *exit, *mexit;
7d776ee2 1407 bool dom_available = dom_info_available_p (CDI_DOMINATORS);
2ecfd709 1408
a9e0d843
RB
1409 if (loops_state_satisfies_p (LOOPS_NEED_FIXUP))
1410 {
1411 error ("loop verification on loop tree that needs fixup");
1412 err = 1;
1413 }
1414
7d776ee2
RG
1415 /* We need up-to-date dominators, compute or verify them. */
1416 if (!dom_available)
1417 calculate_dominance_info (CDI_DOMINATORS);
1418 else
1419 verify_dominators (CDI_DOMINATORS);
510dbcce 1420
b0dd8c90
RB
1421 /* Check the loop tree root. */
1422 if (current_loops->tree_root->header != ENTRY_BLOCK_PTR_FOR_FN (cfun)
1423 || current_loops->tree_root->latch != EXIT_BLOCK_PTR_FOR_FN (cfun)
1424 || (current_loops->tree_root->num_nodes
1425 != (unsigned) n_basic_blocks_for_fn (cfun)))
1426 {
1427 error ("corrupt loop tree root");
1428 err = 1;
1429 }
1430
f64fb0fa 1431 /* Check the headers. */
11cd3bed 1432 FOR_EACH_BB_FN (bb, cfun)
a271b42d 1433 if (bb_loop_header_p (bb))
f64fb0fa 1434 {
a271b42d
RB
1435 if (bb->loop_father->header == NULL)
1436 {
1437 error ("loop with header %d marked for removal", bb->index);
1438 err = 1;
1439 }
1440 else if (bb->loop_father->header != bb)
1441 {
1442 error ("loop with header %d not in loop tree", bb->index);
1443 err = 1;
1444 }
1445 }
1446 else if (bb->loop_father->header == bb)
1447 {
1448 error ("non-loop with header %d not marked for removal", bb->index);
f64fb0fa
MP
1449 err = 1;
1450 }
1451
a271b42d 1452 /* Check the recorded loop father and sizes of loops. */
7ba9e72d 1453 auto_sbitmap visited (last_basic_block_for_fn (cfun));
f61e445a 1454 bitmap_clear (visited);
0cae8d31 1455 bbs = XNEWVEC (basic_block, n_basic_blocks_for_fn (cfun));
e41ba804 1456 for (auto loop : loops_list (cfun, LI_FROM_INNERMOST))
cc360b36 1457 {
a271b42d 1458 unsigned n;
cc360b36 1459
a271b42d
RB
1460 if (loop->header == NULL)
1461 {
1462 error ("removed loop %d in loop tree", loop->num);
1463 err = 1;
1464 continue;
1465 }
1466
0cae8d31 1467 n = get_loop_body_with_size (loop, bbs, n_basic_blocks_for_fn (cfun));
a271b42d
RB
1468 if (loop->num_nodes != n)
1469 {
1470 error ("size of loop %d should be %d, not %d",
1471 loop->num, n, loop->num_nodes);
1472 err = 1;
1473 }
1474
1475 for (j = 0; j < n; j++)
cc360b36
SB
1476 {
1477 bb = bbs[j];
1478
0375167b
RB
1479 if (!flow_bb_inside_loop_p (loop, bb))
1480 {
1481 error ("bb %d does not belong to loop %d",
1482 bb->index, loop->num);
1483 err = 1;
1484 }
1485
cc360b36 1486 /* Ignore this block if it is in an inner loop. */
d7c028c0 1487 if (bitmap_bit_p (visited, bb->index))
cc360b36 1488 continue;
d7c028c0 1489 bitmap_set_bit (visited, bb->index);
cc360b36
SB
1490
1491 if (bb->loop_father != loop)
1492 {
1493 error ("bb %d has father loop %d, should be loop %d",
1494 bb->index, bb->loop_father->num, loop->num);
1495 err = 1;
1496 }
1497 }
cc360b36 1498 }
a271b42d 1499 free (bbs);
2ecfd709
ZD
1500
1501 /* Check headers and latches. */
e41ba804 1502 for (auto loop : loops_list (cfun, 0))
2ecfd709 1503 {
42fd6772 1504 i = loop->num;
a271b42d
RB
1505 if (loop->header == NULL)
1506 continue;
0375167b
RB
1507 if (!bb_loop_header_p (loop->header))
1508 {
1509 error ("loop %d%'s header is not a loop header", i);
1510 err = 1;
1511 }
f87000d0 1512 if (loops_state_satisfies_p (LOOPS_HAVE_PREHEADERS)
628f6a4e 1513 && EDGE_COUNT (loop->header->preds) != 2)
2ecfd709 1514 {
d8a07487 1515 error ("loop %d%'s header does not have exactly 2 entries", i);
2ecfd709
ZD
1516 err = 1;
1517 }
6aaf596b
RB
1518 if (loop->latch)
1519 {
1520 if (!find_edge (loop->latch, loop->header))
1521 {
1522 error ("loop %d%'s latch does not have an edge to its header", i);
1523 err = 1;
1524 }
1525 if (!dominated_by_p (CDI_DOMINATORS, loop->latch, loop->header))
1526 {
1527 error ("loop %d%'s latch is not dominated by its header", i);
1528 err = 1;
1529 }
1530 }
f87000d0 1531 if (loops_state_satisfies_p (LOOPS_HAVE_SIMPLE_LATCHES))
2ecfd709 1532 {
c5cbcccf 1533 if (!single_succ_p (loop->latch))
2ecfd709 1534 {
d8a07487 1535 error ("loop %d%'s latch does not have exactly 1 successor", i);
2ecfd709
ZD
1536 err = 1;
1537 }
c5cbcccf 1538 if (single_succ (loop->latch) != loop->header)
2ecfd709 1539 {
d8a07487 1540 error ("loop %d%'s latch does not have header as successor", i);
2ecfd709
ZD
1541 err = 1;
1542 }
1543 if (loop->latch->loop_father != loop)
1544 {
d8a07487 1545 error ("loop %d%'s latch does not belong directly to it", i);
2ecfd709
ZD
1546 err = 1;
1547 }
1548 }
1549 if (loop->header->loop_father != loop)
1550 {
d8a07487 1551 error ("loop %d%'s header does not belong directly to it", i);
2ecfd709
ZD
1552 err = 1;
1553 }
dfef1164 1554 if (loops_state_satisfies_p (LOOPS_HAVE_MARKED_IRREDUCIBLE_REGIONS))
35b07080 1555 {
dfef1164
RB
1556 edge_iterator ei;
1557 FOR_EACH_EDGE (e, ei, loop->header->preds)
1558 if (dominated_by_p (CDI_DOMINATORS, e->src, loop->header)
1559 && e->flags & EDGE_IRREDUCIBLE_LOOP)
1560 {
1561 error ("loop %d%'s latch is marked as part of irreducible"
1562 " region", i);
1563 err = 1;
1564 }
35b07080 1565 }
0a1a3afb
RB
1566
1567 /* Check cached number of iterations for released SSA names. */
1568 tree ref;
1569 if (loop->nb_iterations
1570 && (ref = walk_tree (&loop->nb_iterations,
1571 find_released_ssa_name, NULL, NULL)))
1572 {
1573 error ("loop %d%'s number of iterations %qE references the"
1574 " released SSA name %qE", i, loop->nb_iterations, ref);
1575 err = 1;
1576 }
2ecfd709
ZD
1577 }
1578
3d436d2a 1579 /* Check irreducible loops. */
f87000d0 1580 if (loops_state_satisfies_p (LOOPS_HAVE_MARKED_IRREDUCIBLE_REGIONS))
3d436d2a 1581 {
d626fe77
RB
1582 auto_edge_flag saved_edge_irr (cfun);
1583 auto_bb_flag saved_bb_irr (cfun);
1584 /* Save old info. */
11cd3bed 1585 FOR_EACH_BB_FN (bb, cfun)
35b07080 1586 {
628f6a4e 1587 edge_iterator ei;
35b07080 1588 if (bb->flags & BB_IRREDUCIBLE_LOOP)
d626fe77 1589 bb->flags |= saved_bb_irr;
628f6a4e 1590 FOR_EACH_EDGE (e, ei, bb->succs)
35b07080 1591 if (e->flags & EDGE_IRREDUCIBLE_LOOP)
d626fe77 1592 e->flags |= saved_edge_irr;
35b07080 1593 }
3d436d2a
ZD
1594
1595 /* Recount it. */
d73be268 1596 mark_irreducible_loops ();
3d436d2a
ZD
1597
1598 /* Compare. */
11cd3bed 1599 FOR_EACH_BB_FN (bb, cfun)
3d436d2a 1600 {
628f6a4e
BE
1601 edge_iterator ei;
1602
3d436d2a 1603 if ((bb->flags & BB_IRREDUCIBLE_LOOP)
d626fe77 1604 && !(bb->flags & saved_bb_irr))
3d436d2a 1605 {
ab532386 1606 error ("basic block %d should be marked irreducible", bb->index);
3d436d2a
ZD
1607 err = 1;
1608 }
1609 else if (!(bb->flags & BB_IRREDUCIBLE_LOOP)
d626fe77 1610 && (bb->flags & saved_bb_irr))
3d436d2a 1611 {
ab532386 1612 error ("basic block %d should not be marked irreducible", bb->index);
3d436d2a
ZD
1613 err = 1;
1614 }
d626fe77 1615 bb->flags &= ~saved_bb_irr;
628f6a4e 1616 FOR_EACH_EDGE (e, ei, bb->succs)
35b07080
ZD
1617 {
1618 if ((e->flags & EDGE_IRREDUCIBLE_LOOP)
d626fe77 1619 && !(e->flags & saved_edge_irr))
35b07080 1620 {
ab532386 1621 error ("edge from %d to %d should be marked irreducible",
35b07080
ZD
1622 e->src->index, e->dest->index);
1623 err = 1;
1624 }
1625 else if (!(e->flags & EDGE_IRREDUCIBLE_LOOP)
d626fe77 1626 && (e->flags & saved_edge_irr))
35b07080 1627 {
ab532386 1628 error ("edge from %d to %d should not be marked irreducible",
35b07080
ZD
1629 e->src->index, e->dest->index);
1630 err = 1;
1631 }
d626fe77 1632 e->flags &= ~saved_edge_irr;
35b07080 1633 }
3d436d2a 1634 }
3d436d2a
ZD
1635 }
1636
6270df4c 1637 /* Check the recorded loop exits. */
e41ba804 1638 for (auto loop : loops_list (cfun, 0))
82b85a85 1639 {
9e2f83a5 1640 if (!loop->exits || loop->exits->e != NULL)
6270df4c
ZD
1641 {
1642 error ("corrupted head of the exits list of loop %d",
1643 loop->num);
1644 err = 1;
1645 }
1646 else
1647 {
1648 /* Check that the list forms a cycle, and all elements except
1649 for the head are nonnull. */
9e2f83a5 1650 for (mexit = loop->exits, exit = mexit->next, i = 0;
6270df4c
ZD
1651 exit->e && exit != mexit;
1652 exit = exit->next)
1653 {
1654 if (i++ & 1)
1655 mexit = mexit->next;
1656 }
1657
9e2f83a5 1658 if (exit != loop->exits)
6270df4c
ZD
1659 {
1660 error ("corrupted exits list of loop %d", loop->num);
1661 err = 1;
1662 }
1663 }
1664
f87000d0 1665 if (!loops_state_satisfies_p (LOOPS_HAVE_RECORDED_EXITS))
6270df4c 1666 {
9e2f83a5 1667 if (loop->exits->next != loop->exits)
6270df4c
ZD
1668 {
1669 error ("nonempty exits list of loop %d, but exits are not recorded",
1670 loop->num);
1671 err = 1;
1672 }
1673 }
1674 }
1675
f87000d0 1676 if (loops_state_satisfies_p (LOOPS_HAVE_RECORDED_EXITS))
6270df4c
ZD
1677 {
1678 unsigned n_exits = 0, eloops;
1679
a271b42d 1680 sizes = XCNEWVEC (unsigned, num);
42fd6772 1681 memset (sizes, 0, sizeof (unsigned) * num);
11cd3bed 1682 FOR_EACH_BB_FN (bb, cfun)
82b85a85 1683 {
628f6a4e 1684 edge_iterator ei;
d73be268 1685 if (bb->loop_father == current_loops->tree_root)
82b85a85 1686 continue;
628f6a4e 1687 FOR_EACH_EDGE (e, ei, bb->succs)
82b85a85 1688 {
82b85a85
ZD
1689 if (flow_bb_inside_loop_p (bb->loop_father, e->dest))
1690 continue;
1691
6270df4c
ZD
1692 n_exits++;
1693 exit = get_exit_descriptions (e);
1694 if (!exit)
1695 {
d8a07487 1696 error ("exit %d->%d not recorded",
6270df4c
ZD
1697 e->src->index, e->dest->index);
1698 err = 1;
1699 }
1700 eloops = 0;
1701 for (; exit; exit = exit->next_e)
1702 eloops++;
1703
9e026da7 1704 for (class loop *loop = bb->loop_father;
661bc682
RB
1705 loop != e->dest->loop_father
1706 /* When a loop exit is also an entry edge which
1707 can happen when avoiding CFG manipulations
1708 then the last loop exited is the outer loop
1709 of the loop entered. */
1710 && loop != loop_outer (e->dest->loop_father);
9ba025a2 1711 loop = loop_outer (loop))
82b85a85 1712 {
6270df4c 1713 eloops--;
82b85a85 1714 sizes[loop->num]++;
6270df4c
ZD
1715 }
1716
1717 if (eloops != 0)
1718 {
0ecf545c 1719 error ("wrong list of exited loops for edge %d->%d",
6270df4c
ZD
1720 e->src->index, e->dest->index);
1721 err = 1;
82b85a85
ZD
1722 }
1723 }
1724 }
1725
2a22f99c 1726 if (n_exits != current_loops->exits->elements ())
82b85a85 1727 {
d8a07487 1728 error ("too many loop exits recorded");
6270df4c
ZD
1729 err = 1;
1730 }
82b85a85 1731
e41ba804 1732 for (auto loop : loops_list (cfun, 0))
6270df4c
ZD
1733 {
1734 eloops = 0;
9e2f83a5 1735 for (exit = loop->exits->next; exit->e; exit = exit->next)
6270df4c
ZD
1736 eloops++;
1737 if (eloops != sizes[loop->num])
82b85a85 1738 {
6270df4c
ZD
1739 error ("%d exits recorded for loop %d (having %d exits)",
1740 eloops, loop->num, sizes[loop->num]);
82b85a85
ZD
1741 err = 1;
1742 }
1743 }
a271b42d
RB
1744
1745 free (sizes);
82b85a85
ZD
1746 }
1747
341c100f 1748 gcc_assert (!err);
82b85a85 1749
7d776ee2
RG
1750 if (!dom_available)
1751 free_dominance_info (CDI_DOMINATORS);
2ecfd709
ZD
1752}
1753
0ecf545c
MS
1754#if __GNUC__ >= 10
1755# pragma GCC diagnostic pop
1756#endif
1757
2ecfd709
ZD
1758/* Returns latch edge of LOOP. */
1759edge
99b1c316 1760loop_latch_edge (const class loop *loop)
2ecfd709 1761{
9ff3d2de 1762 return find_edge (loop->latch, loop->header);
402209ff 1763}
2ecfd709
ZD
1764
1765/* Returns preheader edge of LOOP. */
1766edge
99b1c316 1767loop_preheader_edge (const class loop *loop)
2ecfd709
ZD
1768{
1769 edge e;
628f6a4e 1770 edge_iterator ei;
2ecfd709 1771
a68f286c
RB
1772 gcc_assert (loops_state_satisfies_p (LOOPS_HAVE_PREHEADERS)
1773 && ! loops_state_satisfies_p (LOOPS_MAY_HAVE_MULTIPLE_LATCHES));
c7b852c8 1774
628f6a4e
BE
1775 FOR_EACH_EDGE (e, ei, loop->header->preds)
1776 if (e->src != loop->latch)
1777 break;
2ecfd709 1778
a68f286c
RB
1779 if (! e)
1780 {
1781 gcc_assert (! loop_outer (loop));
1782 return single_succ_edge (ENTRY_BLOCK_PTR_FOR_FN (cfun));
1783 }
1784
2ecfd709
ZD
1785 return e;
1786}
70388d94
ZD
1787
1788/* Returns true if E is an exit of LOOP. */
1789
1790bool
99b1c316 1791loop_exit_edge_p (const class loop *loop, const_edge e)
70388d94
ZD
1792{
1793 return (flow_bb_inside_loop_p (loop, e->src)
1794 && !flow_bb_inside_loop_p (loop, e->dest));
1795}
ac8f6c69
ZD
1796
1797/* Returns the single exit edge of LOOP, or NULL if LOOP has either no exit
6270df4c
ZD
1798 or more than one exit. If loops do not have the exits recorded, NULL
1799 is returned always. */
ac8f6c69
ZD
1800
1801edge
99b1c316 1802single_exit (const class loop *loop)
ac8f6c69 1803{
9e2f83a5 1804 struct loop_exit *exit = loop->exits->next;
ac8f6c69 1805
f87000d0 1806 if (!loops_state_satisfies_p (LOOPS_HAVE_RECORDED_EXITS))
6270df4c 1807 return NULL;
ac8f6c69 1808
9e2f83a5 1809 if (exit->e && exit->next == loop->exits)
6270df4c
ZD
1810 return exit->e;
1811 else
1812 return NULL;
ac8f6c69 1813}
f8bf9252 1814
f4ce375d 1815/* Returns true when BB has an incoming edge exiting LOOP. */
f8bf9252
SP
1816
1817bool
99b1c316 1818loop_exits_to_bb_p (class loop *loop, basic_block bb)
f8bf9252
SP
1819{
1820 edge e;
1821 edge_iterator ei;
1822
1823 FOR_EACH_EDGE (e, ei, bb->preds)
1824 if (loop_exit_edge_p (loop, e))
1825 return true;
1826
1827 return false;
1828}
f4ce375d
VK
1829
1830/* Returns true when BB has an outgoing edge exiting LOOP. */
1831
1832bool
99b1c316 1833loop_exits_from_bb_p (class loop *loop, basic_block bb)
f4ce375d
VK
1834{
1835 edge e;
1836 edge_iterator ei;
1837
1838 FOR_EACH_EDGE (e, ei, bb->succs)
1839 if (loop_exit_edge_p (loop, e))
1840 return true;
1841
1842 return false;
1843}
e25a6711
TJ
1844
1845/* Return location corresponding to the loop control condition if possible. */
1846
4f5b9c80 1847dump_user_location_t
99b1c316 1848get_loop_location (class loop *loop)
e25a6711 1849{
9d56eaa2 1850 rtx_insn *insn = NULL;
99b1c316 1851 class niter_desc *desc = NULL;
e25a6711
TJ
1852 edge exit;
1853
1854 /* For a for or while loop, we would like to return the location
1855 of the for or while statement, if possible. To do this, look
1856 for the branch guarding the loop back-edge. */
1857
1858 /* If this is a simple loop with an in_edge, then the loop control
1859 branch is typically at the end of its source. */
1860 desc = get_simple_loop_desc (loop);
1861 if (desc->in_edge)
1862 {
1863 FOR_BB_INSNS_REVERSE (desc->in_edge->src, insn)
1864 {
1865 if (INSN_P (insn) && INSN_HAS_LOCATION (insn))
4f5b9c80 1866 return insn;
e25a6711
TJ
1867 }
1868 }
1869 /* If loop has a single exit, then the loop control branch
1870 must be at the end of its source. */
1871 if ((exit = single_exit (loop)))
1872 {
1873 FOR_BB_INSNS_REVERSE (exit->src, insn)
1874 {
1875 if (INSN_P (insn) && INSN_HAS_LOCATION (insn))
4f5b9c80 1876 return insn;
e25a6711
TJ
1877 }
1878 }
1879 /* Next check the latch, to see if it is non-empty. */
1880 FOR_BB_INSNS_REVERSE (loop->latch, insn)
1881 {
1882 if (INSN_P (insn) && INSN_HAS_LOCATION (insn))
4f5b9c80 1883 return insn;
e25a6711
TJ
1884 }
1885 /* Finally, if none of the above identifies the loop control branch,
1886 return the first location in the loop header. */
1887 FOR_BB_INSNS (loop->header, insn)
1888 {
1889 if (INSN_P (insn) && INSN_HAS_LOCATION (insn))
4f5b9c80 1890 return insn;
e25a6711
TJ
1891 }
1892 /* If all else fails, simply return the current function location. */
4f5b9c80 1893 return dump_user_location_t::from_function_decl (current_function_decl);
e25a6711
TJ
1894}
1895
71343877
AM
1896/* Records that every statement in LOOP is executed I_BOUND times.
1897 REALISTIC is true if I_BOUND is expected to be close to the real number
1898 of iterations. UPPER is true if we are sure the loop iterates at most
1899 I_BOUND times. */
1900
1901void
99b1c316 1902record_niter_bound (class loop *loop, const widest_int &i_bound,
807e902e 1903 bool realistic, bool upper)
71343877
AM
1904{
1905 /* Update the bounds only when there is no previous estimation, or when the
1906 current estimation is smaller. */
1907 if (upper
1908 && (!loop->any_upper_bound
807e902e 1909 || wi::ltu_p (i_bound, loop->nb_iterations_upper_bound)))
71343877
AM
1910 {
1911 loop->any_upper_bound = true;
1912 loop->nb_iterations_upper_bound = i_bound;
105e29c5
JH
1913 if (!loop->any_likely_upper_bound)
1914 {
1915 loop->any_likely_upper_bound = true;
1916 loop->nb_iterations_likely_upper_bound = i_bound;
1917 }
71343877
AM
1918 }
1919 if (realistic
1920 && (!loop->any_estimate
807e902e 1921 || wi::ltu_p (i_bound, loop->nb_iterations_estimate)))
71343877
AM
1922 {
1923 loop->any_estimate = true;
1924 loop->nb_iterations_estimate = i_bound;
1925 }
105e29c5
JH
1926 if (!realistic
1927 && (!loop->any_likely_upper_bound
1928 || wi::ltu_p (i_bound, loop->nb_iterations_likely_upper_bound)))
1929 {
1930 loop->any_likely_upper_bound = true;
1931 loop->nb_iterations_likely_upper_bound = i_bound;
1932 }
71343877
AM
1933
1934 /* If an upper bound is smaller than the realistic estimate of the
1935 number of iterations, use the upper bound instead. */
1936 if (loop->any_upper_bound
1937 && loop->any_estimate
807e902e
KZ
1938 && wi::ltu_p (loop->nb_iterations_upper_bound,
1939 loop->nb_iterations_estimate))
71343877 1940 loop->nb_iterations_estimate = loop->nb_iterations_upper_bound;
105e29c5
JH
1941 if (loop->any_upper_bound
1942 && loop->any_likely_upper_bound
1943 && wi::ltu_p (loop->nb_iterations_upper_bound,
1944 loop->nb_iterations_likely_upper_bound))
1945 loop->nb_iterations_likely_upper_bound = loop->nb_iterations_upper_bound;
71343877
AM
1946}
1947
1ef88893 1948/* Similar to get_estimated_loop_iterations, but returns the estimate only
71343877
AM
1949 if it fits to HOST_WIDE_INT. If this is not the case, or the estimate
1950 on the number of iterations of LOOP could not be derived, returns -1. */
1951
1952HOST_WIDE_INT
99b1c316 1953get_estimated_loop_iterations_int (class loop *loop)
71343877 1954{
807e902e 1955 widest_int nit;
71343877
AM
1956 HOST_WIDE_INT hwi_nit;
1957
1958 if (!get_estimated_loop_iterations (loop, &nit))
1959 return -1;
1960
807e902e 1961 if (!wi::fits_shwi_p (nit))
71343877
AM
1962 return -1;
1963 hwi_nit = nit.to_shwi ();
1964
1965 return hwi_nit < 0 ? -1 : hwi_nit;
1966}
1967
1968/* Returns an upper bound on the number of executions of statements
1969 in the LOOP. For statements before the loop exit, this exceeds
1970 the number of execution of the latch by one. */
1971
1972HOST_WIDE_INT
99b1c316 1973max_stmt_executions_int (class loop *loop)
71343877 1974{
1ef88893 1975 HOST_WIDE_INT nit = get_max_loop_iterations_int (loop);
71343877
AM
1976 HOST_WIDE_INT snit;
1977
1978 if (nit == -1)
1979 return -1;
1980
1981 snit = (HOST_WIDE_INT) ((unsigned HOST_WIDE_INT) nit + 1);
1982
1983 /* If the computation overflows, return -1. */
1984 return snit < 0 ? -1 : snit;
1985}
1986
105e29c5
JH
1987/* Returns an likely upper bound on the number of executions of statements
1988 in the LOOP. For statements before the loop exit, this exceeds
1989 the number of execution of the latch by one. */
1990
1991HOST_WIDE_INT
99b1c316 1992likely_max_stmt_executions_int (class loop *loop)
105e29c5
JH
1993{
1994 HOST_WIDE_INT nit = get_likely_max_loop_iterations_int (loop);
1995 HOST_WIDE_INT snit;
1996
1997 if (nit == -1)
1998 return -1;
1999
2000 snit = (HOST_WIDE_INT) ((unsigned HOST_WIDE_INT) nit + 1);
2001
2002 /* If the computation overflows, return -1. */
2003 return snit < 0 ? -1 : snit;
2004}
2005
71343877
AM
2006/* Sets NIT to the estimated number of executions of the latch of the
2007 LOOP. If we have no reliable estimate, the function returns false, otherwise
2008 returns true. */
2009
2010bool
99b1c316 2011get_estimated_loop_iterations (class loop *loop, widest_int *nit)
71343877
AM
2012{
2013 /* Even if the bound is not recorded, possibly we can derrive one from
2014 profile. */
2015 if (!loop->any_estimate)
2016 {
3995f3a2 2017 if (loop->header->count.reliable_p ())
71343877 2018 {
807e902e 2019 *nit = gcov_type_to_wide_int
71343877
AM
2020 (expected_loop_iterations_unbounded (loop) + 1);
2021 return true;
2022 }
2023 return false;
2024 }
2025
2026 *nit = loop->nb_iterations_estimate;
2027 return true;
2028}
2029
2030/* Sets NIT to an upper bound for the maximum number of executions of the
2031 latch of the LOOP. If we have no reliable estimate, the function returns
2032 false, otherwise returns true. */
2033
2034bool
99b1c316 2035get_max_loop_iterations (const class loop *loop, widest_int *nit)
71343877
AM
2036{
2037 if (!loop->any_upper_bound)
2038 return false;
2039
2040 *nit = loop->nb_iterations_upper_bound;
2041 return true;
2042}
1ef88893
AM
2043
2044/* Similar to get_max_loop_iterations, but returns the estimate only
2045 if it fits to HOST_WIDE_INT. If this is not the case, or the estimate
2046 on the number of iterations of LOOP could not be derived, returns -1. */
2047
2048HOST_WIDE_INT
99b1c316 2049get_max_loop_iterations_int (const class loop *loop)
1ef88893 2050{
807e902e 2051 widest_int nit;
1ef88893
AM
2052 HOST_WIDE_INT hwi_nit;
2053
2054 if (!get_max_loop_iterations (loop, &nit))
2055 return -1;
2056
807e902e 2057 if (!wi::fits_shwi_p (nit))
1ef88893
AM
2058 return -1;
2059 hwi_nit = nit.to_shwi ();
2060
2061 return hwi_nit < 0 ? -1 : hwi_nit;
2062}
2063
105e29c5
JH
2064/* Sets NIT to an upper bound for the maximum number of executions of the
2065 latch of the LOOP. If we have no reliable estimate, the function returns
2066 false, otherwise returns true. */
2067
2068bool
99b1c316 2069get_likely_max_loop_iterations (class loop *loop, widest_int *nit)
105e29c5
JH
2070{
2071 if (!loop->any_likely_upper_bound)
2072 return false;
2073
2074 *nit = loop->nb_iterations_likely_upper_bound;
2075 return true;
2076}
2077
2078/* Similar to get_max_loop_iterations, but returns the estimate only
2079 if it fits to HOST_WIDE_INT. If this is not the case, or the estimate
2080 on the number of iterations of LOOP could not be derived, returns -1. */
2081
2082HOST_WIDE_INT
99b1c316 2083get_likely_max_loop_iterations_int (class loop *loop)
105e29c5
JH
2084{
2085 widest_int nit;
2086 HOST_WIDE_INT hwi_nit;
2087
2088 if (!get_likely_max_loop_iterations (loop, &nit))
2089 return -1;
2090
2091 if (!wi::fits_shwi_p (nit))
2092 return -1;
2093 hwi_nit = nit.to_shwi ();
2094
2095 return hwi_nit < 0 ? -1 : hwi_nit;
2096}
2097
4484a35a 2098/* Returns the loop depth of the loop BB belongs to. */
1ef88893 2099
4484a35a
AM
2100int
2101bb_loop_depth (const_basic_block bb)
2102{
2103 return bb->loop_father ? loop_depth (bb->loop_father) : 0;
2104}
08c13199
RB
2105
2106/* Marks LOOP for removal and sets LOOPS_NEED_FIXUP. */
2107
2108void
2109mark_loop_for_removal (loop_p loop)
2110{
024660c5
RB
2111 if (loop->header == NULL)
2112 return;
e4ca2139 2113 loop->former_header = loop->header;
08c13199
RB
2114 loop->header = NULL;
2115 loop->latch = NULL;
2116 loops_state_set (LOOPS_NEED_FIXUP);
2117}
d0a5624b
KL
2118
2119/* Starting from loop tree ROOT, walk loop tree as the visiting
2120 order specified by FLAGS. The supported visiting orders
2121 are:
2122 - LI_ONLY_INNERMOST
2123 - LI_FROM_INNERMOST
2124 - Preorder (if neither of above is specified) */
2125
2126void
2127loops_list::walk_loop_tree (class loop *root, unsigned flags)
2128{
2129 bool only_innermost_p = flags & LI_ONLY_INNERMOST;
2130 bool from_innermost_p = flags & LI_FROM_INNERMOST;
2131 bool preorder_p = !(only_innermost_p || from_innermost_p);
2132
2133 /* Early handle root without any inner loops, make later
2134 processing simpler, that is all loops processed in the
2135 following while loop are impossible to be root. */
2136 if (!root->inner)
2137 {
2138 if (flags & LI_INCLUDE_ROOT)
2139 this->to_visit.quick_push (root->num);
2140 return;
2141 }
2142 else if (preorder_p && flags & LI_INCLUDE_ROOT)
2143 this->to_visit.quick_push (root->num);
2144
2145 class loop *aloop;
2146 for (aloop = root->inner;
2147 aloop->inner != NULL;
2148 aloop = aloop->inner)
2149 {
2150 if (preorder_p)
2151 this->to_visit.quick_push (aloop->num);
2152 continue;
2153 }
2154
2155 while (1)
2156 {
2157 gcc_assert (aloop != root);
2158 if (from_innermost_p || aloop->inner == NULL)
2159 this->to_visit.quick_push (aloop->num);
2160
2161 if (aloop->next)
2162 {
2163 for (aloop = aloop->next;
2164 aloop->inner != NULL;
2165 aloop = aloop->inner)
2166 {
2167 if (preorder_p)
2168 this->to_visit.quick_push (aloop->num);
2169 continue;
2170 }
2171 }
2172 else if (loop_outer (aloop) == root)
2173 break;
2174 else
2175 aloop = loop_outer (aloop);
2176 }
2177
2178 /* When visiting from innermost, we need to consider root here
2179 since the previous while loop doesn't handle it. */
2180 if (from_innermost_p && flags & LI_INCLUDE_ROOT)
2181 this->to_visit.quick_push (root->num);
2182}
2183
This page took 5.617615 seconds and 5 git commands to generate.