]> git.xonotic.org Git - xonotic/gmqcc.git/blob - exec.c
Get gmqcc/qcvm compiling on windows again. Plus work in progress support for the...
[xonotic/gmqcc.git] / exec.c
1 /*
2  * Copyright (C) 2012
3  *     Wolfgang Bumiller
4  *     Dale Weiler
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 QCVM_LOOP
25 #include <errno.h>
26 #include <stdio.h>
27 #include <string.h>
28 #include <stdarg.h>
29
30 #include "gmqcc.h"
31
32 static void loaderror(const char *fmt, ...)
33 {
34     int     err = errno;
35     va_list ap;
36     va_start(ap, fmt);
37     vprintf(fmt, ap);
38     va_end(ap);
39     printf(": %s\n", strerror(err));
40 }
41
42 static void qcvmerror(qc_program *prog, const char *fmt, ...)
43 {
44     va_list ap;
45
46     prog->vmerror++;
47
48     va_start(ap, fmt);
49     vprintf(fmt, ap);
50     va_end(ap);
51     putchar('\n');
52 }
53
54 qc_program* prog_load(const char *filename)
55 {
56     qc_program *prog;
57     prog_header header;
58     FILE *file;
59
60     file = util_fopen(filename, "rb");
61     if (!file)
62         return NULL;
63
64     if (fread(&header, sizeof(header), 1, file) != 1) {
65         loaderror("failed to read header from '%s'", filename);
66         fclose(file);
67         return NULL;
68     }
69
70     if (header.version != 6) {
71         loaderror("header says this is a version %i progs, we need version 6\n", header.version);
72         fclose(file);
73         return NULL;
74     }
75
76     prog = (qc_program*)mem_a(sizeof(qc_program));
77     if (!prog) {
78         fclose(file);
79         printf("failed to allocate program data\n");
80         return NULL;
81     }
82     memset(prog, 0, sizeof(*prog));
83
84     prog->entityfields = header.entfield;
85     prog->crc16 = header.crc16;
86
87     prog->filename = util_strdup(filename);
88     if (!prog->filename) {
89         loaderror("failed to store program name");
90         goto error;
91     }
92
93 #define read_data(hdrvar, progvar, reserved)                           \
94     if (fseek(file, header.hdrvar.offset, SEEK_SET) != 0) {            \
95         loaderror("seek failed");                                      \
96         goto error;                                                    \
97     }                                                                  \
98     if (fread(vec_add(prog->progvar, header.hdrvar.length + reserved), \
99               sizeof(*prog->progvar),                                  \
100               header.hdrvar.length, file)                              \
101         != header.hdrvar.length)                                       \
102     {                                                                  \
103         loaderror("read failed");                                      \
104         goto error;                                                    \
105     }
106 #define read_data1(x)    read_data(x, x, 0)
107 #define read_data2(x, y) read_data(x, x, y)
108
109     read_data (statements, code, 0);
110     read_data1(defs);
111     read_data1(fields);
112     read_data1(functions);
113     read_data1(strings);
114     read_data2(globals, 2); /* reserve more in case a RETURN using with the global at "the end" exists */
115
116     fclose(file);
117
118     /* profile counters */
119     memset(vec_add(prog->profile, vec_size(prog->code)), 0, sizeof(prog->profile[0]) * vec_size(prog->code));
120
121     /* Add tempstring area */
122     prog->tempstring_start = vec_size(prog->strings);
123     prog->tempstring_at    = vec_size(prog->strings);
124     memset(vec_add(prog->strings, 16*1024), 0, 16*1024);
125
126     /* spawn the world entity */
127     vec_push(prog->entitypool, true);
128     memset(vec_add(prog->entitydata, prog->entityfields), 0, prog->entityfields * sizeof(prog->entitydata[0]));
129     prog->entities = 1;
130
131     return prog;
132
133 error:
134     if (prog->filename)
135         mem_d(prog->filename);
136     vec_free(prog->code);
137     vec_free(prog->defs);
138     vec_free(prog->fields);
139     vec_free(prog->functions);
140     vec_free(prog->strings);
141     vec_free(prog->globals);
142     vec_free(prog->entitydata);
143     vec_free(prog->entitypool);
144     mem_d(prog);
145     return NULL;
146 }
147
148 void prog_delete(qc_program *prog)
149 {
150     if (prog->filename) mem_d(prog->filename);
151     vec_free(prog->code);
152     vec_free(prog->defs);
153     vec_free(prog->fields);
154     vec_free(prog->functions);
155     vec_free(prog->strings);
156     vec_free(prog->globals);
157     vec_free(prog->entitydata);
158     vec_free(prog->entitypool);
159     vec_free(prog->localstack);
160     vec_free(prog->stack);
161     vec_free(prog->profile);
162     mem_d(prog);
163 }
164
165 /***********************************************************************
166  * VM code
167  */
168
169 char* prog_getstring(qc_program *prog, qcint str)
170 {
171     if (str < 0 || str >= (qcint)vec_size(prog->strings))
172         return "<<<invalid string>>>";
173     return prog->strings + str;
174 }
175
176 prog_section_def* prog_entfield(qc_program *prog, qcint off)
177 {
178     size_t i;
179     for (i = 0; i < vec_size(prog->fields); ++i) {
180         if (prog->fields[i].offset == off)
181             return (prog->fields + i);
182     }
183     return NULL;
184 }
185
186 prog_section_def* prog_getdef(qc_program *prog, qcint off)
187 {
188     size_t i;
189     for (i = 0; i < vec_size(prog->defs); ++i) {
190         if (prog->defs[i].offset == off)
191             return (prog->defs + i);
192     }
193     return NULL;
194 }
195
196 qcany* prog_getedict(qc_program *prog, qcint e)
197 {
198     if (e >= (qcint)vec_size(prog->entitypool)) {
199         prog->vmerror++;
200         printf("Accessing out of bounds edict %i\n", (int)e);
201         e = 0;
202     }
203     return (qcany*)(prog->entitydata + (prog->entityfields * e));
204 }
205
206 qcint prog_spawn_entity(qc_program *prog)
207 {
208     char  *data;
209     qcint  e;
210     for (e = 0; e < (qcint)vec_size(prog->entitypool); ++e) {
211         if (!prog->entitypool[e]) {
212             data = (char*)(prog->entitydata + (prog->entityfields * e));
213             memset(data, 0, prog->entityfields * sizeof(qcint));
214             return e;
215         }
216     }
217     vec_push(prog->entitypool, true);
218     prog->entities++;
219     data = (char*)vec_add(prog->entitydata, prog->entityfields);
220     memset(data, 0, prog->entityfields * sizeof(qcint));
221     return e;
222 }
223
224 void prog_free_entity(qc_program *prog, qcint e)
225 {
226     if (!e) {
227         prog->vmerror++;
228         printf("Trying to free world entity\n");
229         return;
230     }
231     if (e >= (qcint)vec_size(prog->entitypool)) {
232         prog->vmerror++;
233         printf("Trying to free out of bounds entity\n");
234         return;
235     }
236     if (!prog->entitypool[e]) {
237         prog->vmerror++;
238         printf("Double free on entity\n");
239         return;
240     }
241     prog->entitypool[e] = false;
242 }
243
244 qcint prog_tempstring(qc_program *prog, const char *_str)
245 {
246     /* we don't access it, but the macro-generated functions don't use
247      * const
248      */
249     char *str = (char*)_str;
250
251     size_t len = strlen(str);
252     size_t at = prog->tempstring_at;
253
254     /* when we reach the end we start over */
255     if (at + len >= vec_size(prog->strings))
256         at = prog->tempstring_start;
257
258     /* when it doesn't fit, reallocate */
259     if (at + len >= vec_size(prog->strings))
260     {
261         (void)vec_add(prog->strings, len+1);
262         memcpy(prog->strings + at, str, len+1);
263         return at;
264     }
265
266     /* when it fits, just copy */
267     memcpy(prog->strings + at, str, len+1);
268     prog->tempstring_at += len+1;
269     return at;
270 }
271
272 static size_t print_escaped_string(const char *str, size_t maxlen)
273 {
274     size_t len = 2;
275     putchar('"');
276     --maxlen; /* because we're lazy and have escape sequences */
277     while (*str) {
278         if (len >= maxlen) {
279             putchar('.');
280             putchar('.');
281             putchar('.');
282             len += 3;
283             break;
284         }
285         switch (*str) {
286             case '\a': len += 2; putchar('\\'); putchar('a'); break;
287             case '\b': len += 2; putchar('\\'); putchar('b'); break;
288             case '\r': len += 2; putchar('\\'); putchar('r'); break;
289             case '\n': len += 2; putchar('\\'); putchar('n'); break;
290             case '\t': len += 2; putchar('\\'); putchar('t'); break;
291             case '\f': len += 2; putchar('\\'); putchar('f'); break;
292             case '\v': len += 2; putchar('\\'); putchar('v'); break;
293             case '\\': len += 2; putchar('\\'); putchar('\\'); break;
294             case '"':  len += 2; putchar('\\'); putchar('"'); break;
295             default:
296                 ++len;
297                 putchar(*str);
298                 break;
299         }
300         ++str;
301     }
302     putchar('"');
303     return len;
304 }
305
306 static void trace_print_global(qc_program *prog, unsigned int glob, int vtype)
307 {
308     static char spaces[28+1] = "                            ";
309     prog_section_def *def;
310     qcany    *value;
311     int       len;
312
313     if (!glob) {
314         len = printf("<null>,");
315         goto done;
316     }
317
318     def = prog_getdef(prog, glob);
319     value = (qcany*)(&prog->globals[glob]);
320
321     len = printf("[@%u] ", glob);
322     if (def) {
323         const char *name = prog_getstring(prog, def->name);
324         if (name[0] == '#')
325             len += printf("$");
326         else
327             len += printf("%s ", name);
328         vtype = def->type & DEF_TYPEMASK;
329     }
330
331     switch (vtype) {
332         case TYPE_VOID:
333         case TYPE_ENTITY:
334         case TYPE_FIELD:
335         case TYPE_FUNCTION:
336         case TYPE_POINTER:
337             len += printf("(%i),", value->_int);
338             break;
339         case TYPE_VECTOR:
340             len += printf("'%g %g %g',", value->vector[0],
341                                          value->vector[1],
342                                          value->vector[2]);
343             break;
344         case TYPE_STRING:
345             len += print_escaped_string(prog_getstring(prog, value->string), sizeof(spaces)-len-5);
346             len += printf(",");
347             /* len += printf("\"%s\",", prog_getstring(prog, value->string)); */
348             break;
349         case TYPE_FLOAT:
350         default:
351             len += printf("%g,", value->_float);
352             break;
353     }
354 done:
355     if (len < (int)sizeof(spaces)-1) {
356         spaces[sizeof(spaces)-1-len] = 0;
357         printf(spaces);
358         spaces[sizeof(spaces)-1-len] = ' ';
359     }
360 }
361
362 static void prog_print_statement(qc_program *prog, prog_section_statement *st)
363 {
364     if (st->opcode >= (sizeof(asm_instr)/sizeof(asm_instr[0]))) {
365         printf("<illegal instruction %d>\n", st->opcode);
366         return;
367     }
368     if ((prog->xflags & VMXF_TRACE) && vec_size(prog->function_stack)) {
369         size_t i;
370         for (i = 0; i < vec_size(prog->function_stack); ++i)
371             printf("->");
372         printf("%s:", vec_last(prog->function_stack));
373     }
374     printf(" <> %-12s", asm_instr[st->opcode].m);
375     if (st->opcode >= INSTR_IF &&
376         st->opcode <= INSTR_IFNOT)
377     {
378         trace_print_global(prog, st->o1.u1, TYPE_FLOAT);
379         printf("%d\n", st->o2.s1);
380     }
381     else if (st->opcode >= INSTR_CALL0 &&
382              st->opcode <= INSTR_CALL8)
383     {
384         trace_print_global(prog, st->o1.u1, TYPE_FUNCTION);
385         printf("\n");
386     }
387     else if (st->opcode == INSTR_GOTO)
388     {
389         printf("%i\n", st->o1.s1);
390     }
391     else
392     {
393         int t[3] = { TYPE_FLOAT, TYPE_FLOAT, TYPE_FLOAT };
394         switch (st->opcode)
395         {
396             case INSTR_MUL_FV:
397                 t[1] = t[2] = TYPE_VECTOR;
398                 break;
399             case INSTR_MUL_VF:
400                 t[0] = t[2] = TYPE_VECTOR;
401                 break;
402             case INSTR_MUL_V:
403                 t[0] = t[1] = TYPE_VECTOR;
404                 break;
405             case INSTR_ADD_V:
406             case INSTR_SUB_V:
407             case INSTR_EQ_V:
408             case INSTR_NE_V:
409                 t[0] = t[1] = t[2] = TYPE_VECTOR;
410                 break;
411             case INSTR_EQ_S:
412             case INSTR_NE_S:
413                 t[0] = t[1] = TYPE_STRING;
414                 break;
415             case INSTR_STORE_F:
416             case INSTR_STOREP_F:
417                 t[2] = -1;
418                 break;
419             case INSTR_STORE_V:
420                 t[0] = t[1] = TYPE_VECTOR; t[2] = -1;
421                 break;
422             case INSTR_STORE_S:
423                 t[0] = t[1] = TYPE_STRING; t[2] = -1;
424                 break;
425             case INSTR_STORE_ENT:
426                 t[0] = t[1] = TYPE_ENTITY; t[2] = -1;
427                 break;
428             case INSTR_STORE_FLD:
429                 t[0] = t[1] = TYPE_FIELD; t[2] = -1;
430                 break;
431             case INSTR_STORE_FNC:
432                 t[0] = t[1] = TYPE_FUNCTION; t[2] = -1;
433                 break;
434             case INSTR_STOREP_V:
435                 t[0] = TYPE_VECTOR; t[1] = TYPE_ENTITY; t[2] = -1;
436                 break;
437             case INSTR_STOREP_S:
438                 t[0] = TYPE_STRING; t[1] = TYPE_ENTITY; t[2] = -1;
439                 break;
440             case INSTR_STOREP_ENT:
441                 t[0] = TYPE_ENTITY; t[1] = TYPE_ENTITY; t[2] = -1;
442                 break;
443             case INSTR_STOREP_FLD:
444                 t[0] = TYPE_FIELD; t[1] = TYPE_ENTITY; t[2] = -1;
445                 break;
446             case INSTR_STOREP_FNC:
447                 t[0] = TYPE_FUNCTION; t[1] = TYPE_ENTITY; t[2] = -1;
448                 break;
449         }
450         if (t[0] >= 0) trace_print_global(prog, st->o1.u1, t[0]);
451         else           printf("(none),          ");
452         if (t[1] >= 0) trace_print_global(prog, st->o2.u1, t[1]);
453         else           printf("(none),          ");
454         if (t[2] >= 0) trace_print_global(prog, st->o3.u1, t[2]);
455         else           printf("(none)");
456         printf("\n");
457     }
458     fflush(stdout);
459 }
460
461 static qcint prog_enterfunction(qc_program *prog, prog_section_function *func)
462 {
463     qc_exec_stack st;
464     size_t  parampos;
465     int32_t p;
466
467     /* back up locals */
468     st.localsp  = vec_size(prog->localstack);
469     st.stmt     = prog->statement;
470     st.function = func;
471
472     if (prog->xflags & VMXF_TRACE) {
473         vec_push(prog->function_stack, prog_getstring(prog, func->name));
474     }
475
476 #ifdef QCVM_BACKUP_STRATEGY_CALLER_VARS
477     if (vec_size(prog->stack))
478     {
479         prog_section_function *cur;
480         cur = prog->stack[vec_size(prog->stack)-1].function;
481         if (cur)
482         {
483             qcint *globals = prog->globals + cur->firstlocal;
484             vec_append(prog->localstack, cur->locals, globals);
485         }
486     }
487 #else
488     {
489         qcint *globals = prog->globals + func->firstlocal;
490         vec_append(prog->localstack, func->locals, globals);
491     }
492 #endif
493
494     /* copy parameters */
495     parampos = func->firstlocal;
496     for (p = 0; p < func->nargs; ++p)
497     {
498         size_t s;
499         for (s = 0; s < func->argsize[p]; ++s) {
500             prog->globals[parampos] = prog->globals[OFS_PARM0 + 3*p + s];
501             ++parampos;
502         }
503     }
504
505     vec_push(prog->stack, st);
506
507     return func->entry;
508 }
509
510 static qcint prog_leavefunction(qc_program *prog)
511 {
512     prog_section_function *prev = NULL;
513     size_t oldsp;
514
515     qc_exec_stack st = vec_last(prog->stack);
516
517     if (prog->xflags & VMXF_TRACE) {
518         if (vec_size(prog->function_stack))
519             vec_pop(prog->function_stack);
520     }
521
522 #ifdef QCVM_BACKUP_STRATEGY_CALLER_VARS
523     if (vec_size(prog->stack) > 1) {
524         prev  = prog->stack[vec_size(prog->stack)-2].function;
525         oldsp = prog->stack[vec_size(prog->stack)-2].localsp;
526     }
527 #else
528     prev  = prog->stack[vec_size(prog->stack)-1].function;
529     oldsp = prog->stack[vec_size(prog->stack)-1].localsp;
530 #endif
531     if (prev) {
532         qcint *globals = prog->globals + prev->firstlocal;
533         memcpy(globals, prog->localstack + oldsp, prev->locals);
534         /* vec_remove(prog->localstack, oldsp, vec_size(prog->localstack)-oldsp); */
535         vec_shrinkto(prog->localstack, oldsp);
536     }
537
538     vec_pop(prog->stack);
539
540     return st.stmt - 1; /* offset the ++st */
541 }
542
543 bool prog_exec(qc_program *prog, prog_section_function *func, size_t flags, long maxjumps)
544 {
545     long jumpcount = 0;
546     size_t oldxflags = prog->xflags;
547     prog_section_statement *st;
548
549     prog->vmerror = 0;
550     prog->xflags = flags;
551
552     st = prog->code + prog_enterfunction(prog, func);
553     --st;
554     switch (flags)
555     {
556         default:
557         case 0:
558         {
559 #define QCVM_LOOP    1
560 #define QCVM_PROFILE 0
561 #define QCVM_TRACE   0
562 #           include __FILE__
563             break;
564         }
565         case (VMXF_TRACE):
566         {
567 #define QCVM_PROFILE 0
568 #define QCVM_TRACE   1
569 #           include __FILE__
570             break;
571         }
572         case (VMXF_PROFILE):
573         {
574 #define QCVM_PROFILE 1
575 #define QCVM_TRACE   0
576 #           include __FILE__
577             break;
578         }
579         case (VMXF_TRACE|VMXF_PROFILE):
580         {
581 #define QCVM_PROFILE 1
582 #define QCVM_TRACE   1
583 #           include __FILE__
584             break;
585         }
586     };
587
588 cleanup:
589     prog->xflags = oldxflags;
590     vec_free(prog->localstack);
591     vec_free(prog->stack);
592     if (prog->vmerror)
593         return false;
594     return true;
595 }
596
597 /***********************************************************************
598  * main for when building the standalone executor
599  */
600
601 #if defined(QCVM_EXECUTOR)
602 #include <math.h>
603
604 opts_cmd_t opts;
605
606 const char *type_name[TYPE_COUNT] = {
607     "void",
608     "string",
609     "float",
610     "vector",
611     "entity",
612     "field",
613     "function",
614     "pointer",
615 #if 0
616     "integer",
617 #endif
618     "variant"
619 };
620
621 typedef struct {
622     int         vtype;
623     const char *value;
624 } qcvm_parameter;
625
626 qcvm_parameter *main_params = NULL;
627
628 #define CheckArgs(num) do {                                                    \
629     if (prog->argc != (num)) {                                                 \
630         prog->vmerror++;                                                       \
631         printf("ERROR: invalid number of arguments for %s: %i, expected %i\n", \
632         __FUNCTION__, prog->argc, (num));                                      \
633         return -1;                                                             \
634     }                                                                          \
635 } while (0)
636
637 #define GetGlobal(idx) ((qcany*)(prog->globals + (idx)))
638 #define GetArg(num) GetGlobal(OFS_PARM0 + 3*(num))
639 #define Return(any) *(GetGlobal(OFS_RETURN)) = (any)
640
641 static int qc_print(qc_program *prog)
642 {
643     size_t i;
644     const char *laststr = NULL;
645     for (i = 0; i < (size_t)prog->argc; ++i) {
646         qcany *str = (qcany*)(prog->globals + OFS_PARM0 + 3*i);
647         printf("%s", (laststr = prog_getstring(prog, str->string)));
648     }
649     if (laststr && (prog->xflags & VMXF_TRACE)) {
650         size_t len = strlen(laststr);
651         if (!len || laststr[len-1] != '\n')
652             printf("\n");
653     }
654     return 0;
655 }
656
657 static int qc_error(qc_program *prog)
658 {
659     printf("*** VM raised an error:\n");
660     qc_print(prog);
661     prog->vmerror++;
662     return -1;
663 }
664
665 static int qc_ftos(qc_program *prog)
666 {
667     char buffer[512];
668     qcany *num;
669     qcany str;
670     CheckArgs(1);
671     num = GetArg(0);
672     snprintf(buffer, sizeof(buffer), "%g", num->_float);
673     str.string = prog_tempstring(prog, buffer);
674     Return(str);
675     return 0;
676 }
677
678 static int qc_stof(qc_program *prog)
679 {
680     qcany *str;
681     qcany num;
682     CheckArgs(1);
683     str = GetArg(0);
684     num._float = strtof(prog_getstring(prog, str->string), NULL);
685     Return(num);
686     return 0;
687 }
688
689 static int qc_vtos(qc_program *prog)
690 {
691     char buffer[512];
692     qcany *num;
693     qcany str;
694     CheckArgs(1);
695     num = GetArg(0);
696     snprintf(buffer, sizeof(buffer), "'%g %g %g'", num->vector[0], num->vector[1], num->vector[2]);
697     str.string = prog_tempstring(prog, buffer);
698     Return(str);
699     return 0;
700 }
701
702 static int qc_etos(qc_program *prog)
703 {
704     char buffer[512];
705     qcany *num;
706     qcany str;
707     CheckArgs(1);
708     num = GetArg(0);
709     snprintf(buffer, sizeof(buffer), "%i", num->_int);
710     str.string = prog_tempstring(prog, buffer);
711     Return(str);
712     return 0;
713 }
714
715 static int qc_spawn(qc_program *prog)
716 {
717     qcany ent;
718     CheckArgs(0);
719     ent.edict = prog_spawn_entity(prog);
720     Return(ent);
721     return (ent.edict ? 0 : -1);
722 }
723
724 static int qc_kill(qc_program *prog)
725 {
726     qcany *ent;
727     CheckArgs(1);
728     ent = GetArg(0);
729     prog_free_entity(prog, ent->edict);
730     return 0;
731 }
732
733 static int qc_vlen(qc_program *prog)
734 {
735     qcany *vec, len;
736     CheckArgs(1);
737     vec = GetArg(0);
738     len._float = sqrt(vec->vector[0] * vec->vector[0] +
739                       vec->vector[1] * vec->vector[1] +
740                       vec->vector[2] * vec->vector[2]);
741     Return(len);
742     return 0;
743 }
744
745 static prog_builtin qc_builtins[] = {
746     NULL,
747     &qc_print, /*   1   */
748     &qc_ftos,  /*   2   */
749     &qc_spawn, /*   3   */
750     &qc_kill,  /*   4   */
751     &qc_vtos,  /*   5   */
752     &qc_error, /*   6   */
753     &qc_vlen,  /*   7   */
754     &qc_etos,  /*   8   */
755     &qc_stof   /*   9   */
756 };
757 static size_t qc_builtins_count = sizeof(qc_builtins) / sizeof(qc_builtins[0]);
758
759 static const char *arg0 = NULL;
760
761 static void version() {
762     printf("GMQCC-QCVM %d.%d.%d Built %s %s\n",
763            GMQCC_VERSION_MAJOR,
764            GMQCC_VERSION_MINOR,
765            GMQCC_VERSION_PATCH,
766            __DATE__,
767            __TIME__
768     );
769 }
770
771 static void usage()
772 {
773     printf("usage: %s [options] [parameters] file\n", arg0);
774     printf("options:\n");
775     printf("  -h, --help    print this message\n"
776            "  -trace        trace the execution\n"
777            "  -profile      perform profiling during execution\n"
778            "  -info         print information from the prog's header\n"
779            "  -disasm       disassemble and exit\n"
780            "  -printdefs    list the defs section\n"
781            "  -printfields  list the field section\n"
782            "  -printfuns    list functions information\n");
783     printf("parameters:\n");
784     printf("  -vector <V>   pass a vector parameter to main()\n"
785            "  -float  <f>   pass a float parameter to main()\n"
786            "  -string <s>   pass a string parameter to main() \n");
787 }
788
789 static void prog_main_setparams(qc_program *prog)
790 {
791     size_t i;
792     qcany *arg;
793
794     for (i = 0; i < vec_size(main_params); ++i) {
795         arg = GetGlobal(OFS_PARM0 + 3*i);
796         arg->vector[0] = 0;
797         arg->vector[1] = 0;
798         arg->vector[2] = 0;
799         switch (main_params[i].vtype) {
800             case TYPE_VECTOR:
801 #ifdef _MSC_VER
802                 (void)sscanf_s(main_params[i].value, " %f %f %f ",
803                                &arg->vector[0],
804                                &arg->vector[1],
805                                &arg->vector[2]);
806 #else
807                 (void)sscanf(main_params[i].value, " %f %f %f ",
808                              &arg->vector[0],
809                              &arg->vector[1],
810                              &arg->vector[2]);
811 #endif
812                 break;
813             case TYPE_FLOAT:
814                 arg->_float = atof(main_params[i].value);
815                 break;
816             case TYPE_STRING:
817                 arg->string = prog_tempstring(prog, main_params[i].value);
818                 break;
819             default:
820                 printf("error: unhandled parameter type: %i\n", main_params[i].vtype);
821                 break;
822         }
823     }
824 }
825
826 void prog_disasm_function(qc_program *prog, size_t id);
827 int main(int argc, char **argv)
828 {
829     size_t      i;
830     qcint       fnmain = -1;
831     qc_program *prog;
832     size_t      xflags = VMXF_DEFAULT;
833     bool        opts_printfields = false;
834     bool        opts_printdefs   = false;
835     bool        opts_printfuns   = false;
836     bool        opts_disasm      = false;
837     bool        opts_info        = false;
838     bool        noexec           = false;
839     const char *progsfile        = NULL;
840
841     arg0 = argv[0];
842
843     if (argc < 2) {
844         usage();
845         exit(1);
846     }
847
848     while (argc > 1) {
849         if (!strcmp(argv[1], "-h") ||
850             !strcmp(argv[1], "-help") ||
851             !strcmp(argv[1], "--help"))
852         {
853             usage();
854             exit(0);
855         }
856         else if (!strcmp(argv[1], "-v") ||
857                  !strcmp(argv[1], "-version") ||
858                  !strcmp(argv[1], "--version"))
859         {
860             version();
861             exit(0);
862         }
863         else if (!strcmp(argv[1], "-trace")) {
864             --argc;
865             ++argv;
866             xflags |= VMXF_TRACE;
867         }
868         else if (!strcmp(argv[1], "-profile")) {
869             --argc;
870             ++argv;
871             xflags |= VMXF_PROFILE;
872         }
873         else if (!strcmp(argv[1], "-info")) {
874             --argc;
875             ++argv;
876             opts_info = true;
877             noexec = true;
878         }
879         else if (!strcmp(argv[1], "-disasm")) {
880             --argc;
881             ++argv;
882             opts_disasm = true;
883             noexec = true;
884         }
885         else if (!strcmp(argv[1], "-printdefs")) {
886             --argc;
887             ++argv;
888             opts_printdefs = true;
889             noexec = true;
890         }
891         else if (!strcmp(argv[1], "-printfuns")) {
892             --argc;
893             ++argv;
894             opts_printfuns = true;
895             noexec = true;
896         }
897         else if (!strcmp(argv[1], "-printfields")) {
898             --argc;
899             ++argv;
900             opts_printfields = true;
901             noexec = true;
902         }
903         else if (!strcmp(argv[1], "-vector") ||
904                  !strcmp(argv[1], "-string") ||
905                  !strcmp(argv[1], "-float") )
906         {
907             qcvm_parameter p;
908             if (argv[1][1] == 'f')
909                 p.vtype = TYPE_FLOAT;
910             else if (argv[1][1] == 's')
911                 p.vtype = TYPE_STRING;
912             else if (argv[1][1] == 'v')
913                 p.vtype = TYPE_VECTOR;
914
915             --argc;
916             ++argv;
917             if (argc < 3) {
918                 usage();
919                 exit(1);
920             }
921             p.value = argv[1];
922
923             vec_push(main_params, p);
924             --argc;
925             ++argv;
926         }
927         else if (!strcmp(argv[1], "--")) {
928             --argc;
929             ++argv;
930             break;
931         }
932         else if (argv[1][0] != '-') {
933             if (progsfile) {
934                 printf("only 1 program file may be specified\n");
935                 usage();
936                 exit(1);
937             }
938             progsfile = argv[1];
939             --argc;
940             ++argv;
941         }
942         else
943         {
944             usage();
945             exit(1);
946         }
947     }
948
949     if (argc > 2) {
950         usage();
951         exit(1);
952     }
953     if (argc > 1) {
954         if (progsfile) {
955             printf("only 1 program file may be specified\n");
956             usage();
957             exit(1);
958         }
959         progsfile = argv[1];
960         --argc;
961         ++argv;
962     }
963
964     if (!progsfile) {
965         usage();
966         exit(1);
967     }
968
969     prog = prog_load(progsfile);
970     if (!prog) {
971         printf("failed to load program '%s'\n", progsfile);
972         exit(1);
973     }
974
975     prog->builtins       = qc_builtins;
976     prog->builtins_count = qc_builtins_count;
977
978     if (opts_info) {
979         printf("Program's system-checksum = 0x%04x\n", (unsigned int)prog->crc16);
980         printf("Entity field space: %u\n", (unsigned int)prog->entityfields);
981         printf("Globals: %u\n", (unsigned int)vec_size(prog->globals));
982     }
983
984     if (opts_info) {
985         prog_delete(prog);
986         return 0;
987     }
988     if (opts_disasm) {
989         for (i = 1; i < vec_size(prog->functions); ++i)
990             prog_disasm_function(prog, i);
991         return 0;
992     }
993     if (opts_printdefs) {
994         for (i = 0; i < vec_size(prog->defs); ++i) {
995             printf("Global: %8s %-16s at %u%s\n",
996                    type_name[prog->defs[i].type & DEF_TYPEMASK],
997                    prog_getstring(prog, prog->defs[i].name),
998                    (unsigned int)prog->defs[i].offset,
999                    ((prog->defs[i].type & DEF_SAVEGLOBAL) ? " [SAVE]" : ""));
1000         }
1001     }
1002     if (opts_printfields) {
1003         for (i = 0; i < vec_size(prog->fields); ++i) {
1004             printf("Field: %8s %-16s at %u%s\n",
1005                    type_name[prog->fields[i].type],
1006                    prog_getstring(prog, prog->fields[i].name),
1007                    (unsigned int)prog->fields[i].offset,
1008                    ((prog->fields[i].type & DEF_SAVEGLOBAL) ? " [SAVE]" : ""));
1009         }
1010     }
1011     if (opts_printfuns) {
1012         for (i = 0; i < vec_size(prog->functions); ++i) {
1013             int32_t a;
1014             printf("Function: %-16s taking %i parameters:(",
1015                    prog_getstring(prog, prog->functions[i].name),
1016                    (unsigned int)prog->functions[i].nargs);
1017             for (a = 0; a < prog->functions[i].nargs; ++a) {
1018                 printf(" %i", prog->functions[i].argsize[a]);
1019             }
1020             printf(") locals: %i + %i\n",
1021                    prog->functions[i].firstlocal,
1022                    prog->functions[i].locals);
1023         }
1024     }
1025     if (!noexec) {
1026         for (i = 1; i < vec_size(prog->functions); ++i) {
1027             const char *name = prog_getstring(prog, prog->functions[i].name);
1028             if (!strcmp(name, "main"))
1029                 fnmain = (qcint)i;
1030         }
1031         if (fnmain > 0)
1032         {
1033             prog_main_setparams(prog);
1034             prog_exec(prog, &prog->functions[fnmain], xflags, VM_JUMPS_DEFAULT);
1035         }
1036         else
1037             printf("No main function found\n");
1038     }
1039
1040     prog_delete(prog);
1041     return 0;
1042 }
1043
1044 void prog_disasm_function(qc_program *prog, size_t id)
1045 {
1046     prog_section_function *fdef = prog->functions + id;
1047     prog_section_statement *st;
1048
1049     if (fdef->entry < 0) {
1050         printf("FUNCTION \"%s\" = builtin #%i\n", prog_getstring(prog, fdef->name), (int)-fdef->entry);
1051         return;
1052     }
1053     else
1054         printf("FUNCTION \"%s\"\n", prog_getstring(prog, fdef->name));
1055
1056     st = prog->code + fdef->entry;
1057     while (st->opcode != INSTR_DONE) {
1058         prog_print_statement(prog, st);
1059         ++st;
1060     }
1061 }
1062 #endif
1063 #else /* !QCVM_LOOP */
1064 /*
1065  * Everything from here on is not including into the compilation of the
1066  * executor.  This is simply code that is #included via #include __FILE__
1067  * see when QCVM_LOOP is defined, the rest of the code above do not get
1068  * re-included.  So this really just acts like one large macro, but it
1069  * sort of isn't, which makes it nicer looking.
1070  */
1071
1072 #define OPA ( (qcany*) (prog->globals + st->o1.u1) )
1073 #define OPB ( (qcany*) (prog->globals + st->o2.u1) )
1074 #define OPC ( (qcany*) (prog->globals + st->o3.u1) )
1075
1076 #define GLOBAL(x) ( (qcany*) (prog->globals + (x)) )
1077
1078 /* to be consistent with current darkplaces behaviour */
1079 #if !defined(FLOAT_IS_TRUE_FOR_INT)
1080 #   define FLOAT_IS_TRUE_FOR_INT(x) ( (x) & 0x7FFFFFFF )
1081 #endif
1082
1083 while (1) {
1084     prog_section_function  *newf;
1085     qcany          *ed;
1086     qcany          *ptr;
1087
1088     ++st;
1089
1090 #if QCVM_PROFILE
1091     prog->profile[st - prog->code]++;
1092 #endif
1093
1094 #if QCVM_TRACE
1095     prog_print_statement(prog, st);
1096 #endif
1097
1098     switch (st->opcode)
1099     {
1100         default:
1101             qcvmerror(prog, "Illegal instruction in %s\n", prog->filename);
1102             goto cleanup;
1103
1104         case INSTR_DONE:
1105         case INSTR_RETURN:
1106             /* TODO: add instruction count to function profile count */
1107             GLOBAL(OFS_RETURN)->ivector[0] = OPA->ivector[0];
1108             GLOBAL(OFS_RETURN)->ivector[1] = OPA->ivector[1];
1109             GLOBAL(OFS_RETURN)->ivector[2] = OPA->ivector[2];
1110
1111             st = prog->code + prog_leavefunction(prog);
1112             if (!vec_size(prog->stack))
1113                 goto cleanup;
1114
1115             break;
1116
1117         case INSTR_MUL_F:
1118             OPC->_float = OPA->_float * OPB->_float;
1119             break;
1120         case INSTR_MUL_V:
1121             OPC->_float = OPA->vector[0]*OPB->vector[0] +
1122                           OPA->vector[1]*OPB->vector[1] +
1123                           OPA->vector[2]*OPB->vector[2];
1124             break;
1125         case INSTR_MUL_FV:
1126             OPC->vector[0] = OPA->_float * OPB->vector[0];
1127             OPC->vector[1] = OPA->_float * OPB->vector[1];
1128             OPC->vector[2] = OPA->_float * OPB->vector[2];
1129             break;
1130         case INSTR_MUL_VF:
1131             OPC->vector[0] = OPB->_float * OPA->vector[0];
1132             OPC->vector[1] = OPB->_float * OPA->vector[1];
1133             OPC->vector[2] = OPB->_float * OPA->vector[2];
1134             break;
1135         case INSTR_DIV_F:
1136             if (OPB->_float != 0.0f)
1137                 OPC->_float = OPA->_float / OPB->_float;
1138             else
1139                 OPC->_float = 0;
1140             break;
1141
1142         case INSTR_ADD_F:
1143             OPC->_float = OPA->_float + OPB->_float;
1144             break;
1145         case INSTR_ADD_V:
1146             OPC->vector[0] = OPA->vector[0] + OPB->vector[0];
1147             OPC->vector[1] = OPA->vector[1] + OPB->vector[1];
1148             OPC->vector[2] = OPA->vector[2] + OPB->vector[2];
1149             break;
1150         case INSTR_SUB_F:
1151             OPC->_float = OPA->_float - OPB->_float;
1152             break;
1153         case INSTR_SUB_V:
1154             OPC->vector[0] = OPA->vector[0] - OPB->vector[0];
1155             OPC->vector[1] = OPA->vector[1] - OPB->vector[1];
1156             OPC->vector[2] = OPA->vector[2] - OPB->vector[2];
1157             break;
1158
1159         case INSTR_EQ_F:
1160             OPC->_float = (OPA->_float == OPB->_float);
1161             break;
1162         case INSTR_EQ_V:
1163             OPC->_float = ((OPA->vector[0] == OPB->vector[0]) &&
1164                            (OPA->vector[1] == OPB->vector[1]) &&
1165                            (OPA->vector[2] == OPB->vector[2]) );
1166             break;
1167         case INSTR_EQ_S:
1168             OPC->_float = !strcmp(prog_getstring(prog, OPA->string),
1169                                   prog_getstring(prog, OPB->string));
1170             break;
1171         case INSTR_EQ_E:
1172             OPC->_float = (OPA->_int == OPB->_int);
1173             break;
1174         case INSTR_EQ_FNC:
1175             OPC->_float = (OPA->function == OPB->function);
1176             break;
1177         case INSTR_NE_F:
1178             OPC->_float = (OPA->_float != OPB->_float);
1179             break;
1180         case INSTR_NE_V:
1181             OPC->_float = ((OPA->vector[0] != OPB->vector[0]) ||
1182                            (OPA->vector[1] != OPB->vector[1]) ||
1183                            (OPA->vector[2] != OPB->vector[2]) );
1184             break;
1185         case INSTR_NE_S:
1186             OPC->_float = !!strcmp(prog_getstring(prog, OPA->string),
1187                                    prog_getstring(prog, OPB->string));
1188             break;
1189         case INSTR_NE_E:
1190             OPC->_float = (OPA->_int != OPB->_int);
1191             break;
1192         case INSTR_NE_FNC:
1193             OPC->_float = (OPA->function != OPB->function);
1194             break;
1195
1196         case INSTR_LE:
1197             OPC->_float = (OPA->_float <= OPB->_float);
1198             break;
1199         case INSTR_GE:
1200             OPC->_float = (OPA->_float >= OPB->_float);
1201             break;
1202         case INSTR_LT:
1203             OPC->_float = (OPA->_float < OPB->_float);
1204             break;
1205         case INSTR_GT:
1206             OPC->_float = (OPA->_float > OPB->_float);
1207             break;
1208
1209         case INSTR_LOAD_F:
1210         case INSTR_LOAD_S:
1211         case INSTR_LOAD_FLD:
1212         case INSTR_LOAD_ENT:
1213         case INSTR_LOAD_FNC:
1214             if (OPA->edict < 0 || OPA->edict >= prog->entities) {
1215                 qcvmerror(prog, "progs `%s` attempted to read an out of bounds entity", prog->filename);
1216                 goto cleanup;
1217             }
1218             if ((unsigned int)(OPB->_int) >= (unsigned int)(prog->entityfields)) {
1219                 qcvmerror(prog, "prog `%s` attempted to read an invalid field from entity (%i)",
1220                           prog->filename,
1221                           OPB->_int);
1222                 goto cleanup;
1223             }
1224             ed = prog_getedict(prog, OPA->edict);
1225             OPC->_int = ((qcany*)( ((qcint*)ed) + OPB->_int ))->_int;
1226             break;
1227         case INSTR_LOAD_V:
1228             if (OPA->edict < 0 || OPA->edict >= prog->entities) {
1229                 qcvmerror(prog, "progs `%s` attempted to read an out of bounds entity", prog->filename);
1230                 goto cleanup;
1231             }
1232             if (OPB->_int < 0 || OPB->_int + 3 > (qcint)prog->entityfields)
1233             {
1234                 qcvmerror(prog, "prog `%s` attempted to read an invalid field from entity (%i)",
1235                           prog->filename,
1236                           OPB->_int + 2);
1237                 goto cleanup;
1238             }
1239             ed = prog_getedict(prog, OPA->edict);
1240             OPC->ivector[0] = ((qcany*)( ((qcint*)ed) + OPB->_int ))->ivector[0];
1241             OPC->ivector[1] = ((qcany*)( ((qcint*)ed) + OPB->_int ))->ivector[1];
1242             OPC->ivector[2] = ((qcany*)( ((qcint*)ed) + OPB->_int ))->ivector[2];
1243             break;
1244
1245         case INSTR_ADDRESS:
1246             if (OPA->edict < 0 || OPA->edict >= prog->entities) {
1247                 qcvmerror(prog, "prog `%s` attempted to address an out of bounds entity %i", prog->filename, OPA->edict);
1248                 goto cleanup;
1249             }
1250             if ((unsigned int)(OPB->_int) >= (unsigned int)(prog->entityfields))
1251             {
1252                 qcvmerror(prog, "prog `%s` attempted to read an invalid field from entity (%i)",
1253                           prog->filename,
1254                           OPB->_int);
1255                 goto cleanup;
1256             }
1257
1258             ed = prog_getedict(prog, OPA->edict);
1259             OPC->_int = ((qcint*)ed) - prog->entitydata + OPB->_int;
1260             break;
1261
1262         case INSTR_STORE_F:
1263         case INSTR_STORE_S:
1264         case INSTR_STORE_ENT:
1265         case INSTR_STORE_FLD:
1266         case INSTR_STORE_FNC:
1267             OPB->_int = OPA->_int;
1268             break;
1269         case INSTR_STORE_V:
1270             OPB->ivector[0] = OPA->ivector[0];
1271             OPB->ivector[1] = OPA->ivector[1];
1272             OPB->ivector[2] = OPA->ivector[2];
1273             break;
1274
1275         case INSTR_STOREP_F:
1276         case INSTR_STOREP_S:
1277         case INSTR_STOREP_ENT:
1278         case INSTR_STOREP_FLD:
1279         case INSTR_STOREP_FNC:
1280             if (OPB->_int < 0 || OPB->_int >= (qcint)vec_size(prog->entitydata)) {
1281                 qcvmerror(prog, "`%s` attempted to write to an out of bounds edict (%i)", prog->filename, OPB->_int);
1282                 goto cleanup;
1283             }
1284             if (OPB->_int < (qcint)prog->entityfields && !prog->allowworldwrites)
1285                 qcvmerror(prog, "`%s` tried to assign to world.%s (field %i)\n",
1286                           prog->filename,
1287                           prog_getstring(prog, prog_entfield(prog, OPB->_int)->name),
1288                           OPB->_int);
1289             ptr = (qcany*)(prog->entitydata + OPB->_int);
1290             ptr->_int = OPA->_int;
1291             break;
1292         case INSTR_STOREP_V:
1293             if (OPB->_int < 0 || OPB->_int + 2 >= (qcint)vec_size(prog->entitydata)) {
1294                 qcvmerror(prog, "`%s` attempted to write to an out of bounds edict (%i)", prog->filename, OPB->_int);
1295                 goto cleanup;
1296             }
1297             if (OPB->_int < (qcint)prog->entityfields && !prog->allowworldwrites)
1298                 qcvmerror(prog, "`%s` tried to assign to world.%s (field %i)\n",
1299                           prog->filename,
1300                           prog_getstring(prog, prog_entfield(prog, OPB->_int)->name),
1301                           OPB->_int);
1302             ptr = (qcany*)(prog->entitydata + OPB->_int);
1303             ptr->ivector[0] = OPA->ivector[0];
1304             ptr->ivector[1] = OPA->ivector[1];
1305             ptr->ivector[2] = OPA->ivector[2];
1306             break;
1307
1308         case INSTR_NOT_F:
1309             OPC->_float = !FLOAT_IS_TRUE_FOR_INT(OPA->_int);
1310             break;
1311         case INSTR_NOT_V:
1312             OPC->_float = !OPA->vector[0] &&
1313                           !OPA->vector[1] &&
1314                           !OPA->vector[2];
1315             break;
1316         case INSTR_NOT_S:
1317             OPC->_float = !OPA->string ||
1318                           !*prog_getstring(prog, OPA->string);
1319             break;
1320         case INSTR_NOT_ENT:
1321             OPC->_float = (OPA->edict == 0);
1322             break;
1323         case INSTR_NOT_FNC:
1324             OPC->_float = !OPA->function;
1325             break;
1326
1327         case INSTR_IF:
1328             /* this is consistent with darkplaces' behaviour */
1329             if(FLOAT_IS_TRUE_FOR_INT(OPA->_int))
1330             {
1331                 st += st->o2.s1 - 1;    /* offset the s++ */
1332                 if (++jumpcount >= maxjumps)
1333                     qcvmerror(prog, "`%s` hit the runaway loop counter limit of %li jumps", prog->filename, jumpcount);
1334             }
1335             break;
1336         case INSTR_IFNOT:
1337             if(!FLOAT_IS_TRUE_FOR_INT(OPA->_int))
1338             {
1339                 st += st->o2.s1 - 1;    /* offset the s++ */
1340                 if (++jumpcount >= maxjumps)
1341                     qcvmerror(prog, "`%s` hit the runaway loop counter limit of %li jumps", prog->filename, jumpcount);
1342             }
1343             break;
1344
1345         case INSTR_CALL0:
1346         case INSTR_CALL1:
1347         case INSTR_CALL2:
1348         case INSTR_CALL3:
1349         case INSTR_CALL4:
1350         case INSTR_CALL5:
1351         case INSTR_CALL6:
1352         case INSTR_CALL7:
1353         case INSTR_CALL8:
1354             prog->argc = st->opcode - INSTR_CALL0;
1355             if (!OPA->function)
1356                 qcvmerror(prog, "NULL function in `%s`", prog->filename);
1357
1358             if(!OPA->function || OPA->function >= (qcint)vec_size(prog->functions))
1359             {
1360                 qcvmerror(prog, "CALL outside the program in `%s`", prog->filename);
1361                 goto cleanup;
1362             }
1363
1364             newf = &prog->functions[OPA->function];
1365             newf->profile++;
1366
1367             prog->statement = (st - prog->code) + 1;
1368
1369             if (newf->entry < 0)
1370             {
1371                 /* negative statements are built in functions */
1372                 qcint builtinnumber = -newf->entry;
1373                 if (builtinnumber < (qcint)prog->builtins_count && prog->builtins[builtinnumber])
1374                     prog->builtins[builtinnumber](prog);
1375                 else
1376                     qcvmerror(prog, "No such builtin #%i in %s! Try updating your gmqcc sources",
1377                               builtinnumber, prog->filename);
1378             }
1379             else
1380                 st = prog->code + prog_enterfunction(prog, newf) - 1; /* offset st++ */
1381             if (prog->vmerror)
1382                 goto cleanup;
1383             break;
1384
1385         case INSTR_STATE:
1386             qcvmerror(prog, "`%s` tried to execute a STATE operation", prog->filename);
1387             break;
1388
1389         case INSTR_GOTO:
1390             st += st->o1.s1 - 1;    /* offset the s++ */
1391             if (++jumpcount == 10000000)
1392                 qcvmerror(prog, "`%s` hit the runaway loop counter limit of %li jumps", prog->filename, jumpcount);
1393             break;
1394
1395         case INSTR_AND:
1396             OPC->_float = FLOAT_IS_TRUE_FOR_INT(OPA->_int) &&
1397                           FLOAT_IS_TRUE_FOR_INT(OPB->_int);
1398             break;
1399         case INSTR_OR:
1400             OPC->_float = FLOAT_IS_TRUE_FOR_INT(OPA->_int) ||
1401                           FLOAT_IS_TRUE_FOR_INT(OPB->_int);
1402             break;
1403
1404         case INSTR_BITAND:
1405             OPC->_float = ((int)OPA->_float) & ((int)OPB->_float);
1406             break;
1407         case INSTR_BITOR:
1408             OPC->_float = ((int)OPA->_float) | ((int)OPB->_float);
1409             break;
1410     }
1411 }
1412
1413 #undef QCVM_PROFILE
1414 #undef QCVM_TRACE
1415 #endif /* !QCVM_LOOP */