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