]> git.xonotic.org Git - xonotic/gmqcc.git/blob - gmqcc.h
64bit signed/unsigned integer support from the compiler if LONG_MAX != 0x7FFFFFFF
[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 /* Builds vector type (usefull for inside structures) */
279 #define VECTOR_SNAP(X,Y) X ## Y
280 #define VECTOR_FILL(X,Y) VECTOR_SNAP(X,Y)
281 #define VECTOR_TYPE(T,N)                                        \
282     T*     N##_data      = NULL;                                \
283     long   N##_elements  = 0;                                   \
284     long   N##_allocated = 0
285 /* Builds vector add */
286 #define VECTOR_CORE(T,N)                                        \
287     int    N##_add(T element) {                                 \
288         void *temp = NULL;                                      \
289         if (N##_elements == N##_allocated) {                    \
290             if (N##_allocated == 0) {                           \
291                 N##_allocated = 12;                             \
292             } else {                                            \
293                 N##_allocated *= 2;                             \
294             }                                                   \
295             if  (!(temp = mem_a(N##_allocated * sizeof(T)))) {  \
296                 mem_d(temp);                                    \
297                 return -1;                                      \
298             }                                                   \
299             memcpy(temp, N##_data, (N##_elements * sizeof(T))); \
300             mem_d(N##_data);                                    \
301             N##_data = (T*)temp;                                \
302         }                                                       \
303         N##_data[N##_elements] = element;                       \
304         return   N##_elements++;                                \
305     }                                                           \
306     int N##_put(T* elements, size_t len) {                      \
307         len     --;                                             \
308         elements--;                                             \
309         while (N##_add(*++elements) != -1 && len--);            \
310         return N##_elements;                                    \
311     }                                                           \
312     typedef char VECTOR_FILL(extra_semicolon_,__COUNTER__)
313 /* Builds a full vector inspot */
314 #define VECTOR_MAKE(T,N) \
315     VECTOR_TYPE(T,N);    \
316     VECTOR_CORE(T,N)
317
318 /*===================================================================*/
319 /*=========================== code.c ================================*/
320 /*===================================================================*/
321 enum {
322     TYPE_VOID     ,
323     TYPE_STRING   ,
324     TYPE_FLOAT    ,
325     TYPE_VECTOR   ,
326     TYPE_ENTITY   ,
327     TYPE_FIELD    ,
328     TYPE_FUNCTION ,
329     TYPE_POINTER  ,
330     /* TYPE_INTEGER  , */
331     TYPE_VARIANT
332 };
333
334 /*
335  * Each paramater incerements by 3 since vector types hold
336  * 3 components (x,y,z).
337  */
338 #define OFS_NULL      0
339 #define OFS_RETURN    1
340 #define OFS_PARM0     (OFS_RETURN+3)
341 #define OFS_PARM1     (OFS_PARM0 +3)
342 #define OFS_PARM2     (OFS_PARM1 +3)
343 #define OFS_PARM3     (OFS_PARM2 +3)
344 #define OFS_PARM4     (OFS_PARM3 +3)
345 #define OFS_PARM5     (OFS_PARM4 +3)
346 #define OFS_PARM6     (OFS_PARM5 +3)
347 #define OFS_PARM7     (OFS_PARM6 +3)
348
349 typedef struct {
350     uint16_t opcode;
351
352     /* operand 1 */
353     union {
354         int16_t  s1; /* signed   */
355         uint16_t u1; /* unsigned */
356     } o1;
357     /* operand 2 */
358     union {
359         int16_t  s2; /* signed   */
360         uint16_t u2; /* unsigned */
361     } o2;
362     /* operand 3 */
363     union {
364         int16_t  s3; /* signed   */
365         uint16_t u3; /* unsigned */
366     } o3;
367
368     /*
369      * This is the same as the structure in darkplaces
370      * {
371      *     unsigned short op;
372      *     short          a,b,c;
373      * }
374      * But this one is more sane to work with, and the
375      * type sizes are guranteed.
376      */
377 } prog_section_statement;
378
379 typedef struct {
380     /* The types:
381      * 0 = ev_void
382      * 1 = ev_string
383      * 2 = ev_float
384      * 3 = ev_vector
385      * 4 = ev_entity
386      * 5 = ev_field
387      * 6 = ev_function
388      * 7 = ev_pointer -- engine only
389      * 8 = ev_bad     -- engine only
390      */
391     uint16_t type;
392     uint16_t offset;
393     uint32_t name;
394 } prog_section_both;
395 typedef prog_section_both prog_section_def;
396 typedef prog_section_both prog_section_field;
397
398 typedef struct {
399     int32_t   entry;      /* in statement table for instructions  */
400     uint32_t  firstlocal; /* First local in local table           */
401     uint32_t  locals;     /* Total ints of params + locals        */
402     uint32_t  profile;    /* Always zero (engine uses this)       */
403     uint32_t  name;       /* name of function in string table     */
404     uint32_t  file;       /* file of the source file              */
405     uint32_t  nargs;      /* number of arguments                  */
406     uint8_t   argsize[8]; /* size of arguments (keep 8 always?)   */
407 } prog_section_function;
408
409 /*
410  * Instructions
411  * These are the external instructions supported by the interperter
412  * this is what things compile to (from the C code).
413  */
414 enum {
415     INSTR_DONE,
416     INSTR_MUL_F,
417     INSTR_MUL_V,
418     INSTR_MUL_FV,
419     INSTR_MUL_VF,
420     INSTR_DIV_F,
421     INSTR_ADD_F,
422     INSTR_ADD_V,
423     INSTR_SUB_F,
424     INSTR_SUB_V,
425     INSTR_EQ_F,
426     INSTR_EQ_V,
427     INSTR_EQ_S,
428     INSTR_EQ_E,
429     INSTR_EQ_FNC,
430     INSTR_NE_F,
431     INSTR_NE_V,
432     INSTR_NE_S,
433     INSTR_NE_E,
434     INSTR_NE_FNC,
435     INSTR_LE,
436     INSTR_GE,
437     INSTR_LT,
438     INSTR_GT,
439     INSTR_LOAD_F,
440     INSTR_LOAD_V,
441     INSTR_LOAD_S,
442     INSTR_LOAD_ENT,
443     INSTR_LOAD_FLD,
444     INSTR_LOAD_FNC,
445     INSTR_ADDRESS,
446     INSTR_STORE_F,
447     INSTR_STORE_V,
448     INSTR_STORE_S,
449     INSTR_STORE_ENT,
450     INSTR_STORE_FLD,
451     INSTR_STORE_FNC,
452     INSTR_STOREP_F,
453     INSTR_STOREP_V,
454     INSTR_STOREP_S,
455     INSTR_STOREP_ENT,
456     INSTR_STOREP_FLD,
457     INSTR_STOREP_FNC,
458     INSTR_RETURN,
459     INSTR_NOT_F,
460     INSTR_NOT_V,
461     INSTR_NOT_S,
462     INSTR_NOT_ENT,
463     INSTR_NOT_FNC,
464     INSTR_IF,
465     INSTR_IFNOT,
466     INSTR_CALL0,
467     INSTR_CALL1,
468     INSTR_CALL2,
469     INSTR_CALL3,
470     INSTR_CALL4,
471     INSTR_CALL5,
472     INSTR_CALL6,
473     INSTR_CALL7,
474     INSTR_CALL8,
475     INSTR_STATE,
476     INSTR_GOTO,
477     INSTR_AND,
478     INSTR_OR,
479     INSTR_BITAND,
480     INSTR_BITOR,
481
482     /* Virtual instructions used by the IR
483      * Keep at the end!
484      */
485     VINSTR_PHI,
486     VINSTR_JUMP,
487     VINSTR_COND
488 };
489
490 /*
491  * The symbols below are created by the following
492  * expanded macros:
493  *
494  * VECTOR_MAKE(prog_section_statement, code_statements);
495  * VECTOR_MAKE(prog_section_def,       code_defs      );
496  * VECTOR_MAKE(prog_section_field,     code_fields    );
497  * VECTOR_MAKE(prog_section_function,  code_functions );
498  * VECTOR_MAKE(int,                    code_globals   );
499  * VECTOR_MAKE(char,                   code_chars     );
500  */
501 int         code_statements_add(prog_section_statement);
502 int         code_defs_add      (prog_section_def);
503 int         code_fields_add    (prog_section_field);
504 int         code_functions_add (prog_section_function);
505 int         code_globals_add   (int);
506 int         code_chars_add     (char);
507 int         code_statements_put(prog_section_statement*, size_t);
508 int         code_defs_put      (prog_section_def*,       size_t);
509 int         code_fields_put    (prog_section_field*,     size_t);
510 int         code_functions_put (prog_section_function*,  size_t);
511 int         code_globals_put   (int*,                    size_t);
512 int         code_chars_put     (char*,                   size_t);
513 extern long code_statements_elements;
514 extern long code_chars_elements;
515 extern long code_globals_elements;
516 extern long code_functions_elements;
517 extern long code_fields_elements;
518 extern long code_defs_elements;
519
520 /*
521  * code_write -- writes out the compiled file
522  * code_init  -- prepares the code file
523  */
524 void code_write ();
525 void code_init  ();
526
527 /*===================================================================*/
528 /*========================= assembler.c =============================*/
529 /*===================================================================*/
530 static const struct {
531     const char  *m; /* menomic     */
532     const size_t o; /* operands    */
533     const size_t l; /* menomic len */
534 } asm_instr[] = {
535     { "DONE"      , 1, 4 },
536     { "MUL_F"     , 3, 5 },
537     { "MUL_V"     , 3, 5 },
538     { "MUL_FV"    , 3, 6 },
539     { "MUL_VF"    , 3, 6 },
540     { "DIV"       , 0, 3 },
541     { "ADD_F"     , 3, 5 },
542     { "ADD_V"     , 3, 5 },
543     { "SUB_F"     , 3, 5 },
544     { "DUB_V"     , 3, 5 },
545     { "EQ_F"      , 0, 4 },
546     { "EQ_V"      , 0, 4 },
547     { "EQ_S"      , 0, 4 },
548     { "EQ_E"      , 0, 4 },
549     { "ES_FNC"    , 0, 6 },
550     { "NE_F"      , 0, 4 },
551     { "NE_V"      , 0, 4 },
552     { "NE_S"      , 0, 4 },
553     { "NE_E"      , 0, 4 },
554     { "NE_FNC"    , 0, 6 },
555     { "LE"        , 0, 2 },
556     { "GE"        , 0, 2 },
557     { "LT"        , 0, 2 },
558     { "GT"        , 0, 2 },
559     { "FIELD_F"   , 0, 7 },
560     { "FIELD_V"   , 0, 7 },
561     { "FIELD_S"   , 0, 7 },
562     { "FIELD_ENT" , 0, 9 },
563     { "FIELD_FLD" , 0, 9 },
564     { "FIELD_FNC" , 0, 9 },
565     { "ADDRESS"   , 0, 7 },
566     { "STORE_F"   , 0, 7 },
567     { "STORE_V"   , 0, 7 },
568     { "STORE_S"   , 0, 7 },
569     { "STORE_ENT" , 0, 9 },
570     { "STORE_FLD" , 0, 9 },
571     { "STORE_FNC" , 0, 9 },
572     { "STOREP_F"  , 0, 8 },
573     { "STOREP_V"  , 0, 8 },
574     { "STOREP_S"  , 0, 8 },
575     { "STOREP_ENT", 0, 10},
576     { "STOREP_FLD", 0, 10},
577     { "STOREP_FNC", 0, 10},
578     { "RETURN"    , 0, 6 },
579     { "NOT_F"     , 0, 5 },
580     { "NOT_V"     , 0, 5 },
581     { "NOT_S"     , 0, 5 },
582     { "NOT_ENT"   , 0, 7 },
583     { "NOT_FNC"   , 0, 7 },
584     { "IF"        , 0, 2 },
585     { "IFNOT"     , 0, 5 },
586     { "CALL0"     , 0, 5 },
587     { "CALL1"     , 0, 5 },
588     { "CALL2"     , 0, 5 },
589     { "CALL3"     , 0, 5 },
590     { "CALL4"     , 0, 5 },
591     { "CALL5"     , 0, 5 },
592     { "CALL6"     , 0, 5 },
593     { "CALL7"     , 0, 5 },
594     { "CALL8"     , 0, 5 },
595     { "STATE"     , 0, 5 },
596     { "GOTO"      , 0, 4 },
597     { "AND"       , 0, 3 },
598     { "OR"        , 0, 2 },
599     { "BITAND"    , 0, 6 },
600     { "BITOR"     , 0, 5 }
601 };
602
603 void asm_init (const char *, FILE **);
604 void asm_close(FILE *);
605 void asm_parse(FILE *);
606 /*===================================================================*/
607 /*============================= main.c ==============================*/
608 /*===================================================================*/
609 enum {
610     COMPILER_QCC,     /* circa  QuakeC */
611     COMPILER_FTEQCC,  /* fteqcc QuakeC */
612     COMPILER_QCCX,    /* qccx   QuakeC */
613     COMPILER_GMQCC    /* this   QuakeC */
614 };
615 extern bool opts_debug;
616 extern bool opts_memchk;
617 extern bool opts_darkplaces_stringtablebug;
618 extern bool opts_omit_nullcode;
619 extern int  opts_compiler;
620 /*===================================================================*/
621 /*============================= ast.c ===============================*/
622 /*===================================================================*/
623 #define MEM_VECTOR_PROTO(Towner, Tmem, mem)                   \
624     bool GMQCC_WARN Towner##_##mem##_add(Towner*, Tmem);      \
625     bool GMQCC_WARN Towner##_##mem##_remove(Towner*, size_t)
626
627 #define MEM_VECTOR_PROTO_ALL(Towner, Tmem, mem)                    \
628     MEM_VECTOR_PROTO(Towner, Tmem, mem);                           \
629     bool GMQCC_WARN Towner##_##mem##_find(Towner*, Tmem, size_t*); \
630     void Towner##_##mem##_clear(Towner*)
631
632 #define MEM_VECTOR_MAKE(Twhat, name) \
633     Twhat  *name;                    \
634     size_t name##_count;             \
635     size_t name##_alloc
636
637 #define _MEM_VEC_FUN_ADD(Tself, Twhat, mem)                          \
638 bool GMQCC_WARN Tself##_##mem##_add(Tself *self, Twhat f)            \
639 {                                                                    \
640     Twhat *reall;                                                    \
641     if (self->mem##_count == self->mem##_alloc) {                    \
642         if (!self->mem##_alloc) {                                    \
643             self->mem##_alloc = 16;                                  \
644         } else {                                                     \
645             self->mem##_alloc *= 2;                                  \
646         }                                                            \
647         reall = (Twhat*)mem_a(sizeof(Twhat) * self->mem##_alloc);    \
648         if (!reall) {                                                \
649             return false;                                            \
650         }                                                            \
651         memcpy(reall, self->mem, sizeof(Twhat) * self->mem##_count); \
652         mem_d(self->mem);                                            \
653         self->mem = reall;                                           \
654     }                                                                \
655     self->mem[self->mem##_count++] = f;                              \
656     return true;                                                     \
657 }
658
659 #define _MEM_VEC_FUN_REMOVE(Tself, Twhat, mem)                       \
660 bool GMQCC_WARN Tself##_##mem##_remove(Tself *self, size_t idx)      \
661 {                                                                    \
662     size_t i;                                                        \
663     Twhat *reall;                                                    \
664     if (idx >= self->mem##_count) {                                  \
665         return true; /* huh... */                                    \
666     }                                                                \
667     for (i = idx; i < self->mem##_count-1; ++i) {                    \
668         self->mem[i] = self->mem[i+1];                               \
669     }                                                                \
670     self->mem##_count--;                                             \
671     if (self->mem##_count < self->mem##_count/2) {                   \
672         self->mem##_alloc /= 2;                                      \
673         reall = (Twhat*)mem_a(sizeof(Twhat) * self->mem##_count);    \
674         if (!reall) {                                                \
675             return false;                                            \
676         }                                                            \
677         memcpy(reall, self->mem, sizeof(Twhat) * self->mem##_count); \
678         mem_d(self->mem);                                            \
679         self->mem = reall;                                           \
680     }                                                                \
681     return true;                                                     \
682 }
683
684 #define _MEM_VEC_FUN_FIND(Tself, Twhat, mem)                    \
685 bool GMQCC_WARN Tself##_##mem##_find(Tself *self, Twhat obj, size_t *idx) \
686 {                                                               \
687     size_t i;                                                   \
688     for (i = 0; i < self->mem##_count; ++i) {                   \
689         if (self->mem[i] == obj) {                              \
690             if (idx) {                                          \
691                 *idx = i;                                       \
692             }                                                   \
693             return true;                                        \
694         }                                                       \
695     }                                                           \
696     return false;                                               \
697 }
698
699 #define _MEM_VEC_FUN_CLEAR(Tself, mem)  \
700 void Tself##_##mem##_clear(Tself *self) \
701 {                                       \
702     if (!self->mem)                     \
703         return;                         \
704     mem_d((void*) self->mem);           \
705     self->mem = NULL;                   \
706     self->mem##_count = 0;              \
707     self->mem##_alloc = 0;              \
708 }
709
710 #define MEM_VECTOR_CLEAR(owner, mem)  \
711     if ((owner)->mem)                 \
712         mem_d((void*)((owner)->mem)); \
713     (owner)->mem = NULL;              \
714     (owner)->mem##_count = 0;         \
715     (owner)->mem##_alloc = 0
716
717 #define MEM_VECTOR_INIT(owner, mem) \
718 {                                   \
719     (owner)->mem = NULL;            \
720     (owner)->mem##_count = 0;       \
721     (owner)->mem##_alloc = 0;       \
722 }
723
724 #define MEM_VEC_FUNCTIONS(Tself, Twhat, mem) \
725 _MEM_VEC_FUN_REMOVE(Tself, Twhat, mem)       \
726 _MEM_VEC_FUN_ADD(Tself, Twhat, mem)
727
728 #define MEM_VEC_FUNCTIONS_ALL(Tself, Twhat, mem) \
729 MEM_VEC_FUNCTIONS(Tself, Twhat, mem)             \
730 _MEM_VEC_FUN_CLEAR(Tself, mem)                   \
731 _MEM_VEC_FUN_FIND(Tself, Twhat, mem)
732
733 enum store_types {
734     store_global,
735     store_local,  /* local, assignable for now, should get promoted later */
736     store_value   /* unassignable */
737 };
738
739 typedef struct {
740     float x, y, z;
741 } vector;
742
743 /*
744  * A shallow copy of a lex_file to remember where which ast node
745  * came from.
746  */
747 typedef struct {
748     const char *file;
749     size_t      line;
750 } lex_ctx;
751 #endif