Polly 19.0.0git
isl_printer_private.h
Go to the documentation of this file.
1#ifndef ISL_PRINTER_PRIVATE_H
2#define ISL_PRINTER_PRIVATE_H
3
4#include <isl/printer.h>
5#include <isl_yaml.h>
6#include <isl/id_to_id.h>
7
8struct isl_printer_ops;
9
10/* A printer to a file or a string.
11 *
12 * "dump" is set if the printing is performed from an isl_*_dump function.
13 *
14 * yaml_style is the YAML style in which the next elements should
15 * be printed and may be either ISL_YAML_STYLE_BLOCK or ISL_YAML_STYLE_FLOW,
16 * with ISL_YAML_STYLE_FLOW being the default.
17 * yaml_state keeps track of the currently active YAML elements.
18 * yaml_size is the size of this arrays, while yaml_depth
19 * is the number of elements currently in use.
20 * yaml_state may be NULL if no YAML printing is being performed.
21 *
22 * notes keeps track of arbitrary notes as a mapping between
23 * name identifiers and note identifiers. It may be NULL
24 * if there are no notes yet.
25 */
27 struct isl_ctx *ctx;
29 FILE *file;
30 int buf_n;
32 char *buf;
33 int indent;
35 int dump;
37 char *prefix;
38 char *suffix;
39 int width;
40
45
46 isl_id_to_id *notes;
47};
48
50 int dump);
51
52#endif
#define __isl_take
Definition: ctx.h:22
#define __isl_give
Definition: ctx.h:19
__isl_give isl_printer * isl_printer_set_dump(__isl_take isl_printer *p, int dump)
Definition: isl_printer.c:451
const char * p
Definition: isl_test.c:8643
isl_yaml_state
Definition: isl_yaml.h:6
struct isl_ctx * ctx
enum isl_yaml_state * yaml_state
struct isl_printer_ops * ops
isl_id_to_id * notes