mirror of
https://review.haiku-os.org/buildtools
synced 2024-11-23 15:29:11 +01:00
9897128cb9
Change-Id: I9d707083f0a9e71d3bcc02b3265bfb233bdbe46c Reviewed-on: https://review.haiku-os.org/c/buildtools/+/3019 Reviewed-by: Adrien Destugues <pulkomandy@gmail.com>
253 lines
5.7 KiB
C
253 lines
5.7 KiB
C
/*
|
|
* Copyright 2008-2009 Katholieke Universiteit Leuven
|
|
* Copyright 2010-2011 INRIA Saclay
|
|
*
|
|
* Use of this software is governed by the MIT license
|
|
*
|
|
* Written by Sven Verdoolaege, K.U.Leuven, Departement
|
|
* Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
|
|
* and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
|
|
* ZAC des vignes, 4 rue Jacques Monod, 91893 Orsay, France
|
|
*/
|
|
|
|
#include <isl_map_private.h>
|
|
#include <isl_space_private.h>
|
|
#include <isl_dim_map.h>
|
|
#include <isl_reordering.h>
|
|
|
|
struct isl_dim_map_entry {
|
|
int pos;
|
|
int sgn;
|
|
};
|
|
|
|
/* Maps dst positions to src positions */
|
|
struct isl_dim_map {
|
|
unsigned len;
|
|
struct isl_dim_map_entry m[1];
|
|
};
|
|
|
|
__isl_give isl_dim_map *isl_dim_map_alloc(isl_ctx *ctx, unsigned len)
|
|
{
|
|
int i;
|
|
struct isl_dim_map *dim_map;
|
|
dim_map = isl_alloc(ctx, struct isl_dim_map,
|
|
sizeof(struct isl_dim_map) + len * sizeof(struct isl_dim_map_entry));
|
|
if (!dim_map)
|
|
return NULL;
|
|
dim_map->len = 1 + len;
|
|
dim_map->m[0].pos = 0;
|
|
dim_map->m[0].sgn = 1;
|
|
for (i = 0; i < len; ++i)
|
|
dim_map->m[1 + i].sgn = 0;
|
|
return dim_map;
|
|
}
|
|
|
|
/* Free "dim_map" and return NULL.
|
|
*/
|
|
__isl_null isl_dim_map *isl_dim_map_free(__isl_take isl_dim_map *dim_map)
|
|
{
|
|
free(dim_map);
|
|
return NULL;
|
|
}
|
|
|
|
void isl_dim_map_range(__isl_keep isl_dim_map *dim_map,
|
|
unsigned dst_pos, int dst_stride, unsigned src_pos, int src_stride,
|
|
unsigned n, int sign)
|
|
{
|
|
int i;
|
|
|
|
if (!dim_map)
|
|
return;
|
|
|
|
for (i = 0; i < n; ++i) {
|
|
unsigned d = 1 + dst_pos + dst_stride * i;
|
|
unsigned s = 1 + src_pos + src_stride * i;
|
|
dim_map->m[d].pos = s;
|
|
dim_map->m[d].sgn = sign;
|
|
}
|
|
}
|
|
|
|
void isl_dim_map_dim_range(__isl_keep isl_dim_map *dim_map,
|
|
__isl_keep isl_space *space, enum isl_dim_type type,
|
|
unsigned first, unsigned n, unsigned dst_pos)
|
|
{
|
|
int i;
|
|
unsigned src_pos;
|
|
|
|
if (!dim_map || !space)
|
|
return;
|
|
|
|
src_pos = 1 + isl_space_offset(space, type);
|
|
for (i = 0; i < n; ++i) {
|
|
dim_map->m[1 + dst_pos + i].pos = src_pos + first + i;
|
|
dim_map->m[1 + dst_pos + i].sgn = 1;
|
|
}
|
|
}
|
|
|
|
void isl_dim_map_dim(__isl_keep isl_dim_map *dim_map,
|
|
__isl_keep isl_space *space, enum isl_dim_type type, unsigned dst_pos)
|
|
{
|
|
isl_size dim = isl_space_dim(space, type);
|
|
|
|
if (dim < 0)
|
|
return;
|
|
isl_dim_map_dim_range(dim_map, space, type, 0, dim, dst_pos);
|
|
}
|
|
|
|
void isl_dim_map_div(__isl_keep isl_dim_map *dim_map,
|
|
__isl_keep isl_basic_map *bmap, unsigned dst_pos)
|
|
{
|
|
int i;
|
|
unsigned src_pos;
|
|
|
|
if (!dim_map || !bmap)
|
|
return;
|
|
|
|
src_pos = isl_basic_map_offset(bmap, isl_dim_div);
|
|
for (i = 0; i < bmap->n_div; ++i) {
|
|
dim_map->m[1 + dst_pos + i].pos = src_pos + i;
|
|
dim_map->m[1 + dst_pos + i].sgn = 1;
|
|
}
|
|
}
|
|
|
|
void isl_dim_map_dump(struct isl_dim_map *dim_map)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < dim_map->len; ++i)
|
|
fprintf(stderr, "%d -> %d * %d; ", i,
|
|
dim_map->m[i].sgn, dim_map->m[i].pos);
|
|
fprintf(stderr, "\n");
|
|
}
|
|
|
|
static void copy_constraint_dim_map(isl_int *dst, isl_int *src,
|
|
struct isl_dim_map *dim_map)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < dim_map->len; ++i) {
|
|
if (dim_map->m[i].sgn == 0)
|
|
isl_int_set_si(dst[i], 0);
|
|
else if (dim_map->m[i].sgn > 0)
|
|
isl_int_set(dst[i], src[dim_map->m[i].pos]);
|
|
else
|
|
isl_int_neg(dst[i], src[dim_map->m[i].pos]);
|
|
}
|
|
}
|
|
|
|
static void copy_div_dim_map(isl_int *dst, isl_int *src,
|
|
struct isl_dim_map *dim_map)
|
|
{
|
|
isl_int_set(dst[0], src[0]);
|
|
copy_constraint_dim_map(dst+1, src+1, dim_map);
|
|
}
|
|
|
|
__isl_give isl_basic_map *isl_basic_map_add_constraints_dim_map(
|
|
__isl_take isl_basic_map *dst, __isl_take isl_basic_map *src,
|
|
__isl_take isl_dim_map *dim_map)
|
|
{
|
|
int i;
|
|
|
|
if (!src || !dst || !dim_map)
|
|
goto error;
|
|
|
|
for (i = 0; i < src->n_eq; ++i) {
|
|
int i1 = isl_basic_map_alloc_equality(dst);
|
|
if (i1 < 0)
|
|
goto error;
|
|
copy_constraint_dim_map(dst->eq[i1], src->eq[i], dim_map);
|
|
}
|
|
|
|
for (i = 0; i < src->n_ineq; ++i) {
|
|
int i1 = isl_basic_map_alloc_inequality(dst);
|
|
if (i1 < 0)
|
|
goto error;
|
|
copy_constraint_dim_map(dst->ineq[i1], src->ineq[i], dim_map);
|
|
}
|
|
|
|
for (i = 0; i < src->n_div; ++i) {
|
|
int i1 = isl_basic_map_alloc_div(dst);
|
|
if (i1 < 0)
|
|
goto error;
|
|
copy_div_dim_map(dst->div[i1], src->div[i], dim_map);
|
|
}
|
|
|
|
isl_dim_map_free(dim_map);
|
|
isl_basic_map_free(src);
|
|
|
|
return dst;
|
|
error:
|
|
isl_dim_map_free(dim_map);
|
|
isl_basic_map_free(src);
|
|
isl_basic_map_free(dst);
|
|
return NULL;
|
|
}
|
|
|
|
__isl_give isl_basic_set *isl_basic_set_add_constraints_dim_map(
|
|
__isl_take isl_basic_set *dst, __isl_take isl_basic_set *src,
|
|
__isl_take isl_dim_map *dim_map)
|
|
{
|
|
return isl_basic_map_add_constraints_dim_map(dst, src, dim_map);
|
|
}
|
|
|
|
/* Extend the given dim_map with mappings for the divs in bmap.
|
|
*/
|
|
__isl_give isl_dim_map *isl_dim_map_extend(__isl_keep isl_dim_map *dim_map,
|
|
__isl_keep isl_basic_map *bmap)
|
|
{
|
|
int i;
|
|
struct isl_dim_map *res;
|
|
int offset;
|
|
|
|
if (!dim_map)
|
|
return NULL;
|
|
|
|
offset = isl_basic_map_offset(bmap, isl_dim_div);
|
|
|
|
res = isl_dim_map_alloc(bmap->ctx, dim_map->len - 1 + bmap->n_div);
|
|
if (!res)
|
|
return NULL;
|
|
|
|
for (i = 0; i < dim_map->len; ++i)
|
|
res->m[i] = dim_map->m[i];
|
|
for (i = 0; i < bmap->n_div; ++i) {
|
|
res->m[dim_map->len + i].pos = offset + i;
|
|
res->m[dim_map->len + i].sgn = 1;
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
/* Extract a dim_map from a reordering.
|
|
* We essentially need to reverse the mapping, and add an offset
|
|
* of 1 for the constant term.
|
|
*/
|
|
__isl_give isl_dim_map *isl_dim_map_from_reordering(
|
|
__isl_keep isl_reordering *exp)
|
|
{
|
|
int i;
|
|
isl_ctx *ctx;
|
|
isl_size dim;
|
|
isl_space *space;
|
|
struct isl_dim_map *dim_map;
|
|
|
|
if (!exp)
|
|
return NULL;
|
|
|
|
ctx = isl_reordering_get_ctx(exp);
|
|
space = isl_reordering_peek_space(exp);
|
|
dim = isl_space_dim(space, isl_dim_all);
|
|
if (dim < 0)
|
|
return NULL;
|
|
dim_map = isl_dim_map_alloc(ctx, dim);
|
|
if (!dim_map)
|
|
return NULL;
|
|
|
|
for (i = 0; i < exp->len; ++i) {
|
|
dim_map->m[1 + exp->pos[i]].pos = 1 + i;
|
|
dim_map->m[1 + exp->pos[i]].sgn = 1;
|
|
}
|
|
|
|
return dim_map;
|
|
}
|