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