Polly 23.0.0git
ctx.h
Go to the documentation of this file.
1/*
2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 *
4 * Use of this software is governed by the MIT license
5 *
6 * Written by Sven Verdoolaege, K.U.Leuven, Departement
7 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
8 */
9
10#ifndef ISL_CTX_H
11#define ISL_CTX_H
12
13#include <stdio.h>
14#include <stdlib.h>
15
16#include <isl/arg.h>
17
18#ifndef __isl_give
19#define __isl_give
20#endif
21#ifndef __isl_take
22#define __isl_take
23#endif
24#ifndef __isl_keep
25#define __isl_keep
26#endif
27#ifndef __isl_null
28#define __isl_null
29#endif
30#ifndef __isl_export
31#define __isl_export
32#endif
33#ifndef __isl_overload
34#define __isl_overload
35#endif
36#ifndef __isl_constructor
37#define __isl_constructor
38#endif
39#ifndef __isl_subclass
40#define __isl_subclass(super)
41#endif
42
43#if defined(__cplusplus)
44extern "C" {
45#endif
46
47/* Nearly all isa functions require a struct isl_ctx allocated using
48 * isl_ctx_alloc. This ctx contains (or will contain) options that
49 * control the behavior of the library and some caches.
50 *
51 * An object allocated within a given ctx should never be used inside
52 * another ctx. Functions for moving objects from one ctx to another
53 * will be added as the need arises.
54 *
55 * A given context should only be used inside a single thread.
56 * A global context for synchronization between different threads
57 * as well as functions for moving a context to a different thread
58 * will be added as the need arises.
59 *
60 * If anything goes wrong (out of memory, failed assertion), then
61 * the library will currently simply abort. This will be made
62 * configurable in the future.
63 * Users of the library should expect functions that return
64 * a pointer to a structure, to return NULL, indicating failure.
65 * Any function accepting a pointer to a structure will treat
66 * a NULL argument as a failure, resulting in the function freeing
67 * the remaining structures (if any) and returning NULL itself
68 * (in case of pointer return type).
69 * The only exception is the isl_ctx argument, which should never be NULL.
70 */
71struct isl_stats {
73};
84typedef enum {
87} isl_stat;
97typedef int isl_size;
98#define isl_size_error ((int) -1)
99struct isl_ctx;
100typedef struct isl_ctx isl_ctx;
101
102/* Some helper macros */
103
104#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)
105#define ISL_DEPRECATED __attribute__((__deprecated__))
106#else
107#define ISL_DEPRECATED
108#endif
109
110#define ISL_FL_INIT(l, f) (l) = (f) /* Specific flags location. */
111#define ISL_FL_SET(l, f) ((l) |= (f))
112#define ISL_FL_CLR(l, f) ((l) &= ~(f))
113#define ISL_FL_ISSET(l, f) (!!((l) & (f)))
114
115#define ISL_F_INIT(p, f) ISL_FL_INIT((p)->flags, f) /* Structure element flags. */
116#define ISL_F_SET(p, f) ISL_FL_SET((p)->flags, f)
117#define ISL_F_CLR(p, f) ISL_FL_CLR((p)->flags, f)
118#define ISL_F_ISSET(p, f) ISL_FL_ISSET((p)->flags, f)
119
120void *isl_malloc_or_die(isl_ctx *ctx, size_t size);
121void *isl_calloc_or_die(isl_ctx *ctx, size_t nmemb, size_t size);
122void *isl_realloc_or_die(isl_ctx *ctx, void *ptr, size_t size);
123
124#define isl_alloc(ctx,type,size) ((type *)isl_malloc_or_die(ctx, size))
125#define isl_calloc(ctx,type,size) ((type *)isl_calloc_or_die(ctx,\
126 1, size))
127#define isl_realloc(ctx,ptr,type,size) ((type *)isl_realloc_or_die(ctx,\
128 ptr, size))
129#define isl_alloc_type(ctx,type) isl_alloc(ctx,type,sizeof(type))
130#define isl_calloc_type(ctx,type) isl_calloc(ctx,type,sizeof(type))
131#define isl_realloc_type(ctx,ptr,type) isl_realloc(ctx,ptr,type,sizeof(type))
132#define isl_alloc_array(ctx,type,n) isl_alloc(ctx,type,(n)*sizeof(type))
133#define isl_calloc_array(ctx,type,n) ((type *)isl_calloc_or_die(ctx,\
134 n, sizeof(type)))
135#define isl_realloc_array(ctx,ptr,type,n) \
136 isl_realloc(ctx,ptr,type,(n)*sizeof(type))
137
138#define isl_die(ctx,errno,msg,code) \
139 do { \
140 isl_handle_error(ctx, errno, msg, __FILE__, __LINE__); \
141 code; \
142 } while (0)
143
144void isl_handle_error(isl_ctx *ctx, enum isl_error error, const char *msg,
145 const char *file, int line);
146
147#define isl_assert4(ctx,test,code,errno) \
148 do { \
149 if (test) \
150 break; \
151 isl_die(ctx, errno, "Assertion \"" #test "\" failed", code); \
152 } while (0)
153#define isl_assert(ctx,test,code) \
154 isl_assert4(ctx,test,code,isl_error_unknown)
155
156#define isl_min(a,b) ((a < b) ? (a) : (b))
157
158/* struct isl_ctx functions */
159
161
163 __isl_take void *opt);
165void *isl_ctx_peek_options(isl_ctx *ctx, struct isl_args *args);
166int isl_ctx_parse_options(isl_ctx *ctx, int argc, char **argv, unsigned flags);
167void isl_ctx_ref(struct isl_ctx *ctx);
168void isl_ctx_deref(struct isl_ctx *ctx);
169void isl_ctx_free(isl_ctx *ctx);
170
171void isl_ctx_abort(isl_ctx *ctx);
172void isl_ctx_resume(isl_ctx *ctx);
173int isl_ctx_aborted(isl_ctx *ctx);
174
175void isl_ctx_set_max_operations(isl_ctx *ctx, unsigned long max_operations);
176unsigned long isl_ctx_get_max_operations(isl_ctx *ctx);
178
179#define ISL_ARG_CTX_DECL(prefix,st,args) \
180st *isl_ctx_peek_ ## prefix(isl_ctx *ctx);
181
182#define ISL_ARG_CTX_DEF(prefix,st,args) \
183st *isl_ctx_peek_ ## prefix(isl_ctx *ctx) \
184{ \
185 return (st *)isl_ctx_peek_options(ctx, &(args)); \
186}
187
188#define ISL_CTX_GET_INT_DEF(prefix,st,args,field) \
189int prefix ## _get_ ## field(isl_ctx *ctx) \
190{ \
191 st *options; \
192 options = isl_ctx_peek_ ## prefix(ctx); \
193 if (!options) \
194 isl_die(ctx, isl_error_invalid, \
195 "isl_ctx does not reference " #prefix, \
196 return -1); \
197 return options->field; \
198}
199
200#define ISL_CTX_SET_INT_DEF(prefix,st,args,field) \
201isl_stat prefix ## _set_ ## field(isl_ctx *ctx, int val) \
202{ \
203 st *options; \
204 options = isl_ctx_peek_ ## prefix(ctx); \
205 if (!options) \
206 isl_die(ctx, isl_error_invalid, \
207 "isl_ctx does not reference " #prefix, \
208 return isl_stat_error); \
209 options->field = val; \
210 return isl_stat_ok; \
211}
212
213#define ISL_CTX_GET_STR_DEF(prefix,st,args,field) \
214const char *prefix ## _get_ ## field(isl_ctx *ctx) \
215{ \
216 st *options; \
217 options = isl_ctx_peek_ ## prefix(ctx); \
218 if (!options) \
219 isl_die(ctx, isl_error_invalid, \
220 "isl_ctx does not reference " #prefix, \
221 return NULL); \
222 return options->field; \
223}
224
225#define ISL_CTX_SET_STR_DEF(prefix,st,args,field) \
226isl_stat prefix ## _set_ ## field(isl_ctx *ctx, const char *val) \
227{ \
228 st *options; \
229 options = isl_ctx_peek_ ## prefix(ctx); \
230 if (!options) \
231 isl_die(ctx, isl_error_invalid, \
232 "isl_ctx does not reference " #prefix, \
233 return isl_stat_error); \
234 if (!val) \
235 return isl_stat_error; \
236 free(options->field); \
237 options->field = strdup(val); \
238 if (!options->field) \
239 return isl_stat_error; \
240 return isl_stat_ok; \
241}
242
243#define ISL_CTX_GET_BOOL_DEF(prefix,st,args,field) \
244 ISL_CTX_GET_INT_DEF(prefix,st,args,field)
245
246#define ISL_CTX_SET_BOOL_DEF(prefix,st,args,field) \
247 ISL_CTX_SET_INT_DEF(prefix,st,args,field)
248
249#define ISL_CTX_GET_CHOICE_DEF(prefix,st,args,field) \
250 ISL_CTX_GET_INT_DEF(prefix,st,args,field)
251
252#define ISL_CTX_SET_CHOICE_DEF(prefix,st,args,field) \
253 ISL_CTX_SET_INT_DEF(prefix,st,args,field)
254
256const char *isl_ctx_last_error_msg(isl_ctx *ctx);
257const char *isl_ctx_last_error_file(isl_ctx *ctx);
260void isl_ctx_set_error(isl_ctx *ctx, enum isl_error error);
261
262#if defined(__cplusplus)
263}
264#endif
265
266#endif
isl_ctx * isl_ctx_alloc_with_options(struct isl_args *args, __isl_take void *opt)
isl_stat isl_stat_non_null(void *obj)
Definition isl_ctx.c:34
#define __isl_take
Definition ctx.h:22
const char * isl_ctx_last_error_file(isl_ctx *ctx)
Definition isl_ctx.c:347
enum isl_error isl_ctx_last_error(isl_ctx *ctx)
Definition isl_ctx.c:333
isl_stat
Definition ctx.h:84
@ isl_stat_error
Definition ctx.h:85
@ isl_stat_ok
Definition ctx.h:86
int isl_ctx_aborted(isl_ctx *ctx)
Definition isl_ctx.c:386
isl_ctx * isl_ctx_alloc(void)
Definition isl_ctx.c:273
void * isl_realloc_or_die(isl_ctx *ctx, void *ptr, size_t size)
Definition isl_ctx.c:121
void isl_handle_error(isl_ctx *ctx, enum isl_error error, const char *msg, const char *file, int line)
Definition isl_ctx.c:142
void isl_ctx_deref(struct isl_ctx *ctx)
Definition isl_ctx.c:287
unsigned long isl_ctx_get_max_operations(isl_ctx *ctx)
Definition isl_ctx.c:409
void isl_ctx_reset_operations(isl_ctx *ctx)
Definition isl_ctx.c:416
isl_bool isl_bool_ok(int b)
Definition isl_ctx.c:58
isl_error
Definition ctx.h:74
@ isl_error_unknown
Definition ctx.h:78
@ isl_error_abort
Definition ctx.h:76
@ isl_error_unsupported
Definition ctx.h:82
@ isl_error_invalid
Definition ctx.h:80
@ isl_error_internal
Definition ctx.h:79
@ isl_error_none
Definition ctx.h:75
@ isl_error_alloc
Definition ctx.h:77
@ isl_error_quota
Definition ctx.h:81
void isl_ctx_resume(isl_ctx *ctx)
Definition isl_ctx.c:380
void isl_ctx_reset_error(isl_ctx *ctx)
Definition isl_ctx.c:359
void * isl_calloc_or_die(isl_ctx *ctx, size_t nmemb, size_t size)
Definition isl_ctx.c:111
int isl_size
Definition ctx.h:97
void isl_ctx_set_error(isl_ctx *ctx, enum isl_error error)
Definition isl_ctx.c:369
int isl_ctx_last_error_line(isl_ctx *ctx)
Definition isl_ctx.c:354
void isl_ctx_abort(isl_ctx *ctx)
Definition isl_ctx.c:374
void isl_ctx_ref(struct isl_ctx *ctx)
Definition isl_ctx.c:282
isl_stat isl_stat_non_error_bool(isl_bool b)
Definition isl_ctx.c:22
struct isl_options * isl_ctx_options(isl_ctx *ctx)
Definition isl_ctx.c:326
isl_bool isl_bool_not(isl_bool b)
Definition isl_ctx.c:44
void * isl_malloc_or_die(isl_ctx *ctx, size_t size)
Definition isl_ctx.c:101
const char * isl_ctx_last_error_msg(isl_ctx *ctx)
Definition isl_ctx.c:340
isl_bool
Definition ctx.h:89
@ isl_bool_false
Definition ctx.h:91
@ isl_bool_true
Definition ctx.h:92
@ isl_bool_error
Definition ctx.h:90
void * isl_ctx_peek_options(isl_ctx *ctx, struct isl_args *args)
Definition isl_ctx.c:199
void isl_ctx_set_max_operations(isl_ctx *ctx, unsigned long max_operations)
Definition isl_ctx.c:400
int isl_ctx_parse_options(isl_ctx *ctx, int argc, char **argv, unsigned flags)
Definition isl_ctx.c:391
void isl_ctx_free(isl_ctx *ctx)
Definition isl_ctx.c:300
const char * obj
Definition isl_test.c:3166
const char * size
Definition isl_test.c:1578
b(9)
enum isl_error error
unsigned long max_operations
long gbr_solved_lps
Definition ctx.h:72