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