]> git.xonotic.org Git - xonotic/gmqcc.git/blob - main.c
slightly faster hash function (using crc32), with precomputed polynomial table (256x3...
[xonotic/gmqcc.git] / main.c
1 /*
2  * Copyright (C) 2012 
3  *     Dale Weiler
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of
6  * this software and associated documentation files (the "Software"), to deal in
7  * the Software without restriction, including without limitation the rights to
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9  * of the Software, and to permit persons to whom the Software is furnished to do
10  * so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in all
13  * copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21  * SOFTWARE.
22  */
23 #include "gmqcc.h"
24 // todo CLEANUP this argitem thing
25 typedef struct { char *name, type; } argitem;
26 VECTOR_MAKE(argitem, items);
27
28 /* global options */
29 int opts_debug  = 0;
30 int opts_memchk = 0;
31
32 static const int usage(const char *const app) {
33     printf("usage:\n");
34     printf("    %s -c<file>          -oprog.dat -- compile file\n"     , app);
35     printf("    %s -a<file>          -oprog.dat -- assemble file\n"    , app);
36     printf("    %s -c<file> -i<file> -oprog.dat -- compile together (allowed multiple -i<file>)\n" , app);
37     printf("    %s -a<file> -i<file> -oprog.dat -- assemble together(allowed multiple -i<file>)\n", app);
38     printf("    example:\n");
39     printf("    %s -cfoo.qc -ibar.qc -oqc.dat -afoo.qs -ibar.qs -oqs.dat\n", app);
40     printf("    additional flags:\n");
41     printf("        -debug           -- turns on compiler debug messages\n");
42     printf("        -memchk          -- turns on compiler memory leak check\n");
43     
44     return -1;
45 }
46
47 int main(int argc, char **argv) {
48     size_t itr = 0;
49     char  *app = &argv[0][0];
50     FILE  *fpp = NULL;
51
52     /*
53      * Parse all command line arguments.  This is rather annoying to do
54      * because of all tiny corner cases.
55      */
56     if (argc <= 1 || (argv[1][0] != '-'))
57         return usage(app);
58
59     while ((argc > 1) && argv[1][0] == '-') {
60         switch (argv[1][1]) {
61             case 'c': items_add((argitem){util_strdup(&argv[1][2]), 0}); break; /* compile  */ 
62             case 'a': items_add((argitem){util_strdup(&argv[1][2]), 1}); break; /* assemble */
63             case 'i': items_add((argitem){util_strdup(&argv[1][2]), 2}); break; /* includes */
64             default:
65                 if (!strncmp(&argv[1][1], "debug" , 5)) { opts_debug  = 1; break; }
66                 if (!strncmp(&argv[1][1], "memchk", 6)) { opts_memchk = 1; break; }
67                 return usage(app);
68                 
69         }
70         ++argv;
71         --argc;
72     }
73
74     /*
75      * options could depend on another option, this is where option
76      * validity checking like that would take place.
77      */
78     if (opts_memchk && !opts_debug) 
79         printf("Warning: cannot enable -memchk, without -debug.\n");
80
81     /* multi file multi path compilation system */
82     for (; itr < items_elements; itr++) {
83         switch (items_data[itr].type) {
84             case 0:
85                 fpp = fopen(items_data[itr].name, "r");
86                 struct lex_file *lex = lex_open(fpp);
87                 parse_gen(lex);
88                 lex_close(lex);
89                 break;
90             case 1:
91                 asm_init (items_data[itr].name, &fpp);
92                 asm_parse(fpp);
93                 asm_close(fpp);
94                 break;
95         }
96     }
97     
98     /* clean list */
99     for (itr = 0; itr < items_elements; itr++)
100         mem_d(items_data[itr].name);
101     mem_d(items_data);
102
103     util_meminfo();
104     return 0;
105 }