]> git.xonotic.org Git - xonotic/gmqcc.git/blob - main.c
Fixed all invalid mmeory accesses
[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 bool opts_debug                     = false;
30 bool opts_memchk                    = false;
31 bool opts_darkplaces_stringtablebug = false;
32 bool opts_omit_nullcode             = false;
33 int  opts_compiler                  = COMPILER_GMQCC;
34
35 static const int usage(const char *const app) {
36     printf("usage:\n"
37            "    %s -c<file>          -oprog.dat -- compile file\n"
38            "    %s -a<file>          -oprog.dat -- assemble file\n"
39            "    %s -c<file> -i<file> -oprog.dat -- compile together (allowed multiple -i<file>)\n"
40            "    %s -a<file> -i<file> -oprog.dat -- assemble together(allowed multiple -i<file>)\n"
41            "    example:\n"
42            "    %s -cfoo.qc -ibar.qc -oqc.dat -afoo.qs -ibar.qs -oqs.dat\n"
43            "    additional flags:\n"
44            "        -debug           -- turns on compiler debug messages\n"
45            "        -memchk          -- turns on compiler memory leak check\n"
46            "        -help            -- prints this help/usage text\n"
47            "        -std             -- select the QuakeC compile type (types below):\n"
48            "            -std=qcc     -- original QuakeC\n"
49            "            -std=ftqecc  -- fteqcc QuakeC\n"
50            "            -std=qccx    -- qccx QuakeC\n"
51            "            -std=gmqcc   -- this compiler QuakeC (default selection)\n"
52            "    codegen flags:\n"
53            "        -fdarkplaces-string-table-bug -- patches the string table to work with bugged versions of darkplaces\n"
54            "        -fomit-nullcode               -- omits the generation of null code (will break everywhere see propsal.txt)\n",
55             app,app,app,app,app
56     );
57     return -1;
58 }
59
60 int main(int argc, char **argv) {
61     size_t    itr = 0;
62     char     *app = &argv[0][0];
63     FILE     *fpp = NULL;
64     lex_file *lex = NULL;
65
66     /*
67      * Parse all command line arguments.  This is rather annoying to do
68      * because of all tiny corner cases.
69      */
70     if (argc <= 1 || (argv[1][0] != '-'))
71         return usage(app);
72
73     while ((argc > 1) && argv[1][0] == '-') {
74         switch (argv[1][1]) {
75             case 'v': {
76                 printf("GMQCC:\n"
77                        "    version:    %d.%d.%d (0x%08X)\n"
78                        "    build date: %s\n"
79                        "    build time: %s\n",
80                     (GMQCC_VERSION >> 16) & 0xFF,
81                     (GMQCC_VERSION >>  8) & 0xFF,
82                     (GMQCC_VERSION >>  0) & 0xFF,
83                     (GMQCC_VERSION),
84                     __DATE__,
85                     __TIME__
86                 );
87                 return 0;
88             }
89             case 'c': items_add((argitem){util_strdup(&argv[1][2]), 0}); break; /* compile  */ 
90             case 'a': items_add((argitem){util_strdup(&argv[1][2]), 1}); break; /* assemble */
91             case 'i': items_add((argitem){util_strdup(&argv[1][2]), 2}); break; /* includes */
92             default:
93                 if (!strncmp(&argv[1][1], "debug" , 5)) { opts_debug  = true; break; }
94                 if (!strncmp(&argv[1][1], "memchk", 6)) { opts_memchk = true; break; }
95                 if (!strncmp(&argv[1][1], "help",   4)) {
96                     return usage(app);
97                     break;
98                 }
99                 /* compiler type selection */
100                 if (!strncmp(&argv[1][1], "std=qcc"   , 7 )) { opts_compiler = COMPILER_QCC;    break; }
101                 if (!strncmp(&argv[1][1], "std=fteqcc", 10)) { opts_compiler = COMPILER_FTEQCC; break; }
102                 if (!strncmp(&argv[1][1], "std=qccx",   8 )) { opts_compiler = COMPILER_QCCX;   break; }
103                 if (!strncmp(&argv[1][1], "std=gmqcc",  9 )) { opts_compiler = COMPILER_GMQCC;  break; }
104                 if (!strncmp(&argv[1][1], "std=",       4 )) {
105                     printf("invalid std selection, supported types:\n"
106                            "    -std=qcc     -- original QuakeC\n"
107                            "    -std=ftqecc  -- fteqcc QuakeC\n"
108                            "    -std=qccx    -- qccx QuakeC\n"
109                            "    -std=gmqcc   -- this compiler QuakeC (default selection)\n");
110                     return 0;
111                 }
112
113                 /* code specific switches */
114                 if (!strcmp(&argv[1][1], "fdarkplaces-stringtablebug")) {
115                     opts_darkplaces_stringtablebug = true;
116                     break;
117                 }
118                 if (!strcmp(&argv[1][1], "fomit-nullcode")) {
119                     opts_omit_nullcode = true;
120                     break;
121                 }
122                 return usage(app);
123                 
124         }
125         ++argv;
126         --argc;
127     }
128
129     /*
130      * options could depend on another option, this is where option
131      * validity checking like that would take place.
132      */
133     if (opts_memchk && !opts_debug) 
134         printf("Warning: cannot enable -memchk, without -debug.\n");
135
136     util_debug("COM", "starting ...\n");
137     /* multi file multi path compilation system */
138     for (; itr < items_elements; itr++) {
139         switch (items_data[itr].type) {
140             case 0:
141                 lex_init (items_data[itr].name, &lex);
142                 lex_parse(lex);
143                 lex_close(lex);
144                 break;
145             case 1:
146                 asm_init (items_data[itr].name, &fpp);
147                 asm_parse(fpp);
148                 asm_close(fpp);
149                 break;
150         }
151     }
152
153     util_debug("COM", "cleaning ...\n"); 
154     /* clean list */
155     for (itr = 0; itr < items_elements; itr++)
156         mem_d(items_data[itr].name);
157     mem_d(items_data);
158     
159     util_meminfo();
160     return 0;
161 }