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:
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
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
27 /* TODO: cleanup this whole file .. it's a fuckign mess */
29 /* set by the standard */
30 const oper_info *operators = NULL;
31 size_t operator_count = 0;
32 static bool opts_output_wasset = false;
34 typedef struct { char *filename; int type; } argitem;
35 typedef struct { char *name; char *value; } ppitem;
36 static argitem *items = NULL;
37 static ppitem *ppems = NULL;
43 static const char *app_name;
45 static void version() {
46 con_out("GMQCC %d.%d.%d Built %s %s\n",
56 con_out("usage: %s [options] [files...]", app_name);
58 " -h, --help show this help message\n"
59 " -debug turns on compiler debug messages\n"
60 " -memchk turns on compiler memory leak check\n");
61 con_out(" -o, --output=file output file, defaults to progs.dat\n"
62 " -s filename add a progs.src file to be used\n");
63 con_out(" -E stop after preprocessing\n");
64 con_out(" -config file use the specified ini file\n");
65 con_out(" -std=standard select one of the following standards\n"
66 " -std=qcc original QuakeC\n"
67 " -std=fteqcc fteqcc QuakeC\n"
68 " -std=gmqcc this compiler (default)\n");
69 con_out(" -f<flag> enable a flag\n"
70 " -fno-<flag> disable a flag\n"
71 " -fhelp list possible flags\n");
72 con_out(" -W<warning> enable a warning\n"
73 " -Wno-<warning> disable a warning\n"
74 " -Wall enable all warnings\n"
75 " -Werror treat warnings as errors\n");
76 con_out(" -Whelp list possible warnings\n");
77 con_out(" -O<number> optimization level\n"
78 " -O<name> enable specific optimization\n"
79 " -Ono-<name> disable specific optimization\n"
80 " -Ohelp list optimizations\n");
81 con_out(" -force-crc=num force a specific checksum into the header\n");
85 /* command line parsing */
86 static bool options_witharg(int *argc_, char ***argv_, char **out) {
95 if (argc < 2) /* no parameter was provided */
104 static bool options_long_witharg_all(const char *optname, int *argc_, char ***argv_, char **out, int ds, bool split) {
106 char **argv = *argv_;
108 size_t len = strlen(optname);
110 if (strncmp(argv[0]+ds, optname, len))
113 /* it's --optname, check how the parameter is supplied */
114 if (argv[0][ds+len] == '=') {
115 /* using --opt=param */
116 *out = argv[0]+ds+len+1;
120 if (!split || argc < ds) /* no parameter was provided, or only single-arg form accepted */
123 /* using --opt param */
129 static bool options_long_witharg(const char *optname, int *argc_, char ***argv_, char **out) {
130 return options_long_witharg_all(optname, argc_, argv_, out, 2, true);
132 static bool options_long_gcc(const char *optname, int *argc_, char ***argv_, char **out) {
133 return options_long_witharg_all(optname, argc_, argv_, out, 1, false);
136 static bool options_parse(int argc, char **argv) {
140 char *redirout = (char*)stdout;
141 char *redirerr = (char*)stderr;
144 while (!argend && argc > 1) {
152 if (argv[0][0] == '-') {
153 /* All gcc-type long options */
154 if (options_long_gcc("std", &argc, &argv, &argarg)) {
155 if (!strcmp(argarg, "gmqcc") || !strcmp(argarg, "default")) {
157 opts_set(opts.flags, ADJUST_VECTOR_FIELDS, true);
158 opts.standard = COMPILER_GMQCC;
160 } else if (!strcmp(argarg, "qcc")) {
162 opts_set(opts.flags, ADJUST_VECTOR_FIELDS, false);
163 opts_set(opts.flags, ASSIGN_FUNCTION_TYPES, true);
164 opts.standard = COMPILER_QCC;
166 } else if (!strcmp(argarg, "fte") || !strcmp(argarg, "fteqcc")) {
168 opts_set(opts.flags, FTEPP, true);
169 opts_set(opts.flags, TRANSLATABLE_STRINGS, true);
170 opts_set(opts.flags, ADJUST_VECTOR_FIELDS, false);
171 opts_set(opts.flags, ASSIGN_FUNCTION_TYPES, true);
172 opts_set(opts.warn, WARN_TERNARY_PRECEDENCE, true);
173 opts_set(opts.flags, CORRECT_TERNARY, false);
174 opts.standard = COMPILER_FTEQCC;
176 } else if (!strcmp(argarg, "qccx")) {
178 opts_set(opts.flags, ADJUST_VECTOR_FIELDS, false);
179 opts.standard = COMPILER_QCCX;
182 con_out("Unknown standard: %s\n", argarg);
187 if (options_long_gcc("force-crc", &argc, &argv, &argarg)) {
188 opts.forcecrc = true;
189 opts.forced_crc = strtol(argarg, NULL, 0);
192 if (options_long_gcc("redirout", &argc, &argv, &redirout)) {
193 con_change(redirout, redirerr);
196 if (options_long_gcc("redirerr", &argc, &argv, &redirerr)) {
197 con_change(redirout, redirerr);
200 if (options_long_gcc("config", &argc, &argv, &argarg)) {
205 /* show defaults (like pathscale) */
206 if (!strcmp(argv[0]+1, "show-defaults")) {
209 for (itr = 0; itr < COUNT_FLAGS; ++itr) {
213 memset(buffer, 0, sizeof(buffer));
214 util_strtononcmd(opts_flag_list[itr].name, buffer, strlen(opts_flag_list[itr].name) + 1);
216 con_out("-f%s ", buffer);
218 for (itr = 0; itr < COUNT_WARNINGS; ++itr) {
222 memset(buffer, 0, sizeof(buffer));
223 util_strtononcmd(opts_warn_list[itr].name, buffer, strlen(opts_warn_list[itr].name) + 1);
224 con_out("-W%s ", buffer);
230 if (!strcmp(argv[0]+1, "debug")) {
234 if (!strcmp(argv[0]+1, "dump")) {
238 if (!strcmp(argv[0]+1, "dumpfin")) {
242 if (!strcmp(argv[0]+1, "memchk")) {
246 if (!strcmp(argv[0]+1, "nocolor")) {
251 switch (argv[0][1]) {
252 /* -h, show usage but exit with 0 */
256 /* break; never reached because of exit(0) */
266 /* debug turns on -flno */
268 opts_setflag("LNO", true);
272 if (!strlen(argv[0]+2)) {
273 con_err("expected name after -D\n");
277 if (!(argarg = strchr(argv[0] + 2, '='))) {
278 macro.name = util_strdup(argv[0]+2);
281 *argarg='\0'; /* terminate for name */
282 macro.name = util_strdup(argv[0]+2);
283 macro.value = util_strdup(argarg+1);
285 vec_push(ppems, macro);
288 /* handle all -fflags */
290 util_strtocmd(argv[0]+2, argv[0]+2, strlen(argv[0]+2)+1);
291 if (!strcmp(argv[0]+2, "HELP") || *(argv[0]+2) == '?') {
292 con_out("Possible flags:\n");
293 for (itr = 0; itr < COUNT_FLAGS; ++itr) {
294 util_strtononcmd(opts_flag_list[itr].name, buffer, sizeof(buffer));
295 con_out(" -f%s\n", buffer);
299 else if (!strncmp(argv[0]+2, "NO_", 3)) {
300 if (!opts_setflag(argv[0]+5, false)) {
301 con_out("unknown flag: %s\n", argv[0]+2);
305 else if (!opts_setflag(argv[0]+2, true)) {
306 con_out("unknown flag: %s\n", argv[0]+2);
311 util_strtocmd(argv[0]+2, argv[0]+2, strlen(argv[0]+2)+1);
312 if (!strcmp(argv[0]+2, "HELP") || *(argv[0]+2) == '?') {
313 con_out("Possible warnings:\n");
314 for (itr = 0; itr < COUNT_WARNINGS; ++itr) {
315 util_strtononcmd(opts_warn_list[itr].name, buffer, sizeof(buffer));
316 con_out(" -W%s\n", buffer);
320 else if (!strcmp(argv[0]+2, "NO_ERROR")) {
324 else if (!strcmp(argv[0]+2, "ERROR")) {
328 else if (!strcmp(argv[0]+2, "NONE")) {
329 for (itr = 0; itr < sizeof(opts.warn)/sizeof(opts.warn[0]); ++itr)
333 else if (!strcmp(argv[0]+2, "ALL")) {
334 for (itr = 0; itr < sizeof(opts.warn)/sizeof(opts.warn[0]); ++itr)
335 opts.warn[itr] = 0xFFFFFFFFL;
338 if (!strncmp(argv[0]+2, "NO_", 3)) {
339 if (!opts_setwarn(argv[0]+5, false)) {
340 con_out("unknown warning: %s\n", argv[0]+2);
344 else if (!opts_setwarn(argv[0]+2, true)) {
345 con_out("unknown warning: %s\n", argv[0]+2);
351 if (!options_witharg(&argc, &argv, &argarg)) {
352 con_out("option -O requires a numerical argument, or optimization name with an optional 'no-' prefix\n");
355 if (isdigit(argarg[0])) {
356 opts.O = atoi(argarg);
357 opts_setoptimlevel(opts.O);
359 util_strtocmd(argarg, argarg, strlen(argarg)+1);
360 if (!strcmp(argarg, "HELP")) {
361 con_out("Possible optimizations:\n");
362 for (itr = 0; itr < COUNT_OPTIMIZATIONS; ++itr) {
363 util_strtononcmd(opts_opt_list[itr].name, buffer, sizeof(buffer));
364 con_out(" -O%-20s (-O%u)\n", buffer, opts_opt_oflag[itr]);
368 else if (!strcmp(argarg, "ALL"))
369 opts_setoptimlevel(opts.O = 9999);
370 else if (!strncmp(argarg, "NO_", 3)) {
371 if (!opts_setoptim(argarg+3, false)) {
372 con_out("unknown optimization: %s\n", argarg+3);
377 if (!opts_setoptim(argarg, true)) {
378 con_out("unknown optimization: %s\n", argarg);
386 if (!options_witharg(&argc, &argv, &argarg)) {
387 con_out("option -o requires an argument: the output file name\n");
390 opts.output = argarg;
391 opts_output_wasset = true;
396 item.type = argv[0][1] == 'a' ? TYPE_ASM : TYPE_SRC;
397 if (!options_witharg(&argc, &argv, &argarg)) {
398 con_out("option -a requires a filename %s\n",
399 (argv[0][1] == 'a' ? "containing QC-asm" : "containing a progs.src formatted list"));
402 item.filename = argarg;
403 vec_push(items, item);
408 /* anything following -- is considered a non-option argument */
412 /* All long options without arguments */
413 else if (!strcmp(argv[0]+2, "help")) {
417 else if (!strcmp(argv[0]+2, "version")) {
422 /* All long options with arguments */
423 if (options_long_witharg("output", &argc, &argv, &argarg)) {
424 opts.output = argarg;
425 opts_output_wasset = true;
427 con_out("Unknown parameter: %s\n", argv[0]);
434 con_out("Unknown parameter: %s\n", argv[0]);
440 /* it's a QC filename */
441 item.filename = argv[0];
443 vec_push(items, item);
446 opts_ini_init(config);
450 /* returns the line number, or -1 on error */
451 static bool progs_nextline(char **out, size_t *alen,FILE *src) {
458 len = util_getline(&line, alen, src);
462 /* start at first non-blank */
463 for (start = line; isspace(*start); ++start) {}
464 /* end at the first non-blank */
465 for (end = start; *end && !isspace(*end); ++end) {}
468 /* move the actual filename to the beginning */
469 while (start != end) {
476 int main(int argc, char **argv) {
479 bool opts_output_free = false;
480 bool operators_free = false;
481 bool progs_src = false;
482 FILE *outfile = NULL;
486 opts_init("progs.dat", COMPILER_GMQCC, (1024 << 3));
488 if (!options_parse(argc, argv)) {
492 /* the standard decides which set of operators to use */
493 if (opts.standard == COMPILER_GMQCC) {
494 operators = c_operators;
495 operator_count = c_operator_count;
496 } else if (opts.standard == COMPILER_FTEQCC) {
497 operators = fte_operators;
498 operator_count = fte_operator_count;
500 operators = qcc_operators;
501 operator_count = qcc_operator_count;
504 if (operators == fte_operators) {
506 if (OPTS_FLAG(CORRECT_TERNARY)) {
508 if (operators[operator_count-2].id != opid1(',') ||
509 operators[operator_count-1].id != opid2(':','?'))
511 con_err("internal error: operator precedence table wasn't updated correctly!\n");
514 operators_free = true;
515 newops = mem_a(sizeof(operators[0]) * operator_count);
516 memcpy(newops, operators, sizeof(operators[0]) * operator_count);
517 memcpy(&newops[operator_count-2], &operators[operator_count-1], sizeof(newops[0]));
518 memcpy(&newops[operator_count-1], &operators[operator_count-2], sizeof(newops[0]));
519 newops[operator_count-2].prec = newops[operator_count-1].prec+1;
525 for (itr = 0; itr < COUNT_FLAGS; ++itr)
526 con_out("Flag %s = %i\n", opts_flag_list[itr].name, OPTS_FLAG(itr));
527 for (itr = 0; itr < COUNT_WARNINGS; ++itr)
528 con_out("Warning %s = %i\n", opts_warn_list[itr].name, OPTS_WARN(itr));
530 con_out("output = %s\n", opts.output);
531 con_out("optimization level = %d\n", opts.O);
532 con_out("standard = %i\n", opts.standard);
536 if (opts_output_wasset) {
537 outfile = util_fopen(opts.output, "wb");
539 con_err("failed to open `%s` for writing\n", opts.output);
549 if (!parser_init()) {
550 con_err("failed to initialize parser\n");
556 if (opts.pp_only || OPTS_FLAG(FTEPP)) {
558 con_err("failed to initialize parser\n");
564 util_debug("COM", "starting ...\n");
567 if (opts.pp_only || OPTS_FLAG(FTEPP)) {
568 for (itr = 0; itr < vec_size(ppems); itr++) {
569 ftepp_add_macro(ppems[itr].name, ppems[itr].value);
570 mem_d(ppems[itr].name);
573 if (ppems[itr].value)
574 mem_d(ppems[itr].value);
578 if (!vec_size(items)) {
585 src = util_fopen("progs.src", "rb");
587 con_err("failed to open `progs.src` for reading\n");
593 if (!progs_nextline(&line, &linelen, src) || !line[0]) {
594 con_err("illformatted progs.src file: expected output filename in first line\n");
599 if (!opts_output_wasset) {
600 opts.output = util_strdup(line);
601 opts_output_free = true;
604 while (progs_nextline(&line, &linelen, src)) {
606 if (!line[0] || (line[0] == '/' && line[1] == '/'))
608 item.filename = util_strdup(line);
610 vec_push(items, item);
621 if (vec_size(items)) {
623 con_out("Mode: %s\n", (progs_src ? "progs.src" : "manual"));
624 con_out("There are %lu items to compile:\n", (unsigned long)vec_size(items));
626 for (itr = 0; itr < vec_size(items); ++itr) {
628 con_out(" item: %s (%s)\n",
630 ( (items[itr].type == TYPE_QC ? "qc" :
631 (items[itr].type == TYPE_ASM ? "asm" :
632 (items[itr].type == TYPE_SRC ? "progs.src" :
638 if (!ftepp_preprocess_file(items[itr].filename)) {
644 fprintf(outfile, "%s", out);
648 if (OPTS_FLAG(FTEPP)) {
650 if (!ftepp_preprocess_file(items[itr].filename)) {
655 if (vec_size(data)) {
656 if (!parser_compile_string_len(items[itr].filename, data, vec_size(data))) {
664 if (!parser_compile_file(items[itr].filename)) {
672 mem_d(items[itr].filename);
673 items[itr].filename = NULL;
679 if (!parser_finish(opts.output)) {
688 for (itr = 0; itr < COUNT_OPTIMIZATIONS; ++itr) {
689 if (opts_optimizationcount[itr]) {
690 con_out("%s: %u\n", opts_opt_list[itr].name, (unsigned int)opts_optimizationcount[itr]);
696 util_debug("COM", "cleaning ...\n");
704 if (opts_output_free)
705 mem_d((char*)opts.output);
707 mem_d((void*)operators);