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 /* Extract the denominator of a rational value "v" as an isl_val.
328 * If "v" is not a rational value, then the result is undefined.
330 __isl_give isl_val
*isl_val_get_den_val(__isl_keep isl_val
*v
)
334 if (!isl_val_is_rat(v
))
335 isl_die(isl_val_get_ctx(v
), isl_error_invalid
,
336 "expecting rational value", return NULL
);
337 return isl_val_int_from_isl_int(isl_val_get_ctx(v
), v
->d
);
340 /* Return an approximation of "v" as a double.
342 double isl_val_get_d(__isl_keep isl_val
*v
)
346 if (!isl_val_is_rat(v
))
347 isl_die(isl_val_get_ctx(v
), isl_error_invalid
,
348 "expecting rational value", return 0);
349 return isl_int_get_d(v
->n
) / isl_int_get_d(v
->d
);
352 /* Return the isl_ctx to which "val" belongs.
354 isl_ctx
*isl_val_get_ctx(__isl_keep isl_val
*val
)
356 return val
? val
->ctx
: NULL
;
361 * In particular, make sure that the denominator of a rational value
362 * is positive and the numerator and denominator do not have any
365 * This function should not be called by an external user
366 * since it will only be given normalized values.
368 __isl_give isl_val
*isl_val_normalize(__isl_take isl_val
*v
)
374 if (isl_val_is_int(v
))
376 if (!isl_val_is_rat(v
))
378 if (isl_int_is_neg(v
->d
)) {
379 isl_int_neg(v
->d
, v
->d
);
380 isl_int_neg(v
->n
, v
->n
);
382 ctx
= isl_val_get_ctx(v
);
383 isl_int_gcd(ctx
->normalize_gcd
, v
->n
, v
->d
);
384 if (isl_int_is_one(ctx
->normalize_gcd
))
386 isl_int_divexact(v
->n
, v
->n
, ctx
->normalize_gcd
);
387 isl_int_divexact(v
->d
, v
->d
, ctx
->normalize_gcd
);
391 /* Return the opposite of "v".
393 __isl_give isl_val
*isl_val_neg(__isl_take isl_val
*v
)
397 if (isl_val_is_nan(v
))
399 if (isl_val_is_zero(v
))
405 isl_int_neg(v
->n
, v
->n
);
410 /* Return the inverse of "v".
412 __isl_give isl_val
*isl_val_inv(__isl_take isl_val
*v
)
416 if (isl_val_is_nan(v
))
418 if (isl_val_is_zero(v
)) {
419 isl_ctx
*ctx
= isl_val_get_ctx(v
);
421 return isl_val_nan(ctx
);
423 if (isl_val_is_infty(v
) || isl_val_is_neginfty(v
)) {
424 isl_ctx
*ctx
= isl_val_get_ctx(v
);
426 return isl_val_zero(ctx
);
432 isl_int_swap(v
->n
, v
->d
);
434 return isl_val_normalize(v
);
437 /* Return the absolute value of "v".
439 __isl_give isl_val
*isl_val_abs(__isl_take isl_val
*v
)
443 if (isl_val_is_nan(v
))
445 if (isl_val_is_nonneg(v
))
447 return isl_val_neg(v
);
450 /* Return the "floor" (greatest integer part) of "v".
451 * That is, return the result of rounding towards -infinity.
453 __isl_give isl_val
*isl_val_floor(__isl_take isl_val
*v
)
457 if (isl_val_is_int(v
))
459 if (!isl_val_is_rat(v
))
465 isl_int_fdiv_q(v
->n
, v
->n
, v
->d
);
466 isl_int_set_si(v
->d
, 1);
471 /* Return the "ceiling" of "v".
472 * That is, return the result of rounding towards +infinity.
474 __isl_give isl_val
*isl_val_ceil(__isl_take isl_val
*v
)
478 if (isl_val_is_int(v
))
480 if (!isl_val_is_rat(v
))
486 isl_int_cdiv_q(v
->n
, v
->n
, v
->d
);
487 isl_int_set_si(v
->d
, 1);
493 * That is, return the result of rounding towards zero.
495 __isl_give isl_val
*isl_val_trunc(__isl_take isl_val
*v
)
499 if (isl_val_is_int(v
))
501 if (!isl_val_is_rat(v
))
507 isl_int_tdiv_q(v
->n
, v
->n
, v
->d
);
508 isl_int_set_si(v
->d
, 1);
513 /* Return 2^v, where v is an integer (that is not too large).
515 __isl_give isl_val
*isl_val_2exp(__isl_take isl_val
*v
)
523 if (!isl_val_is_int(v
))
524 isl_die(isl_val_get_ctx(v
), isl_error_invalid
,
525 "can only compute integer powers",
526 return isl_val_free(v
));
527 neg
= isl_val_is_neg(v
);
529 isl_int_neg(v
->n
, v
->n
);
530 if (!isl_int_fits_ulong(v
->n
))
531 isl_die(isl_val_get_ctx(v
), isl_error_invalid
,
532 "exponent too large", return isl_val_free(v
));
533 exp
= isl_int_get_ui(v
->n
);
535 isl_int_mul_2exp(v
->d
, v
->d
, exp
);
536 isl_int_set_si(v
->n
, 1);
538 isl_int_mul_2exp(v
->n
, v
->d
, exp
);
544 /* Return the minimum of "v1" and "v2".
546 __isl_give isl_val
*isl_val_min(__isl_take isl_val
*v1
, __isl_take isl_val
*v2
)
551 if (isl_val_is_nan(v1
)) {
555 if (isl_val_is_nan(v2
)) {
559 if (isl_val_le(v1
, v2
)) {
572 /* Return the maximum of "v1" and "v2".
574 __isl_give isl_val
*isl_val_max(__isl_take isl_val
*v1
, __isl_take isl_val
*v2
)
579 if (isl_val_is_nan(v1
)) {
583 if (isl_val_is_nan(v2
)) {
587 if (isl_val_ge(v1
, v2
)) {
600 /* Return the sum of "v1" and "v2".
602 __isl_give isl_val
*isl_val_add(__isl_take isl_val
*v1
, __isl_take isl_val
*v2
)
606 if (isl_val_is_nan(v1
)) {
610 if (isl_val_is_nan(v2
)) {
614 if ((isl_val_is_infty(v1
) && isl_val_is_neginfty(v2
)) ||
615 (isl_val_is_neginfty(v1
) && isl_val_is_infty(v2
))) {
617 return isl_val_set_nan(v1
);
619 if (isl_val_is_infty(v1
) || isl_val_is_neginfty(v1
)) {
623 if (isl_val_is_infty(v2
) || isl_val_is_neginfty(v2
)) {
627 if (isl_val_is_zero(v1
)) {
631 if (isl_val_is_zero(v2
)) {
636 v1
= isl_val_cow(v1
);
639 if (isl_val_is_int(v1
) && isl_val_is_int(v2
))
640 isl_int_add(v1
->n
, v1
->n
, v2
->n
);
642 if (isl_int_eq(v1
->d
, v2
->d
))
643 isl_int_add(v1
->n
, v1
->n
, v2
->n
);
645 isl_int_mul(v1
->n
, v1
->n
, v2
->d
);
646 isl_int_addmul(v1
->n
, v2
->n
, v1
->d
);
647 isl_int_mul(v1
->d
, v1
->d
, v2
->d
);
649 v1
= isl_val_normalize(v1
);
659 /* Return the sum of "v1" and "v2".
661 __isl_give isl_val
*isl_val_add_ui(__isl_take isl_val
*v1
, unsigned long v2
)
665 if (!isl_val_is_rat(v1
))
669 v1
= isl_val_cow(v1
);
673 isl_int_addmul_ui(v1
->n
, v1
->d
, v2
);
678 /* Subtract "v2" from "v1".
680 __isl_give isl_val
*isl_val_sub(__isl_take isl_val
*v1
, __isl_take isl_val
*v2
)
684 if (isl_val_is_nan(v1
)) {
688 if (isl_val_is_nan(v2
)) {
692 if ((isl_val_is_infty(v1
) && isl_val_is_infty(v2
)) ||
693 (isl_val_is_neginfty(v1
) && isl_val_is_neginfty(v2
))) {
695 return isl_val_set_nan(v1
);
697 if (isl_val_is_infty(v1
) || isl_val_is_neginfty(v1
)) {
701 if (isl_val_is_infty(v2
) || isl_val_is_neginfty(v2
)) {
703 return isl_val_neg(v2
);
705 if (isl_val_is_zero(v2
)) {
709 if (isl_val_is_zero(v1
)) {
711 return isl_val_neg(v2
);
714 v1
= isl_val_cow(v1
);
717 if (isl_val_is_int(v1
) && isl_val_is_int(v2
))
718 isl_int_sub(v1
->n
, v1
->n
, v2
->n
);
720 if (isl_int_eq(v1
->d
, v2
->d
))
721 isl_int_sub(v1
->n
, v1
->n
, v2
->n
);
723 isl_int_mul(v1
->n
, v1
->n
, v2
->d
);
724 isl_int_submul(v1
->n
, v2
->n
, v1
->d
);
725 isl_int_mul(v1
->d
, v1
->d
, v2
->d
);
727 v1
= isl_val_normalize(v1
);
737 /* Subtract "v2" from "v1".
739 __isl_give isl_val
*isl_val_sub_ui(__isl_take isl_val
*v1
, unsigned long v2
)
743 if (!isl_val_is_rat(v1
))
747 v1
= isl_val_cow(v1
);
751 isl_int_submul_ui(v1
->n
, v1
->d
, v2
);
756 /* Return the product of "v1" and "v2".
758 __isl_give isl_val
*isl_val_mul(__isl_take isl_val
*v1
, __isl_take isl_val
*v2
)
762 if (isl_val_is_nan(v1
)) {
766 if (isl_val_is_nan(v2
)) {
770 if ((!isl_val_is_rat(v1
) && isl_val_is_zero(v2
)) ||
771 (isl_val_is_zero(v1
) && !isl_val_is_rat(v2
))) {
773 return isl_val_set_nan(v1
);
775 if (isl_val_is_zero(v1
)) {
779 if (isl_val_is_zero(v2
)) {
783 if (isl_val_is_infty(v1
) || isl_val_is_neginfty(v1
)) {
784 if (isl_val_is_neg(v2
))
785 v1
= isl_val_neg(v1
);
789 if (isl_val_is_infty(v2
) || isl_val_is_neginfty(v2
)) {
790 if (isl_val_is_neg(v1
))
791 v2
= isl_val_neg(v2
);
796 v1
= isl_val_cow(v1
);
799 if (isl_val_is_int(v1
) && isl_val_is_int(v2
))
800 isl_int_mul(v1
->n
, v1
->n
, v2
->n
);
802 isl_int_mul(v1
->n
, v1
->n
, v2
->n
);
803 isl_int_mul(v1
->d
, v1
->d
, v2
->d
);
804 v1
= isl_val_normalize(v1
);
814 /* Return the product of "v1" and "v2".
816 * This is a private copy of isl_val_mul for use in the generic
817 * isl_multi_*_scale_val instantiated for isl_val.
819 __isl_give isl_val
*isl_val_scale_val(__isl_take isl_val
*v1
,
820 __isl_take isl_val
*v2
)
822 return isl_val_mul(v1
, v2
);
825 /* Return the product of "v1" and "v2".
827 __isl_give isl_val
*isl_val_mul_ui(__isl_take isl_val
*v1
, unsigned long v2
)
831 if (isl_val_is_nan(v1
))
833 if (!isl_val_is_rat(v1
)) {
835 v1
= isl_val_set_nan(v1
);
840 v1
= isl_val_cow(v1
);
844 isl_int_mul_ui(v1
->n
, v1
->n
, v2
);
846 return isl_val_normalize(v1
);
849 /* Divide "v1" by "v2".
851 __isl_give isl_val
*isl_val_div(__isl_take isl_val
*v1
, __isl_take isl_val
*v2
)
855 if (isl_val_is_nan(v1
)) {
859 if (isl_val_is_nan(v2
)) {
863 if (isl_val_is_zero(v2
) ||
864 (!isl_val_is_rat(v1
) && !isl_val_is_rat(v2
))) {
866 return isl_val_set_nan(v1
);
868 if (isl_val_is_zero(v1
)) {
872 if (isl_val_is_infty(v1
) || isl_val_is_neginfty(v1
)) {
873 if (isl_val_is_neg(v2
))
874 v1
= isl_val_neg(v1
);
878 if (isl_val_is_infty(v2
) || isl_val_is_neginfty(v2
)) {
880 return isl_val_set_zero(v1
);
883 v1
= isl_val_cow(v1
);
886 if (isl_val_is_int(v2
)) {
887 isl_int_mul(v1
->d
, v1
->d
, v2
->n
);
888 v1
= isl_val_normalize(v1
);
890 isl_int_mul(v1
->d
, v1
->d
, v2
->n
);
891 isl_int_mul(v1
->n
, v1
->n
, v2
->d
);
892 v1
= isl_val_normalize(v1
);
902 /* Divide "v1" by "v2".
904 * This is a private copy of isl_val_div for use in the generic
905 * isl_multi_*_scale_down_val instantiated for isl_val.
907 __isl_give isl_val
*isl_val_scale_down_val(__isl_take isl_val
*v1
,
908 __isl_take isl_val
*v2
)
910 return isl_val_div(v1
, v2
);
913 /* Given two integer values "v1" and "v2", check if "v1" is divisible by "v2".
915 isl_bool
isl_val_is_divisible_by(__isl_keep isl_val
*v1
, __isl_keep isl_val
*v2
)
918 return isl_bool_error
;
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", return isl_bool_error
);
924 return isl_int_is_divisible_by(v1
->n
, v2
->n
);
927 /* Given two integer values "v1" and "v2", return the residue of "v1"
930 __isl_give isl_val
*isl_val_mod(__isl_take isl_val
*v1
, __isl_take isl_val
*v2
)
934 if (!isl_val_is_int(v1
) || !isl_val_is_int(v2
))
935 isl_die(isl_val_get_ctx(v1
), isl_error_invalid
,
936 "expecting two integers", goto error
);
937 if (isl_val_is_nonneg(v1
) && isl_val_lt(v1
, v2
)) {
941 v1
= isl_val_cow(v1
);
944 isl_int_fdiv_r(v1
->n
, v1
->n
, v2
->n
);
953 /* Given two integer values "v1" and "v2", return the residue of "v1"
956 * This is a private copy of isl_val_mod for use in the generic
957 * isl_multi_*_mod_multi_val instantiated for isl_val.
959 __isl_give isl_val
*isl_val_mod_val(__isl_take isl_val
*v1
,
960 __isl_take isl_val
*v2
)
962 return isl_val_mod(v1
, v2
);
965 /* Given two integer values, return their greatest common divisor.
967 __isl_give isl_val
*isl_val_gcd(__isl_take isl_val
*v1
, __isl_take isl_val
*v2
)
971 if (!isl_val_is_int(v1
) || !isl_val_is_int(v2
))
972 isl_die(isl_val_get_ctx(v1
), isl_error_invalid
,
973 "expecting two integers", goto error
);
974 if (isl_val_eq(v1
, v2
)) {
978 if (isl_val_is_one(v1
)) {
982 if (isl_val_is_one(v2
)) {
986 v1
= isl_val_cow(v1
);
989 isl_int_gcd(v1
->n
, v1
->n
, v2
->n
);
998 /* Compute x, y and g such that g = gcd(a,b) and a*x+b*y = g.
1000 static void isl_int_gcdext(isl_int
*g
, isl_int
*x
, isl_int
*y
,
1001 isl_int a
, isl_int b
)
1004 isl_int a_copy
, b_copy
;
1006 isl_int_init(a_copy
);
1007 isl_int_init(b_copy
);
1010 isl_int_set(a_copy
, a
);
1011 isl_int_set(b_copy
, b
);
1012 isl_int_abs(*g
, a_copy
);
1013 isl_int_abs(d
, b_copy
);
1014 isl_int_set_si(*x
, 1);
1015 isl_int_set_si(*y
, 0);
1016 while (isl_int_is_pos(d
)) {
1017 isl_int_fdiv_q(tmp
, *g
, d
);
1018 isl_int_submul(*x
, tmp
, *y
);
1019 isl_int_submul(*g
, tmp
, d
);
1020 isl_int_swap(*g
, d
);
1021 isl_int_swap(*x
, *y
);
1023 if (isl_int_is_zero(a_copy
))
1024 isl_int_set_si(*x
, 0);
1025 else if (isl_int_is_neg(a_copy
))
1026 isl_int_neg(*x
, *x
);
1027 if (isl_int_is_zero(b_copy
))
1028 isl_int_set_si(*y
, 0);
1030 isl_int_mul(tmp
, a_copy
, *x
);
1031 isl_int_sub(tmp
, *g
, tmp
);
1032 isl_int_divexact(*y
, tmp
, b_copy
);
1036 isl_int_clear(a_copy
);
1037 isl_int_clear(b_copy
);
1040 /* Given two integer values v1 and v2, return their greatest common divisor g,
1041 * as well as two integers x and y such that x * v1 + y * v2 = g.
1043 __isl_give isl_val
*isl_val_gcdext(__isl_take isl_val
*v1
,
1044 __isl_take isl_val
*v2
, __isl_give isl_val
**x
, __isl_give isl_val
**y
)
1047 isl_val
*a
= NULL
, *b
= NULL
;
1050 return isl_val_gcd(v1
, v2
);
1055 ctx
= isl_val_get_ctx(v1
);
1056 if (!isl_val_is_int(v1
) || !isl_val_is_int(v2
))
1057 isl_die(ctx
, isl_error_invalid
,
1058 "expecting two integers", goto error
);
1060 v1
= isl_val_cow(v1
);
1061 a
= isl_val_alloc(ctx
);
1062 b
= isl_val_alloc(ctx
);
1063 if (!v1
|| !a
|| !b
)
1065 isl_int_gcdext(&v1
->n
, &a
->n
, &b
->n
, v1
->n
, v2
->n
);
1067 isl_int_set_si(a
->d
, 1);
1072 isl_int_set_si(b
->d
, 1);
1090 /* Does "v" represent an integer value?
1092 isl_bool
isl_val_is_int(__isl_keep isl_val
*v
)
1095 return isl_bool_error
;
1097 return isl_int_is_one(v
->d
);
1100 /* Does "v" represent a rational value?
1102 isl_bool
isl_val_is_rat(__isl_keep isl_val
*v
)
1105 return isl_bool_error
;
1107 return !isl_int_is_zero(v
->d
);
1110 /* Does "v" represent NaN?
1112 isl_bool
isl_val_is_nan(__isl_keep isl_val
*v
)
1115 return isl_bool_error
;
1117 return isl_int_is_zero(v
->n
) && isl_int_is_zero(v
->d
);
1120 /* Does "v" represent +infinity?
1122 isl_bool
isl_val_is_infty(__isl_keep isl_val
*v
)
1125 return isl_bool_error
;
1127 return isl_int_is_pos(v
->n
) && isl_int_is_zero(v
->d
);
1130 /* Does "v" represent -infinity?
1132 isl_bool
isl_val_is_neginfty(__isl_keep isl_val
*v
)
1135 return isl_bool_error
;
1137 return isl_int_is_neg(v
->n
) && isl_int_is_zero(v
->d
);
1140 /* Does "v" represent the integer zero?
1142 isl_bool
isl_val_is_zero(__isl_keep isl_val
*v
)
1145 return isl_bool_error
;
1147 return isl_int_is_zero(v
->n
) && !isl_int_is_zero(v
->d
);
1150 /* Does "v" represent the integer one?
1152 isl_bool
isl_val_is_one(__isl_keep isl_val
*v
)
1155 return isl_bool_error
;
1157 return isl_int_eq(v
->n
, v
->d
);
1160 /* Does "v" represent the integer negative one?
1162 isl_bool
isl_val_is_negone(__isl_keep isl_val
*v
)
1165 return isl_bool_error
;
1167 return isl_int_is_neg(v
->n
) && isl_int_abs_eq(v
->n
, v
->d
);
1170 /* Is "v" (strictly) positive?
1172 isl_bool
isl_val_is_pos(__isl_keep isl_val
*v
)
1175 return isl_bool_error
;
1177 return isl_int_is_pos(v
->n
);
1180 /* Is "v" (strictly) negative?
1182 isl_bool
isl_val_is_neg(__isl_keep isl_val
*v
)
1185 return isl_bool_error
;
1187 return isl_int_is_neg(v
->n
);
1190 /* Is "v" non-negative?
1192 isl_bool
isl_val_is_nonneg(__isl_keep isl_val
*v
)
1195 return isl_bool_error
;
1197 if (isl_val_is_nan(v
))
1198 return isl_bool_false
;
1200 return isl_int_is_nonneg(v
->n
);
1203 /* Is "v" non-positive?
1205 isl_bool
isl_val_is_nonpos(__isl_keep isl_val
*v
)
1208 return isl_bool_error
;
1210 if (isl_val_is_nan(v
))
1211 return isl_bool_false
;
1213 return isl_int_is_nonpos(v
->n
);
1216 /* Return the sign of "v".
1218 * The sign of NaN is undefined.
1220 int isl_val_sgn(__isl_keep isl_val
*v
)
1224 if (isl_val_is_zero(v
))
1226 if (isl_val_is_pos(v
))
1231 /* Is "v1" (strictly) less than "v2"?
1233 isl_bool
isl_val_lt(__isl_keep isl_val
*v1
, __isl_keep isl_val
*v2
)
1239 return isl_bool_error
;
1240 if (isl_val_is_int(v1
) && isl_val_is_int(v2
))
1241 return isl_int_lt(v1
->n
, v2
->n
);
1242 if (isl_val_is_nan(v1
) || isl_val_is_nan(v2
))
1243 return isl_bool_false
;
1244 if (isl_val_eq(v1
, v2
))
1245 return isl_bool_false
;
1246 if (isl_val_is_infty(v2
))
1247 return isl_bool_true
;
1248 if (isl_val_is_infty(v1
))
1249 return isl_bool_false
;
1250 if (isl_val_is_neginfty(v1
))
1251 return isl_bool_true
;
1252 if (isl_val_is_neginfty(v2
))
1253 return isl_bool_false
;
1256 isl_int_mul(t
, v1
->n
, v2
->d
);
1257 isl_int_submul(t
, v2
->n
, v1
->d
);
1258 lt
= isl_int_is_neg(t
);
1264 /* Is "v1" (strictly) greater than "v2"?
1266 isl_bool
isl_val_gt(__isl_keep isl_val
*v1
, __isl_keep isl_val
*v2
)
1268 return isl_val_lt(v2
, v1
);
1271 /* Is "v1" less than or equal to "v2"?
1273 isl_bool
isl_val_le(__isl_keep isl_val
*v1
, __isl_keep isl_val
*v2
)
1279 return isl_bool_error
;
1280 if (isl_val_is_int(v1
) && isl_val_is_int(v2
))
1281 return isl_int_le(v1
->n
, v2
->n
);
1282 if (isl_val_is_nan(v1
) || isl_val_is_nan(v2
))
1283 return isl_bool_false
;
1284 if (isl_val_eq(v1
, v2
))
1285 return isl_bool_true
;
1286 if (isl_val_is_infty(v2
))
1287 return isl_bool_true
;
1288 if (isl_val_is_infty(v1
))
1289 return isl_bool_false
;
1290 if (isl_val_is_neginfty(v1
))
1291 return isl_bool_true
;
1292 if (isl_val_is_neginfty(v2
))
1293 return isl_bool_false
;
1296 isl_int_mul(t
, v1
->n
, v2
->d
);
1297 isl_int_submul(t
, v2
->n
, v1
->d
);
1298 le
= isl_int_is_nonpos(t
);
1304 /* Is "v1" greater than or equal to "v2"?
1306 isl_bool
isl_val_ge(__isl_keep isl_val
*v1
, __isl_keep isl_val
*v2
)
1308 return isl_val_le(v2
, v1
);
1311 /* How does "v" compare to "i"?
1313 * Return 1 if v is greater, -1 if v is smaller and 0 if v is equal to i.
1315 * If v is NaN (or NULL), then the result is undefined.
1317 int isl_val_cmp_si(__isl_keep isl_val
*v
, long i
)
1324 if (isl_val_is_int(v
))
1325 return isl_int_cmp_si(v
->n
, i
);
1326 if (isl_val_is_nan(v
))
1328 if (isl_val_is_infty(v
))
1330 if (isl_val_is_neginfty(v
))
1334 isl_int_mul_si(t
, v
->d
, i
);
1335 isl_int_sub(t
, v
->n
, t
);
1336 cmp
= isl_int_sgn(t
);
1342 /* Is "v1" equal to "v2"?
1344 isl_bool
isl_val_eq(__isl_keep isl_val
*v1
, __isl_keep isl_val
*v2
)
1347 return isl_bool_error
;
1348 if (isl_val_is_nan(v1
) || isl_val_is_nan(v2
))
1349 return isl_bool_false
;
1351 return isl_int_eq(v1
->n
, v2
->n
) && isl_int_eq(v1
->d
, v2
->d
);
1354 /* Is "v1" equal to "v2" in absolute value?
1356 isl_bool
isl_val_abs_eq(__isl_keep isl_val
*v1
, __isl_keep isl_val
*v2
)
1359 return isl_bool_error
;
1360 if (isl_val_is_nan(v1
) || isl_val_is_nan(v2
))
1361 return isl_bool_false
;
1363 return isl_int_abs_eq(v1
->n
, v2
->n
) && isl_int_eq(v1
->d
, v2
->d
);
1366 /* Is "v1" different from "v2"?
1368 isl_bool
isl_val_ne(__isl_keep isl_val
*v1
, __isl_keep isl_val
*v2
)
1371 return isl_bool_error
;
1372 if (isl_val_is_nan(v1
) || isl_val_is_nan(v2
))
1373 return isl_bool_false
;
1375 return isl_int_ne(v1
->n
, v2
->n
) || isl_int_ne(v1
->d
, v2
->d
);
1378 /* Print a textual representation of "v" onto "p".
1380 __isl_give isl_printer
*isl_printer_print_val(__isl_take isl_printer
*p
,
1381 __isl_keep isl_val
*v
)
1386 return isl_printer_free(p
);
1388 neg
= isl_int_is_neg(v
->n
);
1390 p
= isl_printer_print_str(p
, "-");
1391 isl_int_neg(v
->n
, v
->n
);
1393 if (isl_int_is_zero(v
->d
)) {
1394 int sgn
= isl_int_sgn(v
->n
);
1395 p
= isl_printer_print_str(p
, sgn
< 0 ? "-infty" :
1396 sgn
== 0 ? "NaN" : "infty");
1398 p
= isl_printer_print_isl_int(p
, v
->n
);
1400 isl_int_neg(v
->n
, v
->n
);
1401 if (!isl_int_is_zero(v
->d
) && !isl_int_is_one(v
->d
)) {
1402 p
= isl_printer_print_str(p
, "/");
1403 p
= isl_printer_print_isl_int(p
, v
->d
);
1409 /* Is "val1" (obviously) equal to "val2"?
1411 * This is a private copy of isl_val_eq for use in the generic
1412 * isl_multi_*_plain_is_equal instantiated for isl_val.
1414 int isl_val_plain_is_equal(__isl_keep isl_val
*val1
, __isl_keep isl_val
*val2
)
1416 return isl_val_eq(val1
, val2
);
1419 /* Does "v" have any non-zero coefficients
1420 * for any dimension in the given range?
1422 * This function is only meant to be used in the generic isl_multi_*
1423 * functions which have to deal with base objects that have an associated
1424 * space. Since an isl_val does not have any coefficients, this function
1427 int isl_val_involves_dims(__isl_keep isl_val
*v
, enum isl_dim_type type
,
1428 unsigned first
, unsigned n
)
1436 /* Insert "n" dimensions of type "type" at position "first".
1438 * This function is only meant to be used in the generic isl_multi_*
1439 * functions which have to deal with base objects that have an associated
1440 * space. Since an isl_val does not have an associated space, this function
1441 * does not do anything.
1443 __isl_give isl_val
*isl_val_insert_dims(__isl_take isl_val
*v
,
1444 enum isl_dim_type type
, unsigned first
, unsigned n
)
1449 /* Drop the the "n" first dimensions of type "type" at position "first".
1451 * This function is only meant to be used in the generic isl_multi_*
1452 * functions which have to deal with base objects that have an associated
1453 * space. Since an isl_val does not have an associated space, this function
1454 * does not do anything.
1456 __isl_give isl_val
*isl_val_drop_dims(__isl_take isl_val
*v
,
1457 enum isl_dim_type type
, unsigned first
, unsigned n
)
1462 /* Change the name of the dimension of type "type" at position "pos" to "s".
1464 * This function is only meant to be used in the generic isl_multi_*
1465 * functions which have to deal with base objects that have an associated
1466 * space. Since an isl_val does not have an associated space, this function
1467 * does not do anything.
1469 __isl_give isl_val
*isl_val_set_dim_name(__isl_take isl_val
*v
,
1470 enum isl_dim_type type
, unsigned pos
, const char *s
)
1475 /* Return the space of "v".
1477 * This function is only meant to be used in the generic isl_multi_*
1478 * functions which have to deal with base objects that have an associated
1479 * space. The conditions surrounding the call to this function make sure
1480 * that this function will never actually get called. We return a valid
1481 * space anyway, just in case.
1483 __isl_give isl_space
*isl_val_get_space(__isl_keep isl_val
*v
)
1488 return isl_space_params_alloc(isl_val_get_ctx(v
), 0);
1491 /* Reset the domain space of "v" to "space".
1493 * This function is only meant to be used in the generic isl_multi_*
1494 * functions which have to deal with base objects that have an associated
1495 * space. Since an isl_val does not have an associated space, this function
1496 * does not do anything, apart from error handling and cleaning up memory.
1498 __isl_give isl_val
*isl_val_reset_domain_space(__isl_take isl_val
*v
,
1499 __isl_take isl_space
*space
)
1502 return isl_val_free(v
);
1503 isl_space_free(space
);
1507 /* Align the parameters of "v" to those of "space".
1509 * This function is only meant to be used in the generic isl_multi_*
1510 * functions which have to deal with base objects that have an associated
1511 * space. Since an isl_val does not have an associated space, this function
1512 * does not do anything, apart from error handling and cleaning up memory.
1513 * Note that the conditions surrounding the call to this function make sure
1514 * that this function will never actually get called.
1516 __isl_give isl_val
*isl_val_align_params(__isl_take isl_val
*v
,
1517 __isl_take isl_space
*space
)
1520 return isl_val_free(v
);
1521 isl_space_free(space
);
1525 /* Reorder the dimensions of the domain of "v" according
1526 * to the given reordering.
1528 * This function is only meant to be used in the generic isl_multi_*
1529 * functions which have to deal with base objects that have an associated
1530 * space. Since an isl_val does not have an associated space, this function
1531 * does not do anything, apart from error handling and cleaning up memory.
1533 __isl_give isl_val
*isl_val_realign_domain(__isl_take isl_val
*v
,
1534 __isl_take isl_reordering
*r
)
1537 return isl_val_free(v
);
1538 isl_reordering_free(r
);
1542 /* Return an isl_val that is zero on "ls".
1544 * This function is only meant to be used in the generic isl_multi_*
1545 * functions which have to deal with base objects that have an associated
1546 * space. Since an isl_val does not have an associated space, this function
1547 * simply returns a zero isl_val in the same context as "ls".
1549 __isl_give isl_val
*isl_val_zero_on_domain(__isl_take isl_local_space
*ls
)
1555 ctx
= isl_local_space_get_ctx(ls
);
1556 isl_local_space_free(ls
);
1557 return isl_val_zero(ctx
);
1560 /* Do the parameters of "v" match those of "space"?
1562 * This function is only meant to be used in the generic isl_multi_*
1563 * functions which have to deal with base objects that have an associated
1564 * space. Since an isl_val does not have an associated space, this function
1565 * simply returns 1, except if "v" or "space" are NULL.
1567 int isl_val_matching_params(__isl_keep isl_val
*v
, __isl_keep isl_space
*space
)
1574 /* Check that the domain space of "v" matches "space".
1576 * Return 0 on success and -1 on error.
1578 * This function is only meant to be used in the generic isl_multi_*
1579 * functions which have to deal with base objects that have an associated
1580 * space. Since an isl_val does not have an associated space, this function
1581 * simply returns 0, except if "v" or "space" are NULL.
1583 int isl_val_check_match_domain_space(__isl_keep isl_val
*v
,
1584 __isl_keep isl_space
*space
)
1596 #define NO_FROM_BASE
1597 #define NO_MOVE_DIMS
1598 #include <isl_multi_templ.c>
1600 /* Apply "fn" to each of the elements of "mv" with as second argument "v".
1602 static __isl_give isl_multi_val
*isl_multi_val_fn_val(
1603 __isl_take isl_multi_val
*mv
,
1604 __isl_give isl_val
*(*fn
)(__isl_take isl_val
*v1
,
1605 __isl_take isl_val
*v2
),
1606 __isl_take isl_val
*v
)
1610 mv
= isl_multi_val_cow(mv
);
1614 for (i
= 0; i
< mv
->n
; ++i
) {
1615 mv
->p
[i
] = fn(mv
->p
[i
], isl_val_copy(v
));
1624 isl_multi_val_free(mv
);
1628 /* Add "v" to each of the elements of "mv".
1630 __isl_give isl_multi_val
*isl_multi_val_add_val(__isl_take isl_multi_val
*mv
,
1631 __isl_take isl_val
*v
)
1634 return isl_multi_val_free(mv
);
1635 if (isl_val_is_zero(v
)) {
1639 return isl_multi_val_fn_val(mv
, &isl_val_add
, v
);
1642 /* Reduce the elements of "mv" modulo "v".
1644 __isl_give isl_multi_val
*isl_multi_val_mod_val(__isl_take isl_multi_val
*mv
,
1645 __isl_take isl_val
*v
)
1647 return isl_multi_val_fn_val(mv
, &isl_val_mod
, v
);