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