2 * Copyright (C) 2012, 2013
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
28 /* TODO: cleanup this whole file .. it's a fuckign mess */
30 /* set by the standard */
31 const oper_info *operators = NULL;
32 size_t operator_count = 0;
33 static bool opts_output_wasset = false;
35 typedef struct { char *filename; int type; } argitem;
36 typedef struct { char *name; char *value; } ppitem;
37 static argitem *items = NULL;
38 static ppitem *ppems = NULL;
44 static const char *app_name;
46 static void version() {
47 con_out("GMQCC %d.%d.%d Built %s %s\n",
55 con_out("git build: %s\n", GMQCC_GITINFO);
56 #elif defined(GMQCC_VERION_TYPE_DEVEL)
57 con_out("development build\n");
62 con_out("usage: %s [options] [files...]", app_name);
64 " -h, --help show this help message\n"
65 " -debug turns on compiler debug messages\n"
66 " -memchk turns on compiler memory leak check\n");
67 con_out(" -o, --output=file output file, defaults to progs.dat\n"
68 " -s filename add a progs.src file to be used\n");
69 con_out(" -E stop after preprocessing\n");
70 con_out(" -q, --quiet be less verbose\n");
71 con_out(" -config file use the specified ini file\n");
72 con_out(" -std=standard select one of the following standards\n"
73 " -std=qcc original QuakeC\n"
74 " -std=fteqcc fteqcc QuakeC\n"
75 " -std=gmqcc this compiler (default)\n");
76 con_out(" -f<flag> enable a flag\n"
77 " -fno-<flag> disable a flag\n"
78 " -fhelp list possible flags\n");
79 con_out(" -W<warning> enable a warning\n"
80 " -Wno-<warning> disable a warning\n"
81 " -Wall enable all warnings\n");
82 con_out(" -Werror treat warnings as errors\n"
83 " -Werror-<warning> treat a warning as error\n"
84 " -Wno-error-<warning> opposite of the above\n");
85 con_out(" -Whelp list possible warnings\n");
86 con_out(" -O<number> optimization level\n"
87 " -O<name> enable specific optimization\n"
88 " -Ono-<name> disable specific optimization\n"
89 " -Ohelp list optimizations\n");
90 con_out(" -force-crc=num force a specific checksum into the header\n");
94 /* command line parsing */
95 static bool options_witharg(int *argc_, char ***argv_, char **out) {
103 /* eat up the next */
104 if (argc < 2) /* no parameter was provided */
113 static bool options_long_witharg_all(const char *optname, int *argc_, char ***argv_, char **out, int ds, bool split) {
115 char **argv = *argv_;
117 size_t len = strlen(optname);
119 if (strncmp(argv[0]+ds, optname, len))
122 /* it's --optname, check how the parameter is supplied */
123 if (argv[0][ds+len] == '=') {
124 /* using --opt=param */
125 *out = argv[0]+ds+len+1;
129 if (!split || argc < ds) /* no parameter was provided, or only single-arg form accepted */
132 /* using --opt param */
138 static bool options_long_witharg(const char *optname, int *argc_, char ***argv_, char **out) {
139 return options_long_witharg_all(optname, argc_, argv_, out, 2, true);
141 static bool options_long_gcc(const char *optname, int *argc_, char ***argv_, char **out) {
142 return options_long_witharg_all(optname, argc_, argv_, out, 1, false);
145 static bool options_parse(int argc, char **argv) {
149 char *redirout = NULL;
150 char *redirerr = NULL;
152 char *memdumpcols = NULL;
154 while (!argend && argc > 1) {
162 if (argv[0][0] == '-') {
163 /* All gcc-type long options */
164 if (options_long_gcc("std", &argc, &argv, &argarg)) {
165 if (!strcmp(argarg, "gmqcc") || !strcmp(argarg, "default")) {
167 opts_set(opts.flags, ADJUST_VECTOR_FIELDS, true);
168 opts_set(opts.flags, CORRECT_LOGIC, true);
169 opts_set(opts.flags, FALSE_EMPTY_STRINGS, false);
170 opts_set(opts.flags, TRUE_EMPTY_STRINGS, true);
171 opts_set(opts.flags, LOOP_LABELS, true);
172 opts_set(opts.flags, TRANSLATABLE_STRINGS, true);
173 opts_set(opts.flags, INITIALIZED_NONCONSTANTS, true);
174 opts_set(opts.werror, WARN_INVALID_PARAMETER_COUNT, true);
175 opts_set(opts.werror, WARN_MISSING_RETURN_VALUES, true);
178 OPTS_OPTION_U32(OPTION_STANDARD) = COMPILER_GMQCC;
180 } else if (!strcmp(argarg, "qcc")) {
182 opts_set(opts.flags, ADJUST_VECTOR_FIELDS, false);
183 opts_set(opts.flags, ASSIGN_FUNCTION_TYPES, true);
185 OPTS_OPTION_U32(OPTION_STANDARD) = COMPILER_QCC;
187 } else if (!strcmp(argarg, "fte") || !strcmp(argarg, "fteqcc")) {
189 opts_set(opts.flags, FTEPP, true);
190 opts_set(opts.flags, TRANSLATABLE_STRINGS, true);
191 opts_set(opts.flags, ADJUST_VECTOR_FIELDS, false);
192 opts_set(opts.flags, ASSIGN_FUNCTION_TYPES, true);
193 opts_set(opts.flags, CORRECT_TERNARY, false);
194 opts_set(opts.warn, WARN_TERNARY_PRECEDENCE, true);
196 OPTS_OPTION_U32(OPTION_STANDARD) = COMPILER_FTEQCC;
198 } else if (!strcmp(argarg, "qccx")) {
200 opts_set(opts.flags, ADJUST_VECTOR_FIELDS, false);
201 OPTS_OPTION_U32(OPTION_STANDARD) = COMPILER_QCCX;
204 con_out("Unknown standard: %s\n", argarg);
209 if (options_long_gcc("force-crc", &argc, &argv, &argarg)) {
211 OPTS_OPTION_BOOL(OPTION_FORCECRC) = true;
212 OPTS_OPTION_U16 (OPTION_FORCED_CRC) = strtol(argarg, NULL, 0);
215 if (options_long_gcc("redirout", &argc, &argv, &redirout)) {
216 con_change(redirout, redirerr);
219 if (options_long_gcc("redirerr", &argc, &argv, &redirerr)) {
220 con_change(redirout, redirerr);
223 if (options_long_gcc("config", &argc, &argv, &argarg)) {
227 if (options_long_gcc("memdumpcols", &argc, &argv, &memdumpcols)) {
228 OPTS_OPTION_U16(OPTION_MEMDUMPCOLS) = (uint16_t)strtol(memdumpcols, NULL, 10);
232 /* show defaults (like pathscale) */
233 if (!strcmp(argv[0]+1, "show-defaults")) {
234 for (itr = 0; itr < COUNT_FLAGS; ++itr) {
238 memset(buffer, 0, sizeof(buffer));
239 util_strtononcmd(opts_flag_list[itr].name, buffer, strlen(opts_flag_list[itr].name) + 1);
241 con_out("-f%s ", buffer);
243 for (itr = 0; itr < COUNT_WARNINGS; ++itr) {
247 memset(buffer, 0, sizeof(buffer));
248 util_strtononcmd(opts_warn_list[itr].name, buffer, strlen(opts_warn_list[itr].name) + 1);
249 con_out("-W%s ", buffer);
255 if (!strcmp(argv[0]+1, "debug")) {
256 OPTS_OPTION_BOOL(OPTION_DEBUG) = true;
259 if (!strcmp(argv[0]+1, "dump")) {
260 OPTS_OPTION_BOOL(OPTION_DUMP) = true;
263 if (!strcmp(argv[0]+1, "dumpfin")) {
264 OPTS_OPTION_BOOL(OPTION_DUMPFIN) = true;
267 if (!strcmp(argv[0]+1, "memchk")) {
268 OPTS_OPTION_BOOL(OPTION_MEMCHK) = true;
271 if (!strcmp(argv[0]+1, "nocolor")) {
276 switch (argv[0][1]) {
277 /* -h, show usage but exit with 0 */
281 /* break; never reached because of exit(0) */
288 OPTS_OPTION_BOOL(OPTION_PP_ONLY) = true;
289 opts_set(opts.flags, FTEPP_PREDEFS, true); /* predefs on for -E */
292 /* debug turns on -flno */
294 opts_setflag("LNO", true);
295 OPTS_OPTION_BOOL(OPTION_G) = true;
299 OPTS_OPTION_BOOL(OPTION_QUIET) = true;
303 if (!strlen(argv[0]+2)) {
304 con_err("expected name after -D\n");
308 if (!(argarg = strchr(argv[0] + 2, '='))) {
309 macro.name = util_strdup(argv[0]+2);
312 *argarg='\0'; /* terminate for name */
313 macro.name = util_strdup(argv[0]+2);
314 macro.value = util_strdup(argarg+1);
316 vec_push(ppems, macro);
319 /* handle all -fflags */
321 util_strtocmd(argv[0]+2, argv[0]+2, strlen(argv[0]+2)+1);
322 if (!strcmp(argv[0]+2, "HELP") || *(argv[0]+2) == '?') {
323 con_out("Possible flags:\n\n");
324 for (itr = 0; itr < COUNT_FLAGS; ++itr) {
325 util_strtononcmd(opts_flag_list[itr].name, buffer, sizeof(buffer));
326 con_out(" -f%s\n", buffer);
330 else if (!strncmp(argv[0]+2, "NO_", 3)) {
331 if (!opts_setflag(argv[0]+5, false)) {
332 con_out("unknown flag: %s\n", argv[0]+2);
336 else if (!opts_setflag(argv[0]+2, true)) {
337 con_out("unknown flag: %s\n", argv[0]+2);
342 util_strtocmd(argv[0]+2, argv[0]+2, strlen(argv[0]+2)+1);
343 if (!strcmp(argv[0]+2, "HELP") || *(argv[0]+2) == '?') {
344 con_out("Possible warnings:\n");
345 for (itr = 0; itr < COUNT_WARNINGS; ++itr) {
346 util_strtononcmd(opts_warn_list[itr].name, buffer, sizeof(buffer));
347 con_out(" -W%s\n", buffer);
348 if (itr == WARN_DEBUG)
349 con_out(" Warnings included by -Wall:\n");
353 else if (!strcmp(argv[0]+2, "NO_ERROR") ||
354 !strcmp(argv[0]+2, "NO_ERROR_ALL"))
356 for (itr = 0; itr < sizeof(opts.werror)/sizeof(opts.werror[0]); ++itr)
357 opts.werror[itr] = 0;
360 else if (!strcmp(argv[0]+2, "ERROR") ||
361 !strcmp(argv[0]+2, "ERROR_ALL"))
363 opts_backup_non_Werror_all();
364 for (itr = 0; itr < sizeof(opts.werror)/sizeof(opts.werror[0]); ++itr)
365 opts.werror[itr] = 0xFFFFFFFFL;
366 opts_restore_non_Werror_all();
369 else if (!strcmp(argv[0]+2, "NONE")) {
370 for (itr = 0; itr < sizeof(opts.warn)/sizeof(opts.warn[0]); ++itr)
374 else if (!strcmp(argv[0]+2, "ALL")) {
375 opts_backup_non_Wall();
376 for (itr = 0; itr < sizeof(opts.warn)/sizeof(opts.warn[0]); ++itr)
377 opts.warn[itr] = 0xFFFFFFFFL;
378 opts_restore_non_Wall();
381 else if (!strncmp(argv[0]+2, "ERROR_", 6)) {
382 if (!opts_setwerror(argv[0]+8, true)) {
383 con_out("unknown warning: %s\n", argv[0]+2);
387 else if (!strncmp(argv[0]+2, "NO_ERROR_", 9)) {
388 if (!opts_setwerror(argv[0]+11, false)) {
389 con_out("unknown warning: %s\n", argv[0]+2);
393 else if (!strncmp(argv[0]+2, "NO_", 3)) {
394 if (!opts_setwarn(argv[0]+5, false)) {
395 con_out("unknown warning: %s\n", argv[0]+2);
399 else if (!opts_setwarn(argv[0]+2, true)) {
400 con_out("unknown warning: %s\n", argv[0]+2);
406 if (!options_witharg(&argc, &argv, &argarg)) {
407 con_out("option -O requires a numerical argument, or optimization name with an optional 'no-' prefix\n");
410 if (isdigit(argarg[0])) {
411 uint32_t val = (uint32_t)strtol(argarg, NULL, 10);
412 OPTS_OPTION_U32(OPTION_O) = val;
413 opts_setoptimlevel(val);
415 util_strtocmd(argarg, argarg, strlen(argarg)+1);
416 if (!strcmp(argarg, "HELP")) {
417 con_out("Possible optimizations:\n");
418 for (itr = 0; itr < COUNT_OPTIMIZATIONS; ++itr) {
419 util_strtononcmd(opts_opt_list[itr].name, buffer, sizeof(buffer));
420 con_out(" -O%-20s (-O%u)\n", buffer, opts_opt_oflag[itr]);
424 else if (!strcmp(argarg, "ALL"))
425 opts_setoptimlevel(OPTS_OPTION_U32(OPTION_O) = 9999);
426 else if (!strncmp(argarg, "NO_", 3)) {
427 if (!opts_setoptim(argarg+3, false)) {
428 con_out("unknown optimization: %s\n", argarg+3);
433 if (!opts_setoptim(argarg, true)) {
434 con_out("unknown optimization: %s\n", argarg);
442 if (!options_witharg(&argc, &argv, &argarg)) {
443 con_out("option -o requires an argument: the output file name\n");
446 OPTS_OPTION_STR(OPTION_OUTPUT) = argarg;
447 opts_output_wasset = true;
452 item.type = argv[0][1] == 'a' ? TYPE_ASM : TYPE_SRC;
453 if (!options_witharg(&argc, &argv, &argarg)) {
454 con_out("option -a requires a filename %s\n",
455 (argv[0][1] == 'a' ? "containing QC-asm" : "containing a progs.src formatted list"));
458 item.filename = argarg;
459 vec_push(items, item);
464 /* anything following -- is considered a non-option argument */
468 /* All long options without arguments */
469 else if (!strcmp(argv[0]+2, "help")) {
473 else if (!strcmp(argv[0]+2, "version")) {
477 else if (!strcmp(argv[0]+2, "quiet")) {
478 OPTS_OPTION_BOOL(OPTION_QUIET) = true;
481 else if (!strcmp(argv[0]+2, "correct")) {
482 OPTS_OPTION_BOOL(OPTION_CORRECTION) = true;
485 else if (!strcmp(argv[0]+2, "no-correct")) {
486 OPTS_OPTION_BOOL(OPTION_CORRECTION) = false;
489 else if (!strcmp(argv[0]+2, "add-info")) {
490 OPTS_OPTION_BOOL(OPTION_ADD_INFO) = true;
494 /* All long options with arguments */
495 if (options_long_witharg("output", &argc, &argv, &argarg)) {
496 OPTS_OPTION_STR(OPTION_OUTPUT) = argarg;
497 opts_output_wasset = true;
499 con_out("Unknown parameter: %s\n", argv[0]);
506 con_out("Unknown parameter: %s\n", argv[0]);
512 /* it's a QC filename */
513 item.filename = argv[0];
515 vec_push(items, item);
518 opts_ini_init(config);
522 /* returns the line number, or -1 on error */
523 static bool progs_nextline(char **out, size_t *alen,FILE *src) {
530 len = fs_file_getline(&line, alen, src);
534 /* start at first non-blank */
535 for (start = line; isspace(*start); ++start) {}
536 /* end at the first non-blank */
537 for (end = start; *end && !isspace(*end); ++end) {}
540 /* move the actual filename to the beginning */
541 while (start != end) {
548 int main(int argc, char **argv) {
551 bool opts_output_free = false;
552 bool operators_free = false;
553 bool progs_src = false;
554 FILE *outfile = NULL;
558 opts_init("progs.dat", COMPILER_GMQCC, (1024 << 3));
562 if (!options_parse(argc, argv)) {
566 if (OPTS_FLAG(TRUE_EMPTY_STRINGS) && OPTS_FLAG(FALSE_EMPTY_STRINGS)) {
567 con_err("-ftrue-empty-strings and -ffalse-empty-strings are mutually exclusive");
571 /* the standard decides which set of operators to use */
572 if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_GMQCC) {
573 operators = c_operators;
574 operator_count = c_operator_count;
575 } else if (OPTS_OPTION_U32(OPTION_STANDARD) == COMPILER_FTEQCC) {
576 operators = fte_operators;
577 operator_count = fte_operator_count;
579 operators = qcc_operators;
580 operator_count = qcc_operator_count;
583 if (operators == fte_operators) {
585 if (OPTS_FLAG(CORRECT_TERNARY)) {
587 if (operators[operator_count-2].id != opid1(',') ||
588 operators[operator_count-1].id != opid2(':','?'))
590 con_err("internal error: operator precedence table wasn't updated correctly!\n");
593 operators_free = true;
594 newops = (oper_info*)mem_a(sizeof(operators[0]) * operator_count);
595 memcpy(newops, operators, sizeof(operators[0]) * operator_count);
596 memcpy(&newops[operator_count-2], &operators[operator_count-1], sizeof(newops[0]));
597 memcpy(&newops[operator_count-1], &operators[operator_count-2], sizeof(newops[0]));
598 newops[operator_count-2].prec = newops[operator_count-1].prec+1;
603 if (OPTS_OPTION_BOOL(OPTION_DUMP)) {
604 for (itr = 0; itr < COUNT_FLAGS; ++itr)
605 con_out("Flag %s = %i\n", opts_flag_list[itr].name, OPTS_FLAG(itr));
606 for (itr = 0; itr < COUNT_WARNINGS; ++itr)
607 con_out("Warning %s = %i\n", opts_warn_list[itr].name, OPTS_WARN(itr));
609 con_out("output = %s\n", OPTS_OPTION_STR(OPTION_OUTPUT));
610 con_out("optimization level = %u\n", OPTS_OPTION_U32(OPTION_O));
611 con_out("standard = %u\n", OPTS_OPTION_U32(OPTION_STANDARD));
614 if (OPTS_OPTION_BOOL(OPTION_PP_ONLY)) {
615 if (opts_output_wasset) {
616 outfile = fs_file_open(OPTS_OPTION_STR(OPTION_OUTPUT), "wb");
618 con_err("failed to open `%s` for writing\n", OPTS_OPTION_STR(OPTION_OUTPUT));
624 outfile = con_default_out();
628 if (!OPTS_OPTION_BOOL(OPTION_PP_ONLY)) {
629 if (!parser_init()) {
630 con_err("failed to initialize parser\n");
636 if (OPTS_OPTION_BOOL(OPTION_PP_ONLY) || OPTS_FLAG(FTEPP)) {
638 con_err("failed to initialize parser\n");
644 if (OPTS_FLAG(TRUE_EMPTY_STRINGS))
645 type_not_instr[TYPE_STRING] = INSTR_NOT_F;
647 util_debug("COM", "starting ...\n");
650 if (OPTS_OPTION_BOOL(OPTION_PP_ONLY) || OPTS_FLAG(FTEPP)) {
651 for (itr = 0; itr < vec_size(ppems); itr++) {
652 ftepp_add_macro(ppems[itr].name, ppems[itr].value);
653 mem_d(ppems[itr].name);
656 if (ppems[itr].value)
657 mem_d(ppems[itr].value);
661 if (!vec_size(items)) {
668 src = fs_file_open("progs.src", "rb");
670 con_err("failed to open `progs.src` for reading\n");
676 if (!progs_nextline(&line, &linelen, src) || !line[0]) {
677 con_err("illformatted progs.src file: expected output filename in first line\n");
682 if (!opts_output_wasset) {
683 OPTS_OPTION_STR(OPTION_OUTPUT) = util_strdup(line);
684 opts_output_free = true;
687 while (progs_nextline(&line, &linelen, src)) {
689 if (!line[0] || (line[0] == '/' && line[1] == '/'))
691 item.filename = util_strdup(line);
693 vec_push(items, item);
704 if (vec_size(items)) {
705 if (!OPTS_OPTION_BOOL(OPTION_QUIET) &&
706 !OPTS_OPTION_BOOL(OPTION_PP_ONLY))
708 con_out("Mode: %s\n", (progs_src ? "progs.src" : "manual"));
709 con_out("There are %lu items to compile:\n", (unsigned long)vec_size(items));
711 for (itr = 0; itr < vec_size(items); ++itr) {
712 if (!OPTS_OPTION_BOOL(OPTION_QUIET) &&
713 !OPTS_OPTION_BOOL(OPTION_PP_ONLY))
715 con_out(" item: %s (%s)\n",
717 ( (items[itr].type == TYPE_QC ? "qc" :
718 (items[itr].type == TYPE_ASM ? "asm" :
719 (items[itr].type == TYPE_SRC ? "progs.src" :
723 if (OPTS_OPTION_BOOL(OPTION_PP_ONLY)) {
725 if (!ftepp_preprocess_file(items[itr].filename)) {
731 fs_file_printf(outfile, "%s", out);
735 if (OPTS_FLAG(FTEPP)) {
737 if (!ftepp_preprocess_file(items[itr].filename)) {
742 if (vec_size(data)) {
743 if (!parser_compile_string(items[itr].filename, data, vec_size(data))) {
751 if (!parser_compile_file(items[itr].filename)) {
759 mem_d(items[itr].filename);
760 items[itr].filename = NULL;
765 if (!OPTS_OPTION_BOOL(OPTION_PP_ONLY)) {
766 if (!parser_finish(OPTS_OPTION_STR(OPTION_OUTPUT))) {
774 if (!OPTS_OPTION_BOOL(OPTION_QUIET) &&
775 !OPTS_OPTION_BOOL(OPTION_PP_ONLY))
777 for (itr = 0; itr < COUNT_OPTIMIZATIONS; ++itr) {
778 if (opts_optimizationcount[itr]) {
779 con_out("%s: %u\n", opts_opt_list[itr].name, (unsigned int)opts_optimizationcount[itr]);
785 util_debug("COM", "cleaning ...\n");
791 if (!OPTS_OPTION_BOOL(OPTION_PP_ONLY))
793 if (opts_output_free)
794 mem_d(OPTS_OPTION_STR(OPTION_OUTPUT));
796 mem_d((void*)operators);