]> git.xonotic.org Git - xonotic/gmqcc.git/blob - gmqcc.h
A nicer way of doing this
[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*)(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 uint16_t    type_store_instr [TYPE_COUNT];
505 extern 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 uint16_t type_storep_instr[TYPE_COUNT];
514 extern uint16_t type_eq_instr    [TYPE_COUNT];
515 extern uint16_t type_ne_instr    [TYPE_COUNT];
516 extern 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 /* TODO: cleanup this mess */
707 extern prog_section_statement *code_statements;
708 extern int                    *code_linenums;
709 extern prog_section_def       *code_defs;
710 extern prog_section_field     *code_fields;
711 extern prog_section_function  *code_functions;
712 extern int                    *code_globals;
713 extern char                   *code_chars;
714 extern uint16_t code_crc;
715
716 /* uhh? */
717 typedef float   qcfloat;
718 typedef int32_t qcint;
719
720 /*
721  * code_write -- writes out the compiled file
722  * code_init  -- prepares the code file
723  */
724 bool     code_write       (const char *filename, const char *lno);
725 void     code_init        ();
726 uint32_t code_genstring   (const char *string);
727 qcint    code_alloc_field (size_t qcsize);
728
729 /* this function is used to keep statements and linenumbers together */
730 void     code_push_statement(prog_section_statement *stmt, int linenum);
731 void     code_pop_statement();
732
733 /*
734  * A shallow copy of a lex_file to remember where which ast node
735  * came from.
736  */
737 typedef struct {
738     const char *file;
739     size_t      line;
740 } lex_ctx;
741
742 /*===================================================================*/
743 /*============================ con.c ================================*/
744 /*===================================================================*/
745 enum {
746     CON_BLACK   = 30,
747     CON_RED,
748     CON_GREEN,
749     CON_BROWN,
750     CON_BLUE,
751     CON_MAGENTA,
752     CON_CYAN ,
753     CON_WHITE
754 };
755
756 /* message level */
757 enum {
758     LVL_MSG,
759     LVL_WARNING,
760     LVL_ERROR
761 };
762
763 FILE *con_default_out();
764 FILE *con_default_err();
765
766 void con_vprintmsg (int level, const char *name, size_t line, const char *msgtype, const char *msg, va_list ap);
767 void con_printmsg  (int level, const char *name, size_t line, const char *msgtype, const char *msg, ...);
768 void con_cvprintmsg(void *ctx, int lvl, const char *msgtype, const char *msg, va_list ap);
769 void con_cprintmsg (void *ctx, int lvl, const char *msgtype, const char *msg, ...);
770
771 void con_close ();
772 void con_init  ();
773 void con_reset ();
774 void con_color (int);
775 int  con_change(const char *, const char *);
776 int  con_verr  (const char *, va_list);
777 int  con_vout  (const char *, va_list);
778 int  con_err   (const char *, ...);
779 int  con_out   (const char *, ...);
780
781 /* error/warning interface */
782 extern size_t compile_errors;
783 extern size_t compile_Werrors;
784 extern size_t compile_warnings;
785
786 void /********/ compile_error   (lex_ctx ctx, /*LVL_ERROR*/ const char *msg, ...);
787 void /********/ vcompile_error  (lex_ctx ctx, /*LVL_ERROR*/ const char *msg, va_list ap);
788 bool GMQCC_WARN compile_warning (lex_ctx ctx, int warntype, const char *fmt, ...);
789 bool GMQCC_WARN vcompile_warning(lex_ctx ctx, int warntype, const char *fmt, va_list ap);
790 void            compile_show_werrors();
791
792 /*===================================================================*/
793 /*========================= assembler.c =============================*/
794 /*===================================================================*/
795 /* TODO: remove this ... */
796 static const struct {
797     const char  *m; /* menomic     */
798     const size_t o; /* operands    */
799     const size_t l; /* menomic len */
800 } asm_instr[] = {
801     { "DONE"      , 1, 4 },
802     { "MUL_F"     , 3, 5 },
803     { "MUL_V"     , 3, 5 },
804     { "MUL_FV"    , 3, 6 },
805     { "MUL_VF"    , 3, 6 },
806     { "DIV"       , 0, 3 },
807     { "ADD_F"     , 3, 5 },
808     { "ADD_V"     , 3, 5 },
809     { "SUB_F"     , 3, 5 },
810     { "SUB_V"     , 3, 5 },
811     { "EQ_F"      , 0, 4 },
812     { "EQ_V"      , 0, 4 },
813     { "EQ_S"      , 0, 4 },
814     { "EQ_E"      , 0, 4 },
815     { "EQ_FNC"    , 0, 6 },
816     { "NE_F"      , 0, 4 },
817     { "NE_V"      , 0, 4 },
818     { "NE_S"      , 0, 4 },
819     { "NE_E"      , 0, 4 },
820     { "NE_FNC"    , 0, 6 },
821     { "LE"        , 0, 2 },
822     { "GE"        , 0, 2 },
823     { "LT"        , 0, 2 },
824     { "GT"        , 0, 2 },
825     { "FIELD_F"   , 0, 7 },
826     { "FIELD_V"   , 0, 7 },
827     { "FIELD_S"   , 0, 7 },
828     { "FIELD_ENT" , 0, 9 },
829     { "FIELD_FLD" , 0, 9 },
830     { "FIELD_FNC" , 0, 9 },
831     { "ADDRESS"   , 0, 7 },
832     { "STORE_F"   , 0, 7 },
833     { "STORE_V"   , 0, 7 },
834     { "STORE_S"   , 0, 7 },
835     { "STORE_ENT" , 0, 9 },
836     { "STORE_FLD" , 0, 9 },
837     { "STORE_FNC" , 0, 9 },
838     { "STOREP_F"  , 0, 8 },
839     { "STOREP_V"  , 0, 8 },
840     { "STOREP_S"  , 0, 8 },
841     { "STOREP_ENT", 0, 10},
842     { "STOREP_FLD", 0, 10},
843     { "STOREP_FNC", 0, 10},
844     { "RETURN"    , 0, 6 },
845     { "NOT_F"     , 0, 5 },
846     { "NOT_V"     , 0, 5 },
847     { "NOT_S"     , 0, 5 },
848     { "NOT_ENT"   , 0, 7 },
849     { "NOT_FNC"   , 0, 7 },
850     { "IF"        , 0, 2 },
851     { "IFNOT"     , 0, 5 },
852     { "CALL0"     , 1, 5 },
853     { "CALL1"     , 2, 5 },
854     { "CALL2"     , 3, 5 },
855     { "CALL3"     , 4, 5 },
856     { "CALL4"     , 5, 5 },
857     { "CALL5"     , 6, 5 },
858     { "CALL6"     , 7, 5 },
859     { "CALL7"     , 8, 5 },
860     { "CALL8"     , 9, 5 },
861     { "STATE"     , 0, 5 },
862     { "GOTO"      , 0, 4 },
863     { "AND"       , 0, 3 },
864     { "OR"        , 0, 2 },
865     { "BITAND"    , 0, 6 },
866     { "BITOR"     , 0, 5 },
867
868     { "END"       , 0, 3 } /* virtual assembler instruction */
869 };
870 /*===================================================================*/
871 /*============================= ir.c ================================*/
872 /*===================================================================*/
873
874 enum store_types {
875     store_global,
876     store_local,  /* local, assignable for now, should get promoted later */
877     store_param,  /* parameters, they are locals with a fixed position */
878     store_value,  /* unassignable */
879     store_return  /* unassignable, at OFS_RETURN */
880 };
881
882 typedef struct {
883     qcfloat x, y, z;
884 } vector;
885
886 vector  vec3_add  (vector, vector);
887 vector  vec3_sub  (vector, vector);
888 qcfloat vec3_mulvv(vector, vector);
889 vector  vec3_mulvf(vector, float);
890
891 /*===================================================================*/
892 /*============================= exec.c ==============================*/
893 /*===================================================================*/
894
895 /* TODO: cleanup */
896 /*
897  * Darkplaces has (or will have) a 64 bit prog loader
898  * where the 32 bit qc program is autoconverted on load.
899  * Since we may want to support that as well, let's redefine
900  * float and int here.
901  */
902 typedef union {
903     qcint   _int;
904     qcint    string;
905     qcint    function;
906     qcint    edict;
907     qcfloat _float;
908     qcfloat vector[3];
909     qcint   ivector[3];
910 } qcany;
911
912 typedef char qcfloat_size_is_correct [sizeof(qcfloat) == 4 ?1:-1];
913 typedef char qcint_size_is_correct   [sizeof(qcint)   == 4 ?1:-1];
914
915 enum {
916     VMERR_OK,
917     VMERR_TEMPSTRING_ALLOC,
918
919     VMERR_END
920 };
921
922 #define VM_JUMPS_DEFAULT 1000000
923
924 /* execute-flags */
925 #define VMXF_DEFAULT 0x0000     /* default flags - nothing */
926 #define VMXF_TRACE   0x0001     /* trace: print statements before executing */
927 #define VMXF_PROFILE 0x0002     /* profile: increment the profile counters */
928
929 struct qc_program_s;
930
931 typedef int (*prog_builtin)(struct qc_program_s *prog);
932
933 typedef struct {
934     qcint                  stmt;
935     size_t                 localsp;
936     prog_section_function *function;
937 } qc_exec_stack;
938
939 typedef struct qc_program_s {
940     char           *filename;
941
942     prog_section_statement *code;
943     prog_section_def       *defs;
944     prog_section_def       *fields;
945     prog_section_function  *functions;
946     char                   *strings;
947     qcint                  *globals;
948     qcint                  *entitydata;
949     bool                   *entitypool;
950
951     const char*            *function_stack;
952
953     uint16_t crc16;
954
955     size_t tempstring_start;
956     size_t tempstring_at;
957
958     qcint  vmerror;
959
960     size_t *profile;
961
962     prog_builtin *builtins;
963     size_t        builtins_count;
964
965     /* size_t ip; */
966     qcint  entities;
967     size_t entityfields;
968     bool   allowworldwrites;
969
970     qcint         *localstack;
971     qc_exec_stack *stack;
972     size_t statement;
973
974     size_t xflags;
975
976     int    argc; /* current arg count for debugging */
977 } qc_program;
978
979 qc_program* prog_load(const char *filename, bool ignoreversion);
980 void        prog_delete(qc_program *prog);
981
982 bool prog_exec(qc_program *prog, prog_section_function *func, size_t flags, long maxjumps);
983
984 char*             prog_getstring (qc_program *prog, qcint str);
985 prog_section_def* prog_entfield  (qc_program *prog, qcint off);
986 prog_section_def* prog_getdef    (qc_program *prog, qcint off);
987 qcany*            prog_getedict  (qc_program *prog, qcint e);
988 qcint             prog_tempstring(qc_program *prog, const char *_str);
989
990
991 /*===================================================================*/
992 /*===================== parser.c commandline ========================*/
993 /*===================================================================*/
994 struct parser_s;
995
996 struct parser_s *parser_create        ();
997 bool             parser_compile_file  (struct parser_s *parser, const char *);
998 bool             parser_compile_string(struct parser_s *parser, const char *, const char *, size_t);
999 bool             parser_finish        (struct parser_s *parser, const char *);
1000 void             parser_cleanup       (struct parser_s *parser);
1001
1002 /*===================================================================*/
1003 /*====================== ftepp.c commandline ========================*/
1004 /*===================================================================*/
1005 struct lex_file_s;
1006 struct ftepp_s;
1007
1008 typedef struct {
1009     const char  *name;
1010     char      *(*func)(struct lex_file_s *);
1011 } ftepp_predef_t;
1012
1013 /*
1014  * line, file, counter, counter_last, random, random_last, date, time
1015  * time_stamp.
1016  * 
1017  * increment when items are added
1018  */
1019 #define FTEPP_PREDEF_COUNT 9
1020
1021 struct ftepp_s *ftepp_create           ();
1022 bool            ftepp_preprocess_file  (struct ftepp_s *ftepp, const char *filename);
1023 bool            ftepp_preprocess_string(struct ftepp_s *ftepp, const char *name, const char *str);
1024 void            ftepp_finish           (struct ftepp_s *ftepp);
1025 const char     *ftepp_get              (struct ftepp_s *ftepp);
1026 void            ftepp_flush            (struct ftepp_s *ftepp);
1027 void            ftepp_add_define       (struct ftepp_s *ftepp, const char *source, const char *name);
1028 void            ftepp_add_macro        (struct ftepp_s *ftepp, const char *name,   const char *value);
1029
1030 extern const ftepp_predef_t ftepp_predefs[FTEPP_PREDEF_COUNT];
1031
1032 /*===================================================================*/
1033 /*======================= main.c commandline ========================*/
1034 /*===================================================================*/
1035
1036 #if 1
1037 /* Helpers to allow for a whole lot of flags. Otherwise we'd limit
1038  * to 32 or 64 -f options...
1039  */
1040 typedef struct {
1041     size_t  idx; /* index into an array of 32 bit words */
1042     uint8_t bit; /* bit index for the 8 bit group idx points to */
1043 } longbit;
1044 #define LONGBIT(bit) { ((bit)/32), ((bit)%32) }
1045 #define LONGBIT_SET(B, I) ((B).idx = (I)/32, (B).bit = ((I)%32))
1046 #else
1047 typedef uint32_t longbit;
1048 #define LONGBIT(bit) (bit)
1049 #define LONGBIT_SET(B, I) ((B) = (I))
1050 #endif
1051
1052 /*===================================================================*/
1053 /*=========================== utf8lib.c =============================*/
1054 /*===================================================================*/
1055 typedef uint32_t uchar_t;
1056
1057 bool    u8_analyze (const char *_s, size_t *_start, size_t *_len, uchar_t *_ch, size_t _maxlen);
1058 size_t  u8_strlen  (const char*);
1059 size_t  u8_strnlen (const char*, size_t);
1060 uchar_t u8_getchar (const char*, const char**);
1061 uchar_t u8_getnchar(const char*, const char**, size_t);
1062 int     u8_fromchar(uchar_t w,   char *to,     size_t maxlen);
1063
1064 /*===================================================================*/
1065 /*============================= opts.c ==============================*/
1066 /*===================================================================*/
1067 typedef struct {
1068     const char *name;
1069     longbit     bit;
1070 } opts_flag_def;
1071
1072 bool opts_setflag  (const char *, bool);
1073 bool opts_setwarn  (const char *, bool);
1074 bool opts_setwerror(const char *, bool);
1075 bool opts_setoptim (const char *, bool);
1076
1077 void opts_init         (const char *, int, size_t);
1078 void opts_set          (uint32_t   *, size_t, bool);
1079 void opts_setoptimlevel(unsigned int);
1080 void opts_ini_init     (const char *);
1081
1082 /* Saner flag handling */
1083 void opts_backup_non_Wall();
1084 void opts_restore_non_Wall();
1085 void opts_backup_non_Werror_all();
1086 void opts_restore_non_Werror_all();
1087
1088 enum {
1089 # define GMQCC_TYPE_FLAGS
1090 # define GMQCC_DEFINE_FLAG(X) X,
1091 #  include "opts.def"
1092     COUNT_FLAGS
1093 };
1094 static const opts_flag_def opts_flag_list[] = {
1095 # define GMQCC_TYPE_FLAGS
1096 # define GMQCC_DEFINE_FLAG(X) { #X, LONGBIT(X) },
1097 #  include "opts.def"
1098     { NULL, LONGBIT(0) }
1099 };
1100
1101 enum {
1102 # define GMQCC_TYPE_WARNS
1103 # define GMQCC_DEFINE_FLAG(X) WARN_##X,
1104 #  include "opts.def"
1105     COUNT_WARNINGS
1106 };
1107 static const opts_flag_def opts_warn_list[] = {
1108 # define GMQCC_TYPE_WARNS
1109 # define GMQCC_DEFINE_FLAG(X) { #X, LONGBIT(WARN_##X) },
1110 #  include "opts.def"
1111     { NULL, LONGBIT(0) }
1112 };
1113
1114 enum {
1115 # define GMQCC_TYPE_OPTIMIZATIONS
1116 # define GMQCC_DEFINE_FLAG(NAME, MIN_O) OPTIM_##NAME,
1117 #  include "opts.def"
1118     COUNT_OPTIMIZATIONS
1119 };
1120 static const opts_flag_def opts_opt_list[] = {
1121 # define GMQCC_TYPE_OPTIMIZATIONS
1122 # define GMQCC_DEFINE_FLAG(NAME, MIN_O) { #NAME, LONGBIT(OPTIM_##NAME) },
1123 #  include "opts.def"
1124     { NULL, LONGBIT(0) }
1125 };
1126 static const unsigned int opts_opt_oflag[] = {
1127 # define GMQCC_TYPE_OPTIMIZATIONS
1128 # define GMQCC_DEFINE_FLAG(NAME, MIN_O) MIN_O,
1129 #  include "opts.def"
1130     0
1131 };
1132
1133 enum {
1134 #   define GMQCC_TYPE_OPTIONS
1135 #   define GMQCC_DEFINE_FLAG(X) OPTION_##X,
1136 #   include "opts.def"
1137     OPTION_COUNT
1138 };
1139
1140 extern unsigned int opts_optimizationcount[COUNT_OPTIMIZATIONS];
1141
1142 /* other options: */
1143 typedef enum {
1144     COMPILER_QCC,     /* circa  QuakeC */
1145     COMPILER_FTEQCC,  /* fteqcc QuakeC */
1146     COMPILER_QCCX,    /* qccx   QuakeC */
1147     COMPILER_GMQCC    /* this   QuakeC */
1148 } opts_std_t;
1149
1150 typedef union {
1151     bool     B;
1152     uint16_t U16;
1153     uint32_t U32;
1154     char    *STR;
1155 } opt_value_t;
1156
1157
1158 typedef struct {
1159     opt_value_t  options      [OPTION_COUNT];
1160     uint32_t     flags        [1 + (COUNT_FLAGS         / 32)];
1161     uint32_t     warn         [1 + (COUNT_WARNINGS      / 32)];
1162     uint32_t     werror       [1 + (COUNT_WARNINGS      / 32)];
1163     uint32_t     warn_backup  [1 + (COUNT_WARNINGS      / 32)];
1164     uint32_t     werror_backup[1 + (COUNT_WARNINGS      / 32)];
1165     uint32_t     optimization [1 + (COUNT_OPTIMIZATIONS / 32)];
1166     bool         optimizeoff; /* True when -O0 */
1167 } opts_cmd_t;
1168
1169 extern opts_cmd_t opts;
1170
1171 #define OPTS_GENERIC(f,i)    (!! (((f)[(i)/32]) & (1<< ((i)%32))))
1172 #define OPTS_FLAG(i)         OPTS_GENERIC(opts.flags,        (i))
1173 #define OPTS_WARN(i)         OPTS_GENERIC(opts.warn,         (i))
1174 #define OPTS_WERROR(i)       OPTS_GENERIC(opts.werror,       (i))
1175 #define OPTS_OPTIMIZATION(i) OPTS_GENERIC(opts.optimization, (i))
1176 #define OPTS_OPTION_BOOL(X) (opts.options[X].B)
1177 #define OPTS_OPTION_U16(X)  (opts.options[X].U16)
1178 #define OPTS_OPTION_U32(X)  (opts.options[X].U32)
1179 #define OPTS_OPTION_STR(X)  (opts.options[X].STR)
1180
1181 #endif /*! GMQCC_HDR */