PR rtl-optimization/82913
[official-gcc.git] / gcc / tree-ssa-loop.h
blob29557104256ffb054da5f46a1636251b5a856a77
1 /* Header file for SSA loop optimizations.
2 Copyright (C) 2013-2017 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_TREE_SSA_LOOP_H
21 #define GCC_TREE_SSA_LOOP_H
24 /* Affine iv. */
26 struct affine_iv
28 /* Iv = BASE + STEP * i. */
29 tree base, step;
31 /* True if this iv does not overflow. */
32 bool no_overflow;
35 /* Description of number of iterations of a loop. All the expressions inside
36 the structure can be evaluated at the end of the loop's preheader
37 (and due to ssa form, also anywhere inside the body of the loop). */
39 struct tree_niter_desc
41 tree assumptions; /* The boolean expression. If this expression evaluates
42 to false, then the other fields in this structure
43 should not be used; there is no guarantee that they
44 will be correct. */
45 tree may_be_zero; /* The boolean expression. If it evaluates to true,
46 the loop will exit in the first iteration (i.e.
47 its latch will not be executed), even if the niter
48 field says otherwise. */
49 tree niter; /* The expression giving the number of iterations of
50 a loop (provided that assumptions == true and
51 may_be_zero == false), more precisely the number
52 of executions of the latch of the loop. */
53 widest_int max; /* The upper bound on the number of iterations of
54 the loop. */
56 /* The simplified shape of the exit condition. The loop exits if
57 CONTROL CMP BOUND is false, where CMP is one of NE_EXPR,
58 LT_EXPR, or GT_EXPR, and step of CONTROL is positive if CMP is
59 LE_EXPR and negative if CMP is GE_EXPR. This information is used
60 by loop unrolling. */
61 affine_iv control;
62 tree bound;
63 enum tree_code cmp;
66 extern bool for_each_index (tree *, bool (*) (tree, tree *, void *), void *);
67 extern char *get_lsm_tmp_name (tree ref, unsigned n, const char *suffix = NULL);
68 extern unsigned tree_num_loop_insns (struct loop *, struct eni_weights *);
70 /* Returns the loop of the statement STMT. */
72 static inline struct loop *
73 loop_containing_stmt (gimple *stmt)
75 basic_block bb = gimple_bb (stmt);
76 if (!bb)
77 return NULL;
79 return bb->loop_father;
82 #endif /* GCC_TREE_SSA_LOOP_H */