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