3 * Dale Weiler, Wolfgang Bumiller
5 * Permission is hereby granted, free of charge, to any person obtaining a copy of
6 * this software and associated documentation files (the "Software"), to deal in
7 * the Software without restriction, including without limitation the rights to
8 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9 * of the Software, and to permit persons to whom the Software is furnished to do
10 * so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in all
13 * copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32 #define GMQCC_VERSION_MAJOR 0
33 #define GMQCC_VERSION_MINOR 1
34 #define GMQCC_VERSION_PATCH 0
35 #define GMQCC_VERSION_BUILD(J,N,P) (((J)<<16)|((N)<<8)|(P))
36 #define GMQCC_VERSION \
37 GMQCC_VERSION_BUILD(GMQCC_VERSION_MAJOR, GMQCC_VERSION_MINOR, GMQCC_VERSION_PATCH)
40 * We cannoy rely on C99 at all, since compilers like MSVC
41 * simply don't support it. We define our own boolean type
42 * as a result (since we cannot include <stdbool.h>). For
43 * compilers that are in 1999 mode (C99 compliant) we can use
44 * the language keyword _Bool which can allow for better code
45 * on GCC and GCC-like compilers, opposed to `int`.
56 # ifdef __STDC_VERSION__
57 # if __STDC_VERSION__ < 199901L && __GNUC__ < 3
64 # endif /* !__STDC_VERSION__ */
65 #endif /* !__cplusplus */
68 * Of some functions which are generated we want to make sure
69 * that the result isn't ignored. To find such function calls,
72 #if defined(__GNUC__) || defined(__CLANG__)
73 # define GMQCC_WARN __attribute__((warn_unused_result))
78 * This is a hack to silent clang regarding empty
81 #define GMQCC_SUPPRESS_EMPTY_BODY do { } while (0)
84 * Inline is not supported in < C90, however some compilers
85 * like gcc and clang might have an inline attribute we can
88 #ifdef __STDC_VERSION__
89 # if __STDC_VERSION__ < 199901L
90 # if defined(__GNUC__) || defined (__CLANG__)
94 # define GMQCC_INLINE __attribute__ ((always_inline))
100 # define GMQCC_INLINE inline
103 # define GMQCC_INLINE
104 #endif /* !__STDC_VERSION__ */
107 * noreturn is present in GCC and clang
108 * it's required for _ast_node_destory otherwise -Wmissing-noreturn
109 * in clang complains about there being no return since abort() is
112 #if (defined(__GNUC__) && __GNUC__ >= 2) || defined(__CLANG__)
113 # define GMQCC_NORETURN __attribute__ ((noreturn))
115 # define GMQCC_NORETURN
119 * stdint.h and inttypes.h -less subset
120 * for systems that don't have it, which we must
121 * assume is all systems. (int8_t not required)
124 typedef unsigned char uint8_t; /* same as below */
125 #elif SCHAR_MIN == -128
126 typedef unsigned char uint8_t; /* same as above */
128 #if SHRT_MAX == 0x7FFF
129 typedef short int16_t;
130 typedef unsigned short uint16_t;
131 #elif INT_MAX == 0x7FFF
133 typedef unsigned int uint16_t;
135 #if INT_MAX == 0x7FFFFFFF
137 typedef unsigned int uint32_t;
138 typedef long int64_t;
139 typedef unsigned long uint64_t;
140 #elif LONG_MAX == 0x7FFFFFFF
141 typedef long int32_t;
142 typedef unsigned long uint32_t;
145 * It's nearly impossible to figure out a 64bit type at
146 * this point without making assumptions about the build
147 * enviroment. So if clang or gcc is detected use some
148 * compiler builtins to create a 64 signed and unsigned
151 # if defined(__GNUC__) || defined (__CLANG__)
152 typedef int int64_t __attribute__((__mode__(__DI__)));
153 typedef unsigned int uint64_t __attribute__((__mode__(__DI__)));
156 * Incoorectly size the types so static assertions below will
157 * fail. There is no valid way to get a 64bit type at this point
158 * without making assumptions of too many things.
160 typedef struct { char _fail : 0; } int64_t;
161 typedef struct { char _fail : 0; } uint64_t;
164 #ifdef _LP64 /* long pointer == 64 */
165 typedef unsigned long uintptr_t;
166 typedef long intptr_t;
168 typedef unsigned int uintptr_t;
169 typedef int intptr_t;
171 /* Ensure type sizes are correct: */
172 typedef char uint8_size_is_correct [sizeof(uint8_t) == 1?1:-1];
173 typedef char uint16_size_is_correct [sizeof(uint16_t) == 2?1:-1];
174 typedef char uint32_size_is_correct [sizeof(uint32_t) == 4?1:-1];
175 typedef char uint64_size_is_correct [sizeof(uint64_t) == 8?1:-1];
176 typedef char int16_size_if_correct [sizeof(int16_t) == 2?1:-1];
177 typedef char int32_size_is_correct [sizeof(int32_t) == 4?1:-1];
178 typedef char int64_size_is_correct [sizeof(int64_t) == 8?1:-1];
179 /* intptr_t / uintptr_t correct size check */
180 typedef char uintptr_size_is_correct[sizeof(intptr_t) == sizeof(int*)?1:-1];
181 typedef char intptr_size_is_correct [sizeof(uintptr_t)== sizeof(int*)?1:-1];
183 /*===================================================================*/
184 /*=========================== util.c ================================*/
185 /*===================================================================*/
186 void *util_memory_a (unsigned int, unsigned int, const char *);
187 void util_memory_d (void *, unsigned int, const char *);
188 void util_meminfo ();
190 bool util_strupper (const char *);
191 bool util_strdigit (const char *);
192 bool util_strncmpexact (const char *, const char *, size_t);
193 char *util_strdup (const char *);
194 char *util_strrq (const char *);
195 char *util_strrnl (const char *);
196 char *util_strsws (const char *);
197 char *util_strchp (const char *, const char *);
198 void util_debug (const char *, const char *, ...);
199 int util_getline (char **, size_t *, FILE *);
200 void util_endianswap (void *, int, int);
202 size_t util_strtocmd (const char *, char *, size_t);
203 size_t util_strtononcmd (const char *, char *, size_t);
205 uint32_t util_crc32(const char *, int, register const short);
208 # define mem_a(x) malloc(x)
209 # define mem_d(x) free (x)
211 # define mem_a(x) util_memory_a((x), __LINE__, __FILE__)
212 # define mem_d(x) util_memory_d((x), __LINE__, __FILE__)
216 * TODO: make these safer to use. Currently this only works on
217 * x86 and x86_64, some systems will likely not like this. Such
220 #define FLT2INT(Y) *((int32_t*)&(Y))
221 #define INT2FLT(Y) *((float *)&(Y))
223 /* Builds vector type (usefull for inside structures) */
224 #define VECTOR_SNAP(X,Y) X ## Y
225 #define VECTOR_FILL(X,Y) VECTOR_SNAP(X,Y)
226 #define VECTOR_TYPE(T,N) \
227 T* N##_data = NULL; \
228 long N##_elements = 0; \
229 long N##_allocated = 0
230 /* Builds vector add */
231 #define VECTOR_CORE(T,N) \
232 int N##_add(T element) { \
234 if (N##_elements == N##_allocated) { \
235 if (N##_allocated == 0) { \
236 N##_allocated = 12; \
238 N##_allocated *= 2; \
240 if (!(temp = mem_a(N##_allocated * sizeof(T)))) { \
244 memcpy(temp, N##_data, (N##_elements * sizeof(T))); \
246 N##_data = (T*)temp; \
248 N##_data[N##_elements] = element; \
249 return N##_elements++; \
251 int N##_put(T* elements, size_t len) { \
254 while (N##_add(*++elements) != -1 && len--); \
255 return N##_elements; \
257 typedef char VECTOR_FILL(extra_semicolon_##N,__COUNTER__)
258 #define VECTOR_PROT(T,N) \
259 extern T* N##_data ; \
260 extern long N##_elements ; \
261 extern long N##_allocated; \
263 int N##_put(T *, size_t)
264 #define VECTOR_MAKE(T,N) \
268 /*===================================================================*/
269 /*=========================== code.c ================================*/
270 /*===================================================================*/
272 /* Note: if you change the order, fix type_sizeof in ir.c */
288 extern const char *type_name[TYPE_COUNT];
290 extern size_t type_sizeof[TYPE_COUNT];
291 extern uint16_t type_store_instr[TYPE_COUNT];
292 /* could use type_store_instr + INSTR_STOREP_F - INSTR_STORE_F
293 * but this breaks when TYPE_INTEGER is added, since with the enhanced
294 * instruction set, the old ones are left untouched, thus the _I instructions
295 * are at a seperate place.
297 extern uint16_t type_storep_instr[TYPE_COUNT];
298 /* other useful lists */
299 extern uint16_t type_eq_instr[TYPE_COUNT];
300 extern uint16_t type_ne_instr[TYPE_COUNT];
303 uint32_t offset; /* Offset in file of where data begins */
304 uint32_t length; /* Length of section (how many of) */
308 uint32_t version; /* Program version (6) */
309 uint16_t crc16; /* What is this? */
310 uint16_t skip; /* see propsal.txt */
312 prog_section statements; /* prog_section_statement */
313 prog_section defs; /* prog_section_def */
314 prog_section fields; /* prog_section_field */
315 prog_section functions; /* prog_section_function */
316 prog_section strings; /* What is this? */
317 prog_section globals; /* What is this? */
318 uint32_t entfield; /* Number of entity fields */
322 * Each paramater incerements by 3 since vector types hold
323 * 3 components (x,y,z).
327 #define OFS_PARM0 (OFS_RETURN+3)
328 #define OFS_PARM1 (OFS_PARM0 +3)
329 #define OFS_PARM2 (OFS_PARM1 +3)
330 #define OFS_PARM3 (OFS_PARM2 +3)
331 #define OFS_PARM4 (OFS_PARM3 +3)
332 #define OFS_PARM5 (OFS_PARM4 +3)
333 #define OFS_PARM6 (OFS_PARM5 +3)
334 #define OFS_PARM7 (OFS_PARM6 +3)
341 int16_t s1; /* signed */
342 uint16_t u1; /* unsigned */
346 int16_t s1; /* signed */
347 uint16_t u1; /* unsigned */
351 int16_t s1; /* signed */
352 uint16_t u1; /* unsigned */
356 * This is the same as the structure in darkplaces
361 * But this one is more sane to work with, and the
362 * type sizes are guranteed.
364 } prog_section_statement;
375 * 7 = ev_pointer -- engine only
376 * 8 = ev_bad -- engine only
382 typedef prog_section_both prog_section_def;
383 typedef prog_section_both prog_section_field;
386 int32_t entry; /* in statement table for instructions */
387 uint32_t firstlocal; /* First local in local table */
388 uint32_t locals; /* Total ints of params + locals */
389 uint32_t profile; /* Always zero (engine uses this) */
390 uint32_t name; /* name of function in string table */
391 uint32_t file; /* file of the source file */
392 uint32_t nargs; /* number of arguments */
393 uint8_t argsize[8]; /* size of arguments (keep 8 always?) */
394 } prog_section_function;
398 * These are the external instructions supported by the interperter
399 * this is what things compile to (from the C code).
470 * Virtual instructions used by the assembler
471 * keep at the end but before virtual instructions
477 * Virtual instructions used by the IR
486 * The symbols below are created by the following
489 * VECTOR_MAKE(prog_section_statement, code_statements);
490 * VECTOR_MAKE(prog_section_def, code_defs );
491 * VECTOR_MAKE(prog_section_field, code_fields );
492 * VECTOR_MAKE(prog_section_function, code_functions );
493 * VECTOR_MAKE(int, code_globals );
494 * VECTOR_MAKE(char, code_chars );
496 VECTOR_PROT(prog_section_statement, code_statements);
497 VECTOR_PROT(prog_section_statement, code_statements);
498 VECTOR_PROT(prog_section_def, code_defs );
499 VECTOR_PROT(prog_section_field, code_fields );
500 VECTOR_PROT(prog_section_function, code_functions );
501 VECTOR_PROT(int, code_globals );
502 VECTOR_PROT(char, code_chars );
504 typedef float qcfloat;
505 typedef int32_t qcint;
508 * code_write -- writes out the compiled file
509 * code_init -- prepares the code file
511 bool code_write (const char *filename);
513 uint32_t code_genstring (const char *string);
514 uint32_t code_cachedstring(const char *string);
515 qcint code_alloc_field (size_t qcsize);
517 /*===================================================================*/
518 /*========================= assembler.c =============================*/
519 /*===================================================================*/
520 static const struct {
521 const char *m; /* menomic */
522 const size_t o; /* operands */
523 const size_t l; /* menomic len */
549 { "FIELD_F" , 0, 7 },
550 { "FIELD_V" , 0, 7 },
551 { "FIELD_S" , 0, 7 },
552 { "FIELD_ENT" , 0, 9 },
553 { "FIELD_FLD" , 0, 9 },
554 { "FIELD_FNC" , 0, 9 },
555 { "ADDRESS" , 0, 7 },
556 { "STORE_F" , 0, 7 },
557 { "STORE_V" , 0, 7 },
558 { "STORE_S" , 0, 7 },
559 { "STORE_ENT" , 0, 9 },
560 { "STORE_FLD" , 0, 9 },
561 { "STORE_FNC" , 0, 9 },
562 { "STOREP_F" , 0, 8 },
563 { "STOREP_V" , 0, 8 },
564 { "STOREP_S" , 0, 8 },
565 { "STOREP_ENT", 0, 10},
566 { "STOREP_FLD", 0, 10},
567 { "STOREP_FNC", 0, 10},
572 { "NOT_ENT" , 0, 7 },
573 { "NOT_FNC" , 0, 7 },
592 { "END" , 0, 3 } /* virtual assembler instruction */
595 void asm_init (const char *, FILE **);
596 void asm_close(FILE *);
597 void asm_parse(FILE *);
598 /*===================================================================*/
599 /*============================= ast.c ===============================*/
600 /*===================================================================*/
601 #define MEM_VECTOR_PROTO(Towner, Tmem, mem) \
602 bool GMQCC_WARN Towner##_##mem##_add(Towner*, Tmem); \
603 bool GMQCC_WARN Towner##_##mem##_remove(Towner*, size_t)
605 #define MEM_VECTOR_PROTO_ALL(Towner, Tmem, mem) \
606 MEM_VECTOR_PROTO(Towner, Tmem, mem); \
607 bool GMQCC_WARN Towner##_##mem##_find(Towner*, Tmem, size_t*); \
608 void Towner##_##mem##_clear(Towner*)
610 #define MEM_VECTOR_MAKE(Twhat, name) \
612 size_t name##_count; \
615 #define MEM_VEC_FUN_ADD(Tself, Twhat, mem) \
616 bool GMQCC_WARN Tself##_##mem##_add(Tself *self, Twhat f) \
619 if (self->mem##_count == self->mem##_alloc) { \
620 if (!self->mem##_alloc) { \
621 self->mem##_alloc = 16; \
623 self->mem##_alloc *= 2; \
625 reall = (Twhat*)mem_a(sizeof(Twhat) * self->mem##_alloc); \
629 memcpy(reall, self->mem, sizeof(Twhat) * self->mem##_count); \
633 self->mem[self->mem##_count++] = f; \
637 #define MEM_VEC_FUN_REMOVE(Tself, Twhat, mem) \
638 bool GMQCC_WARN Tself##_##mem##_remove(Tself *self, size_t idx) \
642 if (idx >= self->mem##_count) { \
643 return true; /* huh... */ \
645 for (i = idx; i < self->mem##_count-1; ++i) { \
646 self->mem[i] = self->mem[i+1]; \
648 self->mem##_count--; \
649 if (self->mem##_count < self->mem##_count/2) { \
650 self->mem##_alloc /= 2; \
651 reall = (Twhat*)mem_a(sizeof(Twhat) * self->mem##_count); \
655 memcpy(reall, self->mem, sizeof(Twhat) * self->mem##_count); \
662 #define MEM_VEC_FUN_FIND(Tself, Twhat, mem) \
663 bool GMQCC_WARN Tself##_##mem##_find(Tself *self, Twhat obj, size_t *idx) \
666 for (i = 0; i < self->mem##_count; ++i) { \
667 if (self->mem[i] == obj) { \
677 #define MEM_VEC_FUN_APPEND(Tself, Twhat, mem) \
678 bool GMQCC_WARN Tself##_##mem##_append(Tself *s, Twhat *p, size_t c) \
681 if (s->mem##_count+c >= s->mem##_alloc) { \
682 if (!s->mem##_alloc) { \
683 s->mem##_alloc = c < 16 ? 16 : c; \
685 s->mem##_alloc *= 2; \
686 if (s->mem##_count+c >= s->mem##_alloc) { \
687 s->mem##_alloc = s->mem##_count+c; \
690 reall = (Twhat*)mem_a(sizeof(Twhat) * s->mem##_alloc); \
694 memcpy(reall, s->mem, sizeof(Twhat) * s->mem##_count); \
698 memcpy(&s->mem[s->mem##_count], p, c*sizeof(*p)); \
699 s->mem##_count += c; \
703 #define MEM_VEC_FUN_RESIZE(Tself, Twhat, mem) \
704 bool GMQCC_WARN Tself##_##mem##_resize(Tself *s, size_t c) \
707 if (c > s->mem##_alloc) { \
708 reall = (Twhat*)mem_a(sizeof(Twhat) * c); \
709 if (!reall) { return false; } \
710 memcpy(reall, s->mem, sizeof(Twhat) * s->mem##_count); \
711 s->mem##_alloc = c; \
716 s->mem##_count = c; \
717 if (c < (s->mem##_alloc / 2)) { \
718 reall = (Twhat*)mem_a(sizeof(Twhat) * c); \
719 if (!reall) { return false; } \
720 memcpy(reall, s->mem, sizeof(Twhat) * c); \
727 #define MEM_VEC_FUN_CLEAR(Tself, mem) \
728 void Tself##_##mem##_clear(Tself *self) \
732 mem_d((void*) self->mem); \
734 self->mem##_count = 0; \
735 self->mem##_alloc = 0; \
738 #define MEM_VECTOR_CLEAR(owner, mem) \
740 mem_d((void*)((owner)->mem)); \
741 (owner)->mem = NULL; \
742 (owner)->mem##_count = 0; \
743 (owner)->mem##_alloc = 0
745 #define MEM_VECTOR_INIT(owner, mem) \
747 (owner)->mem = NULL; \
748 (owner)->mem##_count = 0; \
749 (owner)->mem##_alloc = 0; \
752 #define MEM_VECTOR_MOVE(from, mem, to, tm) \
754 (to)->tm = (from)->mem; \
755 (to)->tm##_count = (from)->mem##_count; \
756 (to)->tm##_alloc = (from)->mem##_alloc; \
757 (from)->mem = NULL; \
758 (from)->mem##_count = 0; \
759 (from)->mem##_alloc = 0; \
762 #define MEM_VEC_FUNCTIONS(Tself, Twhat, mem) \
763 MEM_VEC_FUN_REMOVE(Tself, Twhat, mem) \
764 MEM_VEC_FUN_ADD(Tself, Twhat, mem)
766 #define MEM_VEC_FUNCTIONS_ALL(Tself, Twhat, mem) \
767 MEM_VEC_FUNCTIONS(Tself, Twhat, mem) \
768 MEM_VEC_FUN_CLEAR(Tself, mem) \
769 MEM_VEC_FUN_FIND(Tself, Twhat, mem)
773 store_local, /* local, assignable for now, should get promoted later */
774 store_param, /* parameters, they are locals with a fixed position */
775 store_value, /* unassignable */
776 store_return /* unassignable, at OFS_RETURN */
784 * A shallow copy of a lex_file to remember where which ast node
792 /*===================================================================*/
793 /*============================= exec.c ==============================*/
794 /*===================================================================*/
796 /* darkplaces has (or will have) a 64 bit prog loader
797 * where the 32 bit qc program is autoconverted on load.
798 * Since we may want to support that as well, let's redefine
799 * float and int here.
811 typedef char qcfloat_size_is_correct [sizeof(qcfloat) == 4 ?1:-1];
812 typedef char qcint_size_is_correct [sizeof(qcint) == 4 ?1:-1];
816 VMERR_TEMPSTRING_ALLOC,
821 #define VM_JUMPS_DEFAULT 1000000
824 #define VMXF_DEFAULT 0x0000 /* default flags - nothing */
825 #define VMXF_TRACE 0x0001 /* trace: print statements before executing */
826 #define VMXF_PROFILE 0x0002 /* profile: increment the profile counters */
830 typedef int (*prog_builtin)(struct qc_program_s *prog);
835 prog_section_function *function;
838 typedef struct qc_program_s {
841 MEM_VECTOR_MAKE(prog_section_statement, code);
842 MEM_VECTOR_MAKE(prog_section_def, defs);
843 MEM_VECTOR_MAKE(prog_section_def, fields);
844 MEM_VECTOR_MAKE(prog_section_function, functions);
845 MEM_VECTOR_MAKE(char, strings);
846 MEM_VECTOR_MAKE(qcint, globals);
847 MEM_VECTOR_MAKE(qcint, entitydata);
848 MEM_VECTOR_MAKE(bool, entitypool);
850 size_t tempstring_start;
851 size_t tempstring_at;
855 MEM_VECTOR_MAKE(size_t, profile);
857 MEM_VECTOR_MAKE(prog_builtin, builtins);
862 bool allowworldwrites;
864 MEM_VECTOR_MAKE(qcint, localstack);
865 MEM_VECTOR_MAKE(qc_exec_stack, stack);
868 int argc; /* current arg count for debugging */
871 qc_program* prog_load(const char *filename);
872 void prog_delete(qc_program *prog);
874 bool prog_exec(qc_program *prog, prog_section_function *func, size_t flags, long maxjumps);
876 char* prog_getstring (qc_program *prog, qcint str);
877 prog_section_def* prog_entfield (qc_program *prog, qcint off);
878 prog_section_def* prog_getdef (qc_program *prog, qcint off);
879 qcany* prog_getedict (qc_program *prog, qcint e);
880 qcint prog_tempstring(qc_program *prog, const char *_str);
882 /*===================================================================*/
883 /*===================== error.c message printer =====================*/
884 /*===================================================================*/
904 void vprintmsg (int level, const char *name, size_t line, const char *msgtype, const char *msg, va_list ap);
905 void printmsg (int level, const char *name, size_t line, const char *msgtype, const char *msg, ...);
906 void cvprintmsg(lex_ctx ctx, int lvl, const char *msgtype, const char *msg, va_list ap);
907 void cprintmsg (lex_ctx ctx, int lvl, const char *msgtype, const char *msg, ...);
909 /*===================================================================*/
910 /*======================= main.c commandline ========================*/
911 /*===================================================================*/
914 /* Helpers to allow for a whole lot of flags. Otherwise we'd limit
915 * to 32 or 64 -f options...
918 size_t idx; /* index into an array of 32 bit words */
919 uint8_t bit; /* index _into_ the 32 bit word, thus just uint8 */
921 #define LONGBIT(bit) { ((bit)/32), ((bit)%32) }
923 typedef uint32_t longbit;
924 #define LONGBIT(bit) (bit)
927 /* Used to store the list of flags with names */
933 /*===================================================================*/
934 /* list of -f flags, like -fdarkplaces-string-table-bug */
936 # define GMQCC_DEFINE_FLAG(X) X,
937 # include "flags.def"
938 # undef GMQCC_DEFINE_FLAG
941 static const opts_flag_def opts_flag_list[] = {
942 # define GMQCC_DEFINE_FLAG(X) { #X, LONGBIT(X) },
943 # include "flags.def"
944 # undef GMQCC_DEFINE_FLAG
949 # define GMQCC_DEFINE_FLAG(X) WARN_##X,
950 # include "warns.def"
951 # undef GMQCC_DEFINE_FLAG
954 static const opts_flag_def opts_warn_list[] = {
955 # define GMQCC_DEFINE_FLAG(X) { #X, LONGBIT(WARN_##X) },
956 # include "warns.def"
957 # undef GMQCC_DEFINE_FLAG
963 COMPILER_QCC, /* circa QuakeC */
964 COMPILER_FTEQCC, /* fteqcc QuakeC */
965 COMPILER_QCCX, /* qccx QuakeC */
966 COMPILER_GMQCC /* this QuakeC */
968 extern uint32_t opts_O; /* -Ox */
969 extern const char *opts_output; /* -o file */
970 extern int opts_standard;
971 extern bool opts_debug;
972 extern bool opts_memchk;
973 extern bool opts_dump;
975 /*===================================================================*/
976 #define OPTS_FLAG(i) (!! (opts_flags[(i)/32] & (1<< ((i)%32))))
977 extern uint32_t opts_flags[1 + (COUNT_FLAGS / 32)];
978 #define OPTS_WARN(i) (!! (opts_warn[(i)/32] & (1<< ((i)%32))))
979 extern uint32_t opts_warn[1 + (COUNT_WARNINGS / 32)];