add isl_pw_qpolynomial_split_periods
[isl.git] / isl_union_templ.c
blob4fa60f369bb284f15940bc307926aba6899d95e9
1 /*
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,
8 * 91893 Orsay, France
9 */
11 #define xFN(TYPE,NAME) TYPE ## _ ## NAME
12 #define FN(TYPE,NAME) xFN(TYPE,NAME)
13 #define xS(TYPE,NAME) struct TYPE ## _ ## NAME
14 #define S(TYPE,NAME) xS(TYPE,NAME)
16 struct UNION {
17 int ref;
18 #ifdef HAS_TYPE
19 enum isl_fold type;
20 #endif
21 isl_dim *dim;
23 struct isl_hash_table table;
26 __isl_give UNION *FN(UNION,cow)(__isl_take UNION *u);
28 isl_ctx *FN(UNION,get_ctx)(__isl_keep UNION *u)
30 return u ? u->dim->ctx : NULL;
33 __isl_give isl_dim *FN(UNION,get_dim)(__isl_keep UNION *u)
35 if (!u)
36 return NULL;
37 return isl_dim_copy(u->dim);
40 #ifdef HAS_TYPE
41 static __isl_give UNION *FN(UNION,alloc)(__isl_take isl_dim *dim,
42 enum isl_fold type, int size)
43 #else
44 static __isl_give UNION *FN(UNION,alloc)(__isl_take isl_dim *dim, int size)
45 #endif
47 UNION *u;
49 u = isl_calloc_type(ctx, UNION);
50 if (!u)
51 return NULL;
53 u->ref = 1;
54 #ifdef HAS_TYPE
55 u->type = type;
56 #endif
57 u->dim = dim;
58 if (isl_hash_table_init(dim->ctx, &u->table, size) < 0)
59 goto error;
61 return u;
62 error:
63 isl_dim_free(dim);
64 FN(UNION,free)(u);
65 return NULL;
68 #ifdef HAS_TYPE
69 __isl_give UNION *FN(UNION,zero)(__isl_take isl_dim *dim, enum isl_fold type)
71 return FN(UNION,alloc)(dim, type, 16);
73 #else
74 __isl_give UNION *FN(UNION,zero)(__isl_take isl_dim *dim)
76 return FN(UNION,alloc)(dim, 16);
78 #endif
80 __isl_give UNION *FN(UNION,copy)(__isl_keep UNION *u)
82 if (!u)
83 return NULL;
85 u->ref++;
86 return u;
89 S(UNION,foreach_data)
91 int (*fn)(__isl_take PART *part, void *user);
92 void *user;
95 static int call_on_copy(void **entry, void *user)
97 PART *part = *entry;
98 S(UNION,foreach_data) *data = (S(UNION,foreach_data) *)user;
100 return data->fn(FN(PART,copy)(part), data->user);
103 int FN(FN(UNION,foreach),PARTS)(__isl_keep UNION *u,
104 int (*fn)(__isl_take PART *part, void *user), void *user)
106 S(UNION,foreach_data) data = { fn, user };
108 if (!u)
109 return -1;
111 return isl_hash_table_foreach(u->dim->ctx, &u->table,
112 &call_on_copy, &data);
115 static int has_dim(const void *entry, const void *val)
117 PART *part = (PART *)entry;
118 isl_dim *dim = (isl_dim *)val;
120 return isl_dim_equal(part->dim, dim);
123 __isl_give UNION *FN(FN(UNION,add),PARTS)(__isl_take UNION *u,
124 __isl_take PART *part)
126 uint32_t hash;
127 struct isl_hash_table_entry *entry;
129 if (!part)
130 goto error;
132 if (FN(PART,is_zero)(part)) {
133 FN(PART,free)(part);
134 return u;
137 u = FN(UNION,cow)(u);
139 if (!u)
140 goto error;
142 isl_assert(u->dim->ctx, isl_dim_match(part->dim, isl_dim_param, u->dim,
143 isl_dim_param), goto error);
145 hash = isl_dim_get_hash(part->dim);
146 entry = isl_hash_table_find(u->dim->ctx, &u->table, hash,
147 &has_dim, part->dim, 1);
148 if (!entry)
149 goto error;
151 if (!entry->data)
152 entry->data = part;
153 else {
154 entry->data = FN(PART,add)(entry->data, FN(PART,copy)(part));
155 if (!entry->data)
156 goto error;
157 FN(PART,free)(part);
158 if (FN(PART,is_zero)(entry->data)) {
159 FN(PART,free)(entry->data);
160 isl_hash_table_remove(u->dim->ctx, &u->table, entry);
164 return u;
165 error:
166 FN(PART,free)(part);
167 FN(UNION,free)(u);
168 return NULL;
171 static int add_part(__isl_take PART *part, void *user)
173 UNION **u = (UNION **)user;
175 *u = FN(FN(UNION,add),PARTS)(*u, part);
177 return 0;
180 __isl_give UNION *FN(UNION,dup)(__isl_keep UNION *u)
182 UNION *dup;
184 if (!u)
185 return NULL;
187 #ifdef HAS_TYPE
188 dup = FN(UNION,zero)(isl_dim_copy(u->dim), u->type);
189 #else
190 dup = FN(UNION,zero)(isl_dim_copy(u->dim));
191 #endif
192 if (FN(FN(UNION,foreach),PARTS)(u, &add_part, &dup) < 0)
193 goto error;
194 return dup;
195 error:
196 FN(UNION,free)(dup);
197 return NULL;
200 __isl_give UNION *FN(UNION,cow)(__isl_take UNION *u)
202 if (!u)
203 return NULL;
205 if (u->ref == 1)
206 return u;
207 u->ref--;
208 return FN(UNION,dup)(u);
211 static int free_u_entry(void **entry, void *user)
213 PART *part = *entry;
214 FN(PART,free)(part);
215 return 0;
218 void FN(UNION,free)(__isl_take UNION *u)
220 if (!u)
221 return;
223 if (--u->ref > 0)
224 return;
226 isl_hash_table_foreach(u->dim->ctx, &u->table, &free_u_entry, NULL);
227 isl_hash_table_clear(&u->table);
228 isl_dim_free(u->dim);
229 free(u);
232 S(UNION,align) {
233 isl_reordering *exp;
234 UNION *res;
237 static int align_entry(__isl_take PART *part, void *user)
239 isl_reordering *exp;
240 S(UNION,align) *data = user;
242 exp = isl_reordering_extend_dim(isl_reordering_copy(data->exp),
243 FN(PART,get_dim)(part));
245 data->res = FN(FN(UNION,add),PARTS)(data->res,
246 FN(PART,realign)(part, exp));
248 return 0;
251 __isl_give UNION *FN(UNION,align_params)(__isl_take UNION *u,
252 __isl_take isl_dim *model)
254 int i, j;
255 S(UNION,align) data = { NULL, NULL };
257 if (!u || !model)
258 goto error;
260 if (isl_dim_match(u->dim, isl_dim_param, model, isl_dim_param)) {
261 isl_dim_free(model);
262 return u;
265 data.exp = isl_parameter_alignment_reordering(u->dim, model);
266 if (!data.exp)
267 goto error;
269 #ifdef HAS_TYPE
270 data.res = FN(UNION,alloc)(isl_dim_copy(data.exp->dim),
271 u->type, u->table.n);
272 #else
273 data.res = FN(UNION,alloc)(isl_dim_copy(data.exp->dim), u->table.n);
274 #endif
275 if (FN(FN(UNION,foreach),PARTS)(u, &align_entry, &data) < 0)
276 goto error;
278 isl_reordering_free(data.exp);
279 FN(UNION,free)(u);
280 isl_dim_free(model);
281 return data.res;
282 error:
283 isl_reordering_free(data.exp);
284 FN(UNION,free)(u);
285 FN(UNION,free)(data.res);
286 isl_dim_free(model);
287 return NULL;
290 __isl_give UNION *FN(UNION,add)(__isl_take UNION *u1, __isl_take UNION *u2)
292 u1 = FN(UNION,align_params)(u1, FN(UNION,get_dim)(u2));
293 u2 = FN(UNION,align_params)(u2, FN(UNION,get_dim)(u1));
295 u1 = FN(UNION,cow)(u1);
297 if (!u1 || !u2)
298 goto error;
300 if (FN(FN(UNION,foreach),PARTS)(u2, &add_part, &u1) < 0)
301 goto error;
303 FN(UNION,free)(u2);
305 return u1;
306 error:
307 FN(UNION,free)(u1);
308 FN(UNION,free)(u2);
309 return NULL;
312 __isl_give UNION *FN(FN(UNION,from),PARTS)(__isl_take PART *part)
314 isl_dim *dim;
315 UNION *u;
317 if (!part)
318 return NULL;
320 dim = FN(PART,get_dim)(part);
321 dim = isl_dim_drop(dim, isl_dim_in, 0, isl_dim_size(dim, isl_dim_in));
322 dim = isl_dim_drop(dim, isl_dim_out, 0, isl_dim_size(dim, isl_dim_out));
323 #ifdef HAS_TYPE
324 u = FN(UNION,zero)(dim, part->type);
325 #else
326 u = FN(UNION,zero)(dim);
327 #endif
328 u = FN(FN(UNION,add),PARTS)(u, part);
330 return u;
333 S(UNION,match_bin_data) {
334 UNION *u2;
335 UNION *res;
338 static __isl_give UNION *match_bin_op(__isl_take UNION *u1,
339 __isl_take UNION *u2, int (*fn)(void **, void *))
341 S(UNION,match_bin_data) data = { NULL, NULL };
343 u1 = FN(UNION,align_params)(u1, FN(UNION,get_dim)(u2));
344 u2 = FN(UNION,align_params)(u2, FN(UNION,get_dim)(u1));
346 if (!u1 || !u2)
347 goto error;
349 data.u2 = u2;
350 #ifdef HAS_TYPE
351 data.res = FN(UNION,alloc)(isl_dim_copy(u1->dim), u1->type, u1->table.n);
352 #else
353 data.res = FN(UNION,alloc)(isl_dim_copy(u1->dim), u1->table.n);
354 #endif
355 if (isl_hash_table_foreach(u1->dim->ctx, &u1->table, fn, &data) < 0)
356 goto error;
358 FN(UNION,free)(u1);
359 FN(UNION,free)(u2);
360 return data.res;
361 error:
362 FN(UNION,free)(u1);
363 FN(UNION,free)(u2);
364 FN(UNION,free)(data.res);
365 return NULL;
368 S(UNION,match_set_data) {
369 isl_union_set *uset;
370 UNION *res;
371 __isl_give PW *(*fn)(__isl_take PW*, __isl_take isl_set*);
374 static int set_has_dim(const void *entry, const void *val)
376 isl_set *set = (isl_set *)entry;
377 isl_dim *dim = (isl_dim *)val;
379 return isl_dim_equal(set->dim, dim);
382 static int match_set_entry(void **entry, void *user)
384 S(UNION,match_set_data) *data = user;
385 uint32_t hash;
386 struct isl_hash_table_entry *entry2;
387 isl_dim *dim;
388 PW *pw = *entry;
389 int empty;
391 hash = isl_dim_get_hash(pw->dim);
392 entry2 = isl_hash_table_find(data->uset->dim->ctx, &data->uset->table,
393 hash, &set_has_dim, pw->dim, 0);
394 if (!entry2)
395 return 0;
397 pw = FN(PW,copy)(pw);
398 pw = data->fn(pw, isl_set_copy(entry2->data));
400 empty = FN(PW,is_zero)(pw);
401 if (empty < 0) {
402 FN(PW,free)(pw);
403 return -1;
405 if (empty) {
406 FN(PW,free)(pw);
407 return 0;
410 data->res = FN(FN(UNION,add),PARTS)(data->res, pw);
412 return 0;
415 static __isl_give UNION *match_set_op(__isl_take UNION *u,
416 __isl_take isl_union_set *uset,
417 __isl_give PW *(*fn)(__isl_take PW*, __isl_take isl_set*))
419 S(UNION,match_set_data) data = { NULL, NULL, fn };
421 u = FN(UNION,align_params)(u, isl_union_set_get_dim(uset));
422 uset = isl_union_set_align_params(uset, FN(UNION,get_dim)(u));
424 if (!u || !uset)
425 goto error;
427 data.uset = uset;
428 #ifdef HAS_TYPE
429 data.res = FN(UNION,alloc)(isl_dim_copy(u->dim), u->type, u->table.n);
430 #else
431 data.res = FN(UNION,alloc)(isl_dim_copy(u->dim), u->table.n);
432 #endif
433 if (isl_hash_table_foreach(u->dim->ctx, &u->table,
434 &match_set_entry, &data) < 0)
435 goto error;
437 FN(UNION,free)(u);
438 isl_union_set_free(uset);
439 return data.res;
440 error:
441 FN(UNION,free)(u);
442 isl_union_set_free(uset);
443 FN(UNION,free)(data.res);
444 return NULL;
447 __isl_give UNION *FN(UNION,intersect_domain)(__isl_take UNION *u,
448 __isl_take isl_union_set *uset)
450 return match_set_op(u, uset, &FN(PW,intersect_domain));
453 __isl_give UNION *FN(UNION,gist)(__isl_take UNION *u,
454 __isl_take isl_union_set *uset)
456 return match_set_op(u, uset, &FN(PW,gist));
459 __isl_give isl_qpolynomial *FN(UNION,eval)(__isl_take UNION *u,
460 __isl_take isl_point *pnt)
462 uint32_t hash;
463 struct isl_hash_table_entry *entry;
464 isl_qpolynomial *qp;
466 if (!u || !pnt)
467 goto error;
469 hash = isl_dim_get_hash(pnt->dim);
470 entry = isl_hash_table_find(u->dim->ctx, &u->table,
471 hash, &has_dim, pnt->dim, 0);
472 if (!entry) {
473 qp = isl_qpolynomial_zero(isl_dim_copy(pnt->dim));
474 isl_point_free(pnt);
475 } else {
476 qp = FN(PART,eval)(FN(PART,copy)(entry->data), pnt);
478 FN(UNION,free)(u);
479 return qp;
480 error:
481 FN(UNION,free)(u);
482 isl_point_free(pnt);
483 return NULL;
486 static int coalesce_entry(void **entry, void *user)
488 PW **pw = (PW **)entry;
490 *pw = FN(PW,coalesce)(*pw);
491 if (!*pw)
492 return -1;
494 return 0;
497 __isl_give UNION *FN(UNION,coalesce)(__isl_take UNION *u)
499 if (!u)
500 return NULL;
502 if (isl_hash_table_foreach(u->dim->ctx, &u->table,
503 &coalesce_entry, NULL) < 0)
504 goto error;
506 return u;
507 error:
508 FN(UNION,free)(u);
509 return NULL;
512 static int domain(__isl_take PART *part, void *user)
514 isl_union_set **uset = (isl_union_set **)user;
516 *uset = isl_union_set_add_set(*uset, FN(PART,domain)(part));
518 return 0;
521 __isl_give isl_union_set *FN(UNION,domain)(__isl_take UNION *u)
523 isl_union_set *uset;
525 uset = isl_union_set_empty(FN(UNION,get_dim)(u));
526 if (FN(FN(UNION,foreach),PARTS)(u, &domain, &uset) < 0)
527 goto error;
529 FN(UNION,free)(u);
531 return uset;
532 error:
533 isl_union_set_free(uset);
534 FN(UNION,free)(u);
535 return NULL;