ada: Fix internal error on instantiation with private component type
[official-gcc.git] / gcc / cfgloop.h
blobf28ec701764cb60c9f48f266f9c86add398c43f8
1 /* Natural loop functions
2 Copyright (C) 1987-2023 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
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
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/>. */
20 #ifndef GCC_CFGLOOP_H
21 #define GCC_CFGLOOP_H
23 #include "cfgloopmanip.h"
25 /* Structure to hold decision about unrolling/peeling. */
26 enum lpt_dec
28 LPT_NONE,
29 LPT_UNROLL_CONSTANT,
30 LPT_UNROLL_RUNTIME,
31 LPT_UNROLL_STUPID
34 struct GTY (()) lpt_decision {
35 enum lpt_dec decision;
36 unsigned times;
39 /* The type of extend applied to an IV. */
40 enum iv_extend_code
42 IV_SIGN_EXTEND,
43 IV_ZERO_EXTEND,
44 IV_UNKNOWN_EXTEND
47 /* The structure describing a bound on number of iterations of a loop. */
49 class GTY ((chain_next ("%h.next"))) nb_iter_bound {
50 public:
51 /* The statement STMT is executed at most ... */
52 gimple *stmt;
54 /* ... BOUND + 1 times (BOUND must be an unsigned constant).
55 The + 1 is added for the following reasons:
57 a) 0 would otherwise be unused, while we would need to care more about
58 overflows (as MAX + 1 is sometimes produced as the estimate on number
59 of executions of STMT).
60 b) it is consistent with the result of number_of_iterations_exit. */
61 widest_int bound;
63 /* True if, after executing the statement BOUND + 1 times, we will
64 leave the loop; that is, all the statements after it are executed at most
65 BOUND times. */
66 bool is_exit;
68 /* The next bound in the list. */
69 class nb_iter_bound *next;
72 /* Description of the loop exit. */
74 struct GTY ((for_user)) loop_exit {
75 /* The exit edge. */
76 edge e;
78 /* Previous and next exit in the list of the exits of the loop. */
79 struct loop_exit *prev;
80 struct loop_exit *next;
82 /* Next element in the list of loops from that E exits. */
83 struct loop_exit *next_e;
86 struct loop_exit_hasher : ggc_ptr_hash<loop_exit>
88 typedef edge compare_type;
90 static hashval_t hash (loop_exit *);
91 static bool equal (loop_exit *, edge);
92 static void remove (loop_exit *);
95 typedef class loop *loop_p;
97 /* An integer estimation of the number of iterations. Estimate_state
98 describes what is the state of the estimation. */
99 enum loop_estimation
101 /* Estimate was not computed yet. */
102 EST_NOT_COMPUTED,
103 /* Estimate is ready. */
104 EST_AVAILABLE,
105 EST_LAST
108 /* The structure describing non-overflow control induction variable for
109 loop's exit edge. */
110 struct GTY ((chain_next ("%h.next"))) control_iv {
111 tree base;
112 tree step;
113 struct control_iv *next;
116 /* Structure to hold information for each natural loop. */
117 class GTY ((chain_next ("%h.next"))) loop {
118 public:
119 /* Index into loops array. Note indices will never be reused after loop
120 is destroyed. */
121 int num;
123 /* Number of loop insns. */
124 unsigned ninsns;
126 /* Basic block of loop header. */
127 basic_block header;
129 /* Basic block of loop latch. */
130 basic_block latch;
132 /* For loop unrolling/peeling decision. */
133 struct lpt_decision lpt_decision;
135 /* Average number of executed insns per iteration. */
136 unsigned av_ninsns;
138 /* Number of blocks contained within the loop. */
139 unsigned num_nodes;
141 /* Superloops of the loop, starting with the outermost loop. */
142 vec<loop_p, va_gc> *superloops;
144 /* The first inner (child) loop or NULL if innermost loop. */
145 class loop *inner;
147 /* Link to the next (sibling) loop. */
148 class loop *next;
150 /* Auxiliary info specific to a pass. */
151 void *GTY ((skip (""))) aux;
153 /* The number of times the latch of the loop is executed. This can be an
154 INTEGER_CST, or a symbolic expression representing the number of
155 iterations like "N - 1", or a COND_EXPR containing the runtime
156 conditions under which the number of iterations is non zero.
158 Don't access this field directly: number_of_latch_executions
159 computes and caches the computed information in this field. */
160 tree nb_iterations;
162 /* An integer guaranteed to be greater or equal to nb_iterations. Only
163 valid if any_upper_bound is true. */
164 widest_int nb_iterations_upper_bound;
166 widest_int nb_iterations_likely_upper_bound;
168 /* An integer giving an estimate on nb_iterations. Unlike
169 nb_iterations_upper_bound, there is no guarantee that it is at least
170 nb_iterations. */
171 widest_int nb_iterations_estimate;
173 /* If > 0, an integer, where the user asserted that for any
174 I in [ 0, nb_iterations ) and for any J in
175 [ I, min ( I + safelen, nb_iterations ) ), the Ith and Jth iterations
176 of the loop can be safely evaluated concurrently. */
177 int safelen;
179 /* Preferred vectorization factor for the loop if non-zero. */
180 int simdlen;
182 /* Constraints are generally set by consumers and affect certain
183 semantics of niter analyzer APIs. Currently the APIs affected are
184 number_of_iterations_exit* functions and their callers. One typical
185 use case of constraints is to vectorize possibly infinite loop:
187 1) Compute niter->assumptions by calling niter analyzer API and
188 record it as possible condition for loop versioning.
189 2) Clear buffered result of niter/scev analyzer.
190 3) Set constraint LOOP_C_FINITE assuming the loop is finite.
191 4) Analyze data references. Since data reference analysis depends
192 on niter/scev analyzer, the point is that niter/scev analysis
193 is done under circumstance of LOOP_C_FINITE constraint.
194 5) Version the loop with niter->assumptions computed in step 1).
195 6) Vectorize the versioned loop in which niter->assumptions is
196 checked to be true.
197 7) Update constraints in versioned loops so that niter analyzer
198 in following passes can use it.
200 Note consumers are usually the loop optimizers and it is consumers'
201 responsibility to set/clear constraints correctly. Failing to do
202 that might result in hard to track down bugs in niter/scev consumers. */
203 unsigned constraints;
205 /* An integer estimation of the number of iterations. Estimate_state
206 describes what is the state of the estimation. */
207 ENUM_BITFIELD(loop_estimation) estimate_state : 8;
209 unsigned any_upper_bound : 1;
210 unsigned any_estimate : 1;
211 unsigned any_likely_upper_bound : 1;
213 /* True if the loop can be parallel. */
214 unsigned can_be_parallel : 1;
216 /* True if -Waggressive-loop-optimizations warned about this loop
217 already. */
218 unsigned warned_aggressive_loop_optimizations : 1;
220 /* True if this loop should never be vectorized. */
221 unsigned dont_vectorize : 1;
223 /* True if we should try harder to vectorize this loop. */
224 unsigned force_vectorize : 1;
226 /* True if the loop is part of an oacc kernels region. */
227 unsigned in_oacc_kernels_region : 1;
229 /* True if the loop is known to be finite. This is a localized
230 flag_finite_loops or similar pragmas state. */
231 unsigned finite_p : 1;
233 /* The number of times to unroll the loop. 0 means no information given,
234 just do what we always do. A value of 1 means do not unroll the loop.
235 A value of USHRT_MAX means unroll with no specific unrolling factor.
236 Other values means unroll with the given unrolling factor. */
237 unsigned short unroll;
239 /* If this loop was inlined the main clique of the callee which does
240 not need remapping when copying the loop body. */
241 unsigned short owned_clique;
243 /* For SIMD loops, this is a unique identifier of the loop, referenced
244 by IFN_GOMP_SIMD_VF, IFN_GOMP_SIMD_LANE and IFN_GOMP_SIMD_LAST_LANE
245 builtins. */
246 tree simduid;
248 /* In loop optimization, it's common to generate loops from the original
249 loop. This field records the index of the original loop which can be
250 used to track the original loop from newly generated loops. This can
251 be done by calling function get_loop (cfun, orig_loop_num). Note the
252 original loop could be destroyed for various reasons thus no longer
253 exists, as a result, function call to get_loop returns NULL pointer.
254 In this case, this field should not be used and needs to be cleared
255 whenever possible. */
256 int orig_loop_num;
258 /* Upper bound on number of iterations of a loop. */
259 class nb_iter_bound *bounds;
261 /* Non-overflow control ivs of a loop. */
262 struct control_iv *control_ivs;
264 /* Head of the cyclic list of the exits of the loop. */
265 struct loop_exit *exits;
267 /* Number of iteration analysis data for RTL. */
268 class niter_desc *simple_loop_desc;
270 /* For sanity checking during loop fixup we record here the former
271 loop header for loops marked for removal. Note that this prevents
272 the basic-block from being collected but its index can still be
273 reused. */
274 basic_block former_header;
277 /* Set if the loop is known to be infinite. */
278 #define LOOP_C_INFINITE (1 << 0)
279 /* Set if the loop is known to be finite without any assumptions. */
280 #define LOOP_C_FINITE (1 << 1)
282 /* Set C to the LOOP constraint. */
283 inline void
284 loop_constraint_set (class loop *loop, unsigned c)
286 loop->constraints |= c;
289 /* Clear C from the LOOP constraint. */
290 inline void
291 loop_constraint_clear (class loop *loop, unsigned c)
293 loop->constraints &= ~c;
296 /* Check if C is set in the LOOP constraint. */
297 inline bool
298 loop_constraint_set_p (class loop *loop, unsigned c)
300 return (loop->constraints & c) == c;
303 /* Flags for state of loop structure. */
304 enum
306 LOOPS_HAVE_PREHEADERS = 1,
307 LOOPS_HAVE_SIMPLE_LATCHES = 2,
308 LOOPS_HAVE_MARKED_IRREDUCIBLE_REGIONS = 4,
309 LOOPS_HAVE_RECORDED_EXITS = 8,
310 LOOPS_MAY_HAVE_MULTIPLE_LATCHES = 16,
311 LOOP_CLOSED_SSA = 32,
312 LOOPS_NEED_FIXUP = 64,
313 LOOPS_HAVE_FALLTHRU_PREHEADERS = 128
316 #define LOOPS_NORMAL (LOOPS_HAVE_PREHEADERS | LOOPS_HAVE_SIMPLE_LATCHES \
317 | LOOPS_HAVE_MARKED_IRREDUCIBLE_REGIONS)
318 #define AVOID_CFG_MODIFICATIONS (LOOPS_MAY_HAVE_MULTIPLE_LATCHES)
320 /* Structure to hold CFG information about natural loops within a function. */
321 struct GTY (()) loops {
322 /* State of loops. */
323 int state;
325 /* Array of the loops. */
326 vec<loop_p, va_gc> *larray;
328 /* Maps edges to the list of their descriptions as loop exits. Edges
329 whose sources or destinations have loop_father == NULL (which may
330 happen during the cfg manipulations) should not appear in EXITS. */
331 hash_table<loop_exit_hasher> *GTY(()) exits;
333 /* Pointer to root of loop hierarchy tree. */
334 class loop *tree_root;
337 /* Loop recognition. */
338 bool bb_loop_header_p (basic_block);
339 void init_loops_structure (struct function *, struct loops *, unsigned);
340 extern struct loops *flow_loops_find (struct loops *);
341 extern void disambiguate_loops_with_multiple_latches (void);
342 extern void flow_loops_free (struct loops *);
343 extern void flow_loops_dump (FILE *,
344 void (*)(const class loop *, FILE *, int), int);
345 extern void flow_loop_dump (const class loop *, FILE *,
346 void (*)(const class loop *, FILE *, int), int);
347 class loop *alloc_loop (void);
348 extern void flow_loop_free (class loop *);
349 int flow_loop_nodes_find (basic_block, class loop *);
350 unsigned fix_loop_structure (bitmap changed_bbs);
351 bool mark_irreducible_loops (void);
352 void release_recorded_exits (function *);
353 void record_loop_exits (void);
354 void rescan_loop_exit (edge, bool, bool);
355 void sort_sibling_loops (function *);
357 /* Loop data structure manipulation/querying. */
358 extern void flow_loop_tree_node_add (class loop *, class loop *,
359 class loop * = NULL);
360 extern void flow_loop_tree_node_remove (class loop *);
361 extern bool flow_loop_nested_p (const class loop *, const class loop *);
362 extern bool flow_bb_inside_loop_p (const class loop *, const_basic_block);
363 extern class loop * find_common_loop (class loop *, class loop *);
364 class loop *superloop_at_depth (class loop *, unsigned);
365 struct eni_weights;
366 extern int num_loop_insns (const class loop *);
367 extern int average_num_loop_insns (const class loop *);
368 extern unsigned get_loop_level (const class loop *);
369 extern bool loop_exit_edge_p (const class loop *, const_edge);
370 extern bool loop_exits_to_bb_p (class loop *, basic_block);
371 extern bool loop_exits_from_bb_p (class loop *, basic_block);
372 extern void mark_loop_exit_edges (void);
373 extern dump_user_location_t get_loop_location (class loop *loop);
375 /* Loops & cfg manipulation. */
376 extern basic_block *get_loop_body (const class loop *);
377 extern unsigned get_loop_body_with_size (const class loop *, basic_block *,
378 unsigned);
379 extern basic_block *get_loop_body_in_dom_order (const class loop *);
380 extern basic_block *get_loop_body_in_bfs_order (const class loop *);
381 extern basic_block *get_loop_body_in_custom_order (const class loop *,
382 int (*) (const void *, const void *));
383 extern basic_block *get_loop_body_in_custom_order (const class loop *, void *,
384 int (*) (const void *, const void *, void *));
386 extern auto_vec<edge> get_loop_exit_edges (const class loop *, basic_block * = NULL);
387 extern edge single_exit (const class loop *);
388 extern edge single_likely_exit (class loop *loop, const vec<edge> &);
389 extern unsigned num_loop_branches (const class loop *);
391 extern edge loop_preheader_edge (const class loop *);
392 extern edge loop_latch_edge (const class loop *);
394 extern void add_bb_to_loop (basic_block, class loop *);
395 extern void remove_bb_from_loops (basic_block);
397 extern void cancel_loop_tree (class loop *);
398 extern void delete_loop (class loop *);
401 extern void verify_loop_structure (void);
403 /* Loop analysis. */
404 extern bool just_once_each_iteration_p (const class loop *, const_basic_block);
405 gcov_type expected_loop_iterations_unbounded (const class loop *,
406 bool *read_profile_p = NULL);
407 extern bool expected_loop_iterations_by_profile (const class loop *loop,
408 sreal *ret,
409 bool *reliable = NULL);
410 extern bool maybe_flat_loop_profile (const class loop *);
411 extern unsigned expected_loop_iterations (class loop *);
412 extern rtx doloop_condition_get (rtx_insn *);
414 void mark_loop_for_removal (loop_p);
415 void print_loop_info (FILE *file, const class loop *loop, const char *);
417 /* Induction variable analysis. */
419 /* The description of induction variable. The things are a bit complicated
420 due to need to handle subregs and extends. The value of the object described
421 by it can be obtained as follows (all computations are done in extend_mode):
423 Value in i-th iteration is
424 delta + mult * extend_{extend_mode} (subreg_{mode} (base + i * step)).
426 If first_special is true, the value in the first iteration is
427 delta + mult * base
429 If extend = UNKNOWN, first_special must be false, delta 0, mult 1 and value is
430 subreg_{mode} (base + i * step)
432 The get_iv_value function can be used to obtain these expressions.
434 ??? Add a third mode field that would specify the mode in that inner
435 computation is done, which would enable it to be different from the
436 outer one? */
438 class rtx_iv
440 public:
441 /* Its base and step (mode of base and step is supposed to be extend_mode,
442 see the description above). */
443 rtx base, step;
445 /* The type of extend applied to it (IV_SIGN_EXTEND, IV_ZERO_EXTEND,
446 or IV_UNKNOWN_EXTEND). */
447 enum iv_extend_code extend;
449 /* Operations applied in the extended mode. */
450 rtx delta, mult;
452 /* The mode it is extended to. */
453 scalar_int_mode extend_mode;
455 /* The mode the variable iterates in. */
456 scalar_int_mode mode;
458 /* Whether the first iteration needs to be handled specially. */
459 unsigned first_special : 1;
462 /* The description of an exit from the loop and of the number of iterations
463 till we take the exit. */
465 class GTY(()) niter_desc
467 public:
468 /* The edge out of the loop. */
469 edge out_edge;
471 /* The other edge leading from the condition. */
472 edge in_edge;
474 /* True if we are able to say anything about number of iterations of the
475 loop. */
476 bool simple_p;
478 /* True if the loop iterates the constant number of times. */
479 bool const_iter;
481 /* Number of iterations if constant. */
482 uint64_t niter;
484 /* Assumptions under that the rest of the information is valid. */
485 rtx assumptions;
487 /* Assumptions under that the loop ends before reaching the latch,
488 even if value of niter_expr says otherwise. */
489 rtx noloop_assumptions;
491 /* Condition under that the loop is infinite. */
492 rtx infinite;
494 /* Whether the comparison is signed. */
495 bool signed_p;
497 /* The mode in that niter_expr should be computed. */
498 scalar_int_mode mode;
500 /* The number of iterations of the loop. */
501 rtx niter_expr;
504 extern void iv_analysis_loop_init (class loop *);
505 extern bool iv_analyze (rtx_insn *, scalar_int_mode, rtx, class rtx_iv *);
506 extern bool iv_analyze_result (rtx_insn *, rtx, class rtx_iv *);
507 extern bool iv_analyze_expr (rtx_insn *, scalar_int_mode, rtx,
508 class rtx_iv *);
509 extern rtx get_iv_value (class rtx_iv *, rtx);
510 extern bool biv_p (rtx_insn *, scalar_int_mode, rtx);
511 extern void iv_analysis_done (void);
513 extern class niter_desc *get_simple_loop_desc (class loop *loop);
514 extern void free_simple_loop_desc (class loop *loop);
516 inline class niter_desc *
517 simple_loop_desc (class loop *loop)
519 return loop->simple_loop_desc;
522 /* Accessors for the loop structures. */
524 /* Returns the loop with index NUM from FNs loop tree. */
526 inline class loop *
527 get_loop (struct function *fn, unsigned num)
529 return (*loops_for_fn (fn)->larray)[num];
532 /* Returns the number of superloops of LOOP. */
534 inline unsigned
535 loop_depth (const class loop *loop)
537 return vec_safe_length (loop->superloops);
540 /* Returns the immediate superloop of LOOP, or NULL if LOOP is the outermost
541 loop. */
543 inline class loop *
544 loop_outer (const class loop *loop)
546 unsigned n = vec_safe_length (loop->superloops);
548 if (n == 0)
549 return NULL;
551 return (*loop->superloops)[n - 1];
554 /* Returns true if LOOP has at least one exit edge. */
556 inline bool
557 loop_has_exit_edges (const class loop *loop)
559 return loop->exits->next->e != NULL;
562 /* Returns the list of loops in FN. */
564 inline vec<loop_p, va_gc> *
565 get_loops (struct function *fn)
567 struct loops *loops = loops_for_fn (fn);
568 if (!loops)
569 return NULL;
571 return loops->larray;
574 /* Returns the number of loops in FN (including the removed
575 ones and the fake loop that forms the root of the loop tree). */
577 inline unsigned
578 number_of_loops (struct function *fn)
580 struct loops *loops = loops_for_fn (fn);
581 if (!loops)
582 return 0;
584 return vec_safe_length (loops->larray);
587 /* Returns true if state of the loops satisfies all properties
588 described by FLAGS. */
590 inline bool
591 loops_state_satisfies_p (function *fn, unsigned flags)
593 return (loops_for_fn (fn)->state & flags) == flags;
596 inline bool
597 loops_state_satisfies_p (unsigned flags)
599 return loops_state_satisfies_p (cfun, flags);
602 /* Sets FLAGS to the loops state. */
604 inline void
605 loops_state_set (function *fn, unsigned flags)
607 loops_for_fn (fn)->state |= flags;
610 inline void
611 loops_state_set (unsigned flags)
613 loops_state_set (cfun, flags);
616 /* Clears FLAGS from the loops state. */
618 inline void
619 loops_state_clear (function *fn, unsigned flags)
621 loops_for_fn (fn)->state &= ~flags;
624 inline void
625 loops_state_clear (unsigned flags)
627 if (!current_loops)
628 return;
629 loops_state_clear (cfun, flags);
632 /* Check loop structure invariants, if internal consistency checks are
633 enabled. */
635 inline void
636 checking_verify_loop_structure (void)
638 /* VERIFY_LOOP_STRUCTURE essentially asserts that no loops need fixups.
640 The loop optimizers should never make changes to the CFG which
641 require loop fixups. But the low level CFG manipulation code may
642 set the flag conservatively.
644 Go ahead and clear the flag here. That avoids the assert inside
645 VERIFY_LOOP_STRUCTURE, and if there is an inconsistency in the loop
646 structures VERIFY_LOOP_STRUCTURE will detect it.
648 This also avoid the compile time cost of excessive fixups. */
649 loops_state_clear (LOOPS_NEED_FIXUP);
650 if (flag_checking)
651 verify_loop_structure ();
654 /* Loop iterators. */
656 /* Flags for loop iteration. */
658 enum li_flags
660 LI_INCLUDE_ROOT = 1, /* Include the fake root of the loop tree. */
661 LI_FROM_INNERMOST = 2, /* Iterate over the loops in the reverse order,
662 starting from innermost ones. */
663 LI_ONLY_INNERMOST = 4 /* Iterate only over innermost loops. */
666 /* Provide the functionality of std::as_const to support range-based for
667 to use const iterator. (We can't use std::as_const itself because it's
668 a C++17 feature.) */
669 template <typename T>
670 constexpr const T &
671 as_const (T &t)
673 return t;
676 /* A list for visiting loops, which contains the loop numbers instead of
677 the loop pointers. If the loop ROOT is offered (non-null), the visiting
678 will start from it, otherwise it would start from the tree_root of
679 loops_for_fn (FN) instead. The scope is restricted in function FN and
680 the visiting order is specified by FLAGS. */
682 class loops_list
684 public:
685 loops_list (function *fn, unsigned flags, class loop *root = nullptr);
687 template <typename T> class Iter
689 public:
690 Iter (const loops_list &l, unsigned idx) : list (l), curr_idx (idx)
692 fill_curr_loop ();
695 T operator* () const { return curr_loop; }
697 Iter &
698 operator++ ()
700 if (curr_idx < list.to_visit.length ())
702 /* Bump the index and fill a new one. */
703 curr_idx++;
704 fill_curr_loop ();
706 else
707 gcc_assert (!curr_loop);
709 return *this;
712 bool
713 operator!= (const Iter &rhs) const
715 return this->curr_idx != rhs.curr_idx;
718 private:
719 /* Fill the current loop starting from the current index. */
720 void fill_curr_loop ();
722 /* Reference to the loop list to visit. */
723 const loops_list &list;
725 /* The current index in the list to visit. */
726 unsigned curr_idx;
728 /* The loop implied by the current index. */
729 class loop *curr_loop;
732 using iterator = Iter<class loop *>;
733 using const_iterator = Iter<const class loop *>;
735 iterator
736 begin ()
738 return iterator (*this, 0);
741 iterator
742 end ()
744 return iterator (*this, to_visit.length ());
747 const_iterator
748 begin () const
750 return const_iterator (*this, 0);
753 const_iterator
754 end () const
756 return const_iterator (*this, to_visit.length ());
759 private:
760 /* Walk loop tree starting from ROOT as the visiting order specified
761 by FLAGS. */
762 void walk_loop_tree (class loop *root, unsigned flags);
764 /* The function we are visiting. */
765 function *fn;
767 /* The list of loops to visit. */
768 auto_vec<int, 16> to_visit;
771 /* Starting from current index CURR_IDX (inclusive), find one index
772 which stands for one valid loop and fill the found loop as CURR_LOOP,
773 if we can't find one, set CURR_LOOP as null. */
775 template <typename T>
776 inline void
777 loops_list::Iter<T>::fill_curr_loop ()
779 int anum;
781 while (this->list.to_visit.iterate (this->curr_idx, &anum))
783 class loop *loop = get_loop (this->list.fn, anum);
784 if (loop)
786 curr_loop = loop;
787 return;
789 this->curr_idx++;
792 curr_loop = nullptr;
795 /* Set up the loops list to visit according to the specified
796 function scope FN and iterating order FLAGS. If ROOT is
797 not null, the visiting would start from it, otherwise it
798 will start from tree_root of loops_for_fn (FN). */
800 inline loops_list::loops_list (function *fn, unsigned flags, class loop *root)
802 struct loops *loops = loops_for_fn (fn);
803 gcc_assert (!root || loops);
805 /* Check mutually exclusive flags should not co-exist. */
806 unsigned checked_flags = LI_ONLY_INNERMOST | LI_FROM_INNERMOST;
807 gcc_assert ((flags & checked_flags) != checked_flags);
809 this->fn = fn;
810 if (!loops)
811 return;
813 class loop *tree_root = root ? root : loops->tree_root;
815 this->to_visit.reserve_exact (number_of_loops (fn));
817 /* When root is tree_root of loops_for_fn (fn) and the visiting
818 order is LI_ONLY_INNERMOST, we would like to use linear
819 search here since it has a more stable bound than the
820 walk_loop_tree. */
821 if (flags & LI_ONLY_INNERMOST && tree_root == loops->tree_root)
823 gcc_assert (tree_root->num == 0);
824 if (tree_root->inner == NULL)
826 if (flags & LI_INCLUDE_ROOT)
827 this->to_visit.quick_push (0);
829 return;
832 class loop *aloop;
833 unsigned int i;
834 for (i = 1; vec_safe_iterate (loops->larray, i, &aloop); i++)
835 if (aloop != NULL && aloop->inner == NULL)
836 this->to_visit.quick_push (aloop->num);
838 else
839 walk_loop_tree (tree_root, flags);
842 /* The properties of the target. */
843 struct target_cfgloop {
844 /* Number of available registers. */
845 unsigned x_target_avail_regs;
847 /* Number of available registers that are call-clobbered. */
848 unsigned x_target_clobbered_regs;
850 /* Number of registers reserved for temporary expressions. */
851 unsigned x_target_res_regs;
853 /* The cost for register when there still is some reserve, but we are
854 approaching the number of available registers. */
855 unsigned x_target_reg_cost[2];
857 /* The cost for register when we need to spill. */
858 unsigned x_target_spill_cost[2];
861 extern struct target_cfgloop default_target_cfgloop;
862 #if SWITCHABLE_TARGET
863 extern struct target_cfgloop *this_target_cfgloop;
864 #else
865 #define this_target_cfgloop (&default_target_cfgloop)
866 #endif
868 #define target_avail_regs \
869 (this_target_cfgloop->x_target_avail_regs)
870 #define target_clobbered_regs \
871 (this_target_cfgloop->x_target_clobbered_regs)
872 #define target_res_regs \
873 (this_target_cfgloop->x_target_res_regs)
874 #define target_reg_cost \
875 (this_target_cfgloop->x_target_reg_cost)
876 #define target_spill_cost \
877 (this_target_cfgloop->x_target_spill_cost)
879 /* Register pressure estimation for induction variable optimizations & loop
880 invariant motion. */
881 extern unsigned estimate_reg_pressure_cost (unsigned, unsigned, bool, bool);
882 extern void init_set_costs (void);
884 /* Loop optimizer initialization. */
885 extern void loop_optimizer_init (unsigned);
886 extern void loop_optimizer_finalize (function *, bool = false);
887 inline void
888 loop_optimizer_finalize ()
890 loop_optimizer_finalize (cfun);
893 /* Optimization passes. */
894 enum
896 UAP_UNROLL = 1, /* Enables unrolling of loops if it seems profitable. */
897 UAP_UNROLL_ALL = 2 /* Enables unrolling of all loops. */
900 extern void doloop_optimize_loops (void);
901 extern void move_loop_invariants (void);
902 extern auto_vec<basic_block> get_loop_hot_path (const class loop *loop);
904 /* Returns the outermost loop of the loop nest that contains LOOP.*/
905 inline class loop *
906 loop_outermost (class loop *loop)
908 unsigned n = vec_safe_length (loop->superloops);
910 if (n <= 1)
911 return loop;
913 return (*loop->superloops)[1];
916 extern void record_niter_bound (class loop *, const widest_int &, bool, bool);
917 extern HOST_WIDE_INT get_estimated_loop_iterations_int (class loop *);
918 extern HOST_WIDE_INT get_max_loop_iterations_int (const class loop *);
919 extern HOST_WIDE_INT get_likely_max_loop_iterations_int (class loop *);
920 extern bool get_estimated_loop_iterations (class loop *loop, widest_int *nit);
921 extern bool get_max_loop_iterations (const class loop *loop, widest_int *nit);
922 extern bool get_likely_max_loop_iterations (class loop *loop, widest_int *nit);
923 extern int bb_loop_depth (const_basic_block);
924 extern edge single_dom_exit (class loop *);
925 extern profile_count loop_count_in (const class loop *loop);
927 /* Converts VAL to widest_int. */
929 inline widest_int
930 gcov_type_to_wide_int (gcov_type val)
932 HOST_WIDE_INT a[2];
934 a[0] = (unsigned HOST_WIDE_INT) val;
935 /* If HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_WIDEST_INT, avoid shifting by
936 the size of type. */
937 val >>= HOST_BITS_PER_WIDE_INT - 1;
938 val >>= 1;
939 a[1] = (unsigned HOST_WIDE_INT) val;
941 return widest_int::from_array (a, 2);
943 #endif /* GCC_CFGLOOP_H */