introduce isl_args structure that constains isl_arg list and size of options
[isl.git] / isl_ctx.c
blob14910b89bf81bfcf6d6c2154fe89b860fe704471
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 #include <isl_ctx_private.h>
11 #include <isl/vec.h>
13 static struct isl_options *find_nested_options(struct isl_args *args,
14 void *opt, struct isl_args *wanted)
16 int i;
17 struct isl_options *options;
19 if (args == wanted)
20 return opt;
22 for (i = 0; args->args[i].type != isl_arg_end; ++i) {
23 if (args->args[i].type != isl_arg_child)
24 continue;
25 options = find_nested_options(args->args[i].u.child.child,
26 *(void **)(((char *)opt) + args->args[i].offset),
27 wanted);
28 if (options)
29 return options;
32 return NULL;
35 static struct isl_options *find_nested_isl_options(struct isl_args *args,
36 void *opt)
38 return find_nested_options(args, opt, &isl_options_args);
41 void *isl_ctx_peek_options(isl_ctx *ctx, struct isl_args *args)
43 if (!ctx)
44 return NULL;
45 return find_nested_options(ctx->user_args, ctx->user_opt, args);
48 isl_ctx *isl_ctx_alloc_with_options(struct isl_args *args, void *user_opt)
50 struct isl_ctx *ctx = NULL;
51 struct isl_options *opt = NULL;
52 int opt_allocated = 0;
54 if (!user_opt)
55 return NULL;
57 opt = find_nested_isl_options(args, user_opt);
58 if (!opt) {
59 opt = isl_options_new_with_defaults();
60 if (!opt)
61 goto error;
62 opt_allocated = 1;
65 ctx = isl_calloc_type(NULL, struct isl_ctx);
66 if (!ctx)
67 goto error;
69 if (isl_hash_table_init(ctx, &ctx->id_table, 0))
70 goto error;
72 ctx->stats = isl_calloc_type(ctx, struct isl_stats);
73 if (!ctx->stats)
74 goto error;
76 ctx->user_args = args;
77 ctx->user_opt = user_opt;
78 ctx->opt_allocated = opt_allocated;
79 ctx->opt = opt;
80 ctx->ref = 0;
82 isl_int_init(ctx->zero);
83 isl_int_set_si(ctx->zero, 0);
85 isl_int_init(ctx->one);
86 isl_int_set_si(ctx->one, 1);
88 isl_int_init(ctx->two);
89 isl_int_set_si(ctx->two, 2);
91 isl_int_init(ctx->negone);
92 isl_int_set_si(ctx->negone, -1);
94 isl_int_init(ctx->normalize_gcd);
96 ctx->n_cached = 0;
97 ctx->n_miss = 0;
99 ctx->error = isl_error_none;
101 return ctx;
102 error:
103 isl_args_free(args, user_opt);
104 if (opt_allocated)
105 isl_options_free(opt);
106 free(ctx);
107 return NULL;
110 struct isl_ctx *isl_ctx_alloc()
112 struct isl_options *opt;
114 opt = isl_options_new_with_defaults();
116 return isl_ctx_alloc_with_options(&isl_options_args, opt);
119 void isl_ctx_ref(struct isl_ctx *ctx)
121 ctx->ref++;
124 void isl_ctx_deref(struct isl_ctx *ctx)
126 isl_assert(ctx, ctx->ref > 0, return);
127 ctx->ref--;
130 void isl_ctx_free(struct isl_ctx *ctx)
132 if (!ctx)
133 return;
134 isl_assert(ctx, ctx->ref == 0, return);
135 isl_hash_table_clear(&ctx->id_table);
136 isl_blk_clear_cache(ctx);
137 isl_int_clear(ctx->zero);
138 isl_int_clear(ctx->one);
139 isl_int_clear(ctx->two);
140 isl_int_clear(ctx->negone);
141 isl_int_clear(ctx->normalize_gcd);
142 isl_args_free(ctx->user_args, ctx->user_opt);
143 if (ctx->opt_allocated)
144 free(ctx->opt);
145 free(ctx->stats);
146 free(ctx);
149 struct isl_options *isl_ctx_options(isl_ctx *ctx)
151 if (!ctx)
152 return NULL;
153 return ctx->opt;
156 enum isl_error isl_ctx_last_error(isl_ctx *ctx)
158 return ctx->error;
161 void isl_ctx_reset_error(isl_ctx *ctx)
163 ctx->error = isl_error_none;
166 void isl_ctx_set_error(isl_ctx *ctx, enum isl_error error)
168 if (ctx)
169 ctx->error = error;
172 void isl_ctx_abort(isl_ctx *ctx)
174 if (ctx)
175 ctx->abort = 1;
178 void isl_ctx_resume(isl_ctx *ctx)
180 if (ctx)
181 ctx->abort = 0;
184 int isl_ctx_aborted(isl_ctx *ctx)
186 return ctx ? ctx->abort : -1;
189 int isl_ctx_parse_options(isl_ctx *ctx, int argc, char **argv, unsigned flags)
191 if (!ctx)
192 return -1;
193 return isl_args_parse(ctx->user_args, argc, argv, ctx->user_opt, flags);