2 * Copyright 2010 INRIA Saclay
3 * Copyright 2013 Ecole Normale Superieure
5 * Use of this software is governed by the MIT license
7 * Written by Sven Verdoolaege, INRIA Saclay - Ile-de-France,
8 * Parc Club Orsay Universite, ZAC des vignes, 4 rue Jacques Monod,
10 * and Ecole Normale Superieure, 45 rue d'Ulm, 75230 Paris, France
16 #include "has_single_reference_templ.c"
18 __isl_give UNION
*FN(UNION
,cow
)(__isl_take UNION
*u
);
20 isl_ctx
*FN(UNION
,get_ctx
)(__isl_keep UNION
*u
)
22 return u
? u
->space
->ctx
: NULL
;
25 /* Return the space of "u".
27 static __isl_keep isl_space
*FN(UNION
,peek_space
)(__isl_keep UNION
*u
)
34 /* Return a copy of the space of "u".
36 __isl_give isl_space
*FN(UNION
,get_space
)(__isl_keep UNION
*u
)
38 return isl_space_copy(FN(UNION
,peek_space
)(u
));
41 /* Return the number of parameters of "u", where "type"
42 * is required to be set to isl_dim_param.
44 isl_size
FN(UNION
,dim
)(__isl_keep UNION
*u
, enum isl_dim_type type
)
47 return isl_size_error
;
49 if (type
!= isl_dim_param
)
50 isl_die(FN(UNION
,get_ctx
)(u
), isl_error_invalid
,
51 "can only reference parameters", return isl_size_error
);
53 return isl_space_dim(u
->space
, type
);
56 /* Return the position of the parameter with the given name
58 * Return -1 if no such dimension can be found.
60 int FN(UNION
,find_dim_by_name
)(__isl_keep UNION
*u
, enum isl_dim_type type
,
65 return isl_space_find_dim_by_name(u
->space
, type
, name
);
70 static __isl_give UNION
*FN(UNION
,alloc
)(__isl_take isl_space
*space
71 OPT_TYPE_PARAM
, int size
)
75 space
= isl_space_params(space
);
79 u
= isl_calloc_type(space
->ctx
, UNION
);
84 OPT_SET_TYPE(u
->, type
);
86 if (isl_hash_table_init(space
->ctx
, &u
->table
, size
) < 0)
87 return FN(UNION
,free
)(u
);
91 isl_space_free(space
);
95 /* Create an empty/zero union without specifying any parameters.
97 __isl_give UNION
*FN(FN(UNION
,ZERO
),ctx
)(isl_ctx
*ctx OPT_TYPE_PARAM
)
101 space
= isl_space_unit(ctx
);
102 return FN(FN(UNION
,ZERO
),space
)(space
OPT_TYPE_ARG(NO_LOC
));
105 __isl_give UNION
*FN(FN(UNION
,ZERO
),space
)(__isl_take isl_space
*space
108 return FN(UNION
,alloc
)(space
OPT_TYPE_ARG(NO_LOC
), 16);
111 /* This is an alternative name for the function above.
113 __isl_give UNION
*FN(UNION
,ZERO
)(__isl_take isl_space
*space OPT_TYPE_PARAM
)
115 return FN(FN(UNION
,ZERO
),space
)(space
OPT_TYPE_ARG(NO_LOC
));
118 __isl_give UNION
*FN(UNION
,copy
)(__isl_keep UNION
*u
)
127 /* Do the tuples of "space" correspond to those of the domain of "part"?
128 * That is, is the domain space of "part" equal to "space", ignoring parameters?
130 static isl_bool
FN(PART
,has_domain_space_tuples
)(__isl_keep PART
*part
,
131 __isl_keep isl_space
*space
)
133 return isl_space_has_domain_tuples(space
, FN(PART
,peek_space
)(part
));
136 /* Extract the element of "u" living in "space" (ignoring parameters).
138 * Return the ZERO element if "u" does not contain any element
141 __isl_give PART
*FN(FN(UNION
,extract
),BASE
)(__isl_keep UNION
*u
,
142 __isl_take isl_space
*space
)
144 struct isl_hash_table_entry
*entry
;
146 entry
= FN(UNION
,find_part_entry
)(u
, space
, 0);
149 if (entry
== isl_hash_table_entry_none
)
150 return FN(PART
,ZERO
)(space
OPT_TYPE_ARG(u
->));
151 isl_space_free(space
);
152 return FN(PART
,copy
)(entry
->data
);
154 isl_space_free(space
);
158 /* Add "part" to "u".
159 * If "disjoint" is set, then "u" is not allowed to already have
160 * a part that is defined over a domain that overlaps with the domain
162 * Otherwise, compute the union sum of "part" and the part in "u"
163 * defined on the same space.
165 static __isl_give UNION
*FN(UNION
,add_part_generic
)(__isl_take UNION
*u
,
166 __isl_take PART
*part
, int disjoint
)
169 struct isl_hash_table_entry
*entry
;
174 empty
= FN(PART
,IS_ZERO
)(part
);
182 u
= FN(UNION
,align_params
)(u
, FN(PART
,get_space
)(part
));
183 part
= FN(PART
,align_params
)(part
, FN(UNION
,get_space
)(u
));
185 u
= FN(UNION
,cow
)(u
);
190 if (FN(UNION
,check_disjoint_domain_other
)(u
, part
) < 0)
192 entry
= FN(UNION
,find_part_entry
)(u
, part
->dim
, 1);
200 FN(UNION
,check_disjoint_domain
)(entry
->data
, part
) < 0)
202 entry
->data
= FN(PART
,union_add_
)(entry
->data
,
203 FN(PART
,copy
)(part
));
206 empty
= FN(PART
,IS_ZERO
)(part
);
210 u
= FN(UNION
,remove_part_entry
)(u
, entry
);
221 /* Add "part" to "u", where "u" is assumed not to already have
222 * a part that is defined on the same space as "part".
224 __isl_give UNION
*FN(FN(UNION
,add
),BASE
)(__isl_take UNION
*u
,
225 __isl_take PART
*part
)
227 return FN(UNION
,add_part_generic
)(u
, part
, 1);
230 /* Allocate a UNION with the same type (if any) and the same size as "u" and
231 * with space "space".
233 static __isl_give UNION
*FN(UNION
,alloc_same_size_on_space
)(__isl_keep UNION
*u
,
234 __isl_take isl_space
*space
)
238 return FN(UNION
,alloc
)(space
OPT_TYPE_ARG(u
->), u
->table
.n
);
240 isl_space_free(space
);
244 /* Allocate a UNION with the same space, the same type (if any) and
245 * the same size as "u".
247 static __isl_give UNION
*FN(UNION
,alloc_same_size
)(__isl_keep UNION
*u
)
249 return FN(UNION
,alloc_same_size_on_space
)(u
, FN(UNION
,get_space
)(u
));
252 /* Data structure that specifies how isl_union_*_transform
253 * should modify the base expressions in the union expression.
255 * If "inplace" is set, then the base expression in the input union
256 * are modified in place. This means that "fn" should not
257 * change the meaning of the union or that the union only
258 * has a single reference.
259 * If "space" is not NULL, then a new union is created in this space.
260 * If "filter" is not NULL, then only the base expressions that satisfy "filter"
261 * are taken into account.
262 * "filter_user" is passed as the second argument to "filter".
263 * If "fn" it not NULL, then it is applied to each entry in the input.
264 * "fn_user" is passed as the second argument to "fn".
266 S(UNION
,transform_control
) {
269 isl_bool (*filter
)(__isl_keep PART
*part
, void *user
);
271 __isl_give PART
*(*fn
)(__isl_take PART
*part
, void *user
);
275 /* Internal data structure for isl_union_*_transform_space.
276 * "control" specifies how the base expressions should be modified.
277 * "res" collects the results (if control->inplace is not set).
279 S(UNION
,transform_data
)
281 S(UNION
,transform_control
) *control
;
285 /* Apply control->fn to "part" and add the result to data->res or
286 * place it back into the input union if control->inplace is set.
288 static isl_stat
FN(UNION
,transform_entry
)(void **entry
, void *user
)
290 S(UNION
,transform_data
) *data
= (S(UNION
,transform_data
) *)user
;
291 S(UNION
,transform_control
) *control
= data
->control
;
294 if (control
->filter
) {
297 handle
= control
->filter(part
, control
->filter_user
);
299 return isl_stat_error
;
304 if (!control
->inplace
)
305 part
= FN(PART
,copy
)(part
);
307 part
= control
->fn(part
, control
->fn_user
);
308 if (control
->inplace
)
311 data
->res
= FN(FN(UNION
,add
),BASE
)(data
->res
, part
);
312 if (!part
|| !data
->res
)
313 return isl_stat_error
;
318 /* Return a UNION that is obtained by modifying "u" according to "control".
320 static __isl_give UNION
*FN(UNION
,transform
)(__isl_take UNION
*u
,
321 S(UNION
,transform_control
) *control
)
323 S(UNION
,transform_data
) data
= { control
};
326 if (control
->inplace
) {
330 space
= isl_space_copy(control
->space
);
332 space
= FN(UNION
,get_space
)(u
);
333 data
.res
= FN(UNION
,alloc_same_size_on_space
)(u
, space
);
335 if (FN(UNION
,foreach_inplace
)(u
, &FN(UNION
,transform_entry
), &data
) < 0)
336 data
.res
= FN(UNION
,free
)(data
.res
);
337 if (!control
->inplace
)
342 /* Return a UNION living in "space" that is otherwise obtained by modifying "u"
343 * according to "control".
345 static __isl_give UNION
*FN(UNION
,transform_space
)(__isl_take UNION
*u
,
346 __isl_take isl_space
*space
, S(UNION
,transform_control
) *control
)
349 return FN(UNION
,free
)(u
);
350 control
->space
= space
;
351 u
= FN(UNION
,transform
)(u
, control
);
352 isl_space_free(space
);
356 /* Update "u" by applying "fn" to each entry.
357 * This operation is assumed not to change the number of entries nor
358 * the spaces of the entries.
360 * If there is only one reference to "u", then change "u" inplace.
361 * Otherwise, create a new UNION from "u" and discard the original.
363 static __isl_give UNION
*FN(UNION
,transform_inplace
)(__isl_take UNION
*u
,
364 __isl_give PART
*(*fn
)(__isl_take PART
*part
, void *user
), void *user
)
366 S(UNION
,transform_control
) control
= { .fn
= fn
, .fn_user
= user
};
369 single_ref
= FN(UNION
,has_single_reference
)(u
);
371 return FN(UNION
,free
)(u
);
374 return FN(UNION
,transform
)(u
, &control
);
377 /* An isl_union_*_transform callback for use in isl_union_*_dup
378 * that simply returns "part".
380 static __isl_give PART
*FN(UNION
,copy_part
)(__isl_take PART
*part
, void *user
)
385 __isl_give UNION
*FN(UNION
,dup
)(__isl_keep UNION
*u
)
387 S(UNION
,transform_control
) control
= { .fn
= &FN(UNION
,copy_part
) };
389 u
= FN(UNION
,copy
)(u
);
390 return FN(UNION
,transform
)(u
, &control
);
393 __isl_give UNION
*FN(UNION
,cow
)(__isl_take UNION
*u
)
401 return FN(UNION
,dup
)(u
);
404 __isl_null UNION
*FN(UNION
,free
)(__isl_take UNION
*u
)
412 isl_hash_table_foreach(u
->space
->ctx
, &u
->table
,
413 &FN(UNION
,free_u_entry
), NULL
);
414 isl_hash_table_clear(&u
->table
);
415 isl_space_free(u
->space
);
420 static __isl_give PART
*FN(UNION
,align_entry
)(__isl_take PART
*part
, void *user
)
422 isl_reordering
*exp
= user
;
424 exp
= isl_reordering_extend_space(isl_reordering_copy(exp
),
425 FN(PART
,get_domain_space
)(part
));
426 return FN(PART
,realign_domain
)(part
, exp
);
429 /* Reorder the parameters of "u" according to the given reordering.
431 static __isl_give UNION
*FN(UNION
,realign_domain
)(__isl_take UNION
*u
,
432 __isl_take isl_reordering
*r
)
434 S(UNION
,transform_control
) control
= {
435 .fn
= &FN(UNION
,align_entry
),
443 space
= isl_reordering_get_space(r
);
444 u
= FN(UNION
,transform_space
)(u
, space
, &control
);
445 isl_reordering_free(r
);
449 isl_reordering_free(r
);
453 /* Align the parameters of "u" to those of "model".
455 __isl_give UNION
*FN(UNION
,align_params
)(__isl_take UNION
*u
,
456 __isl_take isl_space
*model
)
458 isl_bool equal_params
;
464 equal_params
= isl_space_has_equal_params(u
->space
, model
);
465 if (equal_params
< 0)
468 isl_space_free(model
);
472 r
= isl_parameter_alignment_reordering(u
->space
, model
);
473 isl_space_free(model
);
475 return FN(UNION
,realign_domain
)(u
, r
);
477 isl_space_free(model
);
482 /* Add "part" to *u, taking the union sum if "u" already has
483 * a part defined on the same space as "part".
485 static isl_stat
FN(UNION
,union_add_part
)(__isl_take PART
*part
, void *user
)
487 UNION
**u
= (UNION
**)user
;
489 *u
= FN(UNION
,add_part_generic
)(*u
, part
, 0);
494 /* Compute the sum of "u1" and "u2" on the union of their domains,
495 * with the actual sum on the shared domain and
496 * the defined expression on the symmetric difference of the domains.
498 * This is an internal function that is exposed under different
499 * names depending on whether the base expressions have a zero default
501 * If they do, then this function is called "add".
502 * Otherwise, it is called "union_add".
504 static __isl_give UNION
*FN(UNION
,union_add_
)(__isl_take UNION
*u1
,
505 __isl_take UNION
*u2
)
507 u1
= FN(UNION
,align_params
)(u1
, FN(UNION
,get_space
)(u2
));
508 u2
= FN(UNION
,align_params
)(u2
, FN(UNION
,get_space
)(u1
));
510 u1
= FN(UNION
,cow
)(u1
);
515 if (FN(FN(UNION
,foreach
),BASE
)(u2
, &FN(UNION
,union_add_part
), &u1
) < 0)
527 __isl_give UNION
*FN(FN(UNION
,from
),BASE
)(__isl_take PART
*part
)
535 space
= FN(PART
,get_space
)(part
);
536 space
= isl_space_drop_dims(space
, isl_dim_in
, 0,
537 isl_space_dim(space
, isl_dim_in
));
538 space
= isl_space_drop_dims(space
, isl_dim_out
, 0,
539 isl_space_dim(space
, isl_dim_out
));
540 u
= FN(UNION
,ZERO
)(space
OPT_TYPE_ARG(part
->));
541 u
= FN(FN(UNION
,add
),BASE
)(u
, part
);
546 /* This function performs the same operation as isl_union_pw_*_from_pw_*,
547 * but is considered as a function on an isl_pw_* when exported.
549 __isl_give UNION
*FN(FN(PART
,to_union
),BASE
)(__isl_take PART
*part
)
551 return FN(FN(UNION
,from
),BASE
)(part
);
554 S(UNION
,match_bin_data
) {
557 __isl_give PART
*(*fn
)(__isl_take PART
*, __isl_take PART
*);
560 /* Check if data->u2 has an element living in the same space as "part".
561 * If so, call data->fn on the two elements and add the result to
564 static isl_stat
FN(UNION
,match_bin_entry
)(__isl_take PART
*part
, void *user
)
566 S(UNION
,match_bin_data
) *data
= user
;
567 struct isl_hash_table_entry
*entry2
;
571 space
= FN(PART
,get_space
)(part
);
572 entry2
= FN(UNION
,find_part_entry
)(data
->u2
, space
, 0);
573 isl_space_free(space
);
576 if (entry2
== isl_hash_table_entry_none
) {
581 part2
= entry2
->data
;
582 if (!isl_space_tuple_is_equal(part
->dim
, isl_dim_out
,
583 part2
->dim
, isl_dim_out
))
584 isl_die(FN(UNION
,get_ctx
)(data
->u2
), isl_error_invalid
,
585 "entries should have the same range space",
588 part
= data
->fn(part
, FN(PART
, copy
)(entry2
->data
));
590 data
->res
= FN(FN(UNION
,add
),BASE
)(data
->res
, part
);
592 return isl_stat_error
;
597 return isl_stat_error
;
600 /* This function is currently only used from isl_polynomial.c
601 * and not from isl_fold.c.
603 static __isl_give UNION
*FN(UNION
,match_bin_op
)(__isl_take UNION
*u1
,
604 __isl_take UNION
*u2
,
605 __isl_give PART
*(*fn
)(__isl_take PART
*, __isl_take PART
*))
606 __attribute__ ((unused
));
607 /* For each pair of elements in "u1" and "u2" living in the same space,
608 * call "fn" and collect the results.
610 static __isl_give UNION
*FN(UNION
,match_bin_op
)(__isl_take UNION
*u1
,
611 __isl_take UNION
*u2
,
612 __isl_give PART
*(*fn
)(__isl_take PART
*, __isl_take PART
*))
614 S(UNION
,match_bin_data
) data
= { NULL
, NULL
, fn
};
616 u1
= FN(UNION
,align_params
)(u1
, FN(UNION
,get_space
)(u2
));
617 u2
= FN(UNION
,align_params
)(u2
, FN(UNION
,get_space
)(u1
));
623 data
.res
= FN(UNION
,alloc_same_size
)(u1
);
624 if (FN(FN(UNION
,foreach
),BASE
)(u1
,
625 &FN(UNION
,match_bin_entry
), &data
) < 0)
634 FN(UNION
,free
)(data
.res
);
638 /* Compute the sum of "u1" and "u2".
640 * If the base expressions have a default zero value, then the sum
641 * is computed on the union of the domains of "u1" and "u2".
642 * Otherwise, it is computed on their shared domains.
644 __isl_give UNION
*FN(UNION
,add
)(__isl_take UNION
*u1
, __isl_take UNION
*u2
)
647 return FN(UNION
,union_add_
)(u1
, u2
);
649 return FN(UNION
,match_bin_op
)(u1
, u2
, &FN(PART
,add
));
654 /* Subtract "u2" from "u1" and return the result.
656 __isl_give UNION
*FN(UNION
,sub
)(__isl_take UNION
*u1
, __isl_take UNION
*u2
)
658 return FN(UNION
,match_bin_op
)(u1
, u2
, &FN(PART
,sub
));
662 S(UNION
,any_set_data
) {
664 __isl_give PW
*(*fn
)(__isl_take PW
*, __isl_take isl_set
*);
667 static __isl_give PART
*FN(UNION
,any_set_entry
)(__isl_take PART
*part
,
670 S(UNION
,any_set_data
) *data
= user
;
672 return data
->fn(part
, isl_set_copy(data
->set
));
675 /* Update each element of "u" by calling "fn" on the element and "set".
677 static __isl_give UNION
*FN(UNION
,any_set_op
)(__isl_take UNION
*u
,
678 __isl_take isl_set
*set
,
679 __isl_give PW
*(*fn
)(__isl_take PW
*, __isl_take isl_set
*))
681 S(UNION
,any_set_data
) data
= { NULL
, fn
};
682 S(UNION
,transform_control
) control
= {
683 .fn
= &FN(UNION
,any_set_entry
),
687 u
= FN(UNION
,align_params
)(u
, isl_set_get_space(set
));
688 set
= isl_set_align_params(set
, FN(UNION
,get_space
)(u
));
694 u
= FN(UNION
,transform
)(u
, &control
);
703 /* Intersect the domain of "u" with the parameter domain "context".
705 __isl_give UNION
*FN(UNION
,intersect_params
)(__isl_take UNION
*u
,
706 __isl_take isl_set
*set
)
708 return FN(UNION
,any_set_op
)(u
, set
, &FN(PW
,intersect_params
));
711 /* Compute the gist of the domain of "u" with respect to
712 * the parameter domain "context".
714 __isl_give UNION
*FN(UNION
,gist_params
)(__isl_take UNION
*u
,
715 __isl_take isl_set
*set
)
717 return FN(UNION
,any_set_op
)(u
, set
, &FN(PW
,gist_params
));
720 /* Data structure that specifies how isl_union_*_match_domain_op
721 * should combine its arguments.
723 * If "filter" is not NULL, then only parts that pass the given
724 * filter are considered for matching.
725 * "fn" is applied to each part in the union and each corresponding
726 * set in the union set, i.e., such that the set lives in the same space
727 * as the domain of the part.
728 * If "match_space" is not NULL, then the set extracted from the union set
729 * does not live in the same space as the domain of the part,
730 * but rather in the space that results from calling "match_space"
731 * on this domain space.
733 S(UNION
,match_domain_control
) {
734 isl_bool (*filter
)(__isl_keep PART
*part
);
735 __isl_give isl_space
*(*match_space
)(__isl_take isl_space
*space
);
736 __isl_give PW
*(*fn
)(__isl_take PW
*, __isl_take isl_set
*);
739 S(UNION
,match_domain_data
) {
742 S(UNION
,match_domain_control
) *control
;
745 /* Find the set in data->uset that lives in the same space as the domain
746 * of "part" (ignoring parameters), apply data->fn to *entry and this set
747 * (if any), and add the result to data->res.
749 static isl_stat
FN(UNION
,match_domain_entry
)(__isl_take PART
*part
, void *user
)
751 S(UNION
,match_domain_data
) *data
= user
;
752 struct isl_hash_table_entry
*entry2
;
755 if (data
->control
->filter
) {
756 isl_bool pass
= data
->control
->filter(part
);
757 if (pass
< 0 || !pass
) {
759 return pass
< 0 ? isl_stat_error
: isl_stat_ok
;
763 space
= FN(PART
,get_domain_space
)(part
);
764 if (data
->control
->match_space
)
765 space
= data
->control
->match_space(space
);
766 entry2
= isl_union_set_find_entry(data
->uset
, space
, 0);
767 isl_space_free(space
);
768 if (!entry2
|| entry2
== isl_hash_table_entry_none
) {
770 return isl_stat_non_null(entry2
);
773 part
= data
->control
->fn(part
, isl_set_copy(entry2
->data
));
775 data
->res
= FN(FN(UNION
,add
),BASE
)(data
->res
, part
);
777 return isl_stat_error
;
782 /* Combine "u" and "uset" according to "control"
783 * and collect the results.
785 static __isl_give UNION
*FN(UNION
,match_domain_op
)(__isl_take UNION
*u
,
786 __isl_take isl_union_set
*uset
, S(UNION
,match_domain_control
) *control
)
788 S(UNION
,match_domain_data
) data
= { NULL
, NULL
, control
};
794 data
.res
= FN(UNION
,alloc_same_size
)(u
);
795 if (FN(FN(UNION
,foreach
),BASE
)(u
,
796 &FN(UNION
,match_domain_entry
), &data
) < 0)
800 isl_union_set_free(uset
);
804 isl_union_set_free(uset
);
805 FN(UNION
,free
)(data
.res
);
809 /* Intersect the domain of "u" with "uset".
810 * If "uset" is a parameters domain, then intersect the parameter
811 * domain of "u" with this set.
813 __isl_give UNION
*FN(UNION
,intersect_domain_union_set
)(__isl_take UNION
*u
,
814 __isl_take isl_union_set
*uset
)
816 S(UNION
,match_domain_control
) control
= {
817 .fn
= &FN(PW
,intersect_domain
),
820 if (isl_union_set_is_params(uset
))
821 return FN(UNION
,intersect_params
)(u
,
822 isl_set_from_union_set(uset
));
823 return FN(UNION
,match_domain_op
)(u
, uset
, &control
);
826 /* This is an alternative name for the function above.
828 __isl_give UNION
*FN(UNION
,intersect_domain
)(__isl_take UNION
*u
,
829 __isl_take isl_union_set
*uset
)
831 return FN(UNION
,intersect_domain_union_set
)(u
, uset
);
834 /* Return true if this part should be kept.
836 * In particular, it should be kept if its domain space
837 * corresponds to "space".
839 static isl_bool
FN(UNION
,select_entry
)(__isl_keep PART
*part
, void *user
)
841 isl_space
*space
= user
;
843 return FN(PW
,has_domain_space_tuples
)(part
, space
);
846 /* Remove any not element in "space" from the domain of "u".
848 * In particular, select any part of the function defined
849 * on this domain space.
851 __isl_give UNION
*FN(UNION
,intersect_domain_space
)(__isl_take UNION
*u
,
852 __isl_take isl_space
*space
)
854 S(UNION
,transform_control
) control
= {
855 .filter
= &FN(UNION
,select_entry
),
856 .filter_user
= space
,
859 u
= FN(UNION
,transform
)(u
, &control
);
860 isl_space_free(space
);
864 /* Is the domain of "pw" a wrapped relation?
866 static isl_bool
FN(PW
,domain_is_wrapping
)(__isl_keep PW
*pw
)
868 return isl_space_domain_is_wrapping(FN(PW
,peek_space
)(pw
));
871 /* Intersect the domain of the wrapped relation inside the domain of "u"
874 __isl_give UNION
*FN(UNION
,intersect_domain_wrapped_domain
)(__isl_take UNION
*u
,
875 __isl_take isl_union_set
*uset
)
877 S(UNION
,match_domain_control
) control
= {
878 .filter
= &FN(PART
,domain_is_wrapping
),
879 .match_space
= &isl_space_factor_domain
,
880 .fn
= &FN(PW
,intersect_domain_wrapped_domain
),
883 return FN(UNION
,match_domain_op
)(u
, uset
, &control
);
886 /* Intersect the range of the wrapped relation inside the domain of "u"
889 __isl_give UNION
*FN(UNION
,intersect_domain_wrapped_range
)(__isl_take UNION
*u
,
890 __isl_take isl_union_set
*uset
)
892 S(UNION
,match_domain_control
) control
= {
893 .filter
= &FN(PART
,domain_is_wrapping
),
894 .match_space
= &isl_space_factor_range
,
895 .fn
= &FN(PW
,intersect_domain_wrapped_range
),
898 return FN(UNION
,match_domain_op
)(u
, uset
, &control
);
901 /* Take the set (which may be empty) in data->uset that lives
902 * in the same space as the domain of "pw", subtract it from the domain
903 * of "part" and return the result.
905 static __isl_give PART
*FN(UNION
,subtract_domain_entry
)(__isl_take PART
*part
,
908 isl_union_set
*uset
= user
;
912 space
= FN(PART
,get_domain_space
)(part
);
913 set
= isl_union_set_extract_set(uset
, space
);
914 return FN(PART
,subtract_domain
)(part
, set
);
917 /* Subtract "uset" from the domain of "u".
919 __isl_give UNION
*FN(UNION
,subtract_domain_union_set
)(__isl_take UNION
*u
,
920 __isl_take isl_union_set
*uset
)
922 S(UNION
,transform_control
) control
= {
923 .fn
= &FN(UNION
,subtract_domain_entry
),
927 u
= FN(UNION
,transform
)(u
, &control
);
928 isl_union_set_free(uset
);
932 /* This is an alternative name for the function above.
934 __isl_give UNION
*FN(UNION
,subtract_domain
)(__isl_take UNION
*u
,
935 __isl_take isl_union_set
*uset
)
937 return FN(UNION
,subtract_domain_union_set
)(u
, uset
);
940 /* Return true if this part should be kept.
942 * In particular, it should be kept if its domain space
943 * does not correspond to "space".
945 static isl_bool
FN(UNION
,filter_out_entry
)(__isl_keep PART
*part
, void *user
)
947 isl_space
*space
= user
;
949 return isl_bool_not(FN(PW
,has_domain_space_tuples
)(part
, space
));
952 /* Remove any element in "space" from the domain of "u".
954 * In particular, filter out any part of the function defined
955 * on this domain space.
957 __isl_give UNION
*FN(UNION
,subtract_domain_space
)(__isl_take UNION
*u
,
958 __isl_take isl_space
*space
)
960 S(UNION
,transform_control
) control
= {
961 .filter
= &FN(UNION
,filter_out_entry
),
962 .filter_user
= space
,
965 u
= FN(UNION
,transform
)(u
, &control
);
966 isl_space_free(space
);
970 __isl_give UNION
*FN(UNION
,gist
)(__isl_take UNION
*u
,
971 __isl_take isl_union_set
*uset
)
973 S(UNION
,match_domain_control
) control
= {
977 if (isl_union_set_is_params(uset
))
978 return FN(UNION
,gist_params
)(u
, isl_set_from_union_set(uset
));
979 return FN(UNION
,match_domain_op
)(u
, uset
, &control
);
982 /* Coalesce an entry in a UNION. Coalescing is performed in-place.
983 * Since the UNION may have several references, the entry is only
984 * replaced if the coalescing is successful.
986 static isl_stat
FN(UNION
,coalesce_entry
)(void **entry
, void *user
)
988 PART
**part_p
= (PART
**) entry
;
991 part
= FN(PART
,copy
)(*part_p
);
992 part
= FN(PW
,coalesce
)(part
);
994 return isl_stat_error
;
995 FN(PART
,free
)(*part_p
);
1001 __isl_give UNION
*FN(UNION
,coalesce
)(__isl_take UNION
*u
)
1003 if (FN(UNION
,foreach_inplace
)(u
, &FN(UNION
,coalesce_entry
), NULL
) < 0)
1012 static isl_stat
FN(UNION
,domain_entry
)(__isl_take PART
*part
, void *user
)
1014 isl_union_set
**uset
= (isl_union_set
**)user
;
1016 *uset
= isl_union_set_add_set(*uset
, FN(PART
,domain
)(part
));
1021 __isl_give isl_union_set
*FN(UNION
,domain
)(__isl_take UNION
*u
)
1023 isl_union_set
*uset
;
1025 uset
= isl_union_set_empty(FN(UNION
,get_space
)(u
));
1026 if (FN(FN(UNION
,foreach
),BASE
)(u
, &FN(UNION
,domain_entry
), &uset
) < 0)
1033 isl_union_set_free(uset
);
1039 /* Negate the type of "u".
1041 static __isl_give UNION
*FN(UNION
,negate_type
)(__isl_take UNION
*u
)
1043 u
= FN(UNION
,cow
)(u
);
1046 u
->type
= isl_fold_type_negate(u
->type
);
1050 /* Negate the type of "u".
1051 * Since "u" does not have a type, do nothing.
1053 static __isl_give UNION
*FN(UNION
,negate_type
)(__isl_take UNION
*u
)
1059 /* Multiply "part" by the isl_val "user" and return the result.
1061 static __isl_give PART
*FN(UNION
,scale_val_entry
)(__isl_take PART
*part
,
1066 return FN(PART
,scale_val
)(part
, isl_val_copy(v
));
1069 /* Multiply "u" by "v" and return the result.
1071 __isl_give UNION
*FN(UNION
,scale_val
)(__isl_take UNION
*u
,
1072 __isl_take isl_val
*v
)
1076 if (isl_val_is_one(v
)) {
1081 if (DEFAULT_IS_ZERO
&& u
&& isl_val_is_zero(v
)) {
1083 isl_space
*space
= FN(UNION
,get_space
)(u
);
1084 zero
= FN(UNION
,ZERO
)(space
OPT_TYPE_ARG(u
->));
1090 if (!isl_val_is_rat(v
))
1091 isl_die(isl_val_get_ctx(v
), isl_error_invalid
,
1092 "expecting rational factor", goto error
);
1094 u
= FN(UNION
,transform_inplace
)(u
, &FN(UNION
,scale_val_entry
), v
);
1095 if (isl_val_is_neg(v
))
1096 u
= FN(UNION
,negate_type
)(u
);
1106 /* Divide "part" by the isl_val "user" and return the result.
1108 static __isl_give PART
*FN(UNION
,scale_down_val_entry
)(__isl_take PART
*part
,
1113 return FN(PART
,scale_down_val
)(part
, isl_val_copy(v
));
1116 /* Divide "u" by "v" and return the result.
1118 __isl_give UNION
*FN(UNION
,scale_down_val
)(__isl_take UNION
*u
,
1119 __isl_take isl_val
*v
)
1123 if (isl_val_is_one(v
)) {
1128 if (!isl_val_is_rat(v
))
1129 isl_die(isl_val_get_ctx(v
), isl_error_invalid
,
1130 "expecting rational factor", goto error
);
1131 if (isl_val_is_zero(v
))
1132 isl_die(isl_val_get_ctx(v
), isl_error_invalid
,
1133 "cannot scale down by zero", goto error
);
1135 u
= FN(UNION
,transform_inplace
)(u
, &FN(UNION
,scale_down_val_entry
), v
);
1136 if (isl_val_is_neg(v
))
1137 u
= FN(UNION
,negate_type
)(u
);
1147 /* Internal data structure for isl_union_*_every_*.
1149 * "test" is the user-specified callback function.
1150 * "user" is the user-specified callback function argument.
1152 * "res" is the final result, initialized to isl_bool_true.
1154 S(UNION
,every_data
) {
1155 isl_bool (*test
)(__isl_keep PW
*pw
, void *user
);
1161 /* Call data->test on the piecewise expression at *entry,
1162 * updating the result in data->res.
1163 * Abort if this result is no longer isl_bool_true.
1165 static isl_stat
FN(UNION
,every_entry
)(void **entry
, void *user
)
1167 S(UNION
,every_data
) *data
= user
;
1170 data
->res
= data
->test(pw
, data
->user
);
1171 if (data
->res
< 0 || !data
->res
)
1172 return isl_stat_error
;
1177 /* Does "test" succeed on every piecewise expression in "u"?
1179 isl_bool
FN(FN(UNION
,every
),BASE
)(__isl_keep UNION
*u
,
1180 isl_bool (*test
)(__isl_keep PW
*pw
, void *user
), void *user
)
1182 S(UNION
,every_data
) data
= { test
, user
};
1184 data
.res
= isl_bool_true
;
1185 if (FN(UNION
,foreach_inplace
)(u
, &FN(UNION
,every_entry
), &data
) < 0 &&
1186 data
.res
== isl_bool_true
)
1187 return isl_bool_error
;
1192 S(UNION
,plain_is_equal_data
)
1197 static isl_bool
FN(UNION
,plain_is_equal_el
)(__isl_keep PW
*pw
, void *user
)
1199 S(UNION
,plain_is_equal_data
) *data
= user
;
1200 struct isl_hash_table_entry
*entry
;
1202 entry
= FN(UNION
,find_part_entry
)(data
->u2
, pw
->dim
, 0);
1204 return isl_bool_error
;
1205 if (entry
== isl_hash_table_entry_none
)
1206 return isl_bool_false
;
1208 return FN(PW
,plain_is_equal
)(pw
, entry
->data
);
1211 isl_bool
FN(UNION
,plain_is_equal
)(__isl_keep UNION
*u1
, __isl_keep UNION
*u2
)
1213 S(UNION
,plain_is_equal_data
) data
;
1218 return isl_bool_error
;
1220 return isl_bool_true
;
1221 if (u1
->table
.n
!= u2
->table
.n
)
1222 return isl_bool_false
;
1223 n1
= FN(FN(UNION
,n
),BASE
)(u1
);
1224 n2
= FN(FN(UNION
,n
),BASE
)(u2
);
1225 if (n1
< 0 || n2
< 0)
1226 return isl_bool_error
;
1228 return isl_bool_false
;
1230 u1
= FN(UNION
,copy
)(u1
);
1231 u2
= FN(UNION
,copy
)(u2
);
1232 u1
= FN(UNION
,align_params
)(u1
, FN(UNION
,get_space
)(u2
));
1233 u2
= FN(UNION
,align_params
)(u2
, FN(UNION
,get_space
)(u1
));
1238 is_equal
= FN(FN(UNION
,every
),BASE
)(u1
,
1239 &FN(UNION
,plain_is_equal_el
), &data
);
1248 return isl_bool_error
;
1251 /* An isl_union_*_every_* callback that checks whether "pw"
1252 * does not involve any NaNs.
1254 static isl_bool
FN(UNION
,no_nan_el
)(__isl_keep PW
*pw
, void *user
)
1256 return isl_bool_not(FN(PW
,involves_nan
)(pw
));
1259 /* Does "u" involve any NaNs?
1261 isl_bool
FN(UNION
,involves_nan
)(__isl_keep UNION
*u
)
1265 no_nan
= FN(FN(UNION
,every
),BASE
)(u
, &FN(UNION
,no_nan_el
), NULL
);
1267 return isl_bool_not(no_nan
);
1270 /* Internal data structure for isl_union_*_drop_dims.
1271 * type, first and n are passed to isl_*_drop_dims.
1273 S(UNION
,drop_dims_data
) {
1274 enum isl_dim_type type
;
1279 /* Drop the parameters specified by "data" from "part" and return the result.
1281 static __isl_give PART
*FN(UNION
,drop_dims_entry
)(__isl_take PART
*part
,
1284 S(UNION
,drop_dims_data
) *data
= user
;
1286 return FN(PART
,drop_dims
)(part
, data
->type
, data
->first
, data
->n
);
1289 /* Drop the specified parameters from "u".
1290 * That is, type is required to be isl_dim_param.
1292 __isl_give UNION
*FN(UNION
,drop_dims
)( __isl_take UNION
*u
,
1293 enum isl_dim_type type
, unsigned first
, unsigned n
)
1296 S(UNION
,drop_dims_data
) data
= { type
, first
, n
};
1297 S(UNION
,transform_control
) control
= {
1298 .fn
= &FN(UNION
,drop_dims_entry
),
1305 if (type
!= isl_dim_param
)
1306 isl_die(FN(UNION
,get_ctx
)(u
), isl_error_invalid
,
1307 "can only project out parameters",
1308 return FN(UNION
,free
)(u
));
1310 space
= FN(UNION
,get_space
)(u
);
1311 space
= isl_space_drop_dims(space
, type
, first
, n
);
1312 return FN(UNION
,transform_space
)(u
, space
, &control
);
1315 /* Internal data structure for isl_union_*_set_dim_name.
1316 * pos is the position of the parameter that needs to be renamed.
1317 * s is the new name.
1319 S(UNION
,set_dim_name_data
) {
1324 /* Change the name of the parameter at position data->pos of "part" to data->s
1325 * and return the result.
1327 static __isl_give PART
*FN(UNION
,set_dim_name_entry
)(__isl_take PART
*part
,
1330 S(UNION
,set_dim_name_data
) *data
= user
;
1332 return FN(PART
,set_dim_name
)(part
, isl_dim_param
, data
->pos
, data
->s
);
1335 /* Change the name of the parameter at position "pos" to "s".
1336 * That is, type is required to be isl_dim_param.
1338 __isl_give UNION
*FN(UNION
,set_dim_name
)(__isl_take UNION
*u
,
1339 enum isl_dim_type type
, unsigned pos
, const char *s
)
1341 S(UNION
,set_dim_name_data
) data
= { pos
, s
};
1342 S(UNION
,transform_control
) control
= {
1343 .fn
= &FN(UNION
,set_dim_name_entry
),
1351 if (type
!= isl_dim_param
)
1352 isl_die(FN(UNION
,get_ctx
)(u
), isl_error_invalid
,
1353 "can only set parameter names",
1354 return FN(UNION
,free
)(u
));
1356 space
= FN(UNION
,get_space
)(u
);
1357 space
= isl_space_set_dim_name(space
, type
, pos
, s
);
1358 return FN(UNION
,transform_space
)(u
, space
, &control
);
1361 /* Reset the user pointer on all identifiers of parameters and tuples
1362 * of the space of "part" and return the result.
1364 static __isl_give PART
*FN(UNION
,reset_user_entry
)(__isl_take PART
*part
,
1367 return FN(PART
,reset_user
)(part
);
1370 /* Reset the user pointer on all identifiers of parameters and tuples
1371 * of the spaces of "u".
1373 __isl_give UNION
*FN(UNION
,reset_user
)(__isl_take UNION
*u
)
1375 S(UNION
,transform_control
) control
= {
1376 .fn
= &FN(UNION
,reset_user_entry
),
1380 space
= FN(UNION
,get_space
)(u
);
1381 space
= isl_space_reset_user(space
);
1382 return FN(UNION
,transform_space
)(u
, space
, &control
);
1385 /* Add the base expression held by "entry" to "list".
1387 static isl_stat
FN(UNION
,add_to_list
)(void **entry
, void *user
)
1390 LIST(PART
) **list
= user
;
1392 *list
= FN(LIST(PART
),add
)(*list
, FN(PART
,copy
)(pw
));
1394 return isl_stat_error
;
1399 /* Return a list containing all the base expressions in "u".
1401 * First construct a list of the appropriate size and
1402 * then add all the elements.
1404 __isl_give
LIST(PART
) *FN(FN(UNION
,get
),LIST(BASE
))(__isl_keep UNION
*u
)
1411 n
= FN(FN(UNION
,n
),BASE
)(u
);
1414 list
= FN(LIST(PART
),alloc
)(FN(UNION
,get_ctx(u
)), n
);
1415 if (FN(UNION
,foreach_inplace
)(u
, &FN(UNION
,add_to_list
), &list
) < 0)
1416 return FN(LIST(PART
),free
)(list
);