only allow a single isl_pw_* object with given domain space in isl_union_pw_*
[isl.git] / isl_union_templ.c
blob63f2101ef3339d646aba96344e2c8e0b1067272f
1 /*
2 * Copyright 2010 INRIA Saclay
4 * Use of this software is governed by the MIT 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_space *space;
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->space->ctx : NULL;
33 __isl_give isl_space *FN(UNION,get_space)(__isl_keep UNION *u)
35 if (!u)
36 return NULL;
37 return isl_space_copy(u->space);
40 #ifdef HAS_TYPE
41 static __isl_give UNION *FN(UNION,alloc)(__isl_take isl_space *dim,
42 enum isl_fold type, int size)
43 #else
44 static __isl_give UNION *FN(UNION,alloc)(__isl_take isl_space *dim, int size)
45 #endif
47 UNION *u;
49 dim = isl_space_params(dim);
50 if (!dim)
51 return NULL;
53 u = isl_calloc_type(dim->ctx, UNION);
54 if (!u)
55 goto error;
57 u->ref = 1;
58 #ifdef HAS_TYPE
59 u->type = type;
60 #endif
61 u->space = dim;
62 if (isl_hash_table_init(dim->ctx, &u->table, size) < 0)
63 return FN(UNION,free)(u);
65 return u;
66 error:
67 isl_space_free(dim);
68 return NULL;
71 #ifdef HAS_TYPE
72 __isl_give UNION *FN(UNION,ZERO)(__isl_take isl_space *dim, enum isl_fold type)
74 return FN(UNION,alloc)(dim, type, 16);
76 #else
77 __isl_give UNION *FN(UNION,ZERO)(__isl_take isl_space *dim)
79 return FN(UNION,alloc)(dim, 16);
81 #endif
83 __isl_give UNION *FN(UNION,copy)(__isl_keep UNION *u)
85 if (!u)
86 return NULL;
88 u->ref++;
89 return u;
92 S(UNION,foreach_data)
94 int (*fn)(__isl_take PART *part, void *user);
95 void *user;
98 static int call_on_copy(void **entry, void *user)
100 PART *part = *entry;
101 S(UNION,foreach_data) *data = (S(UNION,foreach_data) *)user;
103 return data->fn(FN(PART,copy)(part), data->user);
106 int FN(FN(UNION,foreach),PARTS)(__isl_keep UNION *u,
107 int (*fn)(__isl_take PART *part, void *user), void *user)
109 S(UNION,foreach_data) data = { fn, user };
111 if (!u)
112 return -1;
114 return isl_hash_table_foreach(u->space->ctx, &u->table,
115 &call_on_copy, &data);
118 /* Is the space of "entry" equal to "space"?
120 static int has_space(const void *entry, const void *val)
122 PART *part = (PART *)entry;
123 isl_space *space = (isl_space *) val;
125 return isl_space_is_equal(part->dim, space);
128 /* This function is not currently used by isl_aff.c.
130 static int has_domain_space(const void *entry, const void *val)
131 __attribute__ ((unused));
133 /* Is the domain space of "entry" equal to "space"?
135 static int has_domain_space(const void *entry, const void *val)
137 PART *part = (PART *)entry;
138 isl_space *space = (isl_space *) val;
140 if (isl_space_is_params(space))
141 return isl_space_is_set(part->dim);
143 return isl_space_tuple_is_equal(part->dim, isl_dim_in,
144 space, isl_dim_set);
147 /* Is the domain space of "entry" equal to the domain of "space"?
149 static int has_same_domain_space(const void *entry, const void *val)
151 PART *part = (PART *)entry;
152 isl_space *space = (isl_space *) val;
154 if (isl_space_is_set(space))
155 return isl_space_is_set(part->dim);
157 return isl_space_tuple_is_equal(part->dim, isl_dim_in,
158 space, isl_dim_in);
161 /* Extract the element of "u" living in "space".
163 * Return the ZERO element if "u" does not contain any element
164 * living in "space".
166 __isl_give PART *FN(FN(UNION,extract),PARTS)(__isl_keep UNION *u,
167 __isl_take isl_space *space)
169 uint32_t hash;
170 struct isl_hash_table_entry *entry;
172 if (!u || !space)
173 goto error;
175 hash = isl_space_get_hash(space);
176 entry = isl_hash_table_find(u->space->ctx, &u->table, hash,
177 &has_space, space, 0);
178 if (!entry)
179 #ifdef HAS_TYPE
180 return FN(PART,ZERO)(space, u->type);
181 #else
182 return FN(PART,ZERO)(space);
183 #endif
184 isl_space_free(space);
185 return FN(PART,copy)(entry->data);
186 error:
187 isl_space_free(space);
188 return NULL;
191 __isl_give UNION *FN(FN(UNION,add),PARTS)(__isl_take UNION *u,
192 __isl_take PART *part)
194 int empty;
195 uint32_t hash;
196 struct isl_hash_table_entry *entry;
198 if (!part)
199 goto error;
201 empty = FN(PART,IS_ZERO)(part);
202 if (empty < 0)
203 goto error;
204 if (empty) {
205 FN(PART,free)(part);
206 return u;
209 u = FN(UNION,align_params)(u, FN(PART,get_space)(part));
210 part = FN(PART,align_params)(part, FN(UNION,get_space)(u));
212 u = FN(UNION,cow)(u);
214 if (!u)
215 goto error;
217 hash = isl_space_get_hash(part->dim);
218 entry = isl_hash_table_find(u->space->ctx, &u->table, hash,
219 &has_same_domain_space, part->dim, 1);
220 if (!entry)
221 goto error;
223 if (!entry->data)
224 entry->data = part;
225 else {
226 PART *entry_part = entry->data;
227 if (!isl_space_tuple_is_equal(entry_part->dim, isl_dim_out,
228 part->dim, isl_dim_out))
229 isl_die(FN(UNION,get_ctx)(u), isl_error_invalid,
230 "union expression can only contain a single "
231 "expression over a given domain", goto error);
232 entry->data = FN(PART,add)(entry->data, FN(PART,copy)(part));
233 if (!entry->data)
234 goto error;
235 empty = FN(PART,IS_ZERO)(part);
236 if (empty < 0)
237 goto error;
238 if (empty) {
239 FN(PART,free)(entry->data);
240 isl_hash_table_remove(u->space->ctx, &u->table, entry);
242 FN(PART,free)(part);
245 return u;
246 error:
247 FN(PART,free)(part);
248 FN(UNION,free)(u);
249 return NULL;
252 static int add_part(__isl_take PART *part, void *user)
254 UNION **u = (UNION **)user;
256 *u = FN(FN(UNION,add),PARTS)(*u, part);
258 return 0;
261 __isl_give UNION *FN(UNION,dup)(__isl_keep UNION *u)
263 UNION *dup;
265 if (!u)
266 return NULL;
268 #ifdef HAS_TYPE
269 dup = FN(UNION,ZERO)(isl_space_copy(u->space), u->type);
270 #else
271 dup = FN(UNION,ZERO)(isl_space_copy(u->space));
272 #endif
273 if (FN(FN(UNION,foreach),PARTS)(u, &add_part, &dup) < 0)
274 goto error;
275 return dup;
276 error:
277 FN(UNION,free)(dup);
278 return NULL;
281 __isl_give UNION *FN(UNION,cow)(__isl_take UNION *u)
283 if (!u)
284 return NULL;
286 if (u->ref == 1)
287 return u;
288 u->ref--;
289 return FN(UNION,dup)(u);
292 static int free_u_entry(void **entry, void *user)
294 PART *part = *entry;
295 FN(PART,free)(part);
296 return 0;
299 __isl_null UNION *FN(UNION,free)(__isl_take UNION *u)
301 if (!u)
302 return NULL;
304 if (--u->ref > 0)
305 return NULL;
307 isl_hash_table_foreach(u->space->ctx, &u->table, &free_u_entry, NULL);
308 isl_hash_table_clear(&u->table);
309 isl_space_free(u->space);
310 free(u);
311 return NULL;
314 S(UNION,align) {
315 isl_reordering *exp;
316 UNION *res;
319 #ifdef ALIGN_DOMAIN
320 static int align_entry(__isl_take PART *part, void *user)
322 isl_reordering *exp;
323 S(UNION,align) *data = user;
325 exp = isl_reordering_extend_space(isl_reordering_copy(data->exp),
326 FN(PART,get_domain_space)(part));
328 data->res = FN(FN(UNION,add),PARTS)(data->res,
329 FN(PART,realign_domain)(part, exp));
331 return 0;
333 #else
334 static int align_entry(__isl_take PART *part, void *user)
336 isl_reordering *exp;
337 S(UNION,align) *data = user;
339 exp = isl_reordering_extend_space(isl_reordering_copy(data->exp),
340 FN(PART,get_space)(part));
342 data->res = FN(FN(UNION,add),PARTS)(data->res,
343 FN(PART,realign)(part, exp));
345 return 0;
347 #endif
349 __isl_give UNION *FN(UNION,align_params)(__isl_take UNION *u,
350 __isl_take isl_space *model)
352 S(UNION,align) data = { NULL, NULL };
354 if (!u || !model)
355 goto error;
357 if (isl_space_match(u->space, isl_dim_param, model, isl_dim_param)) {
358 isl_space_free(model);
359 return u;
362 model = isl_space_params(model);
363 data.exp = isl_parameter_alignment_reordering(u->space, model);
364 if (!data.exp)
365 goto error;
367 #ifdef HAS_TYPE
368 data.res = FN(UNION,alloc)(isl_space_copy(data.exp->dim),
369 u->type, u->table.n);
370 #else
371 data.res = FN(UNION,alloc)(isl_space_copy(data.exp->dim), u->table.n);
372 #endif
373 if (FN(FN(UNION,foreach),PARTS)(u, &align_entry, &data) < 0)
374 goto error;
376 isl_reordering_free(data.exp);
377 FN(UNION,free)(u);
378 isl_space_free(model);
379 return data.res;
380 error:
381 isl_reordering_free(data.exp);
382 FN(UNION,free)(u);
383 FN(UNION,free)(data.res);
384 isl_space_free(model);
385 return NULL;
388 __isl_give UNION *FN(UNION,add)(__isl_take UNION *u1, __isl_take UNION *u2)
390 u1 = FN(UNION,align_params)(u1, FN(UNION,get_space)(u2));
391 u2 = FN(UNION,align_params)(u2, FN(UNION,get_space)(u1));
393 u1 = FN(UNION,cow)(u1);
395 if (!u1 || !u2)
396 goto error;
398 if (FN(FN(UNION,foreach),PARTS)(u2, &add_part, &u1) < 0)
399 goto error;
401 FN(UNION,free)(u2);
403 return u1;
404 error:
405 FN(UNION,free)(u1);
406 FN(UNION,free)(u2);
407 return NULL;
410 __isl_give UNION *FN(FN(UNION,from),PARTS)(__isl_take PART *part)
412 isl_space *dim;
413 UNION *u;
415 if (!part)
416 return NULL;
418 dim = FN(PART,get_space)(part);
419 dim = isl_space_drop_dims(dim, isl_dim_in, 0, isl_space_dim(dim, isl_dim_in));
420 dim = isl_space_drop_dims(dim, isl_dim_out, 0, isl_space_dim(dim, isl_dim_out));
421 #ifdef HAS_TYPE
422 u = FN(UNION,ZERO)(dim, part->type);
423 #else
424 u = FN(UNION,ZERO)(dim);
425 #endif
426 u = FN(FN(UNION,add),PARTS)(u, part);
428 return u;
431 S(UNION,match_bin_data) {
432 UNION *u2;
433 UNION *res;
434 __isl_give PART *(*fn)(__isl_take PART *, __isl_take PART *);
437 /* Check if data->u2 has an element living in the same space as *entry.
438 * If so, call data->fn on the two elements and add the result to
439 * data->res.
441 static int match_bin_entry(void **entry, void *user)
443 S(UNION,match_bin_data) *data = user;
444 uint32_t hash;
445 struct isl_hash_table_entry *entry2;
446 isl_space *space;
447 PART *part = *entry;
448 PART *part2;
450 space = FN(PART,get_space)(part);
451 hash = isl_space_get_hash(space);
452 entry2 = isl_hash_table_find(data->u2->space->ctx, &data->u2->table,
453 hash, &has_same_domain_space, space, 0);
454 isl_space_free(space);
455 if (!entry2)
456 return 0;
458 part2 = entry2->data;
459 if (!isl_space_tuple_is_equal(part->dim, isl_dim_out,
460 part2->dim, isl_dim_out))
461 isl_die(FN(UNION,get_ctx)(data->u2), isl_error_invalid,
462 "entries should have the same range space",
463 return -1);
465 part = FN(PART, copy)(part);
466 part = data->fn(part, FN(PART, copy)(entry2->data));
468 data->res = FN(FN(UNION,add),PARTS)(data->res, part);
469 if (!data->res)
470 return -1;
472 return 0;
475 /* This function is currently only used from isl_polynomial.c
476 * and not from isl_fold.c.
478 static __isl_give UNION *match_bin_op(__isl_take UNION *u1,
479 __isl_take UNION *u2,
480 __isl_give PART *(*fn)(__isl_take PART *, __isl_take PART *))
481 __attribute__ ((unused));
482 /* For each pair of elements in "u1" and "u2" living in the same space,
483 * call "fn" and collect the results.
485 static __isl_give UNION *match_bin_op(__isl_take UNION *u1,
486 __isl_take UNION *u2,
487 __isl_give PART *(*fn)(__isl_take PART *, __isl_take PART *))
489 S(UNION,match_bin_data) data = { NULL, NULL, fn };
491 u1 = FN(UNION,align_params)(u1, FN(UNION,get_space)(u2));
492 u2 = FN(UNION,align_params)(u2, FN(UNION,get_space)(u1));
494 if (!u1 || !u2)
495 goto error;
497 data.u2 = u2;
498 #ifdef HAS_TYPE
499 data.res = FN(UNION,alloc)(isl_space_copy(u1->space), u1->type,
500 u1->table.n);
501 #else
502 data.res = FN(UNION,alloc)(isl_space_copy(u1->space), u1->table.n);
503 #endif
504 if (isl_hash_table_foreach(u1->space->ctx, &u1->table,
505 &match_bin_entry, &data) < 0)
506 goto error;
508 FN(UNION,free)(u1);
509 FN(UNION,free)(u2);
510 return data.res;
511 error:
512 FN(UNION,free)(u1);
513 FN(UNION,free)(u2);
514 FN(UNION,free)(data.res);
515 return NULL;
518 #ifndef NO_SUB
519 /* Subtract "u2" from "u1" and return the result.
521 __isl_give UNION *FN(UNION,sub)(__isl_take UNION *u1, __isl_take UNION *u2)
523 return match_bin_op(u1, u2, &FN(PART,sub));
525 #endif
527 S(UNION,any_set_data) {
528 isl_set *set;
529 UNION *res;
530 __isl_give PW *(*fn)(__isl_take PW*, __isl_take isl_set*);
533 static int any_set_entry(void **entry, void *user)
535 S(UNION,any_set_data) *data = user;
536 PW *pw = *entry;
538 pw = FN(PW,copy)(pw);
539 pw = data->fn(pw, isl_set_copy(data->set));
541 data->res = FN(FN(UNION,add),PARTS)(data->res, pw);
542 if (!data->res)
543 return -1;
545 return 0;
548 /* Update each element of "u" by calling "fn" on the element and "set".
550 static __isl_give UNION *any_set_op(__isl_take UNION *u,
551 __isl_take isl_set *set,
552 __isl_give PW *(*fn)(__isl_take PW*, __isl_take isl_set*))
554 S(UNION,any_set_data) data = { NULL, NULL, fn };
556 u = FN(UNION,align_params)(u, isl_set_get_space(set));
557 set = isl_set_align_params(set, FN(UNION,get_space)(u));
559 if (!u || !set)
560 goto error;
562 data.set = set;
563 #ifdef HAS_TYPE
564 data.res = FN(UNION,alloc)(isl_space_copy(u->space), u->type,
565 u->table.n);
566 #else
567 data.res = FN(UNION,alloc)(isl_space_copy(u->space), u->table.n);
568 #endif
569 if (isl_hash_table_foreach(u->space->ctx, &u->table,
570 &any_set_entry, &data) < 0)
571 goto error;
573 FN(UNION,free)(u);
574 isl_set_free(set);
575 return data.res;
576 error:
577 FN(UNION,free)(u);
578 isl_set_free(set);
579 FN(UNION,free)(data.res);
580 return NULL;
583 /* Intersect the domain of "u" with the parameter domain "context".
585 __isl_give UNION *FN(UNION,intersect_params)(__isl_take UNION *u,
586 __isl_take isl_set *set)
588 return any_set_op(u, set, &FN(PW,intersect_params));
591 /* Compute the gist of the domain of "u" with respect to
592 * the parameter domain "context".
594 __isl_give UNION *FN(UNION,gist_params)(__isl_take UNION *u,
595 __isl_take isl_set *set)
597 return any_set_op(u, set, &FN(PW,gist_params));
600 S(UNION,match_domain_data) {
601 isl_union_set *uset;
602 UNION *res;
603 __isl_give PW *(*fn)(__isl_take PW*, __isl_take isl_set*);
606 static int set_has_dim(const void *entry, const void *val)
608 isl_set *set = (isl_set *)entry;
609 isl_space *dim = (isl_space *)val;
611 return isl_space_is_equal(set->dim, dim);
614 /* Find the set in data->uset that lives in the same space as the domain
615 * of *entry, apply data->fn to *entry and this set (if any), and add
616 * the result to data->res.
618 static int match_domain_entry(void **entry, void *user)
620 S(UNION,match_domain_data) *data = user;
621 uint32_t hash;
622 struct isl_hash_table_entry *entry2;
623 PW *pw = *entry;
624 isl_space *space;
626 space = FN(PW,get_domain_space)(pw);
627 hash = isl_space_get_hash(space);
628 entry2 = isl_hash_table_find(data->uset->dim->ctx, &data->uset->table,
629 hash, &set_has_dim, space, 0);
630 isl_space_free(space);
631 if (!entry2)
632 return 0;
634 pw = FN(PW,copy)(pw);
635 pw = data->fn(pw, isl_set_copy(entry2->data));
637 data->res = FN(FN(UNION,add),PARTS)(data->res, pw);
638 if (!data->res)
639 return -1;
641 return 0;
644 /* Apply fn to each pair of PW in u and set in uset such that
645 * the set lives in the same space as the domain of PW
646 * and collect the results.
648 static __isl_give UNION *match_domain_op(__isl_take UNION *u,
649 __isl_take isl_union_set *uset,
650 __isl_give PW *(*fn)(__isl_take PW*, __isl_take isl_set*))
652 S(UNION,match_domain_data) data = { NULL, NULL, fn };
654 u = FN(UNION,align_params)(u, isl_union_set_get_space(uset));
655 uset = isl_union_set_align_params(uset, FN(UNION,get_space)(u));
657 if (!u || !uset)
658 goto error;
660 data.uset = uset;
661 #ifdef HAS_TYPE
662 data.res = FN(UNION,alloc)(isl_space_copy(u->space), u->type,
663 u->table.n);
664 #else
665 data.res = FN(UNION,alloc)(isl_space_copy(u->space), u->table.n);
666 #endif
667 if (isl_hash_table_foreach(u->space->ctx, &u->table,
668 &match_domain_entry, &data) < 0)
669 goto error;
671 FN(UNION,free)(u);
672 isl_union_set_free(uset);
673 return data.res;
674 error:
675 FN(UNION,free)(u);
676 isl_union_set_free(uset);
677 FN(UNION,free)(data.res);
678 return NULL;
681 /* Intersect the domain of "u" with "uset".
682 * If "uset" is a parameters domain, then intersect the parameter
683 * domain of "u" with this set.
685 __isl_give UNION *FN(UNION,intersect_domain)(__isl_take UNION *u,
686 __isl_take isl_union_set *uset)
688 if (isl_union_set_is_params(uset))
689 return FN(UNION,intersect_params)(u,
690 isl_set_from_union_set(uset));
691 return match_domain_op(u, uset, &FN(PW,intersect_domain));
694 __isl_give UNION *FN(UNION,gist)(__isl_take UNION *u,
695 __isl_take isl_union_set *uset)
697 if (isl_union_set_is_params(uset))
698 return FN(UNION,gist_params)(u, isl_set_from_union_set(uset));
699 return match_domain_op(u, uset, &FN(PW,gist));
702 #ifndef NO_EVAL
703 __isl_give isl_val *FN(UNION,eval)(__isl_take UNION *u,
704 __isl_take isl_point *pnt)
706 uint32_t hash;
707 struct isl_hash_table_entry *entry;
708 isl_space *space;
709 isl_val *v;
711 if (!u || !pnt)
712 goto error;
714 space = isl_space_copy(pnt->dim);
715 if (!space)
716 goto error;
717 hash = isl_space_get_hash(space);
718 entry = isl_hash_table_find(u->space->ctx, &u->table,
719 hash, &has_domain_space, space, 0);
720 isl_space_free(space);
721 if (!entry) {
722 v = isl_val_zero(isl_point_get_ctx(pnt));
723 isl_point_free(pnt);
724 } else {
725 v = FN(PART,eval)(FN(PART,copy)(entry->data), pnt);
727 FN(UNION,free)(u);
728 return v;
729 error:
730 FN(UNION,free)(u);
731 isl_point_free(pnt);
732 return NULL;
734 #endif
736 static int coalesce_entry(void **entry, void *user)
738 PW **pw = (PW **)entry;
740 *pw = FN(PW,coalesce)(*pw);
741 if (!*pw)
742 return -1;
744 return 0;
747 __isl_give UNION *FN(UNION,coalesce)(__isl_take UNION *u)
749 if (!u)
750 return NULL;
752 if (isl_hash_table_foreach(u->space->ctx, &u->table,
753 &coalesce_entry, NULL) < 0)
754 goto error;
756 return u;
757 error:
758 FN(UNION,free)(u);
759 return NULL;
762 static int domain(__isl_take PART *part, void *user)
764 isl_union_set **uset = (isl_union_set **)user;
766 *uset = isl_union_set_add_set(*uset, FN(PART,domain)(part));
768 return 0;
771 __isl_give isl_union_set *FN(UNION,domain)(__isl_take UNION *u)
773 isl_union_set *uset;
775 uset = isl_union_set_empty(FN(UNION,get_space)(u));
776 if (FN(FN(UNION,foreach),PARTS)(u, &domain, &uset) < 0)
777 goto error;
779 FN(UNION,free)(u);
781 return uset;
782 error:
783 isl_union_set_free(uset);
784 FN(UNION,free)(u);
785 return NULL;
788 static int mul_isl_int(void **entry, void *user)
790 PW **pw = (PW **)entry;
791 isl_int *v = user;
793 *pw = FN(PW,mul_isl_int)(*pw, *v);
794 if (!*pw)
795 return -1;
797 return 0;
800 __isl_give UNION *FN(UNION,mul_isl_int)(__isl_take UNION *u, isl_int v)
802 if (isl_int_is_one(v))
803 return u;
805 if (DEFAULT_IS_ZERO && u && isl_int_is_zero(v)) {
806 UNION *zero;
807 isl_space *dim = FN(UNION,get_space)(u);
808 #ifdef HAS_TYPE
809 zero = FN(UNION,ZERO)(dim, u->type);
810 #else
811 zero = FN(UNION,ZERO)(dim);
812 #endif
813 FN(UNION,free)(u);
814 return zero;
817 u = FN(UNION,cow)(u);
818 if (!u)
819 return NULL;
821 #ifdef HAS_TYPE
822 if (isl_int_is_neg(v))
823 u->type = isl_fold_type_negate(u->type);
824 #endif
825 if (isl_hash_table_foreach(u->space->ctx, &u->table,
826 &mul_isl_int, &v) < 0)
827 goto error;
829 return u;
830 error:
831 FN(UNION,free)(u);
832 return NULL;
835 /* Multiply *entry by the isl_val "user".
837 * Return 0 on success and -1 on error.
839 static int scale_val(void **entry, void *user)
841 PW **pw = (PW **)entry;
842 isl_val *v = user;
844 *pw = FN(PW,scale_val)(*pw, isl_val_copy(v));
845 if (!*pw)
846 return -1;
848 return 0;
851 /* Multiply "u" by "v" and return the result.
853 __isl_give UNION *FN(UNION,scale_val)(__isl_take UNION *u,
854 __isl_take isl_val *v)
856 if (!u || !v)
857 goto error;
858 if (isl_val_is_one(v)) {
859 isl_val_free(v);
860 return u;
863 if (DEFAULT_IS_ZERO && u && isl_val_is_zero(v)) {
864 UNION *zero;
865 isl_space *space = FN(UNION,get_space)(u);
866 #ifdef HAS_TYPE
867 zero = FN(UNION,ZERO)(space, u->type);
868 #else
869 zero = FN(UNION,ZERO)(space);
870 #endif
871 FN(UNION,free)(u);
872 isl_val_free(v);
873 return zero;
876 if (!isl_val_is_rat(v))
877 isl_die(isl_val_get_ctx(v), isl_error_invalid,
878 "expecting rational factor", goto error);
880 u = FN(UNION,cow)(u);
881 if (!u)
882 return NULL;
884 #ifdef HAS_TYPE
885 if (isl_val_is_neg(v))
886 u->type = isl_fold_type_negate(u->type);
887 #endif
888 if (isl_hash_table_foreach(u->space->ctx, &u->table, &scale_val, v) < 0)
889 goto error;
891 isl_val_free(v);
892 return u;
893 error:
894 isl_val_free(v);
895 FN(UNION,free)(u);
896 return NULL;
899 S(UNION,plain_is_equal_data)
901 UNION *u2;
902 int is_equal;
905 static int plain_is_equal_entry(void **entry, void *user)
907 S(UNION,plain_is_equal_data) *data = user;
908 uint32_t hash;
909 struct isl_hash_table_entry *entry2;
910 PW *pw = *entry;
912 hash = isl_space_get_hash(pw->dim);
913 entry2 = isl_hash_table_find(data->u2->space->ctx, &data->u2->table,
914 hash, &has_same_domain_space, pw->dim, 0);
915 if (!entry2) {
916 data->is_equal = 0;
917 return -1;
920 data->is_equal = FN(PW,plain_is_equal)(pw, entry2->data);
921 if (data->is_equal < 0 || !data->is_equal)
922 return -1;
924 return 0;
927 int FN(UNION,plain_is_equal)(__isl_keep UNION *u1, __isl_keep UNION *u2)
929 S(UNION,plain_is_equal_data) data = { NULL, 1 };
931 if (!u1 || !u2)
932 return -1;
933 if (u1 == u2)
934 return 1;
935 if (u1->table.n != u2->table.n)
936 return 0;
938 u1 = FN(UNION,copy)(u1);
939 u2 = FN(UNION,copy)(u2);
940 u1 = FN(UNION,align_params)(u1, FN(UNION,get_space)(u2));
941 u2 = FN(UNION,align_params)(u2, FN(UNION,get_space)(u1));
942 if (!u1 || !u2)
943 goto error;
945 data.u2 = u2;
946 if (isl_hash_table_foreach(u1->space->ctx, &u1->table,
947 &plain_is_equal_entry, &data) < 0 &&
948 data.is_equal)
949 goto error;
951 FN(UNION,free)(u1);
952 FN(UNION,free)(u2);
954 return data.is_equal;
955 error:
956 FN(UNION,free)(u1);
957 FN(UNION,free)(u2);
958 return -1;