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