]> de.git.xonotic.org Git - xonotic/gmqcc.git/blob - exec.c
added -disasm-func to the qcvm
[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 int qc_strcat(qc_program *prog)
748 {
749     char  *buffer;
750     size_t len1,   len2;
751     char  *cstr1, *cstr2;
752     qcany *str1,  *str2;
753     qcany  out;
754
755     CheckArgs(2);
756     str1 = GetArg(0);
757     str2 = GetArg(1);
758     cstr1 = prog_getstring(prog, str1->string);
759     cstr2 = prog_getstring(prog, str2->string);
760     len1 = strlen(cstr1);
761     len2 = strlen(cstr2);
762     buffer = (char*)mem_a(len1 + len2 + 1);
763     memcpy(buffer, cstr1, len1);
764     memcpy(buffer+len1, cstr2, len2+1);
765     out.string = prog_tempstring(prog, buffer);
766     mem_d(buffer);
767     Return(out);
768     return 0;
769 }
770
771 static int qc_strcmp(qc_program *prog)
772 {
773     char  *cstr1, *cstr2;
774     qcany *str1,  *str2;
775     qcany out;
776
777     if (prog->argc != 2 && prog->argc != 3) {
778         printf("ERROR: invalid number of arguments for strcmp/strncmp: %i, expected 2 or 3\n",
779                prog->argc);
780         return -1;
781     }
782
783     str1 = GetArg(0);
784     str2 = GetArg(1);
785     cstr1 = prog_getstring(prog, str1->string);
786     cstr2 = prog_getstring(prog, str2->string);
787     if (prog->argc == 3)
788         out._float = strncmp(cstr1, cstr2, GetArg(2)->_float);
789     else
790         out._float = strcmp(cstr1, cstr2);
791     Return(out);
792     return 0;
793 }
794
795 static prog_builtin qc_builtins[] = {
796     NULL,
797     &qc_print,  /*   1   */
798     &qc_ftos,   /*   2   */
799     &qc_spawn,  /*   3   */
800     &qc_kill,   /*   4   */
801     &qc_vtos,   /*   5   */
802     &qc_error,  /*   6   */
803     &qc_vlen,   /*   7   */
804     &qc_etos,   /*   8   */
805     &qc_stof,   /*   9   */
806     &qc_strcat, /*   10  */
807     &qc_strcmp  /*   11  */
808 };
809 static size_t qc_builtins_count = sizeof(qc_builtins) / sizeof(qc_builtins[0]);
810
811 static const char *arg0 = NULL;
812
813 static void version() {
814     printf("GMQCC-QCVM %d.%d.%d Built %s %s\n",
815            GMQCC_VERSION_MAJOR,
816            GMQCC_VERSION_MINOR,
817            GMQCC_VERSION_PATCH,
818            __DATE__,
819            __TIME__
820     );
821 }
822
823 static void usage()
824 {
825     printf("usage: %s [options] [parameters] file\n", arg0);
826     printf("options:\n");
827     printf("  -h, --help         print this message\n"
828            "  -trace             trace the execution\n"
829            "  -profile           perform profiling during execution\n"
830            "  -info              print information from the prog's header\n"
831            "  -disasm            disassemble and exit\n"
832            "  -disasm-func func  disassemble and exit\n"
833            "  -printdefs         list the defs section\n"
834            "  -printfields       list the field section\n"
835            "  -printfuns         list functions information\n");
836     printf("parameters:\n");
837     printf("  -vector <V>   pass a vector parameter to main()\n"
838            "  -float  <f>   pass a float parameter to main()\n"
839            "  -string <s>   pass a string parameter to main() \n");
840 }
841
842 static void prog_main_setparams(qc_program *prog)
843 {
844     size_t i;
845     qcany *arg;
846
847     for (i = 0; i < vec_size(main_params); ++i) {
848         arg = GetGlobal(OFS_PARM0 + 3*i);
849         arg->vector[0] = 0;
850         arg->vector[1] = 0;
851         arg->vector[2] = 0;
852         switch (main_params[i].vtype) {
853             case TYPE_VECTOR:
854 #ifdef _MSC_VER
855                 (void)sscanf_s(main_params[i].value, " %f %f %f ",
856                                &arg->vector[0],
857                                &arg->vector[1],
858                                &arg->vector[2]);
859 #else
860                 (void)sscanf(main_params[i].value, " %f %f %f ",
861                              &arg->vector[0],
862                              &arg->vector[1],
863                              &arg->vector[2]);
864 #endif
865                 break;
866             case TYPE_FLOAT:
867                 arg->_float = atof(main_params[i].value);
868                 break;
869             case TYPE_STRING:
870                 arg->string = prog_tempstring(prog, main_params[i].value);
871                 break;
872             default:
873                 printf("error: unhandled parameter type: %i\n", main_params[i].vtype);
874                 break;
875         }
876     }
877 }
878
879 void prog_disasm_function(qc_program *prog, size_t id);
880 int main(int argc, char **argv)
881 {
882     size_t      i;
883     qcint       fnmain = -1;
884     qc_program *prog;
885     size_t      xflags = VMXF_DEFAULT;
886     bool        opts_printfields = false;
887     bool        opts_printdefs   = false;
888     bool        opts_printfuns   = false;
889     bool        opts_disasm      = false;
890     bool        opts_info        = false;
891     bool        noexec           = false;
892     const char *progsfile        = NULL;
893     const char **dis_list        = NULL;
894
895     arg0 = argv[0];
896
897     if (argc < 2) {
898         usage();
899         exit(1);
900     }
901
902     while (argc > 1) {
903         if (!strcmp(argv[1], "-h") ||
904             !strcmp(argv[1], "-help") ||
905             !strcmp(argv[1], "--help"))
906         {
907             usage();
908             exit(0);
909         }
910         else if (!strcmp(argv[1], "-v") ||
911                  !strcmp(argv[1], "-version") ||
912                  !strcmp(argv[1], "--version"))
913         {
914             version();
915             exit(0);
916         }
917         else if (!strcmp(argv[1], "-trace")) {
918             --argc;
919             ++argv;
920             xflags |= VMXF_TRACE;
921         }
922         else if (!strcmp(argv[1], "-profile")) {
923             --argc;
924             ++argv;
925             xflags |= VMXF_PROFILE;
926         }
927         else if (!strcmp(argv[1], "-info")) {
928             --argc;
929             ++argv;
930             opts_info = true;
931             noexec = true;
932         }
933         else if (!strcmp(argv[1], "-disasm")) {
934             --argc;
935             ++argv;
936             opts_disasm = true;
937             noexec = true;
938         }
939         else if (!strcmp(argv[1], "-disasm-func")) {
940             --argc;
941             ++argv;
942             if (argc <= 1) {
943                 usage();
944                 exit(1);
945             }
946             vec_push(dis_list, argv[1]);
947             --argc;
948             ++argv;
949             noexec = true;
950         }
951         else if (!strcmp(argv[1], "-printdefs")) {
952             --argc;
953             ++argv;
954             opts_printdefs = true;
955             noexec = true;
956         }
957         else if (!strcmp(argv[1], "-printfuns")) {
958             --argc;
959             ++argv;
960             opts_printfuns = true;
961             noexec = true;
962         }
963         else if (!strcmp(argv[1], "-printfields")) {
964             --argc;
965             ++argv;
966             opts_printfields = true;
967             noexec = true;
968         }
969         else if (!strcmp(argv[1], "-vector") ||
970                  !strcmp(argv[1], "-string") ||
971                  !strcmp(argv[1], "-float") )
972         {
973             qcvm_parameter p;
974             if (argv[1][1] == 'f')
975                 p.vtype = TYPE_FLOAT;
976             else if (argv[1][1] == 's')
977                 p.vtype = TYPE_STRING;
978             else if (argv[1][1] == 'v')
979                 p.vtype = TYPE_VECTOR;
980
981             --argc;
982             ++argv;
983             if (argc < 3) {
984                 usage();
985                 exit(1);
986             }
987             p.value = argv[1];
988
989             vec_push(main_params, p);
990             --argc;
991             ++argv;
992         }
993         else if (!strcmp(argv[1], "--")) {
994             --argc;
995             ++argv;
996             break;
997         }
998         else if (argv[1][0] != '-') {
999             if (progsfile) {
1000                 printf("only 1 program file may be specified\n");
1001                 usage();
1002                 exit(1);
1003             }
1004             progsfile = argv[1];
1005             --argc;
1006             ++argv;
1007         }
1008         else
1009         {
1010             usage();
1011             exit(1);
1012         }
1013     }
1014
1015     if (argc > 2) {
1016         usage();
1017         exit(1);
1018     }
1019     if (argc > 1) {
1020         if (progsfile) {
1021             printf("only 1 program file may be specified\n");
1022             usage();
1023             exit(1);
1024         }
1025         progsfile = argv[1];
1026         --argc;
1027         ++argv;
1028     }
1029
1030     if (!progsfile) {
1031         usage();
1032         exit(1);
1033     }
1034
1035     prog = prog_load(progsfile);
1036     if (!prog) {
1037         printf("failed to load program '%s'\n", progsfile);
1038         exit(1);
1039     }
1040
1041     prog->builtins       = qc_builtins;
1042     prog->builtins_count = qc_builtins_count;
1043
1044     if (opts_info) {
1045         printf("Program's system-checksum = 0x%04x\n", (unsigned int)prog->crc16);
1046         printf("Entity field space: %u\n", (unsigned int)prog->entityfields);
1047         printf("Globals: %u\n", (unsigned int)vec_size(prog->globals));
1048         printf("Counts:\n"
1049                "      code: %lu\n"
1050                "      defs: %lu\n"
1051                "    fields: %lu\n"
1052                " functions: %lu\n"
1053                "   strings: %lu\n",
1054                (unsigned long)vec_size(prog->code),
1055                (unsigned long)vec_size(prog->defs),
1056                (unsigned long)vec_size(prog->fields),
1057                (unsigned long)vec_size(prog->functions),
1058                (unsigned long)vec_size(prog->strings));
1059     }
1060
1061     if (opts_info) {
1062         prog_delete(prog);
1063         return 0;
1064     }
1065     for (i = 0; i < vec_size(dis_list); ++i) {
1066         size_t k;
1067         printf("Looking for `%s`\n", dis_list[i]);
1068         for (k = 1; k < vec_size(prog->functions); ++k) {
1069             const char *name = prog_getstring(prog, prog->functions[k].name);
1070             if (!strcmp(name, dis_list[i])) {
1071                 prog_disasm_function(prog, k);
1072                 break;
1073             }
1074         }
1075     }
1076     if (opts_disasm) {
1077         for (i = 1; i < vec_size(prog->functions); ++i)
1078             prog_disasm_function(prog, i);
1079         return 0;
1080     }
1081     if (opts_printdefs) {
1082         for (i = 0; i < vec_size(prog->defs); ++i) {
1083             printf("Global: %8s %-16s at %u%s\n",
1084                    type_name[prog->defs[i].type & DEF_TYPEMASK],
1085                    prog_getstring(prog, prog->defs[i].name),
1086                    (unsigned int)prog->defs[i].offset,
1087                    ((prog->defs[i].type & DEF_SAVEGLOBAL) ? " [SAVE]" : ""));
1088         }
1089     }
1090     if (opts_printfields) {
1091         for (i = 0; i < vec_size(prog->fields); ++i) {
1092             printf("Field: %8s %-16s at %u%s\n",
1093                    type_name[prog->fields[i].type],
1094                    prog_getstring(prog, prog->fields[i].name),
1095                    (unsigned int)prog->fields[i].offset,
1096                    ((prog->fields[i].type & DEF_SAVEGLOBAL) ? " [SAVE]" : ""));
1097         }
1098     }
1099     if (opts_printfuns) {
1100         for (i = 0; i < vec_size(prog->functions); ++i) {
1101             int32_t a;
1102             printf("Function: %-16s taking %i parameters:(",
1103                    prog_getstring(prog, prog->functions[i].name),
1104                    (unsigned int)prog->functions[i].nargs);
1105             for (a = 0; a < prog->functions[i].nargs; ++a) {
1106                 printf(" %i", prog->functions[i].argsize[a]);
1107             }
1108             printf(") locals: %i + %i\n",
1109                    prog->functions[i].firstlocal,
1110                    prog->functions[i].locals);
1111         }
1112     }
1113     if (!noexec) {
1114         for (i = 1; i < vec_size(prog->functions); ++i) {
1115             const char *name = prog_getstring(prog, prog->functions[i].name);
1116             if (!strcmp(name, "main"))
1117                 fnmain = (qcint)i;
1118         }
1119         if (fnmain > 0)
1120         {
1121             prog_main_setparams(prog);
1122             prog_exec(prog, &prog->functions[fnmain], xflags, VM_JUMPS_DEFAULT);
1123         }
1124         else
1125             printf("No main function found\n");
1126     }
1127
1128     prog_delete(prog);
1129     return 0;
1130 }
1131
1132 void prog_disasm_function(qc_program *prog, size_t id)
1133 {
1134     prog_section_function *fdef = prog->functions + id;
1135     prog_section_statement *st;
1136
1137     if (fdef->entry < 0) {
1138         printf("FUNCTION \"%s\" = builtin #%i\n", prog_getstring(prog, fdef->name), (int)-fdef->entry);
1139         return;
1140     }
1141     else
1142         printf("FUNCTION \"%s\"\n", prog_getstring(prog, fdef->name));
1143
1144     st = prog->code + fdef->entry;
1145     while (st->opcode != INSTR_DONE) {
1146         prog_print_statement(prog, st);
1147         ++st;
1148     }
1149 }
1150 #endif
1151 #else /* !QCVM_LOOP */
1152 /*
1153  * Everything from here on is not including into the compilation of the
1154  * executor.  This is simply code that is #included via #include __FILE__
1155  * see when QCVM_LOOP is defined, the rest of the code above do not get
1156  * re-included.  So this really just acts like one large macro, but it
1157  * sort of isn't, which makes it nicer looking.
1158  */
1159
1160 #define OPA ( (qcany*) (prog->globals + st->o1.u1) )
1161 #define OPB ( (qcany*) (prog->globals + st->o2.u1) )
1162 #define OPC ( (qcany*) (prog->globals + st->o3.u1) )
1163
1164 #define GLOBAL(x) ( (qcany*) (prog->globals + (x)) )
1165
1166 /* to be consistent with current darkplaces behaviour */
1167 #if !defined(FLOAT_IS_TRUE_FOR_INT)
1168 #   define FLOAT_IS_TRUE_FOR_INT(x) ( (x) & 0x7FFFFFFF )
1169 #endif
1170
1171 while (1) {
1172     prog_section_function  *newf;
1173     qcany          *ed;
1174     qcany          *ptr;
1175
1176     ++st;
1177
1178 #if QCVM_PROFILE
1179     prog->profile[st - prog->code]++;
1180 #endif
1181
1182 #if QCVM_TRACE
1183     prog_print_statement(prog, st);
1184 #endif
1185
1186     switch (st->opcode)
1187     {
1188         default:
1189             qcvmerror(prog, "Illegal instruction in %s\n", prog->filename);
1190             goto cleanup;
1191
1192         case INSTR_DONE:
1193         case INSTR_RETURN:
1194             /* TODO: add instruction count to function profile count */
1195             GLOBAL(OFS_RETURN)->ivector[0] = OPA->ivector[0];
1196             GLOBAL(OFS_RETURN)->ivector[1] = OPA->ivector[1];
1197             GLOBAL(OFS_RETURN)->ivector[2] = OPA->ivector[2];
1198
1199             st = prog->code + prog_leavefunction(prog);
1200             if (!vec_size(prog->stack))
1201                 goto cleanup;
1202
1203             break;
1204
1205         case INSTR_MUL_F:
1206             OPC->_float = OPA->_float * OPB->_float;
1207             break;
1208         case INSTR_MUL_V:
1209             OPC->_float = OPA->vector[0]*OPB->vector[0] +
1210                           OPA->vector[1]*OPB->vector[1] +
1211                           OPA->vector[2]*OPB->vector[2];
1212             break;
1213         case INSTR_MUL_FV:
1214             OPC->vector[0] = OPA->_float * OPB->vector[0];
1215             OPC->vector[1] = OPA->_float * OPB->vector[1];
1216             OPC->vector[2] = OPA->_float * OPB->vector[2];
1217             break;
1218         case INSTR_MUL_VF:
1219             OPC->vector[0] = OPB->_float * OPA->vector[0];
1220             OPC->vector[1] = OPB->_float * OPA->vector[1];
1221             OPC->vector[2] = OPB->_float * OPA->vector[2];
1222             break;
1223         case INSTR_DIV_F:
1224             if (OPB->_float != 0.0f)
1225                 OPC->_float = OPA->_float / OPB->_float;
1226             else
1227                 OPC->_float = 0;
1228             break;
1229
1230         case INSTR_ADD_F:
1231             OPC->_float = OPA->_float + OPB->_float;
1232             break;
1233         case INSTR_ADD_V:
1234             OPC->vector[0] = OPA->vector[0] + OPB->vector[0];
1235             OPC->vector[1] = OPA->vector[1] + OPB->vector[1];
1236             OPC->vector[2] = OPA->vector[2] + OPB->vector[2];
1237             break;
1238         case INSTR_SUB_F:
1239             OPC->_float = OPA->_float - OPB->_float;
1240             break;
1241         case INSTR_SUB_V:
1242             OPC->vector[0] = OPA->vector[0] - OPB->vector[0];
1243             OPC->vector[1] = OPA->vector[1] - OPB->vector[1];
1244             OPC->vector[2] = OPA->vector[2] - OPB->vector[2];
1245             break;
1246
1247         case INSTR_EQ_F:
1248             OPC->_float = (OPA->_float == OPB->_float);
1249             break;
1250         case INSTR_EQ_V:
1251             OPC->_float = ((OPA->vector[0] == OPB->vector[0]) &&
1252                            (OPA->vector[1] == OPB->vector[1]) &&
1253                            (OPA->vector[2] == OPB->vector[2]) );
1254             break;
1255         case INSTR_EQ_S:
1256             OPC->_float = !strcmp(prog_getstring(prog, OPA->string),
1257                                   prog_getstring(prog, OPB->string));
1258             break;
1259         case INSTR_EQ_E:
1260             OPC->_float = (OPA->_int == OPB->_int);
1261             break;
1262         case INSTR_EQ_FNC:
1263             OPC->_float = (OPA->function == OPB->function);
1264             break;
1265         case INSTR_NE_F:
1266             OPC->_float = (OPA->_float != OPB->_float);
1267             break;
1268         case INSTR_NE_V:
1269             OPC->_float = ((OPA->vector[0] != OPB->vector[0]) ||
1270                            (OPA->vector[1] != OPB->vector[1]) ||
1271                            (OPA->vector[2] != OPB->vector[2]) );
1272             break;
1273         case INSTR_NE_S:
1274             OPC->_float = !!strcmp(prog_getstring(prog, OPA->string),
1275                                    prog_getstring(prog, OPB->string));
1276             break;
1277         case INSTR_NE_E:
1278             OPC->_float = (OPA->_int != OPB->_int);
1279             break;
1280         case INSTR_NE_FNC:
1281             OPC->_float = (OPA->function != OPB->function);
1282             break;
1283
1284         case INSTR_LE:
1285             OPC->_float = (OPA->_float <= OPB->_float);
1286             break;
1287         case INSTR_GE:
1288             OPC->_float = (OPA->_float >= OPB->_float);
1289             break;
1290         case INSTR_LT:
1291             OPC->_float = (OPA->_float < OPB->_float);
1292             break;
1293         case INSTR_GT:
1294             OPC->_float = (OPA->_float > OPB->_float);
1295             break;
1296
1297         case INSTR_LOAD_F:
1298         case INSTR_LOAD_S:
1299         case INSTR_LOAD_FLD:
1300         case INSTR_LOAD_ENT:
1301         case INSTR_LOAD_FNC:
1302             if (OPA->edict < 0 || OPA->edict >= prog->entities) {
1303                 qcvmerror(prog, "progs `%s` attempted to read an out of bounds entity", prog->filename);
1304                 goto cleanup;
1305             }
1306             if ((unsigned int)(OPB->_int) >= (unsigned int)(prog->entityfields)) {
1307                 qcvmerror(prog, "prog `%s` attempted to read an invalid field from entity (%i)",
1308                           prog->filename,
1309                           OPB->_int);
1310                 goto cleanup;
1311             }
1312             ed = prog_getedict(prog, OPA->edict);
1313             OPC->_int = ((qcany*)( ((qcint*)ed) + OPB->_int ))->_int;
1314             break;
1315         case INSTR_LOAD_V:
1316             if (OPA->edict < 0 || OPA->edict >= prog->entities) {
1317                 qcvmerror(prog, "progs `%s` attempted to read an out of bounds entity", prog->filename);
1318                 goto cleanup;
1319             }
1320             if (OPB->_int < 0 || OPB->_int + 3 > (qcint)prog->entityfields)
1321             {
1322                 qcvmerror(prog, "prog `%s` attempted to read an invalid field from entity (%i)",
1323                           prog->filename,
1324                           OPB->_int + 2);
1325                 goto cleanup;
1326             }
1327             ed = prog_getedict(prog, OPA->edict);
1328             OPC->ivector[0] = ((qcany*)( ((qcint*)ed) + OPB->_int ))->ivector[0];
1329             OPC->ivector[1] = ((qcany*)( ((qcint*)ed) + OPB->_int ))->ivector[1];
1330             OPC->ivector[2] = ((qcany*)( ((qcint*)ed) + OPB->_int ))->ivector[2];
1331             break;
1332
1333         case INSTR_ADDRESS:
1334             if (OPA->edict < 0 || OPA->edict >= prog->entities) {
1335                 qcvmerror(prog, "prog `%s` attempted to address an out of bounds entity %i", prog->filename, OPA->edict);
1336                 goto cleanup;
1337             }
1338             if ((unsigned int)(OPB->_int) >= (unsigned int)(prog->entityfields))
1339             {
1340                 qcvmerror(prog, "prog `%s` attempted to read an invalid field from entity (%i)",
1341                           prog->filename,
1342                           OPB->_int);
1343                 goto cleanup;
1344             }
1345
1346             ed = prog_getedict(prog, OPA->edict);
1347             OPC->_int = ((qcint*)ed) - prog->entitydata + OPB->_int;
1348             break;
1349
1350         case INSTR_STORE_F:
1351         case INSTR_STORE_S:
1352         case INSTR_STORE_ENT:
1353         case INSTR_STORE_FLD:
1354         case INSTR_STORE_FNC:
1355             OPB->_int = OPA->_int;
1356             break;
1357         case INSTR_STORE_V:
1358             OPB->ivector[0] = OPA->ivector[0];
1359             OPB->ivector[1] = OPA->ivector[1];
1360             OPB->ivector[2] = OPA->ivector[2];
1361             break;
1362
1363         case INSTR_STOREP_F:
1364         case INSTR_STOREP_S:
1365         case INSTR_STOREP_ENT:
1366         case INSTR_STOREP_FLD:
1367         case INSTR_STOREP_FNC:
1368             if (OPB->_int < 0 || OPB->_int >= (qcint)vec_size(prog->entitydata)) {
1369                 qcvmerror(prog, "`%s` attempted to write to an out of bounds edict (%i)", prog->filename, OPB->_int);
1370                 goto cleanup;
1371             }
1372             if (OPB->_int < (qcint)prog->entityfields && !prog->allowworldwrites)
1373                 qcvmerror(prog, "`%s` tried to assign to world.%s (field %i)\n",
1374                           prog->filename,
1375                           prog_getstring(prog, prog_entfield(prog, OPB->_int)->name),
1376                           OPB->_int);
1377             ptr = (qcany*)(prog->entitydata + OPB->_int);
1378             ptr->_int = OPA->_int;
1379             break;
1380         case INSTR_STOREP_V:
1381             if (OPB->_int < 0 || OPB->_int + 2 >= (qcint)vec_size(prog->entitydata)) {
1382                 qcvmerror(prog, "`%s` attempted to write to an out of bounds edict (%i)", prog->filename, OPB->_int);
1383                 goto cleanup;
1384             }
1385             if (OPB->_int < (qcint)prog->entityfields && !prog->allowworldwrites)
1386                 qcvmerror(prog, "`%s` tried to assign to world.%s (field %i)\n",
1387                           prog->filename,
1388                           prog_getstring(prog, prog_entfield(prog, OPB->_int)->name),
1389                           OPB->_int);
1390             ptr = (qcany*)(prog->entitydata + OPB->_int);
1391             ptr->ivector[0] = OPA->ivector[0];
1392             ptr->ivector[1] = OPA->ivector[1];
1393             ptr->ivector[2] = OPA->ivector[2];
1394             break;
1395
1396         case INSTR_NOT_F:
1397             OPC->_float = !FLOAT_IS_TRUE_FOR_INT(OPA->_int);
1398             break;
1399         case INSTR_NOT_V:
1400             OPC->_float = !OPA->vector[0] &&
1401                           !OPA->vector[1] &&
1402                           !OPA->vector[2];
1403             break;
1404         case INSTR_NOT_S:
1405             OPC->_float = !OPA->string ||
1406                           !*prog_getstring(prog, OPA->string);
1407             break;
1408         case INSTR_NOT_ENT:
1409             OPC->_float = (OPA->edict == 0);
1410             break;
1411         case INSTR_NOT_FNC:
1412             OPC->_float = !OPA->function;
1413             break;
1414
1415         case INSTR_IF:
1416             /* this is consistent with darkplaces' behaviour */
1417             if(FLOAT_IS_TRUE_FOR_INT(OPA->_int))
1418             {
1419                 st += st->o2.s1 - 1;    /* offset the s++ */
1420                 if (++jumpcount >= maxjumps)
1421                     qcvmerror(prog, "`%s` hit the runaway loop counter limit of %li jumps", prog->filename, jumpcount);
1422             }
1423             break;
1424         case INSTR_IFNOT:
1425             if(!FLOAT_IS_TRUE_FOR_INT(OPA->_int))
1426             {
1427                 st += st->o2.s1 - 1;    /* offset the s++ */
1428                 if (++jumpcount >= maxjumps)
1429                     qcvmerror(prog, "`%s` hit the runaway loop counter limit of %li jumps", prog->filename, jumpcount);
1430             }
1431             break;
1432
1433         case INSTR_CALL0:
1434         case INSTR_CALL1:
1435         case INSTR_CALL2:
1436         case INSTR_CALL3:
1437         case INSTR_CALL4:
1438         case INSTR_CALL5:
1439         case INSTR_CALL6:
1440         case INSTR_CALL7:
1441         case INSTR_CALL8:
1442             prog->argc = st->opcode - INSTR_CALL0;
1443             if (!OPA->function)
1444                 qcvmerror(prog, "NULL function in `%s`", prog->filename);
1445
1446             if(!OPA->function || OPA->function >= (qcint)vec_size(prog->functions))
1447             {
1448                 qcvmerror(prog, "CALL outside the program in `%s`", prog->filename);
1449                 goto cleanup;
1450             }
1451
1452             newf = &prog->functions[OPA->function];
1453             newf->profile++;
1454
1455             prog->statement = (st - prog->code) + 1;
1456
1457             if (newf->entry < 0)
1458             {
1459                 /* negative statements are built in functions */
1460                 qcint builtinnumber = -newf->entry;
1461                 if (builtinnumber < (qcint)prog->builtins_count && prog->builtins[builtinnumber])
1462                     prog->builtins[builtinnumber](prog);
1463                 else
1464                     qcvmerror(prog, "No such builtin #%i in %s! Try updating your gmqcc sources",
1465                               builtinnumber, prog->filename);
1466             }
1467             else
1468                 st = prog->code + prog_enterfunction(prog, newf) - 1; /* offset st++ */
1469             if (prog->vmerror)
1470                 goto cleanup;
1471             break;
1472
1473         case INSTR_STATE:
1474             qcvmerror(prog, "`%s` tried to execute a STATE operation", prog->filename);
1475             break;
1476
1477         case INSTR_GOTO:
1478             st += st->o1.s1 - 1;    /* offset the s++ */
1479             if (++jumpcount == 10000000)
1480                 qcvmerror(prog, "`%s` hit the runaway loop counter limit of %li jumps", prog->filename, jumpcount);
1481             break;
1482
1483         case INSTR_AND:
1484             OPC->_float = FLOAT_IS_TRUE_FOR_INT(OPA->_int) &&
1485                           FLOAT_IS_TRUE_FOR_INT(OPB->_int);
1486             break;
1487         case INSTR_OR:
1488             OPC->_float = FLOAT_IS_TRUE_FOR_INT(OPA->_int) ||
1489                           FLOAT_IS_TRUE_FOR_INT(OPB->_int);
1490             break;
1491
1492         case INSTR_BITAND:
1493             OPC->_float = ((int)OPA->_float) & ((int)OPB->_float);
1494             break;
1495         case INSTR_BITOR:
1496             OPC->_float = ((int)OPA->_float) | ((int)OPB->_float);
1497             break;
1498     }
1499 }
1500
1501 #undef QCVM_PROFILE
1502 #undef QCVM_TRACE
1503 #endif /* !QCVM_LOOP */