2 * Copyright 2010 INRIA Saclay
4 * Use of this software is governed by the GNU LGPLv2.1 license
6 * Written by Sven Verdoolaege, INRIA Saclay - Ile-de-France,
7 * Parc Club Orsay Universite, ZAC des vignes, 4 rue Jacques Monod,
11 #include <isl_ctx_private.h>
12 #include <isl_dim_private.h>
13 #include <isl_reordering.h>
15 __isl_give isl_reordering
*isl_reordering_alloc(isl_ctx
*ctx
, int len
)
19 exp
= isl_alloc(ctx
, struct isl_reordering
,
20 sizeof(struct isl_reordering
) + (len
- 1) * sizeof(int));
31 __isl_give isl_reordering
*isl_reordering_copy(__isl_keep isl_reordering
*exp
)
40 void isl_reordering_free(__isl_take isl_reordering
*exp
)
48 isl_dim_free(exp
->dim
);
52 /* Construct a reordering that maps the parameters of "alignee"
53 * to the corresponding parameters in a new dimension specification
54 * that has the parameters of "aligner" first, followed by
55 * any remaining parameters of "alignee" that do not occur in "aligner".
57 __isl_give isl_reordering
*isl_parameter_alignment_reordering(
58 __isl_keep isl_dim
*alignee
, __isl_keep isl_dim
*aligner
)
63 if (!alignee
|| !aligner
)
66 exp
= isl_reordering_alloc(alignee
->ctx
, alignee
->nparam
);
70 exp
->dim
= isl_dim_copy(aligner
);
72 for (i
= 0; i
< alignee
->nparam
; ++i
) {
74 name_i
= isl_dim_get_name(alignee
, isl_dim_param
, i
);
76 isl_die(alignee
->ctx
, isl_error_invalid
,
77 "cannot align unnamed parameters", goto error
);
78 for (j
= 0; j
< aligner
->nparam
; ++j
) {
80 name_j
= isl_dim_get_name(aligner
, isl_dim_param
, j
);
84 if (j
< aligner
->nparam
)
88 pos
= isl_dim_size(exp
->dim
, isl_dim_param
);
89 exp
->dim
= isl_dim_add(exp
->dim
, isl_dim_param
, 1);
90 exp
->dim
= isl_dim_set_name(exp
->dim
,
91 isl_dim_param
, pos
, name_i
);
98 isl_reordering_free(exp
);
102 __isl_give isl_reordering
*isl_reordering_extend(__isl_take isl_reordering
*exp
,
114 offset
= isl_dim_total(exp
->dim
) - exp
->len
;
115 res
= isl_reordering_alloc(exp
->dim
->ctx
, exp
->len
+ extra
);
118 res
->dim
= isl_dim_copy(exp
->dim
);
119 for (i
= 0; i
< exp
->len
; ++i
)
120 res
->pos
[i
] = exp
->pos
[i
];
121 for (i
= exp
->len
; i
< res
->len
; ++i
)
122 res
->pos
[i
] = offset
+ i
;
124 isl_reordering_free(exp
);
128 isl_reordering_free(exp
);
132 __isl_give isl_reordering
*isl_reordering_extend_dim(
133 __isl_take isl_reordering
*exp
, __isl_take isl_dim
*dim
)
140 res
= isl_reordering_extend(isl_reordering_copy(exp
),
141 isl_dim_total(dim
) - exp
->len
);
144 isl_dim_free(res
->dim
);
145 res
->dim
= isl_dim_replace(dim
, isl_dim_param
, exp
->dim
);
147 isl_reordering_free(exp
);
151 isl_reordering_free(exp
);
156 void isl_reordering_dump(__isl_keep isl_reordering
*exp
)
160 for (i
= 0; i
< exp
->len
; ++i
)
161 fprintf(stderr
, "%d -> %d; ", i
, exp
->pos
[i
]);
162 fprintf(stderr
, "\n");