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