isl_stream_next_token_on_same_line: check if last token read was a newline
[isl.git] / include / isl_ctx.h
blobb2ecc3cc21bb3989c254cb4cbac5b41698ba4273
1 /*
2 * Copyright 2008-2009 Katholieke Universiteit Leuven
4 * Use of this software is governed by the GNU LGPLv2.1 license
6 * Written by Sven Verdoolaege, K.U.Leuven, Departement
7 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
8 */
10 #ifndef ISL_CTX_H
11 #define ISL_CTX_H
13 #include <assert.h>
14 #include <stdlib.h>
16 #include <isl_int.h>
17 #include <isl_options.h>
18 #include <isl_blk.h>
19 #include <isl_hash.h>
20 #include <isl_config.h>
22 #define __isl_give
23 #define __isl_take
24 #define __isl_keep
26 #ifdef GCC_WARN_UNUSED_RESULT
27 #define WARN_UNUSED GCC_WARN_UNUSED_RESULT
28 #else
29 #define WARN_UNUSED
30 #endif
32 #if defined(__cplusplus)
33 extern "C" {
34 #endif
36 /* Nearly all isa functions require a struct isl_ctx allocated using
37 * isl_ctx_alloc. This ctx contains (or will contain) options that
38 * control the behavior of the library and some caches.
40 * An object allocated within a given ctx should never be used inside
41 * another ctx. Functions for moving objects from one ctx to another
42 * will be added as the need arises.
44 * A given context should only be used inside a single thread.
45 * A global context for synchronization between different threads
46 * as well as functions for moving a context to a different thread
47 * will be added as the need arises.
49 * If anything goes wrong (out of memory, failed assertion), then
50 * the library will currently simply abort. This will be made
51 * configurable in the future.
52 * Users of the library should expect functions that return
53 * a pointer to a structure, to return NULL, indicating failure.
54 * Any function accepting a pointer to a structure will treat
55 * a NULL argument as a failure, resulting in the function freeing
56 * the remaining structures (if any) and returning NULL itself
57 * (in case of pointer return type).
58 * The only exception is the isl_ctx argument, which shoud never be NULL.
60 struct isl_stats {
61 long gbr_solved_lps;
63 struct isl_ctx {
64 int ref;
66 struct isl_stats *stats;
68 struct isl_options *opt;
70 isl_int one;
71 isl_int negone;
73 isl_int normalize_gcd;
75 int n_cached;
76 struct isl_blk cache[ISL_BLK_CACHE_SIZE];
77 struct isl_hash_table name_hash;
79 typedef struct isl_ctx isl_ctx;
81 /* Some helper macros */
83 #define ISL_FL_INIT(l, f) (l) = (f) /* Specific flags location. */
84 #define ISL_FL_SET(l, f) ((l) |= (f))
85 #define ISL_FL_CLR(l, f) ((l) &= ~(f))
86 #define ISL_FL_ISSET(l, f) (!!((l) & (f)))
88 #define ISL_F_INIT(p, f) ISL_FL_INIT((p)->flags, f) /* Structure element flags. */
89 #define ISL_F_SET(p, f) ISL_FL_SET((p)->flags, f)
90 #define ISL_F_CLR(p, f) ISL_FL_CLR((p)->flags, f)
91 #define ISL_F_ISSET(p, f) ISL_FL_ISSET((p)->flags, f)
93 #define isl_alloc(ctx,type,size) (type *)malloc(size)
94 #define isl_calloc(ctx,type,size) (type *)calloc(1, size)
95 #define isl_realloc(ctx,ptr,type,size) (type *)realloc(ptr,size)
96 #define isl_alloc_type(ctx,type) isl_alloc(ctx,type,sizeof(type))
97 #define isl_calloc_type(ctx,type) isl_calloc(ctx,type,sizeof(type))
98 #define isl_realloc_type(ctx,ptr,type) isl_realloc(ctx,ptr,type,sizeof(type))
99 #define isl_alloc_array(ctx,type,n) isl_alloc(ctx,type,(n)*sizeof(type))
100 #define isl_calloc_array(ctx,type,n) (type *)calloc(n, sizeof(type))
101 #define isl_realloc_array(ctx,ptr,type,n) \
102 isl_realloc(ctx,ptr,type,(n)*sizeof(type))
104 #define isl_assert(ctx,test,code) \
105 do { \
106 assert(test); \
107 if (0 && !ctx) { \
108 code; \
110 } while(0)
112 #define isl_min(a,b) ((a < b) ? (a) : (b))
114 /* struct isl_ctx functions */
116 struct isl_options *isl_ctx_options(isl_ctx *ctx);
118 isl_ctx *isl_ctx_alloc_with_options(struct isl_options *opt);
119 isl_ctx *isl_ctx_alloc();
120 void isl_ctx_ref(struct isl_ctx *ctx);
121 void isl_ctx_deref(struct isl_ctx *ctx);
122 void isl_ctx_free(isl_ctx *ctx);
124 #if defined(__cplusplus)
126 #endif
128 #endif