]> git.xonotic.org Git - xonotic/gmqcc.git/blob - gmqcc.h
Merging master
[xonotic/gmqcc.git] / gmqcc.h
1 /*
2  * Copyright (C) 2012
3  *     Dale Weiler, Wolfgang Bumiller
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 #ifndef GMQCC_HDR
24 #define GMQCC_HDR
25 #include <limits.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <stdio.h>
29 #include <ctype.h>
30
31 #define GMQCC_VERSION_MAJOR 0
32 #define GMQCC_VERSION_MINOR 1
33 #define GMQCC_VERSION_PATCH 0
34 #define GMQCC_VERSION_BUILD(J,N,P) (((J)<<16)|((N)<<8)|(P))
35 #define GMQCC_VERSION \
36     GMQCC_VERSION_BUILD(GMQCC_VERSION_MAJOR, GMQCC_VERSION_MINOR, GMQCC_VERSION_PATCH)
37
38 /*
39  * We cannoy rely on C99 at all, since compilers like MSVC
40  * simply don't support it.  We define our own boolean type
41  * as a result (since we cannot include <stdbool.h>). For
42  * compilers that are in 1999 mode (C99 compliant) we can use
43  * the language keyword _Bool which can allow for better code
44  * on GCC and GCC-like compilers, opposed to `int`.
45  */
46 #ifndef __cplusplus
47 #   ifdef  false
48 #       undef  false
49 #   endif /* !false */
50 #   ifdef  true
51 #       undef true
52 #   endif /* !true  */
53 #   define false (0)
54 #   define true  (1)
55 #   ifdef __STDC_VERSION__
56 #       if __STDC_VERSION__ < 199901L && __GNUC__ < 3
57             typedef int  bool;
58 #       else
59             typedef _Bool bool;
60 #       endif
61 #   else
62         typedef int bool;
63 #   endif /* !__STDC_VERSION__ */
64 #endif    /* !__cplusplus      */
65
66 /*
67  * Of some functions which are generated we want to make sure
68  * that the result isn't ignored. To find such function calls,
69  * we use this macro.
70  */
71 #if defined(__GNUC__) || defined(__CLANG__)
72 #   define GMQCC_WARN __attribute__((warn_unused_result))
73 #else
74 #   define GMQCC_WARN
75 #endif
76 /*
77  * This is a hack to silent clang regarding empty
78  * body if statements.
79  */
80 #define GMQCC_SUPPRESS_EMPTY_BODY do { } while (0)
81
82 /*
83  * Inline is not supported in < C90, however some compilers
84  * like gcc and clang might have an inline attribute we can
85  * use if present.
86  */
87 #ifdef __STDC_VERSION__
88 #    if __STDC_VERSION__ < 199901L
89 #       if defined(__GNUC__) || defined (__CLANG__)
90 #           if __GNUC__ < 2
91 #               define GMQCC_INLINE
92 #           else
93 #               define GMQCC_INLINE __attribute__ ((always_inline))
94 #           endif
95 #       else
96 #           define GMQCC_INLINE
97 #       endif
98 #    else
99 #       define GMQCC_INLINE inline
100 #    endif
101 #else
102 #    define GMQCC_INLINE
103 #endif /* !__STDC_VERSION__ */
104
105 /*
106  * noreturn is present in GCC and clang
107  * it's required for _ast_node_destory otherwise -Wmissing-noreturn
108  * in clang complains about there being no return since abort() is
109  * called.
110  */
111 #if (defined(__GNUC__) && __GNUC__ >= 2) || defined(__CLANG__)
112 #    define GMQCC_NORETURN __attribute__ ((noreturn))
113 #else
114 #    define GMQCC_NORETURN
115 #endif
116
117 /*
118  * stdint.h and inttypes.h -less subset
119  * for systems that don't have it, which we must
120  * assume is all systems. (int8_t not required)
121  */
122 #if   CHAR_MIN  == -128
123     typedef unsigned char  uint8_t; /* same as below */
124 #elif SCHAR_MIN == -128
125     typedef unsigned char  uint8_t; /* same as above */
126 #endif
127 #if   SHRT_MAX  == 0x7FFF
128     typedef short          int16_t;
129     typedef unsigned short uint16_t;
130 #elif INT_MAX   == 0x7FFF
131     typedef int            int16_t;
132     typedef unsigned int   uint16_t;
133 #endif
134 #if   INT_MAX   == 0x7FFFFFFF
135     typedef int            int32_t;
136     typedef unsigned int   uint32_t;
137     typedef long           int64_t;
138     typedef unsigned long  uint64_t;
139 #elif LONG_MAX  == 0x7FFFFFFF
140     typedef long           int32_t;
141     typedef unsigned long  uint32_t;
142
143     /*
144      * It's nearly impossible to figure out a 64bit type at
145      * this point without making assumptions about the build
146      * enviroment.  So if clang or gcc is detected use some
147      * compiler builtins to create a 64 signed and unsigned
148      * type.
149      */
150 #   if defined(__GNUC__) || defined (__CLANG__)
151         typedef int          int64_t  __attribute__((__mode__(__DI__)));
152         typedef unsigned int uint64_t __attribute__((__mode__(__DI__)));
153 #   else
154         /*
155          * Incoorectly size the types so static assertions below will
156          * fail.  There is no valid way to get a 64bit type at this point
157          * without making assumptions of too many things.
158          */
159         typedef struct { char _fail : 0; } int64_t;
160         typedef struct { char _fail : 0; } uint64_t;
161 #   endif
162 #endif
163 #ifdef _LP64 /* long pointer == 64 */
164     typedef unsigned long  uintptr_t;
165     typedef long           intptr_t;
166 #else
167     typedef unsigned int   uintptr_t;
168     typedef int            intptr_t;
169 #endif
170 /* Ensure type sizes are correct: */
171 typedef char uint8_size_is_correct  [sizeof(uint8_t)  == 1?1:-1];
172 typedef char uint16_size_is_correct [sizeof(uint16_t) == 2?1:-1];
173 typedef char uint32_size_is_correct [sizeof(uint32_t) == 4?1:-1];
174 typedef char uint64_size_is_correct [sizeof(uint64_t) == 8?1:-1];
175 typedef char int16_size_if_correct  [sizeof(int16_t)  == 2?1:-1];
176 typedef char int32_size_is_correct  [sizeof(int32_t)  == 4?1:-1];
177 typedef char int64_size_is_correct  [sizeof(int64_t)  == 8?1:-1];
178 /* intptr_t / uintptr_t correct size check */
179 typedef char uintptr_size_is_correct[sizeof(intptr_t) == sizeof(int*)?1:-1];
180 typedef char intptr_size_is_correct [sizeof(uintptr_t)== sizeof(int*)?1:-1];
181
182 /*===================================================================*/
183 /*============================ lex.c ================================*/
184 /*===================================================================*/
185 typedef struct lex_file_t {
186     FILE *file;        /* file handler */
187     char *name;        /* name of file */
188     char  peek  [5];
189     char  lastok[8192];
190
191     int   last;    /* last token                   */
192     int   current; /* current token                */
193     int   length;  /* bytes left to parse          */
194     int   size;    /* never changes (size of file) */
195     int   line;    /* what line are we on?         */
196 } lex_file;
197
198 /*
199  * It's important that this table never exceed 32 keywords, the ascii
200  * table starts at 33 (and we don't want conflicts)
201  */
202 enum {
203     TOKEN_DO       ,
204     TOKEN_ELSE     ,
205     TOKEN_IF       ,
206     TOKEN_WHILE    ,
207     TOKEN_BREAK    ,
208     TOKEN_CONTINUE ,
209     TOKEN_RETURN   ,
210     TOKEN_GOTO     ,
211     TOKEN_FOR      ,   /* extension */
212     TOKEN_TYPEDEF  ,   /* extension */
213
214     /* ensure the token types are out of the  */
215     /* bounds of anyothers that may conflict. */
216     TOKEN_FLOAT    = 110,
217     TOKEN_VECTOR        ,
218     TOKEN_STRING        ,
219     TOKEN_ENTITY        ,
220     TOKEN_VOID
221 };
222
223 /*
224  * Lexer state constants, these are numbers for where exactly in
225  * the lexing the lexer is at. Or where it decided to stop if a lexer
226  * error occurs.  These numbers must be > where the ascii-table ends
227  * and > the last type token which is TOKEN_VOID
228  */
229 enum {
230     LEX_COMMENT = 1128,
231     LEX_CHRLIT        ,
232     LEX_STRLIT        ,
233     LEX_IDENT
234 };
235
236 int       lex_token  (lex_file *);
237 void      lex_reset  (lex_file *);
238 void      lex_close  (lex_file *);
239 void      lex_parse  (lex_file *);
240 lex_file *lex_include(lex_file *, const char *);
241 void      lex_init   (const char *, lex_file **);
242
243 /*===================================================================*/
244 /*========================== error.c ================================*/
245 /*===================================================================*/
246 #define ERROR_LEX      (SHRT_MAX+0)
247 #define ERROR_PARSE    (SHRT_MAX+1)
248 #define ERROR_INTERNAL (SHRT_MAX+2)
249 #define ERROR_COMPILER (SHRT_MAX+3)
250 #define ERROR_PREPRO   (SHRT_MAX+4)
251 int error(lex_file *, int, const char *, ...);
252
253 /*===================================================================*/
254 /*========================== parse.c ================================*/
255 /*===================================================================*/
256 int parse_gen(lex_file *);
257
258 /*===================================================================*/
259 /*========================== typedef.c ==============================*/
260 /*===================================================================*/
261 typedef struct typedef_node_t {
262     char      *name;
263 } typedef_node;
264
265 void          typedef_init();
266 void          typedef_clear();
267 typedef_node *typedef_find(const char *);
268 int           typedef_add (lex_file *file, const char *, const char *);
269
270
271 /*===================================================================*/
272 /*=========================== util.c ================================*/
273 /*===================================================================*/
274 void *util_memory_a      (unsigned int, unsigned int, const char *);
275 void  util_memory_d      (void       *, unsigned int, const char *);
276 void  util_meminfo       ();
277
278 bool  util_strupper      (const char *);
279 bool  util_strdigit      (const char *);
280 bool  util_strncmpexact  (const char *, const char *, size_t);
281 char *util_strdup        (const char *);
282 char *util_strrq         (const char *);
283 char *util_strrnl        (const char *);
284 char *util_strsws        (const char *);
285 char *util_strchp        (const char *, const char *);
286 void  util_debug         (const char *, const char *, ...);
287 int   util_getline       (char **, size_t *, FILE *);
288 void  util_endianswap    (void *,  int, int);
289
290 uint32_t util_crc32(const char *, int, register const short);
291
292 #ifdef NOTRACK
293 #    define mem_a(x) malloc(x)
294 #    define mem_d(x) free  (x)
295 #else
296 #    define mem_a(x) util_memory_a((x), __LINE__, __FILE__)
297 #    define mem_d(x) util_memory_d((x), __LINE__, __FILE__)
298 #endif
299
300 /*
301  * TODO: make these safer to use.  Currently this only works on
302  * x86 and x86_64, some systems will likely not like this. Such
303  * as BE systems.
304  */
305 #define FLT2INT(Y) *((int32_t*)&(Y))
306 #define INT2FLT(Y) *((float  *)&(Y))
307
308 /* Builds vector type (usefull for inside structures) */
309 #define VECTOR_SNAP(X,Y) X ## Y
310 #define VECTOR_FILL(X,Y) VECTOR_SNAP(X,Y)
311 #define VECTOR_TYPE(T,N)                                        \
312     T*     N##_data      = NULL;                                \
313     long   N##_elements  = 0;                                   \
314     long   N##_allocated = 0
315 /* Builds vector add */
316 #define VECTOR_CORE(T,N)                                        \
317     int    N##_add(T element) {                                 \
318         void *temp = NULL;                                      \
319         if (N##_elements == N##_allocated) {                    \
320             if (N##_allocated == 0) {                           \
321                 N##_allocated = 12;                             \
322             } else {                                            \
323                 N##_allocated *= 2;                             \
324             }                                                   \
325             if  (!(temp = mem_a(N##_allocated * sizeof(T)))) {  \
326                 mem_d(temp);                                    \
327                 return -1;                                      \
328             }                                                   \
329             memcpy(temp, N##_data, (N##_elements * sizeof(T))); \
330             mem_d(N##_data);                                    \
331             N##_data = (T*)temp;                                \
332         }                                                       \
333         N##_data[N##_elements] = element;                       \
334         return   N##_elements++;                                \
335     }                                                           \
336     int N##_put(T* elements, size_t len) {                      \
337         len     --;                                             \
338         elements--;                                             \
339         while (N##_add(*++elements) != -1 && len--);            \
340         return N##_elements;                                    \
341     }                                                           \
342     typedef char VECTOR_FILL(extra_semicolon_,__COUNTER__)
343 #define VECTOR_PROT(T,N)                                        \
344     extern T*     N##_data     ;                                \
345     extern long   N##_elements ;                                \
346     extern long   N##_allocated;                                \
347     int           N##_add(T);                                   \
348     int           N##_put(T *, size_t)
349 #define VECTOR_MAKE(T,N) \
350     VECTOR_TYPE(T,N);    \
351     VECTOR_CORE(T,N)
352
353 /*===================================================================*/
354 /*=========================== code.c ================================*/
355 /*===================================================================*/
356
357 /* Note: if you change the order, fix type_sizeof in ir.c */
358 enum {
359     TYPE_VOID     ,
360     TYPE_STRING   ,
361     TYPE_FLOAT    ,
362     TYPE_VECTOR   ,
363     TYPE_ENTITY   ,
364     TYPE_FIELD    ,
365     TYPE_FUNCTION ,
366     TYPE_POINTER  ,
367     /* TYPE_INTEGER  , */
368     TYPE_QUATERNION  ,
369     TYPE_MATRIX  ,
370     TYPE_VARIANT  ,
371
372     TYPE_COUNT
373 };
374
375 extern size_t type_sizeof[TYPE_COUNT];
376 extern uint16_t type_store_instr[TYPE_COUNT];
377 /* could use type_store_instr + INSTR_STOREP_F - INSTR_STORE_F
378  * but this breaks when TYPE_INTEGER is added, since with the enhanced
379  * instruction set, the old ones are left untouched, thus the _I instructions
380  * are at a seperate place.
381  */
382 extern uint16_t type_storep_instr[TYPE_COUNT];
383
384 /*
385  * Each paramater incerements by 3 since vector types hold
386  * 3 components (x,y,z).
387  */
388 #define OFS_NULL      0
389 #define OFS_RETURN    1
390 #define OFS_PARM0     (OFS_RETURN+3)
391 #define OFS_PARM1     (OFS_PARM0 +3)
392 #define OFS_PARM2     (OFS_PARM1 +3)
393 #define OFS_PARM3     (OFS_PARM2 +3)
394 #define OFS_PARM4     (OFS_PARM3 +3)
395 #define OFS_PARM5     (OFS_PARM4 +3)
396 #define OFS_PARM6     (OFS_PARM5 +3)
397 #define OFS_PARM7     (OFS_PARM6 +3)
398
399 typedef struct {
400     uint16_t opcode;
401
402     /* operand 1 */
403     union {
404         int16_t  s1; /* signed   */
405         uint16_t u1; /* unsigned */
406     } o1;
407     /* operand 2 */
408     union {
409         int16_t  s1; /* signed   */
410         uint16_t u1; /* unsigned */
411     } o2;
412     /* operand 3 */
413     union {
414         int16_t  s1; /* signed   */
415         uint16_t u1; /* unsigned */
416     } o3;
417
418     /*
419      * This is the same as the structure in darkplaces
420      * {
421      *     unsigned short op;
422      *     short          a,b,c;
423      * }
424      * But this one is more sane to work with, and the
425      * type sizes are guranteed.
426      */
427 } prog_section_statement;
428
429 typedef struct {
430     /* The types:
431      * 0 = ev_void
432      * 1 = ev_string
433      * 2 = ev_float
434      * 3 = ev_vector
435      * 4 = ev_entity
436      * 5 = ev_field
437      * 6 = ev_function
438      * 7 = ev_pointer -- engine only
439      * 8 = ev_bad     -- engine only
440      */
441     uint16_t type;
442     uint16_t offset;
443     uint32_t name;
444 } prog_section_both;
445 typedef prog_section_both prog_section_def;
446 typedef prog_section_both prog_section_field;
447
448 typedef struct {
449     int32_t   entry;      /* in statement table for instructions  */
450     uint32_t  firstlocal; /* First local in local table           */
451     uint32_t  locals;     /* Total ints of params + locals        */
452     uint32_t  profile;    /* Always zero (engine uses this)       */
453     uint32_t  name;       /* name of function in string table     */
454     uint32_t  file;       /* file of the source file              */
455     uint32_t  nargs;      /* number of arguments                  */
456     uint8_t   argsize[8]; /* size of arguments (keep 8 always?)   */
457 } prog_section_function;
458
459 /*
460  * Instructions
461  * These are the external instructions supported by the interperter
462  * this is what things compile to (from the C code).
463  */
464 enum {
465     INSTR_DONE,
466     INSTR_MUL_F,
467     INSTR_MUL_V,
468     INSTR_MUL_VF,
469     INSTR_MUL_Q,
470     INSTR_MUL_QF,
471     INSTR_MUL_M,
472     INSTR_MUL_MF,
473     INSTR_DIV_F,
474     INSTR_ADD_F,
475     INSTR_ADD_V,
476     INSTR_SUB_F,
477     INSTR_SUB_V,
478     INSTR_EQ_F,
479     INSTR_EQ_V,
480     INSTR_EQ_S,
481     INSTR_EQ_E,
482     INSTR_EQ_FNC,
483     INSTR_EQ_Q,
484     INSTR_EQ_M,
485     INSTR_NE_F,
486     INSTR_NE_V,
487     INSTR_NE_S,
488     INSTR_NE_E,
489     INSTR_NE_FNC,
490     INSTR_NE_Q,
491     INSTR_NE_M,
492     INSTR_LE,
493     INSTR_GE,
494     INSTR_LT,
495     INSTR_GT,
496     INSTR_LOAD_F,
497     INSTR_LOAD_V,
498     INSTR_LOAD_S,
499     INSTR_LOAD_ENT,
500     INSTR_LOAD_FLD,
501     INSTR_LOAD_FNC,
502     INSTR_LOAD_Q,
503     INSTR_LOAD_M,
504     INSTR_ADDRESS,
505     INSTR_STORE_F,
506     INSTR_STORE_V,
507     INSTR_STORE_S,
508     INSTR_STORE_ENT,
509     INSTR_STORE_FLD,
510     INSTR_STORE_FNC,
511     INSTR_STORE_Q,
512     INSTR_STORE_M,
513     INSTR_STOREP_F,
514     INSTR_STOREP_V,
515     INSTR_STOREP_S,
516     INSTR_STOREP_ENT,
517     INSTR_STOREP_FLD,
518     INSTR_STOREP_FNC,
519     INSTR_STOREP_Q,
520     INSTR_STOREP_M,
521     INSTR_RETURN,
522     INSTR_NOT_F,
523     INSTR_NOT_V,
524     INSTR_NOT_S,
525     INSTR_NOT_ENT,
526     INSTR_NOT_FNC,
527     INSTR_INV_Q,
528     INSTR_INV_M,
529     INSTR_IF,
530     INSTR_IFNOT,
531     INSTR_CALL0,
532     INSTR_CALL1,
533     INSTR_CALL2,
534     INSTR_CALL3,
535     INSTR_CALL4,
536     INSTR_CALL5,
537     INSTR_CALL6,
538     INSTR_CALL7,
539     INSTR_CALL8,
540     INSTR_STATE,
541     INSTR_GOTO,
542     INSTR_AND,
543     INSTR_OR,
544     INSTR_BITAND,
545     INSTR_BITOR,
546
547     /*
548      * Virtual instructions used by the assembler
549      * keep at the end but before virtual instructions
550      * for the IR below.
551      */
552     AINSTR_END,
553
554     /*
555      * Virtual instructions used by the IR
556      * Keep at the end!
557      */
558     VINSTR_PHI,
559     VINSTR_JUMP,
560     VINSTR_COND
561 };
562
563 /*
564  * The symbols below are created by the following
565  * expanded macros:
566  *
567  * VECTOR_MAKE(prog_section_statement, code_statements);
568  * VECTOR_MAKE(prog_section_def,       code_defs      );
569  * VECTOR_MAKE(prog_section_field,     code_fields    );
570  * VECTOR_MAKE(prog_section_function,  code_functions );
571  * VECTOR_MAKE(int,                    code_globals   );
572  * VECTOR_MAKE(char,                   code_chars     );
573  */
574 VECTOR_PROT(prog_section_statement, code_statements);
575 VECTOR_PROT(prog_section_statement, code_statements);
576 VECTOR_PROT(prog_section_def,       code_defs      );
577 VECTOR_PROT(prog_section_field,     code_fields    );
578 VECTOR_PROT(prog_section_function,  code_functions );
579 VECTOR_PROT(int,                    code_globals   );
580 VECTOR_PROT(char,                   code_chars     );
581
582 /*
583  * code_write -- writes out the compiled file
584  * code_init  -- prepares the code file
585  */
586 bool     code_write       (const char *filename);
587 void     code_init        ();
588 uint32_t code_genstring   (const char *string);
589 uint32_t code_cachedstring(const char *string);
590
591 /*===================================================================*/
592 /*========================= assembler.c =============================*/
593 /*===================================================================*/
594 static const struct {
595     const char  *m; /* menomic     */
596     const size_t o; /* operands    */
597     const size_t l; /* menomic len */
598 } asm_instr[] = {
599     { "DONE"      , 1, 4 },
600     { "MUL_F"     , 3, 5 },
601     { "MUL_V"     , 3, 5 },
602     { "MUL_VF"    , 3, 6 },
603     { "MUL_Q"     , 3, 5 },
604     { "MUL_QF"    , 3, 6 },
605     { "MUL_M"     , 3, 5 },
606     { "MUL_MF"    , 3, 6 },
607     { "DIV"       , 0, 3 },
608     { "ADD_F"     , 3, 5 },
609     { "ADD_V"     , 3, 5 },
610     { "SUB_F"     , 3, 5 },
611     { "DUB_V"     , 3, 5 },
612     { "EQ_F"      , 0, 4 },
613     { "EQ_V"      , 0, 4 },
614     { "EQ_S"      , 0, 4 },
615     { "EQ_E"      , 0, 4 },
616     { "EQ_FNC"    , 0, 6 },
617     { "EQ_Q"      , 0, 4 },
618     { "EQ_M"      , 0, 4 },
619     { "NE_F"      , 0, 4 },
620     { "NE_V"      , 0, 4 },
621     { "NE_S"      , 0, 4 },
622     { "NE_E"      , 0, 4 },
623     { "NE_FNC"    , 0, 6 },
624     { "NE_Q"      , 0, 4 },
625     { "NE_M"      , 0, 4 },
626     { "LE"        , 0, 2 },
627     { "GE"        , 0, 2 },
628     { "LT"        , 0, 2 },
629     { "GT"        , 0, 2 },
630     { "FIELD_F"   , 0, 7 },
631     { "FIELD_V"   , 0, 7 },
632     { "FIELD_S"   , 0, 7 },
633     { "FIELD_ENT" , 0, 9 },
634     { "FIELD_FLD" , 0, 9 },
635     { "FIELD_FNC" , 0, 9 },
636     { "FIELD_Q"   , 0, 7 },
637     { "FIELD_M"   , 0, 7 },
638     { "ADDRESS"   , 0, 7 },
639     { "STORE_F"   , 0, 7 },
640     { "STORE_V"   , 0, 7 },
641     { "STORE_S"   , 0, 7 },
642     { "STORE_ENT" , 0, 9 },
643     { "STORE_FLD" , 0, 9 },
644     { "STORE_FNC" , 0, 9 },
645     { "STORE_Q"   , 0, 7 },
646     { "STORE_M"   , 0, 7 },
647     { "STOREP_F"  , 0, 8 },
648     { "STOREP_V"  , 0, 8 },
649     { "STOREP_S"  , 0, 8 },
650     { "STOREP_ENT", 0, 10},
651     { "STOREP_FLD", 0, 10},
652     { "STOREP_FNC", 0, 10},
653     { "STOREP_Q"  , 0, 8 },
654     { "STOREP_M"  , 0, 8 },
655     { "RETURN"    , 0, 6 },
656     { "NOT_F"     , 0, 5 },
657     { "NOT_V"     , 0, 5 },
658     { "NOT_S"     , 0, 5 },
659     { "NOT_ENT"   , 0, 7 },
660     { "NOT_FNC"   , 0, 7 },
661     { "INV_Q"     , 0, 5 },
662     { "INV_M"     , 0, 5 },
663     { "IF"        , 0, 2 },
664     { "IFNOT"     , 0, 5 },
665     { "CALL0"     , 1, 5 },
666     { "CALL1"     , 2, 5 },
667     { "CALL2"     , 3, 5 },
668     { "CALL3"     , 4, 5 },
669     { "CALL4"     , 5, 5 },
670     { "CALL5"     , 6, 5 },
671     { "CALL6"     , 7, 5 },
672     { "CALL7"     , 8, 5 },
673     { "CALL8"     , 9, 5 },
674     { "STATE"     , 0, 5 },
675     { "GOTO"      , 0, 4 },
676     { "AND"       , 0, 3 },
677     { "OR"        , 0, 2 },
678     { "BITAND"    , 0, 6 },
679     { "BITOR"     , 0, 5 },
680     { "END"       , 0, 3 } /* virtual assembler instruction */
681 };
682
683 void asm_init (const char *, FILE **);
684 void asm_close(FILE *);
685 void asm_parse(FILE *);
686 /*===================================================================*/
687 /*============================= main.c ==============================*/
688 /*===================================================================*/
689 enum {
690     COMPILER_QCC,     /* circa  QuakeC */
691     COMPILER_FTEQCC,  /* fteqcc QuakeC */
692     COMPILER_QCCX,    /* qccx   QuakeC */
693     COMPILER_GMQCC    /* this   QuakeC */
694 };
695 extern bool opts_debug;
696 extern bool opts_memchk;
697 extern bool opts_darkplaces_stringtablebug;
698 extern bool opts_omit_nullcode;
699 extern int  opts_compiler;
700 /*===================================================================*/
701 /*============================= ast.c ===============================*/
702 /*===================================================================*/
703 #define MEM_VECTOR_PROTO(Towner, Tmem, mem)                   \
704     bool GMQCC_WARN Towner##_##mem##_add(Towner*, Tmem);      \
705     bool GMQCC_WARN Towner##_##mem##_remove(Towner*, size_t)
706
707 #define MEM_VECTOR_PROTO_ALL(Towner, Tmem, mem)                    \
708     MEM_VECTOR_PROTO(Towner, Tmem, mem);                           \
709     bool GMQCC_WARN Towner##_##mem##_find(Towner*, Tmem, size_t*); \
710     void Towner##_##mem##_clear(Towner*)
711
712 #define MEM_VECTOR_MAKE(Twhat, name) \
713     Twhat  *name;                    \
714     size_t name##_count;             \
715     size_t name##_alloc
716
717 #define _MEM_VEC_FUN_ADD(Tself, Twhat, mem)                          \
718 bool GMQCC_WARN Tself##_##mem##_add(Tself *self, Twhat f)            \
719 {                                                                    \
720     Twhat *reall;                                                    \
721     if (self->mem##_count == self->mem##_alloc) {                    \
722         if (!self->mem##_alloc) {                                    \
723             self->mem##_alloc = 16;                                  \
724         } else {                                                     \
725             self->mem##_alloc *= 2;                                  \
726         }                                                            \
727         reall = (Twhat*)mem_a(sizeof(Twhat) * self->mem##_alloc);    \
728         if (!reall) {                                                \
729             return false;                                            \
730         }                                                            \
731         memcpy(reall, self->mem, sizeof(Twhat) * self->mem##_count); \
732         mem_d(self->mem);                                            \
733         self->mem = reall;                                           \
734     }                                                                \
735     self->mem[self->mem##_count++] = f;                              \
736     return true;                                                     \
737 }
738
739 #define _MEM_VEC_FUN_REMOVE(Tself, Twhat, mem)                       \
740 bool GMQCC_WARN Tself##_##mem##_remove(Tself *self, size_t idx)      \
741 {                                                                    \
742     size_t i;                                                        \
743     Twhat *reall;                                                    \
744     if (idx >= self->mem##_count) {                                  \
745         return true; /* huh... */                                    \
746     }                                                                \
747     for (i = idx; i < self->mem##_count-1; ++i) {                    \
748         self->mem[i] = self->mem[i+1];                               \
749     }                                                                \
750     self->mem##_count--;                                             \
751     if (self->mem##_count < self->mem##_count/2) {                   \
752         self->mem##_alloc /= 2;                                      \
753         reall = (Twhat*)mem_a(sizeof(Twhat) * self->mem##_count);    \
754         if (!reall) {                                                \
755             return false;                                            \
756         }                                                            \
757         memcpy(reall, self->mem, sizeof(Twhat) * self->mem##_count); \
758         mem_d(self->mem);                                            \
759         self->mem = reall;                                           \
760     }                                                                \
761     return true;                                                     \
762 }
763
764 #define _MEM_VEC_FUN_FIND(Tself, Twhat, mem)                    \
765 bool GMQCC_WARN Tself##_##mem##_find(Tself *self, Twhat obj, size_t *idx) \
766 {                                                               \
767     size_t i;                                                   \
768     for (i = 0; i < self->mem##_count; ++i) {                   \
769         if (self->mem[i] == obj) {                              \
770             if (idx) {                                          \
771                 *idx = i;                                       \
772             }                                                   \
773             return true;                                        \
774         }                                                       \
775     }                                                           \
776     return false;                                               \
777 }
778
779 #define _MEM_VEC_FUN_CLEAR(Tself, mem)  \
780 void Tself##_##mem##_clear(Tself *self) \
781 {                                       \
782     if (!self->mem)                     \
783         return;                         \
784     mem_d((void*) self->mem);           \
785     self->mem = NULL;                   \
786     self->mem##_count = 0;              \
787     self->mem##_alloc = 0;              \
788 }
789
790 #define MEM_VECTOR_CLEAR(owner, mem)  \
791     if ((owner)->mem)                 \
792         mem_d((void*)((owner)->mem)); \
793     (owner)->mem = NULL;              \
794     (owner)->mem##_count = 0;         \
795     (owner)->mem##_alloc = 0
796
797 #define MEM_VECTOR_INIT(owner, mem) \
798 {                                   \
799     (owner)->mem = NULL;            \
800     (owner)->mem##_count = 0;       \
801     (owner)->mem##_alloc = 0;       \
802 }
803
804 #define MEM_VEC_FUNCTIONS(Tself, Twhat, mem) \
805 _MEM_VEC_FUN_REMOVE(Tself, Twhat, mem)       \
806 _MEM_VEC_FUN_ADD(Tself, Twhat, mem)
807
808 #define MEM_VEC_FUNCTIONS_ALL(Tself, Twhat, mem) \
809 MEM_VEC_FUNCTIONS(Tself, Twhat, mem)             \
810 _MEM_VEC_FUN_CLEAR(Tself, mem)                   \
811 _MEM_VEC_FUN_FIND(Tself, Twhat, mem)
812
813 enum store_types {
814     store_global,
815     store_local,  /* local, assignable for now, should get promoted later */
816     store_value,  /* unassignable */
817     store_return  /* unassignable, at OFS_RETURN */
818 };
819
820 typedef struct {
821     float x, y, z;
822 } vector;
823
824 typedef float matrix[4][4]; /* OpenGL layout */
825 typedef float quaternion[4]; /* order: x, y, z, w */
826 #define MATRIX(axis, elem) ((4*(axis)) + (elem))
827 #define QUAT_X 0
828 #define QUAT_Y 1
829 #define QUAT_Z 2
830 #define QUAT_W 3
831
832 /*
833  * A shallow copy of a lex_file to remember where which ast node
834  * came from.
835  */
836 typedef struct {
837     const char *file;
838     size_t      line;
839 } lex_ctx;
840 #endif