cloog_domain_simple_convex: always compute simple hull
[cloog.git] / source / input.c
blob1b83a97dfa4a30a56f8932fc4b89741130505a42
1 #include <ctype.h>
2 #include <stdio.h>
3 #include <stdlib.h>
4 #include "../include/cloog/cloog.h"
6 #define ALLOC(type) (type*)malloc(sizeof(type))
8 static char *next_line(FILE *input, char *line, unsigned len)
10 char *p;
12 do {
13 if (!(p = fgets(line, len, input)))
14 return NULL;
15 while (isspace(*p) && *p != '\n')
16 ++p;
17 } while (*p == '#' || *p == '\n');
19 return p;
22 /**
23 * Read input from a .cloog file, putting most of the information
24 * in the returned CloogInput. The chosen language is put in
25 * options->language.
27 CloogInput *cloog_input_read(FILE *file, CloogOptions *options)
29 char line[MAX_STRING];
30 char language;
31 CloogDomain *context;
32 CloogUnionDomain *ud;
33 int nb_par;
35 /* First of all, we read the language to use. */
36 if (!next_line(file, line, sizeof(line)))
37 cloog_die("Input error.\n");
38 if (sscanf(line, "%c", &language) != 1)
39 cloog_die("Input error.\n");
41 if (language == 'f')
42 options->language = LANGUAGE_FORTRAN;
43 else
44 options->language = LANGUAGE_C;
46 /* We then read the context data. */
47 context = cloog_domain_read_context(options->state, file);
48 nb_par = cloog_domain_parameter_dimension(context);
50 ud = cloog_union_domain_read(file, nb_par, options);
52 return cloog_input_alloc(context, ud);
55 /**
56 * Create a CloogInput from a CloogDomain context and a CloogUnionDomain.
58 CloogInput *cloog_input_alloc(CloogDomain *context, CloogUnionDomain *ud)
60 CloogInput *input;
62 input = ALLOC(CloogInput);
63 if (!input)
64 cloog_die("memory overflow.\n");
66 input->context = context;
67 input->ud = ud;
69 return input;
72 void cloog_input_free(CloogInput *input)
74 cloog_domain_free(input->context);
75 cloog_union_domain_free(input->ud);
76 free(input);
79 static void print_names(FILE *file, CloogUnionDomain *ud,
80 enum cloog_dim_type type, const char *name)
82 int i;
84 fprintf(file, "\n%d # %s name(s)\n", ud->name[type] ? 1 : 0, name);
85 if (!ud->name[type])
86 return;
88 for (i = 0; i < ud->n_name[type]; i++)
89 fprintf(file, "%s ", ud->name[type][i]);
91 fprintf(file, "\n");
94 /**
95 * Dump the .cloog description of a CloogInput and a CloogOptions data structure
96 * into a file. The generated .cloog file will contain the same information as
97 * the data structures. The file can be used to run the cloog program on the
98 * example.
100 void cloog_input_dump_cloog(FILE *file, CloogInput *input, CloogOptions *opt)
102 int i, num_statements;
103 CloogUnionDomain *ud = input->ud;
104 CloogNamedDomainList *ndl = ud->domain;
106 fprintf(file,
107 "# CLooG -> CLooG\n"
108 "# This is an automatic dump of a CLooG input file from a "
109 "CloogInput data\n"
110 "# structure.\n\n");
112 /* Language. */
113 if (opt->language == LANGUAGE_FORTRAN) {
114 fprintf(file, "# Language: FORTRAN\n");
115 fprintf(file, "f\n\n");
116 } else {
117 fprintf(file, "# Language: C\n");
118 fprintf(file, "c\n\n");
121 /* Context. */
122 fprintf(file, "# Context:\n");
123 cloog_domain_print_constraints(file, input->context, 1);
125 print_names(file, ud, CLOOG_PARAM, "Parameter");
127 /* Statement number. */
128 i = 0;
129 while (ndl != NULL) {
130 i++;
131 ndl = ndl->next;
133 num_statements = i;
134 fprintf(file, "\n# Statement number:\n%d\n\n", num_statements);
136 /* Iteration domains. */
137 i = 1;
138 ndl = ud->domain;
139 while (ndl != NULL) {
140 fprintf(file, "# Iteration domain of statement %d (%s).\n", i,
141 ndl->name);
143 cloog_domain_print_constraints(file, ndl->domain, 1);
144 fprintf(file,"\n0 0 0 # For future options.\n\n");
146 i++;
147 ndl = ndl->next;
150 print_names(file, ud, CLOOG_ITER, "Iterator");
152 /* Exit, if no scattering is supplied. */
153 if (!ud->domain || !ud->domain->scattering) {
154 fprintf(file, "# No scattering functions.\n0\n\n");
155 return;
158 /* Scattering relations. */
159 fprintf(file,
160 "# --------------------- SCATTERING --------------------\n");
162 fprintf(file, "%d # Scattering functions\n", num_statements);
164 i = 1;
165 ndl = ud->domain;
166 while (ndl != NULL) {
167 fprintf(file, "\n# Scattering of statement %d (%s).\n", i,
168 ndl->name);
170 cloog_scattering_print_constraints(file, ndl->scattering);
172 i++;
173 ndl = ndl->next;
176 print_names(file, ud, CLOOG_SCAT, "Scattering dimension");