]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - prvm_exec.c
Fix "Cully McCullface" bug found by terencehill.
[xonotic/darkplaces.git] / prvm_exec.c
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20
21 #include "quakedef.h"
22 #include "progsvm.h"
23
24 const char *prvm_opnames[] =
25 {
26 "^5DONE",
27
28 "MUL_F",
29 "MUL_V",
30 "MUL_FV",
31 "MUL_VF",
32
33 "DIV",
34
35 "ADD_F",
36 "ADD_V",
37
38 "SUB_F",
39 "SUB_V",
40
41 "^2EQ_F",
42 "^2EQ_V",
43 "^2EQ_S",
44 "^2EQ_E",
45 "^2EQ_FNC",
46
47 "^2NE_F",
48 "^2NE_V",
49 "^2NE_S",
50 "^2NE_E",
51 "^2NE_FNC",
52
53 "^2LE",
54 "^2GE",
55 "^2LT",
56 "^2GT",
57
58 "^6FIELD_F",
59 "^6FIELD_V",
60 "^6FIELD_S",
61 "^6FIELD_ENT",
62 "^6FIELD_FLD",
63 "^6FIELD_FNC",
64
65 "^1ADDRESS",
66
67 "STORE_F",
68 "STORE_V",
69 "STORE_S",
70 "STORE_ENT",
71 "STORE_FLD",
72 "STORE_FNC",
73
74 "^1STOREP_F",
75 "^1STOREP_V",
76 "^1STOREP_S",
77 "^1STOREP_ENT",
78 "^1STOREP_FLD",
79 "^1STOREP_FNC",
80
81 "^5RETURN",
82
83 "^2NOT_F",
84 "^2NOT_V",
85 "^2NOT_S",
86 "^2NOT_ENT",
87 "^2NOT_FNC",
88
89 "^5IF",
90 "^5IFNOT",
91
92 "^3CALL0",
93 "^3CALL1",
94 "^3CALL2",
95 "^3CALL3",
96 "^3CALL4",
97 "^3CALL5",
98 "^3CALL6",
99 "^3CALL7",
100 "^3CALL8",
101
102 "^1STATE",
103
104 "^5GOTO",
105
106 "^2AND",
107 "^2OR",
108
109 "BITAND",
110 "BITOR"
111 };
112
113
114
115 //=============================================================================
116
117 /*
118 =================
119 PRVM_PrintStatement
120 =================
121 */
122 extern cvar_t prvm_coverage;
123 extern cvar_t prvm_statementprofiling;
124 extern cvar_t prvm_timeprofiling;
125 static void PRVM_PrintStatement(prvm_prog_t *prog, mstatement_t *s)
126 {
127         size_t i;
128         int opnum = (int)(s - prog->statements);
129         char valuebuf[MAX_INPUTLINE];
130
131         Con_Printf("s%i: ", opnum);
132         if( prog->statement_linenums )
133         {
134                 if ( prog->statement_columnnums )
135                         Con_Printf( "%s:%i:%i: ", PRVM_GetString( prog, prog->xfunction->s_file ), prog->statement_linenums[ opnum ], prog->statement_columnnums[ opnum ] );
136                 else
137                         Con_Printf( "%s:%i: ", PRVM_GetString( prog, prog->xfunction->s_file ), prog->statement_linenums[ opnum ] );
138         }
139
140         if (prvm_statementprofiling.integer)
141                 Con_Printf("%7.0f ", prog->statement_profile[s - prog->statements]);
142
143         if ( (unsigned)s->op < sizeof(prvm_opnames)/sizeof(prvm_opnames[0]))
144         {
145                 Con_Printf("%s ",  prvm_opnames[s->op]);
146                 i = strlen(prvm_opnames[s->op]);
147                 // don't count a preceding color tag when padding the name
148                 if (prvm_opnames[s->op][0] == STRING_COLOR_TAG)
149                         i -= 2;
150                 for ( ; i<10 ; i++)
151                         Con_Print(" ");
152         }
153         if (s->operand[0] >= 0) Con_Printf(  "%s", PRVM_GlobalString(prog, s->operand[0], valuebuf, sizeof(valuebuf)));
154         if (s->operand[1] >= 0) Con_Printf(", %s", PRVM_GlobalString(prog, s->operand[1], valuebuf, sizeof(valuebuf)));
155         if (s->operand[2] >= 0) Con_Printf(", %s", PRVM_GlobalString(prog, s->operand[2], valuebuf, sizeof(valuebuf)));
156         if (s->jumpabsolute >= 0) Con_Printf(", statement %i", s->jumpabsolute);
157         Con_Print("\n");
158 }
159
160 void PRVM_PrintFunctionStatements (prvm_prog_t *prog, const char *name)
161 {
162         int i, firststatement, endstatement;
163         mfunction_t *func;
164         func = PRVM_ED_FindFunction (prog, name);
165         if (!func)
166         {
167                 Con_Printf("%s progs: no function named %s\n", prog->name, name);
168                 return;
169         }
170         firststatement = func->first_statement;
171         if (firststatement < 0)
172         {
173                 Con_Printf("%s progs: function %s is builtin #%i\n", prog->name, name, -firststatement);
174                 return;
175         }
176
177         // find the end statement
178         endstatement = prog->numstatements;
179         for (i = 0;i < prog->numfunctions;i++)
180                 if (endstatement > prog->functions[i].first_statement && firststatement < prog->functions[i].first_statement)
181                         endstatement = prog->functions[i].first_statement;
182
183         // now print the range of statements
184         Con_Printf("%s progs: disassembly of function %s (statements %i-%i, locals %i-%i):\n", prog->name, name, firststatement, endstatement, func->parm_start, func->parm_start + func->locals - 1);
185         prog->xfunction = func;
186         for (i = firststatement;i < endstatement;i++)
187         {
188                 PRVM_PrintStatement(prog, prog->statements + i);
189                 if (!(prvm_coverage.integer & 4))
190                         prog->statement_profile[i] = 0;
191         }
192         if (prvm_coverage.integer & 4)
193                 Con_Printf("Collecting statement coverage, not flushing statement profile.\n");
194 }
195
196 /*
197 ============
198 PRVM_PrintFunction_f
199
200 ============
201 */
202 void PRVM_PrintFunction_f (void)
203 {
204         prvm_prog_t *prog;
205         if (Cmd_Argc() != 3)
206         {
207                 Con_Printf("usage: prvm_printfunction <program name> <function name>\n");
208                 return;
209         }
210
211         if (!(prog = PRVM_FriendlyProgFromString(Cmd_Argv(1))))
212                 return;
213
214         PRVM_PrintFunctionStatements(prog, Cmd_Argv(2));
215 }
216
217 /*
218 ============
219 PRVM_StackTrace
220 ============
221 */
222 void PRVM_StackTrace (prvm_prog_t *prog)
223 {
224         mfunction_t     *f;
225         int                     i;
226
227         prog->stack[prog->depth].s = prog->xstatement;
228         prog->stack[prog->depth].f = prog->xfunction;
229         for (i = prog->depth;i > 0;i--)
230         {
231                 f = prog->stack[i].f;
232
233                 if (!f)
234                         Con_Print("<NULL FUNCTION>\n");
235                 else
236                 {
237                         if (prog->statement_linenums)
238                         {
239                                 if (prog->statement_columnnums)
240                                         Con_Printf("%12s:%i:%i : %s : statement %i\n", PRVM_GetString(prog, f->s_file), prog->statement_linenums[prog->stack[i].s], prog->statement_columnnums[prog->stack[i].s], PRVM_GetString(prog, f->s_name), prog->stack[i].s - f->first_statement);
241                                 else
242                                         Con_Printf("%12s:%i : %s : statement %i\n", PRVM_GetString(prog, f->s_file), prog->statement_linenums[prog->stack[i].s], PRVM_GetString(prog, f->s_name), prog->stack[i].s - f->first_statement);
243                         }
244                         else
245                                 Con_Printf("%12s : %s : statement %i\n", PRVM_GetString(prog, f->s_file), PRVM_GetString(prog, f->s_name), prog->stack[i].s - f->first_statement);
246                 }
247         }
248 }
249
250 void PRVM_ShortStackTrace(prvm_prog_t *prog, char *buf, size_t bufsize)
251 {
252         mfunction_t     *f;
253         int                     i;
254         char vabuf[1024];
255
256         if(prog)
257         {
258                 dpsnprintf(buf, bufsize, "(%s) ", prog->name);
259         }
260         else
261         {
262                 strlcpy(buf, "<NO PROG>", bufsize);
263                 return;
264         }
265
266         prog->stack[prog->depth].s = prog->xstatement;
267         prog->stack[prog->depth].f = prog->xfunction;
268         for (i = prog->depth;i > 0;i--)
269         {
270                 f = prog->stack[i].f;
271
272                 if(strlcat(buf,
273                         f
274                                 ? va(vabuf, sizeof(vabuf), "%s:%s(%i) ", PRVM_GetString(prog, f->s_file), PRVM_GetString(prog, f->s_name), prog->stack[i].s - f->first_statement)
275                                 : "<NULL> ",
276                         bufsize
277                 ) >= bufsize)
278                         break;
279         }
280 }
281
282
283 static void PRVM_CallProfile (prvm_prog_t *prog)
284 {
285         mfunction_t *f, *best;
286         int i;
287         double max;
288         double sum;
289         double newprofiletime;
290
291         Con_Printf( "%s Call Profile:\n", prog->name );
292
293         sum = 0;
294         do
295         {
296                 max = 0;
297                 best = NULL;
298                 for (i=0 ; i<prog->numfunctions ; i++)
299                 {
300                         f = &prog->functions[i];
301                         if (max < f->totaltime)
302                         {
303                                 max = f->totaltime;
304                                 best = f;
305                         }
306                 }
307                 if (best)
308                 {
309                         sum += best->totaltime;
310                         Con_Printf("%9.4f %s\n", best->totaltime, PRVM_GetString(prog, best->s_name));
311                         best->totaltime = 0;
312                 }
313         } while (best);
314
315         newprofiletime = Sys_DirtyTime();
316         Con_Printf("Total time since last profile reset: %9.4f\n", newprofiletime - prog->profiletime);
317         Con_Printf("       - used by QC code of this VM: %9.4f\n", sum);
318
319         prog->profiletime = newprofiletime;
320 }
321
322 void PRVM_Profile (prvm_prog_t *prog, int maxfunctions, double mintime, int sortby)
323 {
324         mfunction_t *f, *best;
325         int i, num;
326         double max;
327
328         if(!prvm_timeprofiling.integer)
329                 mintime *= 10000000; // count each statement as about 0.1µs
330
331         if(prvm_timeprofiling.integer)
332                 Con_Printf( "%s Profile:\n[CallCount]      [Time] [BuiltinTm] [Statement] [BuiltinCt] [TimeTotal] [StmtTotal] [BltnTotal] [self]\n", prog->name );
333                 //                        12345678901 12345678901 12345678901 12345678901 12345678901 12345678901 12345678901 123.45%
334         else
335                 Con_Printf( "%s Profile:\n[CallCount] [Statement] [BuiltinCt] [StmtTotal] [BltnTotal] [self]\n", prog->name );
336                 //                        12345678901 12345678901 12345678901 12345678901 12345678901 123.45%
337
338         num = 0;
339         do
340         {
341                 max = 0;
342                 best = NULL;
343                 for (i=0 ; i<prog->numfunctions ; i++)
344                 {
345                         f = &prog->functions[i];
346                         if(prvm_timeprofiling.integer)
347                         {
348                                 if(sortby)
349                                 {
350                                         if(f->first_statement < 0)
351                                         {
352                                                 if (max < f->tprofile)
353                                                 {
354                                                         max = f->tprofile;
355                                                         best = f;
356                                                 }
357                                         }
358                                         else
359                                         {
360                                                 if (max < f->tprofile_total)
361                                                 {
362                                                         max = f->tprofile_total;
363                                                         best = f;
364                                                 }
365                                         }
366                                 }
367                                 else
368                                 {
369                                         if (max < f->tprofile + f->tbprofile)
370                                         {
371                                                 max = f->tprofile + f->tbprofile;
372                                                 best = f;
373                                         }
374                                 }
375                         }
376                         else
377                         {
378                                 if(sortby)
379                                 {
380                                         if (max < f->profile_total + f->builtinsprofile_total + f->callcount)
381                                         {
382                                                 max = f->profile_total + f->builtinsprofile_total + f->callcount;
383                                                 best = f;
384                                         }
385                                 }
386                                 else
387                                 {
388                                         if (max < f->profile + f->builtinsprofile + f->callcount)
389                                         {
390                                                 max = f->profile + f->builtinsprofile + f->callcount;
391                                                 best = f;
392                                         }
393                                 }
394                         }
395                 }
396                 if (best)
397                 {
398                         if (num < maxfunctions && max > mintime)
399                         {
400                                 if(prvm_timeprofiling.integer)
401                                 {
402                                         if (best->first_statement < 0)
403                                                 Con_Printf("%11.0f %11.6f ------------- builtin ------------- %11.6f ----------- builtin ----------- %s\n", best->callcount, best->tprofile, best->tprofile, PRVM_GetString(prog, best->s_name));
404                                         //                 %11.6f 12345678901 12345678901 12345678901 %11.6f 12345678901 12345678901 123.45%
405                                         else
406                                                 Con_Printf("%11.0f %11.6f %11.6f %11.0f %11.0f %11.6f %11.0f %11.0f %6.2f%% %s\n", best->callcount, best->tprofile, best->tbprofile, best->profile, best->builtinsprofile, best->tprofile_total, best->profile_total, best->builtinsprofile_total, (best->tprofile_total > 0) ? ((best->tprofile) * 100.0 / (best->tprofile_total)) : -99.99, PRVM_GetString(prog, best->s_name));
407                                 }
408                                 else
409                                 {
410                                         if (best->first_statement < 0)
411                                                 Con_Printf("%11.0f ----------------------- builtin ----------------------- %s\n", best->callcount, PRVM_GetString(prog, best->s_name));
412                                         //                 12345678901 12345678901 12345678901 12345678901 123.45%
413                                         else
414                                                 Con_Printf("%11.0f %11.0f %11.0f %11.0f %11.0f %6.2f%% %s\n", best->callcount, best->profile, best->builtinsprofile, best->profile_total, best->builtinsprofile_total, (best->profile + best->builtinsprofile) * 100.0 / (best->profile_total + best->builtinsprofile_total), PRVM_GetString(prog, best->s_name));
415                                 }
416                         }
417                         num++;
418                         best->profile = 0;
419                         best->tprofile = 0;
420                         best->tbprofile = 0;
421                         best->builtinsprofile = 0;
422                         best->profile_total = 0;
423                         best->tprofile_total = 0;
424                         best->builtinsprofile_total = 0;
425                         best->callcount = 0;
426                 }
427         } while (best);
428 }
429
430 /*
431 ============
432 PRVM_CallProfile_f
433
434 ============
435 */
436 void PRVM_CallProfile_f (void)
437 {
438         prvm_prog_t *prog;
439         if (Cmd_Argc() != 2)
440         {
441                 Con_Print("prvm_callprofile <program name>\n");
442                 return;
443         }
444
445         if (!(prog = PRVM_FriendlyProgFromString(Cmd_Argv(1))))
446                 return;
447
448         PRVM_CallProfile(prog);
449 }
450
451 /*
452 ============
453 PRVM_Profile_f
454
455 ============
456 */
457 void PRVM_Profile_f (void)
458 {
459         prvm_prog_t *prog;
460         int howmany;
461
462         if (prvm_coverage.integer & 1)
463         {
464                 Con_Printf("Collecting function coverage, cannot profile - sorry!\n");
465                 return;
466         }
467
468         howmany = 1<<30;
469         if (Cmd_Argc() == 3)
470                 howmany = atoi(Cmd_Argv(2));
471         else if (Cmd_Argc() != 2)
472         {
473                 Con_Print("prvm_profile <program name>\n");
474                 return;
475         }
476
477         if (!(prog = PRVM_FriendlyProgFromString(Cmd_Argv(1))))
478                 return;
479
480         PRVM_Profile(prog, howmany, 0, 0);
481 }
482
483 void PRVM_ChildProfile_f (void)
484 {
485         prvm_prog_t *prog;
486         int howmany;
487
488         if (prvm_coverage.integer & 1)
489         {
490                 Con_Printf("Collecting function coverage, cannot profile - sorry!\n");
491                 return;
492         }
493
494         howmany = 1<<30;
495         if (Cmd_Argc() == 3)
496                 howmany = atoi(Cmd_Argv(2));
497         else if (Cmd_Argc() != 2)
498         {
499                 Con_Print("prvm_childprofile <program name>\n");
500                 return;
501         }
502
503         if (!(prog = PRVM_FriendlyProgFromString(Cmd_Argv(1))))
504                 return;
505
506         PRVM_Profile(prog, howmany, 0, 1);
507 }
508
509 void PRVM_PrintState(prvm_prog_t *prog, int stack_index)
510 {
511         int i;
512         mfunction_t *func = prog->xfunction;
513         int st = prog->xstatement;
514         if (stack_index > 0 && stack_index <= prog->depth)
515         {
516                 func = prog->stack[prog->depth - stack_index].f;
517                 st = prog->stack[prog->depth - stack_index].s;
518         }
519         if (prog->statestring)
520         {
521                 Con_Printf("Caller-provided information: %s\n", prog->statestring);
522         }
523         if (func)
524         {
525                 for (i = -7; i <= 0;i++)
526                         if (st + i >= func->first_statement)
527                                 PRVM_PrintStatement(prog, prog->statements + st + i);
528         }
529         PRVM_StackTrace(prog);
530 }
531
532 extern cvar_t prvm_errordump;
533 void PRVM_Crash(prvm_prog_t *prog)
534 {
535         char vabuf[1024];
536         if (prog == NULL)
537                 return;
538         if (!prog->loaded)
539                 return;
540
541         PRVM_serverfunction(SV_Shutdown) = 0; // don't call SV_Shutdown on crash
542
543         if( prog->depth > 0 )
544         {
545                 Con_Printf("QuakeC crash report for %s:\n", prog->name);
546                 PRVM_PrintState(prog, 0);
547         }
548
549         if(prvm_errordump.integer)
550         {
551                 // make a savegame
552                 Host_Savegame_to(prog, va(vabuf, sizeof(vabuf), "crash-%s.dmp", prog->name));
553         }
554
555         // dump the stack so host_error can shutdown functions
556         prog->depth = 0;
557         prog->localstack_used = 0;
558
559         // delete all tempstrings (FIXME: is this safe in VM->engine->VM recursion?)
560         prog->tempstringsbuf.cursize = 0;
561
562         // reset the prog pointer
563         prog = NULL;
564 }
565
566 /*
567 ============================================================================
568 PRVM_ExecuteProgram
569
570 The interpretation main loop
571 ============================================================================
572 */
573
574 /*
575 ====================
576 PRVM_EnterFunction
577
578 Returns the new program statement counter
579 ====================
580 */
581 static int PRVM_EnterFunction (prvm_prog_t *prog, mfunction_t *f)
582 {
583         int             i, j, c, o;
584
585         if (!f)
586                 prog->error_cmd("PRVM_EnterFunction: NULL function in %s", prog->name);
587
588         prog->stack[prog->depth].s = prog->xstatement;
589         prog->stack[prog->depth].f = prog->xfunction;
590         prog->stack[prog->depth].profile_acc = -f->profile;
591         prog->stack[prog->depth].tprofile_acc = -f->tprofile + -f->tbprofile;
592         prog->stack[prog->depth].builtinsprofile_acc = -f->builtinsprofile;
593         prog->depth++;
594         if (prog->depth >=PRVM_MAX_STACK_DEPTH)
595                 prog->error_cmd("stack overflow");
596
597 // save off any locals that the new function steps on
598         c = f->locals;
599         if (prog->localstack_used + c > PRVM_LOCALSTACK_SIZE)
600                 prog->error_cmd("PRVM_ExecuteProgram: locals stack overflow in %s", prog->name);
601
602         for (i=0 ; i < c ; i++)
603                 prog->localstack[prog->localstack_used+i] = prog->globals.ip[f->parm_start + i];
604         prog->localstack_used += c;
605
606 // copy parameters
607         o = f->parm_start;
608         for (i=0 ; i<f->numparms ; i++)
609         {
610                 for (j=0 ; j<f->parm_size[i] ; j++)
611                 {
612                         prog->globals.ip[o] = prog->globals.ip[OFS_PARM0+i*3+j];
613                         o++;
614                 }
615         }
616
617         ++f->recursion;
618         prog->xfunction = f;
619         return f->first_statement - 1;  // offset the s++
620 }
621
622 /*
623 ====================
624 PRVM_LeaveFunction
625 ====================
626 */
627 static int PRVM_LeaveFunction (prvm_prog_t *prog)
628 {
629         int             i, c;
630         mfunction_t *f;
631
632         if (prog->depth <= 0)
633                 prog->error_cmd("prog stack underflow in %s", prog->name);
634
635         if (!prog->xfunction)
636                 prog->error_cmd("PR_LeaveFunction: NULL function in %s", prog->name);
637 // restore locals from the stack
638         c = prog->xfunction->locals;
639         prog->localstack_used -= c;
640         if (prog->localstack_used < 0)
641                 prog->error_cmd("PRVM_ExecuteProgram: locals stack underflow in %s", prog->name);
642
643         for (i=0 ; i < c ; i++)
644                 prog->globals.ip[prog->xfunction->parm_start + i] = prog->localstack[prog->localstack_used+i];
645
646 // up stack
647         prog->depth--;
648         f = prog->xfunction;
649         --f->recursion;
650         prog->xfunction = prog->stack[prog->depth].f;
651         prog->stack[prog->depth].profile_acc += f->profile;
652         prog->stack[prog->depth].tprofile_acc += f->tprofile + f->tbprofile;
653         prog->stack[prog->depth].builtinsprofile_acc += f->builtinsprofile;
654         if(prog->depth > 0)
655         {
656                 prog->stack[prog->depth-1].profile_acc += prog->stack[prog->depth].profile_acc;
657                 prog->stack[prog->depth-1].tprofile_acc += prog->stack[prog->depth].tprofile_acc;
658                 prog->stack[prog->depth-1].builtinsprofile_acc += prog->stack[prog->depth].builtinsprofile_acc;
659         }
660         if(!f->recursion)
661         {
662                 // if f is already on the call stack...
663                 // we cannot add this profile data to it now
664                 // or we would add it more than once
665                 // so, let's only add to the function's profile if it is the outermost call
666                 f->profile_total += prog->stack[prog->depth].profile_acc;
667                 f->tprofile_total += prog->stack[prog->depth].tprofile_acc;
668                 f->builtinsprofile_total += prog->stack[prog->depth].builtinsprofile_acc;
669         }
670         
671         return prog->stack[prog->depth].s;
672 }
673
674 void PRVM_Init_Exec(prvm_prog_t *prog)
675 {
676         // dump the stack
677         prog->depth = 0;
678         prog->localstack_used = 0;
679         // reset the string table
680         // nothing here yet
681 }
682
683 /*
684 ==================
685 Coverage
686 ==================
687 */
688 // Note: in these two calls, prog->xfunction is assumed to be sane.
689 static const char *PRVM_WhereAmI(char *buf, size_t bufsize, prvm_prog_t *prog, mfunction_t *func, int statement)
690 {
691         if (prog->statement_linenums)
692         {
693                 if (prog->statement_columnnums)
694                         return va(buf, bufsize, "%s:%i:%i(%s, %i)", PRVM_GetString(prog, func->s_file), prog->statement_linenums[statement], prog->statement_columnnums[statement], PRVM_GetString(prog, func->s_name), statement - func->first_statement);
695                 else
696                         return va(buf, bufsize, "%s:%i(%s, %i)", PRVM_GetString(prog, func->s_file), prog->statement_linenums[statement], PRVM_GetString(prog, func->s_name), statement - func->first_statement);
697         }
698         else
699                 return va(buf, bufsize, "%s(%s, %i)", PRVM_GetString(prog, func->s_file), PRVM_GetString(prog, func->s_name), statement - func->first_statement);
700 }
701 static void PRVM_FunctionCoverageEvent(prvm_prog_t *prog, mfunction_t *func)
702 {
703         ++prog->functions_covered;
704         Con_Printf("prvm_coverage: %s just called %s for the first time. Coverage: %.2f%%.\n", prog->name, PRVM_GetString(prog, func->s_name), prog->functions_covered * 100.0 / prog->numfunctions);
705 }
706 void PRVM_ExplicitCoverageEvent(prvm_prog_t *prog, mfunction_t *func, int statement)
707 {
708         char vabuf[128];
709         ++prog->explicit_covered;
710         Con_Printf("prvm_coverage: %s just executed a coverage() statement at %s for the first time. Coverage: %.2f%%.\n", prog->name, PRVM_WhereAmI(vabuf, sizeof(vabuf), prog, func, statement), prog->explicit_covered * 100.0 / prog->numexplicitcoveragestatements);
711 }
712 static void PRVM_StatementCoverageEvent(prvm_prog_t *prog, mfunction_t *func, int statement)
713 {
714         char vabuf[128];
715         ++prog->statements_covered;
716         Con_Printf("prvm_coverage: %s just executed a statement at %s for the first time. Coverage: %.2f%%.\n", prog->name, PRVM_WhereAmI(vabuf, sizeof(vabuf), prog, func, statement), prog->statements_covered * 100.0 / prog->numstatements);
717 }
718
719 #ifdef __GNUC__
720 #define HAVE_COMPUTED_GOTOS 1
721 #endif
722
723 #define OPA ((prvm_eval_t *)&prog->globals.fp[st->operand[0]])
724 #define OPB ((prvm_eval_t *)&prog->globals.fp[st->operand[1]])
725 #define OPC ((prvm_eval_t *)&prog->globals.fp[st->operand[2]])
726 extern cvar_t prvm_traceqc;
727 extern cvar_t prvm_statementprofiling;
728 extern qboolean prvm_runawaycheck;
729
730 #ifdef PROFILING
731 #ifdef CONFIG_MENU
732 /*
733 ====================
734 MVM_ExecuteProgram
735 ====================
736 */
737 void MVM_ExecuteProgram (prvm_prog_t *prog, func_t fnum, const char *errormessage)
738 {
739         mstatement_t    *st, *startst;
740         mfunction_t             *func, *enterfunc;
741         prvm_edict_t    *ed;
742         prvm_eval_t     *ptr;
743         int             jumpcount, cachedpr_trace, exitdepth;
744         int             restorevm_tempstringsbuf_cursize;
745         double  calltime;
746         double tm, starttm;
747         prvm_vec_t tempfloat;
748         // these may become out of date when a builtin is called, and are updated accordingly
749         prvm_vec_t *cached_edictsfields = prog->edictsfields;
750         unsigned int cached_entityfields = prog->entityfields;
751         unsigned int cached_entityfields_3 = prog->entityfields - 3;
752         unsigned int cached_entityfieldsarea = prog->entityfieldsarea;
753         unsigned int cached_entityfieldsarea_entityfields = prog->entityfieldsarea - prog->entityfields;
754         unsigned int cached_entityfieldsarea_3 = prog->entityfieldsarea - 3;
755         unsigned int cached_entityfieldsarea_entityfields_3 = prog->entityfieldsarea - prog->entityfields - 3;
756         unsigned int cached_max_edicts = prog->max_edicts;
757         // these do not change
758         mstatement_t *cached_statements = prog->statements;
759         qboolean cached_allowworldwrites = prog->allowworldwrites;
760         unsigned int cached_flag = prog->flag;
761
762         calltime = Sys_DirtyTime();
763
764         if (!fnum || fnum >= (unsigned int)prog->numfunctions)
765         {
766                 if (PRVM_allglobaledict(self))
767                         PRVM_ED_Print(prog, PRVM_PROG_TO_EDICT(PRVM_allglobaledict(self)), NULL);
768                 prog->error_cmd("MVM_ExecuteProgram: %s", errormessage);
769         }
770
771         func = &prog->functions[fnum];
772
773         // after executing this function, delete all tempstrings it created
774         restorevm_tempstringsbuf_cursize = prog->tempstringsbuf.cursize;
775
776         prog->trace = prvm_traceqc.integer;
777
778         // we know we're done when pr_depth drops to this
779         exitdepth = prog->depth;
780
781 // make a stack frame
782         st = &prog->statements[PRVM_EnterFunction(prog, func)];
783         // save the starting statement pointer for profiling
784         // (when the function exits or jumps, the (st - startst) integer value is
785         // added to the function's profile counter)
786         startst = st;
787         starttm = calltime;
788         // instead of counting instructions, we count jumps
789         jumpcount = 0;
790         // add one to the callcount of this function because otherwise engine-called functions aren't counted
791         if (prog->xfunction->callcount++ == 0 && (prvm_coverage.integer & 1))
792                 PRVM_FunctionCoverageEvent(prog, prog->xfunction);
793
794 chooseexecprogram:
795         cachedpr_trace = prog->trace;
796         if (prog->trace || prog->watch_global_type != ev_void || prog->watch_field_type != ev_void || prog->break_statement >= 0)
797         {
798 #define PRVMSLOWINTERPRETER 1
799                 if (prvm_timeprofiling.integer)
800                 {
801 #define PRVMTIMEPROFILING 1
802 #include "prvm_execprogram.h"
803 #undef PRVMTIMEPROFILING
804                 }
805                 else
806                 {
807 #include "prvm_execprogram.h"
808                 }
809 #undef PRVMSLOWINTERPRETER
810         }
811         else
812         {
813                 if (prvm_timeprofiling.integer)
814                 {
815 #define PRVMTIMEPROFILING 1
816 #include "prvm_execprogram.h"
817 #undef PRVMTIMEPROFILING
818                 }
819                 else
820                 {
821 #include "prvm_execprogram.h"
822                 }
823         }
824
825 cleanup:
826         if (developer_insane.integer && prog->tempstringsbuf.cursize > restorevm_tempstringsbuf_cursize)
827                 Con_DPrintf("MVM_ExecuteProgram: %s used %i bytes of tempstrings\n", PRVM_GetString(prog, prog->functions[fnum].s_name), prog->tempstringsbuf.cursize - restorevm_tempstringsbuf_cursize);
828         // delete tempstrings created by this function
829         prog->tempstringsbuf.cursize = restorevm_tempstringsbuf_cursize;
830
831         tm = Sys_DirtyTime() - calltime;if (tm < 0 || tm >= 1800) tm = 0;
832         func->totaltime += tm;
833
834         if (prog == SVVM_prog)
835                 SV_FlushBroadcastMessages();
836 }
837 #endif
838
839 /*
840 ====================
841 CLVM_ExecuteProgram
842 ====================
843 */
844 void CLVM_ExecuteProgram (prvm_prog_t *prog, func_t fnum, const char *errormessage)
845 {
846         mstatement_t    *st, *startst;
847         mfunction_t             *func, *enterfunc;
848         prvm_edict_t    *ed;
849         prvm_eval_t     *ptr;
850         int             jumpcount, cachedpr_trace, exitdepth;
851         int             restorevm_tempstringsbuf_cursize;
852         double  calltime;
853         double tm, starttm;
854         prvm_vec_t tempfloat;
855         // these may become out of date when a builtin is called, and are updated accordingly
856         prvm_vec_t *cached_edictsfields = prog->edictsfields;
857         unsigned int cached_entityfields = prog->entityfields;
858         unsigned int cached_entityfields_3 = prog->entityfields - 3;
859         unsigned int cached_entityfieldsarea = prog->entityfieldsarea;
860         unsigned int cached_entityfieldsarea_entityfields = prog->entityfieldsarea - prog->entityfields;
861         unsigned int cached_entityfieldsarea_3 = prog->entityfieldsarea - 3;
862         unsigned int cached_entityfieldsarea_entityfields_3 = prog->entityfieldsarea - prog->entityfields - 3;
863         unsigned int cached_max_edicts = prog->max_edicts;
864         // these do not change
865         mstatement_t *cached_statements = prog->statements;
866         qboolean cached_allowworldwrites = prog->allowworldwrites;
867         unsigned int cached_flag = prog->flag;
868
869         calltime = Sys_DirtyTime();
870
871         if (!fnum || fnum >= (unsigned int)prog->numfunctions)
872         {
873                 if (PRVM_allglobaledict(self))
874                         PRVM_ED_Print(prog, PRVM_PROG_TO_EDICT(PRVM_allglobaledict(self)), NULL);
875                 prog->error_cmd("CLVM_ExecuteProgram: %s", errormessage);
876         }
877
878         func = &prog->functions[fnum];
879
880         // after executing this function, delete all tempstrings it created
881         restorevm_tempstringsbuf_cursize = prog->tempstringsbuf.cursize;
882
883         prog->trace = prvm_traceqc.integer;
884
885         // we know we're done when pr_depth drops to this
886         exitdepth = prog->depth;
887
888 // make a stack frame
889         st = &prog->statements[PRVM_EnterFunction(prog, func)];
890         // save the starting statement pointer for profiling
891         // (when the function exits or jumps, the (st - startst) integer value is
892         // added to the function's profile counter)
893         startst = st;
894         starttm = calltime;
895         // instead of counting instructions, we count jumps
896         jumpcount = 0;
897         // add one to the callcount of this function because otherwise engine-called functions aren't counted
898         if (prog->xfunction->callcount++ == 0 && (prvm_coverage.integer & 1))
899                 PRVM_FunctionCoverageEvent(prog, prog->xfunction);
900
901 chooseexecprogram:
902         cachedpr_trace = prog->trace;
903         if (prog->trace || prog->watch_global_type != ev_void || prog->watch_field_type != ev_void || prog->break_statement >= 0)
904         {
905 #define PRVMSLOWINTERPRETER 1
906                 if (prvm_timeprofiling.integer)
907                 {
908 #define PRVMTIMEPROFILING 1
909 #include "prvm_execprogram.h"
910 #undef PRVMTIMEPROFILING
911                 }
912                 else
913                 {
914 #include "prvm_execprogram.h"
915                 }
916 #undef PRVMSLOWINTERPRETER
917         }
918         else
919         {
920                 if (prvm_timeprofiling.integer)
921                 {
922 #define PRVMTIMEPROFILING 1
923 #include "prvm_execprogram.h"
924 #undef PRVMTIMEPROFILING
925                 }
926                 else
927                 {
928 #include "prvm_execprogram.h"
929                 }
930         }
931
932 cleanup:
933         if (developer_insane.integer && prog->tempstringsbuf.cursize > restorevm_tempstringsbuf_cursize)
934                 Con_DPrintf("CLVM_ExecuteProgram: %s used %i bytes of tempstrings\n", PRVM_GetString(prog, prog->functions[fnum].s_name), prog->tempstringsbuf.cursize - restorevm_tempstringsbuf_cursize);
935         // delete tempstrings created by this function
936         prog->tempstringsbuf.cursize = restorevm_tempstringsbuf_cursize;
937
938         tm = Sys_DirtyTime() - calltime;if (tm < 0 || tm >= 1800) tm = 0;
939         func->totaltime += tm;
940
941         if (prog == SVVM_prog)
942                 SV_FlushBroadcastMessages();
943 }
944 #endif
945
946 /*
947 ====================
948 SVVM_ExecuteProgram
949 ====================
950 */
951 #ifdef PROFILING
952 void SVVM_ExecuteProgram (prvm_prog_t *prog, func_t fnum, const char *errormessage)
953 #else
954 void PRVM_ExecuteProgram (prvm_prog_t *prog, func_t fnum, const char *errormessage)
955 #endif
956 {
957         mstatement_t    *st, *startst;
958         mfunction_t             *func, *enterfunc;
959         prvm_edict_t    *ed;
960         prvm_eval_t     *ptr;
961         int             jumpcount, cachedpr_trace, exitdepth;
962         int             restorevm_tempstringsbuf_cursize;
963         double  calltime;
964         double tm, starttm;
965         prvm_vec_t tempfloat;
966         // these may become out of date when a builtin is called, and are updated accordingly
967         prvm_vec_t *cached_edictsfields = prog->edictsfields;
968         unsigned int cached_entityfields = prog->entityfields;
969         unsigned int cached_entityfields_3 = prog->entityfields - 3;
970         unsigned int cached_entityfieldsarea = prog->entityfieldsarea;
971         unsigned int cached_entityfieldsarea_entityfields = prog->entityfieldsarea - prog->entityfields;
972         unsigned int cached_entityfieldsarea_3 = prog->entityfieldsarea - 3;
973         unsigned int cached_entityfieldsarea_entityfields_3 = prog->entityfieldsarea - prog->entityfields - 3;
974         unsigned int cached_max_edicts = prog->max_edicts;
975         // these do not change
976         mstatement_t *cached_statements = prog->statements;
977         qboolean cached_allowworldwrites = prog->allowworldwrites;
978         unsigned int cached_flag = prog->flag;
979
980         calltime = Sys_DirtyTime();
981
982         if (!fnum || fnum >= (unsigned int)prog->numfunctions)
983         {
984                 if (PRVM_allglobaledict(self))
985                         PRVM_ED_Print(prog, PRVM_PROG_TO_EDICT(PRVM_allglobaledict(self)), NULL);
986                 prog->error_cmd("SVVM_ExecuteProgram: %s", errormessage);
987         }
988
989         func = &prog->functions[fnum];
990
991         // after executing this function, delete all tempstrings it created
992         restorevm_tempstringsbuf_cursize = prog->tempstringsbuf.cursize;
993
994         prog->trace = prvm_traceqc.integer;
995
996         // we know we're done when pr_depth drops to this
997         exitdepth = prog->depth;
998
999 // make a stack frame
1000         st = &prog->statements[PRVM_EnterFunction(prog, func)];
1001         // save the starting statement pointer for profiling
1002         // (when the function exits or jumps, the (st - startst) integer value is
1003         // added to the function's profile counter)
1004         startst = st;
1005         starttm = calltime;
1006         // instead of counting instructions, we count jumps
1007         jumpcount = 0;
1008         // add one to the callcount of this function because otherwise engine-called functions aren't counted
1009         if (prog->xfunction->callcount++ == 0 && (prvm_coverage.integer & 1))
1010                 PRVM_FunctionCoverageEvent(prog, prog->xfunction);
1011
1012 chooseexecprogram:
1013         cachedpr_trace = prog->trace;
1014         if (prog->trace || prog->watch_global_type != ev_void || prog->watch_field_type != ev_void || prog->break_statement >= 0)
1015         {
1016 #define PRVMSLOWINTERPRETER 1
1017                 if (prvm_timeprofiling.integer)
1018                 {
1019 #define PRVMTIMEPROFILING 1
1020 #include "prvm_execprogram.h"
1021 #undef PRVMTIMEPROFILING
1022                 }
1023                 else
1024                 {
1025 #include "prvm_execprogram.h"
1026                 }
1027 #undef PRVMSLOWINTERPRETER
1028         }
1029         else
1030         {
1031                 if (prvm_timeprofiling.integer)
1032                 {
1033 #define PRVMTIMEPROFILING 1
1034 #include "prvm_execprogram.h"
1035 #undef PRVMTIMEPROFILING
1036                 }
1037                 else
1038                 {
1039 #include "prvm_execprogram.h"
1040                 }
1041         }
1042
1043 cleanup:
1044         if (developer_insane.integer && prog->tempstringsbuf.cursize > restorevm_tempstringsbuf_cursize)
1045                 Con_DPrintf("SVVM_ExecuteProgram: %s used %i bytes of tempstrings\n", PRVM_GetString(prog, prog->functions[fnum].s_name), prog->tempstringsbuf.cursize - restorevm_tempstringsbuf_cursize);
1046         // delete tempstrings created by this function
1047         prog->tempstringsbuf.cursize = restorevm_tempstringsbuf_cursize;
1048
1049         tm = Sys_DirtyTime() - calltime;if (tm < 0 || tm >= 1800) tm = 0;
1050         func->totaltime += tm;
1051
1052         if (prog == SVVM_prog)
1053                 SV_FlushBroadcastMessages();
1054 }