parse.c: extract_double: fix return type
[pet.git] / emit.c
blobac70e2dc0beeab75dda6d6090d9cf95b47575b23
1 /*
2 * Copyright 2011 Leiden University. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above
12 * copyright notice, this list of conditions and the following
13 * disclaimer in the documentation and/or other materials provided
14 * with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY LEIDEN UNIVERSITY ''AS IS'' AND ANY
17 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL LEIDEN UNIVERSITY OR
20 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
21 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
23 * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 * The views and conclusions contained in the software and documentation
29 * are those of the authors and should not be interpreted as
30 * representing official policies, either expressed or implied, of
31 * Leiden University.
32 */
34 #include <yaml.h>
36 #include "scop.h"
37 #include "scop_yaml.h"
39 static int emit_string(yaml_emitter_t *emitter, const char *str)
41 yaml_event_t event;
43 if (!yaml_scalar_event_initialize(&event, NULL, NULL,
44 (yaml_char_t *) str, strlen(str),
45 1, 1, YAML_PLAIN_SCALAR_STYLE))
46 return -1;
47 if (!yaml_emitter_emit(emitter, &event))
48 return -1;
50 return 0;
53 static int emit_int(yaml_emitter_t *emitter, int i)
55 char buffer[40];
57 snprintf(buffer, sizeof(buffer), "%d", i);
58 return emit_string(emitter, buffer);
61 static int emit_named_int(yaml_emitter_t *emitter, const char *name, int i)
63 if (emit_string(emitter, name) < 0)
64 return -1;
65 if (emit_int(emitter, i) < 0)
66 return -1;
67 return 0;
70 static int emit_double(yaml_emitter_t *emitter, double d)
72 char buffer[40];
74 snprintf(buffer, sizeof(buffer), "%g", d);
75 return emit_string(emitter, buffer);
78 static int emit_map(yaml_emitter_t *emitter, __isl_keep isl_map *map)
80 isl_ctx *ctx = isl_map_get_ctx(map);
81 isl_printer *p;
82 char *str;
83 int r;
85 p = isl_printer_to_str(ctx);
86 p = isl_printer_print_map(p, map);
87 str = isl_printer_get_str(p);
88 isl_printer_free(p);
89 r = emit_string(emitter, str);
90 free(str);
91 return r;
94 static int emit_set(yaml_emitter_t *emitter, __isl_keep isl_set *set)
96 isl_ctx *ctx = isl_set_get_ctx(set);
97 isl_printer *p;
98 char *str;
99 int r;
101 p = isl_printer_to_str(ctx);
102 p = isl_printer_print_set(p, set);
103 str = isl_printer_get_str(p);
104 isl_printer_free(p);
105 r = emit_string(emitter, str);
106 free(str);
107 return r;
110 static int emit_named_set(yaml_emitter_t *emitter, const char *name,
111 __isl_keep isl_set *set)
113 if (emit_string(emitter, name) < 0)
114 return -1;
115 if (emit_set(emitter, set) < 0)
116 return -1;
117 return 0;
120 static int emit_array(yaml_emitter_t *emitter, struct pet_array *array)
122 yaml_event_t event;
124 if (!yaml_mapping_start_event_initialize(&event, NULL, NULL, 1,
125 YAML_BLOCK_MAPPING_STYLE))
126 return -1;
127 if (!yaml_emitter_emit(emitter, &event))
128 return -1;
130 if (emit_string(emitter, "context") < 0)
131 return -1;
132 if (emit_set(emitter, array->context) < 0)
133 return -1;
135 if (emit_string(emitter, "extent") < 0)
136 return -1;
137 if (emit_set(emitter, array->extent) < 0)
138 return -1;
140 if (array->value_bounds) {
141 if (emit_string(emitter, "value_bounds") < 0)
142 return -1;
143 if (emit_set(emitter, array->value_bounds) < 0)
144 return -1;
147 if (emit_string(emitter, "element_type") < 0)
148 return -1;
149 if (emit_string(emitter, array->element_type) < 0)
150 return -1;
151 if (emit_named_int(emitter, "element_size", array->element_size) < 0)
152 return -1;
154 if (array->live_out) {
155 if (emit_string(emitter, "live_out") < 0)
156 return -1;
157 if (emit_string(emitter, "1") < 0)
158 return -1;
161 if (array->uniquely_defined) {
162 if (emit_string(emitter, "uniquely_defined") < 0)
163 return -1;
164 if (emit_string(emitter, "1") < 0)
165 return -1;
168 if (array->declared && emit_named_int(emitter, "declared", 1) < 0)
169 return -1;
170 if (array->exposed && emit_named_int(emitter, "exposed", 1) < 0)
171 return -1;
173 if (!yaml_mapping_end_event_initialize(&event))
174 return -1;
175 if (!yaml_emitter_emit(emitter, &event))
176 return -1;
178 return 0;
181 static int emit_arrays(yaml_emitter_t *emitter, int n_array,
182 struct pet_array **arrays)
184 int i;
185 yaml_event_t event;
187 if (emit_string(emitter, "arrays") < 0)
188 return -1;
189 if (!yaml_sequence_start_event_initialize(&event, NULL, NULL, 1,
190 YAML_BLOCK_SEQUENCE_STYLE))
191 return -1;
192 if (!yaml_emitter_emit(emitter, &event))
193 return -1;
195 for (i = 0; i < n_array; ++i)
196 if (emit_array(emitter, arrays[i]) < 0)
197 return -1;
199 if (!yaml_sequence_end_event_initialize(&event))
200 return -1;
201 if (!yaml_emitter_emit(emitter, &event))
202 return -1;
204 return 0;
207 static int emit_type(yaml_emitter_t *emitter, enum pet_expr_type type)
209 if (emit_string(emitter, pet_type_str(type)) < 0)
210 return -1;
211 return 0;
214 static int emit_expr(yaml_emitter_t *emitter, struct pet_expr *expr)
216 yaml_event_t event;
218 if (!yaml_mapping_start_event_initialize(&event, NULL, NULL, 1,
219 YAML_BLOCK_MAPPING_STYLE))
220 return -1;
221 if (!yaml_emitter_emit(emitter, &event))
222 return -1;
224 if (emit_string(emitter, "type") < 0)
225 return -1;
226 if (emit_type(emitter, expr->type) < 0)
227 return -1;
229 switch (expr->type) {
230 case pet_expr_double:
231 if (emit_string(emitter, "value") < 0)
232 return -1;
233 if (emit_double(emitter, expr->d) < 0)
234 return -1;
235 break;
236 case pet_expr_access:
237 if (emit_string(emitter, "relation") < 0)
238 return -1;
239 if (emit_map(emitter, expr->acc.access) < 0)
240 return -1;
241 if (emit_string(emitter, "read") < 0)
242 return -1;
243 if (emit_int(emitter, expr->acc.read) < 0)
244 return -1;
245 if (emit_string(emitter, "write") < 0)
246 return -1;
247 if (emit_int(emitter, expr->acc.write) < 0)
248 return -1;
249 break;
250 case pet_expr_unary:
251 case pet_expr_binary:
252 if (emit_string(emitter, "operation") < 0)
253 return -1;
254 if (emit_string(emitter, pet_op_str(expr->op)) < 0)
255 return -1;
256 break;
257 case pet_expr_ternary:
258 break;
259 case pet_expr_call:
260 if (emit_string(emitter, "name") < 0)
261 return -1;
262 if (emit_string(emitter, expr->name) < 0)
263 return -1;
264 break;
267 if (expr->n_arg > 0) {
268 int i;
270 if (emit_string(emitter, "arguments") < 0)
271 return -1;
272 if (!yaml_sequence_start_event_initialize(&event, NULL, NULL, 1,
273 YAML_BLOCK_SEQUENCE_STYLE))
274 return -1;
275 if (!yaml_emitter_emit(emitter, &event))
276 return -1;
278 for (i = 0; i < expr->n_arg; ++i)
279 if (emit_expr(emitter, expr->args[i]) < 0)
280 return -1;
282 if (!yaml_sequence_end_event_initialize(&event))
283 return -1;
284 if (!yaml_emitter_emit(emitter, &event))
285 return -1;
288 if (!yaml_mapping_end_event_initialize(&event))
289 return -1;
290 if (!yaml_emitter_emit(emitter, &event))
291 return -1;
293 return 0;
296 static int emit_stmt(yaml_emitter_t *emitter, struct pet_stmt *stmt)
298 yaml_event_t event;
300 if (!yaml_mapping_start_event_initialize(&event, NULL, NULL, 1,
301 YAML_BLOCK_MAPPING_STYLE))
302 return -1;
303 if (!yaml_emitter_emit(emitter, &event))
304 return -1;
306 if (emit_string(emitter, "line") < 0)
307 return -1;
308 if (emit_int(emitter, stmt->line) < 0)
309 return -1;
311 if (emit_string(emitter, "domain") < 0)
312 return -1;
313 if (emit_set(emitter, stmt->domain) < 0)
314 return -1;
316 if (emit_string(emitter, "schedule") < 0)
317 return -1;
318 if (emit_map(emitter, stmt->schedule) < 0)
319 return -1;
321 if (emit_string(emitter, "body") < 0)
322 return -1;
323 if (emit_expr(emitter, stmt->body) < 0)
324 return -1;
326 if (stmt->n_arg > 0) {
327 int i;
329 if (emit_string(emitter, "arguments") < 0)
330 return -1;
331 if (!yaml_sequence_start_event_initialize(&event, NULL, NULL, 1,
332 YAML_BLOCK_SEQUENCE_STYLE))
333 return -1;
334 if (!yaml_emitter_emit(emitter, &event))
335 return -1;
337 for (i = 0; i < stmt->n_arg; ++i)
338 if (emit_expr(emitter, stmt->args[i]) < 0)
339 return -1;
341 if (!yaml_sequence_end_event_initialize(&event))
342 return -1;
343 if (!yaml_emitter_emit(emitter, &event))
344 return -1;
347 if (!yaml_mapping_end_event_initialize(&event))
348 return -1;
349 if (!yaml_emitter_emit(emitter, &event))
350 return -1;
352 return 0;
355 static int emit_statements(yaml_emitter_t *emitter, int n_stmt,
356 struct pet_stmt **stmts)
358 int i;
359 yaml_event_t event;
361 if (emit_string(emitter, "statements") < 0)
362 return -1;
363 if (!yaml_sequence_start_event_initialize(&event, NULL, NULL, 1,
364 YAML_BLOCK_SEQUENCE_STYLE))
365 return -1;
366 if (!yaml_emitter_emit(emitter, &event))
367 return -1;
369 for (i = 0; i < n_stmt; ++i)
370 if (emit_stmt(emitter, stmts[i]) < 0)
371 return -1;
373 if (!yaml_sequence_end_event_initialize(&event))
374 return -1;
375 if (!yaml_emitter_emit(emitter, &event))
376 return -1;
378 return 0;
381 static int emit_scop(yaml_emitter_t *emitter, struct pet_scop *scop)
383 yaml_event_t event;
385 if (!yaml_mapping_start_event_initialize(&event, NULL, NULL, 1,
386 YAML_BLOCK_MAPPING_STYLE))
387 return -1;
388 if (!yaml_emitter_emit(emitter, &event))
389 return -1;
391 if (emit_string(emitter, "context") < 0)
392 return -1;
393 if (emit_set(emitter, scop->context) < 0)
394 return -1;
395 if (!isl_set_plain_is_universe(scop->context_value) &&
396 emit_named_set(emitter, "context_value", scop->context_value) < 0)
397 return -1;
399 if (emit_arrays(emitter, scop->n_array, scop->arrays) < 0)
400 return -1;
402 if (emit_statements(emitter, scop->n_stmt, scop->stmts) < 0)
403 return -1;
405 if (!yaml_mapping_end_event_initialize(&event))
406 return -1;
407 if (!yaml_emitter_emit(emitter, &event))
408 return -1;
410 return 0;
413 /* Print a YAML serialization of "scop" to "out".
415 int pet_scop_emit(FILE *out, struct pet_scop *scop)
417 yaml_emitter_t emitter;
418 yaml_event_t event;
420 yaml_emitter_initialize(&emitter);
422 yaml_emitter_set_output_file(&emitter, out);
424 yaml_stream_start_event_initialize(&event, YAML_UTF8_ENCODING);
425 if (!yaml_emitter_emit(&emitter, &event))
426 goto error;
428 if (!yaml_document_start_event_initialize(&event, NULL, NULL, NULL, 1))
429 goto error;
430 if (!yaml_emitter_emit(&emitter, &event))
431 goto error;
433 if (emit_scop(&emitter, scop) < 0)
434 goto error;
436 if (!yaml_document_end_event_initialize(&event, 1))
437 goto error;
438 if (!yaml_emitter_emit(&emitter, &event))
439 goto error;
441 yaml_stream_end_event_initialize(&event);
442 if (!yaml_emitter_emit(&emitter, &event))
443 goto error;
445 yaml_emitter_delete(&emitter);
446 return 0;
447 error:
448 yaml_emitter_delete(&emitter);
449 return -1;