]> git.xonotic.org Git - xonotic/gmqcc.git/blob - gmqcc.h
Merge branch 'master' into blub/parser
[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 #   ifdef __STDC_VERSION__
56 #       if __STDC_VERSION__ < 199901L && __GNUC__ < 3
57             typedef int  bool;
58 #       else
59             typedef _Bool bool;
60 #       endif
61 #   else
62         typedef int bool;
63 #   endif /* !__STDC_VERSION__ */
64 #endif    /* !__cplusplus      */
65
66 /*
67  * Of some functions which are generated we want to make sure
68  * that the result isn't ignored. To find such function calls,
69  * we use this macro.
70  */
71 #if defined(__GNUC__) || defined(__CLANG__)
72 #   define GMQCC_WARN __attribute__((warn_unused_result))
73 #else
74 #   define GMQCC_WARN
75 #endif
76 /*
77  * This is a hack to silent clang regarding empty
78  * body if statements.
79  */
80 #define GMQCC_SUPPRESS_EMPTY_BODY do { } while (0)
81
82 /*
83  * Inline is not supported in < C90, however some compilers
84  * like gcc and clang might have an inline attribute we can
85  * use if present.
86  */
87 #ifdef __STDC_VERSION__
88 #    if __STDC_VERSION__ < 199901L
89 #       if defined(__GNUC__) || defined (__CLANG__)
90 #           if __GNUC__ < 2
91 #               define GMQCC_INLINE
92 #           else
93 #               define GMQCC_INLINE __attribute__ ((always_inline))
94 #           endif
95 #       else
96 #           define GMQCC_INLINE
97 #       endif
98 #    else
99 #       define GMQCC_INLINE inline
100 #    endif
101 #else
102 #    define GMQCC_INLINE
103 #endif /* !__STDC_VERSION__ */
104
105 /*
106  * noreturn is present in GCC and clang
107  * it's required for _ast_node_destory otherwise -Wmissing-noreturn
108  * in clang complains about there being no return since abort() is
109  * called.
110  */
111 #if (defined(__GNUC__) && __GNUC__ >= 2) || defined(__CLANG__)
112 #    define GMQCC_NORETURN __attribute__ ((noreturn))
113 #else
114 #    define GMQCC_NORETURN
115 #endif
116
117 /*
118  * stdint.h and inttypes.h -less subset
119  * for systems that don't have it, which we must
120  * assume is all systems. (int8_t not required)
121  */
122 #if   CHAR_MIN  == -128
123     typedef unsigned char  uint8_t; /* same as below */
124 #elif SCHAR_MIN == -128
125     typedef unsigned char  uint8_t; /* same as above */
126 #endif
127 #if   SHRT_MAX  == 0x7FFF
128     typedef short          int16_t;
129     typedef unsigned short uint16_t;
130 #elif INT_MAX   == 0x7FFF
131     typedef int            int16_t;
132     typedef unsigned int   uint16_t;
133 #endif
134 #if   INT_MAX   == 0x7FFFFFFF
135     typedef int            int32_t;
136     typedef unsigned int   uint32_t;
137     typedef long           int64_t;
138     typedef unsigned long  uint64_t;
139 #elif LONG_MAX  == 0x7FFFFFFF
140     typedef long           int32_t;
141     typedef unsigned long  uint32_t;
142
143     /*
144      * It's nearly impossible to figure out a 64bit type at
145      * this point without making assumptions about the build
146      * enviroment.  So if clang or gcc is detected use some
147      * compiler builtins to create a 64 signed and unsigned
148      * type.
149      */
150 #   if defined(__GNUC__) || defined (__CLANG__)
151         typedef int          int64_t  __attribute__((__mode__(__DI__)));
152         typedef unsigned int uint64_t __attribute__((__mode__(__DI__)));
153 #   else
154         /*
155          * Incoorectly size the types so static assertions below will
156          * fail.  There is no valid way to get a 64bit type at this point
157          * without making assumptions of too many things.
158          */
159         typedef struct { char _fail : 0; } int64_t;
160         typedef struct { char _fail : 0; } uint64_t;
161 #   endif
162 #endif
163 #ifdef _LP64 /* long pointer == 64 */
164     typedef unsigned long  uintptr_t;
165     typedef long           intptr_t;
166 #else
167     typedef unsigned int   uintptr_t;
168     typedef int            intptr_t;
169 #endif
170 /* Ensure type sizes are correct: */
171 typedef char uint8_size_is_correct  [sizeof(uint8_t)  == 1?1:-1];
172 typedef char uint16_size_is_correct [sizeof(uint16_t) == 2?1:-1];
173 typedef char uint32_size_is_correct [sizeof(uint32_t) == 4?1:-1];
174 typedef char uint64_size_is_correct [sizeof(uint64_t) == 8?1:-1];
175 typedef char int16_size_if_correct  [sizeof(int16_t)  == 2?1:-1];
176 typedef char int32_size_is_correct  [sizeof(int32_t)  == 4?1:-1];
177 typedef char int64_size_is_correct  [sizeof(int64_t)  == 8?1:-1];
178 /* intptr_t / uintptr_t correct size check */
179 typedef char uintptr_size_is_correct[sizeof(intptr_t) == sizeof(int*)?1:-1];
180 typedef char intptr_size_is_correct [sizeof(uintptr_t)== sizeof(int*)?1:-1];
181
182 /*===================================================================*/
183 /*=========================== util.c ================================*/
184 /*===================================================================*/
185 void *util_memory_a      (unsigned int, unsigned int, const char *);
186 void  util_memory_d      (void       *, unsigned int, const char *);
187 void  util_meminfo       ();
188
189 bool  util_strupper      (const char *);
190 bool  util_strdigit      (const char *);
191 bool  util_strncmpexact  (const char *, const char *, size_t);
192 char *util_strdup        (const char *);
193 char *util_strrq         (const char *);
194 char *util_strrnl        (const char *);
195 char *util_strsws        (const char *);
196 char *util_strchp        (const char *, const char *);
197 void  util_debug         (const char *, const char *, ...);
198 int   util_getline       (char **, size_t *, FILE *);
199 void  util_endianswap    (void *,  int, int);
200
201 size_t util_strtocmd    (const char *, char *, size_t);
202 size_t util_strtononcmd (const char *, char *, size_t);
203
204 uint32_t util_crc32(const char *, int, register const short);
205
206 #ifdef NOTRACK
207 #    define mem_a(x) malloc(x)
208 #    define mem_d(x) free  (x)
209 #else
210 #    define mem_a(x) util_memory_a((x), __LINE__, __FILE__)
211 #    define mem_d(x) util_memory_d((x), __LINE__, __FILE__)
212 #endif
213
214 /*
215  * TODO: make these safer to use.  Currently this only works on
216  * x86 and x86_64, some systems will likely not like this. Such
217  * as BE systems.
218  */
219 #define FLT2INT(Y) *((int32_t*)&(Y))
220 #define INT2FLT(Y) *((float  *)&(Y))
221
222 /* Builds vector type (usefull for inside structures) */
223 #define VECTOR_SNAP(X,Y) X ## Y
224 #define VECTOR_FILL(X,Y) VECTOR_SNAP(X,Y)
225 #define VECTOR_TYPE(T,N)                                        \
226     T*     N##_data      = NULL;                                \
227     long   N##_elements  = 0;                                   \
228     long   N##_allocated = 0
229 /* Builds vector add */
230 #define VECTOR_CORE(T,N)                                        \
231     int    N##_add(T element) {                                 \
232         void *temp = NULL;                                      \
233         if (N##_elements == N##_allocated) {                    \
234             if (N##_allocated == 0) {                           \
235                 N##_allocated = 12;                             \
236             } else {                                            \
237                 N##_allocated *= 2;                             \
238             }                                                   \
239             if  (!(temp = mem_a(N##_allocated * sizeof(T)))) {  \
240                 mem_d(temp);                                    \
241                 return -1;                                      \
242             }                                                   \
243             memcpy(temp, N##_data, (N##_elements * sizeof(T))); \
244             mem_d(N##_data);                                    \
245             N##_data = (T*)temp;                                \
246         }                                                       \
247         N##_data[N##_elements] = element;                       \
248         return   N##_elements++;                                \
249     }                                                           \
250     int N##_put(T* elements, size_t len) {                      \
251         len     --;                                             \
252         elements--;                                             \
253         while (N##_add(*++elements) != -1 && len--);            \
254         return N##_elements;                                    \
255     }                                                           \
256     typedef char VECTOR_FILL(extra_semicolon_##N,__COUNTER__)
257 #define VECTOR_PROT(T,N)                                        \
258     extern T*     N##_data     ;                                \
259     extern long   N##_elements ;                                \
260     extern long   N##_allocated;                                \
261     int           N##_add(T);                                   \
262     int           N##_put(T *, size_t)
263 #define VECTOR_MAKE(T,N) \
264     VECTOR_TYPE(T,N);    \
265     VECTOR_CORE(T,N)
266
267 /*===================================================================*/
268 /*=========================== code.c ================================*/
269 /*===================================================================*/
270
271 /* Note: if you change the order, fix type_sizeof in ir.c */
272 enum {
273     TYPE_VOID     ,
274     TYPE_STRING   ,
275     TYPE_FLOAT    ,
276     TYPE_VECTOR   ,
277     TYPE_ENTITY   ,
278     TYPE_FIELD    ,
279     TYPE_FUNCTION ,
280     TYPE_POINTER  ,
281     TYPE_INTEGER  ,
282     TYPE_VARIANT  ,
283
284     TYPE_COUNT
285 };
286
287 extern const char *type_name[TYPE_COUNT];
288
289 extern size_t type_sizeof[TYPE_COUNT];
290 extern uint16_t type_store_instr[TYPE_COUNT];
291 /* could use type_store_instr + INSTR_STOREP_F - INSTR_STORE_F
292  * but this breaks when TYPE_INTEGER is added, since with the enhanced
293  * instruction set, the old ones are left untouched, thus the _I instructions
294  * are at a seperate place.
295  */
296 extern uint16_t type_storep_instr[TYPE_COUNT];
297 /* other useful lists */
298 extern uint16_t type_eq_instr[TYPE_COUNT];
299 extern uint16_t type_ne_instr[TYPE_COUNT];
300
301 typedef struct {
302     uint32_t offset;      /* Offset in file of where data begins  */
303     uint32_t length;      /* Length of section (how many of)      */
304 } prog_section;
305
306 typedef struct {
307     uint32_t     version;      /* Program version (6)     */
308     uint16_t     crc16;        /* What is this?           */
309     uint16_t     skip;         /* see propsal.txt         */
310
311     prog_section statements;   /* prog_section_statement  */
312     prog_section defs;         /* prog_section_def        */
313     prog_section fields;       /* prog_section_field      */
314     prog_section functions;    /* prog_section_function   */
315     prog_section strings;      /* What is this?           */
316     prog_section globals;      /* What is this?           */
317     uint32_t     entfield;     /* Number of entity fields */
318 } prog_header;
319
320 /*
321  * Each paramater incerements by 3 since vector types hold
322  * 3 components (x,y,z).
323  */
324 #define OFS_NULL      0
325 #define OFS_RETURN    1
326 #define OFS_PARM0     (OFS_RETURN+3)
327 #define OFS_PARM1     (OFS_PARM0 +3)
328 #define OFS_PARM2     (OFS_PARM1 +3)
329 #define OFS_PARM3     (OFS_PARM2 +3)
330 #define OFS_PARM4     (OFS_PARM3 +3)
331 #define OFS_PARM5     (OFS_PARM4 +3)
332 #define OFS_PARM6     (OFS_PARM5 +3)
333 #define OFS_PARM7     (OFS_PARM6 +3)
334
335 typedef struct {
336     uint16_t opcode;
337
338     /* operand 1 */
339     union {
340         int16_t  s1; /* signed   */
341         uint16_t u1; /* unsigned */
342     } o1;
343     /* operand 2 */
344     union {
345         int16_t  s1; /* signed   */
346         uint16_t u1; /* unsigned */
347     } o2;
348     /* operand 3 */
349     union {
350         int16_t  s1; /* signed   */
351         uint16_t u1; /* unsigned */
352     } o3;
353
354     /*
355      * This is the same as the structure in darkplaces
356      * {
357      *     unsigned short op;
358      *     short          a,b,c;
359      * }
360      * But this one is more sane to work with, and the
361      * type sizes are guranteed.
362      */
363 } prog_section_statement;
364
365 typedef struct {
366     /* The types:
367      * 0 = ev_void
368      * 1 = ev_string
369      * 2 = ev_float
370      * 3 = ev_vector
371      * 4 = ev_entity
372      * 5 = ev_field
373      * 6 = ev_function
374      * 7 = ev_pointer -- engine only
375      * 8 = ev_bad     -- engine only
376      */
377     uint16_t type;
378     uint16_t offset;
379     uint32_t name;
380 } prog_section_both;
381 typedef prog_section_both prog_section_def;
382 typedef prog_section_both prog_section_field;
383
384 typedef struct {
385     int32_t   entry;      /* in statement table for instructions  */
386     uint32_t  firstlocal; /* First local in local table           */
387     uint32_t  locals;     /* Total ints of params + locals        */
388     uint32_t  profile;    /* Always zero (engine uses this)       */
389     uint32_t  name;       /* name of function in string table     */
390     uint32_t  file;       /* file of the source file              */
391     uint32_t  nargs;      /* number of arguments                  */
392     uint8_t   argsize[8]; /* size of arguments (keep 8 always?)   */
393 } prog_section_function;
394
395 /*
396  * Instructions
397  * These are the external instructions supported by the interperter
398  * this is what things compile to (from the C code).
399  */
400 enum {
401     INSTR_DONE,
402     INSTR_MUL_F,
403     INSTR_MUL_V,
404     INSTR_MUL_FV,
405     INSTR_MUL_VF,
406     INSTR_DIV_F,
407     INSTR_ADD_F,
408     INSTR_ADD_V,
409     INSTR_SUB_F,
410     INSTR_SUB_V,
411     INSTR_EQ_F,
412     INSTR_EQ_V,
413     INSTR_EQ_S,
414     INSTR_EQ_E,
415     INSTR_EQ_FNC,
416     INSTR_NE_F,
417     INSTR_NE_V,
418     INSTR_NE_S,
419     INSTR_NE_E,
420     INSTR_NE_FNC,
421     INSTR_LE,
422     INSTR_GE,
423     INSTR_LT,
424     INSTR_GT,
425     INSTR_LOAD_F,
426     INSTR_LOAD_V,
427     INSTR_LOAD_S,
428     INSTR_LOAD_ENT,
429     INSTR_LOAD_FLD,
430     INSTR_LOAD_FNC,
431     INSTR_ADDRESS,
432     INSTR_STORE_F,
433     INSTR_STORE_V,
434     INSTR_STORE_S,
435     INSTR_STORE_ENT,
436     INSTR_STORE_FLD,
437     INSTR_STORE_FNC,
438     INSTR_STOREP_F,
439     INSTR_STOREP_V,
440     INSTR_STOREP_S,
441     INSTR_STOREP_ENT,
442     INSTR_STOREP_FLD,
443     INSTR_STOREP_FNC,
444     INSTR_RETURN,
445     INSTR_NOT_F,
446     INSTR_NOT_V,
447     INSTR_NOT_S,
448     INSTR_NOT_ENT,
449     INSTR_NOT_FNC,
450     INSTR_IF,
451     INSTR_IFNOT,
452     INSTR_CALL0,
453     INSTR_CALL1,
454     INSTR_CALL2,
455     INSTR_CALL3,
456     INSTR_CALL4,
457     INSTR_CALL5,
458     INSTR_CALL6,
459     INSTR_CALL7,
460     INSTR_CALL8,
461     INSTR_STATE,
462     INSTR_GOTO,
463     INSTR_AND,
464     INSTR_OR,
465     INSTR_BITAND,
466     INSTR_BITOR,
467
468     /*
469      * Virtual instructions used by the assembler
470      * keep at the end but before virtual instructions
471      * for the IR below.
472      */
473     AINSTR_END,
474
475     /*
476      * Virtual instructions used by the IR
477      * Keep at the end!
478      */
479     VINSTR_PHI,
480     VINSTR_JUMP,
481     VINSTR_COND
482 };
483
484 /*
485  * The symbols below are created by the following
486  * expanded macros:
487  *
488  * VECTOR_MAKE(prog_section_statement, code_statements);
489  * VECTOR_MAKE(prog_section_def,       code_defs      );
490  * VECTOR_MAKE(prog_section_field,     code_fields    );
491  * VECTOR_MAKE(prog_section_function,  code_functions );
492  * VECTOR_MAKE(int,                    code_globals   );
493  * VECTOR_MAKE(char,                   code_chars     );
494  */
495 VECTOR_PROT(prog_section_statement, code_statements);
496 VECTOR_PROT(prog_section_statement, code_statements);
497 VECTOR_PROT(prog_section_def,       code_defs      );
498 VECTOR_PROT(prog_section_field,     code_fields    );
499 VECTOR_PROT(prog_section_function,  code_functions );
500 VECTOR_PROT(int,                    code_globals   );
501 VECTOR_PROT(char,                   code_chars     );
502
503 typedef float   qcfloat;
504 typedef int32_t qcint;
505
506 /*
507  * code_write -- writes out the compiled file
508  * code_init  -- prepares the code file
509  */
510 bool     code_write       (const char *filename);
511 void     code_init        ();
512 uint32_t code_genstring   (const char *string);
513 uint32_t code_cachedstring(const char *string);
514 qcint    code_alloc_field (size_t qcsize);
515
516 /*===================================================================*/
517 /*========================= assembler.c =============================*/
518 /*===================================================================*/
519 static const struct {
520     const char  *m; /* menomic     */
521     const size_t o; /* operands    */
522     const size_t l; /* menomic len */
523 } asm_instr[] = {
524     { "DONE"      , 1, 4 },
525     { "MUL_F"     , 3, 5 },
526     { "MUL_V"     , 3, 5 },
527     { "MUL_FV"    , 3, 6 },
528     { "MUL_VF"    , 3, 6 },
529     { "DIV"       , 0, 3 },
530     { "ADD_F"     , 3, 5 },
531     { "ADD_V"     , 3, 5 },
532     { "SUB_F"     , 3, 5 },
533     { "DUB_V"     , 3, 5 },
534     { "EQ_F"      , 0, 4 },
535     { "EQ_V"      , 0, 4 },
536     { "EQ_S"      , 0, 4 },
537     { "EQ_E"      , 0, 4 },
538     { "EQ_FNC"    , 0, 6 },
539     { "NE_F"      , 0, 4 },
540     { "NE_V"      , 0, 4 },
541     { "NE_S"      , 0, 4 },
542     { "NE_E"      , 0, 4 },
543     { "NE_FNC"    , 0, 6 },
544     { "LE"        , 0, 2 },
545     { "GE"        , 0, 2 },
546     { "LT"        , 0, 2 },
547     { "GT"        , 0, 2 },
548     { "FIELD_F"   , 0, 7 },
549     { "FIELD_V"   , 0, 7 },
550     { "FIELD_S"   , 0, 7 },
551     { "FIELD_ENT" , 0, 9 },
552     { "FIELD_FLD" , 0, 9 },
553     { "FIELD_FNC" , 0, 9 },
554     { "ADDRESS"   , 0, 7 },
555     { "STORE_F"   , 0, 7 },
556     { "STORE_V"   , 0, 7 },
557     { "STORE_S"   , 0, 7 },
558     { "STORE_ENT" , 0, 9 },
559     { "STORE_FLD" , 0, 9 },
560     { "STORE_FNC" , 0, 9 },
561     { "STOREP_F"  , 0, 8 },
562     { "STOREP_V"  , 0, 8 },
563     { "STOREP_S"  , 0, 8 },
564     { "STOREP_ENT", 0, 10},
565     { "STOREP_FLD", 0, 10},
566     { "STOREP_FNC", 0, 10},
567     { "RETURN"    , 0, 6 },
568     { "NOT_F"     , 0, 5 },
569     { "NOT_V"     , 0, 5 },
570     { "NOT_S"     , 0, 5 },
571     { "NOT_ENT"   , 0, 7 },
572     { "NOT_FNC"   , 0, 7 },
573     { "IF"        , 0, 2 },
574     { "IFNOT"     , 0, 5 },
575     { "CALL0"     , 1, 5 },
576     { "CALL1"     , 2, 5 },
577     { "CALL2"     , 3, 5 },
578     { "CALL3"     , 4, 5 },
579     { "CALL4"     , 5, 5 },
580     { "CALL5"     , 6, 5 },
581     { "CALL6"     , 7, 5 },
582     { "CALL7"     , 8, 5 },
583     { "CALL8"     , 9, 5 },
584     { "STATE"     , 0, 5 },
585     { "GOTO"      , 0, 4 },
586     { "AND"       , 0, 3 },
587     { "OR"        , 0, 2 },
588     { "BITAND"    , 0, 6 },
589     { "BITOR"     , 0, 5 },
590
591     { "END"       , 0, 3 } /* virtual assembler instruction */
592 };
593
594 void asm_init (const char *, FILE **);
595 void asm_close(FILE *);
596 void asm_parse(FILE *);
597 /*===================================================================*/
598 /*============================= ast.c ===============================*/
599 /*===================================================================*/
600 #define MEM_VECTOR_PROTO(Towner, Tmem, mem)                   \
601     bool GMQCC_WARN Towner##_##mem##_add(Towner*, Tmem);      \
602     bool GMQCC_WARN Towner##_##mem##_remove(Towner*, size_t)
603
604 #define MEM_VECTOR_PROTO_ALL(Towner, Tmem, mem)                    \
605     MEM_VECTOR_PROTO(Towner, Tmem, mem);                           \
606     bool GMQCC_WARN Towner##_##mem##_find(Towner*, Tmem, size_t*); \
607     void Towner##_##mem##_clear(Towner*)
608
609 #define MEM_VECTOR_MAKE(Twhat, name) \
610     Twhat  *name;                    \
611     size_t name##_count;             \
612     size_t name##_alloc
613
614 #define MEM_VEC_FUN_ADD(Tself, Twhat, mem)                           \
615 bool GMQCC_WARN Tself##_##mem##_add(Tself *self, Twhat f)            \
616 {                                                                    \
617     Twhat *reall;                                                    \
618     if (self->mem##_count == self->mem##_alloc) {                    \
619         if (!self->mem##_alloc) {                                    \
620             self->mem##_alloc = 16;                                  \
621         } else {                                                     \
622             self->mem##_alloc *= 2;                                  \
623         }                                                            \
624         reall = (Twhat*)mem_a(sizeof(Twhat) * self->mem##_alloc);    \
625         if (!reall) {                                                \
626             return false;                                            \
627         }                                                            \
628         memcpy(reall, self->mem, sizeof(Twhat) * self->mem##_count); \
629         mem_d(self->mem);                                            \
630         self->mem = reall;                                           \
631     }                                                                \
632     self->mem[self->mem##_count++] = f;                              \
633     return true;                                                     \
634 }
635
636 #define MEM_VEC_FUN_REMOVE(Tself, Twhat, mem)                        \
637 bool GMQCC_WARN Tself##_##mem##_remove(Tself *self, size_t idx)      \
638 {                                                                    \
639     size_t i;                                                        \
640     Twhat *reall;                                                    \
641     if (idx >= self->mem##_count) {                                  \
642         return true; /* huh... */                                    \
643     }                                                                \
644     for (i = idx; i < self->mem##_count-1; ++i) {                    \
645         self->mem[i] = self->mem[i+1];                               \
646     }                                                                \
647     self->mem##_count--;                                             \
648     if (self->mem##_count < self->mem##_count/2) {                   \
649         self->mem##_alloc /= 2;                                      \
650         reall = (Twhat*)mem_a(sizeof(Twhat) * self->mem##_count);    \
651         if (!reall) {                                                \
652             return false;                                            \
653         }                                                            \
654         memcpy(reall, self->mem, sizeof(Twhat) * self->mem##_count); \
655         mem_d(self->mem);                                            \
656         self->mem = reall;                                           \
657     }                                                                \
658     return true;                                                     \
659 }
660
661 #define MEM_VEC_FUN_FIND(Tself, Twhat, mem)                     \
662 bool GMQCC_WARN Tself##_##mem##_find(Tself *self, Twhat obj, size_t *idx) \
663 {                                                               \
664     size_t i;                                                   \
665     for (i = 0; i < self->mem##_count; ++i) {                   \
666         if (self->mem[i] == obj) {                              \
667             if (idx) {                                          \
668                 *idx = i;                                       \
669             }                                                   \
670             return true;                                        \
671         }                                                       \
672     }                                                           \
673     return false;                                               \
674 }
675
676 #define MEM_VEC_FUN_APPEND(Tself, Twhat, mem)                        \
677 bool GMQCC_WARN Tself##_##mem##_append(Tself *s, Twhat *p, size_t c) \
678 {                                                                    \
679     Twhat *reall;                                                    \
680     if (s->mem##_count+c >= s->mem##_alloc) {                        \
681         if (!s->mem##_alloc) {                                       \
682             s->mem##_alloc = c < 16 ? 16 : c;                        \
683         } else {                                                     \
684             s->mem##_alloc *= 2;                                     \
685             if (s->mem##_count+c >= s->mem##_alloc) {                \
686                 s->mem##_alloc = s->mem##_count+c;                   \
687             }                                                        \
688         }                                                            \
689         reall = (Twhat*)mem_a(sizeof(Twhat) * s->mem##_alloc);       \
690         if (!reall) {                                                \
691             return false;                                            \
692         }                                                            \
693         memcpy(reall, s->mem, sizeof(Twhat) * s->mem##_count);       \
694         mem_d(s->mem);                                               \
695         s->mem = reall;                                              \
696     }                                                                \
697     memcpy(&s->mem[s->mem##_count], p, c*sizeof(*p));                \
698     s->mem##_count += c;                                             \
699     return true;                                                     \
700 }
701
702 #define MEM_VEC_FUN_RESIZE(Tself, Twhat, mem)                    \
703 bool GMQCC_WARN Tself##_##mem##_resize(Tself *s, size_t c)       \
704 {                                                                \
705     Twhat *reall;                                                \
706     if (c > s->mem##_alloc) {                                    \
707         reall = (Twhat*)mem_a(sizeof(Twhat) * c);                \
708         if (!reall) { return false; }                            \
709         memcpy(reall, s->mem, sizeof(Twhat) * s->mem##_count);   \
710         s->mem##_alloc = c;                                      \
711         mem_d(s->mem);                                           \
712         s->mem = reall;                                          \
713         return true;                                             \
714     }                                                            \
715     s->mem##_count = c;                                          \
716     if (c < (s->mem##_alloc / 2)) {                              \
717         reall = (Twhat*)mem_a(sizeof(Twhat) * c);                \
718         if (!reall) { return false; }                            \
719         memcpy(reall, s->mem, sizeof(Twhat) * c);                \
720         mem_d(s->mem);                                           \
721         s->mem = reall;                                          \
722     }                                                            \
723     return true;                                                 \
724 }
725
726 #define MEM_VEC_FUN_CLEAR(Tself, mem)   \
727 void Tself##_##mem##_clear(Tself *self) \
728 {                                       \
729     if (!self->mem)                     \
730         return;                         \
731     mem_d((void*) self->mem);           \
732     self->mem = NULL;                   \
733     self->mem##_count = 0;              \
734     self->mem##_alloc = 0;              \
735 }
736
737 #define MEM_VECTOR_CLEAR(owner, mem)  \
738     if ((owner)->mem)                 \
739         mem_d((void*)((owner)->mem)); \
740     (owner)->mem = NULL;              \
741     (owner)->mem##_count = 0;         \
742     (owner)->mem##_alloc = 0
743
744 #define MEM_VECTOR_INIT(owner, mem) \
745 {                                   \
746     (owner)->mem = NULL;            \
747     (owner)->mem##_count = 0;       \
748     (owner)->mem##_alloc = 0;       \
749 }
750
751 #define MEM_VECTOR_MOVE(from, mem, to, tm)   \
752 {                                            \
753     (to)->tm = (from)->mem;                  \
754     (to)->tm##_count = (from)->mem##_count;  \
755     (to)->tm##_alloc = (from)->mem##_alloc;  \
756     (from)->mem = NULL;                      \
757     (from)->mem##_count = 0;                 \
758     (from)->mem##_alloc = 0;                 \
759 }
760
761 #define MEM_VEC_FUNCTIONS(Tself, Twhat, mem) \
762 MEM_VEC_FUN_REMOVE(Tself, Twhat, mem)        \
763 MEM_VEC_FUN_ADD(Tself, Twhat, mem)
764
765 #define MEM_VEC_FUNCTIONS_ALL(Tself, Twhat, mem) \
766 MEM_VEC_FUNCTIONS(Tself, Twhat, mem)             \
767 MEM_VEC_FUN_CLEAR(Tself, mem)                    \
768 MEM_VEC_FUN_FIND(Tself, Twhat, mem)
769
770 enum store_types {
771     store_global,
772     store_local,  /* local, assignable for now, should get promoted later */
773     store_param,  /* parameters, they are locals with a fixed position */
774     store_value,  /* unassignable */
775     store_return  /* unassignable, at OFS_RETURN */
776 };
777
778 typedef struct {
779     float x, y, z;
780 } vector;
781
782 /*
783  * A shallow copy of a lex_file to remember where which ast node
784  * came from.
785  */
786 typedef struct {
787     const char *file;
788     size_t      line;
789 } lex_ctx;
790
791 /*===================================================================*/
792 /*============================= exec.c ==============================*/
793 /*===================================================================*/
794
795 /* darkplaces has (or will have) a 64 bit prog loader
796  * where the 32 bit qc program is autoconverted on load.
797  * Since we may want to support that as well, let's redefine
798  * float and int here.
799  */
800 typedef union {
801     qcint   _int;
802     qcint    string;
803     qcint    function;
804     qcint    edict;
805     qcfloat _float;
806     qcfloat vector[3];
807     qcint   ivector[3];
808 } qcany;
809
810 typedef char qcfloat_size_is_correct [sizeof(qcfloat) == 4 ?1:-1];
811 typedef char qcint_size_is_correct   [sizeof(qcint)   == 4 ?1:-1];
812
813 enum {
814     VMERR_OK,
815     VMERR_TEMPSTRING_ALLOC,
816
817     VMERR_END
818 };
819
820 #define VM_JUMPS_DEFAULT 1000000
821
822 /* execute-flags */
823 #define VMXF_DEFAULT 0x0000     /* default flags - nothing */
824 #define VMXF_TRACE   0x0001     /* trace: print statements before executing */
825 #define VMXF_PROFILE 0x0002     /* profile: increment the profile counters */
826
827 struct qc_program_s;
828
829 typedef int (*prog_builtin)(struct qc_program_s *prog);
830
831 typedef struct {
832     qcint                  stmt;
833     size_t                 localsp;
834     prog_section_function *function;
835 } qc_exec_stack;
836
837 typedef struct qc_program_s {
838     char           *filename;
839
840     MEM_VECTOR_MAKE(prog_section_statement, code);
841     MEM_VECTOR_MAKE(prog_section_def,       defs);
842     MEM_VECTOR_MAKE(prog_section_def,       fields);
843     MEM_VECTOR_MAKE(prog_section_function,  functions);
844     MEM_VECTOR_MAKE(char,                   strings);
845     MEM_VECTOR_MAKE(qcint,                  globals);
846     MEM_VECTOR_MAKE(qcint,                  entitydata);
847     MEM_VECTOR_MAKE(bool,                   entitypool);
848
849     size_t tempstring_start;
850     size_t tempstring_at;
851
852     qcint  vmerror;
853
854     MEM_VECTOR_MAKE(size_t, profile);
855
856     MEM_VECTOR_MAKE(prog_builtin, builtins);
857
858     /* size_t ip; */
859     qcint  entities;
860     size_t entityfields;
861     bool   allowworldwrites;
862
863     MEM_VECTOR_MAKE(qcint,         localstack);
864     MEM_VECTOR_MAKE(qc_exec_stack, stack);
865     size_t statement;
866
867     int    argc; /* current arg count for debugging */
868 } qc_program;
869
870 qc_program* prog_load(const char *filename);
871 void        prog_delete(qc_program *prog);
872
873 bool prog_exec(qc_program *prog, prog_section_function *func, size_t flags, long maxjumps);
874
875 char*             prog_getstring (qc_program *prog, qcint str);
876 prog_section_def* prog_entfield  (qc_program *prog, qcint off);
877 prog_section_def* prog_getdef    (qc_program *prog, qcint off);
878 qcany*            prog_getedict  (qc_program *prog, qcint e);
879 qcint             prog_tempstring(qc_program *prog, const char *_str);
880
881 /*===================================================================*/
882 /*======================= main.c commandline ========================*/
883 /*===================================================================*/
884
885 #if 0
886 /* Helpers to allow for a whole lot of flags. Otherwise we'd limit
887  * to 32 or 64 -f options...
888  */
889 typedef struct {
890     size_t  idx; /* index into an array of 32 bit words */
891     uint8_t bit; /* index _into_ the 32 bit word, thus just uint8 */
892 } longbit;
893 #define LONGBIT(bit) { ((bit)/32), ((bit)%32) }
894 #else
895 typedef uint32_t longbit;
896 #define LONGBIT(bit) (bit)
897 #endif
898
899 /* Used to store the list of flags with names */
900 typedef struct {
901     const char *name;
902     longbit    bit;
903 } opts_flag_def;
904
905 /*===================================================================*/
906 /* list of -f flags, like -fdarkplaces-string-table-bug */
907 enum {
908 # define GMQCC_DEFINE_FLAG(X) X,
909 #  include "flags.def"
910 # undef GMQCC_DEFINE_FLAG
911     COUNT_FLAGS
912 };
913 static const opts_flag_def opts_flag_list[] = {
914 # define GMQCC_DEFINE_FLAG(X) { #X, LONGBIT(X) },
915 #  include "flags.def"
916 # undef GMQCC_DEFINE_FLAG
917     { NULL, LONGBIT(0) }
918 };
919
920 enum {
921 # define GMQCC_DEFINE_FLAG(X) WARN_##X,
922 #  include "warns.def"
923 # undef GMQCC_DEFINE_FLAG
924     COUNT_WARNINGS
925 };
926 static const opts_flag_def opts_warn_list[] = {
927 # define GMQCC_DEFINE_FLAG(X) { #X, LONGBIT(WARN_##X) },
928 #  include "warns.def"
929 # undef GMQCC_DEFINE_FLAG
930     { NULL, LONGBIT(0) }
931 };
932
933 /* other options: */
934 enum {
935     COMPILER_QCC,     /* circa  QuakeC */
936     COMPILER_FTEQCC,  /* fteqcc QuakeC */
937     COMPILER_QCCX,    /* qccx   QuakeC */
938     COMPILER_GMQCC    /* this   QuakeC */
939 };
940 extern uint32_t    opts_O;      /* -Ox */
941 extern const char *opts_output; /* -o file */
942 extern int         opts_standard;
943 extern bool        opts_debug;
944 extern bool        opts_memchk;
945
946 /*===================================================================*/
947 #define OPTS_FLAG(i) (!! (opts_flags[(i)/32] & (1<< ((i)%32))))
948 extern uint32_t opts_flags[1 + (COUNT_FLAGS / 32)];
949 #define OPTS_WARN(i) (!! (opts_warn[(i)/32] & (1<< ((i)%32))))
950 extern uint32_t opts_warn[1 + (COUNT_WARNINGS / 32)];
951
952 #endif