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