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