2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 * Copyright 2011 INRIA Saclay
4 * Copyright 2012-2013 Ecole Normale Superieure
5 * Copyright 2017 Sven Verdoolaege
7 * Use of this software is governed by the MIT license
9 * Written by Sven Verdoolaege, K.U.Leuven, Departement
10 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
11 * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
12 * ZAC des vignes, 4 rue Jacques Monod, 91893 Orsay, France
13 * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
17 #include <isl_tarjan.h>
18 #include <isl/printer.h>
20 #include <isl_list_macro.h>
22 #define xS(TYPE,NAME) struct TYPE ## _ ## NAME
23 #define S(TYPE,NAME) xS(TYPE,NAME)
25 isl_ctx
*FN(LIST(EL
),get_ctx
)(__isl_keep
LIST(EL
) *list
)
27 return list
? list
->ctx
: NULL
;
30 __isl_give
LIST(EL
) *FN(LIST(EL
),alloc
)(isl_ctx
*ctx
, int n
)
35 isl_die(ctx
, isl_error_invalid
,
36 "cannot create list of negative length",
38 list
= isl_alloc(ctx
, LIST(EL
),
39 sizeof(LIST(EL
)) + (n
- 1) * sizeof(struct EL
*));
51 __isl_give
LIST(EL
) *FN(LIST(EL
),copy
)(__isl_keep
LIST(EL
) *list
)
60 __isl_give
LIST(EL
) *FN(LIST(EL
),dup
)(__isl_keep
LIST(EL
) *list
)
68 dup
= FN(LIST(EL
),alloc
)(FN(LIST(EL
),get_ctx
)(list
), list
->n
);
71 for (i
= 0; i
< list
->n
; ++i
)
72 dup
= FN(LIST(EL
),add
)(dup
, FN(EL
,copy
)(list
->p
[i
]));
76 __isl_give
LIST(EL
) *FN(LIST(EL
),cow
)(__isl_take
LIST(EL
) *list
)
84 return FN(LIST(EL
),dup
)(list
);
87 /* Make sure "list" has room for at least "n" more pieces.
88 * Always return a list with a single reference.
90 * If there is only one reference to list, we extend it in place.
91 * Otherwise, we create a new LIST(EL) and copy the elements.
93 static __isl_give
LIST(EL
) *FN(LIST(EL
),grow
)(__isl_take
LIST(EL
) *list
, int n
)
101 if (list
->ref
== 1 && list
->n
+ n
<= list
->size
)
104 ctx
= FN(LIST(EL
),get_ctx
)(list
);
105 new_size
= ((list
->n
+ n
+ 1) * 3) / 2;
106 if (list
->ref
== 1) {
107 res
= isl_realloc(ctx
, list
, LIST(EL
),
108 sizeof(LIST(EL
)) + (new_size
- 1) * sizeof(EL
*));
110 return FN(LIST(EL
),free
)(list
);
111 res
->size
= new_size
;
115 if (list
->n
+ n
<= list
->size
&& list
->size
< new_size
)
116 new_size
= list
->size
;
118 res
= FN(LIST(EL
),alloc
)(ctx
, new_size
);
120 return FN(LIST(EL
),free
)(list
);
122 for (i
= 0; i
< list
->n
; ++i
)
123 res
= FN(LIST(EL
),add
)(res
, FN(EL
,copy
)(list
->p
[i
]));
125 FN(LIST(EL
),free
)(list
);
129 /* Check that "index" is a valid position in "list".
131 static isl_stat
FN(LIST(EL
),check_index
)(__isl_keep
LIST(EL
) *list
, int index
)
134 return isl_stat_error
;
135 if (index
< 0 || index
>= list
->n
)
136 isl_die(FN(LIST(EL
),get_ctx
)(list
), isl_error_invalid
,
137 "index out of bounds", return isl_stat_error
);
141 __isl_give
LIST(EL
) *FN(LIST(EL
),add
)(__isl_take
LIST(EL
) *list
,
142 __isl_take
struct EL
*el
)
144 list
= FN(LIST(EL
),grow
)(list
, 1);
147 list
->p
[list
->n
] = el
;
152 FN(LIST(EL
),free
)(list
);
156 /* Remove the "n" elements starting at "first" from "list".
158 __isl_give
LIST(EL
) *FN(LIST(EL
),drop
)(__isl_take
LIST(EL
) *list
,
159 unsigned first
, unsigned n
)
165 if (first
+ n
> list
->n
|| first
+ n
< first
)
166 isl_die(list
->ctx
, isl_error_invalid
,
167 "index out of bounds", return FN(LIST(EL
),free
)(list
));
170 list
= FN(LIST(EL
),cow
)(list
);
173 for (i
= 0; i
< n
; ++i
)
174 FN(EL
,free
)(list
->p
[first
+ i
]);
175 for (i
= first
; i
+ n
< list
->n
; ++i
)
176 list
->p
[i
] = list
->p
[i
+ n
];
181 /* Remove all elements from "list".
183 __isl_give
LIST(EL
) *FN(LIST(EL
),clear
)(__isl_take
LIST(EL
) *list
)
187 return FN(LIST(EL
),drop
)(list
, 0, list
->n
);
190 /* Insert "el" at position "pos" in "list".
192 * If there is only one reference to "list" and if it already has space
193 * for one extra element, we insert it directly into "list".
194 * Otherwise, we create a new list consisting of "el" and copied
195 * elements from "list".
197 __isl_give
LIST(EL
) *FN(LIST(EL
),insert
)(__isl_take
LIST(EL
) *list
,
198 unsigned pos
, __isl_take
struct EL
*el
)
206 ctx
= FN(LIST(EL
),get_ctx
)(list
);
208 isl_die(ctx
, isl_error_invalid
,
209 "index out of bounds", goto error
);
211 if (list
->ref
== 1 && list
->size
> list
->n
) {
212 for (i
= list
->n
; i
> pos
; --i
)
213 list
->p
[i
] = list
->p
[i
- 1];
219 res
= FN(LIST(EL
),alloc
)(ctx
, list
->n
+ 1);
220 for (i
= 0; i
< pos
; ++i
)
221 res
= FN(LIST(EL
),add
)(res
, FN(EL
,copy
)(list
->p
[i
]));
222 res
= FN(LIST(EL
),add
)(res
, el
);
223 for (i
= pos
; i
< list
->n
; ++i
)
224 res
= FN(LIST(EL
),add
)(res
, FN(EL
,copy
)(list
->p
[i
]));
225 FN(LIST(EL
),free
)(list
);
230 FN(LIST(EL
),free
)(list
);
234 __isl_null
LIST(EL
) *FN(LIST(EL
),free
)(__isl_take
LIST(EL
) *list
)
244 isl_ctx_deref(list
->ctx
);
245 for (i
= 0; i
< list
->n
; ++i
)
246 FN(EL
,free
)(list
->p
[i
]);
252 /* Return the number of elements in "list".
254 isl_size
FN(LIST(EL
),size
)(__isl_keep
LIST(EL
) *list
)
256 return list
? list
->n
: isl_size_error
;
259 /* This is an alternative name for the function above.
261 isl_size
FN(FN(LIST(EL
),n
),EL_BASE
)(__isl_keep
LIST(EL
) *list
)
263 return FN(LIST(EL
),size
)(list
);
266 /* Return the element at position "index" in "list".
268 static __isl_keep EL
*FN(LIST(EL
),peek
)(__isl_keep
LIST(EL
) *list
, int index
)
270 if (FN(LIST(EL
),check_index
)(list
, index
) < 0)
272 return list
->p
[index
];
275 /* Return a copy of the element at position "index" in "list".
277 __isl_give EL
*FN(LIST(EL
),get_at
)(__isl_keep
LIST(EL
) *list
, int index
)
279 return FN(EL
,copy
)(FN(LIST(EL
),peek
)(list
, index
));
282 /* This is an alternative name for the function above.
284 __isl_give EL
*FN(FN(LIST(EL
),get
),EL_BASE
)(__isl_keep
LIST(EL
) *list
,
287 return FN(LIST(EL
),get_at
)(list
, index
);
290 /* Replace the element at position "index" in "list" by "el".
292 __isl_give
LIST(EL
) *FN(FN(LIST(EL
),set
),EL_BASE
)(__isl_take
LIST(EL
) *list
,
293 int index
, __isl_take EL
*el
)
297 if (FN(LIST(EL
),check_index
)(list
, index
) < 0)
299 if (list
->p
[index
] == el
) {
303 list
= FN(LIST(EL
),cow
)(list
);
306 FN(EL
,free
)(list
->p
[index
]);
311 FN(LIST(EL
),free
)(list
);
315 /* Return the element at position "index" of "list".
316 * This may be either a copy or the element itself
317 * if there is only one reference to "list".
318 * This allows the element to be modified inplace
319 * if both the list and the element have only a single reference.
320 * The caller is not allowed to modify "list" between
321 * this call to isl_list_*_take_* and a subsequent call
322 * to isl_list_*_restore_*.
323 * The only exception is that isl_list_*_free can be called instead.
325 static __isl_give EL
*FN(FN(LIST(EL
),take
),EL_BASE
)(__isl_keep
LIST(EL
) *list
,
330 if (FN(LIST(EL
),check_index
)(list
, index
) < 0)
333 return FN(FN(LIST(EL
),get
),EL_BASE
)(list
, index
);
335 list
->p
[index
] = NULL
;
339 /* Set the element at position "index" of "list" to "el",
340 * where the position may be empty due to a previous call
341 * to isl_list_*_take_*.
343 static __isl_give
LIST(EL
) *FN(FN(LIST(EL
),restore
),EL_BASE
)(
344 __isl_take
LIST(EL
) *list
, int index
, __isl_take EL
*el
)
346 return FN(FN(LIST(EL
),set
),EL_BASE
)(list
, index
, el
);
349 /* Swap the elements of "list" in positions "pos1" and "pos2".
351 __isl_give
LIST(EL
) *FN(LIST(EL
),swap
)(__isl_take
LIST(EL
) *list
,
352 unsigned pos1
, unsigned pos2
)
358 el1
= FN(FN(LIST(EL
),take
),EL_BASE
)(list
, pos1
);
359 el2
= FN(FN(LIST(EL
),take
),EL_BASE
)(list
, pos2
);
360 list
= FN(FN(LIST(EL
),restore
),EL_BASE
)(list
, pos1
, el2
);
361 list
= FN(FN(LIST(EL
),restore
),EL_BASE
)(list
, pos2
, el1
);
365 /* Reverse the elements of "list".
367 __isl_give
LIST(EL
) *FN(LIST(EL
),reverse
)(__isl_take
LIST(EL
) *list
)
371 n
= FN(LIST(EL
),size
)(list
);
372 for (i
= 0; i
< n
- 1 - i
; ++i
)
373 list
= FN(LIST(EL
),swap
)(list
, i
, n
- 1 - i
);
377 isl_stat
FN(LIST(EL
),foreach
)(__isl_keep
LIST(EL
) *list
,
378 isl_stat (*fn
)(__isl_take EL
*el
, void *user
), void *user
)
383 return isl_stat_error
;
385 for (i
= 0; i
< list
->n
; ++i
) {
386 EL
*el
= FN(EL
,copy
)(list
->p
[i
]);
388 return isl_stat_error
;
389 if (fn(el
, user
) < 0)
390 return isl_stat_error
;
396 /* Replace each element in "list" by the result of calling "fn"
399 __isl_give
LIST(EL
) *FN(LIST(EL
),map
)(__isl_keep
LIST(EL
) *list
,
400 __isl_give EL
*(*fn
)(__isl_take EL
*el
, void *user
), void *user
)
408 for (i
= 0; i
< n
; ++i
) {
409 EL
*el
= FN(FN(LIST(EL
),take
),EL_BASE
)(list
, i
);
411 return FN(LIST(EL
),free
)(list
);
413 list
= FN(FN(LIST(EL
),restore
),EL_BASE
)(list
, i
, el
);
419 /* Internal data structure for isl_*_list_sort.
421 * "cmp" is the original comparison function.
422 * "user" is a user provided pointer that should be passed to "cmp".
424 S(LIST(EL
),sort_data
) {
425 int (*cmp
)(__isl_keep EL
*a
, __isl_keep EL
*b
, void *user
);
429 /* Compare two entries of an isl_*_list based on the user provided
430 * comparison function on pairs of isl_* objects.
432 static int FN(LIST(EL
),cmp
)(const void *a
, const void *b
, void *user
)
434 S(LIST(EL
),sort_data
) *data
= user
;
438 return data
->cmp(*el1
, *el2
, data
->user
);
441 /* Sort the elements of "list" in ascending order according to
442 * comparison function "cmp".
444 __isl_give
LIST(EL
) *FN(LIST(EL
),sort
)(__isl_take
LIST(EL
) *list
,
445 int (*cmp
)(__isl_keep EL
*a
, __isl_keep EL
*b
, void *user
), void *user
)
447 S(LIST(EL
),sort_data
) data
= { cmp
, user
};
453 list
= FN(LIST(EL
),cow
)(list
);
457 if (isl_sort(list
->p
, list
->n
, sizeof(list
->p
[0]),
458 &FN(LIST(EL
),cmp
), &data
) < 0)
459 return FN(LIST(EL
),free
)(list
);
464 /* Internal data structure for isl_*_list_foreach_scc.
466 * "list" is the original list.
467 * "follows" is the user provided callback that defines the edges of the graph.
469 S(LIST(EL
),foreach_scc_data
) {
471 isl_bool (*follows
)(__isl_keep EL
*a
, __isl_keep EL
*b
, void *user
);
475 /* Does element i of data->list follow element j?
477 * Use the user provided callback to find out.
479 static isl_bool
FN(LIST(EL
),follows
)(int i
, int j
, void *user
)
481 S(LIST(EL
),foreach_scc_data
) *data
= user
;
483 return data
->follows(data
->list
->p
[i
], data
->list
->p
[j
],
487 /* Call "fn" on the sublist of "list" that consists of the elements
488 * with indices specified by the "n" elements of "pos".
490 static isl_stat
FN(LIST(EL
),call_on_scc
)(__isl_keep
LIST(EL
) *list
, int *pos
,
491 int n
, isl_stat (*fn
)(__isl_take
LIST(EL
) *scc
, void *user
), void *user
)
497 ctx
= FN(LIST(EL
),get_ctx
)(list
);
498 slice
= FN(LIST(EL
),alloc
)(ctx
, n
);
499 for (i
= 0; i
< n
; ++i
) {
502 el
= FN(EL
,copy
)(list
->p
[pos
[i
]]);
503 slice
= FN(LIST(EL
),add
)(slice
, el
);
506 return fn(slice
, user
);
509 /* Call "fn" on each of the strongly connected components (SCCs) of
510 * the graph with as vertices the elements of "list" and
511 * a directed edge from node b to node a iff follows(a, b)
512 * returns 1. follows should return -1 on error.
514 * If SCC a contains a node i that follows a node j in another SCC b
515 * (i.e., follows(i, j, user) returns 1), then fn will be called on SCC a
516 * after being called on SCC b.
518 * We simply call isl_tarjan_graph_init, extract the SCCs from the result and
519 * call fn on each of them.
521 isl_stat
FN(LIST(EL
),foreach_scc
)(__isl_keep
LIST(EL
) *list
,
522 isl_bool (*follows
)(__isl_keep EL
*a
, __isl_keep EL
*b
, void *user
),
524 isl_stat (*fn
)(__isl_take
LIST(EL
) *scc
, void *user
), void *fn_user
)
526 S(LIST(EL
),foreach_scc_data
) data
= { list
, follows
, follows_user
};
529 struct isl_tarjan_graph
*g
;
532 return isl_stat_error
;
536 return fn(FN(LIST(EL
),copy
)(list
), fn_user
);
538 ctx
= FN(LIST(EL
),get_ctx
)(list
);
540 g
= isl_tarjan_graph_init(ctx
, n
, &FN(LIST(EL
),follows
), &data
);
542 return isl_stat_error
;
548 if (g
->order
[i
] == -1)
549 isl_die(ctx
, isl_error_internal
, "cannot happen",
552 while (g
->order
[i
] != -1) {
555 if (first
== 0 && n
== 0) {
556 isl_tarjan_graph_free(g
);
557 return fn(FN(LIST(EL
),copy
)(list
), fn_user
);
559 if (FN(LIST(EL
),call_on_scc
)(list
, g
->order
+ first
, i
- first
,
565 isl_tarjan_graph_free(g
);
567 return n
> 0 ? isl_stat_error
: isl_stat_ok
;
570 __isl_give
LIST(EL
) *FN(FN(LIST(EL
),from
),EL_BASE
)(__isl_take EL
*el
)
577 ctx
= FN(EL
,get_ctx
)(el
);
578 list
= FN(LIST(EL
),alloc
)(ctx
, 1);
581 list
= FN(LIST(EL
),add
)(list
, el
);
588 /* Append the elements of "list2" to "list1", where "list1" is known
589 * to have only a single reference and enough room to hold
590 * the extra elements.
592 static __isl_give
LIST(EL
) *FN(LIST(EL
),concat_inplace
)(
593 __isl_take
LIST(EL
) *list1
, __isl_take
LIST(EL
) *list2
)
597 for (i
= 0; i
< list2
->n
; ++i
)
598 list1
= FN(LIST(EL
),add
)(list1
, FN(EL
,copy
)(list2
->p
[i
]));
599 FN(LIST(EL
),free
)(list2
);
603 /* Concatenate "list1" and "list2".
604 * If "list1" has only one reference and has enough room
605 * for the elements of "list2", the add the elements to "list1" itself.
606 * Otherwise, create a new list to store the result.
608 __isl_give
LIST(EL
) *FN(LIST(EL
),concat
)(__isl_take
LIST(EL
) *list1
,
609 __isl_take
LIST(EL
) *list2
)
615 if (!list1
|| !list2
)
618 if (list1
->ref
== 1 && list1
->n
+ list2
->n
<= list1
->size
)
619 return FN(LIST(EL
),concat_inplace
)(list1
, list2
);
621 ctx
= FN(LIST(EL
),get_ctx
)(list1
);
622 res
= FN(LIST(EL
),alloc
)(ctx
, list1
->n
+ list2
->n
);
623 for (i
= 0; i
< list1
->n
; ++i
)
624 res
= FN(LIST(EL
),add
)(res
, FN(EL
,copy
)(list1
->p
[i
]));
625 for (i
= 0; i
< list2
->n
; ++i
)
626 res
= FN(LIST(EL
),add
)(res
, FN(EL
,copy
)(list2
->p
[i
]));
628 FN(LIST(EL
),free
)(list1
);
629 FN(LIST(EL
),free
)(list2
);
632 FN(LIST(EL
),free
)(list1
);
633 FN(LIST(EL
),free
)(list2
);
637 __isl_give isl_printer
*CAT(isl_printer_print_
,LIST(EL_BASE
))(
638 __isl_take isl_printer
*p
, __isl_keep
LIST(EL
) *list
)
644 p
= isl_printer_print_str(p
, "(");
645 for (i
= 0; i
< list
->n
; ++i
) {
647 p
= isl_printer_print_str(p
, ",");
648 p
= CAT(isl_printer_print_
,EL_BASE
)(p
, list
->p
[i
]);
650 p
= isl_printer_print_str(p
, ")");
658 #define BASE LIST(EL_BASE)
660 #define PRINT_DUMP_DEFAULT 0
661 #include "print_templ.c"
662 #undef PRINT_DUMP_DEFAULT