]> git.xonotic.org Git - xonotic/gmqcc.git/blob - gmqcc.h
Refactor some util/platform usage and extend file system file interface to accept...
[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 <stddef.h>
28 #include <time.h>   /* TODO remove?*/
29
30 /*
31  * Disable some over protective warnings in visual studio because fixing them is a waste
32  * of my time.
33  */
34 #ifdef _MSC_VER
35 #   pragma warning(disable : 4244 ) /* conversion from 'int' to 'float', possible loss of data */
36 #endif /*! _MSC_VER */
37
38 #define GMQCC_VERSION_MAJOR 0
39 #define GMQCC_VERSION_MINOR 4
40 #define GMQCC_VERSION_PATCH 0
41 #define GMQCC_VERSION_BUILD(J,N,P) (((J)<<16)|((N)<<8)|(P))
42 #define GMQCC_VERSION \
43     GMQCC_VERSION_BUILD(GMQCC_VERSION_MAJOR, GMQCC_VERSION_MINOR, GMQCC_VERSION_PATCH)
44 /* Undefine the following on a release-tag: */
45 #define GMQCC_VERSION_TYPE_DEVEL
46
47 /* Full version string in case we need it */
48 #ifdef GMQCC_VERSION_TYPE_DEVEL
49 #    ifdef GMQCC_GITINFO
50 #        define GMQCC_DEV_VERSION_STRING "git build: " GMQCC_GITINFO "\n"
51 #    elif defined(GMQCC_VERSION_TYPE_DEVEL)
52 #        define GMQCC_DEV_VERSION_STRING "development build\n"
53 #    else
54 #        define GMQCC_DEV_VERSION_STRING
55 #    endif /*! GMQCC_GITINGO */
56 #else
57 #    define GMQCC_DEV_VERSION_STRING
58 #endif
59
60 #define GMQCC_STRINGIFY(x) #x
61 #define GMQCC_IND_STRING(x) GMQCC_STRINGIFY(x)
62 #define GMQCC_FULL_VERSION_STRING \
63 "GMQCC " \
64 GMQCC_IND_STRING(GMQCC_VERSION_MAJOR) "." \
65 GMQCC_IND_STRING(GMQCC_VERSION_MINOR) "." \
66 GMQCC_IND_STRING(GMQCC_VERSION_PATCH) \
67 " Built " __DATE__ " " __TIME__ \
68 "\n" GMQCC_DEV_VERSION_STRING
69
70 /*
71  * We cannot rely on C99 at all, since compilers like MSVC
72  * simply don't support it.  We define our own boolean type
73  * as a result (since we cannot include <stdbool.h>). For
74  * compilers that are in 1999 mode (C99 compliant) we can use
75  * the language keyword _Bool which can allow for better code
76  * on GCC and GCC-like compilers, opposed to `int`.
77  */
78 #ifndef __cplusplus
79 #   ifdef  false
80 #       undef  false
81 #   endif /*! false */
82 #   ifdef  true
83 #       undef true
84 #   endif /*! true  */
85 #   define false (unsigned)(0)
86 #   define true  (unsigned)(1)
87 #   ifdef __STDC_VERSION__
88 #       if __STDC_VERSION__ < 199901L && __GNUC__ < 3
89             typedef int  bool;
90 #       else
91             typedef _Bool bool;
92 #       endif /*! __STDC_VERSION__ < 199901L && __GNUC__ < 3 */
93 #   else
94         typedef int bool;
95 #   endif /*! __STDC_VERSION__ */
96 #endif /*! __cplusplus      */
97
98 /*
99  * Of some functions which are generated we want to make sure
100  * that the result isn't ignored. To find such function calls,
101  * we use this macro.
102  */
103 #if defined(__GNUC__) || defined(__CLANG__)
104 #   define GMQCC_WARN __attribute__((warn_unused_result))
105 #   define GMQCC_USED __attribute__((used))
106 #else
107 #   define GMQCC_WARN
108 #   define GMQCC_USED
109 #endif /*! defined(__GNUC__) || defined (__CLANG__) */
110
111 /*
112  * Inline is not supported in < C90, however some compilers
113  * like gcc and clang might have an inline attribute we can
114  * use if present.
115  */
116 #ifdef __STDC_VERSION__
117 #    if __STDC_VERSION__ < 199901L
118 #       if defined(__GNUC__) || defined (__CLANG__)
119 #           if __GNUC__ < 2
120 #               define GMQCC_INLINE
121 #           else
122 #               define GMQCC_INLINE __attribute__ ((always_inline))
123 #           endif /*! __GNUC__ < 2 */
124 #       else
125 #           define GMQCC_INLINE
126 #       endif /*! defined(__GNUC__) || defined (__CLANG__) */
127 #    else
128 #       define GMQCC_INLINE inline
129 #    endif /*! __STDC_VERSION < 199901L */
130 /*
131  * Visual studio has __forcinline we can use.  So lets use that
132  * I suspect it also has just __inline of some sort, but our use
133  * of inline is correct (not guessed), WE WANT IT TO BE INLINE
134  */
135 #elif defined(_MSC_VER)
136 #    define GMQCC_INLINE __forceinline
137 #else
138 #    define GMQCC_INLINE
139 #endif /*! __STDC_VERSION__ */
140
141 /*
142  * noreturn is present in GCC and clang
143  * it's required for _ast_node_destory otherwise -Wmissing-noreturn
144  * in clang complains about there being no return since abort() is
145  * called.
146  */
147 #if (defined(__GNUC__) && __GNUC__ >= 2) || defined(__CLANG__)
148 #    define GMQCC_NORETURN __attribute__ ((noreturn))
149 #else
150 #    define GMQCC_NORETURN
151 #endif /*! (defined(__GNUC__) && __GNUC__ >= 2) || defined (__CLANG__) */
152
153 #if (defined(__GNUC__)) || defined(__CLANG__)
154 #   define GMQCC_LIKELY(X)   __builtin_expect((X), 1)
155 #   define GMQCC_UNLIKELY(X) __builtin_expect((X), 0)
156 #else
157 #   define GMQCC_LIKELY(X)   (X)
158 #   define GMQCC_UNLIKELY(X) (X)
159 #endif
160
161 #define GMQCC_ARRAY_COUNT(X) (sizeof(X) / sizeof((X)[0]))
162
163 #ifndef _MSC_VER
164 #   include <stdint.h>
165 #else
166     typedef unsigned __int8  uint8_t;
167     typedef unsigned __int16 uint16_t;
168     typedef unsigned __int32 uint32_t;
169     typedef unsigned __int64 uint64_t;
170
171     typedef __int16          int16_t;
172     typedef __int32          int32_t;
173     typedef __int64          int64_t;
174 #endif /*! _MSC_VER */
175
176 /*
177  * Very roboust way at determining endianess at compile time: this handles
178  * almost every possible situation.  Otherwise a runtime check has to be
179  * performed.
180  */
181 #define GMQCC_BYTE_ORDER_LITTLE 1234
182 #define GMQCC_BYTE_ORDER_BIG    4321
183
184 #if defined (__GNUC__) || defined (__GNU_LIBRARY__)
185 #   if defined (__FreeBSD__) || defined (__OpenBSD__)
186 #       include <sys/endian.h>
187 #   elif defined (BSD) && (BSD >= 199103) || defined (__DJGPP__) || defined (__CYGWIN32__)
188 #       include <machine/endian.h>
189 #   elif defined (__APPLE__)
190 #       if defined (__BIG_ENDIAN__) && !defined(BIG_ENDIAN)
191 #           define BIG_ENDIAN
192 #       elif defined (__LITTLE_ENDIAN__) && !defined (LITTLE_ENDIAN)
193 #           define LITTLE_ENDIAN
194 #       endif /*! defined (__BIG_ENDIAN__) && !defined(BIG_ENDIAN) */
195 #   elif !defined (__MINGW32__)
196 #       include <endian.h>
197 #       if !defined (__BEOS__)
198 #           include <byteswap.h>
199 #       endif /*! !definde (__BEOS__) */
200 #   endif /*! defined (__FreeBSD__) || defined (__OpenBSD__) */
201 #endif /*! defined (__GNUC__) || defined (__GNU_LIBRARY__) */
202 #if !defined(PLATFORM_BYTE_ORDER)
203 #   if defined (LITTLE_ENDIAN) || defined (BIG_ENDIAN)
204 #       if defined (LITTLE_ENDIAN) && !defined(BIG_ENDIAN)
205 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_LITTLE
206 #       elif !defined (LITTLE_ENDIAN) && defined (BIG_ENDIAN)
207 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_BIG
208 #       elif defined (BYTE_ORDER) && (BYTE_ORDER == LITTLE_ENDIAN)
209 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_LITTLE
210 #       elif defined (BYTE_ORDER) && (BYTE_ORDER == BIG_ENDIAN)
211 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_BIG
212 #       endif /*! defined (LITTLE_ENDIAN) && !defined(BIG_ENDIAN) */
213 #   elif defined (_LITTLE_ENDIAN) || defined (_BIG_ENDIAN)
214 #       if defined (_LITTLE_ENDIAN) && !defined(_BIG_ENDIAN)
215 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_LITTLE
216 #       elif !defined (_LITTLE_ENDIAN) && defined (_BIG_ENDIAN)
217 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_BIG
218 #       elif defined (_BYTE_ORDER) && (_BYTE_ORDER == _LITTLE_ENDIAN)
219 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_LITTLE
220 #       elif defined (_BYTE_ORDER) && (_BYTE_ORDER == _BIG_ENDIAN)
221 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_BIG
222 #       endif /*! defined (_LITTLE_ENDIAN) && !defined(_BIG_ENDIAN) */
223 #   elif defined (__LITTLE_ENDIAN__) || defined (__BIG_ENDIAN__)
224 #       if defined (__LITTLE_ENDIAN__) && !defined (__BIG_ENDIAN__)
225 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_LITTLE
226 #       elif !defined (__LITTLE_ENDIAN__) && defined (__BIG_ENDIAN__)
227 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_BIG
228 #       elif defined (__BYTE_ORDER__) && (__BYTE_ORDER__ == __LITTLE_ENDIAN__)
229 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_LITTLE
230 #       elif defined (__BYTE_ORDER__) && (__BYTE_ORDER__ == __BIG_ENDIAN__)
231 #           define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_BIG
232 #       endif /*! defined (__LITTLE_ENDIAN__) && !defined (__BIG_ENDIAN__) */
233 #   endif /*! defined(LITTLE_ENDIAN) || defined (BIG_ENDIAN) */
234 #endif /*! !defined(PLATFORM_BYTE_ORDER) */
235 #if !defined (PLATFORM_BYTE_ORDER)
236 #   if   defined (__alpha__) || defined (__alpha)    || defined (i386)       || \
237          defined (__i386__)  || defined (_M_I86)     || defined (_M_IX86)    || \
238          defined (__OS2__)   || defined (sun386)     || defined (__TURBOC__) || \
239          defined (vax)       || defined (vms)        || defined (VMS)        || \
240          defined (__VMS)     || defined (__x86_64__) || defined (_M_IA64)    || \
241          defined (_M_X64)    || defined (__i386)     || defined (__x86_64)
242 #       define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_LITTLE
243 #   elif defined (AMIGA)     || defined (applec)     || defined (__AS400__)  || \
244          defined (_CRAY)     || defined (__hppa)     || defined (__hp9000)   || \
245          defined (ibm370)    || defined (mc68000)    || defined (m68k)       || \
246          defined (__MRC__)   || defined (__MVS__)    || defined (__MWERKS__) || \
247          defined (sparc)     || defined (__sparc)    || defined (SYMANTEC_C) || \
248          defined (__TANDEM)  || defined (THINK_C)    || defined (__VMCMS__)  || \
249          defined (__PPC__)   || defined (__PPC)      || defined (PPC)
250 #       define PLATFORM_BYTE_ORDER GMQCC_BYTE_ORDER_BIG
251 #   else
252 #       define PLATFORM_BYTE_ORDER -1
253 #   endif
254 #endif /*! !defined (PLATFORM_BYTE_ORDER) */
255
256 /* stat.c */
257 void  stat_info          (void);
258 char *stat_mem_strdup    (const char *, size_t,         const char *, bool);
259 void *stat_mem_reallocate(void *,       size_t, size_t, const char *);
260 void  stat_mem_deallocate(void *);
261 void *stat_mem_allocate  (size_t, size_t, const char *);
262
263 #define mem_a(SIZE)              stat_mem_allocate  ((SIZE), __LINE__, __FILE__)
264 #define mem_d(PTRN)              stat_mem_deallocate((void*)(PTRN))
265 #define mem_r(PTRN, SIZE)        stat_mem_reallocate((void*)(PTRN), (SIZE), __LINE__, __FILE__)
266 #define mem_af(SIZE, FILE, LINE) stat_mem_allocate  ((SIZE), (LINE), (FILE))
267
268 /* TODO: rename to mem variations */
269 #define util_strdup(SRC)         stat_mem_strdup((char*)(SRC), __LINE__, __FILE__, false)
270 #define util_strdupe(SRC)        stat_mem_strdup((char*)(SRC), __LINE__, __FILE__, true)
271
272 /* util.c */
273
274 /*
275  * Microsoft implements against the spec versions of ctype.h. Which
276  * means what ever the current set locale is will render the actual
277  * results of say isalpha('A') wrong for what ever retarded locale
278  * is used. Simalerly these are also implemented inefficently on
279  * some toolchains and end up becoming actual library calls. Perhaps
280  * this is why tools like yacc provide their own? Regardless implementing
281  * these as functions is equally as silly, the call overhead is not
282  * justified when this could happen on every character from an input
283  * stream. We provide our own as macros for absolute inlinability.
284  */
285 #define util_isalpha(a) ((((unsigned)(a)|32)-'a') < 26)
286 #define util_isdigit(a) (((unsigned)(a)-'0') < 10)
287 #define util_islower(a) (((unsigned)(a)-'a') < 26)
288 #define util_isupper(a) (((unsigned)(a)-'A') < 26)
289 #define util_isprint(a) (((unsigned)(a)-0x20) < 0x5F)
290 #define util_isspace(a) (((a) >= 9 && (a) <= 13) || (a) == ' ')
291
292 bool  util_strupper      (const char *);
293 bool  util_strdigit      (const char *);
294 void  util_endianswap    (void *, size_t, unsigned int);
295
296 size_t util_strtocmd         (const char *, char *, size_t);
297 size_t util_strtononcmd      (const char *, char *, size_t);
298 size_t util_optimizationtostr(const char *, char *, size_t);
299
300 uint16_t util_crc16(uint16_t crc, const char *data, size_t len);
301
302 void     util_seed(uint32_t);
303 uint32_t util_rand(void);
304
305 int      util_asprintf (char **ret, const char *fmt, ...);
306 int      util_sscanf   (const char *str, const char *format, ...);
307 char    *util_strncpy  (char *dest, const char *src, size_t n);
308 char    *util_strncat  (char *dest, const char *src, size_t n);
309 char    *util_strcat   (char *dest, const char *src);
310 const char *util_strerror(int err);
311
312 const struct tm *util_localtime(const time_t *timer);
313 const char      *util_ctime    (const time_t *timer);
314
315 /*
316  * A flexible vector implementation: all vector pointers contain some
317  * data about themselfs exactly - sizeof(vector_t) behind the pointer
318  * this data is represented in the structure below.  Doing this allows
319  * us to use the array [] to access individual elements from the vector
320  * opposed to using set/get methods.
321  */
322 typedef struct {
323     size_t  allocated;
324     size_t  used;
325
326     /* can be extended now! whoot */
327 } vector_t;
328
329 /* hidden interface */
330 void _util_vec_grow(void **a, size_t i, size_t s);
331 #define GMQCC_VEC_WILLGROW(X,Y) ( \
332     ((!(X) || vec_meta(X)->used + Y >= vec_meta(X)->allocated)) ? \
333         (void)_util_vec_grow(((void**)&(X)), (Y), sizeof(*(X))) : \
334         (void)0                                                   \
335 )
336
337 /* exposed interface */
338 #define vec_meta(A)       (((vector_t*)((void*)A)) - 1)
339 #define vec_free(A)       ((void)((A) ? (mem_d((void*)vec_meta(A)), (A) = NULL) : 0))
340 #define vec_push(A,V)     (GMQCC_VEC_WILLGROW((A),1), (A)[vec_meta(A)->used++] = (V))
341 #define vec_size(A)       ((A) ? vec_meta(A)->used : 0)
342 #define vec_add(A,N)      (GMQCC_VEC_WILLGROW((A),(N)), vec_meta(A)->used += (N), &(A)[vec_meta(A)->used-(N)])
343 #define vec_last(A)       ((A)[vec_meta(A)->used - 1])
344 #define vec_pop(A)        ((void)(vec_meta(A)->used -= 1))
345 #define vec_shrinkto(A,N) ((void)(vec_meta(A)->used  = (N)))
346 #define vec_shrinkby(A,N) ((void)(vec_meta(A)->used -= (N)))
347 #define vec_append(A,N,S) ((void)(memcpy(vec_add((A), (N)), (S), (N) * sizeof(*(S)))))
348 #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)))
349
350 typedef struct hash_table_s {
351     size_t                size;
352     struct hash_node_t **table;
353 } hash_table_t, *ht;
354
355 /*
356  * hashtable implementation:
357  *
358  * Note:
359  *      This was designed for pointers:  you manage the life of the object yourself
360  *      if you do use this for non-pointers please be warned that the object may not
361  *      be valid if the duration of it exceeds (i.e on stack).  So you need to allocate
362  *      yourself, or put those in global scope to ensure duration is for the whole
363  *      runtime.
364  *
365  * util_htnew(size)                             -- to make a new hashtable
366  * util_htset(table, key, value, sizeof(value)) -- to set something in the table
367  * util_htget(table, key)                       -- to get something from the table
368  * util_htdel(table)                            -- to delete the table
369  *
370  * example of use:
371  *
372  * ht    foo  = util_htnew(1024);
373  * int   data = 100;
374  * char *test = "hello world\n";
375  * util_htset(foo, "foo", (void*)&data);
376  * util_gtset(foo, "bar", (void*)test);
377  *
378  * printf("foo: %d, bar %s",
379  *     *((int *)util_htget(foo, "foo")),
380  *      ((char*)util_htget(foo, "bar"))
381  * );
382  *
383  * util_htdel(foo);
384  */
385 hash_table_t *util_htnew (size_t size);
386 void          util_htrem (hash_table_t *ht, void (*callback)(void *data));
387 void          util_htset (hash_table_t *ht, const char *key, void *value);
388 void          util_htdel (hash_table_t *ht);
389 size_t        util_hthash(hash_table_t *ht, const char *key);
390 void          util_htseth(hash_table_t *ht, const char *key, size_t hash, void *value);
391 void          util_htrmh (hash_table_t *ht, const char *key, size_t bin, void (*cb)(void*));
392 void          util_htrm  (hash_table_t *ht, const char *key, void (*cb)(void*));
393
394 void         *util_htget (hash_table_t *ht, const char *key);
395 void         *util_htgeth(hash_table_t *ht, const char *key, size_t hash);
396
397 int           util_snprintf(char *str, size_t, const char *fmt, ...);
398
399
400 /* fs.c */
401 #define FS_FILE_SEEK_SET  0
402 #define FS_FILE_SEEK_CUR  1
403 #define FS_FILE_SEEK_END  2
404 #define FS_FILE_EOF      -1
405
406 typedef struct fs_dir_s  fs_dir_t;
407 typedef struct fs_file_s fs_file_t;
408 typedef struct dirent    fs_dirent_t;
409
410 void           fs_file_close  (fs_file_t *);
411 int            fs_file_error  (fs_file_t *);
412 int            fs_file_getc   (fs_file_t *);
413 int            fs_file_printf (fs_file_t *, const char *, ...);
414 int            fs_file_puts   (fs_file_t *, const char *);
415 int            fs_file_seek   (fs_file_t *, long int, int);
416 long           fs_file_tell   (fs_file_t *);
417 int            fs_file_flush  (fs_file_t *);
418
419 size_t         fs_file_read   (void *,        size_t, size_t, fs_file_t *);
420 size_t         fs_file_write  (const void *,  size_t, size_t, fs_file_t *);
421
422 fs_file_t     *fs_file_open   (const char *, const char *);
423 int            fs_file_getline(char  **, size_t *, fs_file_t *);
424
425 int            fs_dir_make    (const char *);
426 fs_dir_t      *fs_dir_open    (const char *);
427 int            fs_dir_close   (fs_dir_t *);
428 fs_dirent_t   *fs_dir_read    (fs_dir_t *);
429
430
431 /* correct.c */
432 typedef struct correct_trie_s {
433     void                  *value;
434     struct correct_trie_s *entries;
435 } correct_trie_t;
436
437 correct_trie_t* correct_trie_new(void);
438
439 typedef struct {
440     char   ***edits;
441     size_t  **lens;
442 } correction_t;
443
444 void  correct_del (correct_trie_t*, size_t **);
445 void  correct_add (correct_trie_t*, size_t ***, const char *);
446 char *correct_str (correction_t *, correct_trie_t*, const char *);
447 void  correct_init(correction_t *);
448 void  correct_free(correction_t *);
449
450
451 /* code.c */
452
453 /* Note: if you change the order, fix type_sizeof in ir.c */
454 enum {
455     TYPE_VOID     ,
456     TYPE_STRING   ,
457     TYPE_FLOAT    ,
458     TYPE_VECTOR   ,
459     TYPE_ENTITY   ,
460     TYPE_FIELD    ,
461     TYPE_FUNCTION ,
462     TYPE_POINTER  ,
463     TYPE_INTEGER  ,
464     TYPE_VARIANT  ,
465     TYPE_STRUCT   ,
466     TYPE_UNION    ,
467     TYPE_ARRAY    ,
468
469     TYPE_NIL      , /* it's its own type / untyped */
470     TYPE_NOEXPR   , /* simply invalid in expressions */
471
472     TYPE_COUNT
473 };
474
475 /* const/var qualifiers */
476 #define CV_NONE   0
477 #define CV_CONST  1
478 #define CV_VAR   -1
479 #define CV_WRONG  0x8000 /* magic number to help parsing */
480
481 extern const char    *type_name        [TYPE_COUNT];
482 extern const uint16_t type_store_instr [TYPE_COUNT];
483 extern const uint16_t field_store_instr[TYPE_COUNT];
484
485 /*
486  * could use type_store_instr + INSTR_STOREP_F - INSTR_STORE_F
487  * but this breaks when TYPE_INTEGER is added, since with the enhanced
488  * instruction set, the old ones are left untouched, thus the _I instructions
489  * are at a seperate place.
490  */
491 extern const uint16_t type_storep_instr[TYPE_COUNT];
492 extern const uint16_t type_eq_instr    [TYPE_COUNT];
493 extern const uint16_t type_ne_instr    [TYPE_COUNT];
494 extern const uint16_t type_not_instr   [TYPE_COUNT];
495
496 typedef struct {
497     uint32_t offset;      /* Offset in file of where data begins  */
498     uint32_t length;      /* Length of section (how many of)      */
499 } prog_section_t;
500
501 typedef struct {
502     uint32_t       version;      /* Program version (6)     */
503     uint16_t       crc16;
504     uint16_t       skip;
505
506     prog_section_t statements;   /* prog_section_statement  */
507     prog_section_t defs;         /* prog_section_def        */
508     prog_section_t fields;       /* prog_section_field      */
509     prog_section_t functions;    /* prog_section_function   */
510     prog_section_t strings;
511     prog_section_t globals;
512     uint32_t       entfield;     /* Number of entity fields */
513 } prog_header_t;
514
515 /*
516  * Each paramater incerements by 3 since vector types hold
517  * 3 components (x,y,z).
518  */
519 #define OFS_NULL      0
520 #define OFS_RETURN    1
521 #define OFS_PARM0     (OFS_RETURN+3)
522 #define OFS_PARM1     (OFS_PARM0 +3)
523 #define OFS_PARM2     (OFS_PARM1 +3)
524 #define OFS_PARM3     (OFS_PARM2 +3)
525 #define OFS_PARM4     (OFS_PARM3 +3)
526 #define OFS_PARM5     (OFS_PARM4 +3)
527 #define OFS_PARM6     (OFS_PARM5 +3)
528 #define OFS_PARM7     (OFS_PARM6 +3)
529
530 typedef struct {
531     uint16_t opcode;
532
533     /* operand 1 */
534     union {
535         int16_t  s1; /* signed   */
536         uint16_t u1; /* unsigned */
537     } o1;
538     /* operand 2 */
539     union {
540         int16_t  s1; /* signed   */
541         uint16_t u1; /* unsigned */
542     } o2;
543     /* operand 3 */
544     union {
545         int16_t  s1; /* signed   */
546         uint16_t u1; /* unsigned */
547     } o3;
548
549     /*
550      * This is the same as the structure in darkplaces
551      * {
552      *     unsigned short op;
553      *     short          a,b,c;
554      * }
555      * But this one is more sane to work with, and the
556      * type sizes are guranteed.
557      */
558 } prog_section_statement_t;
559
560 typedef struct {
561     /*
562      * The types:
563      * 0 = ev_void
564      * 1 = ev_string
565      * 2 = ev_float
566      * 3 = ev_vector
567      * 4 = ev_entity
568      * 5 = ev_field
569      * 6 = ev_function
570      * 7 = ev_pointer -- engine only
571      * 8 = ev_bad     -- engine only
572      */
573     uint16_t type;
574     uint16_t offset;
575     uint32_t name;
576 } prog_section_both_t;
577
578 typedef prog_section_both_t prog_section_def_t;
579 typedef prog_section_both_t prog_section_field_t;
580
581 /* this is ORed to the type */
582 #define DEF_SAVEGLOBAL (1<<15)
583 #define DEF_TYPEMASK   ((1<<15)-1)
584
585 typedef struct {
586     int32_t   entry;      /* in statement table for instructions  */
587     uint32_t  firstlocal; /* First local in local table           */
588     uint32_t  locals;     /* Total ints of params + locals        */
589     uint32_t  profile;    /* Always zero (engine uses this)       */
590     uint32_t  name;       /* name of function in string table     */
591     uint32_t  file;       /* file of the source file              */
592     int32_t   nargs;      /* number of arguments                  */
593     uint8_t   argsize[8]; /* size of arguments (keep 8 always?)   */
594 } prog_section_function_t;
595
596 /*
597  * Instructions
598  * These are the external instructions supported by the interperter
599  * this is what things compile to (from the C code).
600  */
601 enum {
602     INSTR_DONE,
603     INSTR_MUL_F,
604     INSTR_MUL_V,
605     INSTR_MUL_FV, /* NOTE: the float operands must NOT be at the same locations: A != C */
606     INSTR_MUL_VF, /* and here: B != C */
607     INSTR_DIV_F,
608     INSTR_ADD_F,
609     INSTR_ADD_V,
610     INSTR_SUB_F,
611     INSTR_SUB_V,
612     INSTR_EQ_F,
613     INSTR_EQ_V,
614     INSTR_EQ_S,
615     INSTR_EQ_E,
616     INSTR_EQ_FNC,
617     INSTR_NE_F,
618     INSTR_NE_V,
619     INSTR_NE_S,
620     INSTR_NE_E,
621     INSTR_NE_FNC,
622     INSTR_LE,
623     INSTR_GE,
624     INSTR_LT,
625     INSTR_GT,
626     INSTR_LOAD_F,
627     INSTR_LOAD_V,
628     INSTR_LOAD_S,
629     INSTR_LOAD_ENT,
630     INSTR_LOAD_FLD,
631     INSTR_LOAD_FNC,
632     INSTR_ADDRESS,
633     INSTR_STORE_F,
634     INSTR_STORE_V,
635     INSTR_STORE_S,
636     INSTR_STORE_ENT,
637     INSTR_STORE_FLD,
638     INSTR_STORE_FNC,
639     INSTR_STOREP_F,
640     INSTR_STOREP_V,
641     INSTR_STOREP_S,
642     INSTR_STOREP_ENT,
643     INSTR_STOREP_FLD,
644     INSTR_STOREP_FNC,
645     INSTR_RETURN,
646     INSTR_NOT_F,
647     INSTR_NOT_V,
648     INSTR_NOT_S,
649     INSTR_NOT_ENT,
650     INSTR_NOT_FNC,
651     INSTR_IF,
652     INSTR_IFNOT,
653     INSTR_CALL0,
654     INSTR_CALL1,
655     INSTR_CALL2,
656     INSTR_CALL3,
657     INSTR_CALL4,
658     INSTR_CALL5,
659     INSTR_CALL6,
660     INSTR_CALL7,
661     INSTR_CALL8,
662     INSTR_STATE,
663     INSTR_GOTO,
664     INSTR_AND,
665     INSTR_OR,
666     INSTR_BITAND,
667     INSTR_BITOR,
668
669     /*
670      * Virtual instructions used by the IR
671      * Keep at the end!
672      */
673     VINSTR_END,
674     VINSTR_PHI,
675     VINSTR_JUMP,
676     VINSTR_COND,
677
678     /* A never returning CALL.
679      * Creating this causes IR blocks to be marked as 'final'.
680      * No-Return-Call
681      */
682     VINSTR_NRCALL,
683
684     /* Emulated instructions. */
685     VINSTR_BITAND_V, /* BITAND_V must be the first emulated bitop */
686     VINSTR_BITAND_VF,
687     VINSTR_BITOR_V,
688     VINSTR_BITOR_VF,
689     VINSTR_BITXOR,
690     VINSTR_BITXOR_V,
691     VINSTR_BITXOR_VF,
692     VINSTR_CROSS,
693     VINSTR_NEG_F,
694     VINSTR_NEG_V
695 };
696
697 /* TODO: elide */
698 extern const char *util_instr_str[VINSTR_END];
699
700
701 typedef float    qcfloat_t;
702 typedef int32_t  qcint_t;
703 typedef uint32_t qcuint_t;
704
705 typedef struct {
706     prog_section_statement_t *statements;
707     int                      *linenums;
708     int                      *columnnums;
709     prog_section_def_t       *defs;
710     prog_section_field_t     *fields;
711     prog_section_function_t  *functions;
712     int                      *globals;
713     char                     *chars;
714     uint16_t                  crc;
715     uint32_t                  entfields;
716     ht                        string_cache;
717     qcint_t                   string_cached_empty;
718 } code_t;
719
720 /*
721  * A shallow copy of a lex_file to remember where which ast node
722  * came from.
723  */
724 typedef struct {
725     const char *file;
726     size_t      line;
727     size_t      column;
728 } lex_ctx_t;
729
730 /*
731  * code_write          -- writes out the compiled file
732  * code_init           -- prepares the code file
733  * code_genstrin       -- generates string for code
734  * code_alloc_field    -- allocated a field
735  * code_push_statement -- keeps statements and linenumbers together
736  * code_pop_statement  -- keeps statements and linenumbers together
737  */
738 bool      code_write         (code_t *, const char *filename, const char *lno);
739 GMQCC_WARN
740 code_t   *code_init          (void);
741 void      code_cleanup       (code_t *);
742 uint32_t  code_genstring     (code_t *, const char *string);
743 qcint_t   code_alloc_field   (code_t *, size_t qcsize);
744 void      code_push_statement(code_t *, prog_section_statement_t *stmt, lex_ctx_t ctx);
745 void      code_pop_statement (code_t *);
746
747
748 /* conout.c */
749 enum {
750     CON_BLACK   = 30,
751     CON_RED,
752     CON_GREEN,
753     CON_BROWN,
754     CON_BLUE,
755     CON_MAGENTA,
756     CON_CYAN ,
757     CON_WHITE
758 };
759
760 /* message level */
761 enum {
762     LVL_MSG,
763     LVL_WARNING,
764     LVL_ERROR
765 };
766
767 fs_file_t *con_default_out(void);
768 fs_file_t *con_default_err(void);
769
770 void con_vprintmsg (int level, const char *name, size_t line, size_t column, const char *msgtype, const char *msg, va_list ap);
771 void con_printmsg  (int level, const char *name, size_t line, size_t column, const char *msgtype, const char *msg, ...);
772 void con_cvprintmsg(lex_ctx_t ctx, int lvl, const char *msgtype, const char *msg, va_list ap);
773 void con_cprintmsg (lex_ctx_t ctx, int lvl, const char *msgtype, const char *msg, ...);
774
775 void con_close (void);
776 void con_init  (void);
777 void con_reset (void);
778 void con_color (int);
779 int  con_change(const char *, const char *);
780 int  con_verr  (const char *, va_list);
781 int  con_vout  (const char *, va_list);
782 int  con_err   (const char *, ...);
783 int  con_out   (const char *, ...);
784
785 /* error/warning interface */
786 extern size_t compile_errors;
787 extern size_t compile_Werrors;
788 extern size_t compile_warnings;
789
790 void /********/ compile_error   (lex_ctx_t ctx, /*LVL_ERROR*/ const char *msg, ...);
791 void /********/ vcompile_error  (lex_ctx_t ctx, /*LVL_ERROR*/ const char *msg, va_list ap);
792 bool GMQCC_WARN compile_warning (lex_ctx_t ctx, int warntype, const char *fmt, ...);
793 bool GMQCC_WARN vcompile_warning(lex_ctx_t ctx, int warntype, const char *fmt, va_list ap);
794 void            compile_show_werrors(void);
795
796 /* ir.c */
797 /* TODO: cleanup */
798 enum store_types {
799     store_global,
800     store_local,  /* local, assignable for now, should get promoted later */
801     store_param,  /* parameters, they are locals with a fixed position */
802     store_value,  /* unassignable */
803     store_return  /* unassignable, at OFS_RETURN */
804 };
805
806 typedef struct {
807     qcfloat_t x, y, z;
808 } vec3_t;
809
810 /* exec.c */
811
812 /* TODO: cleanup */
813 /*
814  * Darkplaces has (or will have) a 64 bit prog loader
815  * where the 32 bit qc program is autoconverted on load.
816  * Since we may want to support that as well, let's redefine
817  * float and int here.
818  */
819 typedef union {
820     qcint_t   _int;
821     qcint_t    string;
822     qcint_t    function;
823     qcint_t    edict;
824     qcfloat_t _float;
825     qcfloat_t vector[3];
826     qcint_t   ivector[3];
827 } qcany_t;
828
829 typedef char qcfloat_t_size_is_correct [sizeof(qcfloat_t) == 4 ?1:-1];
830 typedef char qcint_t_size_is_correct   [sizeof(qcint_t)   == 4 ?1:-1];
831
832 enum {
833     VMERR_OK,
834     VMERR_TEMPSTRING_ALLOC,
835     VMERR_END
836 };
837
838 #define VM_JUMPS_DEFAULT 1000000
839
840 /* execute-flags */
841 #define VMXF_DEFAULT 0x0000     /* default flags - nothing */
842 #define VMXF_TRACE   0x0001     /* trace: print statements before executing */
843 #define VMXF_PROFILE 0x0002     /* profile: increment the profile counters */
844
845 struct qc_program_s;
846 typedef int (*prog_builtin_t)(struct qc_program_s *prog);
847
848 typedef struct {
849     qcint_t                    stmt;
850     size_t                   localsp;
851     prog_section_function_t *function;
852 } qc_exec_stack_t;
853
854 typedef struct qc_program_s {
855     char                    *filename;
856     prog_section_statement_t *code;
857     prog_section_def_t       *defs;
858     prog_section_def_t       *fields;
859     prog_section_function_t  *functions;
860     char                    *strings;
861     qcint_t                   *globals;
862     qcint_t                   *entitydata;
863     bool                    *entitypool;
864
865     const char*             *function_stack;
866
867     uint16_t crc16;
868
869     size_t tempstring_start;
870     size_t tempstring_at;
871
872     qcint_t  vmerror;
873
874     size_t *profile;
875
876     prog_builtin_t *builtins;
877     size_t          builtins_count;
878
879     /* size_t ip; */
880     qcint_t  entities;
881     size_t entityfields;
882     bool   allowworldwrites;
883
884     qcint_t         *localstack;
885     qc_exec_stack_t *stack;
886     size_t statement;
887
888     size_t xflags;
889
890     int    argc; /* current arg count for debugging */
891 } qc_program_t;
892
893 qc_program_t*       prog_load      (const char *filename, bool ignoreversion);
894 void                prog_delete    (qc_program_t *prog);
895 bool                prog_exec      (qc_program_t *prog, prog_section_function_t *func, size_t flags, long maxjumps);
896 const char*         prog_getstring (qc_program_t *prog, qcint_t str);
897 prog_section_def_t* prog_entfield  (qc_program_t *prog, qcint_t off);
898 prog_section_def_t* prog_getdef    (qc_program_t *prog, qcint_t off);
899 qcany_t*            prog_getedict  (qc_program_t *prog, qcint_t e);
900 qcint_t               prog_tempstring(qc_program_t *prog, const char *_str);
901
902
903 /* parser.c */
904 struct parser_s;
905 struct parser_s *parser_create        (void);
906 bool             parser_compile_file  (struct parser_s *parser, const char *);
907 bool             parser_compile_string(struct parser_s *parser, const char *, const char *, size_t);
908 bool             parser_finish        (struct parser_s *parser, const char *);
909 void             parser_cleanup       (struct parser_s *parser);
910
911 /* ftepp.c */
912 struct ftepp_s;
913 struct ftepp_s *ftepp_create           (void);
914 bool            ftepp_preprocess_file  (struct ftepp_s *ftepp, const char *filename);
915 bool            ftepp_preprocess_string(struct ftepp_s *ftepp, const char *name, const char *str);
916 void            ftepp_finish           (struct ftepp_s *ftepp);
917 const char     *ftepp_get              (struct ftepp_s *ftepp);
918 void            ftepp_flush            (struct ftepp_s *ftepp);
919 void            ftepp_add_define       (struct ftepp_s *ftepp, const char *source, const char *name);
920 void            ftepp_add_macro        (struct ftepp_s *ftepp, const char *name,   const char *value);
921
922 /* main.c */
923
924 #if 1
925 /* Helpers to allow for a whole lot of flags. Otherwise we'd limit
926  * to 32 or 64 -f options...
927  */
928 typedef struct {
929     size_t  idx; /* index into an array of 32 bit words */
930     uint8_t bit; /* bit index for the 8 bit group idx points to */
931 } longbit;
932 #define LONGBIT(bit) { ((bit)/32), ((bit)%32) }
933 #define LONGBIT_SET(B, I) ((B).idx = (I)/32, (B).bit = ((I)%32))
934 #else
935 typedef uint32_t longbit;
936 #define LONGBIT(bit) (bit)
937 #define LONGBIT_SET(B, I) ((B) = (I))
938 #endif
939
940 /* utf.8 */
941 typedef long utf8ch_t;
942 int utf8_from(char *, utf8ch_t);
943 int utf8_to(utf8ch_t *, const unsigned char *, size_t);
944
945 /* opts.c */
946 typedef struct {
947     const char *name;
948     longbit     bit;
949 } opts_flag_def_t;
950
951 bool opts_setflag  (const char *, bool);
952 bool opts_setwarn  (const char *, bool);
953 bool opts_setwerror(const char *, bool);
954 bool opts_setoptim (const char *, bool);
955
956 void opts_init         (const char *, int, size_t);
957 void opts_set          (uint32_t   *, size_t, bool);
958 void opts_setoptimlevel(unsigned int);
959 void opts_ini_init     (const char *);
960
961 /* Saner flag handling */
962 void opts_backup_non_Wall(void);
963 void opts_restore_non_Wall(void);
964 void opts_backup_non_Werror_all(void);
965 void opts_restore_non_Werror_all(void);
966
967
968 enum {
969 # define GMQCC_TYPE_FLAGS
970 # define GMQCC_DEFINE_FLAG(X) X,
971 #  include "opts.def"
972     COUNT_FLAGS
973 };
974
975 enum {
976 # define GMQCC_TYPE_WARNS
977 # define GMQCC_DEFINE_FLAG(X) WARN_##X,
978 #  include "opts.def"
979     COUNT_WARNINGS
980 };
981
982 enum {
983 # define GMQCC_TYPE_OPTIMIZATIONS
984 # define GMQCC_DEFINE_FLAG(NAME, MIN_O) OPTIM_##NAME,
985 #  include "opts.def"
986     COUNT_OPTIMIZATIONS
987 };
988
989 enum {
990 #   define GMQCC_TYPE_OPTIONS
991 #   define GMQCC_DEFINE_FLAG(X) OPTION_##X,
992 #   include "opts.def"
993     OPTION_COUNT
994 };
995
996 extern const opts_flag_def_t opts_flag_list[COUNT_FLAGS+1];
997 extern const opts_flag_def_t opts_warn_list[COUNT_WARNINGS+1];
998 extern const opts_flag_def_t opts_opt_list[COUNT_OPTIMIZATIONS+1];
999 extern const unsigned int    opts_opt_oflag[COUNT_OPTIMIZATIONS+1];
1000 extern unsigned int          opts_optimizationcount[COUNT_OPTIMIZATIONS];
1001
1002 /* other options: */
1003 typedef enum {
1004     COMPILER_QCC,     /* circa  QuakeC */
1005     COMPILER_FTEQCC,  /* fteqcc QuakeC */
1006     COMPILER_QCCX,    /* qccx   QuakeC */
1007     COMPILER_GMQCC    /* this   QuakeC */
1008 } opts_std_t;
1009
1010 typedef union {
1011     bool     B;
1012     uint16_t U16;
1013     uint32_t U32;
1014     char    *STR;
1015 } opt_value_t;
1016
1017
1018 typedef struct {
1019     opt_value_t  options      [OPTION_COUNT];
1020     uint32_t     flags        [1 + (COUNT_FLAGS         / 32)];
1021     uint32_t     warn         [1 + (COUNT_WARNINGS      / 32)];
1022     uint32_t     werror       [1 + (COUNT_WARNINGS      / 32)];
1023     uint32_t     warn_backup  [1 + (COUNT_WARNINGS      / 32)];
1024     uint32_t     werror_backup[1 + (COUNT_WARNINGS      / 32)];
1025     uint32_t     optimization [1 + (COUNT_OPTIMIZATIONS / 32)];
1026     bool         optimizeoff; /* True when -O0 */
1027 } opts_cmd_t;
1028
1029 extern opts_cmd_t opts;
1030
1031 #define OPTS_GENERIC(f,i)    (!! (((f)[(i)/32]) & (1<< (unsigned)((i)%32))))
1032 #define OPTS_FLAG(i)         OPTS_GENERIC(opts.flags,        (i))
1033 #define OPTS_WARN(i)         OPTS_GENERIC(opts.warn,         (i))
1034 #define OPTS_WERROR(i)       OPTS_GENERIC(opts.werror,       (i))
1035 #define OPTS_OPTIMIZATION(i) OPTS_GENERIC(opts.optimization, (i))
1036 #define OPTS_OPTION_BOOL(X) (opts.options[X].B)
1037 #define OPTS_OPTION_U16(X)  (opts.options[X].U16)
1038 #define OPTS_OPTION_U32(X)  (opts.options[X].U32)
1039 #define OPTS_OPTION_STR(X)  (opts.options[X].STR)
1040
1041 #endif /*! GMQCC_HDR */