1 /* Natural loop discovery code for GNU compiler.
2 Copyright (C) 2000-2015 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
22 #include "coretypes.h"
30 #include "diagnostic-core.h"
32 #include "fold-const.h"
33 #include "internal-fn.h"
34 #include "gimple-iterator.h"
35 #include "gimple-ssa.h"
38 static void flow_loops_cfg_dump (FILE *);
40 /* Dump loop related CFG information. */
43 flow_loops_cfg_dump (FILE *file
)
50 FOR_EACH_BB_FN (bb
, cfun
)
55 fprintf (file
, ";; %d succs { ", bb
->index
);
56 FOR_EACH_EDGE (succ
, ei
, bb
->succs
)
57 fprintf (file
, "%d ", succ
->dest
->index
);
58 fprintf (file
, "}\n");
62 /* Return nonzero if the nodes of LOOP are a subset of OUTER. */
65 flow_loop_nested_p (const struct loop
*outer
, const struct loop
*loop
)
67 unsigned odepth
= loop_depth (outer
);
69 return (loop_depth (loop
) > odepth
70 && (*loop
->superloops
)[odepth
] == outer
);
73 /* Returns the loop such that LOOP is nested DEPTH (indexed from zero)
77 superloop_at_depth (struct loop
*loop
, unsigned depth
)
79 unsigned ldepth
= loop_depth (loop
);
81 gcc_assert (depth
<= ldepth
);
86 return (*loop
->superloops
)[depth
];
89 /* Returns the list of the latch edges of LOOP. */
92 get_loop_latch_edges (const struct loop
*loop
)
96 vec
<edge
> ret
= vNULL
;
98 FOR_EACH_EDGE (e
, ei
, loop
->header
->preds
)
100 if (dominated_by_p (CDI_DOMINATORS
, e
->src
, loop
->header
))
107 /* Dump the loop information specified by LOOP to the stream FILE
108 using auxiliary dump callback function LOOP_DUMP_AUX if non null. */
111 flow_loop_dump (const struct loop
*loop
, FILE *file
,
112 void (*loop_dump_aux
) (const struct loop
*, FILE *, int),
120 if (! loop
|| ! loop
->header
)
123 fprintf (file
, ";;\n;; Loop %d\n", loop
->num
);
125 fprintf (file
, ";; header %d, ", loop
->header
->index
);
127 fprintf (file
, "latch %d\n", loop
->latch
->index
);
130 fprintf (file
, "multiple latches:");
131 latches
= get_loop_latch_edges (loop
);
132 FOR_EACH_VEC_ELT (latches
, i
, e
)
133 fprintf (file
, " %d", e
->src
->index
);
135 fprintf (file
, "\n");
138 fprintf (file
, ";; depth %d, outer %ld\n",
139 loop_depth (loop
), (long) (loop_outer (loop
)
140 ? loop_outer (loop
)->num
: -1));
142 fprintf (file
, ";; nodes:");
143 bbs
= get_loop_body (loop
);
144 for (i
= 0; i
< loop
->num_nodes
; i
++)
145 fprintf (file
, " %d", bbs
[i
]->index
);
147 fprintf (file
, "\n");
150 loop_dump_aux (loop
, file
, verbose
);
153 /* Dump the loop information about loops to the stream FILE,
154 using auxiliary dump callback function LOOP_DUMP_AUX if non null. */
157 flow_loops_dump (FILE *file
, void (*loop_dump_aux
) (const struct loop
*, FILE *, int), int verbose
)
161 if (!current_loops
|| ! file
)
164 fprintf (file
, ";; %d loops found\n", number_of_loops (cfun
));
166 FOR_EACH_LOOP (loop
, LI_INCLUDE_ROOT
)
168 flow_loop_dump (loop
, file
, loop_dump_aux
, verbose
);
172 flow_loops_cfg_dump (file
);
175 /* Free data allocated for LOOP. */
178 flow_loop_free (struct loop
*loop
)
180 struct loop_exit
*exit
, *next
;
182 vec_free (loop
->superloops
);
184 /* Break the list of the loop exit records. They will be freed when the
185 corresponding edge is rescanned or removed, and this avoids
186 accessing the (already released) head of the list stored in the
188 for (exit
= loop
->exits
->next
; exit
!= loop
->exits
; exit
= next
)
195 ggc_free (loop
->exits
);
199 /* Free all the memory allocated for LOOPS. */
202 flow_loops_free (struct loops
*loops
)
209 /* Free the loop descriptors. */
210 FOR_EACH_VEC_SAFE_ELT (loops
->larray
, i
, loop
)
215 flow_loop_free (loop
);
218 vec_free (loops
->larray
);
222 /* Find the nodes contained within the LOOP with header HEADER.
223 Return the number of nodes within the loop. */
226 flow_loop_nodes_find (basic_block header
, struct loop
*loop
)
228 vec
<basic_block
> stack
= vNULL
;
231 edge_iterator latch_ei
;
233 header
->loop_father
= loop
;
235 FOR_EACH_EDGE (latch
, latch_ei
, loop
->header
->preds
)
237 if (latch
->src
->loop_father
== loop
238 || !dominated_by_p (CDI_DOMINATORS
, latch
->src
, loop
->header
))
242 stack
.safe_push (latch
->src
);
243 latch
->src
->loop_father
= loop
;
245 while (!stack
.is_empty ())
253 FOR_EACH_EDGE (e
, ei
, node
->preds
)
255 basic_block ancestor
= e
->src
;
257 if (ancestor
->loop_father
!= loop
)
259 ancestor
->loop_father
= loop
;
261 stack
.safe_push (ancestor
);
271 /* Records the vector of superloops of the loop LOOP, whose immediate
272 superloop is FATHER. */
275 establish_preds (struct loop
*loop
, struct loop
*father
)
278 unsigned depth
= loop_depth (father
) + 1;
281 loop
->superloops
= 0;
282 vec_alloc (loop
->superloops
, depth
);
283 FOR_EACH_VEC_SAFE_ELT (father
->superloops
, i
, ploop
)
284 loop
->superloops
->quick_push (ploop
);
285 loop
->superloops
->quick_push (father
);
287 for (ploop
= loop
->inner
; ploop
; ploop
= ploop
->next
)
288 establish_preds (ploop
, loop
);
291 /* Add LOOP to the loop hierarchy tree where FATHER is father of the
292 added loop. If LOOP has some children, take care of that their
293 pred field will be initialized correctly. */
296 flow_loop_tree_node_add (struct loop
*father
, struct loop
*loop
)
298 loop
->next
= father
->inner
;
299 father
->inner
= loop
;
301 establish_preds (loop
, father
);
304 /* Remove LOOP from the loop hierarchy tree. */
307 flow_loop_tree_node_remove (struct loop
*loop
)
309 struct loop
*prev
, *father
;
311 father
= loop_outer (loop
);
313 /* Remove loop from the list of sons. */
314 if (father
->inner
== loop
)
315 father
->inner
= loop
->next
;
318 for (prev
= father
->inner
; prev
->next
!= loop
; prev
= prev
->next
)
320 prev
->next
= loop
->next
;
323 loop
->superloops
= NULL
;
326 /* Allocates and returns new loop structure. */
331 struct loop
*loop
= ggc_cleared_alloc
<struct loop
> ();
333 loop
->exits
= ggc_cleared_alloc
<loop_exit
> ();
334 loop
->exits
->next
= loop
->exits
->prev
= loop
->exits
;
335 loop
->can_be_parallel
= false;
336 loop
->nb_iterations_upper_bound
= 0;
337 loop
->nb_iterations_estimate
= 0;
341 /* Initializes loops structure LOOPS, reserving place for NUM_LOOPS loops
342 (including the root of the loop tree). */
345 init_loops_structure (struct function
*fn
,
346 struct loops
*loops
, unsigned num_loops
)
350 memset (loops
, 0, sizeof *loops
);
351 vec_alloc (loops
->larray
, num_loops
);
353 /* Dummy loop containing whole function. */
354 root
= alloc_loop ();
355 root
->num_nodes
= n_basic_blocks_for_fn (fn
);
356 root
->latch
= EXIT_BLOCK_PTR_FOR_FN (fn
);
357 root
->header
= ENTRY_BLOCK_PTR_FOR_FN (fn
);
358 ENTRY_BLOCK_PTR_FOR_FN (fn
)->loop_father
= root
;
359 EXIT_BLOCK_PTR_FOR_FN (fn
)->loop_father
= root
;
361 loops
->larray
->quick_push (root
);
362 loops
->tree_root
= root
;
365 /* Returns whether HEADER is a loop header. */
368 bb_loop_header_p (basic_block header
)
373 /* If we have an abnormal predecessor, do not consider the
374 loop (not worth the problems). */
375 if (bb_has_abnormal_pred (header
))
378 /* Look for back edges where a predecessor is dominated
379 by this block. A natural loop has a single entry
380 node (header) that dominates all the nodes in the
381 loop. It also has single back edge to the header
382 from a latch node. */
383 FOR_EACH_EDGE (e
, ei
, header
->preds
)
385 basic_block latch
= e
->src
;
386 if (latch
!= ENTRY_BLOCK_PTR_FOR_FN (cfun
)
387 && dominated_by_p (CDI_DOMINATORS
, latch
, header
))
394 /* Find all the natural loops in the function and save in LOOPS structure and
395 recalculate loop_father information in basic block structures.
396 If LOOPS is non-NULL then the loop structures for already recorded loops
397 will be re-used and their number will not change. We assume that no
398 stale loops exist in LOOPS.
399 When LOOPS is NULL it is allocated and re-built from scratch.
400 Return the built LOOPS structure. */
403 flow_loops_find (struct loops
*loops
)
405 bool from_scratch
= (loops
== NULL
);
410 /* Ensure that the dominators are computed. */
411 calculate_dominance_info (CDI_DOMINATORS
);
415 loops
= ggc_cleared_alloc
<struct loops
> ();
416 init_loops_structure (cfun
, loops
, 1);
419 /* Ensure that loop exits were released. */
420 gcc_assert (loops
->exits
== NULL
);
422 /* Taking care of this degenerate case makes the rest of
423 this code simpler. */
424 if (n_basic_blocks_for_fn (cfun
) == NUM_FIXED_BLOCKS
)
427 /* The root loop node contains all basic-blocks. */
428 loops
->tree_root
->num_nodes
= n_basic_blocks_for_fn (cfun
);
430 /* Compute depth first search order of the CFG so that outer
431 natural loops will be found before inner natural loops. */
432 rc_order
= XNEWVEC (int, n_basic_blocks_for_fn (cfun
));
433 pre_and_rev_post_order_compute (NULL
, rc_order
, false);
435 /* Gather all loop headers in reverse completion order and allocate
436 loop structures for loops that are not already present. */
437 auto_vec
<loop_p
> larray (loops
->larray
->length ());
438 for (b
= 0; b
< n_basic_blocks_for_fn (cfun
) - NUM_FIXED_BLOCKS
; b
++)
440 basic_block header
= BASIC_BLOCK_FOR_FN (cfun
, rc_order
[b
]);
441 if (bb_loop_header_p (header
))
445 /* The current active loop tree has valid loop-fathers for
448 && header
->loop_father
->header
== header
)
450 loop
= header
->loop_father
;
451 /* If we found an existing loop remove it from the
452 loop tree. It is going to be inserted again
454 flow_loop_tree_node_remove (loop
);
458 /* Otherwise allocate a new loop structure for the loop. */
459 loop
= alloc_loop ();
460 /* ??? We could re-use unused loop slots here. */
461 loop
->num
= loops
->larray
->length ();
462 vec_safe_push (loops
->larray
, loop
);
463 loop
->header
= header
;
466 && dump_file
&& (dump_flags
& TDF_DETAILS
))
467 fprintf (dump_file
, "flow_loops_find: discovered new "
468 "loop %d with header %d\n",
469 loop
->num
, header
->index
);
471 /* Reset latch, we recompute it below. */
473 larray
.safe_push (loop
);
476 /* Make blocks part of the loop root node at start. */
477 header
->loop_father
= loops
->tree_root
;
482 /* Now iterate over the loops found, insert them into the loop tree
483 and assign basic-block ownership. */
484 for (i
= 0; i
< larray
.length (); ++i
)
486 struct loop
*loop
= larray
[i
];
487 basic_block header
= loop
->header
;
491 flow_loop_tree_node_add (header
->loop_father
, loop
);
492 loop
->num_nodes
= flow_loop_nodes_find (loop
->header
, loop
);
494 /* Look for the latch for this header block, if it has just a
496 FOR_EACH_EDGE (e
, ei
, header
->preds
)
498 basic_block latch
= e
->src
;
500 if (flow_bb_inside_loop_p (loop
, latch
))
502 if (loop
->latch
!= NULL
)
504 /* More than one latch edge. */
516 /* Ratio of frequencies of edges so that one of more latch edges is
517 considered to belong to inner loop with same header. */
518 #define HEAVY_EDGE_RATIO 8
520 /* Minimum number of samples for that we apply
521 find_subloop_latch_edge_by_profile heuristics. */
522 #define HEAVY_EDGE_MIN_SAMPLES 10
524 /* If the profile info is available, finds an edge in LATCHES that much more
525 frequent than the remaining edges. Returns such an edge, or NULL if we do
528 We do not use guessed profile here, only the measured one. The guessed
529 profile is usually too flat and unreliable for this (and it is mostly based
530 on the loop structure of the program, so it does not make much sense to
531 derive the loop structure from it). */
534 find_subloop_latch_edge_by_profile (vec
<edge
> latches
)
538 gcov_type mcount
= 0, tcount
= 0;
540 FOR_EACH_VEC_ELT (latches
, i
, e
)
542 if (e
->count
> mcount
)
550 if (tcount
< HEAVY_EDGE_MIN_SAMPLES
551 || (tcount
- mcount
) * HEAVY_EDGE_RATIO
> tcount
)
556 "Found latch edge %d -> %d using profile information.\n",
557 me
->src
->index
, me
->dest
->index
);
561 /* Among LATCHES, guesses a latch edge of LOOP corresponding to subloop, based
562 on the structure of induction variables. Returns this edge, or NULL if we
565 We are quite conservative, and look just for an obvious simple innermost
566 loop (which is the case where we would lose the most performance by not
567 disambiguating the loop). More precisely, we look for the following
568 situation: The source of the chosen latch edge dominates sources of all
569 the other latch edges. Additionally, the header does not contain a phi node
570 such that the argument from the chosen edge is equal to the argument from
574 find_subloop_latch_edge_by_ivs (struct loop
*loop ATTRIBUTE_UNUSED
, vec
<edge
> latches
)
576 edge e
, latch
= latches
[0];
583 /* Find the candidate for the latch edge. */
584 for (i
= 1; latches
.iterate (i
, &e
); i
++)
585 if (dominated_by_p (CDI_DOMINATORS
, latch
->src
, e
->src
))
588 /* Verify that it dominates all the latch edges. */
589 FOR_EACH_VEC_ELT (latches
, i
, e
)
590 if (!dominated_by_p (CDI_DOMINATORS
, e
->src
, latch
->src
))
593 /* Check for a phi node that would deny that this is a latch edge of
595 for (psi
= gsi_start_phis (loop
->header
); !gsi_end_p (psi
); gsi_next (&psi
))
598 lop
= PHI_ARG_DEF_FROM_EDGE (phi
, latch
);
600 /* Ignore the values that are not changed inside the subloop. */
601 if (TREE_CODE (lop
) != SSA_NAME
602 || SSA_NAME_DEF_STMT (lop
) == phi
)
604 bb
= gimple_bb (SSA_NAME_DEF_STMT (lop
));
605 if (!bb
|| !flow_bb_inside_loop_p (loop
, bb
))
608 FOR_EACH_VEC_ELT (latches
, i
, e
)
610 && PHI_ARG_DEF_FROM_EDGE (phi
, e
) == lop
)
616 "Found latch edge %d -> %d using iv structure.\n",
617 latch
->src
->index
, latch
->dest
->index
);
621 /* If we can determine that one of the several latch edges of LOOP behaves
622 as a latch edge of a separate subloop, returns this edge. Otherwise
626 find_subloop_latch_edge (struct loop
*loop
)
628 vec
<edge
> latches
= get_loop_latch_edges (loop
);
631 if (latches
.length () > 1)
633 latch
= find_subloop_latch_edge_by_profile (latches
);
636 /* We consider ivs to guess the latch edge only in SSA. Perhaps we
637 should use cfghook for this, but it is hard to imagine it would
638 be useful elsewhere. */
639 && current_ir_type () == IR_GIMPLE
)
640 latch
= find_subloop_latch_edge_by_ivs (loop
, latches
);
647 /* Callback for make_forwarder_block. Returns true if the edge E is marked
648 in the set MFB_REIS_SET. */
650 static hash_set
<edge
> *mfb_reis_set
;
652 mfb_redirect_edges_in_set (edge e
)
654 return mfb_reis_set
->contains (e
);
657 /* Creates a subloop of LOOP with latch edge LATCH. */
660 form_subloop (struct loop
*loop
, edge latch
)
664 struct loop
*new_loop
;
666 mfb_reis_set
= new hash_set
<edge
>;
667 FOR_EACH_EDGE (e
, ei
, loop
->header
->preds
)
670 mfb_reis_set
->add (e
);
672 new_entry
= make_forwarder_block (loop
->header
, mfb_redirect_edges_in_set
,
676 loop
->header
= new_entry
->src
;
678 /* Find the blocks and subloops that belong to the new loop, and add it to
679 the appropriate place in the loop tree. */
680 new_loop
= alloc_loop ();
681 new_loop
->header
= new_entry
->dest
;
682 new_loop
->latch
= latch
->src
;
683 add_loop (new_loop
, loop
);
686 /* Make all the latch edges of LOOP to go to a single forwarder block --
687 a new latch of LOOP. */
690 merge_latch_edges (struct loop
*loop
)
692 vec
<edge
> latches
= get_loop_latch_edges (loop
);
696 gcc_assert (latches
.length () > 0);
698 if (latches
.length () == 1)
699 loop
->latch
= latches
[0]->src
;
703 fprintf (dump_file
, "Merged latch edges of loop %d\n", loop
->num
);
705 mfb_reis_set
= new hash_set
<edge
>;
706 FOR_EACH_VEC_ELT (latches
, i
, e
)
707 mfb_reis_set
->add (e
);
708 latch
= make_forwarder_block (loop
->header
, mfb_redirect_edges_in_set
,
712 loop
->header
= latch
->dest
;
713 loop
->latch
= latch
->src
;
719 /* LOOP may have several latch edges. Transform it into (possibly several)
720 loops with single latch edge. */
723 disambiguate_multiple_latches (struct loop
*loop
)
727 /* We eliminate the multiple latches by splitting the header to the forwarder
728 block F and the rest R, and redirecting the edges. There are two cases:
730 1) If there is a latch edge E that corresponds to a subloop (we guess
731 that based on profile -- if it is taken much more often than the
732 remaining edges; and on trees, using the information about induction
733 variables of the loops), we redirect E to R, all the remaining edges to
734 F, then rescan the loops and try again for the outer loop.
735 2) If there is no such edge, we redirect all latch edges to F, and the
736 entry edges to R, thus making F the single latch of the loop. */
739 fprintf (dump_file
, "Disambiguating loop %d with multiple latches\n",
742 /* During latch merging, we may need to redirect the entry edges to a new
743 block. This would cause problems if the entry edge was the one from the
744 entry block. To avoid having to handle this case specially, split
746 e
= find_edge (ENTRY_BLOCK_PTR_FOR_FN (cfun
), loop
->header
);
752 e
= find_subloop_latch_edge (loop
);
756 form_subloop (loop
, e
);
759 merge_latch_edges (loop
);
762 /* Split loops with multiple latch edges. */
765 disambiguate_loops_with_multiple_latches (void)
769 FOR_EACH_LOOP (loop
, 0)
772 disambiguate_multiple_latches (loop
);
776 /* Return nonzero if basic block BB belongs to LOOP. */
778 flow_bb_inside_loop_p (const struct loop
*loop
, const_basic_block bb
)
780 struct loop
*source_loop
;
782 if (bb
== ENTRY_BLOCK_PTR_FOR_FN (cfun
)
783 || bb
== EXIT_BLOCK_PTR_FOR_FN (cfun
))
786 source_loop
= bb
->loop_father
;
787 return loop
== source_loop
|| flow_loop_nested_p (loop
, source_loop
);
790 /* Enumeration predicate for get_loop_body_with_size. */
792 glb_enum_p (const_basic_block bb
, const void *glb_loop
)
794 const struct loop
*const loop
= (const struct loop
*) glb_loop
;
795 return (bb
!= loop
->header
796 && dominated_by_p (CDI_DOMINATORS
, bb
, loop
->header
));
799 /* Gets basic blocks of a LOOP. Header is the 0-th block, rest is in dfs
800 order against direction of edges from latch. Specially, if
801 header != latch, latch is the 1-st block. LOOP cannot be the fake
802 loop tree root, and its size must be at most MAX_SIZE. The blocks
803 in the LOOP body are stored to BODY, and the size of the LOOP is
807 get_loop_body_with_size (const struct loop
*loop
, basic_block
*body
,
810 return dfs_enumerate_from (loop
->header
, 1, glb_enum_p
,
811 body
, max_size
, loop
);
814 /* Gets basic blocks of a LOOP. Header is the 0-th block, rest is in dfs
815 order against direction of edges from latch. Specially, if
816 header != latch, latch is the 1-st block. */
819 get_loop_body (const struct loop
*loop
)
821 basic_block
*body
, bb
;
824 gcc_assert (loop
->num_nodes
);
826 body
= XNEWVEC (basic_block
, loop
->num_nodes
);
828 if (loop
->latch
== EXIT_BLOCK_PTR_FOR_FN (cfun
))
830 /* There may be blocks unreachable from EXIT_BLOCK, hence we need to
831 special-case the fake loop that contains the whole function. */
832 gcc_assert (loop
->num_nodes
== (unsigned) n_basic_blocks_for_fn (cfun
));
833 body
[tv
++] = loop
->header
;
834 body
[tv
++] = EXIT_BLOCK_PTR_FOR_FN (cfun
);
835 FOR_EACH_BB_FN (bb
, cfun
)
839 tv
= get_loop_body_with_size (loop
, body
, loop
->num_nodes
);
841 gcc_assert (tv
== loop
->num_nodes
);
845 /* Fills dominance descendants inside LOOP of the basic block BB into
846 array TOVISIT from index *TV. */
849 fill_sons_in_loop (const struct loop
*loop
, basic_block bb
,
850 basic_block
*tovisit
, int *tv
)
852 basic_block son
, postpone
= NULL
;
854 tovisit
[(*tv
)++] = bb
;
855 for (son
= first_dom_son (CDI_DOMINATORS
, bb
);
857 son
= next_dom_son (CDI_DOMINATORS
, son
))
859 if (!flow_bb_inside_loop_p (loop
, son
))
862 if (dominated_by_p (CDI_DOMINATORS
, loop
->latch
, son
))
867 fill_sons_in_loop (loop
, son
, tovisit
, tv
);
871 fill_sons_in_loop (loop
, postpone
, tovisit
, tv
);
874 /* Gets body of a LOOP (that must be different from the outermost loop)
875 sorted by dominance relation. Additionally, if a basic block s dominates
876 the latch, then only blocks dominated by s are be after it. */
879 get_loop_body_in_dom_order (const struct loop
*loop
)
881 basic_block
*tovisit
;
884 gcc_assert (loop
->num_nodes
);
886 tovisit
= XNEWVEC (basic_block
, loop
->num_nodes
);
888 gcc_assert (loop
->latch
!= EXIT_BLOCK_PTR_FOR_FN (cfun
));
891 fill_sons_in_loop (loop
, loop
->header
, tovisit
, &tv
);
893 gcc_assert (tv
== (int) loop
->num_nodes
);
898 /* Gets body of a LOOP sorted via provided BB_COMPARATOR. */
901 get_loop_body_in_custom_order (const struct loop
*loop
,
902 int (*bb_comparator
) (const void *, const void *))
904 basic_block
*bbs
= get_loop_body (loop
);
906 qsort (bbs
, loop
->num_nodes
, sizeof (basic_block
), bb_comparator
);
911 /* Get body of a LOOP in breadth first sort order. */
914 get_loop_body_in_bfs_order (const struct loop
*loop
)
922 gcc_assert (loop
->num_nodes
);
923 gcc_assert (loop
->latch
!= EXIT_BLOCK_PTR_FOR_FN (cfun
));
925 blocks
= XNEWVEC (basic_block
, loop
->num_nodes
);
926 visited
= BITMAP_ALLOC (NULL
);
929 while (i
< loop
->num_nodes
)
934 if (bitmap_set_bit (visited
, bb
->index
))
935 /* This basic block is now visited */
938 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
940 if (flow_bb_inside_loop_p (loop
, e
->dest
))
942 if (bitmap_set_bit (visited
, e
->dest
->index
))
943 blocks
[i
++] = e
->dest
;
952 BITMAP_FREE (visited
);
956 /* Hash function for struct loop_exit. */
959 loop_exit_hasher::hash (loop_exit
*exit
)
961 return htab_hash_pointer (exit
->e
);
964 /* Equality function for struct loop_exit. Compares with edge. */
967 loop_exit_hasher::equal (loop_exit
*exit
, edge e
)
972 /* Frees the list of loop exit descriptions EX. */
975 loop_exit_hasher::remove (loop_exit
*exit
)
978 for (; exit
; exit
= next
)
982 exit
->next
->prev
= exit
->prev
;
983 exit
->prev
->next
= exit
->next
;
989 /* Returns the list of records for E as an exit of a loop. */
991 static struct loop_exit
*
992 get_exit_descriptions (edge e
)
994 return current_loops
->exits
->find_with_hash (e
, htab_hash_pointer (e
));
997 /* Updates the lists of loop exits in that E appears.
998 If REMOVED is true, E is being removed, and we
999 just remove it from the lists of exits.
1000 If NEW_EDGE is true and E is not a loop exit, we
1001 do not try to remove it from loop exit lists. */
1004 rescan_loop_exit (edge e
, bool new_edge
, bool removed
)
1006 struct loop_exit
*exits
= NULL
, *exit
;
1007 struct loop
*aloop
, *cloop
;
1009 if (!loops_state_satisfies_p (LOOPS_HAVE_RECORDED_EXITS
))
1013 && e
->src
->loop_father
!= NULL
1014 && e
->dest
->loop_father
!= NULL
1015 && !flow_bb_inside_loop_p (e
->src
->loop_father
, e
->dest
))
1017 cloop
= find_common_loop (e
->src
->loop_father
, e
->dest
->loop_father
);
1018 for (aloop
= e
->src
->loop_father
;
1020 aloop
= loop_outer (aloop
))
1022 exit
= ggc_alloc
<loop_exit
> ();
1025 exit
->next
= aloop
->exits
->next
;
1026 exit
->prev
= aloop
->exits
;
1027 exit
->next
->prev
= exit
;
1028 exit
->prev
->next
= exit
;
1030 exit
->next_e
= exits
;
1035 if (!exits
&& new_edge
)
1039 = current_loops
->exits
->find_slot_with_hash (e
, htab_hash_pointer (e
),
1040 exits
? INSERT
: NO_INSERT
);
1047 loop_exit_hasher::remove (*slot
);
1051 current_loops
->exits
->clear_slot (slot
);
1054 /* For each loop, record list of exit edges, and start maintaining these
1058 record_loop_exits (void)
1067 if (loops_state_satisfies_p (LOOPS_HAVE_RECORDED_EXITS
))
1069 loops_state_set (LOOPS_HAVE_RECORDED_EXITS
);
1071 gcc_assert (current_loops
->exits
== NULL
);
1072 current_loops
->exits
1073 = hash_table
<loop_exit_hasher
>::create_ggc (2 * number_of_loops (cfun
));
1075 FOR_EACH_BB_FN (bb
, cfun
)
1077 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1079 rescan_loop_exit (e
, true, false);
1084 /* Dumps information about the exit in *SLOT to FILE.
1085 Callback for htab_traverse. */
1088 dump_recorded_exit (loop_exit
**slot
, FILE *file
)
1090 struct loop_exit
*exit
= *slot
;
1094 for (; exit
!= NULL
; exit
= exit
->next_e
)
1097 fprintf (file
, "Edge %d->%d exits %u loops\n",
1098 e
->src
->index
, e
->dest
->index
, n
);
1103 /* Dumps the recorded exits of loops to FILE. */
1105 extern void dump_recorded_exits (FILE *);
1107 dump_recorded_exits (FILE *file
)
1109 if (!current_loops
->exits
)
1111 current_loops
->exits
->traverse
<FILE *, dump_recorded_exit
> (file
);
1114 /* Releases lists of loop exits. */
1117 release_recorded_exits (void)
1119 gcc_assert (loops_state_satisfies_p (LOOPS_HAVE_RECORDED_EXITS
));
1120 current_loops
->exits
->empty ();
1121 current_loops
->exits
= NULL
;
1122 loops_state_clear (LOOPS_HAVE_RECORDED_EXITS
);
1125 /* Returns the list of the exit edges of a LOOP. */
1128 get_loop_exit_edges (const struct loop
*loop
)
1130 vec
<edge
> edges
= vNULL
;
1135 struct loop_exit
*exit
;
1137 gcc_assert (loop
->latch
!= EXIT_BLOCK_PTR_FOR_FN (cfun
));
1139 /* If we maintain the lists of exits, use them. Otherwise we must
1140 scan the body of the loop. */
1141 if (loops_state_satisfies_p (LOOPS_HAVE_RECORDED_EXITS
))
1143 for (exit
= loop
->exits
->next
; exit
->e
; exit
= exit
->next
)
1144 edges
.safe_push (exit
->e
);
1148 body
= get_loop_body (loop
);
1149 for (i
= 0; i
< loop
->num_nodes
; i
++)
1150 FOR_EACH_EDGE (e
, ei
, body
[i
]->succs
)
1152 if (!flow_bb_inside_loop_p (loop
, e
->dest
))
1153 edges
.safe_push (e
);
1161 /* Counts the number of conditional branches inside LOOP. */
1164 num_loop_branches (const struct loop
*loop
)
1169 gcc_assert (loop
->latch
!= EXIT_BLOCK_PTR_FOR_FN (cfun
));
1171 body
= get_loop_body (loop
);
1173 for (i
= 0; i
< loop
->num_nodes
; i
++)
1174 if (EDGE_COUNT (body
[i
]->succs
) >= 2)
1181 /* Adds basic block BB to LOOP. */
1183 add_bb_to_loop (basic_block bb
, struct loop
*loop
)
1190 gcc_assert (bb
->loop_father
== NULL
);
1191 bb
->loop_father
= loop
;
1193 FOR_EACH_VEC_SAFE_ELT (loop
->superloops
, i
, ploop
)
1196 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1198 rescan_loop_exit (e
, true, false);
1200 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
1202 rescan_loop_exit (e
, true, false);
1206 /* Remove basic block BB from loops. */
1208 remove_bb_from_loops (basic_block bb
)
1211 struct loop
*loop
= bb
->loop_father
;
1216 gcc_assert (loop
!= NULL
);
1218 FOR_EACH_VEC_SAFE_ELT (loop
->superloops
, i
, ploop
)
1220 bb
->loop_father
= NULL
;
1222 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1224 rescan_loop_exit (e
, false, true);
1226 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
1228 rescan_loop_exit (e
, false, true);
1232 /* Finds nearest common ancestor in loop tree for given loops. */
1234 find_common_loop (struct loop
*loop_s
, struct loop
*loop_d
)
1236 unsigned sdepth
, ddepth
;
1238 if (!loop_s
) return loop_d
;
1239 if (!loop_d
) return loop_s
;
1241 sdepth
= loop_depth (loop_s
);
1242 ddepth
= loop_depth (loop_d
);
1244 if (sdepth
< ddepth
)
1245 loop_d
= (*loop_d
->superloops
)[sdepth
];
1246 else if (sdepth
> ddepth
)
1247 loop_s
= (*loop_s
->superloops
)[ddepth
];
1249 while (loop_s
!= loop_d
)
1251 loop_s
= loop_outer (loop_s
);
1252 loop_d
= loop_outer (loop_d
);
1257 /* Removes LOOP from structures and frees its data. */
1260 delete_loop (struct loop
*loop
)
1262 /* Remove the loop from structure. */
1263 flow_loop_tree_node_remove (loop
);
1265 /* Remove loop from loops array. */
1266 (*current_loops
->larray
)[loop
->num
] = NULL
;
1268 /* Free loop data. */
1269 flow_loop_free (loop
);
1272 /* Cancels the LOOP; it must be innermost one. */
1275 cancel_loop (struct loop
*loop
)
1279 struct loop
*outer
= loop_outer (loop
);
1281 gcc_assert (!loop
->inner
);
1283 /* Move blocks up one level (they should be removed as soon as possible). */
1284 bbs
= get_loop_body (loop
);
1285 for (i
= 0; i
< loop
->num_nodes
; i
++)
1286 bbs
[i
]->loop_father
= outer
;
1292 /* Cancels LOOP and all its subloops. */
1294 cancel_loop_tree (struct loop
*loop
)
1297 cancel_loop_tree (loop
->inner
);
1301 /* Checks that information about loops is correct
1302 -- sizes of loops are all right
1303 -- results of get_loop_body really belong to the loop
1304 -- loop header have just single entry edge and single latch edge
1305 -- loop latches have only single successor that is header of their loop
1306 -- irreducible loops are correctly marked
1307 -- the cached loop depth and loop father of each bb is correct
1310 verify_loop_structure (void)
1312 unsigned *sizes
, i
, j
;
1314 basic_block bb
, *bbs
;
1318 unsigned num
= number_of_loops (cfun
);
1319 struct loop_exit
*exit
, *mexit
;
1320 bool dom_available
= dom_info_available_p (CDI_DOMINATORS
);
1323 if (loops_state_satisfies_p (LOOPS_NEED_FIXUP
))
1325 error ("loop verification on loop tree that needs fixup");
1329 /* We need up-to-date dominators, compute or verify them. */
1331 calculate_dominance_info (CDI_DOMINATORS
);
1333 verify_dominators (CDI_DOMINATORS
);
1335 /* Check the loop tree root. */
1336 if (current_loops
->tree_root
->header
!= ENTRY_BLOCK_PTR_FOR_FN (cfun
)
1337 || current_loops
->tree_root
->latch
!= EXIT_BLOCK_PTR_FOR_FN (cfun
)
1338 || (current_loops
->tree_root
->num_nodes
1339 != (unsigned) n_basic_blocks_for_fn (cfun
)))
1341 error ("corrupt loop tree root");
1345 /* Check the headers. */
1346 FOR_EACH_BB_FN (bb
, cfun
)
1347 if (bb_loop_header_p (bb
))
1349 if (bb
->loop_father
->header
== NULL
)
1351 error ("loop with header %d marked for removal", bb
->index
);
1354 else if (bb
->loop_father
->header
!= bb
)
1356 error ("loop with header %d not in loop tree", bb
->index
);
1360 else if (bb
->loop_father
->header
== bb
)
1362 error ("non-loop with header %d not marked for removal", bb
->index
);
1366 /* Check the recorded loop father and sizes of loops. */
1367 visited
= sbitmap_alloc (last_basic_block_for_fn (cfun
));
1368 bitmap_clear (visited
);
1369 bbs
= XNEWVEC (basic_block
, n_basic_blocks_for_fn (cfun
));
1370 FOR_EACH_LOOP (loop
, LI_FROM_INNERMOST
)
1374 if (loop
->header
== NULL
)
1376 error ("removed loop %d in loop tree", loop
->num
);
1381 n
= get_loop_body_with_size (loop
, bbs
, n_basic_blocks_for_fn (cfun
));
1382 if (loop
->num_nodes
!= n
)
1384 error ("size of loop %d should be %d, not %d",
1385 loop
->num
, n
, loop
->num_nodes
);
1389 for (j
= 0; j
< n
; j
++)
1393 if (!flow_bb_inside_loop_p (loop
, bb
))
1395 error ("bb %d does not belong to loop %d",
1396 bb
->index
, loop
->num
);
1400 /* Ignore this block if it is in an inner loop. */
1401 if (bitmap_bit_p (visited
, bb
->index
))
1403 bitmap_set_bit (visited
, bb
->index
);
1405 if (bb
->loop_father
!= loop
)
1407 error ("bb %d has father loop %d, should be loop %d",
1408 bb
->index
, bb
->loop_father
->num
, loop
->num
);
1414 sbitmap_free (visited
);
1416 /* Check headers and latches. */
1417 FOR_EACH_LOOP (loop
, 0)
1420 if (loop
->header
== NULL
)
1422 if (!bb_loop_header_p (loop
->header
))
1424 error ("loop %d%'s header is not a loop header", i
);
1427 if (loops_state_satisfies_p (LOOPS_HAVE_PREHEADERS
)
1428 && EDGE_COUNT (loop
->header
->preds
) != 2)
1430 error ("loop %d%'s header does not have exactly 2 entries", i
);
1435 if (!find_edge (loop
->latch
, loop
->header
))
1437 error ("loop %d%'s latch does not have an edge to its header", i
);
1440 if (!dominated_by_p (CDI_DOMINATORS
, loop
->latch
, loop
->header
))
1442 error ("loop %d%'s latch is not dominated by its header", i
);
1446 if (loops_state_satisfies_p (LOOPS_HAVE_SIMPLE_LATCHES
))
1448 if (!single_succ_p (loop
->latch
))
1450 error ("loop %d%'s latch does not have exactly 1 successor", i
);
1453 if (single_succ (loop
->latch
) != loop
->header
)
1455 error ("loop %d%'s latch does not have header as successor", i
);
1458 if (loop
->latch
->loop_father
!= loop
)
1460 error ("loop %d%'s latch does not belong directly to it", i
);
1464 if (loop
->header
->loop_father
!= loop
)
1466 error ("loop %d%'s header does not belong directly to it", i
);
1469 if (loops_state_satisfies_p (LOOPS_HAVE_MARKED_IRREDUCIBLE_REGIONS
)
1470 && (loop_latch_edge (loop
)->flags
& EDGE_IRREDUCIBLE_LOOP
))
1472 error ("loop %d%'s latch is marked as part of irreducible region", i
);
1477 /* Check irreducible loops. */
1478 if (loops_state_satisfies_p (LOOPS_HAVE_MARKED_IRREDUCIBLE_REGIONS
))
1480 /* Record old info. */
1481 irreds
= sbitmap_alloc (last_basic_block_for_fn (cfun
));
1482 FOR_EACH_BB_FN (bb
, cfun
)
1485 if (bb
->flags
& BB_IRREDUCIBLE_LOOP
)
1486 bitmap_set_bit (irreds
, bb
->index
);
1488 bitmap_clear_bit (irreds
, bb
->index
);
1489 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1490 if (e
->flags
& EDGE_IRREDUCIBLE_LOOP
)
1491 e
->flags
|= EDGE_ALL_FLAGS
+ 1;
1495 mark_irreducible_loops ();
1498 FOR_EACH_BB_FN (bb
, cfun
)
1502 if ((bb
->flags
& BB_IRREDUCIBLE_LOOP
)
1503 && !bitmap_bit_p (irreds
, bb
->index
))
1505 error ("basic block %d should be marked irreducible", bb
->index
);
1508 else if (!(bb
->flags
& BB_IRREDUCIBLE_LOOP
)
1509 && bitmap_bit_p (irreds
, bb
->index
))
1511 error ("basic block %d should not be marked irreducible", bb
->index
);
1514 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1516 if ((e
->flags
& EDGE_IRREDUCIBLE_LOOP
)
1517 && !(e
->flags
& (EDGE_ALL_FLAGS
+ 1)))
1519 error ("edge from %d to %d should be marked irreducible",
1520 e
->src
->index
, e
->dest
->index
);
1523 else if (!(e
->flags
& EDGE_IRREDUCIBLE_LOOP
)
1524 && (e
->flags
& (EDGE_ALL_FLAGS
+ 1)))
1526 error ("edge from %d to %d should not be marked irreducible",
1527 e
->src
->index
, e
->dest
->index
);
1530 e
->flags
&= ~(EDGE_ALL_FLAGS
+ 1);
1536 /* Check the recorded loop exits. */
1537 FOR_EACH_LOOP (loop
, 0)
1539 if (!loop
->exits
|| loop
->exits
->e
!= NULL
)
1541 error ("corrupted head of the exits list of loop %d",
1547 /* Check that the list forms a cycle, and all elements except
1548 for the head are nonnull. */
1549 for (mexit
= loop
->exits
, exit
= mexit
->next
, i
= 0;
1550 exit
->e
&& exit
!= mexit
;
1554 mexit
= mexit
->next
;
1557 if (exit
!= loop
->exits
)
1559 error ("corrupted exits list of loop %d", loop
->num
);
1564 if (!loops_state_satisfies_p (LOOPS_HAVE_RECORDED_EXITS
))
1566 if (loop
->exits
->next
!= loop
->exits
)
1568 error ("nonempty exits list of loop %d, but exits are not recorded",
1575 if (loops_state_satisfies_p (LOOPS_HAVE_RECORDED_EXITS
))
1577 unsigned n_exits
= 0, eloops
;
1579 sizes
= XCNEWVEC (unsigned, num
);
1580 memset (sizes
, 0, sizeof (unsigned) * num
);
1581 FOR_EACH_BB_FN (bb
, cfun
)
1584 if (bb
->loop_father
== current_loops
->tree_root
)
1586 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1588 if (flow_bb_inside_loop_p (bb
->loop_father
, e
->dest
))
1592 exit
= get_exit_descriptions (e
);
1595 error ("exit %d->%d not recorded",
1596 e
->src
->index
, e
->dest
->index
);
1600 for (; exit
; exit
= exit
->next_e
)
1603 for (loop
= bb
->loop_father
;
1604 loop
!= e
->dest
->loop_father
1605 /* When a loop exit is also an entry edge which
1606 can happen when avoiding CFG manipulations
1607 then the last loop exited is the outer loop
1608 of the loop entered. */
1609 && loop
!= loop_outer (e
->dest
->loop_father
);
1610 loop
= loop_outer (loop
))
1618 error ("wrong list of exited loops for edge %d->%d",
1619 e
->src
->index
, e
->dest
->index
);
1625 if (n_exits
!= current_loops
->exits
->elements ())
1627 error ("too many loop exits recorded");
1631 FOR_EACH_LOOP (loop
, 0)
1634 for (exit
= loop
->exits
->next
; exit
->e
; exit
= exit
->next
)
1636 if (eloops
!= sizes
[loop
->num
])
1638 error ("%d exits recorded for loop %d (having %d exits)",
1639 eloops
, loop
->num
, sizes
[loop
->num
]);
1650 free_dominance_info (CDI_DOMINATORS
);
1653 /* Returns latch edge of LOOP. */
1655 loop_latch_edge (const struct loop
*loop
)
1657 return find_edge (loop
->latch
, loop
->header
);
1660 /* Returns preheader edge of LOOP. */
1662 loop_preheader_edge (const struct loop
*loop
)
1667 gcc_assert (loops_state_satisfies_p (LOOPS_HAVE_PREHEADERS
));
1669 FOR_EACH_EDGE (e
, ei
, loop
->header
->preds
)
1670 if (e
->src
!= loop
->latch
)
1676 /* Returns true if E is an exit of LOOP. */
1679 loop_exit_edge_p (const struct loop
*loop
, const_edge e
)
1681 return (flow_bb_inside_loop_p (loop
, e
->src
)
1682 && !flow_bb_inside_loop_p (loop
, e
->dest
));
1685 /* Returns the single exit edge of LOOP, or NULL if LOOP has either no exit
1686 or more than one exit. If loops do not have the exits recorded, NULL
1687 is returned always. */
1690 single_exit (const struct loop
*loop
)
1692 struct loop_exit
*exit
= loop
->exits
->next
;
1694 if (!loops_state_satisfies_p (LOOPS_HAVE_RECORDED_EXITS
))
1697 if (exit
->e
&& exit
->next
== loop
->exits
)
1703 /* Returns true when BB has an incoming edge exiting LOOP. */
1706 loop_exits_to_bb_p (struct loop
*loop
, basic_block bb
)
1711 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
1712 if (loop_exit_edge_p (loop
, e
))
1718 /* Returns true when BB has an outgoing edge exiting LOOP. */
1721 loop_exits_from_bb_p (struct loop
*loop
, basic_block bb
)
1726 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1727 if (loop_exit_edge_p (loop
, e
))
1733 /* Return location corresponding to the loop control condition if possible. */
1736 get_loop_location (struct loop
*loop
)
1738 rtx_insn
*insn
= NULL
;
1739 struct niter_desc
*desc
= NULL
;
1742 /* For a for or while loop, we would like to return the location
1743 of the for or while statement, if possible. To do this, look
1744 for the branch guarding the loop back-edge. */
1746 /* If this is a simple loop with an in_edge, then the loop control
1747 branch is typically at the end of its source. */
1748 desc
= get_simple_loop_desc (loop
);
1751 FOR_BB_INSNS_REVERSE (desc
->in_edge
->src
, insn
)
1753 if (INSN_P (insn
) && INSN_HAS_LOCATION (insn
))
1754 return INSN_LOCATION (insn
);
1757 /* If loop has a single exit, then the loop control branch
1758 must be at the end of its source. */
1759 if ((exit
= single_exit (loop
)))
1761 FOR_BB_INSNS_REVERSE (exit
->src
, insn
)
1763 if (INSN_P (insn
) && INSN_HAS_LOCATION (insn
))
1764 return INSN_LOCATION (insn
);
1767 /* Next check the latch, to see if it is non-empty. */
1768 FOR_BB_INSNS_REVERSE (loop
->latch
, insn
)
1770 if (INSN_P (insn
) && INSN_HAS_LOCATION (insn
))
1771 return INSN_LOCATION (insn
);
1773 /* Finally, if none of the above identifies the loop control branch,
1774 return the first location in the loop header. */
1775 FOR_BB_INSNS (loop
->header
, insn
)
1777 if (INSN_P (insn
) && INSN_HAS_LOCATION (insn
))
1778 return INSN_LOCATION (insn
);
1780 /* If all else fails, simply return the current function location. */
1781 return DECL_SOURCE_LOCATION (current_function_decl
);
1784 /* Records that every statement in LOOP is executed I_BOUND times.
1785 REALISTIC is true if I_BOUND is expected to be close to the real number
1786 of iterations. UPPER is true if we are sure the loop iterates at most
1790 record_niter_bound (struct loop
*loop
, const widest_int
&i_bound
,
1791 bool realistic
, bool upper
)
1793 /* Update the bounds only when there is no previous estimation, or when the
1794 current estimation is smaller. */
1796 && (!loop
->any_upper_bound
1797 || wi::ltu_p (i_bound
, loop
->nb_iterations_upper_bound
)))
1799 loop
->any_upper_bound
= true;
1800 loop
->nb_iterations_upper_bound
= i_bound
;
1803 && (!loop
->any_estimate
1804 || wi::ltu_p (i_bound
, loop
->nb_iterations_estimate
)))
1806 loop
->any_estimate
= true;
1807 loop
->nb_iterations_estimate
= i_bound
;
1810 /* If an upper bound is smaller than the realistic estimate of the
1811 number of iterations, use the upper bound instead. */
1812 if (loop
->any_upper_bound
1813 && loop
->any_estimate
1814 && wi::ltu_p (loop
->nb_iterations_upper_bound
,
1815 loop
->nb_iterations_estimate
))
1816 loop
->nb_iterations_estimate
= loop
->nb_iterations_upper_bound
;
1819 /* Similar to get_estimated_loop_iterations, but returns the estimate only
1820 if it fits to HOST_WIDE_INT. If this is not the case, or the estimate
1821 on the number of iterations of LOOP could not be derived, returns -1. */
1824 get_estimated_loop_iterations_int (struct loop
*loop
)
1827 HOST_WIDE_INT hwi_nit
;
1829 if (!get_estimated_loop_iterations (loop
, &nit
))
1832 if (!wi::fits_shwi_p (nit
))
1834 hwi_nit
= nit
.to_shwi ();
1836 return hwi_nit
< 0 ? -1 : hwi_nit
;
1839 /* Returns an upper bound on the number of executions of statements
1840 in the LOOP. For statements before the loop exit, this exceeds
1841 the number of execution of the latch by one. */
1844 max_stmt_executions_int (struct loop
*loop
)
1846 HOST_WIDE_INT nit
= get_max_loop_iterations_int (loop
);
1852 snit
= (HOST_WIDE_INT
) ((unsigned HOST_WIDE_INT
) nit
+ 1);
1854 /* If the computation overflows, return -1. */
1855 return snit
< 0 ? -1 : snit
;
1858 /* Sets NIT to the estimated number of executions of the latch of the
1859 LOOP. If we have no reliable estimate, the function returns false, otherwise
1863 get_estimated_loop_iterations (struct loop
*loop
, widest_int
*nit
)
1865 /* Even if the bound is not recorded, possibly we can derrive one from
1867 if (!loop
->any_estimate
)
1869 if (loop
->header
->count
)
1871 *nit
= gcov_type_to_wide_int
1872 (expected_loop_iterations_unbounded (loop
) + 1);
1878 *nit
= loop
->nb_iterations_estimate
;
1882 /* Sets NIT to an upper bound for the maximum number of executions of the
1883 latch of the LOOP. If we have no reliable estimate, the function returns
1884 false, otherwise returns true. */
1887 get_max_loop_iterations (struct loop
*loop
, widest_int
*nit
)
1889 if (!loop
->any_upper_bound
)
1892 *nit
= loop
->nb_iterations_upper_bound
;
1896 /* Similar to get_max_loop_iterations, but returns the estimate only
1897 if it fits to HOST_WIDE_INT. If this is not the case, or the estimate
1898 on the number of iterations of LOOP could not be derived, returns -1. */
1901 get_max_loop_iterations_int (struct loop
*loop
)
1904 HOST_WIDE_INT hwi_nit
;
1906 if (!get_max_loop_iterations (loop
, &nit
))
1909 if (!wi::fits_shwi_p (nit
))
1911 hwi_nit
= nit
.to_shwi ();
1913 return hwi_nit
< 0 ? -1 : hwi_nit
;
1916 /* Returns the loop depth of the loop BB belongs to. */
1919 bb_loop_depth (const_basic_block bb
)
1921 return bb
->loop_father
? loop_depth (bb
->loop_father
) : 0;
1924 /* Marks LOOP for removal and sets LOOPS_NEED_FIXUP. */
1927 mark_loop_for_removal (loop_p loop
)
1929 if (loop
->header
== NULL
)
1931 loop
->former_header
= loop
->header
;
1932 loop
->header
= NULL
;
1934 loops_state_set (LOOPS_NEED_FIXUP
);