Merge branch 'maint'
[platform/upstream/isl.git] / isl_aff.c
index bed9e4a..846556d 100644 (file)
--- a/isl_aff.c
+++ b/isl_aff.c
@@ -19,6 +19,7 @@
 #include <isl/constraint.h>
 #include <isl/seq.h>
 #include <isl/set.h>
+#include <isl_config.h>
 
 __isl_give isl_aff *isl_aff_alloc_vec(__isl_take isl_local_space *ls,
        __isl_take isl_vec *v)
@@ -279,6 +280,34 @@ error:
        return NULL;
 }
 
+__isl_give isl_aff *isl_aff_align_params(__isl_take isl_aff *aff,
+       __isl_take isl_space *model)
+{
+       if (!aff || !model)
+               goto error;
+
+       if (!isl_space_match(aff->ls->dim, isl_dim_param,
+                            model, isl_dim_param)) {
+               isl_reordering *exp;
+
+               model = isl_space_drop_dims(model, isl_dim_in,
+                                       0, isl_space_dim(model, isl_dim_in));
+               model = isl_space_drop_dims(model, isl_dim_out,
+                                       0, isl_space_dim(model, isl_dim_out));
+               exp = isl_parameter_alignment_reordering(aff->ls->dim, model);
+               exp = isl_reordering_extend_space(exp,
+                                       isl_aff_get_domain_space(aff));
+               aff = isl_aff_realign_domain(aff, exp);
+       }
+
+       isl_space_free(model);
+       return aff;
+error:
+       isl_space_free(model);
+       isl_aff_free(aff);
+       return NULL;
+}
+
 int isl_aff_plain_is_zero(__isl_keep isl_aff *aff)
 {
        if (!aff)
@@ -543,6 +572,16 @@ __isl_give isl_aff *isl_aff_neg(__isl_take isl_aff *aff)
        return aff;
 }
 
+__isl_give isl_aff *isl_aff_normalize(__isl_take isl_aff *aff)
+{
+       if (!aff)
+               return NULL;
+       aff->v = isl_vec_normalize(aff->v);
+       if (!aff->v)
+               return isl_aff_free(aff);
+       return aff;
+}
+
 /* Given f, return floor(f).
  * If f is an integer expression, then just return f.
  * Otherwise, if f = g/m, write g = q m + r,
@@ -925,6 +964,7 @@ static __isl_give isl_aff *isl_aff_substitute_equalities_lifted(
        }
 
        isl_basic_set_free(eq);
+       aff = isl_aff_normalize(aff);
        return aff;
 error:
        isl_basic_set_free(eq);
@@ -986,16 +1026,27 @@ error:
        return NULL;
 }
 
+__isl_give isl_aff *isl_aff_gist_params(__isl_take isl_aff *aff,
+       __isl_take isl_set *context)
+{
+       isl_set *dom_context = isl_set_universe(isl_aff_get_domain_space(aff));
+       dom_context = isl_set_intersect_params(dom_context, context);
+       return isl_aff_gist(aff, dom_context);
+}
+
 /* Return a basic set containing those elements in the space
  * of aff where it is non-negative.
  */
 __isl_give isl_basic_set *isl_aff_nonneg_basic_set(__isl_take isl_aff *aff)
 {
        isl_constraint *ineq;
+       isl_basic_set *bset;
 
        ineq = isl_inequality_from_aff(aff);
 
-       return isl_basic_set_from_constraint(ineq);
+       bset = isl_basic_set_from_constraint(ineq);
+       bset = isl_basic_set_simplify(bset);
+       return bset;
 }
 
 /* Return a basic set containing those elements in the space
@@ -1004,10 +1055,13 @@ __isl_give isl_basic_set *isl_aff_nonneg_basic_set(__isl_take isl_aff *aff)
 __isl_give isl_basic_set *isl_aff_zero_basic_set(__isl_take isl_aff *aff)
 {
        isl_constraint *ineq;
+       isl_basic_set *bset;
 
        ineq = isl_equality_from_aff(aff);
 
-       return isl_basic_set_from_constraint(ineq);
+       bset = isl_basic_set_from_constraint(ineq);
+       bset = isl_basic_set_simplify(bset);
+       return bset;
 }
 
 /* Return a basic set containing those elements in the shared space
@@ -1125,6 +1179,30 @@ __isl_give isl_aff *isl_aff_drop_dims(__isl_take isl_aff *aff,
        return aff;
 }
 
+/* Project the domain of the affine expression onto its parameter space.
+ * The affine expression may not involve any of the domain dimensions.
+ */
+__isl_give isl_aff *isl_aff_project_domain_on_params(__isl_take isl_aff *aff)
+{
+       isl_space *space;
+       unsigned n;
+       int involves;
+
+       n = isl_aff_dim(aff, isl_dim_in);
+       involves = isl_aff_involves_dims(aff, isl_dim_in, 0, n);
+       if (involves < 0)
+               return isl_aff_free(aff);
+       if (involves)
+               isl_die(isl_aff_get_ctx(aff), isl_error_invalid,
+                   "affine expression involves some of the domain dimensions",
+                   return isl_aff_free(aff));
+       aff = isl_aff_drop_dims(aff, isl_dim_in, 0, n);
+       space = isl_aff_get_domain_space(aff);
+       space = isl_space_params(space);
+       aff = isl_aff_reset_domain_space(aff, space);
+       return aff;
+}
+
 __isl_give isl_aff *isl_aff_insert_dims(__isl_take isl_aff *aff,
        enum isl_dim_type type, unsigned first, unsigned n)
 {
@@ -1200,6 +1278,8 @@ __isl_give isl_pw_aff *isl_pw_aff_from_aff(__isl_take isl_aff *aff)
 #define IS_ZERO is_empty
 #undef FIELD
 #define FIELD aff
+#undef DEFAULT_IS_ZERO
+#define DEFAULT_IS_ZERO 0
 
 #define NO_EVAL
 #define NO_OPT
@@ -1398,6 +1478,8 @@ static __isl_give isl_map *map_from_pw_aff(__isl_take isl_pw_aff *pwaff)
  */
 __isl_give isl_map *isl_map_from_pw_aff(__isl_take isl_pw_aff *pwaff)
 {
+       if (!pwaff)
+               return NULL;
        if (isl_space_is_set(pwaff->dim))
                isl_die(isl_pw_aff_get_ctx(pwaff), isl_error_invalid,
                        "space of input is not a map",
@@ -1411,6 +1493,8 @@ __isl_give isl_map *isl_map_from_pw_aff(__isl_take isl_pw_aff *pwaff)
  */
 __isl_give isl_set *isl_set_from_pw_aff(__isl_take isl_pw_aff *pwaff)
 {
+       if (!pwaff)
+               return NULL;
        if (!isl_space_is_set(pwaff->dim))
                isl_die(isl_pw_aff_get_ctx(pwaff), isl_error_invalid,
                        "space of input is not a set",
@@ -1447,9 +1531,11 @@ __isl_give isl_set *isl_pw_aff_nonneg_set(__isl_take isl_pw_aff *pwaff)
 }
 
 /* Return a set containing those elements in the domain
- * of pwaff where it is zero.
+ * of pwaff where it is zero (if complement is 0) or not zero
+ * (if complement is 1).
  */
-__isl_give isl_set *isl_pw_aff_zero_set(__isl_take isl_pw_aff *pwaff)
+static __isl_give isl_set *pw_aff_zero_set(__isl_take isl_pw_aff *pwaff,
+       int complement)
 {
        int i;
        isl_set *set;
@@ -1461,11 +1547,15 @@ __isl_give isl_set *isl_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;
+               isl_set *set_i, *zero;
 
                bset = isl_aff_zero_basic_set(isl_aff_copy(pwaff->p[i].aff));
-               set_i = isl_set_from_basic_set(bset);
-               set_i = isl_set_intersect(set_i, isl_set_copy(pwaff->p[i].set));
+               zero = isl_set_from_basic_set(bset);
+               set_i = isl_set_copy(pwaff->p[i].set);
+               if (complement)
+                       set_i = isl_set_subtract(set_i, zero);
+               else
+                       set_i = isl_set_intersect(set_i, zero);
                set = isl_set_union_disjoint(set, set_i);
        }
 
@@ -1475,11 +1565,19 @@ __isl_give isl_set *isl_pw_aff_zero_set(__isl_take isl_pw_aff *pwaff)
 }
 
 /* Return a set containing those elements in the domain
+ * of pwaff where it is zero.
+ */
+__isl_give isl_set *isl_pw_aff_zero_set(__isl_take isl_pw_aff *pwaff)
+{
+       return pw_aff_zero_set(pwaff, 0);
+}
+
+/* Return a set containing those elements in the domain
  * of pwaff where it is not zero.
  */
 __isl_give isl_set *isl_pw_aff_non_zero_set(__isl_take isl_pw_aff *pwaff)
 {
-       return isl_set_complement(isl_pw_aff_zero_set(pwaff));
+       return pw_aff_zero_set(pwaff, 1);
 }
 
 /* Return a set containing those elements in the shared domain
@@ -1811,44 +1909,28 @@ error:
        return NULL;
 }
 
-static __isl_give isl_pw_aff *pw_aff_mul(__isl_take isl_pw_aff *pwaff1,
+static __isl_give isl_pw_aff *pw_aff_add(__isl_take isl_pw_aff *pwaff1,
        __isl_take isl_pw_aff *pwaff2)
 {
-       int i, j, n;
-       isl_pw_aff *res;
-
-       if (!pwaff1 || !pwaff2)
-               goto error;
-
-       n = pwaff1->n * pwaff2->n;
-       res = isl_pw_aff_alloc_size(isl_space_copy(pwaff1->dim), n);
-
-       for (i = 0; i < pwaff1->n; ++i) {
-               for (j = 0; j < pwaff2->n; ++j) {
-                       isl_set *common;
-                       isl_aff *prod;
-                       common = isl_set_intersect(
-                                       isl_set_copy(pwaff1->p[i].set),
-                                       isl_set_copy(pwaff2->p[j].set));
-                       if (isl_set_plain_is_empty(common)) {
-                               isl_set_free(common);
-                               continue;
-                       }
+       return isl_pw_aff_on_shared_domain(pwaff1, pwaff2, &isl_aff_add);
+}
 
-                       prod = isl_aff_mul(isl_aff_copy(pwaff1->p[i].aff),
-                                           isl_aff_copy(pwaff2->p[j].aff));
+__isl_give isl_pw_aff *isl_pw_aff_add(__isl_take isl_pw_aff *pwaff1,
+       __isl_take isl_pw_aff *pwaff2)
+{
+       return isl_pw_aff_align_params_pw_pw_and(pwaff1, pwaff2, &pw_aff_add);
+}
 
-                       res = isl_pw_aff_add_piece(res, common, prod);
-               }
-       }
+__isl_give isl_pw_aff *isl_pw_aff_union_add(__isl_take isl_pw_aff *pwaff1,
+       __isl_take isl_pw_aff *pwaff2)
+{
+       return isl_pw_aff_union_add_(pwaff1, pwaff2);
+}
 
-       isl_pw_aff_free(pwaff1);
-       isl_pw_aff_free(pwaff2);
-       return res;
-error:
-       isl_pw_aff_free(pwaff1);
-       isl_pw_aff_free(pwaff2);
-       return NULL;
+static __isl_give isl_pw_aff *pw_aff_mul(__isl_take isl_pw_aff *pwaff1,
+       __isl_take isl_pw_aff *pwaff2)
+{
+       return isl_pw_aff_on_shared_domain(pwaff1, pwaff2, &isl_aff_mul);
 }
 
 __isl_give isl_pw_aff *isl_pw_aff_mul(__isl_take isl_pw_aff *pwaff1,
@@ -2085,6 +2167,16 @@ __isl_give isl_multi_aff *isl_multi_aff_drop_dims(__isl_take isl_multi_aff *maff
        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])
@@ -2106,6 +2198,8 @@ __isl_give isl_multi_aff *isl_multi_aff_drop_dims(__isl_take isl_multi_aff *maff
 #define IS_ZERO is_empty
 #undef FIELD
 #define FIELD maff
+#undef DEFAULT_IS_ZERO
+#define DEFAULT_IS_ZERO 0
 
 #define NO_NEG
 #define NO_EVAL
@@ -2118,6 +2212,26 @@ __isl_give isl_multi_aff *isl_multi_aff_drop_dims(__isl_take isl_multi_aff *maff
 
 #include <isl_pw_templ.c>
 
+static __isl_give isl_pw_multi_aff *pw_multi_aff_add(
+       __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
+{
+       return isl_pw_multi_aff_on_shared_domain(pma1, pma2,
+                                               &isl_multi_aff_add);
+}
+
+__isl_give isl_pw_multi_aff *isl_pw_multi_aff_add(
+       __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_add);
+}
+
+__isl_give isl_pw_multi_aff *isl_pw_multi_aff_union_add(
+       __isl_take isl_pw_multi_aff *pma1, __isl_take isl_pw_multi_aff *pma2)
+{
+       return isl_pw_multi_aff_union_add_(pma1, pma2);
+}
+
 /* Construct a map mapping the domain the piecewise multi-affine expression
  * to its range, with each dimension in the range equated to the
  * corresponding affine expression on its cell.
@@ -2158,3 +2272,364 @@ __isl_give isl_set *isl_set_from_pw_multi_aff(__isl_take isl_pw_multi_aff *pma)
 
        return isl_map_from_pw_multi_aff(pma);
 }
+
+/* Try and create an isl_pw_multi_aff that is equivalent to the given isl_map.
+ * This obivously only works if the input "map" is single-valued.
+ * If so, we compute the lexicographic minimum of the image in the form
+ * of an isl_pw_multi_aff.  Since the image is unique, it is equal
+ * to its lexicographic minimum.
+ * If the input is not single-valued, we produce an error.
+ */
+__isl_give isl_pw_multi_aff *isl_pw_multi_aff_from_map(__isl_take isl_map *map)
+{
+       int i;
+       int sv;
+       isl_pw_multi_aff *pma;
+
+       if (!map)
+               return NULL;
+
+       sv = isl_map_is_single_valued(map);
+       if (sv < 0)
+               goto error;
+       if (!sv)
+               isl_die(isl_map_get_ctx(map), isl_error_invalid,
+                       "map is not single-valued", goto error);
+       map = isl_map_make_disjoint(map);
+       if (!map)
+               return NULL;
+
+       pma = isl_pw_multi_aff_empty(isl_map_get_space(map));
+
+       for (i = 0; i < map->n; ++i) {
+               isl_pw_multi_aff *pma_i;
+               isl_basic_map *bmap;
+               bmap = isl_basic_map_copy(map->p[i]);
+               pma_i = isl_basic_map_lexmin_pw_multi_aff(bmap);
+               pma = isl_pw_multi_aff_add_disjoint(pma, pma_i);
+       }
+
+       isl_map_free(map);
+       return pma;
+error:
+       isl_map_free(map);
+       return NULL;
+}
+
+__isl_give isl_pw_multi_aff *isl_pw_multi_aff_from_set(__isl_take isl_set *set)
+{
+       return isl_pw_multi_aff_from_map(set);
+}
+
+/* Plug in "subs" for dimension "type", "pos" of "aff".
+ *
+ * Let i be the dimension to replace and let "subs" be of the form
+ *
+ *     f/d
+ *
+ * and "aff" of the form
+ *
+ *     (a i + g)/m
+ *
+ * The result is
+ *
+ *     floor((a f + d g')/(m d))
+ *
+ * where g' is the result of plugging in "subs" in each of the integer
+ * divisions in g.
+ */
+__isl_give isl_aff *isl_aff_substitute(__isl_take isl_aff *aff,
+       enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
+{
+       isl_ctx *ctx;
+       isl_int v;
+
+       aff = isl_aff_cow(aff);
+       if (!aff || !subs)
+               return isl_aff_free(aff);
+
+       ctx = isl_aff_get_ctx(aff);
+       if (!isl_space_is_equal(aff->ls->dim, subs->ls->dim))
+               isl_die(ctx, isl_error_invalid,
+                       "spaces don't match", return isl_aff_free(aff));
+       if (isl_local_space_dim(subs->ls, isl_dim_div) != 0)
+               isl_die(ctx, isl_error_unsupported,
+                       "cannot handle divs yet", return isl_aff_free(aff));
+
+       aff->ls = isl_local_space_substitute(aff->ls, type, pos, subs);
+       if (!aff->ls)
+               return isl_aff_free(aff);
+
+       aff->v = isl_vec_cow(aff->v);
+       if (!aff->v)
+               return isl_aff_free(aff);
+
+       pos += isl_local_space_offset(aff->ls, type);
+
+       isl_int_init(v);
+       isl_int_set(v, aff->v->el[1 + pos]);
+       isl_int_set_si(aff->v->el[1 + pos], 0);
+       isl_seq_combine(aff->v->el + 1, subs->v->el[0], aff->v->el + 1,
+                       v, subs->v->el + 1, subs->v->size - 1);
+       isl_int_mul(aff->v->el[0], aff->v->el[0], subs->v->el[0]);
+       isl_int_clear(v);
+
+       return aff;
+}
+
+/* Plug in "subs" for dimension "type", "pos" in each of the affine
+ * expressions in "maff".
+ */
+__isl_give isl_multi_aff *isl_multi_aff_substitute(
+       __isl_take isl_multi_aff *maff, enum isl_dim_type type, unsigned pos,
+       __isl_keep isl_aff *subs)
+{
+       int i;
+
+       maff = isl_multi_aff_cow(maff);
+       if (!maff || !subs)
+               return isl_multi_aff_free(maff);
+
+       if (type == isl_dim_in)
+               type = isl_dim_set;
+
+       for (i = 0; i < maff->n; ++i) {
+               maff->p[i] = isl_aff_substitute(maff->p[i], type, pos, subs);
+               if (!maff->p[i])
+                       return isl_multi_aff_free(maff);
+       }
+
+       return maff;
+}
+
+/* Plug in "subs" for dimension "type", "pos" of "pma".
+ *
+ * pma is of the form
+ *
+ *     A_i(v) -> M_i(v)
+ *
+ * while subs is of the form
+ *
+ *     v' = B_j(v) -> S_j
+ *
+ * Each pair i,j such that C_ij = A_i \cap B_i is non-empty
+ * has a contribution in the result, in particular
+ *
+ *     C_ij(S_j) -> M_i(S_j)
+ *
+ * Note that plugging in S_j in C_ij may also result in an empty set
+ * and this contribution should simply be discarded.
+ */
+__isl_give isl_pw_multi_aff *isl_pw_multi_aff_substitute(
+       __isl_take isl_pw_multi_aff *pma, enum isl_dim_type type, unsigned pos,
+       __isl_keep isl_pw_aff *subs)
+{
+       int i, j, n;
+       isl_pw_multi_aff *res;
+
+       if (!pma || !subs)
+               return isl_pw_multi_aff_free(pma);
+
+       n = pma->n * subs->n;
+       res = isl_pw_multi_aff_alloc_size(isl_space_copy(pma->dim), n);
+
+       for (i = 0; i < pma->n; ++i) {
+               for (j = 0; j < subs->n; ++j) {
+                       isl_set *common;
+                       isl_multi_aff *res_ij;
+                       common = isl_set_intersect(
+                                       isl_set_copy(pma->p[i].set),
+                                       isl_set_copy(subs->p[j].set));
+                       common = isl_set_substitute(common,
+                                       type, pos, subs->p[j].aff);
+                       if (isl_set_plain_is_empty(common)) {
+                               isl_set_free(common);
+                               continue;
+                       }
+
+                       res_ij = isl_multi_aff_substitute(
+                                       isl_multi_aff_copy(pma->p[i].maff),
+                                       type, pos, subs->p[j].aff);
+
+                       res = isl_pw_multi_aff_add_piece(res, common, res_ij);
+               }
+       }
+
+       isl_pw_multi_aff_free(pma);
+       return res;
+}
+
+/* Extend the local space of "dst" to include the divs
+ * in the local space of "src".
+ */
+__isl_give isl_aff *isl_aff_align_divs(__isl_take isl_aff *dst,
+       __isl_keep isl_aff *src)
+{
+       isl_ctx *ctx;
+       int *exp1 = NULL;
+       int *exp2 = NULL;
+       isl_mat *div;
+
+       if (!src || !dst)
+               return isl_aff_free(dst);
+
+       ctx = isl_aff_get_ctx(src);
+       if (!isl_space_is_equal(src->ls->dim, dst->ls->dim))
+               isl_die(ctx, isl_error_invalid,
+                       "spaces don't match", goto error);
+
+       if (src->ls->div->n_row == 0)
+               return dst;
+
+       exp1 = isl_alloc_array(ctx, int, src->ls->div->n_row);
+       exp2 = isl_alloc_array(ctx, int, dst->ls->div->n_row);
+       if (!exp1 || !exp2)
+               goto error;
+
+       div = isl_merge_divs(src->ls->div, dst->ls->div, exp1, exp2);
+       dst = isl_aff_expand_divs(dst, div, exp2);
+       free(exp1);
+       free(exp2);
+
+       return dst;
+error:
+       free(exp1);
+       free(exp2);
+       return isl_aff_free(dst);
+}
+
+/* Adjust the local spaces of the affine expressions in "maff"
+ * such that they all have the save divs.
+ */
+__isl_give isl_multi_aff *isl_multi_aff_align_divs(
+       __isl_take isl_multi_aff *maff)
+{
+       int i;
+
+       if (!maff)
+               return NULL;
+       if (maff->n == 0)
+               return maff;
+       maff = isl_multi_aff_cow(maff);
+       if (!maff)
+               return NULL;
+
+       for (i = 1; i < maff->n; ++i)
+               maff->p[0] = isl_aff_align_divs(maff->p[0], maff->p[i]);
+       for (i = 1; i < maff->n; ++i) {
+               maff->p[i] = isl_aff_align_divs(maff->p[i], maff->p[0]);
+               if (!maff->p[i])
+                       return isl_multi_aff_free(maff);
+       }
+
+       return maff;
+}
+
+__isl_give isl_aff *isl_aff_lift(__isl_take isl_aff *aff)
+{
+       aff = isl_aff_cow(aff);
+       if (!aff)
+               return NULL;
+
+       aff->ls = isl_local_space_lift(aff->ls);
+       if (!aff->ls)
+               return isl_aff_free(aff);
+
+       return aff;
+}
+
+/* Lift "maff" to a space with extra dimensions such that the result
+ * has no more existentially quantified variables.
+ * If "ls" is not NULL, then *ls is assigned the local space that lies
+ * at the basis of the lifting applied to "maff".
+ */
+__isl_give isl_multi_aff *isl_multi_aff_lift(__isl_take isl_multi_aff *maff,
+       __isl_give isl_local_space **ls)
+{
+       int i;
+       isl_space *space;
+       unsigned n_div;
+
+       if (ls)
+               *ls = NULL;
+
+       if (!maff)
+               return NULL;
+
+       if (maff->n == 0) {
+               if (ls) {
+                       isl_space *space = isl_multi_aff_get_domain_space(maff);
+                       *ls = isl_local_space_from_space(space);
+                       if (!*ls)
+                               return isl_multi_aff_free(maff);
+               }
+               return maff;
+       }
+
+       maff = isl_multi_aff_cow(maff);
+       maff = isl_multi_aff_align_divs(maff);
+       if (!maff)
+               return NULL;
+
+       n_div = isl_aff_dim(maff->p[0], isl_dim_div);
+       space = isl_multi_aff_get_space(maff);
+       space = isl_space_lift(isl_space_domain(space), n_div);
+       space = isl_space_extend_domain_with_range(space,
+                                               isl_multi_aff_get_space(maff));
+       if (!space)
+               return isl_multi_aff_free(maff);
+       isl_space_free(maff->space);
+       maff->space = space;
+
+       if (ls) {
+               *ls = isl_aff_get_domain_local_space(maff->p[0]);
+               if (!*ls)
+                       return isl_multi_aff_free(maff);
+       }
+
+       for (i = 0; i < maff->n; ++i) {
+               maff->p[i] = isl_aff_lift(maff->p[i]);
+               if (!maff->p[i])
+                       goto error;
+       }
+
+       return maff;
+error:
+       if (ls)
+               isl_local_space_free(*ls);
+       return isl_multi_aff_free(maff);
+}
+
+
+/* Extract an isl_pw_aff corresponding to output dimension "pos" of "pma".
+ */
+__isl_give isl_pw_aff *isl_pw_multi_aff_get_pw_aff(
+       __isl_keep isl_pw_multi_aff *pma, int pos)
+{
+       int i;
+       int n_out;
+       isl_space *space;
+       isl_pw_aff *pa;
+
+       if (!pma)
+               return NULL;
+
+       n_out = isl_pw_multi_aff_dim(pma, isl_dim_out);
+       if (pos < 0 || pos >= n_out)
+               isl_die(isl_pw_multi_aff_get_ctx(pma), isl_error_invalid,
+                       "index out of bounds", return NULL);
+
+       space = isl_pw_multi_aff_get_space(pma);
+       space = isl_space_drop_dims(space, isl_dim_out,
+                                   pos + 1, n_out - pos - 1);
+       space = isl_space_drop_dims(space, isl_dim_out, 0, pos);
+
+       pa = isl_pw_aff_alloc_size(space, pma->n);
+       for (i = 0; i < pma->n; ++i) {
+               isl_aff *aff;
+               aff = isl_multi_aff_get_aff(pma->p[i].maff, pos);
+               pa = isl_pw_aff_add_piece(pa, isl_set_copy(pma->p[i].set), aff);
+       }
+
+       return pa;
+}