add isl_*_list_from_*
[platform/upstream/isl.git] / include / isl / list.h
1 /*
2  * Copyright 2008-2009 Katholieke Universiteit Leuven
3  *
4  * Use of this software is governed by the GNU LGPLv2.1 license
5  *
6  * Written by Sven Verdoolaege, K.U.Leuven, Departement
7  * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
8  */
9
10 #ifndef ISL_LIST_H
11 #define ISL_LIST_H
12
13 #include <isl/ctx.h>
14 #include <isl/printer.h>
15
16 #if defined(__cplusplus)
17 extern "C" {
18 #endif
19
20 #define ISL_DECLARE_LIST(EL)                                            \
21 struct isl_##EL;                                                        \
22 struct isl_##EL##_list;                                                 \
23 typedef struct isl_##EL##_list isl_##EL##_list;                         \
24 isl_ctx *isl_##EL##_list_get_ctx(__isl_keep isl_##EL##_list *list);     \
25 __isl_give isl_##EL##_list *isl_##EL##_list_from_##EL(                  \
26         __isl_take struct isl_##EL *el);                                \
27 __isl_give isl_##EL##_list *isl_##EL##_list_alloc(isl_ctx *ctx, int n); \
28 __isl_give isl_##EL##_list *isl_##EL##_list_copy(                       \
29         __isl_keep isl_##EL##_list *list);                              \
30 void *isl_##EL##_list_free(__isl_take isl_##EL##_list *list);           \
31 __isl_give isl_##EL##_list *isl_##EL##_list_add(                        \
32         __isl_take isl_##EL##_list *list,                               \
33         __isl_take struct isl_##EL *el);                                \
34 int isl_##EL##_list_n_##EL(__isl_keep isl_##EL##_list *list);           \
35 __isl_give struct isl_##EL *isl_##EL##_list_get_##EL(                   \
36         __isl_keep isl_##EL##_list *list, int index);                   \
37 int isl_##EL##_list_foreach(__isl_keep isl_##EL##_list *list,           \
38         int (*fn)(__isl_take struct isl_##EL *el, void *user),          \
39         void *user);                                                    \
40 __isl_give isl_printer *isl_printer_print_##EL##_list(                  \
41         __isl_take isl_printer *p, __isl_keep isl_##EL##_list *list);   \
42 void isl_##EL##_list_dump(__isl_keep isl_##EL##_list *list);
43
44 ISL_DECLARE_LIST(basic_set)
45 ISL_DECLARE_LIST(set)
46 ISL_DECLARE_LIST(aff)
47 ISL_DECLARE_LIST(band)
48
49 #if defined(__cplusplus)
50 }
51 #endif
52
53 #endif