2015-02-05 04:55:43 +08:00
|
|
|
/*
|
|
|
|
* 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;
|
|
|
|
}
|
|
|
|
|
[Polly] Update ISL to isl-0.22.1-87-gfee05a13.
The primary motivation is to fix an assertion failure in
isl_basic_map_alloc_equality:
isl_assert(ctx, room_for_con(bmap, 1), return -1);
Although the assertion does not occur anymore, I could not identify
which of ISL's commits fixed it.
Compared to the previous ISL version, Polly requires some changes for this update
* Since ISL commit
20d3574 "perform parameter alignment by modifying both arguments to function"
isl_*_gist_* and similar functions do not always align the paramter
list anymore. This caused the parameter lists in JScop files to
become out-of-sync. Since many regression tests use JScop files with
a fixed parameter list and order, we explicitly call align_params to
ensure a predictable parameter list.
* ISL changed some return types to isl_size, a typedef of (signed) int.
This caused some issues where the return type was unsigned int before:
- No overload for std::max(unsigned,isl_size)
- It cause additional 'mixed signed/unsigned comparison' warnings.
Since they do not break compilation, and sizes larger than 2^31
were never supported, I am going to fix it separately.
* With the change to isl_size, commit
57d547 "isl_*_list_size: return isl_size"
also changed the return value in case of an error from 0 to -1. This
caused undefined looping over isl_iterator since the 'end iterator'
got index -1, never reached from the 'begin iterator' with index 0.
* Some internal changes in ISL caused the number of operations to
increase when determining access ranges to determine aliasing
overlaps. In one test, this caused exceeding the default limit of
800000. The operations-limit was disabled for this test.
2020-02-11 04:51:33 +08:00
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
|
2015-02-05 04:55:43 +08:00
|
|
|
void isl_dim_map_range(__isl_keep isl_dim_map *dim_map,
|
2017-07-04 23:54:11 +08:00
|
|
|
unsigned dst_pos, int dst_stride, unsigned src_pos, int src_stride,
|
2015-02-05 04:55:43 +08:00
|
|
|
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,
|
[Polly] Update ISL to isl-0.22.1-87-gfee05a13.
The primary motivation is to fix an assertion failure in
isl_basic_map_alloc_equality:
isl_assert(ctx, room_for_con(bmap, 1), return -1);
Although the assertion does not occur anymore, I could not identify
which of ISL's commits fixed it.
Compared to the previous ISL version, Polly requires some changes for this update
* Since ISL commit
20d3574 "perform parameter alignment by modifying both arguments to function"
isl_*_gist_* and similar functions do not always align the paramter
list anymore. This caused the parameter lists in JScop files to
become out-of-sync. Since many regression tests use JScop files with
a fixed parameter list and order, we explicitly call align_params to
ensure a predictable parameter list.
* ISL changed some return types to isl_size, a typedef of (signed) int.
This caused some issues where the return type was unsigned int before:
- No overload for std::max(unsigned,isl_size)
- It cause additional 'mixed signed/unsigned comparison' warnings.
Since they do not break compilation, and sizes larger than 2^31
were never supported, I am going to fix it separately.
* With the change to isl_size, commit
57d547 "isl_*_list_size: return isl_size"
also changed the return value in case of an error from 0 to -1. This
caused undefined looping over isl_iterator since the 'end iterator'
got index -1, never reached from the 'begin iterator' with index 0.
* Some internal changes in ISL caused the number of operations to
increase when determining access ranges to determine aliasing
overlaps. In one test, this caused exceeding the default limit of
800000. The operations-limit was disabled for this test.
2020-02-11 04:51:33 +08:00
|
|
|
__isl_keep isl_space *space, enum isl_dim_type type,
|
2015-02-05 04:55:43 +08:00
|
|
|
unsigned first, unsigned n, unsigned dst_pos)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
unsigned src_pos;
|
|
|
|
|
[Polly] Update ISL to isl-0.22.1-87-gfee05a13.
The primary motivation is to fix an assertion failure in
isl_basic_map_alloc_equality:
isl_assert(ctx, room_for_con(bmap, 1), return -1);
Although the assertion does not occur anymore, I could not identify
which of ISL's commits fixed it.
Compared to the previous ISL version, Polly requires some changes for this update
* Since ISL commit
20d3574 "perform parameter alignment by modifying both arguments to function"
isl_*_gist_* and similar functions do not always align the paramter
list anymore. This caused the parameter lists in JScop files to
become out-of-sync. Since many regression tests use JScop files with
a fixed parameter list and order, we explicitly call align_params to
ensure a predictable parameter list.
* ISL changed some return types to isl_size, a typedef of (signed) int.
This caused some issues where the return type was unsigned int before:
- No overload for std::max(unsigned,isl_size)
- It cause additional 'mixed signed/unsigned comparison' warnings.
Since they do not break compilation, and sizes larger than 2^31
were never supported, I am going to fix it separately.
* With the change to isl_size, commit
57d547 "isl_*_list_size: return isl_size"
also changed the return value in case of an error from 0 to -1. This
caused undefined looping over isl_iterator since the 'end iterator'
got index -1, never reached from the 'begin iterator' with index 0.
* Some internal changes in ISL caused the number of operations to
increase when determining access ranges to determine aliasing
overlaps. In one test, this caused exceeding the default limit of
800000. The operations-limit was disabled for this test.
2020-02-11 04:51:33 +08:00
|
|
|
if (!dim_map || !space)
|
2015-02-05 04:55:43 +08:00
|
|
|
return;
|
|
|
|
|
[Polly] Update ISL to isl-0.22.1-87-gfee05a13.
The primary motivation is to fix an assertion failure in
isl_basic_map_alloc_equality:
isl_assert(ctx, room_for_con(bmap, 1), return -1);
Although the assertion does not occur anymore, I could not identify
which of ISL's commits fixed it.
Compared to the previous ISL version, Polly requires some changes for this update
* Since ISL commit
20d3574 "perform parameter alignment by modifying both arguments to function"
isl_*_gist_* and similar functions do not always align the paramter
list anymore. This caused the parameter lists in JScop files to
become out-of-sync. Since many regression tests use JScop files with
a fixed parameter list and order, we explicitly call align_params to
ensure a predictable parameter list.
* ISL changed some return types to isl_size, a typedef of (signed) int.
This caused some issues where the return type was unsigned int before:
- No overload for std::max(unsigned,isl_size)
- It cause additional 'mixed signed/unsigned comparison' warnings.
Since they do not break compilation, and sizes larger than 2^31
were never supported, I am going to fix it separately.
* With the change to isl_size, commit
57d547 "isl_*_list_size: return isl_size"
also changed the return value in case of an error from 0 to -1. This
caused undefined looping over isl_iterator since the 'end iterator'
got index -1, never reached from the 'begin iterator' with index 0.
* Some internal changes in ISL caused the number of operations to
increase when determining access ranges to determine aliasing
overlaps. In one test, this caused exceeding the default limit of
800000. The operations-limit was disabled for this test.
2020-02-11 04:51:33 +08:00
|
|
|
src_pos = 1 + isl_space_offset(space, type);
|
2015-02-05 04:55:43 +08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
[Polly] Update ISL to isl-0.22.1-87-gfee05a13.
The primary motivation is to fix an assertion failure in
isl_basic_map_alloc_equality:
isl_assert(ctx, room_for_con(bmap, 1), return -1);
Although the assertion does not occur anymore, I could not identify
which of ISL's commits fixed it.
Compared to the previous ISL version, Polly requires some changes for this update
* Since ISL commit
20d3574 "perform parameter alignment by modifying both arguments to function"
isl_*_gist_* and similar functions do not always align the paramter
list anymore. This caused the parameter lists in JScop files to
become out-of-sync. Since many regression tests use JScop files with
a fixed parameter list and order, we explicitly call align_params to
ensure a predictable parameter list.
* ISL changed some return types to isl_size, a typedef of (signed) int.
This caused some issues where the return type was unsigned int before:
- No overload for std::max(unsigned,isl_size)
- It cause additional 'mixed signed/unsigned comparison' warnings.
Since they do not break compilation, and sizes larger than 2^31
were never supported, I am going to fix it separately.
* With the change to isl_size, commit
57d547 "isl_*_list_size: return isl_size"
also changed the return value in case of an error from 0 to -1. This
caused undefined looping over isl_iterator since the 'end iterator'
got index -1, never reached from the 'begin iterator' with index 0.
* Some internal changes in ISL caused the number of operations to
increase when determining access ranges to determine aliasing
overlaps. In one test, this caused exceeding the default limit of
800000. The operations-limit was disabled for this test.
2020-02-11 04:51:33 +08:00
|
|
|
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)
|
2015-02-05 04:55:43 +08:00
|
|
|
{
|
[Polly] Update ISL to isl-0.22.1-87-gfee05a13.
The primary motivation is to fix an assertion failure in
isl_basic_map_alloc_equality:
isl_assert(ctx, room_for_con(bmap, 1), return -1);
Although the assertion does not occur anymore, I could not identify
which of ISL's commits fixed it.
Compared to the previous ISL version, Polly requires some changes for this update
* Since ISL commit
20d3574 "perform parameter alignment by modifying both arguments to function"
isl_*_gist_* and similar functions do not always align the paramter
list anymore. This caused the parameter lists in JScop files to
become out-of-sync. Since many regression tests use JScop files with
a fixed parameter list and order, we explicitly call align_params to
ensure a predictable parameter list.
* ISL changed some return types to isl_size, a typedef of (signed) int.
This caused some issues where the return type was unsigned int before:
- No overload for std::max(unsigned,isl_size)
- It cause additional 'mixed signed/unsigned comparison' warnings.
Since they do not break compilation, and sizes larger than 2^31
were never supported, I am going to fix it separately.
* With the change to isl_size, commit
57d547 "isl_*_list_size: return isl_size"
also changed the return value in case of an error from 0 to -1. This
caused undefined looping over isl_iterator since the 'end iterator'
got index -1, never reached from the 'begin iterator' with index 0.
* Some internal changes in ISL caused the number of operations to
increase when determining access ranges to determine aliasing
overlaps. In one test, this caused exceeding the default limit of
800000. The operations-limit was disabled for this test.
2020-02-11 04:51:33 +08:00
|
|
|
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);
|
2015-02-05 04:55:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
[Polly] Update ISL to isl-0.22.1-87-gfee05a13.
The primary motivation is to fix an assertion failure in
isl_basic_map_alloc_equality:
isl_assert(ctx, room_for_con(bmap, 1), return -1);
Although the assertion does not occur anymore, I could not identify
which of ISL's commits fixed it.
Compared to the previous ISL version, Polly requires some changes for this update
* Since ISL commit
20d3574 "perform parameter alignment by modifying both arguments to function"
isl_*_gist_* and similar functions do not always align the paramter
list anymore. This caused the parameter lists in JScop files to
become out-of-sync. Since many regression tests use JScop files with
a fixed parameter list and order, we explicitly call align_params to
ensure a predictable parameter list.
* ISL changed some return types to isl_size, a typedef of (signed) int.
This caused some issues where the return type was unsigned int before:
- No overload for std::max(unsigned,isl_size)
- It cause additional 'mixed signed/unsigned comparison' warnings.
Since they do not break compilation, and sizes larger than 2^31
were never supported, I am going to fix it separately.
* With the change to isl_size, commit
57d547 "isl_*_list_size: return isl_size"
also changed the return value in case of an error from 0 to -1. This
caused undefined looping over isl_iterator since the 'end iterator'
got index -1, never reached from the 'begin iterator' with index 0.
* Some internal changes in ISL caused the number of operations to
increase when determining access ranges to determine aliasing
overlaps. In one test, this caused exceeding the default limit of
800000. The operations-limit was disabled for this test.
2020-02-11 04:51:33 +08:00
|
|
|
src_pos = isl_basic_map_offset(bmap, isl_dim_div);
|
2015-02-05 04:55:43 +08:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
[Polly] Update ISL to isl-0.22.1-87-gfee05a13.
The primary motivation is to fix an assertion failure in
isl_basic_map_alloc_equality:
isl_assert(ctx, room_for_con(bmap, 1), return -1);
Although the assertion does not occur anymore, I could not identify
which of ISL's commits fixed it.
Compared to the previous ISL version, Polly requires some changes for this update
* Since ISL commit
20d3574 "perform parameter alignment by modifying both arguments to function"
isl_*_gist_* and similar functions do not always align the paramter
list anymore. This caused the parameter lists in JScop files to
become out-of-sync. Since many regression tests use JScop files with
a fixed parameter list and order, we explicitly call align_params to
ensure a predictable parameter list.
* ISL changed some return types to isl_size, a typedef of (signed) int.
This caused some issues where the return type was unsigned int before:
- No overload for std::max(unsigned,isl_size)
- It cause additional 'mixed signed/unsigned comparison' warnings.
Since they do not break compilation, and sizes larger than 2^31
were never supported, I am going to fix it separately.
* With the change to isl_size, commit
57d547 "isl_*_list_size: return isl_size"
also changed the return value in case of an error from 0 to -1. This
caused undefined looping over isl_iterator since the 'end iterator'
got index -1, never reached from the 'begin iterator' with index 0.
* Some internal changes in ISL caused the number of operations to
increase when determining access ranges to determine aliasing
overlaps. In one test, this caused exceeding the default limit of
800000. The operations-limit was disabled for this test.
2020-02-11 04:51:33 +08:00
|
|
|
isl_dim_map_free(dim_map);
|
2015-02-05 04:55:43 +08:00
|
|
|
isl_basic_map_free(src);
|
|
|
|
|
|
|
|
return dst;
|
|
|
|
error:
|
[Polly] Update ISL to isl-0.22.1-87-gfee05a13.
The primary motivation is to fix an assertion failure in
isl_basic_map_alloc_equality:
isl_assert(ctx, room_for_con(bmap, 1), return -1);
Although the assertion does not occur anymore, I could not identify
which of ISL's commits fixed it.
Compared to the previous ISL version, Polly requires some changes for this update
* Since ISL commit
20d3574 "perform parameter alignment by modifying both arguments to function"
isl_*_gist_* and similar functions do not always align the paramter
list anymore. This caused the parameter lists in JScop files to
become out-of-sync. Since many regression tests use JScop files with
a fixed parameter list and order, we explicitly call align_params to
ensure a predictable parameter list.
* ISL changed some return types to isl_size, a typedef of (signed) int.
This caused some issues where the return type was unsigned int before:
- No overload for std::max(unsigned,isl_size)
- It cause additional 'mixed signed/unsigned comparison' warnings.
Since they do not break compilation, and sizes larger than 2^31
were never supported, I am going to fix it separately.
* With the change to isl_size, commit
57d547 "isl_*_list_size: return isl_size"
also changed the return value in case of an error from 0 to -1. This
caused undefined looping over isl_iterator since the 'end iterator'
got index -1, never reached from the 'begin iterator' with index 0.
* Some internal changes in ISL caused the number of operations to
increase when determining access ranges to determine aliasing
overlaps. In one test, this caused exceeding the default limit of
800000. The operations-limit was disabled for this test.
2020-02-11 04:51:33 +08:00
|
|
|
isl_dim_map_free(dim_map);
|
2015-02-05 04:55:43 +08:00
|
|
|
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;
|
|
|
|
|
2017-02-23 20:48:42 +08:00
|
|
|
if (!dim_map)
|
|
|
|
return NULL;
|
|
|
|
|
2015-02-05 04:55:43 +08:00
|
|
|
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;
|
[Polly] Update ISL to isl-0.22.1-87-gfee05a13.
The primary motivation is to fix an assertion failure in
isl_basic_map_alloc_equality:
isl_assert(ctx, room_for_con(bmap, 1), return -1);
Although the assertion does not occur anymore, I could not identify
which of ISL's commits fixed it.
Compared to the previous ISL version, Polly requires some changes for this update
* Since ISL commit
20d3574 "perform parameter alignment by modifying both arguments to function"
isl_*_gist_* and similar functions do not always align the paramter
list anymore. This caused the parameter lists in JScop files to
become out-of-sync. Since many regression tests use JScop files with
a fixed parameter list and order, we explicitly call align_params to
ensure a predictable parameter list.
* ISL changed some return types to isl_size, a typedef of (signed) int.
This caused some issues where the return type was unsigned int before:
- No overload for std::max(unsigned,isl_size)
- It cause additional 'mixed signed/unsigned comparison' warnings.
Since they do not break compilation, and sizes larger than 2^31
were never supported, I am going to fix it separately.
* With the change to isl_size, commit
57d547 "isl_*_list_size: return isl_size"
also changed the return value in case of an error from 0 to -1. This
caused undefined looping over isl_iterator since the 'end iterator'
got index -1, never reached from the 'begin iterator' with index 0.
* Some internal changes in ISL caused the number of operations to
increase when determining access ranges to determine aliasing
overlaps. In one test, this caused exceeding the default limit of
800000. The operations-limit was disabled for this test.
2020-02-11 04:51:33 +08:00
|
|
|
isl_size dim;
|
2018-05-24 04:18:50 +08:00
|
|
|
isl_space *space;
|
2015-02-05 04:55:43 +08:00
|
|
|
struct isl_dim_map *dim_map;
|
|
|
|
|
|
|
|
if (!exp)
|
|
|
|
return NULL;
|
|
|
|
|
2018-05-24 04:18:50 +08:00
|
|
|
ctx = isl_reordering_get_ctx(exp);
|
|
|
|
space = isl_reordering_peek_space(exp);
|
[Polly] Update ISL to isl-0.22.1-87-gfee05a13.
The primary motivation is to fix an assertion failure in
isl_basic_map_alloc_equality:
isl_assert(ctx, room_for_con(bmap, 1), return -1);
Although the assertion does not occur anymore, I could not identify
which of ISL's commits fixed it.
Compared to the previous ISL version, Polly requires some changes for this update
* Since ISL commit
20d3574 "perform parameter alignment by modifying both arguments to function"
isl_*_gist_* and similar functions do not always align the paramter
list anymore. This caused the parameter lists in JScop files to
become out-of-sync. Since many regression tests use JScop files with
a fixed parameter list and order, we explicitly call align_params to
ensure a predictable parameter list.
* ISL changed some return types to isl_size, a typedef of (signed) int.
This caused some issues where the return type was unsigned int before:
- No overload for std::max(unsigned,isl_size)
- It cause additional 'mixed signed/unsigned comparison' warnings.
Since they do not break compilation, and sizes larger than 2^31
were never supported, I am going to fix it separately.
* With the change to isl_size, commit
57d547 "isl_*_list_size: return isl_size"
also changed the return value in case of an error from 0 to -1. This
caused undefined looping over isl_iterator since the 'end iterator'
got index -1, never reached from the 'begin iterator' with index 0.
* Some internal changes in ISL caused the number of operations to
increase when determining access ranges to determine aliasing
overlaps. In one test, this caused exceeding the default limit of
800000. The operations-limit was disabled for this test.
2020-02-11 04:51:33 +08:00
|
|
|
dim = isl_space_dim(space, isl_dim_all);
|
|
|
|
if (dim < 0)
|
|
|
|
return NULL;
|
|
|
|
dim_map = isl_dim_map_alloc(ctx, dim);
|
2015-02-05 04:55:43 +08:00
|
|
|
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;
|
|
|
|
}
|