]> git.xonotic.org Git - xonotic/gmqcc.git/blob - gmqcc.h
reclassify_token should only deal with tokens < TOKEN_START... should fix #113
[xonotic/gmqcc.git] / gmqcc.h
1 /*
2  * Copyright (C) 2012, 2013
3  *     Dale Weiler
4  *     Wolfgang Bumiller
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy of
7  * this software and associated documentation files (the "Software"), to deal in
8  * the Software without restriction, including without limitation the rights to
9  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
10  * of the Software, and to permit persons to whom the Software is furnished to do
11  * so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in all
14  * copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22  * SOFTWARE.
23  */
24 #ifndef GMQCC_HDR
25 #define GMQCC_HDR
26 #include <stdarg.h>
27 #include <stdio.h> /* TODO: remove this */
28
29 /*
30  * Disable some over protective warnings in visual studio because fixing them is a waste
31  * of my time.
32  */
33 #ifdef _MSC_VER
34 #   pragma warning(disable : 4244 ) /* conversion from 'int' to 'float', possible loss of data */
35 #endif /*! _MSC_VER */
36
37 #define GMQCC_VERSION_MAJOR 0
38 #define GMQCC_VERSION_MINOR 3
39 #define GMQCC_VERSION_PATCH 0
40 #define GMQCC_VERSION_BUILD(J,N,P) (((J)<<16)|((N)<<8)|(P))
41 #define GMQCC_VERSION \
42     GMQCC_VERSION_BUILD(GMQCC_VERSION_MAJOR, GMQCC_VERSION_MINOR, GMQCC_VERSION_PATCH)
43 /* Undefine the following on a release-tag: */
44 #define GMQCC_VERSION_TYPE_DEVEL
45
46 /* Full version string in case we need it */
47 #ifdef GMQCC_VERSION_TYPE_DEVEL
48 #    ifdef GMQCC_GITINFO
49 #        define GMQCC_DEV_VERSION_STRING "git build: " GMQCC_GITINFO "\n"
50 #    elif defined(GMQCC_VERSION_TYPE_DEVEL)
51 #        define GMQCC_DEV_VERSION_STRING "development build\n"
52 #    else
53 #        define GMQCC_DEV_VERSION_STRING
54 #    endif /*! GMQCC_GITINGO */
55 #else
56 #    define GMQCC_DEV_VERSION_STRING
57 #endif
58
59 #define GMQCC_STRINGIFY(x) #x
60 #define GMQCC_IND_STRING(x) GMQCC_STRINGIFY(x)
61 #define GMQCC_FULL_VERSION_STRING \
62 "GMQCC " \
63 GMQCC_IND_STRING(GMQCC_VERSION_MAJOR) "." \
64 GMQCC_IND_STRING(GMQCC_VERSION_MINOR) "." \
65 GMQCC_IND_STRING(GMQCC_VERSION_PATCH) \
66 " Built " __DATE__ " " __TIME__ \
67 "\n" GMQCC_DEV_VERSION_STRING
68
69 /*
70  * We cannot rely on C99 at all, since compilers like MSVC
71  * simply don't support it.  We define our own boolean type
72  * as a result (since we cannot include <stdbool.h>). For
73  * compilers that are in 1999 mode (C99 compliant) we can use
74  * the language keyword _Bool which can allow for better code
75  * on GCC and GCC-like compilers, opposed to `int`.
76  */
77 #ifndef __cplusplus
78 #   ifdef  false
79 #       undef  false
80 #   endif /*! false */
81 #   ifdef  true
82 #       undef true
83 #   endif /*! true  */
84 #   define false (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 /*=========================== stat.c ================================*/
289 /*===================================================================*/
290 void  stat_info          (void);
291 char *stat_mem_strdup    (const char *, size_t,         const char *, bool);
292 void *stat_mem_reallocate(void *,       size_t, size_t, const char *);
293 void  stat_mem_deallocate(void *);
294 void *stat_mem_allocate  (size_t, size_t, const char *);
295
296 #define mem_a(SIZE)              stat_mem_allocate  ((SIZE), __LINE__, __FILE__)
297 #define mem_d(PTRN)              stat_mem_deallocate((void*)(PTRN))
298 #define mem_r(PTRN, SIZE)        stat_mem_reallocate((void*)(PTRN), (SIZE), __LINE__, __FILE__)
299 #define mem_af(SIZE, FILE, LINE) stat_mem_allocate  ((SIZE), (LINE), (FILE))
300
301 /* TODO: rename to mem variations */
302 #define util_strdup(SRC)         stat_mem_strdup((char*)(SRC), __LINE__, __FILE__, false)
303 #define util_strdupe(SRC)        stat_mem_strdup((char*)(SRC), __LINE__, __FILE__, true)
304
305 /*===================================================================*/
306 /*=========================== util.c ================================*/
307 /*===================================================================*/
308 bool  util_filexists     (const char *);
309 bool  util_strupper      (const char *);
310 bool  util_strdigit      (const char *);
311 void  util_debug         (const char *, const char *, ...);
312 void  util_endianswap    (void *,  size_t, unsigned int);
313
314 size_t util_strtocmd    (const char *, char *, size_t);
315 size_t util_strtononcmd (const char *, char *, size_t);
316
317 uint16_t util_crc16(uint16_t crc, const char *data, size_t len);
318
319 void     util_seed(uint32_t);
320 uint32_t util_rand(void);
321
322 /*
323  * String functions (formatting, copying, concatenating, errors). These are wrapped
324  * to use the MSVC _safe_ versions when using MSVC, plus some implementations of
325  * these are non-conformant or don't exist such as asprintf and snprintf, which are
326  * not supported in C90, but do exist in C99.
327  */
328 int         util_vasprintf(char **ret, const char *fmt, va_list);
329 int         util_asprintf (char **ret, const char *fmt, ...);
330 int         util_snprintf (char *src,  size_t bytes, const char *format, ...);
331 char       *util_strcat   (char *dest, const char *src);
332 char       *util_strncpy  (char *dest, const char *src, size_t num);
333 const char *util_strerror (int num);
334
335 /*
336  * A flexible vector implementation: all vector pointers contain some
337  * data about themselfs exactly - sizeof(vector_t) behind the pointer
338  * this data is represented in the structure below.  Doing this allows
339  * us to use the array [] to access individual elements from the vector
340  * opposed to using set/get methods.
341  */
342 typedef struct {
343     size_t  allocated;
344     size_t  used;
345
346     /* can be extended now! whoot */
347 } vector_t;
348
349 /* hidden interface */
350 void _util_vec_grow(void **a, size_t i, size_t s);
351 #define GMQCC_VEC_WILLGROW(X,Y) ( \
352     ((!(X) || vec_meta(X)->used + Y >= vec_meta(X)->allocated)) ? \
353         (void)_util_vec_grow(((void**)&(X)), (Y), sizeof(*(X))) : \
354         (void)0                                                   \
355 )
356
357 /* exposed interface */
358 #define vec_meta(A)       (((vector_t*)((void*)A)) - 1)
359 #define vec_free(A)       ((void)((A) ? (mem_d((void*)vec_meta(A)), (A) = NULL) : 0))
360 #define vec_push(A,V)     (GMQCC_VEC_WILLGROW((A),1), (A)[vec_meta(A)->used++] = (V))
361 #define vec_size(A)       ((A) ? vec_meta(A)->used : 0)
362 #define vec_add(A,N)      (GMQCC_VEC_WILLGROW((A),(N)), vec_meta(A)->used += (N), &(A)[vec_meta(A)->used-(N)])
363 #define vec_last(A)       ((A)[vec_meta(A)->used - 1])
364 #define vec_pop(A)        ((void)(vec_meta(A)->used -= 1))
365 #define vec_shrinkto(A,N) ((void)(vec_meta(A)->used  = (N)))
366 #define vec_shrinkby(A,N) ((void)(vec_meta(A)->used -= (N)))
367 #define vec_append(A,N,S) ((void)(memcpy(vec_add((A), (N)), (S), (N) * sizeof(*(S)))))
368 #define vec_upload(X,Y,S) ((void)(memcpy(vec_add((X), (S) * sizeof(*(Y))), (Y), (S) * sizeof(*(Y)))))
369 #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)))
370
371 typedef struct trie_s {
372     void          *value;
373     struct trie_s *entries;
374 } correct_trie_t;
375
376 correct_trie_t* correct_trie_new(void);
377
378 typedef struct hash_table_t {
379     size_t                size;
380     struct hash_node_t **table;
381 } hash_table_t, *ht;
382
383 /*
384  * hashtable implementation:
385  *
386  * Note:
387  *      This was designed for pointers:  you manage the life of the object yourself
388  *      if you do use this for non-pointers please be warned that the object may not
389  *      be valid if the duration of it exceeds (i.e on stack).  So you need to allocate
390  *      yourself, or put those in global scope to ensure duration is for the whole
391  *      runtime.
392  *
393  * util_htnew(size)                             -- to make a new hashtable
394  * util_htset(table, key, value, sizeof(value)) -- to set something in the table
395  * util_htget(table, key)                       -- to get something from the table
396  * util_htdel(table)                            -- to delete the table
397  *
398  * example of use:
399  *
400  * ht    foo  = util_htnew(1024);
401  * int   data = 100;
402  * char *test = "hello world\n";
403  * util_htset(foo, "foo", (void*)&data);
404  * util_gtset(foo, "bar", (void*)test);
405  *
406  * printf("foo: %d, bar %s",
407  *     *((int *)util_htget(foo, "foo")),
408  *      ((char*)util_htget(foo, "bar"))
409  * );
410  *
411  * util_htdel(foo);
412  */
413 hash_table_t *util_htnew (size_t size);
414 void          util_htrem (hash_table_t *ht, void (*callback)(void *data));
415 void          util_htset (hash_table_t *ht, const char *key, void *value);
416 void          util_htdel (hash_table_t *ht);
417 size_t        util_hthash(hash_table_t *ht, const char *key);
418 void          util_htseth(hash_table_t *ht, const char *key, size_t hash, void *value);
419 void          util_htrmh (hash_table_t *ht, const char *key, size_t bin, void (*cb)(void*));
420 void          util_htrm  (hash_table_t *ht, const char *key, void (*cb)(void*));
421
422 void         *util_htget (hash_table_t *ht, const char *key);
423 void         *util_htgeth(hash_table_t *ht, const char *key, size_t hash);
424
425 /*===================================================================*/
426 /*============================ file.c ===============================*/
427 /*===================================================================*/
428 /* file handling */
429 void           fs_file_close  (FILE *);
430 int            fs_file_error  (FILE *);
431 int            fs_file_getc   (FILE *);
432 int            fs_file_printf (FILE *, const char *, ...);
433 int            fs_file_puts   (FILE *, const char *);
434 int            fs_file_seek   (FILE *, long int, int);
435 long int       fs_file_tell   (FILE *);
436
437 size_t         fs_file_read   (void *,        size_t, size_t, FILE *);
438 size_t         fs_file_write  (const void *,  size_t, size_t, FILE *);
439
440 FILE          *fs_file_open   (const char *, const char *);
441 int            fs_file_getline(char  **, size_t *, FILE *);
442
443 /* directory handling */
444 int            fs_dir_make    (const char *);
445 DIR           *fs_dir_open    (const char *);
446 int            fs_dir_close   (DIR *);
447 struct dirent *fs_dir_read    (DIR *);
448
449
450 /*===================================================================*/
451 /*=========================== correct.c =============================*/
452 /*===================================================================*/
453 typedef struct {
454     char   ***edits;
455     size_t  **lens;
456 } correction_t;
457
458 void  correct_del (correct_trie_t*, size_t **);
459 void  correct_add (correct_trie_t*, size_t ***, const char *);
460 char *correct_str (correction_t *, correct_trie_t*, const char *);
461 void  correct_init(correction_t *);
462 void  correct_free(correction_t *);
463
464 /*===================================================================*/
465 /*=========================== code.c ================================*/
466 /*===================================================================*/
467
468 /* TODO: cleanup */
469 /* Note: if you change the order, fix type_sizeof in ir.c */
470 enum {
471     TYPE_VOID     ,
472     TYPE_STRING   ,
473     TYPE_FLOAT    ,
474     TYPE_VECTOR   ,
475     TYPE_ENTITY   ,
476     TYPE_FIELD    ,
477     TYPE_FUNCTION ,
478     TYPE_POINTER  ,
479     TYPE_INTEGER  ,
480     TYPE_VARIANT  ,
481     TYPE_STRUCT   ,
482     TYPE_UNION    ,
483     TYPE_ARRAY    ,
484
485     TYPE_NIL      , /* it's its own type / untyped */
486     TYPE_NOEXPR   , /* simply invalid in expressions */
487
488     TYPE_COUNT
489 };
490
491 /* const/var qualifiers */
492 #define CV_NONE   0
493 #define CV_CONST  1
494 #define CV_VAR   -1
495 #define CV_WRONG  0x8000 /* magic number to help parsing */
496
497 extern const char    *type_name        [TYPE_COUNT];
498 extern const uint16_t type_store_instr [TYPE_COUNT];
499 extern const uint16_t field_store_instr[TYPE_COUNT];
500
501 /*
502  * could use type_store_instr + INSTR_STOREP_F - INSTR_STORE_F
503  * but this breaks when TYPE_INTEGER is added, since with the enhanced
504  * instruction set, the old ones are left untouched, thus the _I instructions
505  * are at a seperate place.
506  */
507 extern const uint16_t type_storep_instr[TYPE_COUNT];
508 extern const uint16_t type_eq_instr    [TYPE_COUNT];
509 extern const uint16_t type_ne_instr    [TYPE_COUNT];
510 extern const uint16_t type_not_instr   [TYPE_COUNT];
511
512 typedef struct {
513     uint32_t offset;      /* Offset in file of where data begins  */
514     uint32_t length;      /* Length of section (how many of)      */
515 } prog_section;
516
517 typedef struct {
518     uint32_t     version;      /* Program version (6)     */
519     uint16_t     crc16;
520     uint16_t     skip;
521
522     prog_section statements;   /* prog_section_statement  */
523     prog_section defs;         /* prog_section_def        */
524     prog_section fields;       /* prog_section_field      */
525     prog_section functions;    /* prog_section_function   */
526     prog_section strings;
527     prog_section globals;
528     uint32_t     entfield;     /* Number of entity fields */
529 } prog_header;
530
531 /*
532  * Each paramater incerements by 3 since vector types hold
533  * 3 components (x,y,z).
534  */
535 #define OFS_NULL      0
536 #define OFS_RETURN    1
537 #define OFS_PARM0     (OFS_RETURN+3)
538 #define OFS_PARM1     (OFS_PARM0 +3)
539 #define OFS_PARM2     (OFS_PARM1 +3)
540 #define OFS_PARM3     (OFS_PARM2 +3)
541 #define OFS_PARM4     (OFS_PARM3 +3)
542 #define OFS_PARM5     (OFS_PARM4 +3)
543 #define OFS_PARM6     (OFS_PARM5 +3)
544 #define OFS_PARM7     (OFS_PARM6 +3)
545
546 typedef struct {
547     uint16_t opcode;
548
549     /* operand 1 */
550     union {
551         int16_t  s1; /* signed   */
552         uint16_t u1; /* unsigned */
553     } o1;
554     /* operand 2 */
555     union {
556         int16_t  s1; /* signed   */
557         uint16_t u1; /* unsigned */
558     } o2;
559     /* operand 3 */
560     union {
561         int16_t  s1; /* signed   */
562         uint16_t u1; /* unsigned */
563     } o3;
564
565     /*
566      * This is the same as the structure in darkplaces
567      * {
568      *     unsigned short op;
569      *     short          a,b,c;
570      * }
571      * But this one is more sane to work with, and the
572      * type sizes are guranteed.
573      */
574 } prog_section_statement;
575
576 typedef struct {
577     /*
578      * The types:
579      * 0 = ev_void
580      * 1 = ev_string
581      * 2 = ev_float
582      * 3 = ev_vector
583      * 4 = ev_entity
584      * 5 = ev_field
585      * 6 = ev_function
586      * 7 = ev_pointer -- engine only
587      * 8 = ev_bad     -- engine only
588      */
589     uint16_t type;
590     uint16_t offset;
591     uint32_t name;
592 } prog_section_both;
593
594 typedef prog_section_both prog_section_def;
595 typedef prog_section_both prog_section_field;
596
597 /* this is ORed to the type */
598 #define DEF_SAVEGLOBAL (1<<15)
599 #define DEF_TYPEMASK   ((1<<15)-1)
600
601 typedef struct {
602     int32_t   entry;      /* in statement table for instructions  */
603     uint32_t  firstlocal; /* First local in local table           */
604     uint32_t  locals;     /* Total ints of params + locals        */
605     uint32_t  profile;    /* Always zero (engine uses this)       */
606     uint32_t  name;       /* name of function in string table     */
607     uint32_t  file;       /* file of the source file              */
608     int32_t   nargs;      /* number of arguments                  */
609     uint8_t   argsize[8]; /* size of arguments (keep 8 always?)   */
610 } prog_section_function;
611
612 /*
613  * Instructions
614  * These are the external instructions supported by the interperter
615  * this is what things compile to (from the C code).
616  */
617 enum {
618     INSTR_DONE,
619     INSTR_MUL_F,
620     INSTR_MUL_V,
621     INSTR_MUL_FV, /* NOTE: the float operands must NOT be at the same locations: A != C */
622     INSTR_MUL_VF, /* and here: B != C */
623     INSTR_DIV_F,
624     INSTR_ADD_F,
625     INSTR_ADD_V,
626     INSTR_SUB_F,
627     INSTR_SUB_V,
628     INSTR_EQ_F,
629     INSTR_EQ_V,
630     INSTR_EQ_S,
631     INSTR_EQ_E,
632     INSTR_EQ_FNC,
633     INSTR_NE_F,
634     INSTR_NE_V,
635     INSTR_NE_S,
636     INSTR_NE_E,
637     INSTR_NE_FNC,
638     INSTR_LE,
639     INSTR_GE,
640     INSTR_LT,
641     INSTR_GT,
642     INSTR_LOAD_F,
643     INSTR_LOAD_V,
644     INSTR_LOAD_S,
645     INSTR_LOAD_ENT,
646     INSTR_LOAD_FLD,
647     INSTR_LOAD_FNC,
648     INSTR_ADDRESS,
649     INSTR_STORE_F,
650     INSTR_STORE_V,
651     INSTR_STORE_S,
652     INSTR_STORE_ENT,
653     INSTR_STORE_FLD,
654     INSTR_STORE_FNC,
655     INSTR_STOREP_F,
656     INSTR_STOREP_V,
657     INSTR_STOREP_S,
658     INSTR_STOREP_ENT,
659     INSTR_STOREP_FLD,
660     INSTR_STOREP_FNC,
661     INSTR_RETURN,
662     INSTR_NOT_F,
663     INSTR_NOT_V,
664     INSTR_NOT_S,
665     INSTR_NOT_ENT,
666     INSTR_NOT_FNC,
667     INSTR_IF,
668     INSTR_IFNOT,
669     INSTR_CALL0,
670     INSTR_CALL1,
671     INSTR_CALL2,
672     INSTR_CALL3,
673     INSTR_CALL4,
674     INSTR_CALL5,
675     INSTR_CALL6,
676     INSTR_CALL7,
677     INSTR_CALL8,
678     INSTR_STATE,
679     INSTR_GOTO,
680     INSTR_AND,
681     INSTR_OR,
682     INSTR_BITAND,
683     INSTR_BITOR,
684
685     /*
686      * Virtual instructions used by the IR
687      * Keep at the end!
688      */
689     VINSTR_END,
690     VINSTR_PHI,
691     VINSTR_JUMP,
692     VINSTR_COND,
693     /* A never returning CALL.
694      * Creating this causes IR blocks to be marked as 'final'.
695      * No-Return-Call
696      */
697     VINSTR_NRCALL
698 };
699
700 /* uhh? */
701 typedef float   qcfloat;
702 typedef int32_t qcint;
703
704 typedef struct {
705     prog_section_statement *statements;
706     int                    *linenums;
707     prog_section_def       *defs;
708     prog_section_field     *fields;
709     prog_section_function  *functions;
710     int                    *globals;
711     char                   *chars;
712     uint16_t                crc;
713     uint32_t                entfields;
714     ht                      string_cache;
715     qcint                   string_cached_empty;
716 } code_t;
717
718 /*
719  * code_write          -- writes out the compiled file
720  * code_init           -- prepares the code file
721  * code_genstrin       -- generates string for code
722  * code_alloc_field    -- allocated a field
723  * code_push_statement -- keeps statements and linenumbers together
724  * code_pop_statement  -- keeps statements and linenumbers together
725  */
726 bool      code_write         (code_t *, const char *filename, const char *lno);
727 GMQCC_WARN
728 code_t   *code_init          (void);
729 void      code_cleanup       (code_t *);
730 uint32_t  code_genstring     (code_t *, const char *string);
731 qcint     code_alloc_field   (code_t *, size_t qcsize);
732 void      code_push_statement(code_t *, prog_section_statement *stmt, int linenum);
733 void      code_pop_statement (code_t *);
734
735 /*
736  * A shallow copy of a lex_file to remember where which ast node
737  * came from.
738  */
739 typedef struct {
740     const char *file;
741     size_t      line;
742     size_t      column;
743 } lex_ctx;
744
745 /*===================================================================*/
746 /*============================ con.c ================================*/
747 /*===================================================================*/
748 enum {
749     CON_BLACK   = 30,
750     CON_RED,
751     CON_GREEN,
752     CON_BROWN,
753     CON_BLUE,
754     CON_MAGENTA,
755     CON_CYAN ,
756     CON_WHITE
757 };
758
759 /* message level */
760 enum {
761     LVL_MSG,
762     LVL_WARNING,
763     LVL_ERROR
764 };
765
766 FILE *con_default_out(void);
767 FILE *con_default_err(void);
768
769 void con_vprintmsg (int level, const char *name, size_t line, size_t column, const char *msgtype, const char *msg, va_list ap);
770 void con_printmsg  (int level, const char *name, size_t line, size_t column, const char *msgtype, const char *msg, ...);
771 void con_cvprintmsg(void *ctx, int lvl, const char *msgtype, const char *msg, va_list ap);
772 void con_cprintmsg (void *ctx, int lvl, const char *msgtype, const char *msg, ...);
773
774 void con_close (void);
775 void con_init  (void);
776 void con_reset (void);
777 void con_color (int);
778 int  con_change(const char *, const char *);
779 int  con_verr  (const char *, va_list);
780 int  con_vout  (const char *, va_list);
781 int  con_err   (const char *, ...);
782 int  con_out   (const char *, ...);
783
784 /* error/warning interface */
785 extern size_t compile_errors;
786 extern size_t compile_Werrors;
787 extern size_t compile_warnings;
788
789 void /********/ compile_error   (lex_ctx ctx, /*LVL_ERROR*/ const char *msg, ...);
790 void /********/ vcompile_error  (lex_ctx ctx, /*LVL_ERROR*/ const char *msg, va_list ap);
791 bool GMQCC_WARN compile_warning (lex_ctx ctx, int warntype, const char *fmt, ...);
792 bool GMQCC_WARN vcompile_warning(lex_ctx ctx, int warntype, const char *fmt, va_list ap);
793 void            compile_show_werrors(void);
794
795 /*===================================================================*/
796 /*========================= assembler.c =============================*/
797 /*===================================================================*/
798 /* TODO: remove this ... */
799 static const struct {
800     const char  *m; /* menomic     */
801     const size_t o; /* operands    */
802     const size_t l; /* menomic len */
803 } asm_instr[] = {
804     { "DONE"      , 1, 4 },
805     { "MUL_F"     , 3, 5 },
806     { "MUL_V"     , 3, 5 },
807     { "MUL_FV"    , 3, 6 },
808     { "MUL_VF"    , 3, 6 },
809     { "DIV"       , 0, 3 },
810     { "ADD_F"     , 3, 5 },
811     { "ADD_V"     , 3, 5 },
812     { "SUB_F"     , 3, 5 },
813     { "SUB_V"     , 3, 5 },
814     { "EQ_F"      , 0, 4 },
815     { "EQ_V"      , 0, 4 },
816     { "EQ_S"      , 0, 4 },
817     { "EQ_E"      , 0, 4 },
818     { "EQ_FNC"    , 0, 6 },
819     { "NE_F"      , 0, 4 },
820     { "NE_V"      , 0, 4 },
821     { "NE_S"      , 0, 4 },
822     { "NE_E"      , 0, 4 },
823     { "NE_FNC"    , 0, 6 },
824     { "LE"        , 0, 2 },
825     { "GE"        , 0, 2 },
826     { "LT"        , 0, 2 },
827     { "GT"        , 0, 2 },
828     { "FIELD_F"   , 0, 7 },
829     { "FIELD_V"   , 0, 7 },
830     { "FIELD_S"   , 0, 7 },
831     { "FIELD_ENT" , 0, 9 },
832     { "FIELD_FLD" , 0, 9 },
833     { "FIELD_FNC" , 0, 9 },
834     { "ADDRESS"   , 0, 7 },
835     { "STORE_F"   , 0, 7 },
836     { "STORE_V"   , 0, 7 },
837     { "STORE_S"   , 0, 7 },
838     { "STORE_ENT" , 0, 9 },
839     { "STORE_FLD" , 0, 9 },
840     { "STORE_FNC" , 0, 9 },
841     { "STOREP_F"  , 0, 8 },
842     { "STOREP_V"  , 0, 8 },
843     { "STOREP_S"  , 0, 8 },
844     { "STOREP_ENT", 0, 10},
845     { "STOREP_FLD", 0, 10},
846     { "STOREP_FNC", 0, 10},
847     { "RETURN"    , 0, 6 },
848     { "NOT_F"     , 0, 5 },
849     { "NOT_V"     , 0, 5 },
850     { "NOT_S"     , 0, 5 },
851     { "NOT_ENT"   , 0, 7 },
852     { "NOT_FNC"   , 0, 7 },
853     { "IF"        , 0, 2 },
854     { "IFNOT"     , 0, 5 },
855     { "CALL0"     , 1, 5 },
856     { "CALL1"     , 2, 5 },
857     { "CALL2"     , 3, 5 },
858     { "CALL3"     , 4, 5 },
859     { "CALL4"     , 5, 5 },
860     { "CALL5"     , 6, 5 },
861     { "CALL6"     , 7, 5 },
862     { "CALL7"     , 8, 5 },
863     { "CALL8"     , 9, 5 },
864     { "STATE"     , 0, 5 },
865     { "GOTO"      , 0, 4 },
866     { "AND"       , 0, 3 },
867     { "OR"        , 0, 2 },
868     { "BITAND"    , 0, 6 },
869     { "BITOR"     , 0, 5 },
870
871     { "END"       , 0, 3 } /* virtual assembler instruction */
872 };
873 /*===================================================================*/
874 /*============================= ir.c ================================*/
875 /*===================================================================*/
876
877 enum store_types {
878     store_global,
879     store_local,  /* local, assignable for now, should get promoted later */
880     store_param,  /* parameters, they are locals with a fixed position */
881     store_value,  /* unassignable */
882     store_return  /* unassignable, at OFS_RETURN */
883 };
884
885 typedef struct {
886     qcfloat x, y, z;
887 } vector;
888
889 vector  vec3_add  (vector, vector);
890 vector  vec3_sub  (vector, vector);
891 qcfloat vec3_mulvv(vector, vector);
892 vector  vec3_mulvf(vector, float);
893
894 /*===================================================================*/
895 /*============================= exec.c ==============================*/
896 /*===================================================================*/
897
898 /* TODO: cleanup */
899 /*
900  * Darkplaces has (or will have) a 64 bit prog loader
901  * where the 32 bit qc program is autoconverted on load.
902  * Since we may want to support that as well, let's redefine
903  * float and int here.
904  */
905 typedef union {
906     qcint   _int;
907     qcint    string;
908     qcint    function;
909     qcint    edict;
910     qcfloat _float;
911     qcfloat vector[3];
912     qcint   ivector[3];
913 } qcany;
914
915 typedef char qcfloat_size_is_correct [sizeof(qcfloat) == 4 ?1:-1];
916 typedef char qcint_size_is_correct   [sizeof(qcint)   == 4 ?1:-1];
917
918 enum {
919     VMERR_OK,
920     VMERR_TEMPSTRING_ALLOC,
921
922     VMERR_END
923 };
924
925 #define VM_JUMPS_DEFAULT 1000000
926
927 /* execute-flags */
928 #define VMXF_DEFAULT 0x0000     /* default flags - nothing */
929 #define VMXF_TRACE   0x0001     /* trace: print statements before executing */
930 #define VMXF_PROFILE 0x0002     /* profile: increment the profile counters */
931
932 struct qc_program_s;
933
934 typedef int (*prog_builtin)(struct qc_program_s *prog);
935
936 typedef struct {
937     qcint                  stmt;
938     size_t                 localsp;
939     prog_section_function *function;
940 } qc_exec_stack;
941
942 typedef struct qc_program_s {
943     char           *filename;
944
945     prog_section_statement *code;
946     prog_section_def       *defs;
947     prog_section_def       *fields;
948     prog_section_function  *functions;
949     char                   *strings;
950     qcint                  *globals;
951     qcint                  *entitydata;
952     bool                   *entitypool;
953
954     const char*            *function_stack;
955
956     uint16_t crc16;
957
958     size_t tempstring_start;
959     size_t tempstring_at;
960
961     qcint  vmerror;
962
963     size_t *profile;
964
965     prog_builtin *builtins;
966     size_t        builtins_count;
967
968     /* size_t ip; */
969     qcint  entities;
970     size_t entityfields;
971     bool   allowworldwrites;
972
973     qcint         *localstack;
974     qc_exec_stack *stack;
975     size_t statement;
976
977     size_t xflags;
978
979     int    argc; /* current arg count for debugging */
980 } qc_program;
981
982 qc_program* prog_load(const char *filename, bool ignoreversion);
983 void        prog_delete(qc_program *prog);
984
985 bool prog_exec(qc_program *prog, prog_section_function *func, size_t flags, long maxjumps);
986
987 const char*       prog_getstring (qc_program *prog, qcint str);
988 prog_section_def* prog_entfield  (qc_program *prog, qcint off);
989 prog_section_def* prog_getdef    (qc_program *prog, qcint off);
990 qcany*            prog_getedict  (qc_program *prog, qcint e);
991 qcint             prog_tempstring(qc_program *prog, const char *_str);
992
993
994 /*===================================================================*/
995 /*===================== parser.c commandline ========================*/
996 /*===================================================================*/
997 struct parser_s;
998 struct parser_s *parser_create        (void);
999 bool             parser_compile_file  (struct parser_s *parser, const char *);
1000 bool             parser_compile_string(struct parser_s *parser, const char *, const char *, size_t);
1001 bool             parser_finish        (struct parser_s *parser, const char *);
1002 void             parser_cleanup       (struct parser_s *parser);
1003
1004 /*===================================================================*/
1005 /*====================== ftepp.c commandline ========================*/
1006 /*===================================================================*/
1007 struct ftepp_s;
1008 struct ftepp_s *ftepp_create           (void);
1009 bool            ftepp_preprocess_file  (struct ftepp_s *ftepp, const char *filename);
1010 bool            ftepp_preprocess_string(struct ftepp_s *ftepp, const char *name, const char *str);
1011 void            ftepp_finish           (struct ftepp_s *ftepp);
1012 const char     *ftepp_get              (struct ftepp_s *ftepp);
1013 void            ftepp_flush            (struct ftepp_s *ftepp);
1014 void            ftepp_add_define       (struct ftepp_s *ftepp, const char *source, const char *name);
1015 void            ftepp_add_macro        (struct ftepp_s *ftepp, const char *name,   const char *value);
1016
1017 /*===================================================================*/
1018 /*======================= main.c commandline ========================*/
1019 /*===================================================================*/
1020
1021 #if 1
1022 /* Helpers to allow for a whole lot of flags. Otherwise we'd limit
1023  * to 32 or 64 -f options...
1024  */
1025 typedef struct {
1026     size_t  idx; /* index into an array of 32 bit words */
1027     uint8_t bit; /* bit index for the 8 bit group idx points to */
1028 } longbit;
1029 #define LONGBIT(bit) { ((bit)/32), ((bit)%32) }
1030 #define LONGBIT_SET(B, I) ((B).idx = (I)/32, (B).bit = ((I)%32))
1031 #else
1032 typedef uint32_t longbit;
1033 #define LONGBIT(bit) (bit)
1034 #define LONGBIT_SET(B, I) ((B) = (I))
1035 #endif
1036
1037 /*===================================================================*/
1038 /*=========================== utf8lib.c =============================*/
1039 /*===================================================================*/
1040 typedef uint32_t uchar_t;
1041
1042 bool    u8_analyze (const char *_s, size_t *_start, size_t *_len, uchar_t *_ch, size_t _maxlen);
1043 size_t  u8_strlen  (const char*);
1044 size_t  u8_strnlen (const char*, size_t);
1045 uchar_t u8_getchar (const char*, const char**);
1046 uchar_t u8_getnchar(const char*, const char**, size_t);
1047 int     u8_fromchar(uchar_t w,   char *to,     size_t maxlen);
1048
1049 /*===================================================================*/
1050 /*============================= opts.c ==============================*/
1051 /*===================================================================*/
1052 typedef struct {
1053     const char *name;
1054     longbit     bit;
1055 } opts_flag_def;
1056
1057 bool opts_setflag  (const char *, bool);
1058 bool opts_setwarn  (const char *, bool);
1059 bool opts_setwerror(const char *, bool);
1060 bool opts_setoptim (const char *, bool);
1061
1062 void opts_init         (const char *, int, size_t);
1063 void opts_set          (uint32_t   *, size_t, bool);
1064 void opts_setoptimlevel(unsigned int);
1065 void opts_ini_init     (const char *);
1066
1067 /* Saner flag handling */
1068 void opts_backup_non_Wall(void);
1069 void opts_restore_non_Wall(void);
1070 void opts_backup_non_Werror_all(void);
1071 void opts_restore_non_Werror_all(void);
1072
1073 enum {
1074 # define GMQCC_TYPE_FLAGS
1075 # define GMQCC_DEFINE_FLAG(X) X,
1076 #  include "opts.def"
1077     COUNT_FLAGS
1078 };
1079 static const opts_flag_def opts_flag_list[] = {
1080 # define GMQCC_TYPE_FLAGS
1081 # define GMQCC_DEFINE_FLAG(X) { #X, LONGBIT(X) },
1082 #  include "opts.def"
1083     { NULL, LONGBIT(0) }
1084 };
1085
1086 enum {
1087 # define GMQCC_TYPE_WARNS
1088 # define GMQCC_DEFINE_FLAG(X) WARN_##X,
1089 #  include "opts.def"
1090     COUNT_WARNINGS
1091 };
1092 static const opts_flag_def opts_warn_list[] = {
1093 # define GMQCC_TYPE_WARNS
1094 # define GMQCC_DEFINE_FLAG(X) { #X, LONGBIT(WARN_##X) },
1095 #  include "opts.def"
1096     { NULL, LONGBIT(0) }
1097 };
1098
1099 enum {
1100 # define GMQCC_TYPE_OPTIMIZATIONS
1101 # define GMQCC_DEFINE_FLAG(NAME, MIN_O) OPTIM_##NAME,
1102 #  include "opts.def"
1103     COUNT_OPTIMIZATIONS
1104 };
1105 static const opts_flag_def opts_opt_list[] = {
1106 # define GMQCC_TYPE_OPTIMIZATIONS
1107 # define GMQCC_DEFINE_FLAG(NAME, MIN_O) { #NAME, LONGBIT(OPTIM_##NAME) },
1108 #  include "opts.def"
1109     { NULL, LONGBIT(0) }
1110 };
1111 static const unsigned int opts_opt_oflag[] = {
1112 # define GMQCC_TYPE_OPTIMIZATIONS
1113 # define GMQCC_DEFINE_FLAG(NAME, MIN_O) MIN_O,
1114 #  include "opts.def"
1115     0
1116 };
1117
1118 enum {
1119 #   define GMQCC_TYPE_OPTIONS
1120 #   define GMQCC_DEFINE_FLAG(X) OPTION_##X,
1121 #   include "opts.def"
1122     OPTION_COUNT
1123 };
1124
1125 extern unsigned int opts_optimizationcount[COUNT_OPTIMIZATIONS];
1126
1127 /* other options: */
1128 typedef enum {
1129     COMPILER_QCC,     /* circa  QuakeC */
1130     COMPILER_FTEQCC,  /* fteqcc QuakeC */
1131     COMPILER_QCCX,    /* qccx   QuakeC */
1132     COMPILER_GMQCC    /* this   QuakeC */
1133 } opts_std_t;
1134
1135 typedef union {
1136     bool     B;
1137     uint16_t U16;
1138     uint32_t U32;
1139     char    *STR;
1140 } opt_value_t;
1141
1142
1143 typedef struct {
1144     opt_value_t  options      [OPTION_COUNT];
1145     uint32_t     flags        [1 + (COUNT_FLAGS         / 32)];
1146     uint32_t     warn         [1 + (COUNT_WARNINGS      / 32)];
1147     uint32_t     werror       [1 + (COUNT_WARNINGS      / 32)];
1148     uint32_t     warn_backup  [1 + (COUNT_WARNINGS      / 32)];
1149     uint32_t     werror_backup[1 + (COUNT_WARNINGS      / 32)];
1150     uint32_t     optimization [1 + (COUNT_OPTIMIZATIONS / 32)];
1151     bool         optimizeoff; /* True when -O0 */
1152 } opts_cmd_t;
1153
1154 extern opts_cmd_t opts;
1155
1156 #define OPTS_GENERIC(f,i)    (!! (((f)[(i)/32]) & (1<< (unsigned)((i)%32))))
1157 #define OPTS_FLAG(i)         OPTS_GENERIC(opts.flags,        (i))
1158 #define OPTS_WARN(i)         OPTS_GENERIC(opts.warn,         (i))
1159 #define OPTS_WERROR(i)       OPTS_GENERIC(opts.werror,       (i))
1160 #define OPTS_OPTIMIZATION(i) OPTS_GENERIC(opts.optimization, (i))
1161 #define OPTS_OPTION_BOOL(X) (opts.options[X].B)
1162 #define OPTS_OPTION_U16(X)  (opts.options[X].U16)
1163 #define OPTS_OPTION_U32(X)  (opts.options[X].U32)
1164 #define OPTS_OPTION_STR(X)  (opts.options[X].STR)
1165
1166 #endif /*! GMQCC_HDR */