2 * Copyright 2008-2009 Katholieke Universiteit Leuven
4 * Use of this software is governed by the GNU LGPLv2.1 license
6 * Written by Sven Verdoolaege, K.U.Leuven, Departement
7 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
10 #include <isl_map_private.h>
13 #include <isl_dim_private.h>
16 static unsigned n(struct isl_div
*d
, enum isl_dim_type type
)
18 struct isl_dim
*dim
= d
->bmap
->dim
;
20 case isl_dim_param
: return dim
->nparam
;
21 case isl_dim_in
: return dim
->n_in
;
22 case isl_dim_out
: return dim
->n_out
;
23 case isl_dim_div
: return d
->bmap
->n_div
;
28 unsigned isl_div_dim(__isl_keep isl_div
*div
, enum isl_dim_type type
)
33 static unsigned offset(struct isl_div
*d
, enum isl_dim_type type
)
35 struct isl_dim
*dim
= d
->bmap
->dim
;
37 case isl_dim_param
: return 1 + 1;
38 case isl_dim_in
: return 1 + 1 + dim
->nparam
;
39 case isl_dim_out
: return 1 + 1 + dim
->nparam
+ dim
->n_in
;
40 case isl_dim_div
: return 1 + 1 + dim
->nparam
+ dim
->n_in
+ dim
->n_out
;
45 struct isl_div
*isl_basic_map_div(struct isl_basic_map
*bmap
, int pos
)
52 isl_assert(bmap
->ctx
, pos
< bmap
->n_div
, goto error
);
54 div
= isl_alloc_type(bmap
->ctx
, struct isl_div
);
59 isl_ctx_ref(div
->ctx
);
62 div
->line
= &bmap
->div
[pos
];
66 isl_basic_map_free(bmap
);
70 struct isl_div
*isl_basic_set_div(struct isl_basic_set
*bset
, int pos
)
72 return isl_basic_map_div((struct isl_basic_map
*)bset
, pos
);
75 __isl_give isl_div
*isl_div_div(__isl_take isl_div
*div
, int pos
)
80 bmap
= isl_basic_map_copy(div
->bmap
);
82 return isl_basic_map_div(bmap
, pos
);
85 struct isl_div
*isl_div_alloc(struct isl_dim
*dim
)
87 struct isl_basic_map
*bmap
;
92 bmap
= isl_basic_map_alloc_dim(dim
, 1, 0, 0);
96 isl_basic_map_alloc_div(bmap
);
97 isl_seq_clr(bmap
->div
[0], 1 + 1 + isl_basic_map_total_dim(bmap
));
98 return isl_basic_map_div(bmap
, 0);
101 __isl_give isl_div
*isl_div_copy(__isl_keep isl_div
*div
)
110 void isl_div_free(struct isl_div
*c
)
118 isl_basic_map_free(c
->bmap
);
119 isl_ctx_deref(c
->ctx
);
123 void isl_div_get_constant(struct isl_div
*div
, isl_int
*v
)
127 isl_int_set(*v
, div
->line
[0][1]);
130 void isl_div_get_denominator(struct isl_div
*div
, isl_int
*v
)
134 isl_int_set(*v
, div
->line
[0][0]);
137 void isl_div_get_coefficient(struct isl_div
*div
,
138 enum isl_dim_type type
, int pos
, isl_int
*v
)
143 isl_assert(div
->ctx
, pos
< n(div
, type
), return);
144 isl_int_set(*v
, div
->line
[0][offset(div
, type
) + pos
]);
147 void isl_div_set_constant(struct isl_div
*div
, isl_int v
)
151 isl_int_set(div
->line
[0][1], v
);
154 void isl_div_set_denominator(struct isl_div
*div
, isl_int v
)
158 isl_int_set(div
->line
[0][0], v
);
161 void isl_div_set_coefficient(struct isl_div
*div
,
162 enum isl_dim_type type
, int pos
, isl_int v
)
167 isl_assert(div
->ctx
, pos
< n(div
, type
), return);
168 isl_int_set(div
->line
[0][offset(div
, type
) + pos
], v
);