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