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