]> git.xonotic.org Git - xonotic/gmqcc.git/blob - exec.c
Cleanups and make compile with clang again with no warnings.
[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         }
564         case (VMXF_TRACE):
565         {
566 #define QCVM_PROFILE 0
567 #define QCVM_TRACE   1
568 #           include __FILE__
569         }
570         case (VMXF_PROFILE):
571         {
572 #define QCVM_PROFILE 1
573 #define QCVM_TRACE   0
574 #           include __FILE__
575         }
576         case (VMXF_TRACE|VMXF_PROFILE):
577         {
578 #define QCVM_PROFILE 1
579 #define QCVM_TRACE   1
580 #           include __FILE__
581         }
582     };
583
584 cleanup:
585     prog->xflags = oldxflags;
586     vec_free(prog->localstack);
587     vec_free(prog->stack);
588     if (prog->vmerror)
589         return false;
590     return true;
591 }
592
593 /***********************************************************************
594  * main for when building the standalone executor
595  */
596
597 #if defined(QCVM_EXECUTOR)
598 #include <math.h>
599
600 opts_cmd_t opts;
601
602 const char *type_name[TYPE_COUNT] = {
603     "void",
604     "string",
605     "float",
606     "vector",
607     "entity",
608     "field",
609     "function",
610     "pointer",
611 #if 0
612     "integer",
613 #endif
614     "variant"
615 };
616
617 typedef struct {
618     int         vtype;
619     const char *value;
620 } qcvm_parameter;
621
622 qcvm_parameter *main_params = NULL;
623
624 #define CheckArgs(num) do {                                                    \
625     if (prog->argc != (num)) {                                                 \
626         prog->vmerror++;                                                       \
627         printf("ERROR: invalid number of arguments for %s: %i, expected %i\n", \
628         __FUNCTION__, prog->argc, (num));                                      \
629         return -1;                                                             \
630     }                                                                          \
631 } while (0)
632
633 #define GetGlobal(idx) ((qcany*)(prog->globals + (idx)))
634 #define GetArg(num) GetGlobal(OFS_PARM0 + 3*(num))
635 #define Return(any) *(GetGlobal(OFS_RETURN)) = (any)
636
637 static int qc_print(qc_program *prog)
638 {
639     size_t i;
640     const char *laststr = NULL;
641     for (i = 0; i < (size_t)prog->argc; ++i) {
642         qcany *str = (qcany*)(prog->globals + OFS_PARM0 + 3*i);
643         laststr = prog_getstring(prog, str->string);
644         printf("%s", laststr);
645     }
646     if (laststr && (prog->xflags & VMXF_TRACE)) {
647         size_t len = strlen(laststr);
648         if (!len || laststr[len-1] != '\n')
649             printf("\n");
650     }
651     return 0;
652 }
653
654 static int qc_error(qc_program *prog)
655 {
656     printf("*** VM raised an error:\n");
657     qc_print(prog);
658     prog->vmerror++;
659     return -1;
660 }
661
662 static int qc_ftos(qc_program *prog)
663 {
664     char buffer[512];
665     qcany *num;
666     qcany str;
667     CheckArgs(1);
668     num = GetArg(0);
669     snprintf(buffer, sizeof(buffer), "%g", num->_float);
670     str.string = prog_tempstring(prog, buffer);
671     Return(str);
672     return 0;
673 }
674
675 static int qc_stof(qc_program *prog)
676 {
677     qcany *str;
678     qcany num;
679     CheckArgs(1);
680     str = GetArg(0);
681     num._float = strtof(prog_getstring(prog, str->string), NULL);
682     Return(num);
683     return 0;
684 }
685
686 static int qc_vtos(qc_program *prog)
687 {
688     char buffer[512];
689     qcany *num;
690     qcany str;
691     CheckArgs(1);
692     num = GetArg(0);
693     snprintf(buffer, sizeof(buffer), "'%g %g %g'", num->vector[0], num->vector[1], num->vector[2]);
694     str.string = prog_tempstring(prog, buffer);
695     Return(str);
696     return 0;
697 }
698
699 static int qc_etos(qc_program *prog)
700 {
701     char buffer[512];
702     qcany *num;
703     qcany str;
704     CheckArgs(1);
705     num = GetArg(0);
706     snprintf(buffer, sizeof(buffer), "%i", num->_int);
707     str.string = prog_tempstring(prog, buffer);
708     Return(str);
709     return 0;
710 }
711
712 static int qc_spawn(qc_program *prog)
713 {
714     qcany ent;
715     CheckArgs(0);
716     ent.edict = prog_spawn_entity(prog);
717     Return(ent);
718     return (ent.edict ? 0 : -1);
719 }
720
721 static int qc_kill(qc_program *prog)
722 {
723     qcany *ent;
724     CheckArgs(1);
725     ent = GetArg(0);
726     prog_free_entity(prog, ent->edict);
727     return 0;
728 }
729
730 static int qc_vlen(qc_program *prog)
731 {
732     qcany *vec, len;
733     CheckArgs(1);
734     vec = GetArg(0);
735     len._float = sqrt(vec->vector[0] * vec->vector[0] +
736                       vec->vector[1] * vec->vector[1] +
737                       vec->vector[2] * vec->vector[2]);
738     Return(len);
739     return 0;
740 }
741
742 static prog_builtin qc_builtins[] = {
743     NULL,
744     &qc_print, /*   1   */
745     &qc_ftos,  /*   2   */
746     &qc_spawn, /*   3   */
747     &qc_kill,  /*   4   */
748     &qc_vtos,  /*   5   */
749     &qc_error, /*   6   */
750     &qc_vlen,  /*   7   */
751     &qc_etos,  /*   8   */
752     &qc_stof   /*   9   */
753 };
754 static size_t qc_builtins_count = sizeof(qc_builtins) / sizeof(qc_builtins[0]);
755
756 static const char *arg0 = NULL;
757
758 static void version() {
759     printf("GMQCC-QCVM %d.%d.%d Built %s %s\n",
760            GMQCC_VERSION_MAJOR,
761            GMQCC_VERSION_MINOR,
762            GMQCC_VERSION_PATCH,
763            __DATE__,
764            __TIME__
765     );
766 }
767
768 static void usage()
769 {
770     printf("usage: %s [options] [parameters] file\n", arg0);
771     printf("options:\n");
772     printf("  -h, --help    print this message\n"
773            "  -trace        trace the execution\n"
774            "  -profile      perform profiling during execution\n"
775            "  -info         print information from the prog's header\n"
776            "  -disasm       disassemble and exit\n"
777            "  -printdefs    list the defs section\n"
778            "  -printfields  list the field section\n"
779            "  -printfuns    list functions information\n");
780     printf("parameters:\n");
781     printf("  -vector <V>   pass a vector parameter to main()\n"
782            "  -float  <f>   pass a float parameter to main()\n"
783            "  -string <s>   pass a string parameter to main() \n");
784 }
785
786 static void prog_main_setparams(qc_program *prog)
787 {
788     size_t i;
789     qcany *arg;
790
791     for (i = 0; i < vec_size(main_params); ++i) {
792         arg = GetGlobal(OFS_PARM0 + 3*i);
793         arg->vector[0] = 0;
794         arg->vector[1] = 0;
795         arg->vector[2] = 0;
796         switch (main_params[i].vtype) {
797             case TYPE_VECTOR:
798 #ifdef _MSC_VER
799                 (void)sscanf_s(main_params[i].value, " %f %f %f ",
800                                &arg->vector[0],
801                                &arg->vector[1],
802                                &arg->vector[2]);
803 #else
804                 (void)sscanf(main_params[i].value, " %f %f %f ",
805                              &arg->vector[0],
806                              &arg->vector[1],
807                              &arg->vector[2]);
808 #endif
809                 break;
810             case TYPE_FLOAT:
811                 arg->_float = atof(main_params[i].value);
812                 break;
813             case TYPE_STRING:
814                 arg->string = prog_tempstring(prog, main_params[i].value);
815                 break;
816             default:
817                 printf("error: unhandled parameter type: %i\n", main_params[i].vtype);
818                 break;
819         }
820     }
821 }
822
823 void prog_disasm_function(qc_program *prog, size_t id);
824 int main(int argc, char **argv)
825 {
826     size_t      i;
827     qcint       fnmain = -1;
828     qc_program *prog;
829     size_t      xflags = VMXF_DEFAULT;
830     bool        opts_printfields = false;
831     bool        opts_printdefs   = false;
832     bool        opts_printfuns   = false;
833     bool        opts_disasm      = false;
834     bool        opts_info        = false;
835     bool        noexec           = false;
836     const char *progsfile        = NULL;
837
838     arg0 = argv[0];
839
840     if (argc < 2) {
841         usage();
842         exit(1);
843     }
844
845     while (argc > 1) {
846         if (!strcmp(argv[1], "-h") ||
847             !strcmp(argv[1], "-help") ||
848             !strcmp(argv[1], "--help"))
849         {
850             usage();
851             exit(0);
852         }
853         else if (!strcmp(argv[1], "-v") ||
854                  !strcmp(argv[1], "-version") ||
855                  !strcmp(argv[1], "--version"))
856         {
857             version();
858             exit(0);
859         }
860         else if (!strcmp(argv[1], "-trace")) {
861             --argc;
862             ++argv;
863             xflags |= VMXF_TRACE;
864         }
865         else if (!strcmp(argv[1], "-profile")) {
866             --argc;
867             ++argv;
868             xflags |= VMXF_PROFILE;
869         }
870         else if (!strcmp(argv[1], "-info")) {
871             --argc;
872             ++argv;
873             opts_info = true;
874             noexec = true;
875         }
876         else if (!strcmp(argv[1], "-disasm")) {
877             --argc;
878             ++argv;
879             opts_disasm = true;
880             noexec = true;
881         }
882         else if (!strcmp(argv[1], "-printdefs")) {
883             --argc;
884             ++argv;
885             opts_printdefs = true;
886             noexec = true;
887         }
888         else if (!strcmp(argv[1], "-printfuns")) {
889             --argc;
890             ++argv;
891             opts_printfuns = true;
892             noexec = true;
893         }
894         else if (!strcmp(argv[1], "-printfields")) {
895             --argc;
896             ++argv;
897             opts_printfields = true;
898             noexec = true;
899         }
900         else if (!strcmp(argv[1], "-vector") ||
901                  !strcmp(argv[1], "-string") ||
902                  !strcmp(argv[1], "-float") )
903         {
904             qcvm_parameter p;
905             if (argv[1][1] == 'f')
906                 p.vtype = TYPE_FLOAT;
907             else if (argv[1][1] == 's')
908                 p.vtype = TYPE_STRING;
909             else if (argv[1][1] == 'v')
910                 p.vtype = TYPE_VECTOR;
911
912             --argc;
913             ++argv;
914             if (argc < 3) {
915                 usage();
916                 exit(1);
917             }
918             p.value = argv[1];
919
920             vec_push(main_params, p);
921             --argc;
922             ++argv;
923         }
924         else if (!strcmp(argv[1], "--")) {
925             --argc;
926             ++argv;
927             break;
928         }
929         else if (argv[1][0] != '-') {
930             if (progsfile) {
931                 printf("only 1 program file may be specified\n");
932                 usage();
933                 exit(1);
934             }
935             progsfile = argv[1];
936             --argc;
937             ++argv;
938         }
939         else
940         {
941             usage();
942             exit(1);
943         }
944     }
945
946     if (argc > 2) {
947         usage();
948         exit(1);
949     }
950     if (argc > 1) {
951         if (progsfile) {
952             printf("only 1 program file may be specified\n");
953             usage();
954             exit(1);
955         }
956         progsfile = argv[1];
957         --argc;
958         ++argv;
959     }
960
961     if (!progsfile) {
962         usage();
963         exit(1);
964     }
965
966     prog = prog_load(progsfile);
967     if (!prog) {
968         printf("failed to load program '%s'\n", progsfile);
969         exit(1);
970     }
971
972     prog->builtins       = qc_builtins;
973     prog->builtins_count = qc_builtins_count;
974
975     if (opts_info) {
976         printf("Program's system-checksum = 0x%04x\n", (unsigned int)prog->crc16);
977         printf("Entity field space: %u\n", (unsigned int)prog->entityfields);
978         printf("Globals: %u\n", (unsigned int)vec_size(prog->globals));
979     }
980
981     if (opts_info) {
982         prog_delete(prog);
983         return 0;
984     }
985     if (opts_disasm) {
986         for (i = 1; i < vec_size(prog->functions); ++i)
987             prog_disasm_function(prog, i);
988         return 0;
989     }
990     if (opts_printdefs) {
991         for (i = 0; i < vec_size(prog->defs); ++i) {
992             printf("Global: %8s %-16s at %u%s\n",
993                    type_name[prog->defs[i].type & DEF_TYPEMASK],
994                    prog_getstring(prog, prog->defs[i].name),
995                    (unsigned int)prog->defs[i].offset,
996                    ((prog->defs[i].type & DEF_SAVEGLOBAL) ? " [SAVE]" : ""));
997         }
998     }
999     if (opts_printfields) {
1000         for (i = 0; i < vec_size(prog->fields); ++i) {
1001             printf("Field: %8s %-16s at %u%s\n",
1002                    type_name[prog->fields[i].type],
1003                    prog_getstring(prog, prog->fields[i].name),
1004                    (unsigned int)prog->fields[i].offset,
1005                    ((prog->fields[i].type & DEF_SAVEGLOBAL) ? " [SAVE]" : ""));
1006         }
1007     }
1008     if (opts_printfuns) {
1009         for (i = 0; i < vec_size(prog->functions); ++i) {
1010             int32_t a;
1011             printf("Function: %-16s taking %i parameters:(",
1012                    prog_getstring(prog, prog->functions[i].name),
1013                    (unsigned int)prog->functions[i].nargs);
1014             for (a = 0; a < prog->functions[i].nargs; ++a) {
1015                 printf(" %i", prog->functions[i].argsize[a]);
1016             }
1017             printf(") locals: %i + %i\n",
1018                    prog->functions[i].firstlocal,
1019                    prog->functions[i].locals);
1020         }
1021     }
1022     if (!noexec) {
1023         for (i = 1; i < vec_size(prog->functions); ++i) {
1024             const char *name = prog_getstring(prog, prog->functions[i].name);
1025             if (!strcmp(name, "main"))
1026                 fnmain = (qcint)i;
1027         }
1028         if (fnmain > 0)
1029         {
1030             prog_main_setparams(prog);
1031             prog_exec(prog, &prog->functions[fnmain], xflags, VM_JUMPS_DEFAULT);
1032         }
1033         else
1034             printf("No main function found\n");
1035     }
1036
1037     prog_delete(prog);
1038     return 0;
1039 }
1040
1041 void prog_disasm_function(qc_program *prog, size_t id)
1042 {
1043     prog_section_function *fdef = prog->functions + id;
1044     prog_section_statement *st;
1045
1046     if (fdef->entry < 0) {
1047         printf("FUNCTION \"%s\" = builtin #%i\n", prog_getstring(prog, fdef->name), (int)-fdef->entry);
1048         return;
1049     }
1050     else
1051         printf("FUNCTION \"%s\"\n", prog_getstring(prog, fdef->name));
1052
1053     st = prog->code + fdef->entry;
1054     while (st->opcode != INSTR_DONE) {
1055         prog_print_statement(prog, st);
1056         ++st;
1057     }
1058 }
1059 #endif
1060 #else /* !QCVM_LOOP */
1061 /*
1062  * Everything from here on is not including into the compilation of the
1063  * executor.  This is simply code that is #included via #include __FILE__
1064  * see when QCVM_LOOP is defined, the rest of the code above do not get
1065  * re-included.  So this really just acts like one large macro, but it
1066  * sort of isn't, which makes it nicer looking.
1067  */
1068
1069 #define OPA ( (qcany*) (prog->globals + st->o1.u1) )
1070 #define OPB ( (qcany*) (prog->globals + st->o2.u1) )
1071 #define OPC ( (qcany*) (prog->globals + st->o3.u1) )
1072
1073 #define GLOBAL(x) ( (qcany*) (prog->globals + (x)) )
1074
1075 /* to be consistent with current darkplaces behaviour */
1076 #if !defined(FLOAT_IS_TRUE_FOR_INT)
1077 #   define FLOAT_IS_TRUE_FOR_INT(x) ( (x) & 0x7FFFFFFF )
1078 #endif
1079
1080 while (1) {
1081     prog_section_function  *newf;
1082     qcany          *ed;
1083     qcany          *ptr;
1084
1085     ++st;
1086
1087 #if QCVM_PROFILE
1088     prog->profile[st - prog->code]++;
1089 #endif
1090
1091 #if QCVM_TRACE
1092     prog_print_statement(prog, st);
1093 #endif
1094
1095     switch (st->opcode)
1096     {
1097         default:
1098             qcvmerror(prog, "Illegal instruction in %s\n", prog->filename);
1099             goto cleanup;
1100
1101         case INSTR_DONE:
1102         case INSTR_RETURN:
1103             /* TODO: add instruction count to function profile count */
1104             GLOBAL(OFS_RETURN)->ivector[0] = OPA->ivector[0];
1105             GLOBAL(OFS_RETURN)->ivector[1] = OPA->ivector[1];
1106             GLOBAL(OFS_RETURN)->ivector[2] = OPA->ivector[2];
1107
1108             st = prog->code + prog_leavefunction(prog);
1109             if (!vec_size(prog->stack))
1110                 goto cleanup;
1111
1112             break;
1113
1114         case INSTR_MUL_F:
1115             OPC->_float = OPA->_float * OPB->_float;
1116             break;
1117         case INSTR_MUL_V:
1118             OPC->_float = OPA->vector[0]*OPB->vector[0] +
1119                           OPA->vector[1]*OPB->vector[1] +
1120                           OPA->vector[2]*OPB->vector[2];
1121             break;
1122         case INSTR_MUL_FV:
1123             OPC->vector[0] = OPA->_float * OPB->vector[0];
1124             OPC->vector[1] = OPA->_float * OPB->vector[1];
1125             OPC->vector[2] = OPA->_float * OPB->vector[2];
1126             break;
1127         case INSTR_MUL_VF:
1128             OPC->vector[0] = OPB->_float * OPA->vector[0];
1129             OPC->vector[1] = OPB->_float * OPA->vector[1];
1130             OPC->vector[2] = OPB->_float * OPA->vector[2];
1131             break;
1132         case INSTR_DIV_F:
1133             if (OPB->_float != 0.0f)
1134                 OPC->_float = OPA->_float / OPB->_float;
1135             else
1136                 OPC->_float = 0;
1137             break;
1138
1139         case INSTR_ADD_F:
1140             OPC->_float = OPA->_float + OPB->_float;
1141             break;
1142         case INSTR_ADD_V:
1143             OPC->vector[0] = OPA->vector[0] + OPB->vector[0];
1144             OPC->vector[1] = OPA->vector[1] + OPB->vector[1];
1145             OPC->vector[2] = OPA->vector[2] + OPB->vector[2];
1146             break;
1147         case INSTR_SUB_F:
1148             OPC->_float = OPA->_float - OPB->_float;
1149             break;
1150         case INSTR_SUB_V:
1151             OPC->vector[0] = OPA->vector[0] - OPB->vector[0];
1152             OPC->vector[1] = OPA->vector[1] - OPB->vector[1];
1153             OPC->vector[2] = OPA->vector[2] - OPB->vector[2];
1154             break;
1155
1156         case INSTR_EQ_F:
1157             OPC->_float = (OPA->_float == OPB->_float);
1158             break;
1159         case INSTR_EQ_V:
1160             OPC->_float = ((OPA->vector[0] == OPB->vector[0]) &&
1161                            (OPA->vector[1] == OPB->vector[1]) &&
1162                            (OPA->vector[2] == OPB->vector[2]) );
1163             break;
1164         case INSTR_EQ_S:
1165             OPC->_float = !strcmp(prog_getstring(prog, OPA->string),
1166                                   prog_getstring(prog, OPB->string));
1167             break;
1168         case INSTR_EQ_E:
1169             OPC->_float = (OPA->_int == OPB->_int);
1170             break;
1171         case INSTR_EQ_FNC:
1172             OPC->_float = (OPA->function == OPB->function);
1173             break;
1174         case INSTR_NE_F:
1175             OPC->_float = (OPA->_float != OPB->_float);
1176             break;
1177         case INSTR_NE_V:
1178             OPC->_float = ((OPA->vector[0] != OPB->vector[0]) ||
1179                            (OPA->vector[1] != OPB->vector[1]) ||
1180                            (OPA->vector[2] != OPB->vector[2]) );
1181             break;
1182         case INSTR_NE_S:
1183             OPC->_float = !!strcmp(prog_getstring(prog, OPA->string),
1184                                    prog_getstring(prog, OPB->string));
1185             break;
1186         case INSTR_NE_E:
1187             OPC->_float = (OPA->_int != OPB->_int);
1188             break;
1189         case INSTR_NE_FNC:
1190             OPC->_float = (OPA->function != OPB->function);
1191             break;
1192
1193         case INSTR_LE:
1194             OPC->_float = (OPA->_float <= OPB->_float);
1195             break;
1196         case INSTR_GE:
1197             OPC->_float = (OPA->_float >= OPB->_float);
1198             break;
1199         case INSTR_LT:
1200             OPC->_float = (OPA->_float < OPB->_float);
1201             break;
1202         case INSTR_GT:
1203             OPC->_float = (OPA->_float > OPB->_float);
1204             break;
1205
1206         case INSTR_LOAD_F:
1207         case INSTR_LOAD_S:
1208         case INSTR_LOAD_FLD:
1209         case INSTR_LOAD_ENT:
1210         case INSTR_LOAD_FNC:
1211             if (OPA->edict < 0 || OPA->edict >= prog->entities) {
1212                 qcvmerror(prog, "progs `%s` attempted to read an out of bounds entity", prog->filename);
1213                 goto cleanup;
1214             }
1215             if ((unsigned int)(OPB->_int) >= (unsigned int)(prog->entityfields)) {
1216                 qcvmerror(prog, "prog `%s` attempted to read an invalid field from entity (%i)",
1217                           prog->filename,
1218                           OPB->_int);
1219                 goto cleanup;
1220             }
1221             ed = prog_getedict(prog, OPA->edict);
1222             OPC->_int = ((qcany*)( ((qcint*)ed) + OPB->_int ))->_int;
1223             break;
1224         case INSTR_LOAD_V:
1225             if (OPA->edict < 0 || OPA->edict >= prog->entities) {
1226                 qcvmerror(prog, "progs `%s` attempted to read an out of bounds entity", prog->filename);
1227                 goto cleanup;
1228             }
1229             if (OPB->_int < 0 || OPB->_int + 3 > (qcint)prog->entityfields)
1230             {
1231                 qcvmerror(prog, "prog `%s` attempted to read an invalid field from entity (%i)",
1232                           prog->filename,
1233                           OPB->_int + 2);
1234                 goto cleanup;
1235             }
1236             ed = prog_getedict(prog, OPA->edict);
1237             OPC->ivector[0] = ((qcany*)( ((qcint*)ed) + OPB->_int ))->ivector[0];
1238             OPC->ivector[1] = ((qcany*)( ((qcint*)ed) + OPB->_int ))->ivector[1];
1239             OPC->ivector[2] = ((qcany*)( ((qcint*)ed) + OPB->_int ))->ivector[2];
1240             break;
1241
1242         case INSTR_ADDRESS:
1243             if (OPA->edict < 0 || OPA->edict >= prog->entities) {
1244                 qcvmerror(prog, "prog `%s` attempted to address an out of bounds entity %i", prog->filename, OPA->edict);
1245                 goto cleanup;
1246             }
1247             if ((unsigned int)(OPB->_int) >= (unsigned int)(prog->entityfields))
1248             {
1249                 qcvmerror(prog, "prog `%s` attempted to read an invalid field from entity (%i)",
1250                           prog->filename,
1251                           OPB->_int);
1252                 goto cleanup;
1253             }
1254
1255             ed = prog_getedict(prog, OPA->edict);
1256             OPC->_int = ((qcint*)ed) - prog->entitydata + OPB->_int;
1257             break;
1258
1259         case INSTR_STORE_F:
1260         case INSTR_STORE_S:
1261         case INSTR_STORE_ENT:
1262         case INSTR_STORE_FLD:
1263         case INSTR_STORE_FNC:
1264             OPB->_int = OPA->_int;
1265             break;
1266         case INSTR_STORE_V:
1267             OPB->ivector[0] = OPA->ivector[0];
1268             OPB->ivector[1] = OPA->ivector[1];
1269             OPB->ivector[2] = OPA->ivector[2];
1270             break;
1271
1272         case INSTR_STOREP_F:
1273         case INSTR_STOREP_S:
1274         case INSTR_STOREP_ENT:
1275         case INSTR_STOREP_FLD:
1276         case INSTR_STOREP_FNC:
1277             if (OPB->_int < 0 || OPB->_int >= (qcint)vec_size(prog->entitydata)) {
1278                 qcvmerror(prog, "`%s` attempted to write to an out of bounds edict (%i)", prog->filename, OPB->_int);
1279                 goto cleanup;
1280             }
1281             if (OPB->_int < (qcint)prog->entityfields && !prog->allowworldwrites)
1282                 qcvmerror(prog, "`%s` tried to assign to world.%s (field %i)\n",
1283                           prog->filename,
1284                           prog_getstring(prog, prog_entfield(prog, OPB->_int)->name),
1285                           OPB->_int);
1286             ptr = (qcany*)(prog->entitydata + OPB->_int);
1287             ptr->_int = OPA->_int;
1288             break;
1289         case INSTR_STOREP_V:
1290             if (OPB->_int < 0 || OPB->_int + 2 >= (qcint)vec_size(prog->entitydata)) {
1291                 qcvmerror(prog, "`%s` attempted to write to an out of bounds edict (%i)", prog->filename, OPB->_int);
1292                 goto cleanup;
1293             }
1294             if (OPB->_int < (qcint)prog->entityfields && !prog->allowworldwrites)
1295                 qcvmerror(prog, "`%s` tried to assign to world.%s (field %i)\n",
1296                           prog->filename,
1297                           prog_getstring(prog, prog_entfield(prog, OPB->_int)->name),
1298                           OPB->_int);
1299             ptr = (qcany*)(prog->entitydata + OPB->_int);
1300             ptr->ivector[0] = OPA->ivector[0];
1301             ptr->ivector[1] = OPA->ivector[1];
1302             ptr->ivector[2] = OPA->ivector[2];
1303             break;
1304
1305         case INSTR_NOT_F:
1306             OPC->_float = !FLOAT_IS_TRUE_FOR_INT(OPA->_int);
1307             break;
1308         case INSTR_NOT_V:
1309             OPC->_float = !OPA->vector[0] &&
1310                           !OPA->vector[1] &&
1311                           !OPA->vector[2];
1312             break;
1313         case INSTR_NOT_S:
1314             OPC->_float = !OPA->string ||
1315                           !*prog_getstring(prog, OPA->string);
1316             break;
1317         case INSTR_NOT_ENT:
1318             OPC->_float = (OPA->edict == 0);
1319             break;
1320         case INSTR_NOT_FNC:
1321             OPC->_float = !OPA->function;
1322             break;
1323
1324         case INSTR_IF:
1325             /* this is consistent with darkplaces' behaviour */
1326             if(FLOAT_IS_TRUE_FOR_INT(OPA->_int))
1327             {
1328                 st += st->o2.s1 - 1;    /* offset the s++ */
1329                 if (++jumpcount >= maxjumps)
1330                     qcvmerror(prog, "`%s` hit the runaway loop counter limit of %li jumps", prog->filename, jumpcount);
1331             }
1332             break;
1333         case INSTR_IFNOT:
1334             if(!FLOAT_IS_TRUE_FOR_INT(OPA->_int))
1335             {
1336                 st += st->o2.s1 - 1;    /* offset the s++ */
1337                 if (++jumpcount >= maxjumps)
1338                     qcvmerror(prog, "`%s` hit the runaway loop counter limit of %li jumps", prog->filename, jumpcount);
1339             }
1340             break;
1341
1342         case INSTR_CALL0:
1343         case INSTR_CALL1:
1344         case INSTR_CALL2:
1345         case INSTR_CALL3:
1346         case INSTR_CALL4:
1347         case INSTR_CALL5:
1348         case INSTR_CALL6:
1349         case INSTR_CALL7:
1350         case INSTR_CALL8:
1351             prog->argc = st->opcode - INSTR_CALL0;
1352             if (!OPA->function)
1353                 qcvmerror(prog, "NULL function in `%s`", prog->filename);
1354
1355             if(!OPA->function || OPA->function >= (qcint)vec_size(prog->functions))
1356             {
1357                 qcvmerror(prog, "CALL outside the program in `%s`", prog->filename);
1358                 goto cleanup;
1359             }
1360
1361             newf = &prog->functions[OPA->function];
1362             newf->profile++;
1363
1364             prog->statement = (st - prog->code) + 1;
1365
1366             if (newf->entry < 0)
1367             {
1368                 /* negative statements are built in functions */
1369                 qcint builtinnumber = -newf->entry;
1370                 if (builtinnumber < (qcint)prog->builtins_count && prog->builtins[builtinnumber])
1371                     prog->builtins[builtinnumber](prog);
1372                 else
1373                     qcvmerror(prog, "No such builtin #%i in %s! Try updating your gmqcc sources",
1374                               builtinnumber, prog->filename);
1375             }
1376             else
1377                 st = prog->code + prog_enterfunction(prog, newf) - 1; /* offset st++ */
1378             if (prog->vmerror)
1379                 goto cleanup;
1380             break;
1381
1382         case INSTR_STATE:
1383             qcvmerror(prog, "`%s` tried to execute a STATE operation", prog->filename);
1384             break;
1385
1386         case INSTR_GOTO:
1387             st += st->o1.s1 - 1;    /* offset the s++ */
1388             if (++jumpcount == 10000000)
1389                 qcvmerror(prog, "`%s` hit the runaway loop counter limit of %li jumps", prog->filename, jumpcount);
1390             break;
1391
1392         case INSTR_AND:
1393             OPC->_float = FLOAT_IS_TRUE_FOR_INT(OPA->_int) &&
1394                           FLOAT_IS_TRUE_FOR_INT(OPB->_int);
1395             break;
1396         case INSTR_OR:
1397             OPC->_float = FLOAT_IS_TRUE_FOR_INT(OPA->_int) ||
1398                           FLOAT_IS_TRUE_FOR_INT(OPB->_int);
1399             break;
1400
1401         case INSTR_BITAND:
1402             OPC->_float = ((int)OPA->_float) & ((int)OPB->_float);
1403             break;
1404         case INSTR_BITOR:
1405             OPC->_float = ((int)OPA->_float) | ((int)OPB->_float);
1406             break;
1407     }
1408 }
1409
1410 #undef QCVM_PROFILE
1411 #undef QCVM_TRACE
1412 #endif /* !QCVM_LOOP */