add isl_aff_mod_val
[platform/upstream/isl.git] / isl_multi_templ.c
index 8949f3b..8e3c9d3 100644 (file)
@@ -1,9 +1,17 @@
 /*
  * Copyright 2011      Sven Verdoolaege
+ * Copyright 2012      Ecole Normale Superieure
  *
- * Use of this software is governed by the GNU LGPLv2.1 license
+ * Use of this software is governed by the MIT license
+ *
+ * Written by Sven Verdoolaege,
+ * Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
  */
 
+#include <isl_space_private.h>
+#include <isl/set.h>
+#include <isl_reordering.h>
+
 #define xCAT(A,B) A ## B
 #define CAT(A,B) xCAT(A,B)
 #undef EL
@@ -115,12 +123,79 @@ void *FN(MULTI(BASE),free)(__isl_take MULTI(BASE) *multi)
        return NULL;
 }
 
+__isl_give MULTI(BASE) *FN(MULTI(BASE),insert_dims)(
+       __isl_take MULTI(BASE) *multi,
+       enum isl_dim_type type, unsigned first, unsigned n)
+{
+       int i;
+
+       if (!multi)
+               return NULL;
+       if (type == isl_dim_out)
+               isl_die(FN(MULTI(BASE),get_ctx)(multi), isl_error_invalid,
+                       "cannot insert output/set dimensions",
+                       return FN(MULTI(BASE),free)(multi));
+       if (n == 0 && !isl_space_is_named_or_nested(multi->space, type))
+               return multi;
+
+       multi = FN(MULTI(BASE),cow)(multi);
+       if (!multi)
+               return NULL;
+
+       multi->space = isl_space_insert_dims(multi->space, type, first, n);
+       if (!multi->space)
+               return FN(MULTI(BASE),free)(multi);
+
+       for (i = 0; i < multi->n; ++i) {
+               multi->p[i] = FN(EL,insert_dims)(multi->p[i], type, first, n);
+               if (!multi->p[i])
+                       return FN(MULTI(BASE),free)(multi);
+       }
+
+       return multi;
+}
+
+__isl_give MULTI(BASE) *FN(MULTI(BASE),add_dims)(__isl_take MULTI(BASE) *multi,
+       enum isl_dim_type type, unsigned n)
+{
+       unsigned pos;
+
+       pos = FN(MULTI(BASE),dim)(multi, type);
+
+       return FN(MULTI(BASE),insert_dims)(multi, type, pos, n);
+}
+
 unsigned FN(MULTI(BASE),dim)(__isl_keep MULTI(BASE) *multi,
        enum isl_dim_type type)
 {
        return multi ? isl_space_dim(multi->space, type) : 0;
 }
 
+__isl_give MULTI(BASE) *FN(MULTI(BASE),set_dim_name)(
+       __isl_take MULTI(BASE) *multi,
+       enum isl_dim_type type, unsigned pos, const char *s)
+{
+       int i;
+
+       multi = FN(MULTI(BASE),cow)(multi);
+       if (!multi)
+               return NULL;
+
+       multi->space = isl_space_set_dim_name(multi->space, type, pos, s);
+       if (!multi->space)
+               return FN(MULTI(BASE),free)(multi);
+
+       if (type == isl_dim_out)
+               return multi;
+       for (i = 0; i < multi->n; ++i) {
+               multi->p[i] = FN(EL,set_dim_name)(multi->p[i], type, pos, s);
+               if (!multi->p[i])
+                       return FN(MULTI(BASE),free)(multi);
+       }
+
+       return multi;
+}
+
 const char *FN(MULTI(BASE),get_tuple_name)(__isl_keep MULTI(BASE) *multi,
        enum isl_dim_type type)
 {
@@ -144,10 +219,17 @@ __isl_give EL *FN(FN(MULTI(BASE),get),BASE)(__isl_keep MULTI(BASE) *multi,
 __isl_give MULTI(BASE) *FN(FN(MULTI(BASE),set),BASE)(
        __isl_take MULTI(BASE) *multi, int pos, __isl_take EL *el)
 {
+       isl_space *multi_space = NULL;
+       isl_space *el_space = NULL;
+
        multi = FN(MULTI(BASE),cow)(multi);
        if (!multi || !el)
                goto error;
 
+       multi_space = FN(MULTI(BASE),get_space)(multi);
+       if (FN(EL,check_match_domain_space)(el, multi_space) < 0)
+               goto error;
+
        if (pos < 0 || pos >= multi->n)
                isl_die(FN(MULTI(BASE),get_ctx)(multi), isl_error_invalid,
                        "index out of bounds", goto error);
@@ -155,10 +237,15 @@ __isl_give MULTI(BASE) *FN(FN(MULTI(BASE),set),BASE)(
        FN(EL,free)(multi->p[pos]);
        multi->p[pos] = el;
 
+       isl_space_free(multi_space);
+       isl_space_free(el_space);
+
        return multi;
 error:
        FN(MULTI(BASE),free)(multi);
        FN(EL,free)(el);
+       isl_space_free(multi_space);
+       isl_space_free(el_space);
        return NULL;
 }
 
@@ -179,8 +266,8 @@ __isl_give MULTI(BASE) *FN(MULTI(BASE),reset_space_and_domain)(
                goto error;
 
        for (i = 0; i < multi->n; ++i) {
-               multi->p[i] = FN(EL,reset_space_and_domain)(multi->p[i],
-                                isl_space_copy(space), isl_space_copy(domain));
+               multi->p[i] = FN(EL,reset_domain_space)(multi->p[i],
+                                isl_space_copy(domain));
                if (!multi->p[i])
                        goto error;
        }
@@ -215,6 +302,22 @@ __isl_give MULTI(BASE) *FN(MULTI(BASE),reset_space)(
        return FN(MULTI(BASE),reset_space_and_domain)(multi, space, domain);
 }
 
+__isl_give MULTI(BASE) *FN(MULTI(BASE),set_tuple_name)(
+       __isl_keep MULTI(BASE) *multi, enum isl_dim_type type,
+       const char *s)
+{
+       isl_space *space;
+
+       multi = FN(MULTI(BASE),cow)(multi);
+       if (!multi)
+               return NULL;
+
+       space = FN(MULTI(BASE),get_space)(multi);
+       space = isl_space_set_tuple_name(space, type, s);
+
+       return FN(MULTI(BASE),reset_space)(multi, space);
+}
+
 __isl_give MULTI(BASE) *FN(MULTI(BASE),set_tuple_id)(
        __isl_keep MULTI(BASE) *multi, enum isl_dim_type type,
        __isl_take isl_id *id)
@@ -238,7 +341,7 @@ __isl_give MULTI(BASE) *FN(MULTI(BASE),realign_domain)(
 
        multi = FN(MULTI(BASE),cow)(multi);
        if (!multi || !exp)
-               return NULL;
+               goto error;
 
        for (i = 0; i < multi->n; ++i) {
                multi->p[i] = FN(EL,realign_domain)(multi->p[i],
@@ -294,7 +397,8 @@ error:
        return NULL;
 }
 
-static __isl_give MULTI(BASE) *align_params_multi_set_and(
+#ifndef NO_GIST
+static __isl_give MULTI(BASE) *FN(MULTI(BASE),align_params_multi_set_and)(
        __isl_take MULTI(BASE) *multi, __isl_take isl_set *set,
        __isl_give MULTI(BASE) *(*fn)(__isl_take MULTI(BASE) *multi,
                                        __isl_take isl_set *set))
@@ -345,7 +449,7 @@ error:
 __isl_give MULTI(BASE) *FN(MULTI(BASE),gist)(__isl_take MULTI(BASE) *multi,
        __isl_take isl_set *context)
 {
-       return align_params_multi_set_and(multi, context,
+       return FN(MULTI(BASE),align_params_multi_set_and)(multi, context,
                                                &FN(MULTI(BASE),gist_aligned));
 }
 
@@ -357,6 +461,7 @@ __isl_give MULTI(BASE) *FN(MULTI(BASE),gist_params)(
        dom_context = isl_set_intersect_params(dom_context, context);
        return FN(MULTI(BASE),gist)(multi, dom_context);
 }
+#endif
 
 __isl_give MULTI(BASE) *FN(FN(MULTI(BASE),from),LIST(BASE))(
        __isl_take isl_space *space, __isl_take LIST(EL) *list)
@@ -389,3 +494,345 @@ error:
        FN(LIST(EL),free)(list);
        return NULL;
 }
+
+#ifndef NO_IDENTITY
+/* Create a multi expression in the given space that maps each
+ * input dimension to the corresponding output dimension.
+ */
+__isl_give MULTI(BASE) *FN(MULTI(BASE),identity)(__isl_take isl_space *space)
+{
+       int i, n;
+       isl_local_space *ls;
+       MULTI(BASE) *multi;
+
+       if (!space)
+               return NULL;
+
+       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);
+
+       multi = FN(MULTI(BASE),alloc)(isl_space_copy(space));
+
+       if (!n) {
+               isl_space_free(space);
+               return multi;
+       }
+
+       space = isl_space_domain(space);
+       ls = isl_local_space_from_space(space);
+
+       for (i = 0; i < n; ++i) {
+               EL *el;
+               el = FN(EL,var_on_domain)(isl_local_space_copy(ls),
+                                               isl_dim_set, i);
+               multi = FN(FN(MULTI(BASE),set),BASE)(multi, i, el);
+       }
+
+       isl_local_space_free(ls);
+
+       return multi;
+error:
+       isl_space_free(space);
+       return NULL;
+}
+#endif
+
+/* Construct a multi expression in the given space with value zero in
+ * each of the output dimensions.
+ */
+__isl_give MULTI(BASE) *FN(MULTI(BASE),zero)(__isl_take isl_space *space)
+{
+       int n;
+       MULTI(BASE) *multi;
+
+       if (!space)
+               return NULL;
+
+       n = isl_space_dim(space , isl_dim_out);
+       multi = FN(MULTI(BASE),alloc)(isl_space_copy(space));
+
+       if (!n)
+               isl_space_free(space);
+       else {
+               int i;
+               isl_local_space *ls;
+               EL *el;
+
+               space = isl_space_domain(space);
+               ls = isl_local_space_from_space(space);
+               el = FN(EL,zero_on_domain)(ls);
+
+               for (i = 0; i < n; ++i)
+                       multi = FN(FN(MULTI(BASE),set),BASE)(multi, i,
+                                                           FN(EL,copy)(el));
+
+               FN(EL,free)(el);
+       }
+
+       return multi;
+}
+
+#ifndef NO_FROM_BASE
+__isl_give MULTI(BASE) *FN(FN(MULTI(BASE),from),BASE)(__isl_take EL *el)
+{
+       MULTI(BASE) *multi;
+
+       multi = FN(MULTI(BASE),alloc)(FN(EL,get_space)(el));
+       multi = FN(FN(MULTI(BASE),set),BASE)(multi, 0, el);
+
+       return multi;
+}
+#endif
+
+__isl_give MULTI(BASE) *FN(MULTI(BASE),drop_dims)(
+       __isl_take MULTI(BASE) *multi,
+       enum isl_dim_type type, unsigned first, unsigned n)
+{
+       int i;
+       unsigned dim;
+
+       multi = FN(MULTI(BASE),cow)(multi);
+       if (!multi)
+               return NULL;
+
+       dim = FN(MULTI(BASE),dim)(multi, type);
+       if (first + n > dim || first + n < first)
+               isl_die(FN(MULTI(BASE),get_ctx)(multi), isl_error_invalid,
+                       "index out of bounds",
+                       return FN(MULTI(BASE),cow)(multi));
+
+       multi->space = isl_space_drop_dims(multi->space, type, first, n);
+       if (!multi->space)
+               return FN(MULTI(BASE),cow)(multi);
+
+       if (type == isl_dim_out) {
+               for (i = 0; i < n; ++i)
+                       FN(EL,free)(multi->p[first + i]);
+               for (i = first; i + n < multi->n; ++i)
+                       multi->p[i] = multi->p[i + n];
+               multi->n -= n;
+
+               return multi;
+       }
+
+       for (i = 0; i < multi->n; ++i) {
+               multi->p[i] = FN(EL,drop_dims)(multi->p[i], type, first, n);
+               if (!multi->p[i])
+                       return FN(MULTI(BASE),cow)(multi);
+       }
+
+       return multi;
+}
+
+/* Given two MULTI(BASE)s A -> B and C -> D,
+ * construct a MULTI(BASE) (A * C) -> (B, D).
+ */
+__isl_give MULTI(BASE) *FN(MULTI(BASE),range_product)(
+       __isl_take MULTI(BASE) *multi1, __isl_take MULTI(BASE) *multi2)
+{
+       int i, n1, n2;
+       EL *el;
+       isl_space *space;
+       MULTI(BASE) *res;
+
+       if (!multi1 || !multi2)
+               goto error;
+
+       space = isl_space_range_product(FN(MULTI(BASE),get_space)(multi1),
+                                       FN(MULTI(BASE),get_space)(multi2));
+       res = FN(MULTI(BASE),alloc)(space);
+
+       n1 = FN(MULTI(BASE),dim)(multi1, isl_dim_out);
+       n2 = FN(MULTI(BASE),dim)(multi2, isl_dim_out);
+
+       for (i = 0; i < n1; ++i) {
+               el = FN(FN(MULTI(BASE),get),BASE)(multi1, i);
+               res = FN(FN(MULTI(BASE),set),BASE)(res, i, el);
+       }
+
+       for (i = 0; i < n2; ++i) {
+               el = FN(FN(MULTI(BASE),get),BASE)(multi2, i);
+               res = FN(FN(MULTI(BASE),set),BASE)(res, n1 + i, el);
+       }
+
+       FN(MULTI(BASE),free)(multi1);
+       FN(MULTI(BASE),free)(multi2);
+       return res;
+error:
+       FN(MULTI(BASE),free)(multi1);
+       FN(MULTI(BASE),free)(multi2);
+       return NULL;
+}
+
+__isl_give MULTI(BASE) *FN(MULTI(BASE),flatten_range)(
+       __isl_take MULTI(BASE) *multi)
+{
+       if (!multi)
+               return NULL;
+
+       if (!multi->space->nested[1])
+               return multi;
+
+       multi = FN(MULTI(BASE),cow)(multi);
+       if (!multi)
+               return NULL;
+
+       multi->space = isl_space_flatten_range(multi->space);
+       if (!multi->space)
+               return FN(MULTI(BASE),free)(multi);
+
+       return multi;
+}
+
+/* Given two MULTI(BASE)s A -> B and C -> D,
+ * construct a MULTI(BASE) (A * C) -> [B -> D].
+ */
+__isl_give MULTI(BASE) *FN(MULTI(BASE),flat_range_product)(
+       __isl_take MULTI(BASE) *multi1, __isl_take MULTI(BASE) *multi2)
+{
+       MULTI(BASE) *multi;
+
+       multi = FN(MULTI(BASE),range_product)(multi1, multi2);
+       multi = FN(MULTI(BASE),flatten_range)(multi);
+       return multi;
+}
+
+/* Given two multi expressions, "multi1"
+ *
+ *     [A] -> [B1 B2]
+ *
+ * where B2 starts at position "pos", and "multi2"
+ *
+ *     [A] -> [D]
+ *
+ * return the multi expression
+ *
+ *     [A] -> [B1 D B2]
+ */
+__isl_give MULTI(BASE) *FN(MULTI(BASE),range_splice)(
+       __isl_take MULTI(BASE) *multi1, unsigned pos,
+       __isl_take MULTI(BASE) *multi2)
+{
+       MULTI(BASE) *res;
+       unsigned dim;
+
+       if (!multi1 || !multi2)
+               goto error;
+
+       dim = FN(MULTI(BASE),dim)(multi1, isl_dim_out);
+       if (pos > dim)
+               isl_die(FN(MULTI(BASE),get_ctx)(multi1), isl_error_invalid,
+                       "index out of bounds", goto error);
+
+       res = FN(MULTI(BASE),copy)(multi1);
+       res = FN(MULTI(BASE),drop_dims)(res, isl_dim_out, pos, dim - pos);
+       multi1 = FN(MULTI(BASE),drop_dims)(multi1, isl_dim_out, 0, pos);
+
+       res = FN(MULTI(BASE),flat_range_product)(res, multi2);
+       res = FN(MULTI(BASE),flat_range_product)(res, multi1);
+
+       return res;
+error:
+       FN(MULTI(BASE),free)(multi1);
+       FN(MULTI(BASE),free)(multi2);
+       return NULL;
+}
+
+/* Given two multi expressions, "multi1"
+ *
+ *     [A1 A2] -> [B1 B2]
+ *
+ * where A2 starts at position "in_pos" and B2 starts at position "out_pos",
+ * and "multi2"
+ *
+ *     [C] -> [D]
+ *
+ * return the multi expression
+ *
+ *     [A1 C A2] -> [B1 D B2]
+ *
+ * We first insert input dimensions to obtain
+ *
+ *     [A1 C A2] -> [B1 B2]
+ *
+ * and
+ *
+ *     [A1 C A2] -> [D]
+ *
+ * and then apply range_splice.
+ */
+__isl_give MULTI(BASE) *FN(MULTI(BASE),splice)(
+       __isl_take MULTI(BASE) *multi1, unsigned in_pos, unsigned out_pos,
+       __isl_take MULTI(BASE) *multi2)
+{
+       unsigned n_in1;
+       unsigned n_in2;
+
+       if (!multi1 || !multi2)
+               goto error;
+
+       n_in1 = FN(MULTI(BASE),dim)(multi1, isl_dim_in);
+       if (in_pos > n_in1)
+               isl_die(FN(MULTI(BASE),get_ctx)(multi1), isl_error_invalid,
+                       "index out of bounds", goto error);
+
+       n_in2 = FN(MULTI(BASE),dim)(multi2, isl_dim_in);
+
+       multi1 = FN(MULTI(BASE),insert_dims)(multi1, isl_dim_in, in_pos, n_in2);
+       multi2 = FN(MULTI(BASE),insert_dims)(multi2, isl_dim_in, n_in2,
+                                               n_in1 - in_pos);
+       multi2 = FN(MULTI(BASE),insert_dims)(multi2, isl_dim_in, 0, in_pos);
+
+       return FN(MULTI(BASE),range_splice)(multi1, out_pos, multi2);
+error:
+       FN(MULTI(BASE),free)(multi1);
+       FN(MULTI(BASE),free)(multi2);
+       return NULL;
+}
+
+/* This function is currently only used from isl_aff.c
+ */
+static __isl_give MULTI(BASE) *FN(MULTI(BASE),bin_op)(
+       __isl_take MULTI(BASE) *multi1, __isl_take MULTI(BASE) *multi2,
+       __isl_give EL *(*fn)(__isl_take EL *, __isl_take EL *))
+       __attribute__ ((unused));
+
+/* Pairwise perform "fn" to the elements of "multi1" and "multi2" and
+ * return the result.
+ */
+static __isl_give MULTI(BASE) *FN(MULTI(BASE),bin_op)(
+       __isl_take MULTI(BASE) *multi1, __isl_take MULTI(BASE) *multi2,
+       __isl_give EL *(*fn)(__isl_take EL *, __isl_take EL *))
+{
+       int i;
+       isl_ctx *ctx;
+
+       multi1 = FN(MULTI(BASE),cow)(multi1);
+       if (!multi1 || !multi2)
+               goto error;
+
+       ctx = FN(MULTI(BASE),get_ctx)(multi1);
+       if (!isl_space_is_equal(multi1->space, multi2->space))
+               isl_die(ctx, isl_error_invalid,
+                       "spaces don't match", goto error);
+
+       for (i = 0; i < multi1->n; ++i) {
+               multi1->p[i] = fn(multi1->p[i], FN(EL,copy)(multi2->p[i]));
+               if (!multi1->p[i])
+                       goto error;
+       }
+
+       FN(MULTI(BASE),free)(multi2);
+       return multi1;
+error:
+       FN(MULTI(BASE),free)(multi1);
+       FN(MULTI(BASE),free)(multi2);
+       return NULL;
+}