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