]> git.xonotic.org Git - xonotic/gmqcc.git/blob - gmqcc.h
Removing unused _tokennames from lexer.h
[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 2
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 FILE *util_fopen(const char *filename, const char *mode);
193
194 void *util_memory_a      (size_t,       unsigned int, const char *);
195 void  util_memory_d      (void       *, unsigned int, const char *);
196 void *util_memory_r      (void       *, size_t,       unsigned int, const char *);
197 void  util_meminfo       ();
198
199 bool  util_filexists     (const char *);
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 uint16_t util_crc16(uint16_t crc, const char *data, size_t len);
216 uint32_t util_crc32(uint32_t crc, const char *data, size_t len);
217
218 #ifdef NOTRACK
219 #    define mem_a(x)    malloc (x)
220 #    define mem_d(x)    free   (x)
221 #    define mem_r(x, n) realloc(x, n)
222 #else
223 #    define mem_a(x)    util_memory_a((x), __LINE__, __FILE__)
224 #    define mem_d(x)    util_memory_d((x), __LINE__, __FILE__)
225 #    define mem_r(x, n) util_memory_r((x), (n), __LINE__, __FILE__)
226 #endif
227
228 /*
229  * TODO: make these safer to use.  Currently this only works on
230  * x86 and x86_64, some systems will likely not like this. Such
231  * as BE systems.
232  */
233 #define FLT2INT(Y) *((int32_t*)&(Y))
234 #define INT2FLT(Y) *((float  *)&(Y))
235
236 /* New flexible vector implementation from Dale */
237 #define _vec_raw(A) (((size_t*)(void*)(A)) - 2)
238 #define _vec_beg(A) (_vec_raw(A)[0])
239 #define _vec_end(A) (_vec_raw(A)[1])
240 #define _vec_needsgrow(A,N) ((!(A)) || (_vec_end(A) + (N) >= _vec_beg(A)))
241 #define _vec_mightgrow(A,N) (_vec_needsgrow((A), (N)) ? (void)_vec_forcegrow((A),(N)) : (void)0)
242 #define _vec_forcegrow(A,N) _util_vec_grow(((void**)&(A)), (N), sizeof(*(A)))
243 #define _vec_remove(A,S,I,N) (memmove((char*)(A)+(I)*(S),(char*)(A)+((I)+(N))*(S),(S)*(vec_size(A)-(I)-(N))), _vec_end(A)-=(N))
244 void _util_vec_grow(void **a, size_t i, size_t s);
245 /* exposed interface */
246 #define vec_free(A)          ((A) ? (mem_d((void*)_vec_raw(A)), (A) = NULL) : 0)
247 #define vec_push(A,V)        (_vec_mightgrow((A),1), (A)[_vec_end(A)++] = (V))
248 #define vec_size(A)          ((A) ? _vec_end(A) : 0)
249 #define vec_add(A,N)         (_vec_mightgrow((A),(N)), _vec_end(A)+=(N), &(A)[_vec_end(A)-(N)])
250 #define vec_last(A)          ((A)[_vec_end(A)-1])
251 #define vec_append(A,N,S)    memcpy(vec_add((A), (N)), (S), N * sizeof(*(S)))
252 #define vec_remove(A,I,N)    _vec_remove((A), sizeof(*(A)), (I), (N))
253 #define vec_pop(A)           vec_remove((A), _vec_end(A)-1, 1)
254 /* these are supposed to NOT reallocate */
255 #define vec_shrinkto(A,N)    (_vec_end(A) = (N))
256 #define vec_shrinkby(A,N)    (_vec_end(A) -= (N))
257
258 /*===================================================================*/
259 /*=========================== code.c ================================*/
260 /*===================================================================*/
261
262 /* Note: if you change the order, fix type_sizeof in ir.c */
263 enum {
264     TYPE_VOID     ,
265     TYPE_STRING   ,
266     TYPE_FLOAT    ,
267     TYPE_VECTOR   ,
268     TYPE_ENTITY   ,
269     TYPE_FIELD    ,
270     TYPE_FUNCTION ,
271     TYPE_POINTER  ,
272     TYPE_INTEGER  ,
273     TYPE_VARIANT  ,
274     TYPE_STRUCT   ,
275     TYPE_UNION    ,
276     TYPE_ARRAY    ,
277
278     TYPE_COUNT
279 };
280
281 extern const char *type_name[TYPE_COUNT];
282
283 extern size_t type_sizeof[TYPE_COUNT];
284 extern uint16_t type_store_instr[TYPE_COUNT];
285 extern uint16_t field_store_instr[TYPE_COUNT];
286 /* could use type_store_instr + INSTR_STOREP_F - INSTR_STORE_F
287  * but this breaks when TYPE_INTEGER is added, since with the enhanced
288  * instruction set, the old ones are left untouched, thus the _I instructions
289  * are at a seperate place.
290  */
291 extern uint16_t type_storep_instr[TYPE_COUNT];
292 /* other useful lists */
293 extern uint16_t type_eq_instr[TYPE_COUNT];
294 extern uint16_t type_ne_instr[TYPE_COUNT];
295 extern uint16_t type_not_instr[TYPE_COUNT];
296
297 typedef struct {
298     uint32_t offset;      /* Offset in file of where data begins  */
299     uint32_t length;      /* Length of section (how many of)      */
300 } prog_section;
301
302 typedef struct {
303     uint32_t     version;      /* Program version (6)     */
304     uint16_t     crc16;        /* What is this?           */
305     uint16_t     skip;         /* see propsal.txt         */
306
307     prog_section statements;   /* prog_section_statement  */
308     prog_section defs;         /* prog_section_def        */
309     prog_section fields;       /* prog_section_field      */
310     prog_section functions;    /* prog_section_function   */
311     prog_section strings;      /* What is this?           */
312     prog_section globals;      /* What is this?           */
313     uint32_t     entfield;     /* Number of entity fields */
314 } prog_header;
315
316 /*
317  * Each paramater incerements by 3 since vector types hold
318  * 3 components (x,y,z).
319  */
320 #define OFS_NULL      0
321 #define OFS_RETURN    1
322 #define OFS_PARM0     (OFS_RETURN+3)
323 #define OFS_PARM1     (OFS_PARM0 +3)
324 #define OFS_PARM2     (OFS_PARM1 +3)
325 #define OFS_PARM3     (OFS_PARM2 +3)
326 #define OFS_PARM4     (OFS_PARM3 +3)
327 #define OFS_PARM5     (OFS_PARM4 +3)
328 #define OFS_PARM6     (OFS_PARM5 +3)
329 #define OFS_PARM7     (OFS_PARM6 +3)
330
331 typedef struct {
332     uint16_t opcode;
333
334     /* operand 1 */
335     union {
336         int16_t  s1; /* signed   */
337         uint16_t u1; /* unsigned */
338     } o1;
339     /* operand 2 */
340     union {
341         int16_t  s1; /* signed   */
342         uint16_t u1; /* unsigned */
343     } o2;
344     /* operand 3 */
345     union {
346         int16_t  s1; /* signed   */
347         uint16_t u1; /* unsigned */
348     } o3;
349
350     /*
351      * This is the same as the structure in darkplaces
352      * {
353      *     unsigned short op;
354      *     short          a,b,c;
355      * }
356      * But this one is more sane to work with, and the
357      * type sizes are guranteed.
358      */
359 } prog_section_statement;
360
361 typedef struct {
362     /* The types:
363      * 0 = ev_void
364      * 1 = ev_string
365      * 2 = ev_float
366      * 3 = ev_vector
367      * 4 = ev_entity
368      * 5 = ev_field
369      * 6 = ev_function
370      * 7 = ev_pointer -- engine only
371      * 8 = ev_bad     -- engine only
372      */
373     uint16_t type;
374     uint16_t offset;
375     uint32_t name;
376 } prog_section_both;
377 typedef prog_section_both prog_section_def;
378 typedef prog_section_both prog_section_field;
379
380 /* this is ORed to the type */
381 #define DEF_SAVEGLOBAL (1<<15)
382 #define DEF_TYPEMASK   ((1<<15)-1)
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, /* NOTE: the float operands must NOT be at the same locations: A != C */
405     INSTR_MUL_VF, /* and here: B != C */
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 extern prog_section_statement *code_statements;
485 extern prog_section_def       *code_defs;
486 extern prog_section_field     *code_fields;
487 extern prog_section_function  *code_functions;
488 extern int                    *code_globals;
489 extern char                   *code_chars;
490 extern uint16_t code_crc;
491
492 typedef float   qcfloat;
493 typedef int32_t qcint;
494
495 /*
496  * code_write -- writes out the compiled file
497  * code_init  -- prepares the code file
498  */
499 bool     code_write       (const char *filename);
500 void     code_init        ();
501 uint32_t code_genstring   (const char *string);
502 uint32_t code_cachedstring(const char *string);
503 qcint    code_alloc_field (size_t qcsize);
504
505 /*===================================================================*/
506 /*============================ con.c ================================*/
507 /*===================================================================*/
508 enum {
509     CON_BLACK   = 30,
510     CON_RED,
511     CON_GREEN,
512     CON_BROWN,
513     CON_BLUE,
514     CON_MAGENTA,
515     CON_CYAN ,
516     CON_WHITE
517 };
518
519 /* message level */
520 enum {
521     LVL_MSG,
522     LVL_WARNING,
523     LVL_ERROR
524 };
525
526
527 void con_vprintmsg (int level, const char *name, size_t line, const char *msgtype, const char *msg, va_list ap);
528 void con_printmsg  (int level, const char *name, size_t line, const char *msgtype, const char *msg, ...);
529 void con_cvprintmsg(void *ctx, int lvl, const char *msgtype, const char *msg, va_list ap);
530 void con_cprintmsg (void *ctx, int lvl, const char *msgtype, const char *msg, ...);
531
532 void con_close();
533 void con_color(int state);
534 void con_init ();
535 void con_reset();
536 int  con_change(const char *out, const char *err);
537 int  con_verr  (const char *fmt, va_list va);
538 int  con_vout  (const char *fmt, va_list va);
539 int  con_err   (const char *fmt, ...);
540 int  con_out   (const char *fmt, ...);
541
542 /*===================================================================*/
543 /*========================= assembler.c =============================*/
544 /*===================================================================*/
545 static const struct {
546     const char  *m; /* menomic     */
547     const size_t o; /* operands    */
548     const size_t l; /* menomic len */
549 } asm_instr[] = {
550     { "DONE"      , 1, 4 },
551     { "MUL_F"     , 3, 5 },
552     { "MUL_V"     , 3, 5 },
553     { "MUL_FV"    , 3, 6 },
554     { "MUL_VF"    , 3, 6 },
555     { "DIV"       , 0, 3 },
556     { "ADD_F"     , 3, 5 },
557     { "ADD_V"     , 3, 5 },
558     { "SUB_F"     , 3, 5 },
559     { "SUB_V"     , 3, 5 },
560     { "EQ_F"      , 0, 4 },
561     { "EQ_V"      , 0, 4 },
562     { "EQ_S"      , 0, 4 },
563     { "EQ_E"      , 0, 4 },
564     { "EQ_FNC"    , 0, 6 },
565     { "NE_F"      , 0, 4 },
566     { "NE_V"      , 0, 4 },
567     { "NE_S"      , 0, 4 },
568     { "NE_E"      , 0, 4 },
569     { "NE_FNC"    , 0, 6 },
570     { "LE"        , 0, 2 },
571     { "GE"        , 0, 2 },
572     { "LT"        , 0, 2 },
573     { "GT"        , 0, 2 },
574     { "FIELD_F"   , 0, 7 },
575     { "FIELD_V"   , 0, 7 },
576     { "FIELD_S"   , 0, 7 },
577     { "FIELD_ENT" , 0, 9 },
578     { "FIELD_FLD" , 0, 9 },
579     { "FIELD_FNC" , 0, 9 },
580     { "ADDRESS"   , 0, 7 },
581     { "STORE_F"   , 0, 7 },
582     { "STORE_V"   , 0, 7 },
583     { "STORE_S"   , 0, 7 },
584     { "STORE_ENT" , 0, 9 },
585     { "STORE_FLD" , 0, 9 },
586     { "STORE_FNC" , 0, 9 },
587     { "STOREP_F"  , 0, 8 },
588     { "STOREP_V"  , 0, 8 },
589     { "STOREP_S"  , 0, 8 },
590     { "STOREP_ENT", 0, 10},
591     { "STOREP_FLD", 0, 10},
592     { "STOREP_FNC", 0, 10},
593     { "RETURN"    , 0, 6 },
594     { "NOT_F"     , 0, 5 },
595     { "NOT_V"     , 0, 5 },
596     { "NOT_S"     , 0, 5 },
597     { "NOT_ENT"   , 0, 7 },
598     { "NOT_FNC"   , 0, 7 },
599     { "IF"        , 0, 2 },
600     { "IFNOT"     , 0, 5 },
601     { "CALL0"     , 1, 5 },
602     { "CALL1"     , 2, 5 },
603     { "CALL2"     , 3, 5 },
604     { "CALL3"     , 4, 5 },
605     { "CALL4"     , 5, 5 },
606     { "CALL5"     , 6, 5 },
607     { "CALL6"     , 7, 5 },
608     { "CALL7"     , 8, 5 },
609     { "CALL8"     , 9, 5 },
610     { "STATE"     , 0, 5 },
611     { "GOTO"      , 0, 4 },
612     { "AND"       , 0, 3 },
613     { "OR"        , 0, 2 },
614     { "BITAND"    , 0, 6 },
615     { "BITOR"     , 0, 5 },
616
617     { "END"       , 0, 3 } /* virtual assembler instruction */
618 };
619 /*===================================================================*/
620 /*============================= ir.c ================================*/
621 /*===================================================================*/
622
623 enum store_types {
624     store_global,
625     store_local,  /* local, assignable for now, should get promoted later */
626     store_param,  /* parameters, they are locals with a fixed position */
627     store_value,  /* unassignable */
628     store_return  /* unassignable, at OFS_RETURN */
629 };
630
631 typedef struct {
632     qcfloat x, y, z;
633 } vector;
634
635 vector  vec3_add  (vector, vector);
636 vector  vec3_sub  (vector, vector);
637 qcfloat vec3_mulvv(vector, vector);
638 vector  vec3_mulvf(vector, float);
639
640 /*
641  * A shallow copy of a lex_file to remember where which ast node
642  * came from.
643  */
644 typedef struct {
645     const char *file;
646     size_t      line;
647 } lex_ctx;
648
649 /*===================================================================*/
650 /*============================= exec.c ==============================*/
651 /*===================================================================*/
652
653 /* darkplaces has (or will have) a 64 bit prog loader
654  * where the 32 bit qc program is autoconverted on load.
655  * Since we may want to support that as well, let's redefine
656  * float and int here.
657  */
658 typedef union {
659     qcint   _int;
660     qcint    string;
661     qcint    function;
662     qcint    edict;
663     qcfloat _float;
664     qcfloat vector[3];
665     qcint   ivector[3];
666 } qcany;
667
668 typedef char qcfloat_size_is_correct [sizeof(qcfloat) == 4 ?1:-1];
669 typedef char qcint_size_is_correct   [sizeof(qcint)   == 4 ?1:-1];
670
671 enum {
672     VMERR_OK,
673     VMERR_TEMPSTRING_ALLOC,
674
675     VMERR_END
676 };
677
678 #define VM_JUMPS_DEFAULT 1000000
679
680 /* execute-flags */
681 #define VMXF_DEFAULT 0x0000     /* default flags - nothing */
682 #define VMXF_TRACE   0x0001     /* trace: print statements before executing */
683 #define VMXF_PROFILE 0x0002     /* profile: increment the profile counters */
684
685 struct qc_program_s;
686
687 typedef int (*prog_builtin)(struct qc_program_s *prog);
688
689 typedef struct {
690     qcint                  stmt;
691     size_t                 localsp;
692     prog_section_function *function;
693 } qc_exec_stack;
694
695 typedef struct qc_program_s {
696     char           *filename;
697
698     prog_section_statement *code;
699     prog_section_def       *defs;
700     prog_section_def       *fields;
701     prog_section_function  *functions;
702     char                   *strings;
703     qcint                  *globals;
704     qcint                  *entitydata;
705     bool                   *entitypool;
706
707     const char*            *function_stack;
708
709     uint16_t crc16;
710
711     size_t tempstring_start;
712     size_t tempstring_at;
713
714     qcint  vmerror;
715
716     size_t *profile;
717
718     prog_builtin *builtins;
719     size_t        builtins_count;
720
721     /* size_t ip; */
722     qcint  entities;
723     size_t entityfields;
724     bool   allowworldwrites;
725
726     qcint         *localstack;
727     qc_exec_stack *stack;
728     size_t statement;
729
730     size_t xflags;
731
732     int    argc; /* current arg count for debugging */
733 } qc_program;
734
735 qc_program* prog_load(const char *filename);
736 void        prog_delete(qc_program *prog);
737
738 bool prog_exec(qc_program *prog, prog_section_function *func, size_t flags, long maxjumps);
739
740 char*             prog_getstring (qc_program *prog, qcint str);
741 prog_section_def* prog_entfield  (qc_program *prog, qcint off);
742 prog_section_def* prog_getdef    (qc_program *prog, qcint off);
743 qcany*            prog_getedict  (qc_program *prog, qcint e);
744 qcint             prog_tempstring(qc_program *prog, const char *_str);
745
746
747 /*===================================================================*/
748 /*===================== parser.c commandline ========================*/
749 /*===================================================================*/
750
751 bool parser_init          ();
752 bool parser_compile_file  (const char *filename);
753 bool parser_compile_string(const char *name, const char *str);
754 bool parser_finish        (const char *output);
755 void parser_cleanup       ();
756 /* There's really no need to strlen() preprocessed files */
757 bool parser_compile_string_len(const char *name, const char *str, size_t len);
758
759 /*===================================================================*/
760 /*====================== ftepp.c commandline ========================*/
761 /*===================================================================*/
762 bool ftepp_init             ();
763 bool ftepp_preprocess_file  (const char *filename);
764 bool ftepp_preprocess_string(const char *name, const char *str);
765 void ftepp_finish           ();
766 const char *ftepp_get       ();
767 void ftepp_flush            ();
768
769 /*===================================================================*/
770 /*======================= main.c commandline ========================*/
771 /*===================================================================*/
772
773 #if 0
774 /* Helpers to allow for a whole lot of flags. Otherwise we'd limit
775  * to 32 or 64 -f options...
776  */
777 typedef struct {
778     size_t  idx; /* index into an array of 32 bit words */
779     uint8_t bit; /* index _into_ the 32 bit word, thus just uint8 */
780 } longbit;
781 #define LONGBIT(bit) { ((bit)/32), ((bit)%32) }
782 #else
783 typedef uint32_t longbit;
784 #define LONGBIT(bit) (bit)
785 #endif
786
787 /* Used to store the list of flags with names */
788 typedef struct {
789     const char *name;
790     longbit    bit;
791 } opts_flag_def;
792
793 /*===================================================================*/
794 /* list of -f flags, like -fdarkplaces-string-table-bug */
795 enum {
796 # define GMQCC_TYPE_FLAGS
797 # define GMQCC_DEFINE_FLAG(X) X,
798 #  include "opts.def"
799     COUNT_FLAGS
800 };
801 static const opts_flag_def opts_flag_list[] = {
802 # define GMQCC_TYPE_FLAGS
803 # define GMQCC_DEFINE_FLAG(X) { #X, LONGBIT(X) },
804 #  include "opts.def"
805     { NULL, LONGBIT(0) }
806 };
807
808 enum {
809 # define GMQCC_TYPE_WARNS
810 # define GMQCC_DEFINE_FLAG(X) WARN_##X,
811 #  include "opts.def"
812     COUNT_WARNINGS
813 };
814 static const opts_flag_def opts_warn_list[] = {
815 # define GMQCC_TYPE_WARNS
816 # define GMQCC_DEFINE_FLAG(X) { #X, LONGBIT(WARN_##X) },
817 #  include "opts.def"
818     { NULL, LONGBIT(0) }
819 };
820
821 /* other options: */
822 enum {
823     COMPILER_QCC,     /* circa  QuakeC */
824     COMPILER_FTEQCC,  /* fteqcc QuakeC */
825     COMPILER_QCCX,    /* qccx   QuakeC */
826     COMPILER_GMQCC    /* this   QuakeC */
827 };
828 extern uint32_t    opts_O;      /* -Ox */
829 extern const char *opts_output; /* -o file */
830 extern int         opts_standard;
831 extern bool        opts_debug;
832 extern bool        opts_memchk;
833 extern bool        opts_dumpfin;
834 extern bool        opts_dump;
835 extern bool        opts_werror;
836 extern bool        opts_forcecrc;
837 extern uint16_t    opts_forced_crc;
838 extern bool        opts_pp_only;
839 extern size_t      opts_max_array_size;
840
841 /*===================================================================*/
842 #define OPTS_FLAG(i) (!! (opts_flags[(i)/32] & (1<< ((i)%32))))
843 extern uint32_t opts_flags[1 + (COUNT_FLAGS / 32)];
844 #define OPTS_WARN(i) (!! (opts_warn[(i)/32] & (1<< ((i)%32))))
845 extern uint32_t opts_warn[1 + (COUNT_WARNINGS / 32)];
846
847 #endif