1 /* Chains of recurrences.
2 Copyright (C) 2003-2019 Free Software Foundation, Inc.
3 Contributed by Sebastian Pop <pop@cri.ensmp.fr>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* This file implements operations on chains of recurrences. Chains
22 of recurrences are used for modeling evolution functions of scalar
28 #include "coretypes.h"
31 #include "gimple-expr.h"
32 #include "tree-pretty-print.h"
33 #include "fold-const.h"
35 #include "tree-ssa-loop-ivopts.h"
36 #include "tree-ssa-loop-niter.h"
37 #include "tree-chrec.h"
40 #include "tree-scalar-evolution.h"
42 /* Extended folder for chrecs. */
44 /* Fold the addition of two polynomial functions. */
47 chrec_fold_plus_poly_poly (enum tree_code code
,
53 struct loop
*loop0
= get_chrec_loop (poly0
);
54 struct loop
*loop1
= get_chrec_loop (poly1
);
55 tree rtype
= code
== POINTER_PLUS_EXPR
? chrec_type (poly1
) : type
;
59 gcc_assert (TREE_CODE (poly0
) == POLYNOMIAL_CHREC
);
60 gcc_assert (TREE_CODE (poly1
) == POLYNOMIAL_CHREC
);
61 if (POINTER_TYPE_P (chrec_type (poly0
)))
62 gcc_checking_assert (ptrofftype_p (chrec_type (poly1
))
63 && useless_type_conversion_p (type
, chrec_type (poly0
)));
65 gcc_checking_assert (useless_type_conversion_p (type
, chrec_type (poly0
))
66 && useless_type_conversion_p (type
, chrec_type (poly1
)));
69 {a, +, b}_1 + {c, +, d}_2 -> {{a, +, b}_1 + c, +, d}_2,
70 {a, +, b}_2 + {c, +, d}_1 -> {{c, +, d}_1 + a, +, b}_2,
71 {a, +, b}_x + {c, +, d}_x -> {a+c, +, b+d}_x. */
72 if (flow_loop_nested_p (loop0
, loop1
))
74 if (code
== PLUS_EXPR
|| code
== POINTER_PLUS_EXPR
)
75 return build_polynomial_chrec
76 (CHREC_VARIABLE (poly1
),
77 chrec_fold_plus (type
, poly0
, CHREC_LEFT (poly1
)),
80 return build_polynomial_chrec
81 (CHREC_VARIABLE (poly1
),
82 chrec_fold_minus (type
, poly0
, CHREC_LEFT (poly1
)),
83 chrec_fold_multiply (type
, CHREC_RIGHT (poly1
),
84 SCALAR_FLOAT_TYPE_P (type
)
85 ? build_real (type
, dconstm1
)
86 : build_int_cst_type (type
, -1)));
89 if (flow_loop_nested_p (loop1
, loop0
))
91 if (code
== PLUS_EXPR
|| code
== POINTER_PLUS_EXPR
)
92 return build_polynomial_chrec
93 (CHREC_VARIABLE (poly0
),
94 chrec_fold_plus (type
, CHREC_LEFT (poly0
), poly1
),
97 return build_polynomial_chrec
98 (CHREC_VARIABLE (poly0
),
99 chrec_fold_minus (type
, CHREC_LEFT (poly0
), poly1
),
100 CHREC_RIGHT (poly0
));
103 /* This function should never be called for chrecs of loops that
104 do not belong to the same loop nest. */
107 /* It still can happen if we are not in loop-closed SSA form. */
108 gcc_assert (! loops_state_satisfies_p (LOOP_CLOSED_SSA
));
109 return chrec_dont_know
;
112 if (code
== PLUS_EXPR
|| code
== POINTER_PLUS_EXPR
)
114 left
= chrec_fold_plus
115 (type
, CHREC_LEFT (poly0
), CHREC_LEFT (poly1
));
116 right
= chrec_fold_plus
117 (rtype
, CHREC_RIGHT (poly0
), CHREC_RIGHT (poly1
));
121 left
= chrec_fold_minus
122 (type
, CHREC_LEFT (poly0
), CHREC_LEFT (poly1
));
123 right
= chrec_fold_minus
124 (type
, CHREC_RIGHT (poly0
), CHREC_RIGHT (poly1
));
127 if (chrec_zerop (right
))
130 return build_polynomial_chrec
131 (CHREC_VARIABLE (poly0
), left
, right
);
136 /* Fold the multiplication of two polynomial functions. */
139 chrec_fold_multiply_poly_poly (tree type
,
145 struct loop
*loop0
= get_chrec_loop (poly0
);
146 struct loop
*loop1
= get_chrec_loop (poly1
);
150 gcc_assert (TREE_CODE (poly0
) == POLYNOMIAL_CHREC
);
151 gcc_assert (TREE_CODE (poly1
) == POLYNOMIAL_CHREC
);
152 gcc_checking_assert (useless_type_conversion_p (type
, chrec_type (poly0
))
153 && useless_type_conversion_p (type
, chrec_type (poly1
)));
155 /* {a, +, b}_1 * {c, +, d}_2 -> {c*{a, +, b}_1, +, d}_2,
156 {a, +, b}_2 * {c, +, d}_1 -> {a*{c, +, d}_1, +, b}_2,
157 {a, +, b}_x * {c, +, d}_x -> {a*c, +, a*d + b*c + b*d, +, 2*b*d}_x. */
158 if (flow_loop_nested_p (loop0
, loop1
))
159 /* poly0 is a constant wrt. poly1. */
160 return build_polynomial_chrec
161 (CHREC_VARIABLE (poly1
),
162 chrec_fold_multiply (type
, CHREC_LEFT (poly1
), poly0
),
163 CHREC_RIGHT (poly1
));
165 if (flow_loop_nested_p (loop1
, loop0
))
166 /* poly1 is a constant wrt. poly0. */
167 return build_polynomial_chrec
168 (CHREC_VARIABLE (poly0
),
169 chrec_fold_multiply (type
, CHREC_LEFT (poly0
), poly1
),
170 CHREC_RIGHT (poly0
));
174 /* It still can happen if we are not in loop-closed SSA form. */
175 gcc_assert (! loops_state_satisfies_p (LOOP_CLOSED_SSA
));
176 return chrec_dont_know
;
179 /* poly0 and poly1 are two polynomials in the same variable,
180 {a, +, b}_x * {c, +, d}_x -> {a*c, +, a*d + b*c + b*d, +, 2*b*d}_x. */
183 t0
= chrec_fold_multiply (type
, CHREC_LEFT (poly0
), CHREC_LEFT (poly1
));
186 t1
= chrec_fold_multiply (type
, CHREC_LEFT (poly0
), CHREC_RIGHT (poly1
));
187 t1
= chrec_fold_plus (type
, t1
, chrec_fold_multiply (type
,
189 CHREC_LEFT (poly1
)));
191 t2
= chrec_fold_multiply (type
, CHREC_RIGHT (poly0
), CHREC_RIGHT (poly1
));
192 /* "a*d + b*c + b*d". */
193 t1
= chrec_fold_plus (type
, t1
, t2
);
195 t2
= chrec_fold_multiply (type
, SCALAR_FLOAT_TYPE_P (type
)
196 ? build_real (type
, dconst2
)
197 : build_int_cst (type
, 2), t2
);
199 var
= CHREC_VARIABLE (poly0
);
200 return build_polynomial_chrec (var
, t0
,
201 build_polynomial_chrec (var
, t1
, t2
));
204 /* When the operands are automatically_generated_chrec_p, the fold has
205 to respect the semantics of the operands. */
208 chrec_fold_automatically_generated_operands (tree op0
,
211 if (op0
== chrec_dont_know
212 || op1
== chrec_dont_know
)
213 return chrec_dont_know
;
215 if (op0
== chrec_known
216 || op1
== chrec_known
)
219 if (op0
== chrec_not_analyzed_yet
220 || op1
== chrec_not_analyzed_yet
)
221 return chrec_not_analyzed_yet
;
223 /* The default case produces a safe result. */
224 return chrec_dont_know
;
227 /* Fold the addition of two chrecs. */
230 chrec_fold_plus_1 (enum tree_code code
, tree type
,
233 if (automatically_generated_chrec_p (op0
)
234 || automatically_generated_chrec_p (op1
))
235 return chrec_fold_automatically_generated_operands (op0
, op1
);
237 switch (TREE_CODE (op0
))
239 case POLYNOMIAL_CHREC
:
241 (!chrec_contains_symbols_defined_in_loop (op0
, CHREC_VARIABLE (op0
)));
242 switch (TREE_CODE (op1
))
244 case POLYNOMIAL_CHREC
:
246 (!chrec_contains_symbols_defined_in_loop (op1
,
247 CHREC_VARIABLE (op1
)));
248 return chrec_fold_plus_poly_poly (code
, type
, op0
, op1
);
252 /* We can strip sign-conversions to signed by performing the
253 operation in unsigned. */
254 tree optype
= TREE_TYPE (TREE_OPERAND (op1
, 0));
255 if (INTEGRAL_TYPE_P (type
)
256 && INTEGRAL_TYPE_P (optype
)
257 && tree_nop_conversion_p (type
, optype
)
258 && TYPE_UNSIGNED (optype
))
259 return chrec_convert (type
,
260 chrec_fold_plus_1 (code
, optype
,
261 chrec_convert (optype
,
263 TREE_OPERAND (op1
, 0)),
265 if (tree_contains_chrecs (op1
, NULL
))
266 return chrec_dont_know
;
271 if (code
== PLUS_EXPR
|| code
== POINTER_PLUS_EXPR
)
272 return build_polynomial_chrec
273 (CHREC_VARIABLE (op0
),
274 chrec_fold_plus (type
, CHREC_LEFT (op0
), op1
),
277 return build_polynomial_chrec
278 (CHREC_VARIABLE (op0
),
279 chrec_fold_minus (type
, CHREC_LEFT (op0
), op1
),
285 /* We can strip sign-conversions to signed by performing the
286 operation in unsigned. */
287 tree optype
= TREE_TYPE (TREE_OPERAND (op0
, 0));
288 if (INTEGRAL_TYPE_P (type
)
289 && INTEGRAL_TYPE_P (optype
)
290 && tree_nop_conversion_p (type
, optype
)
291 && TYPE_UNSIGNED (optype
))
292 return chrec_convert (type
,
293 chrec_fold_plus_1 (code
, optype
,
294 TREE_OPERAND (op0
, 0),
295 chrec_convert (optype
,
298 if (tree_contains_chrecs (op0
, NULL
))
299 return chrec_dont_know
;
304 switch (TREE_CODE (op1
))
306 case POLYNOMIAL_CHREC
:
308 (!chrec_contains_symbols_defined_in_loop (op1
,
309 CHREC_VARIABLE (op1
)));
310 if (code
== PLUS_EXPR
|| code
== POINTER_PLUS_EXPR
)
311 return build_polynomial_chrec
312 (CHREC_VARIABLE (op1
),
313 chrec_fold_plus (type
, op0
, CHREC_LEFT (op1
)),
316 return build_polynomial_chrec
317 (CHREC_VARIABLE (op1
),
318 chrec_fold_minus (type
, op0
, CHREC_LEFT (op1
)),
319 chrec_fold_multiply (type
, CHREC_RIGHT (op1
),
320 SCALAR_FLOAT_TYPE_P (type
)
321 ? build_real (type
, dconstm1
)
322 : build_int_cst_type (type
, -1)));
325 if (tree_contains_chrecs (op1
, NULL
))
326 return chrec_dont_know
;
332 if ((tree_contains_chrecs (op0
, &size
)
333 || tree_contains_chrecs (op1
, &size
))
334 && size
< PARAM_VALUE (PARAM_SCEV_MAX_EXPR_SIZE
))
335 return build2 (code
, type
, op0
, op1
);
336 else if (size
< PARAM_VALUE (PARAM_SCEV_MAX_EXPR_SIZE
))
338 if (code
== POINTER_PLUS_EXPR
)
339 return fold_build_pointer_plus (fold_convert (type
, op0
),
342 return fold_build2 (code
, type
,
343 fold_convert (type
, op0
),
344 fold_convert (type
, op1
));
347 return chrec_dont_know
;
353 /* Fold the addition of two chrecs. */
356 chrec_fold_plus (tree type
,
361 if (automatically_generated_chrec_p (op0
)
362 || automatically_generated_chrec_p (op1
))
363 return chrec_fold_automatically_generated_operands (op0
, op1
);
365 if (integer_zerop (op0
))
366 return chrec_convert (type
, op1
, NULL
);
367 if (integer_zerop (op1
))
368 return chrec_convert (type
, op0
, NULL
);
370 if (POINTER_TYPE_P (type
))
371 code
= POINTER_PLUS_EXPR
;
375 return chrec_fold_plus_1 (code
, type
, op0
, op1
);
378 /* Fold the subtraction of two chrecs. */
381 chrec_fold_minus (tree type
,
385 if (automatically_generated_chrec_p (op0
)
386 || automatically_generated_chrec_p (op1
))
387 return chrec_fold_automatically_generated_operands (op0
, op1
);
389 if (integer_zerop (op1
))
392 return chrec_fold_plus_1 (MINUS_EXPR
, type
, op0
, op1
);
395 /* Fold the multiplication of two chrecs. */
398 chrec_fold_multiply (tree type
,
402 if (automatically_generated_chrec_p (op0
)
403 || automatically_generated_chrec_p (op1
))
404 return chrec_fold_automatically_generated_operands (op0
, op1
);
406 switch (TREE_CODE (op0
))
408 case POLYNOMIAL_CHREC
:
410 (!chrec_contains_symbols_defined_in_loop (op0
, CHREC_VARIABLE (op0
)));
411 switch (TREE_CODE (op1
))
413 case POLYNOMIAL_CHREC
:
415 (!chrec_contains_symbols_defined_in_loop (op1
,
416 CHREC_VARIABLE (op1
)));
417 return chrec_fold_multiply_poly_poly (type
, op0
, op1
);
420 if (tree_contains_chrecs (op1
, NULL
))
421 return chrec_dont_know
;
425 if (integer_onep (op1
))
427 if (integer_zerop (op1
))
428 return build_int_cst (type
, 0);
430 return build_polynomial_chrec
431 (CHREC_VARIABLE (op0
),
432 chrec_fold_multiply (type
, CHREC_LEFT (op0
), op1
),
433 chrec_fold_multiply (type
, CHREC_RIGHT (op0
), op1
));
437 if (tree_contains_chrecs (op0
, NULL
))
438 return chrec_dont_know
;
442 if (integer_onep (op0
))
445 if (integer_zerop (op0
))
446 return build_int_cst (type
, 0);
448 switch (TREE_CODE (op1
))
450 case POLYNOMIAL_CHREC
:
452 (!chrec_contains_symbols_defined_in_loop (op1
,
453 CHREC_VARIABLE (op1
)));
454 return build_polynomial_chrec
455 (CHREC_VARIABLE (op1
),
456 chrec_fold_multiply (type
, CHREC_LEFT (op1
), op0
),
457 chrec_fold_multiply (type
, CHREC_RIGHT (op1
), op0
));
460 if (tree_contains_chrecs (op1
, NULL
))
461 return chrec_dont_know
;
465 if (integer_onep (op1
))
467 if (integer_zerop (op1
))
468 return build_int_cst (type
, 0);
469 return fold_build2 (MULT_EXPR
, type
, op0
, op1
);
478 /* Evaluate the binomial coefficient. Return NULL_TREE if the intermediate
479 calculation overflows, otherwise return C(n,k) with type TYPE. */
482 tree_fold_binomial (tree type
, tree n
, unsigned int k
)
484 wi::overflow_type overflow
;
487 /* Handle the most frequent cases. */
489 return build_int_cst (type
, 1);
491 return fold_convert (type
, n
);
493 widest_int num
= wi::to_widest (n
);
495 /* Check that k <= n. */
496 if (wi::ltu_p (num
, k
))
499 /* Denominator = 2. */
500 widest_int denom
= 2;
502 /* Index = Numerator-1. */
503 widest_int idx
= num
- 1;
505 /* Numerator = Numerator*Index = n*(n-1). */
506 num
= wi::smul (num
, idx
, &overflow
);
510 for (i
= 3; i
<= k
; i
++)
515 /* Numerator *= Index. */
516 num
= wi::smul (num
, idx
, &overflow
);
520 /* Denominator *= i. */
524 /* Result = Numerator / Denominator. */
525 num
= wi::udiv_trunc (num
, denom
);
526 if (! wi::fits_to_tree_p (num
, type
))
528 return wide_int_to_tree (type
, num
);
531 /* Helper function. Use the Newton's interpolating formula for
532 evaluating the value of the evolution function.
533 The result may be in an unsigned type of CHREC. */
536 chrec_evaluate (unsigned var
, tree chrec
, tree n
, unsigned int k
)
538 tree arg0
, arg1
, binomial_n_k
;
539 tree type
= TREE_TYPE (chrec
);
540 struct loop
*var_loop
= get_loop (cfun
, var
);
542 while (TREE_CODE (chrec
) == POLYNOMIAL_CHREC
543 && flow_loop_nested_p (var_loop
, get_chrec_loop (chrec
)))
544 chrec
= CHREC_LEFT (chrec
);
546 /* The formula associates the expression and thus we have to make
547 sure to not introduce undefined overflow. */
549 if (INTEGRAL_TYPE_P (type
)
550 && ! TYPE_OVERFLOW_WRAPS (type
))
551 ctype
= unsigned_type_for (type
);
553 if (TREE_CODE (chrec
) == POLYNOMIAL_CHREC
554 && CHREC_VARIABLE (chrec
) == var
)
556 arg1
= chrec_evaluate (var
, CHREC_RIGHT (chrec
), n
, k
+ 1);
557 if (arg1
== chrec_dont_know
)
558 return chrec_dont_know
;
559 binomial_n_k
= tree_fold_binomial (ctype
, n
, k
);
561 return chrec_dont_know
;
562 tree l
= chrec_convert (ctype
, CHREC_LEFT (chrec
), NULL
);
563 arg0
= fold_build2 (MULT_EXPR
, ctype
, l
, binomial_n_k
);
564 return chrec_fold_plus (ctype
, arg0
, arg1
);
567 binomial_n_k
= tree_fold_binomial (ctype
, n
, k
);
569 return chrec_dont_know
;
571 return fold_build2 (MULT_EXPR
, ctype
,
572 chrec_convert (ctype
, chrec
, NULL
), binomial_n_k
);
575 /* Evaluates "CHREC (X)" when the varying variable is VAR.
576 Example: Given the following parameters,
582 The result is given by the Newton's interpolating formula:
583 3 * \binom{10}{0} + 4 * \binom{10}{1}.
587 chrec_apply (unsigned var
,
591 tree type
= chrec_type (chrec
);
592 tree res
= chrec_dont_know
;
594 if (automatically_generated_chrec_p (chrec
)
595 || automatically_generated_chrec_p (x
)
597 /* When the symbols are defined in an outer loop, it is possible
598 to symbolically compute the apply, since the symbols are
599 constants with respect to the varying loop. */
600 || chrec_contains_symbols_defined_in_loop (chrec
, var
))
601 return chrec_dont_know
;
603 if (dump_file
&& (dump_flags
& TDF_SCEV
))
604 fprintf (dump_file
, "(chrec_apply \n");
606 if (TREE_CODE (x
) == INTEGER_CST
&& SCALAR_FLOAT_TYPE_P (type
))
607 x
= build_real_from_int_cst (type
, x
);
609 switch (TREE_CODE (chrec
))
611 case POLYNOMIAL_CHREC
:
612 if (evolution_function_is_affine_p (chrec
))
614 if (CHREC_VARIABLE (chrec
) != var
)
615 return build_polynomial_chrec
616 (CHREC_VARIABLE (chrec
),
617 chrec_apply (var
, CHREC_LEFT (chrec
), x
),
618 chrec_apply (var
, CHREC_RIGHT (chrec
), x
));
620 /* "{a, +, b} (x)" -> "a + b*x". */
621 x
= chrec_convert_rhs (type
, x
, NULL
);
622 res
= chrec_fold_multiply (TREE_TYPE (x
), CHREC_RIGHT (chrec
), x
);
623 res
= chrec_fold_plus (type
, CHREC_LEFT (chrec
), res
);
625 else if (TREE_CODE (x
) == INTEGER_CST
626 && tree_int_cst_sgn (x
) == 1)
627 /* testsuite/.../ssa-chrec-38.c. */
628 res
= chrec_convert (type
, chrec_evaluate (var
, chrec
, x
, 0), NULL
);
630 res
= chrec_dont_know
;
634 res
= chrec_convert (TREE_TYPE (chrec
),
635 chrec_apply (var
, TREE_OPERAND (chrec
, 0), x
),
644 if (dump_file
&& (dump_flags
& TDF_SCEV
))
646 fprintf (dump_file
, " (varying_loop = %d\n", var
);
647 fprintf (dump_file
, ")\n (chrec = ");
648 print_generic_expr (dump_file
, chrec
);
649 fprintf (dump_file
, ")\n (x = ");
650 print_generic_expr (dump_file
, x
);
651 fprintf (dump_file
, ")\n (res = ");
652 print_generic_expr (dump_file
, res
);
653 fprintf (dump_file
, "))\n");
659 /* For a given CHREC and an induction variable map IV_MAP that maps
660 (loop->num, expr) for every loop number of the current_loops an
661 expression, calls chrec_apply when the expression is not NULL. */
664 chrec_apply_map (tree chrec
, vec
<tree
> iv_map
)
669 FOR_EACH_VEC_ELT (iv_map
, i
, expr
)
671 chrec
= chrec_apply (i
, chrec
, expr
);
676 /* Replaces the initial condition in CHREC with INIT_COND. */
679 chrec_replace_initial_condition (tree chrec
,
682 if (automatically_generated_chrec_p (chrec
))
685 gcc_assert (chrec_type (chrec
) == chrec_type (init_cond
));
687 switch (TREE_CODE (chrec
))
689 case POLYNOMIAL_CHREC
:
690 return build_polynomial_chrec
691 (CHREC_VARIABLE (chrec
),
692 chrec_replace_initial_condition (CHREC_LEFT (chrec
), init_cond
),
693 CHREC_RIGHT (chrec
));
700 /* Returns the initial condition of a given CHREC. */
703 initial_condition (tree chrec
)
705 if (automatically_generated_chrec_p (chrec
))
708 if (TREE_CODE (chrec
) == POLYNOMIAL_CHREC
)
709 return initial_condition (CHREC_LEFT (chrec
));
714 /* Returns a univariate function that represents the evolution in
715 LOOP_NUM. Mask the evolution of any other loop. */
718 hide_evolution_in_other_loops_than_loop (tree chrec
,
721 struct loop
*loop
= get_loop (cfun
, loop_num
), *chloop
;
722 if (automatically_generated_chrec_p (chrec
))
725 switch (TREE_CODE (chrec
))
727 case POLYNOMIAL_CHREC
:
728 chloop
= get_chrec_loop (chrec
);
731 return build_polynomial_chrec
733 hide_evolution_in_other_loops_than_loop (CHREC_LEFT (chrec
),
735 CHREC_RIGHT (chrec
));
737 else if (flow_loop_nested_p (chloop
, loop
))
738 /* There is no evolution in this loop. */
739 return initial_condition (chrec
);
741 else if (flow_loop_nested_p (loop
, chloop
))
742 return hide_evolution_in_other_loops_than_loop (CHREC_LEFT (chrec
),
746 return chrec_dont_know
;
753 /* Returns the evolution part of CHREC in LOOP_NUM when RIGHT is
754 true, otherwise returns the initial condition in LOOP_NUM. */
757 chrec_component_in_loop_num (tree chrec
,
762 struct loop
*loop
= get_loop (cfun
, loop_num
), *chloop
;
764 if (automatically_generated_chrec_p (chrec
))
767 switch (TREE_CODE (chrec
))
769 case POLYNOMIAL_CHREC
:
770 chloop
= get_chrec_loop (chrec
);
775 component
= CHREC_RIGHT (chrec
);
777 component
= CHREC_LEFT (chrec
);
779 if (TREE_CODE (CHREC_LEFT (chrec
)) != POLYNOMIAL_CHREC
780 || CHREC_VARIABLE (CHREC_LEFT (chrec
)) != CHREC_VARIABLE (chrec
))
784 return build_polynomial_chrec
786 chrec_component_in_loop_num (CHREC_LEFT (chrec
),
792 else if (flow_loop_nested_p (chloop
, loop
))
793 /* There is no evolution part in this loop. */
798 gcc_assert (flow_loop_nested_p (loop
, chloop
));
799 return chrec_component_in_loop_num (CHREC_LEFT (chrec
),
812 /* Returns the evolution part in LOOP_NUM. Example: the call
813 evolution_part_in_loop_num ({{0, +, 1}_1, +, 2}_1, 1) returns
817 evolution_part_in_loop_num (tree chrec
,
820 return chrec_component_in_loop_num (chrec
, loop_num
, true);
823 /* Returns the initial condition in LOOP_NUM. Example: the call
824 initial_condition_in_loop_num ({{0, +, 1}_1, +, 2}_2, 2) returns
828 initial_condition_in_loop_num (tree chrec
,
831 return chrec_component_in_loop_num (chrec
, loop_num
, false);
834 /* Set or reset the evolution of CHREC to NEW_EVOL in loop LOOP_NUM.
835 This function is essentially used for setting the evolution to
836 chrec_dont_know, for example after having determined that it is
837 impossible to say how many times a loop will execute. */
840 reset_evolution_in_loop (unsigned loop_num
,
844 struct loop
*loop
= get_loop (cfun
, loop_num
);
846 if (POINTER_TYPE_P (chrec_type (chrec
)))
847 gcc_assert (ptrofftype_p (chrec_type (new_evol
)));
849 gcc_assert (chrec_type (chrec
) == chrec_type (new_evol
));
851 if (TREE_CODE (chrec
) == POLYNOMIAL_CHREC
852 && flow_loop_nested_p (loop
, get_chrec_loop (chrec
)))
854 tree left
= reset_evolution_in_loop (loop_num
, CHREC_LEFT (chrec
),
856 tree right
= reset_evolution_in_loop (loop_num
, CHREC_RIGHT (chrec
),
858 return build_polynomial_chrec (CHREC_VARIABLE (chrec
), left
, right
);
861 while (TREE_CODE (chrec
) == POLYNOMIAL_CHREC
862 && CHREC_VARIABLE (chrec
) == loop_num
)
863 chrec
= CHREC_LEFT (chrec
);
865 return build_polynomial_chrec (loop_num
, chrec
, new_evol
);
868 /* Merges two evolution functions that were found by following two
869 alternate paths of a conditional expression. */
872 chrec_merge (tree chrec1
,
875 if (chrec1
== chrec_dont_know
876 || chrec2
== chrec_dont_know
)
877 return chrec_dont_know
;
879 if (chrec1
== chrec_known
880 || chrec2
== chrec_known
)
883 if (chrec1
== chrec_not_analyzed_yet
)
885 if (chrec2
== chrec_not_analyzed_yet
)
888 if (eq_evolutions_p (chrec1
, chrec2
))
891 return chrec_dont_know
;
898 /* Helper function for is_multivariate_chrec. */
901 is_multivariate_chrec_rec (const_tree chrec
, unsigned int rec_var
)
903 if (chrec
== NULL_TREE
)
906 if (TREE_CODE (chrec
) == POLYNOMIAL_CHREC
)
908 if (CHREC_VARIABLE (chrec
) != rec_var
)
911 return (is_multivariate_chrec_rec (CHREC_LEFT (chrec
), rec_var
)
912 || is_multivariate_chrec_rec (CHREC_RIGHT (chrec
), rec_var
));
918 /* Determine whether the given chrec is multivariate or not. */
921 is_multivariate_chrec (const_tree chrec
)
923 if (chrec
== NULL_TREE
)
926 if (TREE_CODE (chrec
) == POLYNOMIAL_CHREC
)
927 return (is_multivariate_chrec_rec (CHREC_LEFT (chrec
),
928 CHREC_VARIABLE (chrec
))
929 || is_multivariate_chrec_rec (CHREC_RIGHT (chrec
),
930 CHREC_VARIABLE (chrec
)));
935 /* Determines whether the chrec contains symbolic names or not. */
938 chrec_contains_symbols (const_tree chrec
, hash_set
<const_tree
> &visited
)
942 if (chrec
== NULL_TREE
)
945 if (TREE_CODE (chrec
) == SSA_NAME
947 || TREE_CODE (chrec
) == POLY_INT_CST
948 || TREE_CODE (chrec
) == PARM_DECL
949 || TREE_CODE (chrec
) == FUNCTION_DECL
950 || TREE_CODE (chrec
) == LABEL_DECL
951 || TREE_CODE (chrec
) == RESULT_DECL
952 || TREE_CODE (chrec
) == FIELD_DECL
)
955 n
= TREE_OPERAND_LENGTH (chrec
);
956 for (i
= 0; i
< n
; i
++)
957 if (chrec_contains_symbols (TREE_OPERAND (chrec
, i
), visited
))
963 chrec_contains_symbols (const_tree chrec
)
965 hash_set
<const_tree
> visited
;
966 return chrec_contains_symbols (chrec
, visited
);
969 /* Determines whether the chrec contains undetermined coefficients. */
972 chrec_contains_undetermined (const_tree chrec
, hash_set
<const_tree
> &visited
)
976 if (chrec
== chrec_dont_know
)
979 if (chrec
== NULL_TREE
)
982 if (visited
.add (chrec
))
985 n
= TREE_OPERAND_LENGTH (chrec
);
986 for (i
= 0; i
< n
; i
++)
987 if (chrec_contains_undetermined (TREE_OPERAND (chrec
, i
), visited
))
993 chrec_contains_undetermined (const_tree chrec
)
995 hash_set
<const_tree
> visited
;
996 return chrec_contains_undetermined (chrec
, visited
);
999 /* Determines whether the tree EXPR contains chrecs, and increment
1000 SIZE if it is not a NULL pointer by an estimation of the depth of
1004 tree_contains_chrecs (const_tree expr
, int *size
, hash_set
<const_tree
> &visited
)
1008 if (expr
== NULL_TREE
)
1014 if (tree_is_chrec (expr
))
1017 n
= TREE_OPERAND_LENGTH (expr
);
1018 for (i
= 0; i
< n
; i
++)
1019 if (tree_contains_chrecs (TREE_OPERAND (expr
, i
), size
, visited
))
1025 tree_contains_chrecs (const_tree expr
, int *size
)
1027 hash_set
<const_tree
> visited
;
1028 return tree_contains_chrecs (expr
, size
, visited
);
1032 /* Recursive helper function. */
1035 evolution_function_is_invariant_rec_p (tree chrec
, int loopnum
)
1037 if (evolution_function_is_constant_p (chrec
))
1040 if (TREE_CODE (chrec
) == SSA_NAME
1042 || expr_invariant_in_loop_p (get_loop (cfun
, loopnum
), chrec
)))
1045 if (TREE_CODE (chrec
) == POLYNOMIAL_CHREC
)
1047 if (CHREC_VARIABLE (chrec
) == (unsigned) loopnum
1048 || flow_loop_nested_p (get_loop (cfun
, loopnum
),
1049 get_chrec_loop (chrec
))
1050 || !evolution_function_is_invariant_rec_p (CHREC_RIGHT (chrec
),
1052 || !evolution_function_is_invariant_rec_p (CHREC_LEFT (chrec
),
1058 switch (TREE_OPERAND_LENGTH (chrec
))
1061 if (!evolution_function_is_invariant_rec_p (TREE_OPERAND (chrec
, 1),
1067 if (!evolution_function_is_invariant_rec_p (TREE_OPERAND (chrec
, 0),
1079 /* Return true if CHREC is invariant in loop LOOPNUM, false otherwise. */
1082 evolution_function_is_invariant_p (tree chrec
, int loopnum
)
1084 return evolution_function_is_invariant_rec_p (chrec
, loopnum
);
1087 /* Determine whether the given tree is an affine multivariate
1091 evolution_function_is_affine_multivariate_p (const_tree chrec
, int loopnum
)
1093 if (chrec
== NULL_TREE
)
1096 switch (TREE_CODE (chrec
))
1098 case POLYNOMIAL_CHREC
:
1099 if (evolution_function_is_invariant_rec_p (CHREC_LEFT (chrec
), loopnum
))
1101 if (evolution_function_is_invariant_rec_p (CHREC_RIGHT (chrec
), loopnum
))
1105 if (TREE_CODE (CHREC_RIGHT (chrec
)) == POLYNOMIAL_CHREC
1106 && CHREC_VARIABLE (CHREC_RIGHT (chrec
))
1107 != CHREC_VARIABLE (chrec
)
1108 && evolution_function_is_affine_multivariate_p
1109 (CHREC_RIGHT (chrec
), loopnum
))
1117 if (evolution_function_is_invariant_rec_p (CHREC_RIGHT (chrec
), loopnum
)
1118 && TREE_CODE (CHREC_LEFT (chrec
)) == POLYNOMIAL_CHREC
1119 && CHREC_VARIABLE (CHREC_LEFT (chrec
)) != CHREC_VARIABLE (chrec
)
1120 && evolution_function_is_affine_multivariate_p
1121 (CHREC_LEFT (chrec
), loopnum
))
1132 /* Determine whether the given tree is a function in zero or one
1136 evolution_function_is_univariate_p (const_tree chrec
)
1138 if (chrec
== NULL_TREE
)
1141 switch (TREE_CODE (chrec
))
1143 case POLYNOMIAL_CHREC
:
1144 switch (TREE_CODE (CHREC_LEFT (chrec
)))
1146 case POLYNOMIAL_CHREC
:
1147 if (CHREC_VARIABLE (chrec
) != CHREC_VARIABLE (CHREC_LEFT (chrec
)))
1149 if (!evolution_function_is_univariate_p (CHREC_LEFT (chrec
)))
1154 if (tree_contains_chrecs (CHREC_LEFT (chrec
), NULL
))
1159 switch (TREE_CODE (CHREC_RIGHT (chrec
)))
1161 case POLYNOMIAL_CHREC
:
1162 if (CHREC_VARIABLE (chrec
) != CHREC_VARIABLE (CHREC_RIGHT (chrec
)))
1164 if (!evolution_function_is_univariate_p (CHREC_RIGHT (chrec
)))
1169 if (tree_contains_chrecs (CHREC_RIGHT (chrec
), NULL
))
1180 /* Returns the number of variables of CHREC. Example: the call
1181 nb_vars_in_chrec ({{0, +, 1}_5, +, 2}_6) returns 2. */
1184 nb_vars_in_chrec (tree chrec
)
1186 if (chrec
== NULL_TREE
)
1189 switch (TREE_CODE (chrec
))
1191 case POLYNOMIAL_CHREC
:
1192 return 1 + nb_vars_in_chrec
1193 (initial_condition_in_loop_num (chrec
, CHREC_VARIABLE (chrec
)));
1200 /* Converts BASE and STEP of affine scev to TYPE. LOOP is the loop whose iv
1201 the scev corresponds to. AT_STMT is the statement at that the scev is
1202 evaluated. USE_OVERFLOW_SEMANTICS is true if this function should assume
1203 that the rules for overflow of the given language apply (e.g., that signed
1204 arithmetics in C does not overflow) -- i.e., to use them to avoid
1205 unnecessary tests, but also to enforce that the result follows them.
1206 FROM is the source variable converted if it's not NULL. Returns true if
1207 the conversion succeeded, false otherwise. */
1210 convert_affine_scev (struct loop
*loop
, tree type
,
1211 tree
*base
, tree
*step
, gimple
*at_stmt
,
1212 bool use_overflow_semantics
, tree from
)
1214 tree ct
= TREE_TYPE (*step
);
1215 bool enforce_overflow_semantics
;
1216 bool must_check_src_overflow
, must_check_rslt_overflow
;
1217 tree new_base
, new_step
;
1218 tree step_type
= POINTER_TYPE_P (type
) ? sizetype
: type
;
1221 (TYPE) (BASE + STEP * i) = (TYPE) BASE + (TYPE -- sign extend) STEP * i,
1222 but we must check some assumptions.
1224 1) If [BASE, +, STEP] wraps, the equation is not valid when precision
1225 of CT is smaller than the precision of TYPE. For example, when we
1226 cast unsigned char [254, +, 1] to unsigned, the values on left side
1227 are 254, 255, 0, 1, ..., but those on the right side are
1228 254, 255, 256, 257, ...
1229 2) In case that we must also preserve the fact that signed ivs do not
1230 overflow, we must additionally check that the new iv does not wrap.
1231 For example, unsigned char [125, +, 1] casted to signed char could
1232 become a wrapping variable with values 125, 126, 127, -128, -127, ...,
1233 which would confuse optimizers that assume that this does not
1235 must_check_src_overflow
= TYPE_PRECISION (ct
) < TYPE_PRECISION (type
);
1237 enforce_overflow_semantics
= (use_overflow_semantics
1238 && nowrap_type_p (type
));
1239 if (enforce_overflow_semantics
)
1241 /* We can avoid checking whether the result overflows in the following
1244 -- must_check_src_overflow is true, and the range of TYPE is superset
1245 of the range of CT -- i.e., in all cases except if CT signed and
1247 -- both CT and TYPE have the same precision and signedness, and we
1248 verify instead that the source does not overflow (this may be
1249 easier than verifying it for the result, as we may use the
1250 information about the semantics of overflow in CT). */
1251 if (must_check_src_overflow
)
1253 if (TYPE_UNSIGNED (type
) && !TYPE_UNSIGNED (ct
))
1254 must_check_rslt_overflow
= true;
1256 must_check_rslt_overflow
= false;
1258 else if (TYPE_UNSIGNED (ct
) == TYPE_UNSIGNED (type
)
1259 && TYPE_PRECISION (ct
) == TYPE_PRECISION (type
))
1261 must_check_rslt_overflow
= false;
1262 must_check_src_overflow
= true;
1265 must_check_rslt_overflow
= true;
1268 must_check_rslt_overflow
= false;
1270 if (must_check_src_overflow
1271 && scev_probably_wraps_p (from
, *base
, *step
, at_stmt
, loop
,
1272 use_overflow_semantics
))
1275 new_base
= chrec_convert (type
, *base
, at_stmt
, use_overflow_semantics
);
1276 /* The step must be sign extended, regardless of the signedness
1277 of CT and TYPE. This only needs to be handled specially when
1278 CT is unsigned -- to avoid e.g. unsigned char [100, +, 255]
1279 (with values 100, 99, 98, ...) from becoming signed or unsigned
1280 [100, +, 255] with values 100, 355, ...; the sign-extension is
1281 performed by default when CT is signed. */
1283 if (TYPE_PRECISION (step_type
) > TYPE_PRECISION (ct
) && TYPE_UNSIGNED (ct
))
1285 tree signed_ct
= build_nonstandard_integer_type (TYPE_PRECISION (ct
), 0);
1286 new_step
= chrec_convert (signed_ct
, new_step
, at_stmt
,
1287 use_overflow_semantics
);
1289 new_step
= chrec_convert (step_type
, new_step
, at_stmt
,
1290 use_overflow_semantics
);
1292 if (automatically_generated_chrec_p (new_base
)
1293 || automatically_generated_chrec_p (new_step
))
1296 if (must_check_rslt_overflow
1297 /* Note that in this case we cannot use the fact that signed variables
1298 do not overflow, as this is what we are verifying for the new iv. */
1299 && scev_probably_wraps_p (NULL_TREE
, new_base
, new_step
,
1300 at_stmt
, loop
, false))
1309 /* Convert CHREC for the right hand side of a CHREC.
1310 The increment for a pointer type is always sizetype. */
1313 chrec_convert_rhs (tree type
, tree chrec
, gimple
*at_stmt
)
1315 if (POINTER_TYPE_P (type
))
1318 return chrec_convert (type
, chrec
, at_stmt
);
1321 /* Convert CHREC to TYPE. When the analyzer knows the context in
1322 which the CHREC is built, it sets AT_STMT to the statement that
1323 contains the definition of the analyzed variable, otherwise the
1324 conversion is less accurate: the information is used for
1325 determining a more accurate estimation of the number of iterations.
1326 By default AT_STMT could be safely set to NULL_TREE.
1328 USE_OVERFLOW_SEMANTICS is true if this function should assume that
1329 the rules for overflow of the given language apply (e.g., that signed
1330 arithmetics in C does not overflow) -- i.e., to use them to avoid
1331 unnecessary tests, but also to enforce that the result follows them.
1333 FROM is the source variable converted if it's not NULL. */
1336 chrec_convert_1 (tree type
, tree chrec
, gimple
*at_stmt
,
1337 bool use_overflow_semantics
, tree from
)
1343 if (automatically_generated_chrec_p (chrec
))
1346 ct
= chrec_type (chrec
);
1347 if (useless_type_conversion_p (type
, ct
))
1350 if (!evolution_function_is_affine_p (chrec
))
1353 loop
= get_chrec_loop (chrec
);
1354 base
= CHREC_LEFT (chrec
);
1355 step
= CHREC_RIGHT (chrec
);
1357 if (convert_affine_scev (loop
, type
, &base
, &step
, at_stmt
,
1358 use_overflow_semantics
, from
))
1359 return build_polynomial_chrec (loop
->num
, base
, step
);
1361 /* If we cannot propagate the cast inside the chrec, just keep the cast. */
1363 /* Fold will not canonicalize (long)(i - 1) to (long)i - 1 because that
1364 may be more expensive. We do want to perform this optimization here
1365 though for canonicalization reasons. */
1366 if (use_overflow_semantics
1367 && (TREE_CODE (chrec
) == PLUS_EXPR
1368 || TREE_CODE (chrec
) == MINUS_EXPR
)
1369 && TREE_CODE (type
) == INTEGER_TYPE
1370 && TREE_CODE (ct
) == INTEGER_TYPE
1371 && TYPE_PRECISION (type
) > TYPE_PRECISION (ct
)
1372 && TYPE_OVERFLOW_UNDEFINED (ct
))
1373 res
= fold_build2 (TREE_CODE (chrec
), type
,
1374 fold_convert (type
, TREE_OPERAND (chrec
, 0)),
1375 fold_convert (type
, TREE_OPERAND (chrec
, 1)));
1376 /* Similar perform the trick that (signed char)((int)x + 2) can be
1377 narrowed to (signed char)((unsigned char)x + 2). */
1378 else if (use_overflow_semantics
1379 && TREE_CODE (chrec
) == POLYNOMIAL_CHREC
1380 && TREE_CODE (ct
) == INTEGER_TYPE
1381 && TREE_CODE (type
) == INTEGER_TYPE
1382 && TYPE_OVERFLOW_UNDEFINED (type
)
1383 && TYPE_PRECISION (type
) < TYPE_PRECISION (ct
))
1385 tree utype
= unsigned_type_for (type
);
1386 res
= build_polynomial_chrec (CHREC_VARIABLE (chrec
),
1387 fold_convert (utype
,
1388 CHREC_LEFT (chrec
)),
1389 fold_convert (utype
,
1390 CHREC_RIGHT (chrec
)));
1391 res
= chrec_convert_1 (type
, res
, at_stmt
, use_overflow_semantics
, from
);
1394 res
= fold_convert (type
, chrec
);
1396 /* Don't propagate overflows. */
1397 if (CONSTANT_CLASS_P (res
))
1398 TREE_OVERFLOW (res
) = 0;
1400 /* But reject constants that don't fit in their type after conversion.
1401 This can happen if TYPE_MIN_VALUE or TYPE_MAX_VALUE are not the
1402 natural values associated with TYPE_PRECISION and TYPE_UNSIGNED,
1403 and can cause problems later when computing niters of loops. Note
1404 that we don't do the check before converting because we don't want
1405 to reject conversions of negative chrecs to unsigned types. */
1406 if (TREE_CODE (res
) == INTEGER_CST
1407 && TREE_CODE (type
) == INTEGER_TYPE
1408 && !int_fits_type_p (res
, type
))
1409 res
= chrec_dont_know
;
1414 /* Convert CHREC to TYPE. When the analyzer knows the context in
1415 which the CHREC is built, it sets AT_STMT to the statement that
1416 contains the definition of the analyzed variable, otherwise the
1417 conversion is less accurate: the information is used for
1418 determining a more accurate estimation of the number of iterations.
1419 By default AT_STMT could be safely set to NULL_TREE.
1421 The following rule is always true: TREE_TYPE (chrec) ==
1422 TREE_TYPE (CHREC_LEFT (chrec)) == TREE_TYPE (CHREC_RIGHT (chrec)).
1423 An example of what could happen when adding two chrecs and the type
1424 of the CHREC_RIGHT is different than CHREC_LEFT is:
1426 {(uint) 0, +, (uchar) 10} +
1427 {(uint) 0, +, (uchar) 250}
1429 that would produce a wrong result if CHREC_RIGHT is not (uint):
1431 {(uint) 0, +, (uchar) 4}
1435 {(uint) 0, +, (uint) 260}
1437 USE_OVERFLOW_SEMANTICS is true if this function should assume that
1438 the rules for overflow of the given language apply (e.g., that signed
1439 arithmetics in C does not overflow) -- i.e., to use them to avoid
1440 unnecessary tests, but also to enforce that the result follows them.
1442 FROM is the source variable converted if it's not NULL. */
1445 chrec_convert (tree type
, tree chrec
, gimple
*at_stmt
,
1446 bool use_overflow_semantics
, tree from
)
1448 return chrec_convert_1 (type
, chrec
, at_stmt
, use_overflow_semantics
, from
);
1451 /* Convert CHREC to TYPE, without regard to signed overflows. Returns the new
1452 chrec if something else than what chrec_convert would do happens, NULL_TREE
1453 otherwise. This function set TRUE to variable pointed by FOLD_CONVERSIONS
1454 if the result chrec may overflow. */
1457 chrec_convert_aggressive (tree type
, tree chrec
, bool *fold_conversions
)
1459 tree inner_type
, left
, right
, lc
, rc
, rtype
;
1461 gcc_assert (fold_conversions
!= NULL
);
1463 if (automatically_generated_chrec_p (chrec
)
1464 || TREE_CODE (chrec
) != POLYNOMIAL_CHREC
)
1467 inner_type
= TREE_TYPE (chrec
);
1468 if (TYPE_PRECISION (type
) > TYPE_PRECISION (inner_type
))
1471 if (useless_type_conversion_p (type
, inner_type
))
1474 if (!*fold_conversions
&& evolution_function_is_affine_p (chrec
))
1479 loop
= get_chrec_loop (chrec
);
1480 base
= CHREC_LEFT (chrec
);
1481 step
= CHREC_RIGHT (chrec
);
1482 if (convert_affine_scev (loop
, type
, &base
, &step
, NULL
, true))
1483 return build_polynomial_chrec (loop
->num
, base
, step
);
1485 rtype
= POINTER_TYPE_P (type
) ? sizetype
: type
;
1487 left
= CHREC_LEFT (chrec
);
1488 right
= CHREC_RIGHT (chrec
);
1489 lc
= chrec_convert_aggressive (type
, left
, fold_conversions
);
1491 lc
= chrec_convert (type
, left
, NULL
);
1492 rc
= chrec_convert_aggressive (rtype
, right
, fold_conversions
);
1494 rc
= chrec_convert (rtype
, right
, NULL
);
1496 *fold_conversions
= true;
1498 return build_polynomial_chrec (CHREC_VARIABLE (chrec
), lc
, rc
);
1501 /* Returns true when CHREC0 == CHREC1. */
1504 eq_evolutions_p (const_tree chrec0
, const_tree chrec1
)
1506 if (chrec0
== NULL_TREE
1507 || chrec1
== NULL_TREE
1508 || TREE_CODE (chrec0
) != TREE_CODE (chrec1
))
1511 if (chrec0
== chrec1
)
1514 if (! types_compatible_p (TREE_TYPE (chrec0
), TREE_TYPE (chrec1
)))
1517 switch (TREE_CODE (chrec0
))
1519 case POLYNOMIAL_CHREC
:
1520 return (CHREC_VARIABLE (chrec0
) == CHREC_VARIABLE (chrec1
)
1521 && eq_evolutions_p (CHREC_LEFT (chrec0
), CHREC_LEFT (chrec1
))
1522 && eq_evolutions_p (CHREC_RIGHT (chrec0
), CHREC_RIGHT (chrec1
)));
1527 case POINTER_PLUS_EXPR
:
1528 return eq_evolutions_p (TREE_OPERAND (chrec0
, 0),
1529 TREE_OPERAND (chrec1
, 0))
1530 && eq_evolutions_p (TREE_OPERAND (chrec0
, 1),
1531 TREE_OPERAND (chrec1
, 1));
1534 return eq_evolutions_p (TREE_OPERAND (chrec0
, 0),
1535 TREE_OPERAND (chrec1
, 0));
1538 return operand_equal_p (chrec0
, chrec1
, 0);
1542 /* Returns EV_GROWS if CHREC grows (assuming that it does not overflow),
1543 EV_DECREASES if it decreases, and EV_UNKNOWN if we cannot determine
1544 which of these cases happens. */
1547 scev_direction (const_tree chrec
)
1551 if (!evolution_function_is_affine_p (chrec
))
1552 return EV_DIR_UNKNOWN
;
1554 step
= CHREC_RIGHT (chrec
);
1555 if (TREE_CODE (step
) != INTEGER_CST
)
1556 return EV_DIR_UNKNOWN
;
1558 if (tree_int_cst_sign_bit (step
))
1559 return EV_DIR_DECREASES
;
1561 return EV_DIR_GROWS
;
1564 /* Iterates over all the components of SCEV, and calls CBCK. */
1567 for_each_scev_op (tree
*scev
, bool (*cbck
) (tree
*, void *), void *data
)
1569 switch (TREE_CODE_LENGTH (TREE_CODE (*scev
)))
1572 for_each_scev_op (&TREE_OPERAND (*scev
, 2), cbck
, data
);
1576 for_each_scev_op (&TREE_OPERAND (*scev
, 1), cbck
, data
);
1580 for_each_scev_op (&TREE_OPERAND (*scev
, 0), cbck
, data
);
1589 /* Returns true when the operation can be part of a linear
1593 operator_is_linear (tree scev
)
1595 switch (TREE_CODE (scev
))
1598 case POLYNOMIAL_CHREC
:
1600 case POINTER_PLUS_EXPR
:
1605 case NON_LVALUE_EXPR
:
1615 /* Return true when SCEV is a linear expression. Linear expressions
1616 can contain additions, substractions and multiplications.
1617 Multiplications are restricted to constant scaling: "cst * x". */
1620 scev_is_linear_expression (tree scev
)
1622 if (evolution_function_is_constant_p (scev
))
1626 || !operator_is_linear (scev
))
1629 if (TREE_CODE (scev
) == MULT_EXPR
)
1630 return !(tree_contains_chrecs (TREE_OPERAND (scev
, 0), NULL
)
1631 && tree_contains_chrecs (TREE_OPERAND (scev
, 1), NULL
));
1633 if (TREE_CODE (scev
) == POLYNOMIAL_CHREC
1634 && !evolution_function_is_affine_multivariate_p (scev
, CHREC_VARIABLE (scev
)))
1637 switch (TREE_CODE_LENGTH (TREE_CODE (scev
)))
1640 return scev_is_linear_expression (TREE_OPERAND (scev
, 0))
1641 && scev_is_linear_expression (TREE_OPERAND (scev
, 1))
1642 && scev_is_linear_expression (TREE_OPERAND (scev
, 2));
1645 return scev_is_linear_expression (TREE_OPERAND (scev
, 0))
1646 && scev_is_linear_expression (TREE_OPERAND (scev
, 1));
1649 return scev_is_linear_expression (TREE_OPERAND (scev
, 0));
1659 /* Determines whether the expression CHREC contains only interger consts
1660 in the right parts. */
1663 evolution_function_right_is_integer_cst (const_tree chrec
)
1665 if (chrec
== NULL_TREE
)
1668 switch (TREE_CODE (chrec
))
1673 case POLYNOMIAL_CHREC
:
1674 return TREE_CODE (CHREC_RIGHT (chrec
)) == INTEGER_CST
1675 && (TREE_CODE (CHREC_LEFT (chrec
)) != POLYNOMIAL_CHREC
1676 || evolution_function_right_is_integer_cst (CHREC_LEFT (chrec
)));
1679 return evolution_function_right_is_integer_cst (TREE_OPERAND (chrec
, 0));