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