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