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