isl_pw_aff_zero_set: return a rational set if the input is marked rational
[platform/upstream/isl.git] / isl_aff.c
index 4d6a314..6517d68 100644 (file)
--- a/isl_aff.c
+++ b/isl_aff.c
@@ -88,6 +88,63 @@ __isl_give isl_aff *isl_aff_zero_on_domain(__isl_take isl_local_space *ls)
        return aff;
 }
 
+/* Return a piecewise affine expression defined on the specified domain
+ * that is equal to zero.
+ */
+__isl_give isl_pw_aff *isl_pw_aff_zero_on_domain(__isl_take isl_local_space *ls)
+{
+       return isl_pw_aff_from_aff(isl_aff_zero_on_domain(ls));
+}
+
+/* Return an affine expression that is equal to the specified dimension
+ * in "ls".
+ */
+__isl_give isl_aff *isl_aff_var_on_domain(__isl_take isl_local_space *ls,
+       enum isl_dim_type type, unsigned pos)
+{
+       isl_space *space;
+       isl_aff *aff;
+
+       if (!ls)
+               return NULL;
+
+       space = isl_local_space_get_space(ls);
+       if (!space)
+               goto error;
+       if (isl_space_is_map(space))
+               isl_die(isl_space_get_ctx(space), isl_error_invalid,
+                       "expecting (parameter) set space", goto error);
+       if (pos >= isl_local_space_dim(ls, type))
+               isl_die(isl_space_get_ctx(space), isl_error_invalid,
+                       "position out of bounds", goto error);
+
+       isl_space_free(space);
+       aff = isl_aff_alloc(ls);
+       if (!aff)
+               return NULL;
+
+       pos += isl_local_space_offset(aff->ls, type);
+
+       isl_int_set_si(aff->v->el[0], 1);
+       isl_seq_clr(aff->v->el + 1, aff->v->size - 1);
+       isl_int_set_si(aff->v->el[1 + pos], 1);
+
+       return aff;
+error:
+       isl_local_space_free(ls);
+       isl_space_free(space);
+       return NULL;
+}
+
+/* Return a piecewise affine expression that is equal to
+ * the specified dimension in "ls".
+ */
+__isl_give isl_pw_aff *isl_pw_aff_var_on_domain(__isl_take isl_local_space *ls,
+       enum isl_dim_type type, unsigned pos)
+{
+       return isl_pw_aff_from_aff(isl_aff_var_on_domain(ls, type, pos));
+}
+
 __isl_give isl_aff *isl_aff_copy(__isl_keep isl_aff *aff)
 {
        if (!aff)
@@ -1331,8 +1388,10 @@ __isl_give isl_basic_set *isl_aff_neg_basic_set(__isl_take isl_aff *aff)
 
 /* Return a basic set containing those elements in the space
  * of aff where it is zero.
+ * If "rational" is set, then return a rational basic set.
  */
-__isl_give isl_basic_set *isl_aff_zero_basic_set(__isl_take isl_aff *aff)
+static __isl_give isl_basic_set *aff_zero_basic_set(__isl_take isl_aff *aff,
+       int rational)
 {
        isl_constraint *ineq;
        isl_basic_set *bset;
@@ -1340,10 +1399,20 @@ __isl_give isl_basic_set *isl_aff_zero_basic_set(__isl_take isl_aff *aff)
        ineq = isl_equality_from_aff(aff);
 
        bset = isl_basic_set_from_constraint(ineq);
+       if (rational)
+               bset = isl_basic_set_set_rational(bset);
        bset = isl_basic_set_simplify(bset);
        return bset;
 }
 
+/* Return a basic set containing those elements in the space
+ * of aff where it is zero.
+ */
+__isl_give isl_basic_set *isl_aff_zero_basic_set(__isl_take isl_aff *aff)
+{
+       return aff_zero_basic_set(aff, 0);
+}
+
 /* Return a basic set containing those elements in the shared space
  * of aff1 and aff2 where aff1 is greater than or equal to aff2.
  */
@@ -1828,8 +1897,11 @@ static __isl_give isl_set *pw_aff_zero_set(__isl_take isl_pw_aff *pwaff,
        for (i = 0; i < pwaff->n; ++i) {
                isl_basic_set *bset;
                isl_set *set_i, *zero;
+               int rational;
 
-               bset = isl_aff_zero_basic_set(isl_aff_copy(pwaff->p[i].aff));
+               rational = isl_set_has_rational(pwaff->p[i].set);
+               bset = aff_zero_basic_set(isl_aff_copy(pwaff->p[i].aff),
+                                               rational);
                zero = isl_set_from_basic_set(bset);
                set_i = isl_set_copy(pwaff->p[i].set);
                if (complement)
@@ -2452,96 +2524,55 @@ __isl_give isl_pw_aff *isl_pw_aff_list_max(__isl_take isl_pw_aff_list *list)
        return pw_aff_list_reduce(list, &isl_pw_aff_max);
 }
 
-#undef BASE
-#define BASE aff
-
-#include <isl_multi_templ.c>
-
-/* Construct an isl_multi_aff in the given space with value zero in
- * each of the output dimensions.
+/* Mark the domains of "pwaff" as rational.
  */
-__isl_give isl_multi_aff *isl_multi_aff_zero(__isl_take isl_space *space)
+__isl_give isl_pw_aff *isl_pw_aff_set_rational(__isl_take isl_pw_aff *pwaff)
 {
-       int n;
-       isl_multi_aff *ma;
+       int i;
 
-       if (!space)
+       pwaff = isl_pw_aff_cow(pwaff);
+       if (!pwaff)
                return NULL;
+       if (pwaff->n == 0)
+               return pwaff;
 
-       n = isl_space_dim(space , isl_dim_out);
-       ma = isl_multi_aff_alloc(isl_space_copy(space));
-
-       if (!n)
-               isl_space_free(space);
-       else {
-               int i;
-               isl_local_space *ls;
-               isl_aff *aff;
-
-               space = isl_space_domain(space);
-               ls = isl_local_space_from_space(space);
-               aff = isl_aff_zero_on_domain(ls);
-
-               for (i = 0; i < n; ++i)
-                       ma = isl_multi_aff_set_aff(ma, i, isl_aff_copy(aff));
-
-               isl_aff_free(aff);
+       for (i = 0; i < pwaff->n; ++i) {
+               pwaff->p[i].set = isl_set_set_rational(pwaff->p[i].set);
+               if (!pwaff->p[i].set)
+                       return isl_pw_aff_free(pwaff);
        }
 
-       return ma;
+       return pwaff;
 }
 
-/* Create an isl_multi_aff in the given space that maps each
- * input dimension to the corresponding output dimension.
+/* Mark the domains of the elements of "list" as rational.
  */
-__isl_give isl_multi_aff *isl_multi_aff_identity(__isl_take isl_space *space)
+__isl_give isl_pw_aff_list *isl_pw_aff_list_set_rational(
+       __isl_take isl_pw_aff_list *list)
 {
-       int n;
-       isl_multi_aff *ma;
+       int i;
 
-       if (!space)
+       if (!list)
                return NULL;
+       if (list->n == 0)
+               return list;
 
-       if (isl_space_is_set(space))
-               isl_die(isl_space_get_ctx(space), isl_error_invalid,
-                       "expecting map space", goto error);
-
-       n = isl_space_dim(space, isl_dim_out);
-       if (n != isl_space_dim(space, isl_dim_in))
-               isl_die(isl_space_get_ctx(space), isl_error_invalid,
-                       "number of input and output dimensions needs to be "
-                       "the same", goto error);
-
-       ma = isl_multi_aff_alloc(isl_space_copy(space));
-
-       if (!n)
-               isl_space_free(space);
-       else {
-               int i;
-               isl_local_space *ls;
-               isl_aff *aff;
-
-               space = isl_space_domain(space);
-               ls = isl_local_space_from_space(space);
-               aff = isl_aff_zero_on_domain(ls);
-
-               for (i = 0; i < n; ++i) {
-                       isl_aff *aff_i;
-                       aff_i = isl_aff_copy(aff);
-                       aff_i = isl_aff_add_coefficient_si(aff_i,
-                                                           isl_dim_in, i, 1);
-                       ma = isl_multi_aff_set_aff(ma, i, aff_i);
-               }
+       for (i = 0; i < list->n; ++i) {
+               isl_pw_aff *pa;
 
-               isl_aff_free(aff);
+               pa = isl_pw_aff_list_get_pw_aff(list, i);
+               pa = isl_pw_aff_set_rational(pa);
+               list = isl_pw_aff_list_set_pw_aff(list, i, pa);
        }
 
-       return ma;
-error:
-       isl_space_free(space);
-       return NULL;
+       return list;
 }
 
+#undef BASE
+#define BASE aff
+
+#include <isl_multi_templ.c>
+
 /* Create an isl_pw_multi_aff with the given isl_multi_aff on a universe
  * domain.
  */
@@ -2715,62 +2746,6 @@ int isl_multi_aff_plain_is_equal(__isl_keep isl_multi_aff *maff1,
        return 1;
 }
 
-__isl_give isl_multi_aff *isl_multi_aff_set_dim_name(
-       __isl_take isl_multi_aff *maff,
-       enum isl_dim_type type, unsigned pos, const char *s)
-{
-       int i;
-
-       maff = isl_multi_aff_cow(maff);
-       if (!maff)
-               return NULL;
-
-       maff->space = isl_space_set_dim_name(maff->space, type, pos, s);
-       if (!maff->space)
-               return isl_multi_aff_free(maff);
-
-       if (type == isl_dim_out)
-               return maff;
-       for (i = 0; i < maff->n; ++i) {
-               maff->p[i] = isl_aff_set_dim_name(maff->p[i], type, pos, s);
-               if (!maff->p[i])
-                       return isl_multi_aff_free(maff);
-       }
-
-       return maff;
-}
-
-__isl_give isl_multi_aff *isl_multi_aff_drop_dims(__isl_take isl_multi_aff *maff,
-       enum isl_dim_type type, unsigned first, unsigned n)
-{
-       int i;
-
-       maff = isl_multi_aff_cow(maff);
-       if (!maff)
-               return NULL;
-
-       maff->space = isl_space_drop_dims(maff->space, type, first, n);
-       if (!maff->space)
-               return isl_multi_aff_free(maff);
-
-       if (type == isl_dim_out) {
-               for (i = 0; i < n; ++i)
-                       isl_aff_free(maff->p[first + i]);
-               for (i = first; i + n < maff->n; ++i)
-                       maff->p[i] = maff->p[i + n];
-               maff->n -= n;
-               return maff;
-       }
-
-       for (i = 0; i < maff->n; ++i) {
-               maff->p[i] = isl_aff_drop_dims(maff->p[i], type, first, n);
-               if (!maff->p[i])
-                       return isl_multi_aff_free(maff);
-       }
-
-       return maff;
-}
-
 /* Return the set of domain elements where "ma1" is lexicographically
  * smaller than or equal to "ma2".
  */
@@ -3762,45 +3737,28 @@ error:
        return NULL;
 }
 
-/* Given two isl_multi_affs A -> B and C -> D,
- * construct an isl_multi_aff (A * C) -> (B, D).
+/* Given two aligned isl_pw_multi_affs A -> B and C -> D,
+ * construct an isl_pw_multi_aff (A * C) -> [B -> D].
  */
-__isl_give isl_multi_aff *isl_multi_aff_flat_range_product(
-       __isl_take isl_multi_aff *ma1, __isl_take isl_multi_aff *ma2)
+static __isl_give isl_pw_multi_aff *pw_multi_aff_range_product(
+       __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
 {
-       int i, n1, n2;
-       isl_aff *aff;
        isl_space *space;
-       isl_multi_aff *res;
-
-       if (!ma1 || !ma2)
-               goto error;
-
-       space = isl_space_range_product(isl_multi_aff_get_space(ma1),
-                                       isl_multi_aff_get_space(ma2));
-       space = isl_space_flatten_range(space);
-       res = isl_multi_aff_alloc(space);
-
-       n1 = isl_multi_aff_dim(ma1, isl_dim_out);
-       n2 = isl_multi_aff_dim(ma2, isl_dim_out);
 
-       for (i = 0; i < n1; ++i) {
-               aff = isl_multi_aff_get_aff(ma1, i);
-               res = isl_multi_aff_set_aff(res, i, aff);
-       }
-
-       for (i = 0; i < n2; ++i) {
-               aff = isl_multi_aff_get_aff(ma2, i);
-               res = isl_multi_aff_set_aff(res, n1 + i, aff);
-       }
+       space = isl_space_range_product(isl_pw_multi_aff_get_space(pma1),
+                                       isl_pw_multi_aff_get_space(pma2));
+       return isl_pw_multi_aff_on_shared_domain_in(pma1, pma2, space,
+                                           &isl_multi_aff_range_product);
+}
 
-       isl_multi_aff_free(ma1);
-       isl_multi_aff_free(ma2);
-       return res;
-error:
-       isl_multi_aff_free(ma1);
-       isl_multi_aff_free(ma2);
-       return NULL;
+/* Given two isl_pw_multi_affs A -> B and C -> D,
+ * construct an isl_pw_multi_aff (A * C) -> [B -> D].
+ */
+__isl_give isl_pw_multi_aff *isl_pw_multi_aff_range_product(
+       __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
+{
+       return isl_pw_multi_aff_align_params_pw_pw_and(pma1, pma2,
+                                           &pw_multi_aff_range_product);
 }
 
 /* Given two aligned isl_pw_multi_affs A -> B and C -> D,
@@ -3942,3 +3900,8 @@ error:
        isl_pw_aff_free(pa);
        return NULL;
 }
+
+#undef BASE
+#define BASE pw_aff
+
+#include <isl_multi_templ.c>