]> git.xonotic.org Git - xonotic/gmqcc.git/blob - gmqcc.h
Merge branch 'master' into cooking
[xonotic/gmqcc.git] / gmqcc.h
1 /*
2  * Copyright (C) 2012, 2013
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 <stdarg.h>
27 #include <stddef.h>
28 #include <time.h>
29
30 #define GMQCC_VERSION_MAJOR 0
31 #define GMQCC_VERSION_MINOR 3
32 #define GMQCC_VERSION_PATCH 6
33 #define GMQCC_VERSION ((GMQCC_VERSION_MAJOR<<16)|(GMQCC_VERSION_MINOR<<8)|GMQCC_VERSION_PATCH)
34
35 #ifdef GMQCC_VERSION_TYPE_RELEASE
36 #    ifdef GMQCC_GITINFO
37 #        define GMQCC_DEV_VERSION_STRING "git build: " GMQCC_GITINFO "\n"
38 #    elif defined(GMQCC_VERSION_TYPE_DEVEL)
39 #        define GMQCC_DEV_VERSION_STRING "development build\n"
40 #    else
41 #        define GMQCC_DEV_VERSION_STRING
42 #    endif /*! GMQCC_GITINGO */
43 #else
44 #    define GMQCC_DEV_VERSION_STRING
45 #endif
46
47 #define GMQCC_STRINGIFY(x) #x
48 #define GMQCC_IND_STRING(x) GMQCC_STRINGIFY(x)
49 #define GMQCC_FULL_VERSION_STRING \
50 "GMQCC " \
51 GMQCC_IND_STRING(GMQCC_VERSION_MAJOR) "." \
52 GMQCC_IND_STRING(GMQCC_VERSION_MINOR) "." \
53 GMQCC_IND_STRING(GMQCC_VERSION_PATCH) \
54 " Built " __DATE__ " " __TIME__ \
55 "\n" GMQCC_DEV_VERSION_STRING
56
57 #ifndef __cplusplus
58 #   define false (unsigned char)(0)
59 #   define true  (unsigned char)(1)
60     typedef unsigned char bool;
61 #endif
62
63 #if defined(__GNUC__) || defined(__CLANG__)
64 #   include <stdint.h>
65 #   if (__GNUC__ >= 2) || defined(__CLANG__)
66 #       define GMQCC_NORETURN    __attribute__((noreturn))
67 #       define GMQCC_FORCEINLINE __attribute__((always_inline))
68 #       define GMQCC_INLINE      __inline
69 #   endif
70 #   define GMQCC_LIKELY(X)   __builtin_expect((X), 1)
71 #   define GMQCC_UNLIKELY(X) __builtin_expect((X), 0)
72 #   define GMQCC_WARN        __attribute__((warn_unused_result))
73 #   define GMQCC_USED        __attribute__((used))
74 #   define GMQCC_RESTRICT    __restrict__
75 #else
76 #   ifdef _MSC_VER
77         /* conversion from 'int' to 'float', possible loss of data */
78 #       pragma warning(disable : 4244)
79
80         typedef unsigned __int8  uint8_t;
81         typedef unsigned __int16 uint16_t;
82         typedef unsigned __int32 uint32_t;
83         typedef unsigned __int64 uint64_t;
84         typedef __int16          int16_t;
85         typedef __int32          int32_t;
86         typedef __int64          int64_t;
87 #       define GMQCC_NORETURN    __declspec(noreturn)
88 #       define GMQCC_FORCEINLINE __forceinline
89 #       define GMQCC_INLINE      __inline
90 #       define GMQCC_RESTRICT    __restrict
91 #   else
92 #       define GMQCC_NORETURN
93 #       define GMQCC_FORCEINLINE
94 #       define GMQCC_INLINE
95 #       define GMQCC_RESTRICT
96 #   endif
97 #   define GMQCC_LIKELY(X)   (X)
98 #   define GMQCC_UNLIKELY(X) (X)
99 #   define GMQCC_WARN
100 #   define GMQCC_USED
101 #endif
102
103 #define GMQCC_BYTE_ORDER_LITTLE 1234
104 #define GMQCC_BYTE_ORDER_BIG    4321
105
106 #if defined (__GNUC__) || defined (__GNU_LIBRARY__)
107 #   if defined (__FreeBSD__) || defined (__OpenBSD__)
108 #       include <sys/endian.h>
109 #   elif defined (BSD) && (BSD >= 199103) || defined (__DJGPP__) || defined (__CYGWIN32__)
110 #       include <machine/endian.h>
111 #   elif defined (__APPLE__)
112 #       if defined (__BIG_ENDIAN__) && !defined(BIG_ENDIAN)
113 #           define BIG_ENDIAN
114 #       elif defined (__LITTLE_ENDIAN__) && !defined (LITTLE_ENDIAN)
115 #           define LITTLE_ENDIAN
116 #       endif /*! defined (__BIG_ENDIAN__) && !defined(BIG_ENDIAN) */
117 #   elif !defined (__MINGW32__)
118 #       include <endian.h>
119 #       if !defined (__BEOS__)
120 #           include <byteswap.h>
121 #       endif /*! !definde (__BEOS__) */
122 #   endif /*! defined (__FreeBSD__) || defined (__OpenBSD__) */
123 #endif /*! defined (__GNUC__) || defined (__GNU_LIBRARY__) */
124 #if !defined(PLATFORM_BYTE_ORDER)
125 #   if defined (LITTLE_ENDIAN) || defined (BIG_ENDIAN)
126 #       if defined (LITTLE_ENDIAN) && !defined(BIG_ENDIAN)
127 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_LITTLE
128 #       elif !defined (LITTLE_ENDIAN) && defined (BIG_ENDIAN)
129 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_BIG
130 #       elif defined (BYTE_ORDER) && (BYTE_ORDER == LITTLE_ENDIAN)
131 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_LITTLE
132 #       elif defined (BYTE_ORDER) && (BYTE_ORDER == BIG_ENDIAN)
133 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_BIG
134 #       endif /*! defined (LITTLE_ENDIAN) && !defined(BIG_ENDIAN) */
135 #   elif defined (_LITTLE_ENDIAN) || defined (_BIG_ENDIAN)
136 #       if defined (_LITTLE_ENDIAN) && !defined(_BIG_ENDIAN)
137 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_LITTLE
138 #       elif !defined (_LITTLE_ENDIAN) && defined (_BIG_ENDIAN)
139 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_BIG
140 #       elif defined (_BYTE_ORDER) && (_BYTE_ORDER == _LITTLE_ENDIAN)
141 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_LITTLE
142 #       elif defined (_BYTE_ORDER) && (_BYTE_ORDER == _BIG_ENDIAN)
143 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_BIG
144 #       endif /*! defined (_LITTLE_ENDIAN) && !defined(_BIG_ENDIAN) */
145 #   elif defined (__LITTLE_ENDIAN__) || defined (__BIG_ENDIAN__)
146 #       if defined (__LITTLE_ENDIAN__) && !defined (__BIG_ENDIAN__)
147 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_LITTLE
148 #       elif !defined (__LITTLE_ENDIAN__) && defined (__BIG_ENDIAN__)
149 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_BIG
150 #       elif defined (__BYTE_ORDER__) && (__BYTE_ORDER__ == __LITTLE_ENDIAN__)
151 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_LITTLE
152 #       elif defined (__BYTE_ORDER__) && (__BYTE_ORDER__ == __BIG_ENDIAN__)
153 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_BIG
154 #       endif /*! defined (__LITTLE_ENDIAN__) && !defined (__BIG_ENDIAN__) */
155 #   endif /*! defined(LITTLE_ENDIAN) || defined (BIG_ENDIAN) */
156 #endif /*! !defined(PLATFORM_BYTE_ORDER) */
157 #if !defined (PLATFORM_BYTE_ORDER)
158 #   if   defined (__alpha__) || defined (__alpha)    || defined (i386)       || \
159          defined (__i386__)  || defined (_M_I86)     || defined (_M_IX86)    || \
160          defined (__OS2__)   || defined (sun386)     || defined (__TURBOC__) || \
161          defined (vax)       || defined (vms)        || defined (VMS)        || \
162          defined (__VMS)     || defined (__x86_64__) || defined (_M_IA64)    || \
163          defined (_M_X64)    || defined (__i386)     || defined (__x86_64)
164 #       define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_LITTLE
165 #   elif defined (AMIGA)     || defined (applec)     || defined (__AS400__)  || \
166          defined (_CRAY)     || defined (__hppa)     || defined (__hp9000)   || \
167          defined (ibm370)    || defined (mc68000)    || defined (m68k)       || \
168          defined (__MRC__)   || defined (__MVS__)    || defined (__MWERKS__) || \
169          defined (sparc)     || defined (__sparc)    || defined (SYMANTEC_C) || \
170          defined (__TANDEM)  || defined (THINK_C)    || defined (__VMCMS__)  || \
171          defined (__PPC__)   || defined (__PPC)      || defined (PPC)
172 #       define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_BIG
173 #   else
174 #       define PLATFORM_BYTE_ORDER -1
175 #   endif
176 #endif
177
178 #define GMQCC_ARRAY_COUNT(X) (sizeof(X) / sizeof((X)[0]))
179
180 /* stat.c */
181 void  stat_info          (void);
182 char *stat_mem_strdup    (const char *, size_t,         const char *, bool);
183 void *stat_mem_reallocate(void *,       size_t, size_t, const char *, const char *);
184 void  stat_mem_deallocate(void *);
185 void *stat_mem_allocate  (size_t, size_t, const char *, const char *);
186
187 #define mem_a(SIZE)              stat_mem_allocate  ((SIZE), __LINE__, __FILE__, #SIZE)
188 #define mem_d(PTRN)              stat_mem_deallocate((void*)(PTRN))
189 #define mem_r(PTRN, SIZE)        stat_mem_reallocate((void*)(PTRN), (SIZE), __LINE__, __FILE__, #SIZE)
190 #define mem_af(SIZE, FILE, LINE) stat_mem_allocate  ((SIZE), (LINE), (FILE), #SIZE)
191
192 /* TODO: rename to mem variations */
193 #define util_strdup(SRC)         stat_mem_strdup((char*)(SRC), __LINE__, __FILE__, false)
194 #define util_strdupe(SRC)        stat_mem_strdup((char*)(SRC), __LINE__, __FILE__, true)
195
196 /* util.c */
197
198 /*
199  * Microsoft implements against the spec versions of ctype.h. Which
200  * means what ever the current set locale is will render the actual
201  * results of say isalpha('A') wrong for what ever retarded locale
202  * is used. Simalerly these are also implemented inefficently on
203  * some toolchains and end up becoming actual library calls. Perhaps
204  * this is why tools like yacc provide their own? Regardless implementing
205  * these as functions is equally as silly, the call overhead is not
206  * justified when this could happen on every character from an input
207  * stream. We provide our own as macros for absolute inlinability.
208  */
209 #define util_isalpha(a) ((((unsigned)(a)|32)-'a') < 26)
210 #define util_isdigit(a) (((unsigned)(a)-'0') < 10)
211 #define util_islower(a) (((unsigned)(a)-'a') < 26)
212 #define util_isupper(a) (((unsigned)(a)-'A') < 26)
213 #define util_isprint(a) (((unsigned)(a)-0x20) < 0x5F)
214 #define util_isspace(a) (((a) >= 9 && (a) <= 13) || (a) == ' ')
215
216 bool  util_strupper      (const char *);
217 bool  util_strdigit      (const char *);
218 void  util_endianswap    (void *, size_t, unsigned int);
219
220 size_t util_strtocmd         (const char *, char *, size_t);
221 size_t util_strtononcmd      (const char *, char *, size_t);
222 size_t util_optimizationtostr(const char *, char *, size_t);
223
224 uint16_t util_crc16(uint16_t crc, const char *data, size_t len);
225
226 void     util_seed(uint32_t);
227 uint32_t util_rand(void);
228
229 int      util_asprintf (char **ret, const char *fmt, ...);
230 int      util_sscanf   (const char *str, const char *format, ...);
231 char    *util_strncpy  (char *dest, const char *src, size_t n);
232 char    *util_strncat  (char *dest, const char *src, size_t n);
233 char    *util_strcat   (char *dest, const char *src);
234 const char *util_strerror(int err);
235
236 const struct tm *util_localtime(const time_t *timer);
237 const char      *util_ctime    (const time_t *timer);
238
239 typedef struct fs_file_s fs_file_t;
240
241 bool             util_isatty(fs_file_t *);
242
243 /*
244  * A flexible vector implementation: all vector pointers contain some
245  * data about themselfs exactly - sizeof(vector_t) behind the pointer
246  * this data is represented in the structure below.  Doing this allows
247  * us to use the array [] to access individual elements from the vector
248  * opposed to using set/get methods.
249  */
250 typedef struct {
251     size_t  allocated;
252     size_t  used;
253
254     /* can be extended now! whoot */
255 } vector_t;
256
257 /* hidden interface */
258 void _util_vec_grow(void **a, size_t i, size_t s);
259 #define GMQCC_VEC_WILLGROW(X,Y) ( \
260     ((!(X) || vec_meta(X)->used + Y >= vec_meta(X)->allocated)) ? \
261         (void)_util_vec_grow(((void**)&(X)), (Y), sizeof(*(X))) : \
262         (void)0                                                   \
263 )
264
265 /* exposed interface */
266 #define vec_meta(A)       (((vector_t*)((void*)A)) - 1)
267 #define vec_free(A)       ((void)((A) ? (mem_d((void*)vec_meta(A)), (A) = NULL) : 0))
268 #define vec_push(A,V)     (GMQCC_VEC_WILLGROW((A),1), (A)[vec_meta(A)->used++] = (V))
269 #define vec_size(A)       ((A) ? vec_meta(A)->used : 0)
270 #define vec_add(A,N)      (GMQCC_VEC_WILLGROW((A),(N)), vec_meta(A)->used += (N), &(A)[vec_meta(A)->used-(N)])
271 #define vec_last(A)       ((A)[vec_meta(A)->used - 1])
272 #define vec_pop(A)        ((void)(vec_meta(A)->used -= 1))
273 #define vec_shrinkto(A,N) ((void)(vec_meta(A)->used  = (N)))
274 #define vec_shrinkby(A,N) ((void)(vec_meta(A)->used -= (N)))
275 #define vec_append(A,N,S) ((void)(memcpy(vec_add((A), (N)), (S), (N) * sizeof(*(S)))))
276 #define vec_remove(A,I,N) ((void)(memmove((A)+(I),(A)+((I)+(N)),sizeof(*(A))*(vec_meta(A)->used-(I)-(N))),vec_meta(A)->used-=(N)))
277
278 typedef struct hash_table_s {
279     size_t                size;
280     struct hash_node_t **table;
281 } hash_table_t, *ht;
282
283 /*
284  * hashtable implementation:
285  *
286  * Note:
287  *      This was designed for pointers:  you manage the life of the object yourself
288  *      if you do use this for non-pointers please be warned that the object may not
289  *      be valid if the duration of it exceeds (i.e on stack).  So you need to allocate
290  *      yourself, or put those in global scope to ensure duration is for the whole
291  *      runtime.
292  *
293  * util_htnew(size)                             -- to make a new hashtable
294  * util_htset(table, key, value, sizeof(value)) -- to set something in the table
295  * util_htget(table, key)                       -- to get something from the table
296  * util_htdel(table)                            -- to delete the table
297  *
298  * example of use:
299  *
300  * ht    foo  = util_htnew(1024);
301  * int   data = 100;
302  * char *test = "hello world\n";
303  * util_htset(foo, "foo", (void*)&data);
304  * util_gtset(foo, "bar", (void*)test);
305  *
306  * printf("foo: %d, bar %s",
307  *     *((int *)util_htget(foo, "foo")),
308  *      ((char*)util_htget(foo, "bar"))
309  * );
310  *
311  * util_htdel(foo);
312  */
313 hash_table_t *util_htnew (size_t size);
314 void          util_htrem (hash_table_t *ht, void (*callback)(void *data));
315 void          util_htset (hash_table_t *ht, const char *key, void *value);
316 void          util_htdel (hash_table_t *ht);
317 size_t        util_hthash(hash_table_t *ht, const char *key);
318 void          util_htseth(hash_table_t *ht, const char *key, size_t hash, void *value);
319 void          util_htrmh (hash_table_t *ht, const char *key, size_t bin, void (*cb)(void*));
320 void          util_htrm  (hash_table_t *ht, const char *key, void (*cb)(void*));
321
322 void         *util_htget (hash_table_t *ht, const char *key);
323 void         *util_htgeth(hash_table_t *ht, const char *key, size_t hash);
324
325 int           util_snprintf(char *str, size_t, const char *fmt, ...);
326
327
328 /* fs.c */
329 #define FS_FILE_SEEK_SET  0
330 #define FS_FILE_SEEK_CUR  1
331 #define FS_FILE_SEEK_END  2
332 #define FS_FILE_EOF      -1
333
334 typedef struct fs_dir_s  fs_dir_t;
335 /*typedef struct fs_file_s fs_file_t;*/
336 typedef struct dirent    fs_dirent_t;
337
338 void           fs_file_close  (fs_file_t *);
339 int            fs_file_error  (fs_file_t *);
340 int            fs_file_getc   (fs_file_t *);
341 int            fs_file_printf (fs_file_t *, const char *, ...);
342 int            fs_file_puts   (fs_file_t *, const char *);
343 int            fs_file_seek   (fs_file_t *, long int, int);
344 long           fs_file_tell   (fs_file_t *);
345 int            fs_file_flush  (fs_file_t *);
346
347 size_t         fs_file_read   (void *,        size_t, size_t, fs_file_t *);
348 size_t         fs_file_write  (const void *,  size_t, size_t, fs_file_t *);
349
350 fs_file_t     *fs_file_open   (const char *, const char *);
351 int            fs_file_getline(char  **, size_t *, fs_file_t *);
352
353 int            fs_dir_make    (const char *);
354 fs_dir_t      *fs_dir_open    (const char *);
355 int            fs_dir_close   (fs_dir_t *);
356 fs_dirent_t   *fs_dir_read    (fs_dir_t *);
357
358
359 /* correct.c */
360 typedef struct correct_trie_s {
361     void                  *value;
362     struct correct_trie_s *entries;
363 } correct_trie_t;
364
365 correct_trie_t* correct_trie_new(void);
366
367 typedef struct {
368     char   ***edits;
369     size_t  **lens;
370 } correction_t;
371
372 void  correct_del (correct_trie_t*, size_t **);
373 void  correct_add (correct_trie_t*, size_t ***, const char *);
374 char *correct_str (correction_t *, correct_trie_t*, const char *);
375 void  correct_init(correction_t *);
376 void  correct_free(correction_t *);
377
378
379 /* code.c */
380
381 /* Note: if you change the order, fix type_sizeof in ir.c */
382 enum {
383     TYPE_VOID     ,
384     TYPE_STRING   ,
385     TYPE_FLOAT    ,
386     TYPE_VECTOR   ,
387     TYPE_ENTITY   ,
388     TYPE_FIELD    ,
389     TYPE_FUNCTION ,
390     TYPE_POINTER  ,
391     TYPE_INTEGER  ,
392     TYPE_VARIANT  ,
393     TYPE_STRUCT   ,
394     TYPE_UNION    ,
395     TYPE_ARRAY    ,
396
397     TYPE_NIL      , /* it's its own type / untyped */
398     TYPE_NOEXPR   , /* simply invalid in expressions */
399
400     TYPE_COUNT
401 };
402
403 /* const/var qualifiers */
404 #define CV_NONE   0
405 #define CV_CONST  1
406 #define CV_VAR   -1
407 #define CV_WRONG  0x8000 /* magic number to help parsing */
408
409 extern const char    *type_name        [TYPE_COUNT];
410 extern const uint16_t type_store_instr [TYPE_COUNT];
411 extern const uint16_t field_store_instr[TYPE_COUNT];
412
413 /*
414  * could use type_store_instr + INSTR_STOREP_F - INSTR_STORE_F
415  * but this breaks when TYPE_INTEGER is added, since with the enhanced
416  * instruction set, the old ones are left untouched, thus the _I instructions
417  * are at a seperate place.
418  */
419 extern const uint16_t type_storep_instr[TYPE_COUNT];
420 extern const uint16_t type_eq_instr    [TYPE_COUNT];
421 extern const uint16_t type_ne_instr    [TYPE_COUNT];
422 extern const uint16_t type_not_instr   [TYPE_COUNT];
423
424 typedef struct {
425     uint32_t offset;      /* Offset in file of where data begins  */
426     uint32_t length;      /* Length of section (how many of)      */
427 } prog_section_t;
428
429 typedef struct {
430     uint32_t       version;      /* Program version (6)     */
431     uint16_t       crc16;
432     uint16_t       skip;
433
434     prog_section_t statements;   /* prog_section_statement  */
435     prog_section_t defs;         /* prog_section_def        */
436     prog_section_t fields;       /* prog_section_field      */
437     prog_section_t functions;    /* prog_section_function   */
438     prog_section_t strings;
439     prog_section_t globals;
440     uint32_t       entfield;     /* Number of entity fields */
441 } prog_header_t;
442
443 /*
444  * Each paramater incerements by 3 since vector types hold
445  * 3 components (x,y,z).
446  */
447 #define OFS_NULL      0
448 #define OFS_RETURN    1
449 #define OFS_PARM0     (OFS_RETURN+3)
450 #define OFS_PARM1     (OFS_PARM0 +3)
451 #define OFS_PARM2     (OFS_PARM1 +3)
452 #define OFS_PARM3     (OFS_PARM2 +3)
453 #define OFS_PARM4     (OFS_PARM3 +3)
454 #define OFS_PARM5     (OFS_PARM4 +3)
455 #define OFS_PARM6     (OFS_PARM5 +3)
456 #define OFS_PARM7     (OFS_PARM6 +3)
457
458 typedef struct {
459     uint16_t opcode;
460
461     /* operand 1 */
462     union {
463         int16_t  s1; /* signed   */
464         uint16_t u1; /* unsigned */
465     } o1;
466     /* operand 2 */
467     union {
468         int16_t  s1; /* signed   */
469         uint16_t u1; /* unsigned */
470     } o2;
471     /* operand 3 */
472     union {
473         int16_t  s1; /* signed   */
474         uint16_t u1; /* unsigned */
475     } o3;
476
477     /*
478      * This is the same as the structure in darkplaces
479      * {
480      *     unsigned short op;
481      *     short          a,b,c;
482      * }
483      * But this one is more sane to work with, and the
484      * type sizes are guranteed.
485      */
486 } prog_section_statement_t;
487
488 typedef struct {
489     /*
490      * The types:
491      * 0 = ev_void
492      * 1 = ev_string
493      * 2 = ev_float
494      * 3 = ev_vector
495      * 4 = ev_entity
496      * 5 = ev_field
497      * 6 = ev_function
498      * 7 = ev_pointer -- engine only
499      * 8 = ev_bad     -- engine only
500      */
501     uint16_t type;
502     uint16_t offset;
503     uint32_t name;
504 } prog_section_both_t;
505
506 typedef prog_section_both_t prog_section_def_t;
507 typedef prog_section_both_t prog_section_field_t;
508
509 /* this is ORed to the type */
510 #define DEF_SAVEGLOBAL (1<<15)
511 #define DEF_TYPEMASK   ((1<<15)-1)
512
513 typedef struct {
514     int32_t   entry;      /* in statement table for instructions  */
515     uint32_t  firstlocal; /* First local in local table           */
516     uint32_t  locals;     /* Total ints of params + locals        */
517     uint32_t  profile;    /* Always zero (engine uses this)       */
518     uint32_t  name;       /* name of function in string table     */
519     uint32_t  file;       /* file of the source file              */
520     int32_t   nargs;      /* number of arguments                  */
521     uint8_t   argsize[8]; /* size of arguments (keep 8 always?)   */
522 } prog_section_function_t;
523
524 /*
525  * Instructions
526  * These are the external instructions supported by the interperter
527  * this is what things compile to (from the C code).
528  */
529 enum {
530     INSTR_DONE,
531     INSTR_MUL_F,
532     INSTR_MUL_V,
533     INSTR_MUL_FV, /* NOTE: the float operands must NOT be at the same locations: A != C */
534     INSTR_MUL_VF, /* and here: B != C */
535     INSTR_DIV_F,
536     INSTR_ADD_F,
537     INSTR_ADD_V,
538     INSTR_SUB_F,
539     INSTR_SUB_V,
540     INSTR_EQ_F,
541     INSTR_EQ_V,
542     INSTR_EQ_S,
543     INSTR_EQ_E,
544     INSTR_EQ_FNC,
545     INSTR_NE_F,
546     INSTR_NE_V,
547     INSTR_NE_S,
548     INSTR_NE_E,
549     INSTR_NE_FNC,
550     INSTR_LE,
551     INSTR_GE,
552     INSTR_LT,
553     INSTR_GT,
554     INSTR_LOAD_F,
555     INSTR_LOAD_V,
556     INSTR_LOAD_S,
557     INSTR_LOAD_ENT,
558     INSTR_LOAD_FLD,
559     INSTR_LOAD_FNC,
560     INSTR_ADDRESS,
561     INSTR_STORE_F,
562     INSTR_STORE_V,
563     INSTR_STORE_S,
564     INSTR_STORE_ENT,
565     INSTR_STORE_FLD,
566     INSTR_STORE_FNC,
567     INSTR_STOREP_F,
568     INSTR_STOREP_V,
569     INSTR_STOREP_S,
570     INSTR_STOREP_ENT,
571     INSTR_STOREP_FLD,
572     INSTR_STOREP_FNC,
573     INSTR_RETURN,
574     INSTR_NOT_F,
575     INSTR_NOT_V,
576     INSTR_NOT_S,
577     INSTR_NOT_ENT,
578     INSTR_NOT_FNC,
579     INSTR_IF,
580     INSTR_IFNOT,
581     INSTR_CALL0,
582     INSTR_CALL1,
583     INSTR_CALL2,
584     INSTR_CALL3,
585     INSTR_CALL4,
586     INSTR_CALL5,
587     INSTR_CALL6,
588     INSTR_CALL7,
589     INSTR_CALL8,
590     INSTR_STATE,
591     INSTR_GOTO,
592     INSTR_AND,
593     INSTR_OR,
594     INSTR_BITAND,
595     INSTR_BITOR,
596
597     /*
598      * Virtual instructions used by the IR
599      * Keep at the end!
600      */
601     VINSTR_END,
602     VINSTR_PHI,
603     VINSTR_JUMP,
604     VINSTR_COND,
605
606     /* A never returning CALL.
607      * Creating this causes IR blocks to be marked as 'final'.
608      * No-Return-Call
609      */
610     VINSTR_NRCALL,
611
612     /* Emulated instructions. */
613     VINSTR_BITAND_V, /* BITAND_V must be the first emulated bitop */
614     VINSTR_BITAND_VF,
615     VINSTR_BITOR_V,
616     VINSTR_BITOR_VF,
617     VINSTR_BITXOR,
618     VINSTR_BITXOR_V,
619     VINSTR_BITXOR_VF,
620     VINSTR_CROSS,
621     VINSTR_NEG_F,
622     VINSTR_NEG_V
623 };
624
625 /* TODO: elide */
626 extern const char *util_instr_str[VINSTR_END];
627
628
629 typedef float    qcfloat_t;
630 typedef int32_t  qcint_t;
631 typedef uint32_t qcuint_t;
632
633 typedef struct {
634     prog_section_statement_t *statements;
635     int                      *linenums;
636     int                      *columnnums;
637     prog_section_def_t       *defs;
638     prog_section_field_t     *fields;
639     prog_section_function_t  *functions;
640     int                      *globals;
641     char                     *chars;
642     uint16_t                  crc;
643     uint32_t                  entfields;
644     ht                        string_cache;
645     qcint_t                   string_cached_empty;
646 } code_t;
647
648 /*
649  * A shallow copy of a lex_file to remember where which ast node
650  * came from.
651  */
652 typedef struct {
653     const char *file;
654     size_t      line;
655     size_t      column;
656 } lex_ctx_t;
657
658 /*
659  * code_write          -- writes out the compiled file
660  * code_init           -- prepares the code file
661  * code_genstrin       -- generates string for code
662  * code_alloc_field    -- allocated a field
663  * code_push_statement -- keeps statements and linenumbers together
664  * code_pop_statement  -- keeps statements and linenumbers together
665  */
666 bool      code_write         (code_t *, const char *filename, const char *lno);
667 GMQCC_WARN
668 code_t   *code_init          (void);
669 void      code_cleanup       (code_t *);
670 uint32_t  code_genstring     (code_t *, const char *string);
671 qcint_t   code_alloc_field   (code_t *, size_t qcsize);
672 void      code_push_statement(code_t *, prog_section_statement_t *stmt, lex_ctx_t ctx);
673 void      code_pop_statement (code_t *);
674
675
676 /* conout.c */
677 enum {
678     CON_BLACK   = 30,
679     CON_RED,
680     CON_GREEN,
681     CON_BROWN,
682     CON_BLUE,
683     CON_MAGENTA,
684     CON_CYAN ,
685     CON_WHITE
686 };
687
688 /* message level */
689 enum {
690     LVL_MSG,
691     LVL_WARNING,
692     LVL_ERROR
693 };
694
695 fs_file_t *con_default_out(void);
696 fs_file_t *con_default_err(void);
697
698 void con_vprintmsg (int level, const char *name, size_t line, size_t column, const char *msgtype, const char *msg, va_list ap);
699 void con_printmsg  (int level, const char *name, size_t line, size_t column, const char *msgtype, const char *msg, ...);
700 void con_cvprintmsg(lex_ctx_t ctx, int lvl, const char *msgtype, const char *msg, va_list ap);
701 void con_cprintmsg (lex_ctx_t ctx, int lvl, const char *msgtype, const char *msg, ...);
702
703 void con_close (void);
704 void con_init  (void);
705 void con_reset (void);
706 void con_color (int);
707 int  con_change(const char *, const char *);
708 int  con_verr  (const char *, va_list);
709 int  con_vout  (const char *, va_list);
710 int  con_err   (const char *, ...);
711 int  con_out   (const char *, ...);
712
713 /* error/warning interface */
714 extern size_t compile_errors;
715 extern size_t compile_Werrors;
716 extern size_t compile_warnings;
717
718 void /********/ compile_error   (lex_ctx_t ctx, /*LVL_ERROR*/ const char *msg, ...);
719 void /********/ vcompile_error  (lex_ctx_t ctx, /*LVL_ERROR*/ const char *msg, va_list ap);
720 bool GMQCC_WARN compile_warning (lex_ctx_t ctx, int warntype, const char *fmt, ...);
721 bool GMQCC_WARN vcompile_warning(lex_ctx_t ctx, int warntype, const char *fmt, va_list ap);
722 void            compile_show_werrors(void);
723
724 /* ir.c */
725 /* TODO: cleanup */
726 enum store_types {
727     store_global,
728     store_local,  /* local, assignable for now, should get promoted later */
729     store_param,  /* parameters, they are locals with a fixed position */
730     store_value,  /* unassignable */
731     store_return  /* unassignable, at OFS_RETURN */
732 };
733
734 typedef struct {
735     qcfloat_t x, y, z;
736 } vec3_t;
737
738 /* exec.c */
739
740 /* TODO: cleanup */
741 /*
742  * Darkplaces has (or will have) a 64 bit prog loader
743  * where the 32 bit qc program is autoconverted on load.
744  * Since we may want to support that as well, let's redefine
745  * float and int here.
746  */
747 typedef union {
748     qcint_t   _int;
749     qcint_t    string;
750     qcint_t    function;
751     qcint_t    edict;
752     qcfloat_t _float;
753     qcfloat_t vector[3];
754     qcint_t   ivector[3];
755 } qcany_t;
756
757 typedef char qcfloat_t_size_is_correct [sizeof(qcfloat_t) == 4 ?1:-1];
758 typedef char qcint_t_size_is_correct   [sizeof(qcint_t)   == 4 ?1:-1];
759
760 enum {
761     VMERR_OK,
762     VMERR_TEMPSTRING_ALLOC,
763     VMERR_END
764 };
765
766 #define VM_JUMPS_DEFAULT 1000000
767
768 /* execute-flags */
769 #define VMXF_DEFAULT 0x0000     /* default flags - nothing */
770 #define VMXF_TRACE   0x0001     /* trace: print statements before executing */
771 #define VMXF_PROFILE 0x0002     /* profile: increment the profile counters */
772
773 struct qc_program_s;
774 typedef int (*prog_builtin_t)(struct qc_program_s *prog);
775
776 typedef struct {
777     qcint_t                    stmt;
778     size_t                   localsp;
779     prog_section_function_t *function;
780 } qc_exec_stack_t;
781
782 typedef struct qc_program_s {
783     char                    *filename;
784     prog_section_statement_t *code;
785     prog_section_def_t       *defs;
786     prog_section_def_t       *fields;
787     prog_section_function_t  *functions;
788     char                    *strings;
789     qcint_t                   *globals;
790     qcint_t                   *entitydata;
791     bool                    *entitypool;
792
793     const char*             *function_stack;
794
795     uint16_t crc16;
796
797     size_t tempstring_start;
798     size_t tempstring_at;
799
800     qcint_t  vmerror;
801
802     size_t *profile;
803
804     prog_builtin_t *builtins;
805     size_t          builtins_count;
806
807     /* size_t ip; */
808     qcint_t  entities;
809     size_t entityfields;
810     bool   allowworldwrites;
811
812     qcint_t         *localstack;
813     qc_exec_stack_t *stack;
814     size_t statement;
815
816     size_t xflags;
817
818     int    argc; /* current arg count for debugging */
819 } qc_program_t;
820
821 qc_program_t*       prog_load      (const char *filename, bool ignoreversion);
822 void                prog_delete    (qc_program_t *prog);
823 bool                prog_exec      (qc_program_t *prog, prog_section_function_t *func, size_t flags, long maxjumps);
824 const char*         prog_getstring (qc_program_t *prog, qcint_t str);
825 prog_section_def_t* prog_entfield  (qc_program_t *prog, qcint_t off);
826 prog_section_def_t* prog_getdef    (qc_program_t *prog, qcint_t off);
827 qcany_t*            prog_getedict  (qc_program_t *prog, qcint_t e);
828 qcint_t               prog_tempstring(qc_program_t *prog, const char *_str);
829
830
831 /* parser.c */
832 struct parser_s;
833 struct parser_s *parser_create        (void);
834 bool             parser_compile_file  (struct parser_s *parser, const char *);
835 bool             parser_compile_string(struct parser_s *parser, const char *, const char *, size_t);
836 bool             parser_finish        (struct parser_s *parser, const char *);
837 void             parser_cleanup       (struct parser_s *parser);
838
839 /* ftepp.c */
840 struct ftepp_s;
841 struct ftepp_s *ftepp_create           (void);
842 bool            ftepp_preprocess_file  (struct ftepp_s *ftepp, const char *filename);
843 bool            ftepp_preprocess_string(struct ftepp_s *ftepp, const char *name, const char *str);
844 void            ftepp_finish           (struct ftepp_s *ftepp);
845 const char     *ftepp_get              (struct ftepp_s *ftepp);
846 void            ftepp_flush            (struct ftepp_s *ftepp);
847 void            ftepp_add_define       (struct ftepp_s *ftepp, const char *source, const char *name);
848 void            ftepp_add_macro        (struct ftepp_s *ftepp, const char *name,   const char *value);
849
850 /* main.c */
851
852 #if 1
853 /* Helpers to allow for a whole lot of flags. Otherwise we'd limit
854  * to 32 or 64 -f options...
855  */
856 typedef struct {
857     size_t  idx; /* index into an array of 32 bit words */
858     uint8_t bit; /* bit index for the 8 bit group idx points to */
859 } longbit;
860 #define LONGBIT(bit) { ((bit)/32), ((bit)%32) }
861 #define LONGBIT_SET(B, I) ((B).idx = (I)/32, (B).bit = ((I)%32))
862 #else
863 typedef uint32_t longbit;
864 #define LONGBIT(bit) (bit)
865 #define LONGBIT_SET(B, I) ((B) = (I))
866 #endif
867
868 /* utf.8 */
869 typedef long utf8ch_t;
870 int utf8_from(char *, utf8ch_t);
871 int utf8_to(utf8ch_t *, const unsigned char *, size_t);
872
873 /* opts.c */
874 typedef struct {
875     const char *name;
876     longbit     bit;
877 } opts_flag_def_t;
878
879 bool opts_setflag  (const char *, bool);
880 bool opts_setwarn  (const char *, bool);
881 bool opts_setwerror(const char *, bool);
882 bool opts_setoptim (const char *, bool);
883
884 void opts_init         (const char *, int, size_t);
885 void opts_set          (uint32_t   *, size_t, bool);
886 void opts_setoptimlevel(unsigned int);
887 void opts_ini_init     (const char *);
888
889 /* Saner flag handling */
890 void opts_backup_non_Wall(void);
891 void opts_restore_non_Wall(void);
892 void opts_backup_non_Werror_all(void);
893 void opts_restore_non_Werror_all(void);
894
895
896 enum {
897 # define GMQCC_TYPE_FLAGS
898 # define GMQCC_DEFINE_FLAG(X) X,
899 #  include "opts.def"
900     COUNT_FLAGS
901 };
902
903 enum {
904 # define GMQCC_TYPE_WARNS
905 # define GMQCC_DEFINE_FLAG(X) WARN_##X,
906 #  include "opts.def"
907     COUNT_WARNINGS
908 };
909
910 enum {
911 # define GMQCC_TYPE_OPTIMIZATIONS
912 # define GMQCC_DEFINE_FLAG(NAME, MIN_O) OPTIM_##NAME,
913 #  include "opts.def"
914     COUNT_OPTIMIZATIONS
915 };
916
917 enum {
918 #   define GMQCC_TYPE_OPTIONS
919 #   define GMQCC_DEFINE_FLAG(X) OPTION_##X,
920 #   include "opts.def"
921     OPTION_COUNT
922 };
923
924 extern const opts_flag_def_t opts_flag_list[COUNT_FLAGS+1];
925 extern const opts_flag_def_t opts_warn_list[COUNT_WARNINGS+1];
926 extern const opts_flag_def_t opts_opt_list[COUNT_OPTIMIZATIONS+1];
927 extern const unsigned int    opts_opt_oflag[COUNT_OPTIMIZATIONS+1];
928 extern unsigned int          opts_optimizationcount[COUNT_OPTIMIZATIONS];
929
930 /* other options: */
931 typedef enum {
932     COMPILER_QCC,     /* circa  QuakeC */
933     COMPILER_FTEQCC,  /* fteqcc QuakeC */
934     COMPILER_QCCX,    /* qccx   QuakeC */
935     COMPILER_GMQCC    /* this   QuakeC */
936 } opts_std_t;
937
938 typedef struct {
939     union {
940         bool     b;
941         uint16_t u16;
942         uint32_t u32;
943
944         union {
945             char       *p;
946             const char *c;
947         } str;
948     } data;
949
950     bool allocated;
951 } opt_value_t;
952
953
954 typedef struct {
955     opt_value_t  options      [OPTION_COUNT];
956     uint32_t     flags        [1 + (COUNT_FLAGS         / 32)];
957     uint32_t     warn         [1 + (COUNT_WARNINGS      / 32)];
958     uint32_t     werror       [1 + (COUNT_WARNINGS      / 32)];
959     uint32_t     warn_backup  [1 + (COUNT_WARNINGS      / 32)];
960     uint32_t     werror_backup[1 + (COUNT_WARNINGS      / 32)];
961     uint32_t     optimization [1 + (COUNT_OPTIMIZATIONS / 32)];
962     bool         optimizeoff; /* True when -O0 */
963 } opts_cmd_t;
964
965 extern opts_cmd_t opts;
966
967 #define OPTS_GENERIC(f,i)    (!! (((f)[(i)/32]) & (1<< (unsigned)((i)%32))))
968
969 #define OPTS_FLAG(i)         OPTS_GENERIC(opts.flags,        (i))
970 #define OPTS_WARN(i)         OPTS_GENERIC(opts.warn,         (i))
971 #define OPTS_WERROR(i)       OPTS_GENERIC(opts.werror,       (i))
972 #define OPTS_OPTIMIZATION(i) OPTS_GENERIC(opts.optimization, (i))
973
974 #define OPTS_OPTION_DUPED(X) (opts.options[X].allocated)
975 #define OPTS_OPTION_BOOL(X)  (opts.options[X].data.b)
976 #define OPTS_OPTION_U16(X)   (opts.options[X].data.u16)
977 #define OPTS_OPTION_U32(X)   (opts.options[X].data.u32)
978 #define OPTS_OPTION_STR(X)   (opts.options[X].data.str.c)
979 #define OPTS_OPTION_DUP(X)  *(OPTS_OPTION_DUPED(X)=true, &(opts.options[X].data.str.p))
980
981 #endif /*! GMQCC_HDR */