]> git.xonotic.org Git - xonotic/gmqcc.git/blob - main.c
d14acf0b828024c7c2af0a1902d69d5d36fae0f7
[xonotic/gmqcc.git] / main.c
1 /*
2  * Copyright (C) 2012, 2013
3  *     Dale Weiler
4  *     Wolfgang Bumiller
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 #include "lexer.h"
26 #include <time.h>
27
28 /* TODO: cleanup this whole file .. it's a fuckign mess */
29
30 /* set by the standard */
31 const oper_info *operators      = NULL;
32 size_t           operator_count = 0;
33 static bool      opts_output_wasset = false;
34
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;
39
40 #define TYPE_QC  0
41 #define TYPE_ASM 1
42 #define TYPE_SRC 2
43
44 static const char *app_name;
45
46 static void version() {
47     con_out("GMQCC %d.%d.%d Built %s %s\n",
48         GMQCC_VERSION_MAJOR,
49         GMQCC_VERSION_MINOR,
50         GMQCC_VERSION_PATCH,
51         __DATE__,
52         __TIME__
53     );
54 #ifdef GMQCC_GITINFO
55     con_out("git build: %s\n", GMQCC_GITINFO);
56 #elif defined(GMQCC_VERION_TYPE_DEVEL)
57     con_out("development build\n");
58 #endif
59 }
60
61 static int usage() {
62     con_out("usage: %s [options] [files...]", app_name);
63     con_out("options:\n"
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");
91     return -1;
92 }
93
94 /* command line parsing */
95 static bool options_witharg(int *argc_, char ***argv_, char **out) {
96     int  argc   = *argc_;
97     char **argv = *argv_;
98
99     if (argv[0][2]) {
100         *out = argv[0]+2;
101         return true;
102     }
103     /* eat up the next */
104     if (argc < 2) /* no parameter was provided */
105         return false;
106
107     *out = argv[1];
108     --*argc_;
109     ++*argv_;
110     return true;
111 }
112
113 static bool options_long_witharg_all(const char *optname, int *argc_, char ***argv_, char **out, int ds, bool split) {
114     int  argc   = *argc_;
115     char **argv = *argv_;
116
117     size_t len = strlen(optname);
118
119     if (strncmp(argv[0]+ds, optname, len))
120         return false;
121
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;
126         return true;
127     }
128
129     if (!split || argc < ds) /* no parameter was provided, or only single-arg form accepted */
130         return false;
131
132     /* using --opt param */
133     *out = argv[1];
134     --*argc_;
135     ++*argv_;
136     return true;
137 }
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);
140 }
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);
143 }
144
145 static bool options_parse(int argc, char **argv) {
146     bool argend = false;
147     size_t itr;
148     char  buffer[1024];
149     char *redirout = NULL;
150     char *redirerr = NULL;
151     char *config   = NULL;
152
153     while (!argend && argc > 1) {
154         char *argarg;
155         argitem item;
156         ppitem  macro;
157
158         ++argv;
159         --argc;
160
161         if (argv[0][0] == '-') {
162             /* All gcc-type long options */
163             if (options_long_gcc("std", &argc, &argv, &argarg)) {
164                 if (!strcmp(argarg, "gmqcc") || !strcmp(argarg, "default")) {
165
166                     opts_set(opts.flags, ADJUST_VECTOR_FIELDS,          true);
167                     opts_set(opts.flags, CORRECT_LOGIC,                 true);
168                     opts_set(opts.flags, FALSE_EMPTY_STRINGS,           false);
169                     opts_set(opts.flags, TRUE_EMPTY_STRINGS,            true);
170                     opts_set(opts.flags, LOOP_LABELS,                   true);
171                     opts_set(opts.flags, TRANSLATABLE_STRINGS,          true);
172                     opts_set(opts.flags, INITIALIZED_NONCONSTANTS,      true);
173                     opts_set(opts.werror, WARN_INVALID_PARAMETER_COUNT, true);
174                     opts_set(opts.werror, WARN_MISSING_RETURN_VALUES,   true);
175                     opts.standard = COMPILER_GMQCC;
176
177                 } else if (!strcmp(argarg, "qcc")) {
178
179                     opts_set(opts.flags, ADJUST_VECTOR_FIELDS,  false);
180                     opts_set(opts.flags, ASSIGN_FUNCTION_TYPES, true);
181                     opts.standard = COMPILER_QCC;
182
183                 } else if (!strcmp(argarg, "fte") || !strcmp(argarg, "fteqcc")) {
184
185                     opts_set(opts.flags, FTEPP,                    true);
186                     opts_set(opts.flags, TRANSLATABLE_STRINGS,     true);
187                     opts_set(opts.flags, ADJUST_VECTOR_FIELDS,     false);
188                     opts_set(opts.flags, ASSIGN_FUNCTION_TYPES,    true);
189                     opts_set(opts.flags, CORRECT_TERNARY,          false);
190                     opts_set(opts.warn, WARN_TERNARY_PRECEDENCE,   true);
191                     opts.standard = COMPILER_FTEQCC;
192
193                 } else if (!strcmp(argarg, "qccx")) {
194
195                     opts_set(opts.flags, ADJUST_VECTOR_FIELDS,  false);
196                     opts.standard = COMPILER_QCCX;
197
198                 } else {
199                     con_out("Unknown standard: %s\n", argarg);
200                     return false;
201                 }
202                 continue;
203             }
204             if (options_long_gcc("force-crc", &argc, &argv, &argarg)) {
205                 opts.forcecrc   = true;
206                 opts.forced_crc = strtol(argarg, NULL, 0);
207                 continue;
208             }
209             if (options_long_gcc("redirout", &argc, &argv, &redirout)) {
210                 con_change(redirout, redirerr);
211                 continue;
212             }
213             if (options_long_gcc("redirerr", &argc, &argv, &redirerr)) {
214                 con_change(redirout, redirerr);
215                 continue;
216             }
217             if (options_long_gcc("config", &argc, &argv, &argarg)) {
218                 config = argarg;
219                 continue;
220             }
221
222             /* show defaults (like pathscale) */
223             if (!strcmp(argv[0]+1, "show-defaults")) {
224                 for (itr = 0; itr < COUNT_FLAGS; ++itr) {
225                     if (!OPTS_FLAG(itr))
226                         continue;
227
228                     memset(buffer, 0, sizeof(buffer));
229                     util_strtononcmd(opts_flag_list[itr].name, buffer, strlen(opts_flag_list[itr].name) + 1);
230
231                     con_out("-f%s ", buffer);
232                 }
233                 for (itr = 0; itr < COUNT_WARNINGS; ++itr) {
234                     if (!OPTS_WARN(itr))
235                         continue;
236
237                     memset(buffer, 0, sizeof(buffer));
238                     util_strtononcmd(opts_warn_list[itr].name, buffer, strlen(opts_warn_list[itr].name) + 1);
239                     con_out("-W%s ", buffer);
240                 }
241                 con_out("\n");
242                 exit(0);
243             }
244
245             if (!strcmp(argv[0]+1, "debug")) {
246                 opts.debug = true;
247                 continue;
248             }
249             if (!strcmp(argv[0]+1, "dump")) {
250                 opts.dump = true;
251                 continue;
252             }
253             if (!strcmp(argv[0]+1, "dumpfin")) {
254                 opts.dumpfin = true;
255                 continue;
256             }
257             if (!strcmp(argv[0]+1, "memchk")) {
258                 opts.memchk = true;
259                 continue;
260             }
261             if (!strcmp(argv[0]+1, "nocolor")) {
262                 con_color(0);
263                 continue;
264             }
265
266             switch (argv[0][1]) {
267                 /* -h, show usage but exit with 0 */
268                 case 'h':
269                     usage();
270                     exit(0);
271                     /* break; never reached because of exit(0) */
272
273                 case 'v':
274                     version();
275                     exit(0);
276
277                 case 'E':
278                     opts.pp_only = true;
279                     opts_set(opts.flags, FTEPP_PREDEFS, true); /* predefs on for -E */
280                     break;
281
282                 /* debug turns on -flno */
283                 case 'g':
284                     opts_setflag("LNO", true);
285                     opts.g = true;
286                     break;
287
288                 case 'q':
289                     opts.quiet = true;
290                     break;
291
292                 case 'D':
293                     if (!strlen(argv[0]+2)) {
294                         con_err("expected name after -D\n");
295                         exit(0);
296                     }
297
298                     if (!(argarg = strchr(argv[0] + 2, '='))) {
299                         macro.name  = util_strdup(argv[0]+2);
300                         macro.value = NULL;
301                     } else {
302                         *argarg='\0'; /* terminate for name */
303                         macro.name  = util_strdup(argv[0]+2);
304                         macro.value = util_strdup(argarg+1);
305                     }
306                     vec_push(ppems, macro);
307                     break;
308
309                 /* handle all -fflags */
310                 case 'f':
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 flags:\n");
314                         for (itr = 0; itr < COUNT_FLAGS; ++itr) {
315                             util_strtononcmd(opts_flag_list[itr].name, buffer, sizeof(buffer));
316                             con_out(" -f%s\n", buffer);
317                         }
318                         exit(0);
319                     }
320                     else if (!strncmp(argv[0]+2, "NO_", 3)) {
321                         if (!opts_setflag(argv[0]+5, false)) {
322                             con_out("unknown flag: %s\n", argv[0]+2);
323                             return false;
324                         }
325                     }
326                     else if (!opts_setflag(argv[0]+2, true)) {
327                         con_out("unknown flag: %s\n", argv[0]+2);
328                         return false;
329                     }
330                     break;
331                 case 'W':
332                     util_strtocmd(argv[0]+2, argv[0]+2, strlen(argv[0]+2)+1);
333                     if (!strcmp(argv[0]+2, "HELP") || *(argv[0]+2) == '?') {
334                         con_out("Possible warnings:\n");
335                         for (itr = 0; itr < COUNT_WARNINGS; ++itr) {
336                             util_strtononcmd(opts_warn_list[itr].name, buffer, sizeof(buffer));
337                             con_out(" -W%s\n", buffer);
338                         }
339                         exit(0);
340                     }
341                     else if (!strcmp(argv[0]+2, "NO_ERROR") ||
342                              !strcmp(argv[0]+2, "NO_ERROR_ALL"))
343                     {
344                         for (itr = 0; itr < sizeof(opts.werror)/sizeof(opts.werror[0]); ++itr)
345                             opts.werror[itr] = 0;
346                         break;
347                     }
348                     else if (!strcmp(argv[0]+2, "ERROR") ||
349                              !strcmp(argv[0]+2, "ERROR_ALL"))
350                     {
351                         opts_backup_non_Werror_all();
352                         for (itr = 0; itr < sizeof(opts.werror)/sizeof(opts.werror[0]); ++itr)
353                             opts.werror[itr] = 0xFFFFFFFFL;
354                         opts_restore_non_Werror_all();
355                         break;
356                     }
357                     else if (!strcmp(argv[0]+2, "NONE")) {
358                         for (itr = 0; itr < sizeof(opts.warn)/sizeof(opts.warn[0]); ++itr)
359                             opts.warn[itr] = 0;
360                         break;
361                     }
362                     else if (!strcmp(argv[0]+2, "ALL")) {
363                         opts_backup_non_Wall();
364                         for (itr = 0; itr < sizeof(opts.warn)/sizeof(opts.warn[0]); ++itr)
365                             opts.warn[itr] = 0xFFFFFFFFL;
366                         opts_restore_non_Wall();
367                         break;
368                     }
369                     else if (!strncmp(argv[0]+2, "ERROR_", 6)) {
370                         if (!opts_setwerror(argv[0]+8, true)) {
371                             con_out("unknown warning: %s\n", argv[0]+2);
372                             return false;
373                         }
374                     }
375                     else if (!strncmp(argv[0]+2, "NO_ERROR_", 9)) {
376                         if (!opts_setwerror(argv[0]+11, false)) {
377                             con_out("unknown warning: %s\n", argv[0]+2);
378                             return false;
379                         }
380                     }
381                     else if (!strncmp(argv[0]+2, "NO_", 3)) {
382                         if (!opts_setwarn(argv[0]+5, false)) {
383                             con_out("unknown warning: %s\n", argv[0]+2);
384                             return false;
385                         }
386                     }
387                     else if (!opts_setwarn(argv[0]+2, true)) {
388                         con_out("unknown warning: %s\n", argv[0]+2);
389                         return false;
390                     }
391                     break;
392
393                 case 'O':
394                     if (!options_witharg(&argc, &argv, &argarg)) {
395                         con_out("option -O requires a numerical argument, or optimization name with an optional 'no-' prefix\n");
396                         return false;
397                     }
398                     if (isdigit(argarg[0])) {
399                         opts.O = atoi(argarg);
400                         opts_setoptimlevel(opts.O);
401                     } else {
402                         util_strtocmd(argarg, argarg, strlen(argarg)+1);
403                         if (!strcmp(argarg, "HELP")) {
404                             con_out("Possible optimizations:\n");
405                             for (itr = 0; itr < COUNT_OPTIMIZATIONS; ++itr) {
406                                 util_strtononcmd(opts_opt_list[itr].name, buffer, sizeof(buffer));
407                                 con_out(" -O%-20s (-O%u)\n", buffer, opts_opt_oflag[itr]);
408                             }
409                             exit(0);
410                         }
411                         else if (!strcmp(argarg, "ALL"))
412                             opts_setoptimlevel(opts.O = 9999);
413                         else if (!strncmp(argarg, "NO_", 3)) {
414                             if (!opts_setoptim(argarg+3, false)) {
415                                 con_out("unknown optimization: %s\n", argarg+3);
416                                 return false;
417                             }
418                         }
419                         else {
420                             if (!opts_setoptim(argarg, true)) {
421                                 con_out("unknown optimization: %s\n", argarg);
422                                 return false;
423                             }
424                         }
425                     }
426                     break;
427
428                 case 'o':
429                     if (!options_witharg(&argc, &argv, &argarg)) {
430                         con_out("option -o requires an argument: the output file name\n");
431                         return false;
432                     }
433                     opts.output = argarg;
434                     opts_output_wasset = true;
435                     break;
436
437                 case 'a':
438                 case 's':
439                     item.type = argv[0][1] == 'a' ? TYPE_ASM : TYPE_SRC;
440                     if (!options_witharg(&argc, &argv, &argarg)) {
441                         con_out("option -a requires a filename %s\n",
442                                 (argv[0][1] == 'a' ? "containing QC-asm" : "containing a progs.src formatted list"));
443                         return false;
444                     }
445                     item.filename = argarg;
446                     vec_push(items, item);
447                     break;
448
449                 case '-':
450                     if (!argv[0][2]) {
451                         /* anything following -- is considered a non-option argument */
452                         argend = true;
453                         break;
454                     }
455             /* All long options without arguments */
456                     else if (!strcmp(argv[0]+2, "help")) {
457                         usage();
458                         exit(0);
459                     }
460                     else if (!strcmp(argv[0]+2, "version")) {
461                         version();
462                         exit(0);
463                     }
464                     else if (!strcmp(argv[0]+2, "quiet")) {
465                         opts.quiet = true;
466                         break;
467                     }
468                     else {
469             /* All long options with arguments */
470                         if (options_long_witharg("output", &argc, &argv, &argarg)) {
471                             opts.output = argarg;
472                             opts_output_wasset = true;
473                         } else {
474                             con_out("Unknown parameter: %s\n", argv[0]);
475                             return false;
476                         }
477                     }
478                     break;
479
480                 default:
481                     con_out("Unknown parameter: %s\n", argv[0]);
482                     return false;
483             }
484         }
485         else
486         {
487             /* it's a QC filename */
488             item.filename = argv[0];
489             item.type     = TYPE_QC;
490             vec_push(items, item);
491         }
492     }
493     opts_ini_init(config);
494     return true;
495 }
496
497 /* returns the line number, or -1 on error */
498 static bool progs_nextline(char **out, size_t *alen,FILE *src) {
499     int    len;
500     char  *line;
501     char  *start;
502     char  *end;
503
504     line = *out;
505     len  = file_getline(&line, alen, src);
506     if (len == -1)
507         return false;
508
509     /* start at first non-blank */
510     for (start = line; isspace(*start); ++start) {}
511     /* end at the first non-blank */
512     for (end = start;  *end && !isspace(*end);  ++end)   {}
513
514     *out = line;
515     /* move the actual filename to the beginning */
516     while (start != end) {
517         *line++ = *start++;
518     }
519     *line = 0;
520     return true;
521 }
522
523 int main(int argc, char **argv) {
524     size_t itr;
525     int    retval           = 0;
526     bool   opts_output_free = false;
527     bool   operators_free   = false;
528     bool   progs_src        = false;
529     FILE  *outfile          = NULL;
530
531     app_name = argv[0];
532     con_init ();
533     opts_init("progs.dat", COMPILER_GMQCC, (1024 << 3));
534
535     util_seed(time(0));
536
537     if (!options_parse(argc, argv)) {
538         return usage();
539     }
540
541     if (OPTS_FLAG(TRUE_EMPTY_STRINGS) && OPTS_FLAG(FALSE_EMPTY_STRINGS)) {
542         con_err("-ftrue-empty-strings and -ffalse-empty-strings are mutually exclusive");
543         exit(EXIT_FAILURE);
544     }
545
546     /* the standard decides which set of operators to use */
547     if (opts.standard == COMPILER_GMQCC) {
548         operators      = c_operators;
549         operator_count = c_operator_count;
550     } else if (opts.standard == COMPILER_FTEQCC) {
551         operators      = fte_operators;
552         operator_count = fte_operator_count;
553     } else {
554         operators      = qcc_operators;
555         operator_count = qcc_operator_count;
556     }
557
558     if (operators == fte_operators) {
559         /* fix ternary? */
560         if (OPTS_FLAG(CORRECT_TERNARY)) {
561             oper_info *newops;
562             if (operators[operator_count-2].id != opid1(',') ||
563                 operators[operator_count-1].id != opid2(':','?'))
564             {
565                 con_err("internal error: operator precedence table wasn't updated correctly!\n");
566                 exit(EXIT_FAILURE);
567             }
568             operators_free = true;
569             newops = (oper_info*)mem_a(sizeof(operators[0]) * operator_count);
570             memcpy(newops, operators, sizeof(operators[0]) * operator_count);
571             memcpy(&newops[operator_count-2], &operators[operator_count-1], sizeof(newops[0]));
572             memcpy(&newops[operator_count-1], &operators[operator_count-2], sizeof(newops[0]));
573             newops[operator_count-2].prec = newops[operator_count-1].prec+1;
574             operators = newops;
575         }
576     }
577
578     if (opts.dump) {
579         for (itr = 0; itr < COUNT_FLAGS; ++itr)
580             con_out("Flag %s = %i\n",    opts_flag_list[itr].name, OPTS_FLAG(itr));
581         for (itr = 0; itr < COUNT_WARNINGS; ++itr)
582             con_out("Warning %s = %i\n", opts_warn_list[itr].name, OPTS_WARN(itr));
583
584         con_out("output             = %s\n", opts.output);
585         con_out("optimization level = %d\n", opts.O);
586         con_out("standard           = %i\n", opts.standard);
587     }
588
589     if (opts.pp_only) {
590         if (opts_output_wasset) {
591             outfile = file_open(opts.output, "wb");
592             if (!outfile) {
593                 con_err("failed to open `%s` for writing\n", opts.output);
594                 retval = 1;
595                 goto cleanup;
596             }
597         }
598         else {
599             outfile = con_default_out();
600         }
601     }
602
603     if (!opts.pp_only) {
604         if (!parser_init()) {
605             con_err("failed to initialize parser\n");
606             retval = 1;
607             goto cleanup;
608         }
609     }
610
611     if (opts.pp_only || OPTS_FLAG(FTEPP)) {
612         if (!ftepp_init()) {
613             con_err("failed to initialize parser\n");
614             retval = 1;
615             goto cleanup;
616         }
617     }
618
619     if (OPTS_FLAG(TRUE_EMPTY_STRINGS))
620         type_not_instr[TYPE_STRING] = INSTR_NOT_F;
621
622     util_debug("COM", "starting ...\n");
623
624     /* add macros */
625     if (opts.pp_only || OPTS_FLAG(FTEPP)) {
626         for (itr = 0; itr < vec_size(ppems); itr++) {
627             ftepp_add_macro(ppems[itr].name, ppems[itr].value);
628             mem_d(ppems[itr].name);
629
630             /* can be null */
631             if (ppems[itr].value)
632                 mem_d(ppems[itr].value);
633         }
634     }
635
636     if (!vec_size(items)) {
637         FILE *src;
638         char *line;
639         size_t linelen = 0;
640
641         progs_src = true;
642
643         src = file_open("progs.src", "rb");
644         if (!src) {
645             con_err("failed to open `progs.src` for reading\n");
646             retval = 1;
647             goto cleanup;
648         }
649
650         line = NULL;
651         if (!progs_nextline(&line, &linelen, src) || !line[0]) {
652             con_err("illformatted progs.src file: expected output filename in first line\n");
653             retval = 1;
654             goto srcdone;
655         }
656
657         if (!opts_output_wasset) {
658             opts.output = util_strdup(line);
659             opts_output_free = true;
660         }
661
662         while (progs_nextline(&line, &linelen, src)) {
663             argitem item;
664             if (!line[0] || (line[0] == '/' && line[1] == '/'))
665                 continue;
666             item.filename = util_strdup(line);
667             item.type     = TYPE_QC;
668             vec_push(items, item);
669         }
670
671 srcdone:
672         file_close(src);
673         mem_d(line);
674     }
675
676     if (retval)
677         goto cleanup;
678
679     if (vec_size(items)) {
680         if (!opts.quiet && !opts.pp_only) {
681             con_out("Mode: %s\n", (progs_src ? "progs.src" : "manual"));
682             con_out("There are %lu items to compile:\n", (unsigned long)vec_size(items));
683         }
684         for (itr = 0; itr < vec_size(items); ++itr) {
685             if (!opts.quiet && !opts.pp_only) {
686                 con_out("  item: %s (%s)\n",
687                        items[itr].filename,
688                        ( (items[itr].type == TYPE_QC ? "qc" :
689                          (items[itr].type == TYPE_ASM ? "asm" :
690                          (items[itr].type == TYPE_SRC ? "progs.src" :
691                          ("unknown"))))));
692             }
693
694             if (opts.pp_only) {
695                 const char *out;
696                 if (!ftepp_preprocess_file(items[itr].filename)) {
697                     retval = 1;
698                     goto cleanup;
699                 }
700                 out = ftepp_get();
701                 if (out)
702                     file_printf(outfile, "%s", out);
703                 ftepp_flush();
704             }
705             else {
706                 if (OPTS_FLAG(FTEPP)) {
707                     const char *data;
708                     if (!ftepp_preprocess_file(items[itr].filename)) {
709                         retval = 1;
710                         goto cleanup;
711                     }
712                     data = ftepp_get();
713                     if (vec_size(data)) {
714                         if (!parser_compile_string(items[itr].filename, data, vec_size(data))) {
715                             retval = 1;
716                             goto cleanup;
717                         }
718                     }
719                     ftepp_flush();
720                 }
721                 else {
722                     if (!parser_compile_file(items[itr].filename)) {
723                         retval = 1;
724                         goto cleanup;
725                     }
726                 }
727             }
728
729             if (progs_src) {
730                 mem_d(items[itr].filename);
731                 items[itr].filename = NULL;
732             }
733         }
734
735         ftepp_finish();
736         if (!opts.pp_only) {
737             if (!parser_finish(opts.output)) {
738                 retval = 1;
739                 goto cleanup;
740             }
741         }
742     }
743
744     /* stuff */
745     if (!opts.quiet && !opts.pp_only) {
746         for (itr = 0; itr < COUNT_OPTIMIZATIONS; ++itr) {
747             if (opts_optimizationcount[itr]) {
748                 con_out("%s: %u\n", opts_opt_list[itr].name, (unsigned int)opts_optimizationcount[itr]);
749             }
750         }
751     }
752
753 cleanup:
754     util_debug("COM", "cleaning ...\n");
755     ftepp_finish();
756     con_close();
757     vec_free(items);
758     vec_free(ppems);
759
760     if (!opts.pp_only)
761         parser_cleanup();
762     if (opts_output_free)
763         mem_d((char*)opts.output);
764     if (operators_free)
765         mem_d((void*)operators);
766
767     lex_cleanup();
768     util_meminfo();
769     return retval;
770 }