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 /* Print the isl_multi_pw_aff "mpa" to "emitter".
175 static int emit_multi_pw_aff(yaml_emitter_t
*emitter
,
176 __isl_keep isl_multi_pw_aff
*mpa
)
178 isl_ctx
*ctx
= isl_multi_pw_aff_get_ctx(mpa
);
183 p
= isl_printer_to_str(ctx
);
184 p
= isl_printer_print_multi_pw_aff(p
, mpa
);
185 str
= isl_printer_get_str(p
);
187 r
= emit_string(emitter
, str
);
192 /* Print the string "name" and the isl_multi_pw_aff "mpa" to "emitter".
194 static int emit_named_multi_pw_aff(yaml_emitter_t
*emitter
, const char *name
,
195 __isl_keep isl_multi_pw_aff
*mpa
)
197 if (emit_string(emitter
, name
) < 0)
199 if (emit_multi_pw_aff(emitter
, mpa
) < 0)
204 static int emit_array(yaml_emitter_t
*emitter
, struct pet_array
*array
)
208 if (!yaml_mapping_start_event_initialize(&event
, NULL
, NULL
, 1,
209 YAML_BLOCK_MAPPING_STYLE
))
211 if (!yaml_emitter_emit(emitter
, &event
))
214 if (emit_string(emitter
, "context") < 0)
216 if (emit_set(emitter
, array
->context
) < 0)
219 if (emit_string(emitter
, "extent") < 0)
221 if (emit_set(emitter
, array
->extent
) < 0)
224 if (array
->value_bounds
) {
225 if (emit_string(emitter
, "value_bounds") < 0)
227 if (emit_set(emitter
, array
->value_bounds
) < 0)
231 if (emit_string(emitter
, "element_type") < 0)
233 if (emit_string(emitter
, array
->element_type
) < 0)
235 if (emit_named_int(emitter
, "element_size", array
->element_size
) < 0)
238 if (array
->live_out
) {
239 if (emit_string(emitter
, "live_out") < 0)
241 if (emit_string(emitter
, "1") < 0)
245 if (array
->uniquely_defined
) {
246 if (emit_string(emitter
, "uniquely_defined") < 0)
248 if (emit_string(emitter
, "1") < 0)
252 if (array
->declared
&& emit_named_int(emitter
, "declared", 1) < 0)
254 if (array
->exposed
&& emit_named_int(emitter
, "exposed", 1) < 0)
257 if (!yaml_mapping_end_event_initialize(&event
))
259 if (!yaml_emitter_emit(emitter
, &event
))
265 static int emit_arrays(yaml_emitter_t
*emitter
, int n_array
,
266 struct pet_array
**arrays
)
271 if (emit_string(emitter
, "arrays") < 0)
273 if (!yaml_sequence_start_event_initialize(&event
, NULL
, NULL
, 1,
274 YAML_BLOCK_SEQUENCE_STYLE
))
276 if (!yaml_emitter_emit(emitter
, &event
))
279 for (i
= 0; i
< n_array
; ++i
)
280 if (emit_array(emitter
, arrays
[i
]) < 0)
283 if (!yaml_sequence_end_event_initialize(&event
))
285 if (!yaml_emitter_emit(emitter
, &event
))
291 static int emit_type(yaml_emitter_t
*emitter
, enum pet_expr_type type
)
293 if (emit_string(emitter
, pet_type_str(type
)) < 0)
298 static int emit_expr(yaml_emitter_t
*emitter
, struct pet_expr
*expr
)
302 if (!yaml_mapping_start_event_initialize(&event
, NULL
, NULL
, 1,
303 YAML_BLOCK_MAPPING_STYLE
))
305 if (!yaml_emitter_emit(emitter
, &event
))
308 if (emit_string(emitter
, "type") < 0)
310 if (emit_type(emitter
, expr
->type
) < 0)
313 switch (expr
->type
) {
314 case pet_expr_double
:
315 if (emit_string(emitter
, "value") < 0)
317 if (emit_double(emitter
, expr
->d
.val
) < 0)
319 if (emit_string(emitter
, "string") < 0)
321 if (emit_string(emitter
, expr
->d
.s
) < 0)
324 case pet_expr_access
:
325 if (emit_string(emitter
, "relation") < 0)
327 if (emit_map(emitter
, expr
->acc
.access
) < 0)
329 if (emit_named_multi_pw_aff(emitter
,
330 "index", expr
->acc
.index
) < 0)
332 if (expr
->acc
.ref_id
&&
333 emit_named_id(emitter
, "reference", expr
->acc
.ref_id
) < 0)
335 if (emit_string(emitter
, "read") < 0)
337 if (emit_int(emitter
, expr
->acc
.read
) < 0)
339 if (emit_string(emitter
, "write") < 0)
341 if (emit_int(emitter
, expr
->acc
.write
) < 0)
345 case pet_expr_binary
:
346 if (emit_string(emitter
, "operation") < 0)
348 if (emit_string(emitter
, pet_op_str(expr
->op
)) < 0)
351 case pet_expr_ternary
:
354 if (emit_string(emitter
, "name") < 0)
356 if (emit_string(emitter
, expr
->name
) < 0)
360 if (emit_string(emitter
, "type_name") < 0)
362 if (emit_string(emitter
, expr
->type_name
) < 0)
367 if (expr
->n_arg
> 0) {
370 if (emit_string(emitter
, "arguments") < 0)
372 if (!yaml_sequence_start_event_initialize(&event
, NULL
, NULL
, 1,
373 YAML_BLOCK_SEQUENCE_STYLE
))
375 if (!yaml_emitter_emit(emitter
, &event
))
378 for (i
= 0; i
< expr
->n_arg
; ++i
)
379 if (emit_expr(emitter
, expr
->args
[i
]) < 0)
382 if (!yaml_sequence_end_event_initialize(&event
))
384 if (!yaml_emitter_emit(emitter
, &event
))
388 if (!yaml_mapping_end_event_initialize(&event
))
390 if (!yaml_emitter_emit(emitter
, &event
))
396 static int emit_stmt(yaml_emitter_t
*emitter
, struct pet_stmt
*stmt
)
400 if (!yaml_mapping_start_event_initialize(&event
, NULL
, NULL
, 1,
401 YAML_BLOCK_MAPPING_STYLE
))
403 if (!yaml_emitter_emit(emitter
, &event
))
406 if (emit_string(emitter
, "line") < 0)
408 if (emit_int(emitter
, stmt
->line
) < 0)
411 if (emit_string(emitter
, "domain") < 0)
413 if (emit_set(emitter
, stmt
->domain
) < 0)
416 if (emit_string(emitter
, "schedule") < 0)
418 if (emit_map(emitter
, stmt
->schedule
) < 0)
421 if (emit_string(emitter
, "body") < 0)
423 if (emit_expr(emitter
, stmt
->body
) < 0)
426 if (stmt
->n_arg
> 0) {
429 if (emit_string(emitter
, "arguments") < 0)
431 if (!yaml_sequence_start_event_initialize(&event
, NULL
, NULL
, 1,
432 YAML_BLOCK_SEQUENCE_STYLE
))
434 if (!yaml_emitter_emit(emitter
, &event
))
437 for (i
= 0; i
< stmt
->n_arg
; ++i
)
438 if (emit_expr(emitter
, stmt
->args
[i
]) < 0)
441 if (!yaml_sequence_end_event_initialize(&event
))
443 if (!yaml_emitter_emit(emitter
, &event
))
447 if (!yaml_mapping_end_event_initialize(&event
))
449 if (!yaml_emitter_emit(emitter
, &event
))
455 static int emit_statements(yaml_emitter_t
*emitter
, int n_stmt
,
456 struct pet_stmt
**stmts
)
461 if (emit_string(emitter
, "statements") < 0)
463 if (!yaml_sequence_start_event_initialize(&event
, NULL
, NULL
, 1,
464 YAML_BLOCK_SEQUENCE_STYLE
))
466 if (!yaml_emitter_emit(emitter
, &event
))
469 for (i
= 0; i
< n_stmt
; ++i
)
470 if (emit_stmt(emitter
, stmts
[i
]) < 0)
473 if (!yaml_sequence_end_event_initialize(&event
))
475 if (!yaml_emitter_emit(emitter
, &event
))
481 /* Print "implication" to "emitter".
483 static int emit_implication(yaml_emitter_t
*emitter
,
484 struct pet_implication
*implication
)
488 if (!yaml_mapping_start_event_initialize(&event
, NULL
, NULL
, 1,
489 YAML_BLOCK_MAPPING_STYLE
))
491 if (!yaml_emitter_emit(emitter
, &event
))
494 if (emit_named_int(emitter
, "satisfied", implication
->satisfied
) < 0)
497 if (emit_named_map(emitter
, "extension", implication
->extension
) < 0)
500 if (!yaml_mapping_end_event_initialize(&event
))
502 if (!yaml_emitter_emit(emitter
, &event
))
508 /* Print the list of "n_implication" "implications", if any, to "emitter".
510 static int emit_implications(yaml_emitter_t
*emitter
, int n_implication
,
511 struct pet_implication
**implications
)
516 if (n_implication
== 0)
519 if (emit_string(emitter
, "implications") < 0)
521 if (!yaml_sequence_start_event_initialize(&event
, NULL
, NULL
, 1,
522 YAML_BLOCK_SEQUENCE_STYLE
))
524 if (!yaml_emitter_emit(emitter
, &event
))
527 for (i
= 0; i
< n_implication
; ++i
)
528 if (emit_implication(emitter
, implications
[i
]) < 0)
531 if (!yaml_sequence_end_event_initialize(&event
))
533 if (!yaml_emitter_emit(emitter
, &event
))
539 static int emit_scop(yaml_emitter_t
*emitter
, struct pet_scop
*scop
)
543 if (!yaml_mapping_start_event_initialize(&event
, NULL
, NULL
, 1,
544 YAML_BLOCK_MAPPING_STYLE
))
546 if (!yaml_emitter_emit(emitter
, &event
))
549 if (emit_named_unsigned(emitter
, "start", scop
->start
) < 0)
551 if (emit_named_unsigned(emitter
, "end", scop
->end
) < 0)
553 if (emit_string(emitter
, "context") < 0)
555 if (emit_set(emitter
, scop
->context
) < 0)
557 if (!isl_set_plain_is_universe(scop
->context_value
) &&
558 emit_named_set(emitter
, "context_value", scop
->context_value
) < 0)
561 if (emit_arrays(emitter
, scop
->n_array
, scop
->arrays
) < 0)
564 if (emit_statements(emitter
, scop
->n_stmt
, scop
->stmts
) < 0)
567 if (emit_implications(emitter
, scop
->n_implication
,
568 scop
->implications
) < 0)
571 if (!yaml_mapping_end_event_initialize(&event
))
573 if (!yaml_emitter_emit(emitter
, &event
))
579 /* Print a YAML serialization of "scop" to "out".
581 int pet_scop_emit(FILE *out
, struct pet_scop
*scop
)
583 yaml_emitter_t emitter
;
586 yaml_emitter_initialize(&emitter
);
588 yaml_emitter_set_output_file(&emitter
, out
);
590 yaml_stream_start_event_initialize(&event
, YAML_UTF8_ENCODING
);
591 if (!yaml_emitter_emit(&emitter
, &event
))
594 if (!yaml_document_start_event_initialize(&event
, NULL
, NULL
, NULL
, 1))
596 if (!yaml_emitter_emit(&emitter
, &event
))
599 if (emit_scop(&emitter
, scop
) < 0)
602 if (!yaml_document_end_event_initialize(&event
, 1))
604 if (!yaml_emitter_emit(&emitter
, &event
))
607 yaml_stream_end_event_initialize(&event
);
608 if (!yaml_emitter_emit(&emitter
, &event
))
611 yaml_emitter_delete(&emitter
);
614 yaml_emitter_delete(&emitter
);