Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / cpp / gcc / cfgloop.h
bloba01eb109dbc67cedf59e609cb4656e3d40ad1211
1 /* Natural loop functions
2 Copyright (C) 1987-2022 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 #if 0 //sdcpp ndef 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 PTR 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 static inline void
284 loop_constraint_set (class loop *loop, unsigned c)
286 loop->constraints |= c;
289 /* Clear C from the LOOP constraint. */
290 static 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 static 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, bool by_profile_only = false);
407 extern unsigned expected_loop_iterations (class loop *);
408 extern rtx doloop_condition_get (rtx_insn *);
410 void mark_loop_for_removal (loop_p);
412 /* Induction variable analysis. */
414 /* The description of induction variable. The things are a bit complicated
415 due to need to handle subregs and extends. The value of the object described
416 by it can be obtained as follows (all computations are done in extend_mode):
418 Value in i-th iteration is
419 delta + mult * extend_{extend_mode} (subreg_{mode} (base + i * step)).
421 If first_special is true, the value in the first iteration is
422 delta + mult * base
424 If extend = UNKNOWN, first_special must be false, delta 0, mult 1 and value is
425 subreg_{mode} (base + i * step)
427 The get_iv_value function can be used to obtain these expressions.
429 ??? Add a third mode field that would specify the mode in that inner
430 computation is done, which would enable it to be different from the
431 outer one? */
433 class rtx_iv
435 public:
436 /* Its base and step (mode of base and step is supposed to be extend_mode,
437 see the description above). */
438 rtx base, step;
440 /* The type of extend applied to it (IV_SIGN_EXTEND, IV_ZERO_EXTEND,
441 or IV_UNKNOWN_EXTEND). */
442 enum iv_extend_code extend;
444 /* Operations applied in the extended mode. */
445 rtx delta, mult;
447 /* The mode it is extended to. */
448 scalar_int_mode extend_mode;
450 /* The mode the variable iterates in. */
451 scalar_int_mode mode;
453 /* Whether the first iteration needs to be handled specially. */
454 unsigned first_special : 1;
457 /* The description of an exit from the loop and of the number of iterations
458 till we take the exit. */
460 class GTY(()) niter_desc
462 public:
463 /* The edge out of the loop. */
464 edge out_edge;
466 /* The other edge leading from the condition. */
467 edge in_edge;
469 /* True if we are able to say anything about number of iterations of the
470 loop. */
471 bool simple_p;
473 /* True if the loop iterates the constant number of times. */
474 bool const_iter;
476 /* Number of iterations if constant. */
477 uint64_t niter;
479 /* Assumptions under that the rest of the information is valid. */
480 rtx assumptions;
482 /* Assumptions under that the loop ends before reaching the latch,
483 even if value of niter_expr says otherwise. */
484 rtx noloop_assumptions;
486 /* Condition under that the loop is infinite. */
487 rtx infinite;
489 /* Whether the comparison is signed. */
490 bool signed_p;
492 /* The mode in that niter_expr should be computed. */
493 scalar_int_mode mode;
495 /* The number of iterations of the loop. */
496 rtx niter_expr;
499 extern void iv_analysis_loop_init (class loop *);
500 extern bool iv_analyze (rtx_insn *, scalar_int_mode, rtx, class rtx_iv *);
501 extern bool iv_analyze_result (rtx_insn *, rtx, class rtx_iv *);
502 extern bool iv_analyze_expr (rtx_insn *, scalar_int_mode, rtx,
503 class rtx_iv *);
504 extern rtx get_iv_value (class rtx_iv *, rtx);
505 extern bool biv_p (rtx_insn *, scalar_int_mode, rtx);
506 extern void iv_analysis_done (void);
508 extern class niter_desc *get_simple_loop_desc (class loop *loop);
509 extern void free_simple_loop_desc (class loop *loop);
511 static inline class niter_desc *
512 simple_loop_desc (class loop *loop)
514 return loop->simple_loop_desc;
517 /* Accessors for the loop structures. */
519 /* Returns the loop with index NUM from FNs loop tree. */
521 #if 0 // sdcpp
522 static inline class loop *
523 get_loop (struct function *fn, unsigned num)
525 return (*loops_for_fn (fn)->larray)[num];
527 #endif
529 /* Returns the number of superloops of LOOP. */
531 static inline unsigned
532 loop_depth (const class loop *loop)
534 return vec_safe_length (loop->superloops);
537 /* Returns the immediate superloop of LOOP, or NULL if LOOP is the outermost
538 loop. */
540 static inline class loop *
541 loop_outer (const class loop *loop)
543 unsigned n = vec_safe_length (loop->superloops);
545 if (n == 0)
546 return NULL;
548 return (*loop->superloops)[n - 1];
551 /* Returns true if LOOP has at least one exit edge. */
553 static inline bool
554 loop_has_exit_edges (const class loop *loop)
556 return loop->exits->next->e != NULL;
559 /* Returns the list of loops in FN. */
561 #if 0 // sdcpp
562 inline vec<loop_p, va_gc> *
563 get_loops (struct function *fn)
565 struct loops *loops = loops_for_fn (fn);
566 if (!loops)
567 return NULL;
569 return loops->larray;
571 #endif // sdcpp
573 /* Returns the number of loops in FN (including the removed
574 ones and the fake loop that forms the root of the loop tree). */
576 static inline unsigned
577 number_of_loops (struct function *fn)
579 struct loops *loops = loops_for_fn (fn);
580 if (!loops)
581 return 0;
583 return vec_safe_length (loops->larray);
586 /* Returns true if state of the loops satisfies all properties
587 described by FLAGS. */
589 static inline bool
590 loops_state_satisfies_p (function *fn, unsigned flags)
592 return (loops_for_fn (fn)->state & flags) == flags;
595 static inline bool
596 loops_state_satisfies_p (unsigned flags)
598 return loops_state_satisfies_p (cfun, flags);
601 /* Sets FLAGS to the loops state. */
603 static inline void
604 loops_state_set (function *fn, unsigned flags)
606 loops_for_fn (fn)->state |= flags;
609 static inline void
610 loops_state_set (unsigned flags)
612 loops_state_set (cfun, flags);
615 /* Clears FLAGS from the loops state. */
617 static inline void
618 loops_state_clear (function *fn, unsigned flags)
620 loops_for_fn (fn)->state &= ~flags;
623 #if 0 // sdcpp
624 static 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 static 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 ();
653 #endif // sdcpp
655 /* Loop iterators. */
657 /* Flags for loop iteration. */
659 enum li_flags
661 LI_INCLUDE_ROOT = 1, /* Include the fake root of the loop tree. */
662 LI_FROM_INNERMOST = 2, /* Iterate over the loops in the reverse order,
663 starting from innermost ones. */
664 LI_ONLY_INNERMOST = 4 /* Iterate only over innermost loops. */
667 /* Provide the functionality of std::as_const to support range-based for
668 to use const iterator. (We can't use std::as_const itself because it's
669 a C++17 feature.) */
670 template <typename T>
671 constexpr const T &
672 as_const (T &t)
674 return t;
677 /* A list for visiting loops, which contains the loop numbers instead of
678 the loop pointers. If the loop ROOT is offered (non-null), the visiting
679 will start from it, otherwise it would start from the tree_root of
680 loops_for_fn (FN) instead. The scope is restricted in function FN and
681 the visiting order is specified by FLAGS. */
683 class loops_list
685 public:
686 loops_list (function *fn, unsigned flags, class loop *root = nullptr);
688 template <typename T> class Iter
690 public:
691 Iter (const loops_list &l, unsigned idx) : list (l), curr_idx (idx)
693 fill_curr_loop ();
696 T operator* () const { return curr_loop; }
698 Iter &
699 operator++ ()
701 if (curr_idx < list.to_visit.length ())
703 /* Bump the index and fill a new one. */
704 curr_idx++;
705 fill_curr_loop ();
707 else
708 gcc_assert (!curr_loop);
710 return *this;
713 bool
714 operator!= (const Iter &rhs) const
716 return this->curr_idx != rhs.curr_idx;
719 private:
720 /* Fill the current loop starting from the current index. */
721 void fill_curr_loop ();
723 /* Reference to the loop list to visit. */
724 const loops_list &list;
726 /* The current index in the list to visit. */
727 unsigned curr_idx;
729 /* The loop implied by the current index. */
730 class loop *curr_loop;
733 using iterator = Iter<class loop *>;
734 using const_iterator = Iter<const class loop *>;
736 iterator
737 begin ()
739 return iterator (*this, 0);
742 iterator
743 end ()
745 return iterator (*this, to_visit.length ());
748 const_iterator
749 begin () const
751 return const_iterator (*this, 0);
754 const_iterator
755 end () const
757 return const_iterator (*this, to_visit.length ());
760 private:
761 /* Walk loop tree starting from ROOT as the visiting order specified
762 by FLAGS. */
763 void walk_loop_tree (class loop *root, unsigned flags);
765 /* The function we are visiting. */
766 function *fn;
768 /* The list of loops to visit. */
769 auto_vec<int, 16> to_visit;
772 /* Starting from current index CURR_IDX (inclusive), find one index
773 which stands for one valid loop and fill the found loop as CURR_LOOP,
774 if we can't find one, set CURR_LOOP as null. */
776 #if 0 // sdcpp
777 template <typename T>
778 inline void
779 loops_list::Iter<T>::fill_curr_loop ()
781 int anum;
783 while (this->list.to_visit.iterate (this->curr_idx, &anum))
785 class loop *loop = get_loop (this->list.fn, anum);
786 if (loop)
788 curr_loop = loop;
789 return;
791 this->curr_idx++;
794 curr_loop = nullptr;
796 #endif
798 /* Set up the loops list to visit according to the specified
799 function scope FN and iterating order FLAGS. If ROOT is
800 not null, the visiting would start from it, otherwise it
801 will start from tree_root of loops_for_fn (FN). */
803 inline loops_list::loops_list (function *fn, unsigned flags, class loop *root)
805 struct loops *loops = loops_for_fn (fn);
806 gcc_assert (!root || loops);
808 /* Check mutually exclusive flags should not co-exist. */
809 unsigned checked_flags = LI_ONLY_INNERMOST | LI_FROM_INNERMOST;
810 gcc_assert ((flags & checked_flags) != checked_flags);
812 this->fn = fn;
813 if (!loops)
814 return;
816 class loop *tree_root = root ? root : loops->tree_root;
818 this->to_visit.reserve_exact (number_of_loops (fn));
820 /* When root is tree_root of loops_for_fn (fn) and the visiting
821 order is LI_ONLY_INNERMOST, we would like to use linear
822 search here since it has a more stable bound than the
823 walk_loop_tree. */
824 if (flags & LI_ONLY_INNERMOST && tree_root == loops->tree_root)
826 gcc_assert (tree_root->num == 0);
827 if (tree_root->inner == NULL)
829 if (flags & LI_INCLUDE_ROOT)
830 this->to_visit.quick_push (0);
832 return;
835 class loop *aloop;
836 unsigned int i;
837 for (i = 1; vec_safe_iterate (loops->larray, i, &aloop); i++)
838 if (aloop != NULL && aloop->inner == NULL)
839 this->to_visit.quick_push (aloop->num);
841 else
842 walk_loop_tree (tree_root, flags);
845 /* The properties of the target. */
846 struct target_cfgloop {
847 /* Number of available registers. */
848 unsigned x_target_avail_regs;
850 /* Number of available registers that are call-clobbered. */
851 unsigned x_target_clobbered_regs;
853 /* Number of registers reserved for temporary expressions. */
854 unsigned x_target_res_regs;
856 /* The cost for register when there still is some reserve, but we are
857 approaching the number of available registers. */
858 unsigned x_target_reg_cost[2];
860 /* The cost for register when we need to spill. */
861 unsigned x_target_spill_cost[2];
864 extern struct target_cfgloop default_target_cfgloop;
865 #if SWITCHABLE_TARGET
866 extern struct target_cfgloop *this_target_cfgloop;
867 #else
868 #define this_target_cfgloop (&default_target_cfgloop)
869 #endif
871 #define target_avail_regs \
872 (this_target_cfgloop->x_target_avail_regs)
873 #define target_clobbered_regs \
874 (this_target_cfgloop->x_target_clobbered_regs)
875 #define target_res_regs \
876 (this_target_cfgloop->x_target_res_regs)
877 #define target_reg_cost \
878 (this_target_cfgloop->x_target_reg_cost)
879 #define target_spill_cost \
880 (this_target_cfgloop->x_target_spill_cost)
882 /* Register pressure estimation for induction variable optimizations & loop
883 invariant motion. */
884 extern unsigned estimate_reg_pressure_cost (unsigned, unsigned, bool, bool);
885 extern void init_set_costs (void);
887 /* Loop optimizer initialization. */
888 extern void loop_optimizer_init (unsigned);
889 extern void loop_optimizer_finalize (function *, bool = false);
890 inline void
891 loop_optimizer_finalize ()
893 loop_optimizer_finalize (cfun);
896 /* Optimization passes. */
897 enum
899 UAP_UNROLL = 1, /* Enables unrolling of loops if it seems profitable. */
900 UAP_UNROLL_ALL = 2 /* Enables unrolling of all loops. */
903 extern void doloop_optimize_loops (void);
904 extern void move_loop_invariants (void);
905 extern auto_vec<basic_block> get_loop_hot_path (const class loop *loop);
907 /* Returns the outermost loop of the loop nest that contains LOOP.*/
908 static inline class loop *
909 loop_outermost (class loop *loop)
911 unsigned n = vec_safe_length (loop->superloops);
913 if (n <= 1)
914 return loop;
916 return (*loop->superloops)[1];
919 extern void record_niter_bound (class loop *, const widest_int &, bool, bool);
920 extern HOST_WIDE_INT get_estimated_loop_iterations_int (class loop *);
921 extern HOST_WIDE_INT get_max_loop_iterations_int (const class loop *);
922 extern HOST_WIDE_INT get_likely_max_loop_iterations_int (class loop *);
923 extern bool get_estimated_loop_iterations (class loop *loop, widest_int *nit);
924 extern bool get_max_loop_iterations (const class loop *loop, widest_int *nit);
925 extern bool get_likely_max_loop_iterations (class loop *loop, widest_int *nit);
926 extern int bb_loop_depth (const_basic_block);
928 /* Converts VAL to widest_int. */
930 static inline widest_int
931 gcov_type_to_wide_int (gcov_type val)
933 HOST_WIDE_INT a[2];
935 a[0] = (unsigned HOST_WIDE_INT) val;
936 /* If HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_WIDEST_INT, avoid shifting by
937 the size of type. */
938 val >>= HOST_BITS_PER_WIDE_INT - 1;
939 val >>= 1;
940 a[1] = (unsigned HOST_WIDE_INT) val;
942 return widest_int::from_array (a, 2);
944 #endif /* GCC_CFGLOOP_H */