]> de.git.xonotic.org Git - xonotic/gmqcc.git/blob - gmqcc.h
Cleanups
[xonotic/gmqcc.git] / gmqcc.h
1 /*
2  * Copyright (C) 2012
3  *     Dale Weiler
4  *     Wolfgang Bumiller
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy of
7  * this software and associated documentation files (the "Software"), to deal in
8  * the Software without restriction, including without limitation the rights to
9  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
10  * of the Software, and to permit persons to whom the Software is furnished to do
11  * so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in all
14  * copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22  * SOFTWARE.
23  */
24 #ifndef GMQCC_HDR
25 #define GMQCC_HDR
26 #include <limits.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <stdio.h>
30 #include <stdarg.h>
31 #include <ctype.h>
32
33 /*
34  * Disable some over protective warnings in visual studio because fixing them is a waste
35  * of my time.
36  */
37 #ifdef _MSC_VER
38 #       pragma warning(disable : 4244 ) /* conversion from 'int' to 'float', possible loss of data */
39 #       pragma warning(disable : 4018 ) /* signed/unsigned mismatch                                */
40 #       pragma warning(disable : 4996 ) /* This function or variable may be unsafe                 */
41 #       pragma warning(disable : 4700 ) /* uninitialized local variable used                       */
42 #       pragma warning(disable : 4129 ) /* unrecognized character secape sequence                  */
43 #endif
44
45 #define GMQCC_VERSION_MAJOR 0
46 #define GMQCC_VERSION_MINOR 2
47 #define GMQCC_VERSION_PATCH 0
48 #define GMQCC_VERSION_BUILD(J,N,P) (((J)<<16)|((N)<<8)|(P))
49 #define GMQCC_VERSION \
50     GMQCC_VERSION_BUILD(GMQCC_VERSION_MAJOR, GMQCC_VERSION_MINOR, GMQCC_VERSION_PATCH)
51
52 /*
53  * We cannoy rely on C99 at all, since compilers like MSVC
54  * simply don't support it.  We define our own boolean type
55  * as a result (since we cannot include <stdbool.h>). For
56  * compilers that are in 1999 mode (C99 compliant) we can use
57  * the language keyword _Bool which can allow for better code
58  * on GCC and GCC-like compilers, opposed to `int`.
59  */
60 #ifndef __cplusplus
61 #   ifdef  false
62 #       undef  false
63 #   endif /* !false */
64 #   ifdef  true
65 #       undef true
66 #   endif /* !true  */
67 #   define false (0)
68 #   define true  (1)
69 #   ifdef __STDC_VERSION__
70 #       if __STDC_VERSION__ < 199901L && __GNUC__ < 3
71             typedef int  bool;
72 #       else
73             typedef _Bool bool;
74 #       endif
75 #   else
76         typedef int bool;
77 #   endif /* !__STDC_VERSION__ */
78 #endif    /* !__cplusplus      */
79
80
81
82 /*
83  * Of some functions which are generated we want to make sure
84  * that the result isn't ignored. To find such function calls,
85  * we use this macro.
86  */
87 #if defined(__GNUC__) || defined(__CLANG__)
88 #   define GMQCC_WARN __attribute__((warn_unused_result))
89 #else
90 #   define GMQCC_WARN
91 #endif
92 /*
93  * This is a hack to silent clang regarding empty
94  * body if statements.
95  */
96 #define GMQCC_SUPPRESS_EMPTY_BODY do { } while (0)
97
98 /*
99  * Inline is not supported in < C90, however some compilers
100  * like gcc and clang might have an inline attribute we can
101  * use if present.
102  */
103 #ifdef __STDC_VERSION__
104 #    if __STDC_VERSION__ < 199901L
105 #       if defined(__GNUC__) || defined (__CLANG__)
106 #           if __GNUC__ < 2
107 #               define GMQCC_INLINE
108 #           else
109 #               define GMQCC_INLINE __attribute__ ((always_inline))
110 #           endif
111 #       else
112 #           define GMQCC_INLINE
113 #       endif
114 #    else
115 #       define GMQCC_INLINE inline
116 #    endif
117 /*
118  * Visual studio has __forcinline we can use.  So lets use that
119  * I suspect it also has just __inline of some sort, but our use
120  * of inline is correct (not guessed), WE WANT IT TO BE INLINE
121  */
122 #elif defined(_MSC_VER)
123 #    define GMQCC_INLINE __forceinline
124 #else
125 #    define GMQCC_INLINE
126 #endif /* !__STDC_VERSION__ */
127
128 /*
129  * noreturn is present in GCC and clang
130  * it's required for _ast_node_destory otherwise -Wmissing-noreturn
131  * in clang complains about there being no return since abort() is
132  * called.
133  */
134 #if (defined(__GNUC__) && __GNUC__ >= 2) || defined(__CLANG__)
135 #    define GMQCC_NORETURN __attribute__ ((noreturn))
136 #else
137 #    define GMQCC_NORETURN
138 #endif
139
140 #ifndef _MSC_VER
141 #   include <stdint.h>
142 #else
143     typedef unsigned __int8  uint8_t;
144     typedef unsigned __int16 uint16_t;
145     typedef unsigned __int32 uint32_t;
146     typedef unsigned __int64 uint64_t;
147
148     typedef __int16          int16_t;
149     typedef __int32          int32_t;
150     typedef __int64          int64_t;
151 #endif
152
153 /* 
154  *windows makes these prefixed because they're C99
155  * TODO: utility versions that are type-safe and not
156  * just plain textual subsitution.
157  */
158 #ifdef _MSC_VER
159 #       define snprintf(X, Y, Z, ...) _snprintf(X, Y, Z, __VA_ARGS__)
160     /* strtof doesn't exist -> strtod does though :) */
161 #       define strtof(X, Y)          (float)(strtod(X, Y))
162 #endif
163
164
165 /*
166  * Very roboust way at determining endianess at compile time: this handles
167  * almost every possible situation.  Otherwise a runtime check has to be
168  * performed.
169  */
170 #define GMQCC_BYTE_ORDER_LITTLE 1234
171 #define GMQCC_BYTE_ORDER_BIG    4321
172
173 #if defined (__GNUC__) || defined (__GNU_LIBRARY__)
174 #   if defined (__FreeBSD__) || defined (__OpenBSD__)
175 #       include <sys/endian.h>
176 #   elif defined (BSD) && (BSD >= 199103) || defined (__DJGPP__) || defined (__CYGWIN32__)
177 #       include <machine/endiane.h>
178 #   elif defined (__APPLE__)
179 #       if defined (__BIG_ENDIAN__) && !defined(BIG_ENDIAN)
180 #           define BIG_ENDIAN
181 #       elif defined (__LITTLE_ENDIAN__) && !defined (LITTLE_ENDIAN)
182 #           define LITTLE_ENDIAN
183 #       endif
184 #   elif !defined (__MINGW32__)
185 #       include <endian.h>
186 #       if !defined (__BEOS__)
187 #           include <byteswap.h>
188 #       endif
189 #   endif
190 #endif
191 #if !defined(PLATFORM_BYTE_ORDER)
192 #   if defined (LITTLE_ENDIAN) || defined (BIG_ENDIAN)
193 #       if defined (LITTLE_ENDIAN) && !defined(BIG_ENDIAN)
194 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_LITTLE
195 #       elif !defined (LITTLE_ENDIAN) && defined (BIG_ENDIAN)
196 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_BIG
197 #       elif defined (BYTE_ORDER) && (BYTE_ORDER == LITTLE_ENDIAN)
198 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_LITTLE
199 #       elif defined (BYTE_ORDER) && (BYTE_ORDER == BIG_ENDIAN)
200 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_BIG
201 #       endif
202 #   elif defined (_LITTLE_ENDIAN) || defined (_BIG_ENDIAN)
203 #       if defined (_LITTLE_ENDIAN) && !defined(_BIG_ENDIAN)
204 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_LITTLE
205 #       elif !defined (_LITTLE_ENDIAN) && defined (_BIG_ENDIAN)
206 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_BIG
207 #       elif defined (_BYTE_ORDER) && (_BYTE_ORDER == _LITTLE_ENDIAN)
208 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_LITTLE
209 #       elif defined (_BYTE_ORDER) && (_BYTE_ORDER == _BIG_ENDIAN)
210 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_BIG
211 #       endif
212 #   elif defined (__LITTLE_ENDIAN__) || defined (__BIG_ENDIAN__)
213 #       if defined (__LITTLE_ENDIAN__) && !defined (__BIG_ENDIAN__)
214 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_LITTLE
215 #       elif !defined (__LITTLE_ENDIAN__) && defined (__BIG_ENDIAN__)
216 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_BIG
217 #       elif defined (__BYTE_ORDER__) && (__BYTE_ORDER__ == __LITTLE_ENDIAN__)
218 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_LITTLE
219 #       elif defined (__BYTE_ORDER__) && (__BYTE_ORDER__ == __BIG_ENDIAN__)
220 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_BIG
221 #       endif
222 #   endif
223 #endif
224 #if !defined (PLATFORM_BYTE_ORDER)
225 #   if   defined (__alpha__) || defined (__alpha)    || defined (i386)       || \
226          defined (__i386__)  || defined (_M_I86)     || defined (_M_IX86)    || \
227          defined (__OS2__)   || defined (sun386)     || defined (__TURBOC__) || \
228          defined (vax)       || defined (vms)        || defined (VMS)        || \
229          defined (__VMS)     || defined (__x86_64__) || defined (_M_IA64)    || \
230          defined (_M_X64)    || defined (__i386)     || defined (__x86_64)
231 #       define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_LITTLE
232 #   elif defined (AMIGA)     || defined (applec)     || defined (__AS400__)  || \
233          defined (_CRAY)     || defined (__hppa)     || defined (__hp9000)   || \
234          defined (ibm370)    || defined (mc68000)    || defined (m68k)       || \
235          defined (__MRC__)   || defined (__MVS__)    || defined (__MWERKS__) || \
236          defined (sparc)     || defined (__sparc)    || defined (SYMANTEC_C) || \
237          defined (__TANDEM)  || defined (THINK_C)    || defined (__VMCMS__)  || \
238          defined (__PPC__)   || defined (__PPC)      || defined (PPC)
239 #       define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_BIG
240 #   else
241 #       define PLATFORM_BYTE_ORDER -1
242 #   endif
243 #endif
244
245
246
247 /*===================================================================*/
248 /*=========================== util.c ================================*/
249 /*===================================================================*/
250 FILE *util_fopen(const char *filename, const char *mode);
251
252 void *util_memory_a      (size_t,       unsigned int, const char *);
253 void  util_memory_d      (void       *, unsigned int, const char *);
254 void *util_memory_r      (void       *, size_t,       unsigned int, const char *);
255 void  util_meminfo       ();
256
257 bool  util_filexists     (const char *);
258 bool  util_strupper      (const char *);
259 bool  util_strdigit      (const char *);
260 bool  util_strncmpexact  (const char *, const char *, size_t);
261 char *util_strdup        (const char *);
262 char *util_strrq         (const char *);
263 char *util_strrnl        (const char *);
264 char *util_strsws        (const char *);
265 char *util_strchp        (const char *, const char *);
266 void  util_debug         (const char *, const char *, ...);
267 int   util_getline       (char **, size_t *, FILE *);
268 void  util_endianswap    (void *,  size_t, unsigned int);
269
270 size_t util_strtocmd    (const char *, char *, size_t);
271 size_t util_strtononcmd (const char *, char *, size_t);
272
273 uint16_t util_crc16(uint16_t crc, const char *data, size_t len);
274 uint32_t util_crc32(uint32_t crc, const char *data, size_t len);
275
276 /*
277  * If we're compiling as C++ code we need to fix some subtle issues regarding casts between mem_a/mem_d
278  * since C++ doesn't allow implicit conversions between void*
279  */
280 #ifdef __cplusplus
281         /*
282          * void * will be implicitally converted to gmqcc_voidptr using gmqcc_voidptr(void*).  This is what
283          * essentially allows us to allow implicit conversion to whatever pointer type we're trying to assign
284          * to because it acks as a default assignment constructor.
285          */
286         class gmqcc_voidptr {
287             void *m_pointer;
288         public:
289             gmqcc_voidptr(void *pointer) :
290                 m_pointer(pointer)
291             { };
292
293             template <typename T>
294             GMQCC_INLINE operator T *() {
295                 return m_pointer;
296             }
297         };
298
299 #       define GMQCC_IMPLICIT_POINTER(X) (gmqcc_voidptr(X))
300 #else
301 #       define GMQCC_IMPLICIT_POINTER(X) (X)
302 #endif
303
304 #ifdef NOTRACK
305 #    define mem_a(x)    GMQCC_IMPLICIT_POINTER(malloc (x))
306 #    define mem_d(x)    free   ((void*)x)
307 #    define mem_r(x, n) realloc((void*)x, n)
308 #else
309 #    define mem_a(x)    GMQCC_IMPLICIT_POINTER(util_memory_a((x), __LINE__, __FILE__))
310 #    define mem_d(x)    util_memory_d((void*)(x),      __LINE__, __FILE__)
311 #    define mem_r(x, n) util_memory_r((void*)(x), (n), __LINE__, __FILE__)
312 #endif
313
314 /* New flexible vector implementation from Dale */
315 #define _vec_raw(A) (((size_t*)(void*)(A)) - 2)
316 #define _vec_beg(A) (_vec_raw(A)[0])
317 #define _vec_end(A) (_vec_raw(A)[1])
318 #define _vec_needsgrow(A,N) ((!(A)) || (_vec_end(A) + (N) >= _vec_beg(A)))
319 #define _vec_mightgrow(A,N) (_vec_needsgrow((A), (N)) ? (void)_vec_forcegrow((A),(N)) : (void)0)
320 #define _vec_forcegrow(A,N) _util_vec_grow(((void**)&(A)), (N), sizeof(*(A)))
321 #define _vec_remove(A,S,I,N) (memmove((char*)(A)+(I)*(S),(char*)(A)+((I)+(N))*(S),(S)*(_vec_end(A)-(I)-(N))), _vec_end(A)-=(N))
322 void _util_vec_grow(void **a, size_t i, size_t s);
323
324 /* exposed interface */
325 #define vec_free(A)          ((A) ? (mem_d((void*)_vec_raw(A)), (A) = NULL) : 0)
326 #define vec_push(A,V)        (_vec_mightgrow((A),1), (A)[_vec_end(A)++] = (V))
327 #define vec_size(A)          ((A) ? _vec_end(A) : 0)
328 #define vec_add(A,N)         (_vec_mightgrow((A),(N)), _vec_end(A)+=(N), &(A)[_vec_end(A)-(N)])
329 #define vec_last(A)          ((A)[_vec_end(A)-1])
330 #define vec_append(A,N,S)    memcpy(vec_add((A), (N)), (S), N * sizeof(*(S)))
331 #define vec_remove(A,I,N)    _vec_remove((A), sizeof(*(A)), (I), (N))
332 #define vec_pop(A)           (_vec_end(A)-=1)
333
334 /* these are supposed to NOT reallocate */
335 #define vec_shrinkto(A,N)    (_vec_end(A) = (N))
336 #define vec_shrinkby(A,N)    (_vec_end(A) -= (N))
337
338 /* vec_upload needs to be cleaned up as well to be a function */
339 #define vec_upload(X,Y,S)      \
340     do {                       \
341         size_t E = 0;          \
342         while (E < S) {        \
343             vec_push(X, Y[E]); \
344             E ++;              \
345         }                      \
346     } while(0)
347
348 typedef struct hash_table_t {
349     size_t                size;
350     struct hash_node_t **table;
351 } hash_table_t, *ht;
352
353 /*
354  * hashtable implementation:
355  *
356  * Note:
357  *      This was designed for pointers:  you manage the life of the object yourself
358  *      if you do use this for non-pointers please be warned that the object may not
359  *      be valid if the duration of it exceeds (i.e on stack).  So you need to allocate
360  *      yourself, or put those in global scope to ensure duration is for the whole
361  *      runtime.
362  *
363  * util_htnew(size)                             -- to make a new hashtable
364  * util_htset(table, key, value, sizeof(value)) -- to set something in the table
365  * util_htget(table, key)                       -- to get something from the table
366  * util_htdel(table)                            -- to delete the table
367  *
368  * example of use:
369  *
370  * ht    foo  = util_htnew(1024);
371  * int   data = 100;
372  * char *test = "hello world\n";
373  * util_htset(foo, "foo", (void*)&data);
374  * util_gtset(foo, "bar", (void*)test);
375  *
376  * printf("foo: %d, bar %s",
377  *     *((int *)util_htget(foo, "foo")),
378  *      ((char*)util_htget(foo, "bar"))
379  * );
380  *
381  * util_htdel(foo);
382  */
383 hash_table_t *util_htnew (size_t size);
384 void          util_htset (hash_table_t *ht, const char *key, void *value);
385 void         *util_htget (hash_table_t *ht, const char *key);
386 void          util_htdel (hash_table_t *ht);
387 size_t        util_hthash(hash_table_t *ht, const char *key);
388 void         *util_htgeth(hash_table_t *ht, const char *key, size_t hash);
389 void          util_htseth(hash_table_t *ht, const char *key, size_t hash, void *value);
390 /*===================================================================*/
391 /*=========================== code.c ================================*/
392 /*===================================================================*/
393
394 /* Note: if you change the order, fix type_sizeof in ir.c */
395 enum {
396     TYPE_VOID     ,
397     TYPE_STRING   ,
398     TYPE_FLOAT    ,
399     TYPE_VECTOR   ,
400     TYPE_ENTITY   ,
401     TYPE_FIELD    ,
402     TYPE_FUNCTION ,
403     TYPE_POINTER  ,
404     TYPE_INTEGER  ,
405     TYPE_VARIANT  ,
406     TYPE_STRUCT   ,
407     TYPE_UNION    ,
408     TYPE_ARRAY    ,
409
410     TYPE_COUNT
411 };
412
413 /* const/var qualifiers */
414 #define CV_NONE   0
415 #define CV_CONST  1
416 #define CV_VAR   -1
417 #define CV_WRONG  0x8000 /* magic number to help parsing */
418
419 extern const char *type_name        [TYPE_COUNT];
420 extern uint16_t    type_store_instr [TYPE_COUNT];
421 extern uint16_t    field_store_instr[TYPE_COUNT];
422
423 /*
424  * could use type_store_instr + INSTR_STOREP_F - INSTR_STORE_F
425  * but this breaks when TYPE_INTEGER is added, since with the enhanced
426  * instruction set, the old ones are left untouched, thus the _I instructions
427  * are at a seperate place.
428  */
429 extern uint16_t type_storep_instr[TYPE_COUNT];
430 extern uint16_t type_eq_instr    [TYPE_COUNT];
431 extern uint16_t type_ne_instr    [TYPE_COUNT];
432 extern uint16_t type_not_instr   [TYPE_COUNT];
433
434 typedef struct {
435     uint32_t offset;      /* Offset in file of where data begins  */
436     uint32_t length;      /* Length of section (how many of)      */
437 } prog_section;
438
439 typedef struct {
440     uint32_t     version;      /* Program version (6)     */
441     uint16_t     crc16;
442     uint16_t     skip;
443
444     prog_section statements;   /* prog_section_statement  */
445     prog_section defs;         /* prog_section_def        */
446     prog_section fields;       /* prog_section_field      */
447     prog_section functions;    /* prog_section_function   */
448     prog_section strings;
449     prog_section globals;
450     uint32_t     entfield;     /* Number of entity fields */
451 } prog_header;
452
453 /*
454  * Each paramater incerements by 3 since vector types hold
455  * 3 components (x,y,z).
456  */
457 #define OFS_NULL      0
458 #define OFS_RETURN    1
459 #define OFS_PARM0     (OFS_RETURN+3)
460 #define OFS_PARM1     (OFS_PARM0 +3)
461 #define OFS_PARM2     (OFS_PARM1 +3)
462 #define OFS_PARM3     (OFS_PARM2 +3)
463 #define OFS_PARM4     (OFS_PARM3 +3)
464 #define OFS_PARM5     (OFS_PARM4 +3)
465 #define OFS_PARM6     (OFS_PARM5 +3)
466 #define OFS_PARM7     (OFS_PARM6 +3)
467
468 typedef struct {
469     uint16_t opcode;
470
471     /* operand 1 */
472     union {
473         int16_t  s1; /* signed   */
474         uint16_t u1; /* unsigned */
475     } o1;
476     /* operand 2 */
477     union {
478         int16_t  s1; /* signed   */
479         uint16_t u1; /* unsigned */
480     } o2;
481     /* operand 3 */
482     union {
483         int16_t  s1; /* signed   */
484         uint16_t u1; /* unsigned */
485     } o3;
486
487     /*
488      * This is the same as the structure in darkplaces
489      * {
490      *     unsigned short op;
491      *     short          a,b,c;
492      * }
493      * But this one is more sane to work with, and the
494      * type sizes are guranteed.
495      */
496 } prog_section_statement;
497
498 typedef struct {
499     /*
500      * The types:
501      * 0 = ev_void
502      * 1 = ev_string
503      * 2 = ev_float
504      * 3 = ev_vector
505      * 4 = ev_entity
506      * 5 = ev_field
507      * 6 = ev_function
508      * 7 = ev_pointer -- engine only
509      * 8 = ev_bad     -- engine only
510      */
511     uint16_t type;
512     uint16_t offset;
513     uint32_t name;
514 } prog_section_both;
515
516 typedef prog_section_both prog_section_def;
517 typedef prog_section_both prog_section_field;
518
519 /* this is ORed to the type */
520 #define DEF_SAVEGLOBAL (1<<15)
521 #define DEF_TYPEMASK   ((1<<15)-1)
522
523 typedef struct {
524     int32_t   entry;      /* in statement table for instructions  */
525     uint32_t  firstlocal; /* First local in local table           */
526     uint32_t  locals;     /* Total ints of params + locals        */
527     uint32_t  profile;    /* Always zero (engine uses this)       */
528     uint32_t  name;       /* name of function in string table     */
529     uint32_t  file;       /* file of the source file              */
530     int32_t   nargs;      /* number of arguments                  */
531     uint8_t   argsize[8]; /* size of arguments (keep 8 always?)   */
532 } prog_section_function;
533
534 /*
535  * Instructions
536  * These are the external instructions supported by the interperter
537  * this is what things compile to (from the C code).
538  */
539 enum {
540     INSTR_DONE,
541     INSTR_MUL_F,
542     INSTR_MUL_V,
543     INSTR_MUL_FV, /* NOTE: the float operands must NOT be at the same locations: A != C */
544     INSTR_MUL_VF, /* and here: B != C */
545     INSTR_DIV_F,
546     INSTR_ADD_F,
547     INSTR_ADD_V,
548     INSTR_SUB_F,
549     INSTR_SUB_V,
550     INSTR_EQ_F,
551     INSTR_EQ_V,
552     INSTR_EQ_S,
553     INSTR_EQ_E,
554     INSTR_EQ_FNC,
555     INSTR_NE_F,
556     INSTR_NE_V,
557     INSTR_NE_S,
558     INSTR_NE_E,
559     INSTR_NE_FNC,
560     INSTR_LE,
561     INSTR_GE,
562     INSTR_LT,
563     INSTR_GT,
564     INSTR_LOAD_F,
565     INSTR_LOAD_V,
566     INSTR_LOAD_S,
567     INSTR_LOAD_ENT,
568     INSTR_LOAD_FLD,
569     INSTR_LOAD_FNC,
570     INSTR_ADDRESS,
571     INSTR_STORE_F,
572     INSTR_STORE_V,
573     INSTR_STORE_S,
574     INSTR_STORE_ENT,
575     INSTR_STORE_FLD,
576     INSTR_STORE_FNC,
577     INSTR_STOREP_F,
578     INSTR_STOREP_V,
579     INSTR_STOREP_S,
580     INSTR_STOREP_ENT,
581     INSTR_STOREP_FLD,
582     INSTR_STOREP_FNC,
583     INSTR_RETURN,
584     INSTR_NOT_F,
585     INSTR_NOT_V,
586     INSTR_NOT_S,
587     INSTR_NOT_ENT,
588     INSTR_NOT_FNC,
589     INSTR_IF,
590     INSTR_IFNOT,
591     INSTR_CALL0,
592     INSTR_CALL1,
593     INSTR_CALL2,
594     INSTR_CALL3,
595     INSTR_CALL4,
596     INSTR_CALL5,
597     INSTR_CALL6,
598     INSTR_CALL7,
599     INSTR_CALL8,
600     INSTR_STATE,
601     INSTR_GOTO,
602     INSTR_AND,
603     INSTR_OR,
604     INSTR_BITAND,
605     INSTR_BITOR,
606
607     /*
608      * Virtual instructions used by the assembler
609      * keep at the end but before virtual instructions
610      * for the IR below.
611      */
612     AINSTR_END,
613
614     /*
615      * Virtual instructions used by the IR
616      * Keep at the end!
617      */
618     VINSTR_PHI,
619     VINSTR_JUMP,
620     VINSTR_COND,
621     /* A never returning CALL.
622      * Creating this causes IR blocks to be marked as 'final'.
623      * No-Return-Call
624      */
625     VINSTR_NRCALL
626 };
627
628 /* TODO: cleanup this mess */
629 extern prog_section_statement *code_statements;
630 extern int                    *code_linenums;
631 extern prog_section_def       *code_defs;
632 extern prog_section_field     *code_fields;
633 extern prog_section_function  *code_functions;
634 extern int                    *code_globals;
635 extern char                   *code_chars;
636 extern uint16_t code_crc;
637
638 /* uhh? */
639 typedef float   qcfloat;
640 typedef int32_t qcint;
641
642 /*
643  * code_write -- writes out the compiled file
644  * code_init  -- prepares the code file
645  */
646 bool     code_write       (const char *filename, const char *lno);
647 void     code_init        ();
648 uint32_t code_genstring   (const char *string);
649 uint32_t code_cachedstring(const char *string);
650 qcint    code_alloc_field (size_t qcsize);
651
652 /* this function is used to keep statements and linenumbers together */
653 void     code_push_statement(prog_section_statement *stmt, int linenum);
654 void     code_pop_statement();
655
656 /*
657  * A shallow copy of a lex_file to remember where which ast node
658  * came from.
659  */
660 typedef struct {
661     const char *file;
662     size_t      line;
663 } lex_ctx;
664
665 /*===================================================================*/
666 /*============================ con.c ================================*/
667 /*===================================================================*/
668 enum {
669     CON_BLACK   = 30,
670     CON_RED,
671     CON_GREEN,
672     CON_BROWN,
673     CON_BLUE,
674     CON_MAGENTA,
675     CON_CYAN ,
676     CON_WHITE
677 };
678
679 /* message level */
680 enum {
681     LVL_MSG,
682     LVL_WARNING,
683     LVL_ERROR
684 };
685
686 void con_vprintmsg (int level, const char *name, size_t line, const char *msgtype, const char *msg, va_list ap);
687 void con_printmsg  (int level, const char *name, size_t line, const char *msgtype, const char *msg, ...);
688 void con_cvprintmsg(void *ctx, int lvl, const char *msgtype, const char *msg, va_list ap);
689 void con_cprintmsg (void *ctx, int lvl, const char *msgtype, const char *msg, ...);
690
691 void con_close ();
692 void con_init  ();
693 void con_reset ();
694 void con_color (int);
695 int  con_change(const char *, const char *);
696 int  con_verr  (const char *, va_list);
697 int  con_vout  (const char *, va_list);
698 int  con_err   (const char *, ...);
699 int  con_out   (const char *, ...);
700
701 /* error/warning interface */
702 extern size_t compile_errors;
703 extern size_t compile_warnings;
704
705 void /********/ compile_error   (lex_ctx ctx, /*LVL_ERROR*/ const char *msg, ...);
706 void /********/ vcompile_error  (lex_ctx ctx, /*LVL_ERROR*/ const char *msg, va_list ap);
707 bool GMQCC_WARN compile_warning (lex_ctx ctx, int warntype, const char *fmt, ...);
708 bool GMQCC_WARN vcompile_warning(lex_ctx ctx, int warntype, const char *fmt, va_list ap);
709
710 /*===================================================================*/
711 /*========================= assembler.c =============================*/
712 /*===================================================================*/
713 /* TODO: remove this ... */
714 static const struct {
715     const char  *m; /* menomic     */
716     const size_t o; /* operands    */
717     const size_t l; /* menomic len */
718 } asm_instr[] = {
719     { "DONE"      , 1, 4 },
720     { "MUL_F"     , 3, 5 },
721     { "MUL_V"     , 3, 5 },
722     { "MUL_FV"    , 3, 6 },
723     { "MUL_VF"    , 3, 6 },
724     { "DIV"       , 0, 3 },
725     { "ADD_F"     , 3, 5 },
726     { "ADD_V"     , 3, 5 },
727     { "SUB_F"     , 3, 5 },
728     { "SUB_V"     , 3, 5 },
729     { "EQ_F"      , 0, 4 },
730     { "EQ_V"      , 0, 4 },
731     { "EQ_S"      , 0, 4 },
732     { "EQ_E"      , 0, 4 },
733     { "EQ_FNC"    , 0, 6 },
734     { "NE_F"      , 0, 4 },
735     { "NE_V"      , 0, 4 },
736     { "NE_S"      , 0, 4 },
737     { "NE_E"      , 0, 4 },
738     { "NE_FNC"    , 0, 6 },
739     { "LE"        , 0, 2 },
740     { "GE"        , 0, 2 },
741     { "LT"        , 0, 2 },
742     { "GT"        , 0, 2 },
743     { "FIELD_F"   , 0, 7 },
744     { "FIELD_V"   , 0, 7 },
745     { "FIELD_S"   , 0, 7 },
746     { "FIELD_ENT" , 0, 9 },
747     { "FIELD_FLD" , 0, 9 },
748     { "FIELD_FNC" , 0, 9 },
749     { "ADDRESS"   , 0, 7 },
750     { "STORE_F"   , 0, 7 },
751     { "STORE_V"   , 0, 7 },
752     { "STORE_S"   , 0, 7 },
753     { "STORE_ENT" , 0, 9 },
754     { "STORE_FLD" , 0, 9 },
755     { "STORE_FNC" , 0, 9 },
756     { "STOREP_F"  , 0, 8 },
757     { "STOREP_V"  , 0, 8 },
758     { "STOREP_S"  , 0, 8 },
759     { "STOREP_ENT", 0, 10},
760     { "STOREP_FLD", 0, 10},
761     { "STOREP_FNC", 0, 10},
762     { "RETURN"    , 0, 6 },
763     { "NOT_F"     , 0, 5 },
764     { "NOT_V"     , 0, 5 },
765     { "NOT_S"     , 0, 5 },
766     { "NOT_ENT"   , 0, 7 },
767     { "NOT_FNC"   , 0, 7 },
768     { "IF"        , 0, 2 },
769     { "IFNOT"     , 0, 5 },
770     { "CALL0"     , 1, 5 },
771     { "CALL1"     , 2, 5 },
772     { "CALL2"     , 3, 5 },
773     { "CALL3"     , 4, 5 },
774     { "CALL4"     , 5, 5 },
775     { "CALL5"     , 6, 5 },
776     { "CALL6"     , 7, 5 },
777     { "CALL7"     , 8, 5 },
778     { "CALL8"     , 9, 5 },
779     { "STATE"     , 0, 5 },
780     { "GOTO"      , 0, 4 },
781     { "AND"       , 0, 3 },
782     { "OR"        , 0, 2 },
783     { "BITAND"    , 0, 6 },
784     { "BITOR"     , 0, 5 },
785
786     { "END"       , 0, 3 } /* virtual assembler instruction */
787 };
788 /*===================================================================*/
789 /*============================= ir.c ================================*/
790 /*===================================================================*/
791
792 enum store_types {
793     store_global,
794     store_local,  /* local, assignable for now, should get promoted later */
795     store_param,  /* parameters, they are locals with a fixed position */
796     store_value,  /* unassignable */
797     store_return  /* unassignable, at OFS_RETURN */
798 };
799
800 typedef struct {
801     qcfloat x, y, z;
802 } vector;
803
804 vector  vec3_add  (vector, vector);
805 vector  vec3_sub  (vector, vector);
806 qcfloat vec3_mulvv(vector, vector);
807 vector  vec3_mulvf(vector, float);
808
809 /*===================================================================*/
810 /*============================= exec.c ==============================*/
811 /*===================================================================*/
812
813 /*
814  * Darkplaces has (or will have) a 64 bit prog loader
815  * where the 32 bit qc program is autoconverted on load.
816  * Since we may want to support that as well, let's redefine
817  * float and int here.
818  */
819 typedef union {
820     qcint   _int;
821     qcint    string;
822     qcint    function;
823     qcint    edict;
824     qcfloat _float;
825     qcfloat vector[3];
826     qcint   ivector[3];
827 } qcany;
828
829 typedef char qcfloat_size_is_correct [sizeof(qcfloat) == 4 ?1:-1];
830 typedef char qcint_size_is_correct   [sizeof(qcint)   == 4 ?1:-1];
831
832 enum {
833     VMERR_OK,
834     VMERR_TEMPSTRING_ALLOC,
835
836     VMERR_END
837 };
838
839 #define VM_JUMPS_DEFAULT 1000000
840
841 /* execute-flags */
842 #define VMXF_DEFAULT 0x0000     /* default flags - nothing */
843 #define VMXF_TRACE   0x0001     /* trace: print statements before executing */
844 #define VMXF_PROFILE 0x0002     /* profile: increment the profile counters */
845
846 struct qc_program_s;
847
848 typedef int (*prog_builtin)(struct qc_program_s *prog);
849
850 typedef struct {
851     qcint                  stmt;
852     size_t                 localsp;
853     prog_section_function *function;
854 } qc_exec_stack;
855
856 typedef struct qc_program_s {
857     char           *filename;
858
859     prog_section_statement *code;
860     prog_section_def       *defs;
861     prog_section_def       *fields;
862     prog_section_function  *functions;
863     char                   *strings;
864     qcint                  *globals;
865     qcint                  *entitydata;
866     bool                   *entitypool;
867
868     const char*            *function_stack;
869
870     uint16_t crc16;
871
872     size_t tempstring_start;
873     size_t tempstring_at;
874
875     qcint  vmerror;
876
877     size_t *profile;
878
879     prog_builtin *builtins;
880     size_t        builtins_count;
881
882     /* size_t ip; */
883     qcint  entities;
884     size_t entityfields;
885     bool   allowworldwrites;
886
887     qcint         *localstack;
888     qc_exec_stack *stack;
889     size_t statement;
890
891     size_t xflags;
892
893     int    argc; /* current arg count for debugging */
894 } qc_program;
895
896 qc_program* prog_load(const char *filename);
897 void        prog_delete(qc_program *prog);
898
899 bool prog_exec(qc_program *prog, prog_section_function *func, size_t flags, long maxjumps);
900
901 char*             prog_getstring (qc_program *prog, qcint str);
902 prog_section_def* prog_entfield  (qc_program *prog, qcint off);
903 prog_section_def* prog_getdef    (qc_program *prog, qcint off);
904 qcany*            prog_getedict  (qc_program *prog, qcint e);
905 qcint             prog_tempstring(qc_program *prog, const char *_str);
906
907
908 /*===================================================================*/
909 /*===================== parser.c commandline ========================*/
910 /*===================================================================*/
911
912 bool parser_init          ();
913 bool parser_compile_file  (const char *filename);
914 bool parser_compile_string(const char *name, const char *str);
915 bool parser_finish        (const char *output);
916 void parser_cleanup       ();
917 /* There's really no need to strlen() preprocessed files */
918 bool parser_compile_string_len(const char *name, const char *str, size_t len);
919
920 /*===================================================================*/
921 /*====================== ftepp.c commandline ========================*/
922 /*===================================================================*/
923 bool ftepp_init             ();
924 bool ftepp_preprocess_file  (const char *filename);
925 bool ftepp_preprocess_string(const char *name, const char *str);
926 void ftepp_finish           ();
927 const char *ftepp_get       ();
928 void ftepp_flush            ();
929 void ftepp_add_define       (const char *source, const char *name);
930 void ftepp_add_macro        (const char *name,   const char *value);
931
932 /*===================================================================*/
933 /*======================= main.c commandline ========================*/
934 /*===================================================================*/
935
936 #if 0
937 /* Helpers to allow for a whole lot of flags. Otherwise we'd limit
938  * to 32 or 64 -f options...
939  */
940 typedef struct {
941     size_t  idx; /* index into an array of 32 bit words */
942     uint8_t bit; /* index _into_ the 32 bit word, thus just uint8 */
943 } longbit;
944 #define LONGBIT(bit) { ((bit)/32), ((bit)%32) }
945 #else
946 typedef uint32_t longbit;
947 #define LONGBIT(bit) (bit)
948 #endif
949
950 /*===================================================================*/
951 /*============================= opts.c ==============================*/
952 /*===================================================================*/
953 typedef struct {
954     const char *name;
955     longbit     bit;
956 } opts_flag_def;
957
958 bool opts_setflag  (const char *, bool);
959 bool opts_setwarn  (const char *, bool);
960 bool opts_setwerror(const char *, bool);
961 bool opts_setoptim (const char *, bool);
962
963 void opts_init         (const char *, int, size_t);
964 void opts_set          (uint32_t   *, size_t, bool);
965 void opts_setoptimlevel(unsigned int);
966 void opts_ini_init     (const char *);
967
968 enum {
969 # define GMQCC_TYPE_FLAGS
970 # define GMQCC_DEFINE_FLAG(X) X,
971 #  include "opts.def"
972     COUNT_FLAGS
973 };
974 static const opts_flag_def opts_flag_list[] = {
975 # define GMQCC_TYPE_FLAGS
976 # define GMQCC_DEFINE_FLAG(X) { #X, LONGBIT(X) },
977 #  include "opts.def"
978     { NULL, LONGBIT(0) }
979 };
980
981 enum {
982 # define GMQCC_TYPE_WARNS
983 # define GMQCC_DEFINE_FLAG(X) WARN_##X,
984 #  include "opts.def"
985     COUNT_WARNINGS
986 };
987 static const opts_flag_def opts_warn_list[] = {
988 # define GMQCC_TYPE_WARNS
989 # define GMQCC_DEFINE_FLAG(X) { #X, LONGBIT(WARN_##X) },
990 #  include "opts.def"
991     { NULL, LONGBIT(0) }
992 };
993
994 enum {
995 # define GMQCC_TYPE_OPTIMIZATIONS
996 # define GMQCC_DEFINE_FLAG(NAME, MIN_O) OPTIM_##NAME,
997 #  include "opts.def"
998     COUNT_OPTIMIZATIONS
999 };
1000 static const opts_flag_def opts_opt_list[] = {
1001 # define GMQCC_TYPE_OPTIMIZATIONS
1002 # define GMQCC_DEFINE_FLAG(NAME, MIN_O) { #NAME, LONGBIT(OPTIM_##NAME) },
1003 #  include "opts.def"
1004     { NULL, LONGBIT(0) }
1005 };
1006 static const unsigned int opts_opt_oflag[] = {
1007 # define GMQCC_TYPE_OPTIMIZATIONS
1008 # define GMQCC_DEFINE_FLAG(NAME, MIN_O) MIN_O,
1009 #  include "opts.def"
1010     0
1011 };
1012 extern unsigned int opts_optimizationcount[COUNT_OPTIMIZATIONS];
1013
1014 /* other options: */
1015 typedef enum {
1016     COMPILER_QCC,     /* circa  QuakeC */
1017     COMPILER_FTEQCC,  /* fteqcc QuakeC */
1018     COMPILER_QCCX,    /* qccx   QuakeC */
1019     COMPILER_GMQCC    /* this   QuakeC */
1020 } opts_std_t;
1021
1022 typedef struct {
1023     uint32_t    O;              /* -Ox           */
1024     const char *output;         /* -o file       */
1025     bool        g;              /* -g            */
1026     opts_std_t  standard;       /* -std=         */
1027     bool        debug;          /* -debug        */
1028     bool        memchk;         /* -memchk       */
1029     bool        dumpfin;        /* -dumpfin      */
1030     bool        dump;           /* -dump         */
1031     bool        forcecrc;       /* --force-crc=  */
1032     uint16_t    forced_crc;     /* --force-crc=  */
1033     bool        pp_only;        /* -E            */
1034     size_t      max_array_size; /* --max-array=  */
1035
1036     uint32_t flags       [1 + (COUNT_FLAGS         / 32)];
1037     uint32_t warn        [1 + (COUNT_WARNINGS      / 32)];
1038     uint32_t werror      [1 + (COUNT_WARNINGS      / 32)];
1039     uint32_t optimization[1 + (COUNT_OPTIMIZATIONS / 32)];
1040 } opts_cmd_t;
1041
1042 extern opts_cmd_t opts;
1043
1044 /*===================================================================*/
1045 #define OPTS_FLAG(i)         (!! (opts.flags       [(i)/32] & (1<< ((i)%32))))
1046 #define OPTS_WARN(i)         (!! (opts.warn        [(i)/32] & (1<< ((i)%32))))
1047 #define OPTS_WERROR(i)       (!! (opts.werror      [(i)/32] & (1<< ((i)%32))))
1048 #define OPTS_OPTIMIZATION(i) (!! (opts.optimization[(i)/32] & (1<< ((i)%32))))
1049
1050 #endif