2 * Copyright 2013 Ecole Normale Superieure
4 * Use of this software is governed by the MIT license
6 * Written by Sven Verdoolaege,
7 * Ecole Normale Superieure, 45 rue d'Ulm, 75230 Paris, France
11 #include <isl_ctx_private.h>
12 #include <isl_val_private.h>
17 #include <isl_list_templ.c>
19 /* Allocate an isl_val object with indeterminate value.
21 __isl_give isl_val
*isl_val_alloc(isl_ctx
*ctx
)
25 v
= isl_alloc_type(ctx
, struct isl_val
);
38 /* Return a reference to an isl_val representing zero.
40 __isl_give isl_val
*isl_val_zero(isl_ctx
*ctx
)
42 return isl_val_int_from_si(ctx
, 0);
45 /* Return a reference to an isl_val representing one.
47 __isl_give isl_val
*isl_val_one(isl_ctx
*ctx
)
49 return isl_val_int_from_si(ctx
, 1);
52 /* Return a reference to an isl_val representing negative one.
54 __isl_give isl_val
*isl_val_negone(isl_ctx
*ctx
)
56 return isl_val_int_from_si(ctx
, -1);
59 /* Return a reference to an isl_val representing NaN.
61 __isl_give isl_val
*isl_val_nan(isl_ctx
*ctx
)
65 v
= isl_val_alloc(ctx
);
69 isl_int_set_si(v
->n
, 0);
70 isl_int_set_si(v
->d
, 0);
75 /* Change "v" into a NaN.
77 __isl_give isl_val
*isl_val_set_nan(__isl_take isl_val
*v
)
81 if (isl_val_is_nan(v
))
87 isl_int_set_si(v
->n
, 0);
88 isl_int_set_si(v
->d
, 0);
93 /* Return a reference to an isl_val representing +infinity.
95 __isl_give isl_val
*isl_val_infty(isl_ctx
*ctx
)
99 v
= isl_val_alloc(ctx
);
103 isl_int_set_si(v
->n
, 1);
104 isl_int_set_si(v
->d
, 0);
109 /* Return a reference to an isl_val representing -infinity.
111 __isl_give isl_val
*isl_val_neginfty(isl_ctx
*ctx
)
115 v
= isl_val_alloc(ctx
);
119 isl_int_set_si(v
->n
, -1);
120 isl_int_set_si(v
->d
, 0);
125 /* Return a reference to an isl_val representing the integer "i".
127 __isl_give isl_val
*isl_val_int_from_si(isl_ctx
*ctx
, long i
)
131 v
= isl_val_alloc(ctx
);
135 isl_int_set_si(v
->n
, i
);
136 isl_int_set_si(v
->d
, 1);
141 /* Change the value of "v" to be equal to the integer "i".
143 __isl_give isl_val
*isl_val_set_si(__isl_take isl_val
*v
, long i
)
147 if (isl_val_is_int(v
) && isl_int_cmp_si(v
->n
, i
) == 0)
153 isl_int_set_si(v
->n
, i
);
154 isl_int_set_si(v
->d
, 1);
159 /* Change the value of "v" to be equal to zero.
161 __isl_give isl_val
*isl_val_set_zero(__isl_take isl_val
*v
)
163 return isl_val_set_si(v
, 0);
166 /* Return a reference to an isl_val representing the unsigned integer "u".
168 __isl_give isl_val
*isl_val_int_from_ui(isl_ctx
*ctx
, unsigned long u
)
172 v
= isl_val_alloc(ctx
);
176 isl_int_set_ui(v
->n
, u
);
177 isl_int_set_si(v
->d
, 1);
182 /* Return a reference to an isl_val representing the integer "n".
184 __isl_give isl_val
*isl_val_int_from_isl_int(isl_ctx
*ctx
, isl_int n
)
188 v
= isl_val_alloc(ctx
);
192 isl_int_set(v
->n
, n
);
193 isl_int_set_si(v
->d
, 1);
198 /* Return a reference to an isl_val representing the rational value "n"/"d".
199 * Normalizing the isl_val (if needed) is left to the caller.
201 __isl_give isl_val
*isl_val_rat_from_isl_int(isl_ctx
*ctx
,
202 isl_int n
, isl_int d
)
206 v
= isl_val_alloc(ctx
);
210 isl_int_set(v
->n
, n
);
211 isl_int_set(v
->d
, d
);
216 /* Return a new reference to "v".
218 __isl_give isl_val
*isl_val_copy(__isl_keep isl_val
*v
)
227 /* Return a fresh copy of "val".
229 __isl_give isl_val
*isl_val_dup(__isl_keep isl_val
*val
)
236 dup
= isl_val_alloc(isl_val_get_ctx(val
));
240 isl_int_set(dup
->n
, val
->n
);
241 isl_int_set(dup
->d
, val
->d
);
246 /* Return an isl_val that is equal to "val" and that has only
247 * a single reference.
249 __isl_give isl_val
*isl_val_cow(__isl_take isl_val
*val
)
257 return isl_val_dup(val
);
260 /* Free "v" and return NULL.
262 __isl_null isl_val
*isl_val_free(__isl_take isl_val
*v
)
270 isl_ctx_deref(v
->ctx
);
277 /* Extract the numerator of a rational value "v" as an integer.
279 * If "v" is not a rational value, then the result is undefined.
281 long isl_val_get_num_si(__isl_keep isl_val
*v
)
285 if (!isl_val_is_rat(v
))
286 isl_die(isl_val_get_ctx(v
), isl_error_invalid
,
287 "expecting rational value", return 0);
288 if (!isl_int_fits_slong(v
->n
))
289 isl_die(isl_val_get_ctx(v
), isl_error_invalid
,
290 "numerator too large", return 0);
291 return isl_int_get_si(v
->n
);
294 /* Extract the numerator of a rational value "v" as an isl_int.
296 * If "v" is not a rational value, then the result is undefined.
298 int isl_val_get_num_isl_int(__isl_keep isl_val
*v
, isl_int
*n
)
302 if (!isl_val_is_rat(v
))
303 isl_die(isl_val_get_ctx(v
), isl_error_invalid
,
304 "expecting rational value", return -1);
305 isl_int_set(*n
, v
->n
);
309 /* Extract the denominator of a rational value "v" as an integer.
311 * If "v" is not a rational value, then the result is undefined.
313 long isl_val_get_den_si(__isl_keep isl_val
*v
)
317 if (!isl_val_is_rat(v
))
318 isl_die(isl_val_get_ctx(v
), isl_error_invalid
,
319 "expecting rational value", return 0);
320 if (!isl_int_fits_slong(v
->d
))
321 isl_die(isl_val_get_ctx(v
), isl_error_invalid
,
322 "denominator too large", return 0);
323 return isl_int_get_si(v
->d
);
326 /* Return an approximation of "v" as a double.
328 double isl_val_get_d(__isl_keep isl_val
*v
)
332 if (!isl_val_is_rat(v
))
333 isl_die(isl_val_get_ctx(v
), isl_error_invalid
,
334 "expecting rational value", return 0);
335 return isl_int_get_d(v
->n
) / isl_int_get_d(v
->d
);
338 /* Return the isl_ctx to which "val" belongs.
340 isl_ctx
*isl_val_get_ctx(__isl_keep isl_val
*val
)
342 return val
? val
->ctx
: NULL
;
347 * In particular, make sure that the denominator of a rational value
348 * is positive and the numerator and denominator do not have any
351 * This function should not be called by an external user
352 * since it will only be given normalized values.
354 __isl_give isl_val
*isl_val_normalize(__isl_take isl_val
*v
)
360 if (isl_val_is_int(v
))
362 if (!isl_val_is_rat(v
))
364 if (isl_int_is_neg(v
->d
)) {
365 isl_int_neg(v
->d
, v
->d
);
366 isl_int_neg(v
->n
, v
->n
);
368 ctx
= isl_val_get_ctx(v
);
369 isl_int_gcd(ctx
->normalize_gcd
, v
->n
, v
->d
);
370 if (isl_int_is_one(ctx
->normalize_gcd
))
372 isl_int_divexact(v
->n
, v
->n
, ctx
->normalize_gcd
);
373 isl_int_divexact(v
->d
, v
->d
, ctx
->normalize_gcd
);
377 /* Return the opposite of "v".
379 __isl_give isl_val
*isl_val_neg(__isl_take isl_val
*v
)
383 if (isl_val_is_nan(v
))
385 if (isl_val_is_zero(v
))
391 isl_int_neg(v
->n
, v
->n
);
396 /* Return the inverse of "v".
398 __isl_give isl_val
*isl_val_inv(__isl_take isl_val
*v
)
402 if (isl_val_is_nan(v
))
404 if (isl_val_is_zero(v
)) {
405 isl_ctx
*ctx
= isl_val_get_ctx(v
);
407 return isl_val_nan(ctx
);
409 if (isl_val_is_infty(v
) || isl_val_is_neginfty(v
)) {
410 isl_ctx
*ctx
= isl_val_get_ctx(v
);
412 return isl_val_zero(ctx
);
418 isl_int_swap(v
->n
, v
->d
);
420 return isl_val_normalize(v
);
423 /* Return the absolute value of "v".
425 __isl_give isl_val
*isl_val_abs(__isl_take isl_val
*v
)
429 if (isl_val_is_nan(v
))
431 if (isl_val_is_nonneg(v
))
433 return isl_val_neg(v
);
436 /* Return the "floor" (greatest integer part) of "v".
437 * That is, return the result of rounding towards -infinity.
439 __isl_give isl_val
*isl_val_floor(__isl_take isl_val
*v
)
443 if (isl_val_is_int(v
))
445 if (!isl_val_is_rat(v
))
451 isl_int_fdiv_q(v
->n
, v
->n
, v
->d
);
452 isl_int_set_si(v
->d
, 1);
457 /* Return the "ceiling" of "v".
458 * That is, return the result of rounding towards +infinity.
460 __isl_give isl_val
*isl_val_ceil(__isl_take isl_val
*v
)
464 if (isl_val_is_int(v
))
466 if (!isl_val_is_rat(v
))
472 isl_int_cdiv_q(v
->n
, v
->n
, v
->d
);
473 isl_int_set_si(v
->d
, 1);
479 * That is, return the result of rounding towards zero.
481 __isl_give isl_val
*isl_val_trunc(__isl_take isl_val
*v
)
485 if (isl_val_is_int(v
))
487 if (!isl_val_is_rat(v
))
493 isl_int_tdiv_q(v
->n
, v
->n
, v
->d
);
494 isl_int_set_si(v
->d
, 1);
499 /* Return 2^v, where v is an integer (that is not too large).
501 __isl_give isl_val
*isl_val_2exp(__isl_take isl_val
*v
)
509 if (!isl_val_is_int(v
))
510 isl_die(isl_val_get_ctx(v
), isl_error_invalid
,
511 "can only compute integer powers",
512 return isl_val_free(v
));
513 neg
= isl_val_is_neg(v
);
515 isl_int_neg(v
->n
, v
->n
);
516 if (!isl_int_fits_ulong(v
->n
))
517 isl_die(isl_val_get_ctx(v
), isl_error_invalid
,
518 "exponent too large", return isl_val_free(v
));
519 exp
= isl_int_get_ui(v
->n
);
521 isl_int_mul_2exp(v
->d
, v
->d
, exp
);
522 isl_int_set_si(v
->n
, 1);
524 isl_int_mul_2exp(v
->n
, v
->d
, exp
);
530 /* Return the minimum of "v1" and "v2".
532 __isl_give isl_val
*isl_val_min(__isl_take isl_val
*v1
, __isl_take isl_val
*v2
)
537 if (isl_val_is_nan(v1
)) {
541 if (isl_val_is_nan(v2
)) {
545 if (isl_val_le(v1
, v2
)) {
558 /* Return the maximum of "v1" and "v2".
560 __isl_give isl_val
*isl_val_max(__isl_take isl_val
*v1
, __isl_take isl_val
*v2
)
565 if (isl_val_is_nan(v1
)) {
569 if (isl_val_is_nan(v2
)) {
573 if (isl_val_ge(v1
, v2
)) {
586 /* Return the sum of "v1" and "v2".
588 __isl_give isl_val
*isl_val_add(__isl_take isl_val
*v1
, __isl_take isl_val
*v2
)
592 if (isl_val_is_nan(v1
)) {
596 if (isl_val_is_nan(v2
)) {
600 if ((isl_val_is_infty(v1
) && isl_val_is_neginfty(v2
)) ||
601 (isl_val_is_neginfty(v1
) && isl_val_is_infty(v2
))) {
603 return isl_val_set_nan(v1
);
605 if (isl_val_is_infty(v1
) || isl_val_is_neginfty(v1
)) {
609 if (isl_val_is_infty(v2
) || isl_val_is_neginfty(v2
)) {
613 if (isl_val_is_zero(v1
)) {
617 if (isl_val_is_zero(v2
)) {
622 v1
= isl_val_cow(v1
);
625 if (isl_val_is_int(v1
) && isl_val_is_int(v2
))
626 isl_int_add(v1
->n
, v1
->n
, v2
->n
);
628 if (isl_int_eq(v1
->d
, v2
->d
))
629 isl_int_add(v1
->n
, v1
->n
, v2
->n
);
631 isl_int_mul(v1
->n
, v1
->n
, v2
->d
);
632 isl_int_addmul(v1
->n
, v2
->n
, v1
->d
);
633 isl_int_mul(v1
->d
, v1
->d
, v2
->d
);
635 v1
= isl_val_normalize(v1
);
645 /* Return the sum of "v1" and "v2".
647 __isl_give isl_val
*isl_val_add_ui(__isl_take isl_val
*v1
, unsigned long v2
)
651 if (!isl_val_is_rat(v1
))
655 v1
= isl_val_cow(v1
);
659 isl_int_addmul_ui(v1
->n
, v1
->d
, v2
);
664 /* Subtract "v2" from "v1".
666 __isl_give isl_val
*isl_val_sub(__isl_take isl_val
*v1
, __isl_take isl_val
*v2
)
670 if (isl_val_is_nan(v1
)) {
674 if (isl_val_is_nan(v2
)) {
678 if ((isl_val_is_infty(v1
) && isl_val_is_infty(v2
)) ||
679 (isl_val_is_neginfty(v1
) && isl_val_is_neginfty(v2
))) {
681 return isl_val_set_nan(v1
);
683 if (isl_val_is_infty(v1
) || isl_val_is_neginfty(v1
)) {
687 if (isl_val_is_infty(v2
) || isl_val_is_neginfty(v2
)) {
689 return isl_val_neg(v2
);
691 if (isl_val_is_zero(v2
)) {
695 if (isl_val_is_zero(v1
)) {
697 return isl_val_neg(v2
);
700 v1
= isl_val_cow(v1
);
703 if (isl_val_is_int(v1
) && isl_val_is_int(v2
))
704 isl_int_sub(v1
->n
, v1
->n
, v2
->n
);
706 if (isl_int_eq(v1
->d
, v2
->d
))
707 isl_int_sub(v1
->n
, v1
->n
, v2
->n
);
709 isl_int_mul(v1
->n
, v1
->n
, v2
->d
);
710 isl_int_submul(v1
->n
, v2
->n
, v1
->d
);
711 isl_int_mul(v1
->d
, v1
->d
, v2
->d
);
713 v1
= isl_val_normalize(v1
);
723 /* Subtract "v2" from "v1".
725 __isl_give isl_val
*isl_val_sub_ui(__isl_take isl_val
*v1
, unsigned long v2
)
729 if (!isl_val_is_rat(v1
))
733 v1
= isl_val_cow(v1
);
737 isl_int_submul_ui(v1
->n
, v1
->d
, v2
);
742 /* Return the product of "v1" and "v2".
744 __isl_give isl_val
*isl_val_mul(__isl_take isl_val
*v1
, __isl_take isl_val
*v2
)
748 if (isl_val_is_nan(v1
)) {
752 if (isl_val_is_nan(v2
)) {
756 if ((!isl_val_is_rat(v1
) && isl_val_is_zero(v2
)) ||
757 (isl_val_is_zero(v1
) && !isl_val_is_rat(v2
))) {
759 return isl_val_set_nan(v1
);
761 if (isl_val_is_zero(v1
)) {
765 if (isl_val_is_zero(v2
)) {
769 if (isl_val_is_infty(v1
) || isl_val_is_neginfty(v1
)) {
770 if (isl_val_is_neg(v2
))
771 v1
= isl_val_neg(v1
);
775 if (isl_val_is_infty(v2
) || isl_val_is_neginfty(v2
)) {
776 if (isl_val_is_neg(v1
))
777 v2
= isl_val_neg(v2
);
782 v1
= isl_val_cow(v1
);
785 if (isl_val_is_int(v1
) && isl_val_is_int(v2
))
786 isl_int_mul(v1
->n
, v1
->n
, v2
->n
);
788 isl_int_mul(v1
->n
, v1
->n
, v2
->n
);
789 isl_int_mul(v1
->d
, v1
->d
, v2
->d
);
790 v1
= isl_val_normalize(v1
);
800 /* Return the product of "v1" and "v2".
802 * This is a private copy of isl_val_mul for use in the generic
803 * isl_multi_*_scale_val instantiated for isl_val.
805 __isl_give isl_val
*isl_val_scale_val(__isl_take isl_val
*v1
,
806 __isl_take isl_val
*v2
)
808 return isl_val_mul(v1
, v2
);
811 /* Return the product of "v1" and "v2".
813 __isl_give isl_val
*isl_val_mul_ui(__isl_take isl_val
*v1
, unsigned long v2
)
817 if (isl_val_is_nan(v1
))
819 if (!isl_val_is_rat(v1
)) {
821 v1
= isl_val_set_nan(v1
);
826 v1
= isl_val_cow(v1
);
830 isl_int_mul_ui(v1
->n
, v1
->n
, v2
);
832 return isl_val_normalize(v1
);
835 /* Divide "v1" by "v2".
837 __isl_give isl_val
*isl_val_div(__isl_take isl_val
*v1
, __isl_take isl_val
*v2
)
841 if (isl_val_is_nan(v1
)) {
845 if (isl_val_is_nan(v2
)) {
849 if (isl_val_is_zero(v2
) ||
850 (!isl_val_is_rat(v1
) && !isl_val_is_rat(v2
))) {
852 return isl_val_set_nan(v1
);
854 if (isl_val_is_zero(v1
)) {
858 if (isl_val_is_infty(v1
) || isl_val_is_neginfty(v1
)) {
859 if (isl_val_is_neg(v2
))
860 v1
= isl_val_neg(v1
);
864 if (isl_val_is_infty(v2
) || isl_val_is_neginfty(v2
)) {
866 return isl_val_set_zero(v1
);
869 v1
= isl_val_cow(v1
);
872 if (isl_val_is_int(v2
)) {
873 isl_int_mul(v1
->d
, v1
->d
, v2
->n
);
874 v1
= isl_val_normalize(v1
);
876 isl_int_mul(v1
->d
, v1
->d
, v2
->n
);
877 isl_int_mul(v1
->n
, v1
->n
, v2
->d
);
878 v1
= isl_val_normalize(v1
);
888 /* Divide "v1" by "v2".
890 * This is a private copy of isl_val_div for use in the generic
891 * isl_multi_*_scale_down_val instantiated for isl_val.
893 __isl_give isl_val
*isl_val_scale_down_val(__isl_take isl_val
*v1
,
894 __isl_take isl_val
*v2
)
896 return isl_val_div(v1
, v2
);
899 /* Given two integer values "v1" and "v2", check if "v1" is divisible by "v2".
901 isl_bool
isl_val_is_divisible_by(__isl_keep isl_val
*v1
, __isl_keep isl_val
*v2
)
904 return isl_bool_error
;
906 if (!isl_val_is_int(v1
) || !isl_val_is_int(v2
))
907 isl_die(isl_val_get_ctx(v1
), isl_error_invalid
,
908 "expecting two integers", return isl_bool_error
);
910 return isl_int_is_divisible_by(v1
->n
, v2
->n
);
913 /* Given two integer values "v1" and "v2", return the residue of "v1"
916 __isl_give isl_val
*isl_val_mod(__isl_take isl_val
*v1
, __isl_take isl_val
*v2
)
920 if (!isl_val_is_int(v1
) || !isl_val_is_int(v2
))
921 isl_die(isl_val_get_ctx(v1
), isl_error_invalid
,
922 "expecting two integers", goto error
);
923 if (isl_val_is_nonneg(v1
) && isl_val_lt(v1
, v2
)) {
927 v1
= isl_val_cow(v1
);
930 isl_int_fdiv_r(v1
->n
, v1
->n
, v2
->n
);
939 /* Given two integer values "v1" and "v2", return the residue of "v1"
942 * This is a private copy of isl_val_mod for use in the generic
943 * isl_multi_*_mod_multi_val instantiated for isl_val.
945 __isl_give isl_val
*isl_val_mod_val(__isl_take isl_val
*v1
,
946 __isl_take isl_val
*v2
)
948 return isl_val_mod(v1
, v2
);
951 /* Given two integer values, return their greatest common divisor.
953 __isl_give isl_val
*isl_val_gcd(__isl_take isl_val
*v1
, __isl_take isl_val
*v2
)
957 if (!isl_val_is_int(v1
) || !isl_val_is_int(v2
))
958 isl_die(isl_val_get_ctx(v1
), isl_error_invalid
,
959 "expecting two integers", goto error
);
960 if (isl_val_eq(v1
, v2
)) {
964 if (isl_val_is_one(v1
)) {
968 if (isl_val_is_one(v2
)) {
972 v1
= isl_val_cow(v1
);
975 isl_int_gcd(v1
->n
, v1
->n
, v2
->n
);
984 /* Compute x, y and g such that g = gcd(a,b) and a*x+b*y = g.
986 static void isl_int_gcdext(isl_int g
, isl_int x
, isl_int y
,
987 isl_int a
, isl_int b
)
990 isl_int a_copy
, b_copy
;
992 isl_int_init(a_copy
);
993 isl_int_init(b_copy
);
996 isl_int_set(a_copy
, a
);
997 isl_int_set(b_copy
, b
);
998 isl_int_abs(g
, a_copy
);
999 isl_int_abs(d
, b_copy
);
1000 isl_int_set_si(x
, 1);
1001 isl_int_set_si(y
, 0);
1002 while (isl_int_is_pos(d
)) {
1003 isl_int_fdiv_q(tmp
, g
, d
);
1004 isl_int_submul(x
, tmp
, y
);
1005 isl_int_submul(g
, tmp
, d
);
1009 if (isl_int_is_zero(a_copy
))
1010 isl_int_set_si(x
, 0);
1011 else if (isl_int_is_neg(a_copy
))
1013 if (isl_int_is_zero(b_copy
))
1014 isl_int_set_si(y
, 0);
1016 isl_int_mul(tmp
, a_copy
, x
);
1017 isl_int_sub(tmp
, g
, tmp
);
1018 isl_int_divexact(y
, tmp
, b_copy
);
1022 isl_int_clear(a_copy
);
1023 isl_int_clear(b_copy
);
1026 /* Given two integer values v1 and v2, return their greatest common divisor g,
1027 * as well as two integers x and y such that x * v1 + y * v2 = g.
1029 __isl_give isl_val
*isl_val_gcdext(__isl_take isl_val
*v1
,
1030 __isl_take isl_val
*v2
, __isl_give isl_val
**x
, __isl_give isl_val
**y
)
1033 isl_val
*a
= NULL
, *b
= NULL
;
1036 return isl_val_gcd(v1
, v2
);
1041 ctx
= isl_val_get_ctx(v1
);
1042 if (!isl_val_is_int(v1
) || !isl_val_is_int(v2
))
1043 isl_die(ctx
, isl_error_invalid
,
1044 "expecting two integers", goto error
);
1046 v1
= isl_val_cow(v1
);
1047 a
= isl_val_alloc(ctx
);
1048 b
= isl_val_alloc(ctx
);
1049 if (!v1
|| !a
|| !b
)
1051 isl_int_gcdext(v1
->n
, a
->n
, b
->n
, v1
->n
, v2
->n
);
1053 isl_int_set_si(a
->d
, 1);
1058 isl_int_set_si(b
->d
, 1);
1076 /* Does "v" represent an integer value?
1078 isl_bool
isl_val_is_int(__isl_keep isl_val
*v
)
1081 return isl_bool_error
;
1083 return isl_int_is_one(v
->d
);
1086 /* Does "v" represent a rational value?
1088 isl_bool
isl_val_is_rat(__isl_keep isl_val
*v
)
1091 return isl_bool_error
;
1093 return !isl_int_is_zero(v
->d
);
1096 /* Does "v" represent NaN?
1098 isl_bool
isl_val_is_nan(__isl_keep isl_val
*v
)
1101 return isl_bool_error
;
1103 return isl_int_is_zero(v
->n
) && isl_int_is_zero(v
->d
);
1106 /* Does "v" represent +infinity?
1108 isl_bool
isl_val_is_infty(__isl_keep isl_val
*v
)
1111 return isl_bool_error
;
1113 return isl_int_is_pos(v
->n
) && isl_int_is_zero(v
->d
);
1116 /* Does "v" represent -infinity?
1118 isl_bool
isl_val_is_neginfty(__isl_keep isl_val
*v
)
1121 return isl_bool_error
;
1123 return isl_int_is_neg(v
->n
) && isl_int_is_zero(v
->d
);
1126 /* Does "v" represent the integer zero?
1128 isl_bool
isl_val_is_zero(__isl_keep isl_val
*v
)
1131 return isl_bool_error
;
1133 return isl_int_is_zero(v
->n
) && !isl_int_is_zero(v
->d
);
1136 /* Does "v" represent the integer one?
1138 isl_bool
isl_val_is_one(__isl_keep isl_val
*v
)
1141 return isl_bool_error
;
1143 return isl_int_eq(v
->n
, v
->d
);
1146 /* Does "v" represent the integer negative one?
1148 isl_bool
isl_val_is_negone(__isl_keep isl_val
*v
)
1151 return isl_bool_error
;
1153 return isl_int_is_neg(v
->n
) && isl_int_abs_eq(v
->n
, v
->d
);
1156 /* Is "v" (strictly) positive?
1158 isl_bool
isl_val_is_pos(__isl_keep isl_val
*v
)
1161 return isl_bool_error
;
1163 return isl_int_is_pos(v
->n
);
1166 /* Is "v" (strictly) negative?
1168 isl_bool
isl_val_is_neg(__isl_keep isl_val
*v
)
1171 return isl_bool_error
;
1173 return isl_int_is_neg(v
->n
);
1176 /* Is "v" non-negative?
1178 isl_bool
isl_val_is_nonneg(__isl_keep isl_val
*v
)
1181 return isl_bool_error
;
1183 if (isl_val_is_nan(v
))
1184 return isl_bool_false
;
1186 return isl_int_is_nonneg(v
->n
);
1189 /* Is "v" non-positive?
1191 isl_bool
isl_val_is_nonpos(__isl_keep isl_val
*v
)
1194 return isl_bool_error
;
1196 if (isl_val_is_nan(v
))
1197 return isl_bool_false
;
1199 return isl_int_is_nonpos(v
->n
);
1202 /* Return the sign of "v".
1204 * The sign of NaN is undefined.
1206 int isl_val_sgn(__isl_keep isl_val
*v
)
1210 if (isl_val_is_zero(v
))
1212 if (isl_val_is_pos(v
))
1217 /* Is "v1" (strictly) less than "v2"?
1219 isl_bool
isl_val_lt(__isl_keep isl_val
*v1
, __isl_keep isl_val
*v2
)
1225 return isl_bool_error
;
1226 if (isl_val_is_int(v1
) && isl_val_is_int(v2
))
1227 return isl_int_lt(v1
->n
, v2
->n
);
1228 if (isl_val_is_nan(v1
) || isl_val_is_nan(v2
))
1229 return isl_bool_false
;
1230 if (isl_val_eq(v1
, v2
))
1231 return isl_bool_false
;
1232 if (isl_val_is_infty(v2
))
1233 return isl_bool_true
;
1234 if (isl_val_is_infty(v1
))
1235 return isl_bool_false
;
1236 if (isl_val_is_neginfty(v1
))
1237 return isl_bool_true
;
1238 if (isl_val_is_neginfty(v2
))
1239 return isl_bool_false
;
1242 isl_int_mul(t
, v1
->n
, v2
->d
);
1243 isl_int_submul(t
, v2
->n
, v1
->d
);
1244 lt
= isl_int_is_neg(t
);
1250 /* Is "v1" (strictly) greater than "v2"?
1252 isl_bool
isl_val_gt(__isl_keep isl_val
*v1
, __isl_keep isl_val
*v2
)
1254 return isl_val_lt(v2
, v1
);
1257 /* Is "v1" less than or equal to "v2"?
1259 isl_bool
isl_val_le(__isl_keep isl_val
*v1
, __isl_keep isl_val
*v2
)
1265 return isl_bool_error
;
1266 if (isl_val_is_int(v1
) && isl_val_is_int(v2
))
1267 return isl_int_le(v1
->n
, v2
->n
);
1268 if (isl_val_is_nan(v1
) || isl_val_is_nan(v2
))
1269 return isl_bool_false
;
1270 if (isl_val_eq(v1
, v2
))
1271 return isl_bool_true
;
1272 if (isl_val_is_infty(v2
))
1273 return isl_bool_true
;
1274 if (isl_val_is_infty(v1
))
1275 return isl_bool_false
;
1276 if (isl_val_is_neginfty(v1
))
1277 return isl_bool_true
;
1278 if (isl_val_is_neginfty(v2
))
1279 return isl_bool_false
;
1282 isl_int_mul(t
, v1
->n
, v2
->d
);
1283 isl_int_submul(t
, v2
->n
, v1
->d
);
1284 le
= isl_int_is_nonpos(t
);
1290 /* Is "v1" greater than or equal to "v2"?
1292 isl_bool
isl_val_ge(__isl_keep isl_val
*v1
, __isl_keep isl_val
*v2
)
1294 return isl_val_le(v2
, v1
);
1297 /* How does "v" compare to "i"?
1299 * Return 1 if v is greater, -1 if v is smaller and 0 if v is equal to i.
1301 * If v is NaN (or NULL), then the result is undefined.
1303 int isl_val_cmp_si(__isl_keep isl_val
*v
, long i
)
1310 if (isl_val_is_int(v
))
1311 return isl_int_cmp_si(v
->n
, i
);
1312 if (isl_val_is_nan(v
))
1314 if (isl_val_is_infty(v
))
1316 if (isl_val_is_neginfty(v
))
1320 isl_int_mul_si(t
, v
->d
, i
);
1321 isl_int_sub(t
, v
->n
, t
);
1322 cmp
= isl_int_sgn(t
);
1328 /* Is "v1" equal to "v2"?
1330 isl_bool
isl_val_eq(__isl_keep isl_val
*v1
, __isl_keep isl_val
*v2
)
1333 return isl_bool_error
;
1334 if (isl_val_is_nan(v1
) || isl_val_is_nan(v2
))
1335 return isl_bool_false
;
1337 return isl_int_eq(v1
->n
, v2
->n
) && isl_int_eq(v1
->d
, v2
->d
);
1340 /* Is "v1" equal to "v2" in absolute value?
1342 isl_bool
isl_val_abs_eq(__isl_keep isl_val
*v1
, __isl_keep isl_val
*v2
)
1345 return isl_bool_error
;
1346 if (isl_val_is_nan(v1
) || isl_val_is_nan(v2
))
1347 return isl_bool_false
;
1349 return isl_int_abs_eq(v1
->n
, v2
->n
) && isl_int_eq(v1
->d
, v2
->d
);
1352 /* Is "v1" different from "v2"?
1354 isl_bool
isl_val_ne(__isl_keep isl_val
*v1
, __isl_keep isl_val
*v2
)
1357 return isl_bool_error
;
1358 if (isl_val_is_nan(v1
) || isl_val_is_nan(v2
))
1359 return isl_bool_false
;
1361 return isl_int_ne(v1
->n
, v2
->n
) || isl_int_ne(v1
->d
, v2
->d
);
1364 /* Print a textual representation of "v" onto "p".
1366 __isl_give isl_printer
*isl_printer_print_val(__isl_take isl_printer
*p
,
1367 __isl_keep isl_val
*v
)
1372 return isl_printer_free(p
);
1374 neg
= isl_int_is_neg(v
->n
);
1376 p
= isl_printer_print_str(p
, "-");
1377 isl_int_neg(v
->n
, v
->n
);
1379 if (isl_int_is_zero(v
->d
)) {
1380 int sgn
= isl_int_sgn(v
->n
);
1381 p
= isl_printer_print_str(p
, sgn
< 0 ? "-infty" :
1382 sgn
== 0 ? "NaN" : "infty");
1384 p
= isl_printer_print_isl_int(p
, v
->n
);
1386 isl_int_neg(v
->n
, v
->n
);
1387 if (!isl_int_is_zero(v
->d
) && !isl_int_is_one(v
->d
)) {
1388 p
= isl_printer_print_str(p
, "/");
1389 p
= isl_printer_print_isl_int(p
, v
->d
);
1395 /* Is "val1" (obviously) equal to "val2"?
1397 * This is a private copy of isl_val_eq for use in the generic
1398 * isl_multi_*_plain_is_equal instantiated for isl_val.
1400 int isl_val_plain_is_equal(__isl_keep isl_val
*val1
, __isl_keep isl_val
*val2
)
1402 return isl_val_eq(val1
, val2
);
1405 /* Does "v" have any non-zero coefficients
1406 * for any dimension in the given range?
1408 * This function is only meant to be used in the generic isl_multi_*
1409 * functions which have to deal with base objects that have an associated
1410 * space. Since an isl_val does not have any coefficients, this function
1413 int isl_val_involves_dims(__isl_keep isl_val
*v
, enum isl_dim_type type
,
1414 unsigned first
, unsigned n
)
1422 /* Insert "n" dimensions of type "type" at position "first".
1424 * This function is only meant to be used in the generic isl_multi_*
1425 * functions which have to deal with base objects that have an associated
1426 * space. Since an isl_val does not have an associated space, this function
1427 * does not do anything.
1429 __isl_give isl_val
*isl_val_insert_dims(__isl_take isl_val
*v
,
1430 enum isl_dim_type type
, unsigned first
, unsigned n
)
1435 /* Drop the the "n" first dimensions of type "type" at position "first".
1437 * This function is only meant to be used in the generic isl_multi_*
1438 * functions which have to deal with base objects that have an associated
1439 * space. Since an isl_val does not have an associated space, this function
1440 * does not do anything.
1442 __isl_give isl_val
*isl_val_drop_dims(__isl_take isl_val
*v
,
1443 enum isl_dim_type type
, unsigned first
, unsigned n
)
1448 /* Change the name of the dimension of type "type" at position "pos" to "s".
1450 * This function is only meant to be used in the generic isl_multi_*
1451 * functions which have to deal with base objects that have an associated
1452 * space. Since an isl_val does not have an associated space, this function
1453 * does not do anything.
1455 __isl_give isl_val
*isl_val_set_dim_name(__isl_take isl_val
*v
,
1456 enum isl_dim_type type
, unsigned pos
, const char *s
)
1461 /* Return the space of "v".
1463 * This function is only meant to be used in the generic isl_multi_*
1464 * functions which have to deal with base objects that have an associated
1465 * space. The conditions surrounding the call to this function make sure
1466 * that this function will never actually get called. We return a valid
1467 * space anyway, just in case.
1469 __isl_give isl_space
*isl_val_get_space(__isl_keep isl_val
*v
)
1474 return isl_space_params_alloc(isl_val_get_ctx(v
), 0);
1477 /* Reset the domain space of "v" to "space".
1479 * This function is only meant to be used in the generic isl_multi_*
1480 * functions which have to deal with base objects that have an associated
1481 * space. Since an isl_val does not have an associated space, this function
1482 * does not do anything, apart from error handling and cleaning up memory.
1484 __isl_give isl_val
*isl_val_reset_domain_space(__isl_take isl_val
*v
,
1485 __isl_take isl_space
*space
)
1488 return isl_val_free(v
);
1489 isl_space_free(space
);
1493 /* Align the parameters of "v" to those of "space".
1495 * This function is only meant to be used in the generic isl_multi_*
1496 * functions which have to deal with base objects that have an associated
1497 * space. Since an isl_val does not have an associated space, this function
1498 * does not do anything, apart from error handling and cleaning up memory.
1499 * Note that the conditions surrounding the call to this function make sure
1500 * that this function will never actually get called.
1502 __isl_give isl_val
*isl_val_align_params(__isl_take isl_val
*v
,
1503 __isl_take isl_space
*space
)
1506 return isl_val_free(v
);
1507 isl_space_free(space
);
1511 /* Reorder the dimensions of the domain of "v" according
1512 * to the given reordering.
1514 * This function is only meant to be used in the generic isl_multi_*
1515 * functions which have to deal with base objects that have an associated
1516 * space. Since an isl_val does not have an associated space, this function
1517 * does not do anything, apart from error handling and cleaning up memory.
1519 __isl_give isl_val
*isl_val_realign_domain(__isl_take isl_val
*v
,
1520 __isl_take isl_reordering
*r
)
1523 return isl_val_free(v
);
1524 isl_reordering_free(r
);
1528 /* Return an isl_val that is zero on "ls".
1530 * This function is only meant to be used in the generic isl_multi_*
1531 * functions which have to deal with base objects that have an associated
1532 * space. Since an isl_val does not have an associated space, this function
1533 * simply returns a zero isl_val in the same context as "ls".
1535 __isl_give isl_val
*isl_val_zero_on_domain(__isl_take isl_local_space
*ls
)
1541 ctx
= isl_local_space_get_ctx(ls
);
1542 isl_local_space_free(ls
);
1543 return isl_val_zero(ctx
);
1546 /* Do the parameters of "v" match those of "space"?
1548 * This function is only meant to be used in the generic isl_multi_*
1549 * functions which have to deal with base objects that have an associated
1550 * space. Since an isl_val does not have an associated space, this function
1551 * simply returns 1, except if "v" or "space" are NULL.
1553 int isl_val_matching_params(__isl_keep isl_val
*v
, __isl_keep isl_space
*space
)
1560 /* Check that the domain space of "v" matches "space".
1562 * Return 0 on success and -1 on error.
1564 * This function is only meant to be used in the generic isl_multi_*
1565 * functions which have to deal with base objects that have an associated
1566 * space. Since an isl_val does not have an associated space, this function
1567 * simply returns 0, except if "v" or "space" are NULL.
1569 int isl_val_check_match_domain_space(__isl_keep isl_val
*v
,
1570 __isl_keep isl_space
*space
)
1582 #define NO_FROM_BASE
1583 #define NO_MOVE_DIMS
1584 #include <isl_multi_templ.c>
1586 /* Apply "fn" to each of the elements of "mv" with as second argument "v".
1588 static __isl_give isl_multi_val
*isl_multi_val_fn_val(
1589 __isl_take isl_multi_val
*mv
,
1590 __isl_give isl_val
*(*fn
)(__isl_take isl_val
*v1
,
1591 __isl_take isl_val
*v2
),
1592 __isl_take isl_val
*v
)
1596 mv
= isl_multi_val_cow(mv
);
1600 for (i
= 0; i
< mv
->n
; ++i
) {
1601 mv
->p
[i
] = fn(mv
->p
[i
], isl_val_copy(v
));
1610 isl_multi_val_free(mv
);
1614 /* Add "v" to each of the elements of "mv".
1616 __isl_give isl_multi_val
*isl_multi_val_add_val(__isl_take isl_multi_val
*mv
,
1617 __isl_take isl_val
*v
)
1620 return isl_multi_val_free(mv
);
1621 if (isl_val_is_zero(v
)) {
1625 return isl_multi_val_fn_val(mv
, &isl_val_add
, v
);
1628 /* Reduce the elements of "mv" modulo "v".
1630 __isl_give isl_multi_val
*isl_multi_val_mod_val(__isl_take isl_multi_val
*mv
,
1631 __isl_take isl_val
*v
)
1633 return isl_multi_val_fn_val(mv
, &isl_val_mod
, v
);