]> git.xonotic.org Git - xonotic/gmqcc.git/blob - opts.c
Merge branch 'master' into cooking
[xonotic/gmqcc.git] / opts.c
1 /*
2  * Copyright (C) 2012, 2013
3  *     Wolfgang Bumiller
4  *     Dale Weiler 
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy of
7  * this software and associated documentation files (the "Software"), to deal in
8  * the Software without restriction, including without limitation the rights to
9  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
10  * of the Software, and to permit persons to whom the Software is furnished to do
11  * so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in all
14  * copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22  * SOFTWARE.
23  */
24 #include "gmqcc.h"
25 unsigned int opts_optimizationcount[COUNT_OPTIMIZATIONS];
26 opts_cmd_t   opts; /* command lien options */
27
28 static void opts_setdefault() {
29     memset(&opts, 0, sizeof(opts_cmd_t));
30     opts.correction = true;
31
32     /* warnings */
33     opts_set(opts.warn,  WARN_UNUSED_VARIABLE,           true);
34     opts_set(opts.warn,  WARN_USED_UNINITIALIZED,        true);
35     opts_set(opts.warn,  WARN_UNKNOWN_CONTROL_SEQUENCE,  true);
36     opts_set(opts.warn,  WARN_EXTENSIONS,                true);
37     opts_set(opts.warn,  WARN_FIELD_REDECLARED,          true);
38     opts_set(opts.warn,  WARN_MISSING_RETURN_VALUES,     true);
39     opts_set(opts.warn,  WARN_INVALID_PARAMETER_COUNT,   true);
40     opts_set(opts.warn,  WARN_LOCAL_SHADOWS,             false);
41     opts_set(opts.warn,  WARN_LOCAL_CONSTANTS,           true);
42     opts_set(opts.warn,  WARN_VOID_VARIABLES,            true);
43     opts_set(opts.warn,  WARN_IMPLICIT_FUNCTION_POINTER, true);
44     opts_set(opts.warn,  WARN_VARIADIC_FUNCTION,         true);
45     opts_set(opts.warn,  WARN_FRAME_MACROS,              true);
46     opts_set(opts.warn,  WARN_EFFECTLESS_STATEMENT,      true);
47     opts_set(opts.warn,  WARN_END_SYS_FIELDS,            true);
48     opts_set(opts.warn,  WARN_ASSIGN_FUNCTION_TYPES,     true);
49     opts_set(opts.warn,  WARN_PREPROCESSOR,              true);
50     opts_set(opts.warn,  WARN_MULTIFILE_IF,              true);
51     opts_set(opts.warn,  WARN_DOUBLE_DECLARATION,        true);
52     opts_set(opts.warn,  WARN_CONST_VAR,                 true);
53     opts_set(opts.warn,  WARN_MULTIBYTE_CHARACTER,       true);
54     opts_set(opts.warn,  WARN_UNKNOWN_PRAGMAS,           true);
55     opts_set(opts.warn,  WARN_UNREACHABLE_CODE,          true);
56     opts_set(opts.warn,  WARN_CPP,                       true);
57     opts_set(opts.warn,  WARN_UNKNOWN_ATTRIBUTE,         true);
58     opts_set(opts.warn,  WARN_RESERVED_NAMES,            true);
59     opts_set(opts.warn,  WARN_UNINITIALIZED_CONSTANT,    true);
60     opts_set(opts.warn,  WARN_UNINITIALIZED_GLOBAL,      false);
61     opts_set(opts.warn,  WARN_DEPRECATED,                true);
62     opts_set(opts.warn,  WARN_PARENTHESIS,               true);
63     /* flags */
64     opts_set(opts.flags, ADJUST_VECTOR_FIELDS,           true);
65     opts_set(opts.flags, FTEPP,                          false);
66     opts_set(opts.flags, FTEPP_PREDEFS,                  false);
67     opts_set(opts.flags, CORRECT_TERNARY,                true);
68     opts_set(opts.flags, BAIL_ON_WERROR,                 true);
69     opts_set(opts.flags, LEGACY_VECTOR_MATHS,            true);
70 }
71
72 void opts_backup_non_Wall() {
73     size_t i;
74     for (i = 0; i <= WARN_DEBUG; ++i)
75         opts_set(opts.warn_backup, i, OPTS_WARN(i));
76 }
77
78 void opts_restore_non_Wall() {
79     size_t i;
80     for (i = 0; i <= WARN_DEBUG; ++i)
81         opts_set(opts.warn, i, OPTS_GENERIC(opts.warn_backup, i));
82 }
83
84 void opts_backup_non_Werror_all() {
85     size_t i;
86     for (i = 0; i <= WARN_DEBUG; ++i)
87         opts_set(opts.werror_backup, i, OPTS_WERROR(i));
88 }
89
90 void opts_restore_non_Werror_all() {
91     size_t i;
92     for (i = 0; i <= WARN_DEBUG; ++i)
93         opts_set(opts.werror, i, OPTS_GENERIC(opts.werror_backup, i));
94 }
95
96 void opts_init(const char *output, int standard, size_t arraysize) {
97     opts_setdefault();
98
99     opts.output         = output;
100     opts.standard       = (opts_std_t)standard; /* C++ ... y u no like me? */
101     opts.max_array_size = arraysize;
102 }
103
104 static bool opts_setflag_all(const char *name, bool on, uint32_t *flags, const opts_flag_def *list, size_t listsize) {
105     size_t i;
106
107     for (i = 0; i < listsize; ++i) {
108         if (!strcmp(name, list[i].name)) {
109             longbit lb = list[i].bit;
110 #if 1
111             if (on)
112                 flags[lb.idx] |= (1<<(lb.bit));
113             else
114                 flags[lb.idx] &= ~(1<<(lb.bit));
115 #else
116             if (on)
117                 flags[0] |= (1<<lb);
118             else
119                 flags[0] &= ~(1<<(lb));
120 #endif
121             return true;
122         }
123     }
124     return false;
125 }
126 bool opts_setflag  (const char *name, bool on) {
127     return opts_setflag_all(name, on, opts.flags,        opts_flag_list, COUNT_FLAGS);
128 }
129 bool opts_setwarn  (const char *name, bool on) {
130     return opts_setflag_all(name, on, opts.warn,         opts_warn_list, COUNT_WARNINGS);
131 }
132 bool opts_setwerror(const char *name, bool on) {
133     return opts_setflag_all(name, on, opts.werror,       opts_warn_list, COUNT_WARNINGS);
134 }
135 bool opts_setoptim (const char *name, bool on) {
136     return opts_setflag_all(name, on, opts.optimization, opts_opt_list,  COUNT_OPTIMIZATIONS);
137 }
138
139 void opts_set(uint32_t *flags, size_t idx, bool on) {
140     longbit lb;
141     LONGBIT_SET(lb, idx);
142 #if 1
143     if (on)
144         flags[lb.idx] |= (1<<(lb.bit));
145     else
146         flags[lb.idx] &= ~(1<<(lb.bit));
147 #else
148     if (on)
149         flags[0] |= (1<<(lb));
150     else
151         flags[0] &= ~(1<<(lb));
152 #endif
153 }
154
155 void opts_setoptimlevel(unsigned int level) {
156     size_t i;
157     for (i = 0; i < COUNT_OPTIMIZATIONS; ++i)
158         opts_set(opts.optimization, i, level >= opts_opt_oflag[i]);
159 }
160
161 /*
162  * Standard configuration parser and subsystem.  Yes, optionally you may
163  * create ini files or cfg (the driver accepts both) for a project opposed
164  * to supplying just a progs.src (since you also may need to supply command
165  * line arguments or set the options of the compiler) [which cannot be done
166  * from a progs.src.
167  */
168 static char *opts_ini_rstrip(char *s) {
169     char *p = s + strlen(s);
170     while(p > s && isspace(*--p))
171         *p = '\0';
172     return s;
173 }
174
175 static char *opts_ini_lskip(const char *s) {
176     while (*s && isspace(*s))
177         s++;
178     return (char*)s;
179 }
180
181 static char *opts_ini_next(const char *s, char c) {
182     bool last = false;
183     while (*s && *s != c && !(last && *s == ';'))
184         last = !!isspace(*s), s++;
185
186     return (char*)s;
187 }
188
189 static size_t opts_ini_parse (
190     FILE   *filehandle,
191     char *(*loadhandle)(const char *, const char *, const char *),
192     char **errorhandle
193 ) {
194     size_t linesize;
195     size_t lineno             = 1;
196     size_t error              = 0;
197     char  *line               = NULL;
198     char   section_data[2048] = "";
199     char   oldname_data[2048] = "";
200
201     /* parsing and reading variables */
202     char *parse_beg;
203     char *parse_end;
204     char *read_name;
205     char *read_value;
206
207     while (file_getline(&line, &linesize, filehandle) != EOF) {
208         parse_beg = line;
209
210         /* handle BOM */
211         if (lineno == 1 && (
212                 (unsigned char)parse_beg[0] == 0xEF &&
213                 (unsigned char)parse_beg[1] == 0xBB &&
214                 (unsigned char)parse_beg[2] == 0xBF
215             )
216         ) {
217             parse_beg ++; /* 0xEF */
218             parse_beg ++; /* 0xBB */
219             parse_beg ++; /* 0xBF */
220         }
221
222         if (*(parse_beg = opts_ini_lskip(opts_ini_rstrip(parse_beg))) == ';' || *parse_beg == '#') {
223             /* ignore '#' is a perl extension */
224         } else if (*parse_beg == '[') {
225             /* section found */
226             if (*(parse_end = opts_ini_next(parse_beg + 1, ']')) == ']') {
227                 * parse_end = '\0'; /* terminate bro */
228                 strncpy(section_data, parse_beg + 1, sizeof(section_data));
229                 section_data[sizeof(section_data) - 1] = '\0';
230                 *oldname_data                          = '\0';
231             } else if (!error) {
232                 /* otherwise set error to the current line number */
233                 error = lineno;
234             }
235         } else if (*parse_beg && *parse_beg != ';') {
236             /* not a comment, must be a name value pair :) */
237             if (*(parse_end = opts_ini_next(parse_beg, '=')) != '=')
238                   parse_end = opts_ini_next(parse_beg, ':');
239
240             if (*parse_end == '=' || *parse_end == ':') {
241                 *parse_end = '\0'; /* terminate bro */
242                 read_name  = opts_ini_rstrip(parse_beg);
243                 read_value = opts_ini_lskip(parse_end + 1);
244                 if (*(parse_end = opts_ini_next(read_value, '\0')) == ';')
245                     * parse_end = '\0';
246                 opts_ini_rstrip(read_value);
247
248                 /* valid name value pair, lets call down to handler */
249                 strncpy(oldname_data, read_name, sizeof(oldname_data));
250                 oldname_data[sizeof(oldname_data) - 1] ='\0';
251
252                 if ((*errorhandle = loadhandle(section_data, read_name, read_value)) && !error)
253                     error = lineno;
254             } else if (!error) {
255                 /* otherwise set error to the current line number */
256                 error = lineno;
257             }
258         }
259         lineno++;
260     }
261     mem_d(line);
262     return error;
263 }
264
265 /*
266  * returns true/false for a char that contains ("true" or "false" or numeric 0/1)
267  */
268 static bool opts_ini_bool(const char *value) {
269     if (!strcmp(value, "true"))  return true;
270     if (!strcmp(value, "false")) return false;
271     return !!atoi(value);
272 }
273
274 static char *opts_ini_load(const char *section, const char *name, const char *value) {
275     char *error = NULL;
276     bool  found = false;
277
278     /*
279      * undef all of these because they may still be defined like in my
280      * case they where.
281      */  
282     #undef GMQCC_TYPE_FLAGS
283     #undef GMQCC_TYPE_OPTIMIZATIONS
284     #undef GMQCC_TYPE_WARNS
285
286     /* flags */
287     #define GMQCC_TYPE_FLAGS
288     #define GMQCC_DEFINE_FLAG(X)                                       \
289     if (!strcmp(section, "flags") && !strcmp(name, #X)) {              \
290         opts_set(opts.flags, X, opts_ini_bool(value));                 \
291         found = true;                                                  \
292     }
293     #include "opts.def"
294
295     /* warnings */
296     #define GMQCC_TYPE_WARNS
297     #define GMQCC_DEFINE_FLAG(X)                                       \
298     if (!strcmp(section, "warnings") && !strcmp(name, #X)) {           \
299         opts_set(opts.warn, WARN_##X, opts_ini_bool(value));           \
300         found = true;                                                  \
301     }
302     #include "opts.def"
303
304     /* Werror-individuals */
305     #define GMQCC_TYPE_WARNS
306     #define GMQCC_DEFINE_FLAG(X)                                       \
307     if (!strcmp(section, "errors") && !strcmp(name, #X)) {             \
308         opts_set(opts.werror, WARN_##X, opts_ini_bool(value));         \
309         found = true;                                                  \
310     }
311     #include "opts.def"
312
313     /* optimizations */
314     #define GMQCC_TYPE_OPTIMIZATIONS
315     #define GMQCC_DEFINE_FLAG(X,Y)                                     \
316     if (!strcmp(section, "optimizations") && !strcmp(name, #X)) {      \
317         opts_set(opts.optimization, OPTIM_##X, opts_ini_bool(value));  \
318         found = true;                                                  \
319     }
320     #include "opts.def"
321
322     /* nothing was found ever! */
323     if (!found) {
324         if (strcmp(section, "flags")         &&
325             strcmp(section, "warnings")      &&
326             strcmp(section, "optimizations"))
327         {
328             vec_upload(error, "invalid section `", 17);
329             vec_upload(error, section, strlen(section));
330             vec_push  (error, '`');
331             vec_push  (error, '\0');
332         } else {
333             vec_upload(error, "invalid variable `", 18);
334             vec_upload(error, name, strlen(name));
335             vec_push  (error, '`');
336             vec_upload(error, " in section: `", 14);
337             vec_upload(error, section, strlen(section));
338             vec_push  (error, '`');
339             vec_push  (error, '\0');
340         }
341     }
342     return error;
343 }
344
345 /*
346  * Actual loading subsystem, this finds the ini or cfg file, and properly
347  * loads it and executes it to set compiler options.
348  */
349 void opts_ini_init(const char *file) {
350     /*
351      * Possible matches are:
352      *  gmqcc.ini
353      *  gmqcc.cfg
354      */
355     char       *error;
356     size_t     line;
357     FILE       *ini;
358
359     
360     if (!file) {
361         /* try ini */
362         if (!(ini = file_open((file = "gmqcc.ini"), "r")))
363             /* try cfg */
364             if (!(ini = file_open((file = "gmqcc.cfg"), "r")))
365                 return;
366     } else if (!(ini = file_open(file, "r")))
367         return;
368
369     con_out("found ini file `%s`\n", file);
370
371     if ((line = opts_ini_parse(ini, &opts_ini_load, &error)) != 0) {
372         /* there was a parse error with the ini file */
373         con_printmsg(LVL_ERROR, file, line, "error", error);
374         vec_free(error);
375     }
376
377     file_close(ini);
378 }