2 * Copyright 2011 Leiden University. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
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
37 #include "scop_yaml.h"
39 static int emit_string(yaml_emitter_t
*emitter
, const char *str
)
43 if (!yaml_scalar_event_initialize(&event
, NULL
, NULL
,
44 (yaml_char_t
*) str
, strlen(str
),
45 1, 1, YAML_PLAIN_SCALAR_STYLE
))
47 if (!yaml_emitter_emit(emitter
, &event
))
53 /* Print the isl_id "id" to "emitter".
55 static int emit_id(yaml_emitter_t
*emitter
, __isl_keep isl_id
*id
)
57 return emit_string(emitter
, isl_id_get_name(id
));
60 /* Print the string "name" and the isl_id "id" to "emitter".
62 static int emit_named_id(yaml_emitter_t
*emitter
, const char *name
,
63 __isl_keep isl_id
*id
)
65 if (emit_string(emitter
, name
) < 0)
67 if (emit_id(emitter
, id
) < 0)
72 static int emit_int(yaml_emitter_t
*emitter
, int i
)
76 snprintf(buffer
, sizeof(buffer
), "%d", i
);
77 return emit_string(emitter
, buffer
);
80 static int emit_named_int(yaml_emitter_t
*emitter
, const char *name
, int i
)
82 if (emit_string(emitter
, name
) < 0)
84 if (emit_int(emitter
, i
) < 0)
89 /* Print the unsigned integer "u" to "emitter".
91 static int emit_unsigned(yaml_emitter_t
*emitter
, unsigned u
)
95 snprintf(buffer
, sizeof(buffer
), "%u", u
);
96 return emit_string(emitter
, buffer
);
99 /* Print the string "name" and the unsigned integer "u" to "emitter".
101 static int emit_named_unsigned(yaml_emitter_t
*emitter
, const char *name
,
104 if (emit_string(emitter
, name
) < 0)
106 if (emit_int(emitter
, u
) < 0)
111 static int emit_double(yaml_emitter_t
*emitter
, double d
)
115 snprintf(buffer
, sizeof(buffer
), "%g", d
);
116 return emit_string(emitter
, buffer
);
119 static int emit_map(yaml_emitter_t
*emitter
, __isl_keep isl_map
*map
)
121 isl_ctx
*ctx
= isl_map_get_ctx(map
);
126 p
= isl_printer_to_str(ctx
);
127 p
= isl_printer_print_map(p
, map
);
128 str
= isl_printer_get_str(p
);
130 r
= emit_string(emitter
, str
);
135 static int emit_set(yaml_emitter_t
*emitter
, __isl_keep isl_set
*set
)
137 isl_ctx
*ctx
= isl_set_get_ctx(set
);
142 p
= isl_printer_to_str(ctx
);
143 p
= isl_printer_print_set(p
, set
);
144 str
= isl_printer_get_str(p
);
146 r
= emit_string(emitter
, str
);
151 static int emit_named_set(yaml_emitter_t
*emitter
, const char *name
,
152 __isl_keep isl_set
*set
)
154 if (emit_string(emitter
, name
) < 0)
156 if (emit_set(emitter
, set
) < 0)
161 /* Print the string "name" and the map "map" to "emitter".
163 static int emit_named_map(yaml_emitter_t
*emitter
, const char *name
,
164 __isl_keep isl_map
*map
)
166 if (emit_string(emitter
, name
) < 0)
168 if (emit_map(emitter
, map
) < 0)
173 static int emit_array(yaml_emitter_t
*emitter
, struct pet_array
*array
)
177 if (!yaml_mapping_start_event_initialize(&event
, NULL
, NULL
, 1,
178 YAML_BLOCK_MAPPING_STYLE
))
180 if (!yaml_emitter_emit(emitter
, &event
))
183 if (emit_string(emitter
, "context") < 0)
185 if (emit_set(emitter
, array
->context
) < 0)
188 if (emit_string(emitter
, "extent") < 0)
190 if (emit_set(emitter
, array
->extent
) < 0)
193 if (array
->value_bounds
) {
194 if (emit_string(emitter
, "value_bounds") < 0)
196 if (emit_set(emitter
, array
->value_bounds
) < 0)
200 if (emit_string(emitter
, "element_type") < 0)
202 if (emit_string(emitter
, array
->element_type
) < 0)
204 if (emit_named_int(emitter
, "element_size", array
->element_size
) < 0)
207 if (array
->live_out
) {
208 if (emit_string(emitter
, "live_out") < 0)
210 if (emit_string(emitter
, "1") < 0)
214 if (array
->uniquely_defined
) {
215 if (emit_string(emitter
, "uniquely_defined") < 0)
217 if (emit_string(emitter
, "1") < 0)
221 if (array
->declared
&& emit_named_int(emitter
, "declared", 1) < 0)
223 if (array
->exposed
&& emit_named_int(emitter
, "exposed", 1) < 0)
226 if (!yaml_mapping_end_event_initialize(&event
))
228 if (!yaml_emitter_emit(emitter
, &event
))
234 static int emit_arrays(yaml_emitter_t
*emitter
, int n_array
,
235 struct pet_array
**arrays
)
240 if (emit_string(emitter
, "arrays") < 0)
242 if (!yaml_sequence_start_event_initialize(&event
, NULL
, NULL
, 1,
243 YAML_BLOCK_SEQUENCE_STYLE
))
245 if (!yaml_emitter_emit(emitter
, &event
))
248 for (i
= 0; i
< n_array
; ++i
)
249 if (emit_array(emitter
, arrays
[i
]) < 0)
252 if (!yaml_sequence_end_event_initialize(&event
))
254 if (!yaml_emitter_emit(emitter
, &event
))
260 static int emit_type(yaml_emitter_t
*emitter
, enum pet_expr_type type
)
262 if (emit_string(emitter
, pet_type_str(type
)) < 0)
267 static int emit_expr(yaml_emitter_t
*emitter
, struct pet_expr
*expr
)
271 if (!yaml_mapping_start_event_initialize(&event
, NULL
, NULL
, 1,
272 YAML_BLOCK_MAPPING_STYLE
))
274 if (!yaml_emitter_emit(emitter
, &event
))
277 if (emit_string(emitter
, "type") < 0)
279 if (emit_type(emitter
, expr
->type
) < 0)
282 switch (expr
->type
) {
283 case pet_expr_double
:
284 if (emit_string(emitter
, "value") < 0)
286 if (emit_double(emitter
, expr
->d
.val
) < 0)
288 if (emit_string(emitter
, "string") < 0)
290 if (emit_string(emitter
, expr
->d
.s
) < 0)
293 case pet_expr_access
:
294 if (emit_string(emitter
, "relation") < 0)
296 if (emit_map(emitter
, expr
->acc
.access
) < 0)
298 if (expr
->acc
.ref_id
&&
299 emit_named_id(emitter
, "reference", expr
->acc
.ref_id
) < 0)
301 if (emit_string(emitter
, "read") < 0)
303 if (emit_int(emitter
, expr
->acc
.read
) < 0)
305 if (emit_string(emitter
, "write") < 0)
307 if (emit_int(emitter
, expr
->acc
.write
) < 0)
311 case pet_expr_binary
:
312 if (emit_string(emitter
, "operation") < 0)
314 if (emit_string(emitter
, pet_op_str(expr
->op
)) < 0)
317 case pet_expr_ternary
:
320 if (emit_string(emitter
, "name") < 0)
322 if (emit_string(emitter
, expr
->name
) < 0)
326 if (emit_string(emitter
, "type_name") < 0)
328 if (emit_string(emitter
, expr
->type_name
) < 0)
333 if (expr
->n_arg
> 0) {
336 if (emit_string(emitter
, "arguments") < 0)
338 if (!yaml_sequence_start_event_initialize(&event
, NULL
, NULL
, 1,
339 YAML_BLOCK_SEQUENCE_STYLE
))
341 if (!yaml_emitter_emit(emitter
, &event
))
344 for (i
= 0; i
< expr
->n_arg
; ++i
)
345 if (emit_expr(emitter
, expr
->args
[i
]) < 0)
348 if (!yaml_sequence_end_event_initialize(&event
))
350 if (!yaml_emitter_emit(emitter
, &event
))
354 if (!yaml_mapping_end_event_initialize(&event
))
356 if (!yaml_emitter_emit(emitter
, &event
))
362 static int emit_stmt(yaml_emitter_t
*emitter
, struct pet_stmt
*stmt
)
366 if (!yaml_mapping_start_event_initialize(&event
, NULL
, NULL
, 1,
367 YAML_BLOCK_MAPPING_STYLE
))
369 if (!yaml_emitter_emit(emitter
, &event
))
372 if (emit_string(emitter
, "line") < 0)
374 if (emit_int(emitter
, stmt
->line
) < 0)
377 if (emit_string(emitter
, "domain") < 0)
379 if (emit_set(emitter
, stmt
->domain
) < 0)
382 if (emit_string(emitter
, "schedule") < 0)
384 if (emit_map(emitter
, stmt
->schedule
) < 0)
387 if (emit_string(emitter
, "body") < 0)
389 if (emit_expr(emitter
, stmt
->body
) < 0)
392 if (stmt
->n_arg
> 0) {
395 if (emit_string(emitter
, "arguments") < 0)
397 if (!yaml_sequence_start_event_initialize(&event
, NULL
, NULL
, 1,
398 YAML_BLOCK_SEQUENCE_STYLE
))
400 if (!yaml_emitter_emit(emitter
, &event
))
403 for (i
= 0; i
< stmt
->n_arg
; ++i
)
404 if (emit_expr(emitter
, stmt
->args
[i
]) < 0)
407 if (!yaml_sequence_end_event_initialize(&event
))
409 if (!yaml_emitter_emit(emitter
, &event
))
413 if (!yaml_mapping_end_event_initialize(&event
))
415 if (!yaml_emitter_emit(emitter
, &event
))
421 static int emit_statements(yaml_emitter_t
*emitter
, int n_stmt
,
422 struct pet_stmt
**stmts
)
427 if (emit_string(emitter
, "statements") < 0)
429 if (!yaml_sequence_start_event_initialize(&event
, NULL
, NULL
, 1,
430 YAML_BLOCK_SEQUENCE_STYLE
))
432 if (!yaml_emitter_emit(emitter
, &event
))
435 for (i
= 0; i
< n_stmt
; ++i
)
436 if (emit_stmt(emitter
, stmts
[i
]) < 0)
439 if (!yaml_sequence_end_event_initialize(&event
))
441 if (!yaml_emitter_emit(emitter
, &event
))
447 /* Print "implication" to "emitter".
449 static int emit_implication(yaml_emitter_t
*emitter
,
450 struct pet_implication
*implication
)
454 if (!yaml_mapping_start_event_initialize(&event
, NULL
, NULL
, 1,
455 YAML_BLOCK_MAPPING_STYLE
))
457 if (!yaml_emitter_emit(emitter
, &event
))
460 if (emit_named_int(emitter
, "satisfied", implication
->satisfied
) < 0)
463 if (emit_named_map(emitter
, "extension", implication
->extension
) < 0)
466 if (!yaml_mapping_end_event_initialize(&event
))
468 if (!yaml_emitter_emit(emitter
, &event
))
474 /* Print the list of "n_implication" "implications", if any, to "emitter".
476 static int emit_implications(yaml_emitter_t
*emitter
, int n_implication
,
477 struct pet_implication
**implications
)
482 if (n_implication
== 0)
485 if (emit_string(emitter
, "implications") < 0)
487 if (!yaml_sequence_start_event_initialize(&event
, NULL
, NULL
, 1,
488 YAML_BLOCK_SEQUENCE_STYLE
))
490 if (!yaml_emitter_emit(emitter
, &event
))
493 for (i
= 0; i
< n_implication
; ++i
)
494 if (emit_implication(emitter
, implications
[i
]) < 0)
497 if (!yaml_sequence_end_event_initialize(&event
))
499 if (!yaml_emitter_emit(emitter
, &event
))
505 static int emit_scop(yaml_emitter_t
*emitter
, struct pet_scop
*scop
)
509 if (!yaml_mapping_start_event_initialize(&event
, NULL
, NULL
, 1,
510 YAML_BLOCK_MAPPING_STYLE
))
512 if (!yaml_emitter_emit(emitter
, &event
))
515 if (emit_named_unsigned(emitter
, "start", scop
->start
) < 0)
517 if (emit_named_unsigned(emitter
, "end", scop
->end
) < 0)
519 if (emit_string(emitter
, "context") < 0)
521 if (emit_set(emitter
, scop
->context
) < 0)
523 if (!isl_set_plain_is_universe(scop
->context_value
) &&
524 emit_named_set(emitter
, "context_value", scop
->context_value
) < 0)
527 if (emit_arrays(emitter
, scop
->n_array
, scop
->arrays
) < 0)
530 if (emit_statements(emitter
, scop
->n_stmt
, scop
->stmts
) < 0)
533 if (emit_implications(emitter
, scop
->n_implication
,
534 scop
->implications
) < 0)
537 if (!yaml_mapping_end_event_initialize(&event
))
539 if (!yaml_emitter_emit(emitter
, &event
))
545 /* Print a YAML serialization of "scop" to "out".
547 int pet_scop_emit(FILE *out
, struct pet_scop
*scop
)
549 yaml_emitter_t emitter
;
552 yaml_emitter_initialize(&emitter
);
554 yaml_emitter_set_output_file(&emitter
, out
);
556 yaml_stream_start_event_initialize(&event
, YAML_UTF8_ENCODING
);
557 if (!yaml_emitter_emit(&emitter
, &event
))
560 if (!yaml_document_start_event_initialize(&event
, NULL
, NULL
, NULL
, 1))
562 if (!yaml_emitter_emit(&emitter
, &event
))
565 if (emit_scop(&emitter
, scop
) < 0)
568 if (!yaml_document_end_event_initialize(&event
, 1))
570 if (!yaml_emitter_emit(&emitter
, &event
))
573 yaml_stream_end_event_initialize(&event
);
574 if (!yaml_emitter_emit(&emitter
, &event
))
577 yaml_emitter_delete(&emitter
);
580 yaml_emitter_delete(&emitter
);