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