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