]> icculus.org git repositories - divverent/darkplaces.git/blob - prvm_exec.c
AK: Changed makefile temporarily so the new prvm compiles on linux.
[divverent/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
23 char *prvm_opnames[] =
24 {
25 "DONE",
26
27 "MUL_F",
28 "MUL_V",
29 "MUL_FV",
30 "MUL_VF",
31
32 "DIV",
33
34 "ADD_F",
35 "ADD_V",
36
37 "SUB_F",
38 "SUB_V",
39
40 "EQ_F",
41 "EQ_V",
42 "EQ_S",
43 "EQ_E",
44 "EQ_FNC",
45
46 "NE_F",
47 "NE_V",
48 "NE_S",
49 "NE_E",
50 "NE_FNC",
51
52 "LE",
53 "GE",
54 "LT",
55 "GT",
56
57 "INDIRECT",
58 "INDIRECT",
59 "INDIRECT",
60 "INDIRECT",
61 "INDIRECT",
62 "INDIRECT",
63
64 "ADDRESS",
65
66 "STORE_F",
67 "STORE_V",
68 "STORE_S",
69 "STORE_ENT",
70 "STORE_FLD",
71 "STORE_FNC",
72
73 "STOREP_F",
74 "STOREP_V",
75 "STOREP_S",
76 "STOREP_ENT",
77 "STOREP_FLD",
78 "STOREP_FNC",
79
80 "RETURN",
81
82 "NOT_F",
83 "NOT_V",
84 "NOT_S",
85 "NOT_ENT",
86 "NOT_FNC",
87
88 "IF",
89 "IFNOT",
90
91 "CALL0",
92 "CALL1",
93 "CALL2",
94 "CALL3",
95 "CALL4",
96 "CALL5",
97 "CALL6",
98 "CALL7",
99 "CALL8",
100
101 "STATE",
102
103 "GOTO",
104
105 "AND",
106 "OR",
107
108 "BITAND",
109 "BITOR"
110 };
111
112 char *PRVM_GlobalString (int ofs);
113 char *PRVM_GlobalStringNoContents (int ofs);
114
115
116 //=============================================================================
117
118 /*
119 =================
120 PRVM_PrintStatement
121 =================
122 */
123 void PRVM_PrintStatement (dstatement_t *s)
124 {
125         int             i;
126
127         if ( (unsigned)s->op < sizeof(prvm_opnames)/sizeof(prvm_opnames[0]))
128         {
129                 Con_Printf ("%s ",  prvm_opnames[s->op]);
130                 i = strlen(prvm_opnames[s->op]);
131                 for ( ; i<10 ; i++)
132                         Con_Printf (" ");
133         }
134
135         if (s->op == OP_IF || s->op == OP_IFNOT)
136                 Con_Printf ("%sbranch %i",PRVM_GlobalString((unsigned short) s->a),s->b);
137         else if (s->op == OP_GOTO)
138         {
139                 Con_Printf ("branch %i",s->a);
140         }
141         else if ( (unsigned)(s->op - OP_STORE_F) < 6)
142         {
143                 Con_Printf ("%s", PRVM_GlobalString((unsigned short) s->a));
144                 Con_Printf ("%s", PRVM_GlobalStringNoContents((unsigned short) s->b));
145         }
146         else
147         {
148                 if (s->a)
149                         Con_Printf ("%s", PRVM_GlobalString((unsigned short) s->a));
150                 if (s->b)
151                         Con_Printf ("%s", PRVM_GlobalString((unsigned short) s->b));
152                 if (s->c)
153                         Con_Printf ("%s", PRVM_GlobalStringNoContents((unsigned short) s->c));
154         }
155         Con_Printf ("\n");
156 }
157
158 /*
159 ============
160 PRVM_StackTrace
161 ============
162 */
163 void PRVM_StackTrace (void)
164 {
165         mfunction_t     *f;
166         int                     i;
167
168         prog->stack[prog->depth].s = prog->xstatement;
169         prog->stack[prog->depth].f = prog->xfunction;
170         for (i = prog->depth;i > 0;i--)
171         {
172                 f = prog->stack[i].f;
173
174                 if (!f)
175                         Con_Printf ("<NULL FUNCTION>\n");
176                 else
177                         Con_Printf ("%12s : %s : statement %i\n", PRVM_GetString(f->s_file), PRVM_GetString(f->s_name), prog->stack[i].s - f->first_statement);
178         }
179 }
180
181
182 /*
183 ============
184 PRVM_Profile_f
185
186 ============
187 */
188 void PRVM_Profile_f (void)
189 {
190         mfunction_t *f, *best;
191         int i, num, max/*, howmany*/;
192
193         //howmany = 10;
194         //if (Cmd_Argc() == 2)
195         //      howmany = atoi(Cmd_Argv(1));
196         if(Cmd_Argc() != 2)
197         {
198                 Con_Print("prvm_profile <program name>\n");
199                 return;
200         }
201
202         PRVM_Begin;
203         if(!PRVM_SetProgFromString(Cmd_Argv(1)))
204                 return;
205
206         num = 0;
207         do
208         {
209                 max = 0;
210                 best = NULL;
211                 for (i=0 ; i<prog->progs->numfunctions ; i++)
212                 {
213                         f = &prog->functions[i];
214                         if (f->profile > max)
215                         {
216                                 max = f->profile;
217                                 best = f;
218                         }
219                 }
220                 if (best)
221                 {
222                         //if (num < howmany)
223                                 Con_Printf ("%s: %7i %7i %s\n", PRVM_NAME, best->profile, best->builtinsprofile, PRVM_GetString(best->s_name));
224                         num++;
225                         best->profile = 0;
226                         best->builtinsprofile = 0;
227                 }
228         } while (best);
229
230         PRVM_End;
231 }
232
233 void PRVM_CrashAll()
234 {
235         int i;
236         PRVM_Begin; 
237         for(i = 0; i < PRVM_MAXPROGS; i++)
238         {
239                 if(!PRVM_ProgLoaded(i))
240                         continue;
241                 PRVM_SetProg(i);
242                 PRVM_Crash();
243         }
244         PRVM_End;
245 }
246
247 void PRVM_Crash()
248 {
249         int i;
250         
251         if (prog->depth < 1)
252         {
253                 // kill the stack just to be sure
254                 prog->depth = 0;
255                 prog->localstack_used = 0;
256                 return;
257         }
258
259         Con_Printf("QuakeC crash report for %s:\n", PRVM_NAME);
260         if (prog->xfunction)
261         {
262                 for (i = -4;i <= 0;i++)
263                         if (prog->xstatement + i >= prog->xfunction->first_statement)
264                                 PRVM_PrintStatement (prog->statements + prog->xstatement + i);
265         }
266         else
267                 Con_Printf("null function executing??\n");
268         PRVM_StackTrace ();
269
270         // dump the stack so host_error can shutdown functions
271         prog->depth = 0;
272         prog->localstack_used = 0;
273
274 }
275
276 /*
277 ============================================================================
278 PRVM_ExecuteProgram
279
280 The interpretation main loop
281 ============================================================================
282 */
283
284 /*
285 ====================
286 PRVM_EnterFunction
287
288 Returns the new program statement counter
289 ====================
290 */
291 int PRVM_EnterFunction (mfunction_t *f)
292 {
293         int             i, j, c, o;
294
295         if (!f)
296                 PRVM_ERROR ("PRVM_EnterFunction: NULL function in %s\n", PRVM_NAME);
297
298         prog->stack[prog->depth].s = prog->xstatement;
299         prog->stack[prog->depth].f = prog->xfunction;
300         prog->depth++;
301         if (prog->depth >=PRVM_MAX_STACK_DEPTH)
302                 PRVM_ERROR ("stack overflow");
303
304 // save off any locals that the new function steps on
305         c = f->locals;
306         if (prog->localstack_used + c > PRVM_LOCALSTACK_SIZE)
307                 PRVM_ERROR ("PRVM_ExecuteProgram: locals stack overflow in %s\n", PRVM_NAME);
308
309         for (i=0 ; i < c ; i++)
310                 prog->localstack[prog->localstack_used+i] = ((int *)prog->globals)[f->parm_start + i];
311         prog->localstack_used += c;
312
313 // copy parameters
314         o = f->parm_start;
315         for (i=0 ; i<f->numparms ; i++)
316         {
317                 for (j=0 ; j<f->parm_size[i] ; j++)
318                 {
319                         ((int *)prog->globals)[o] = ((int *)prog->globals)[OFS_PARM0+i*3+j];
320                         o++;
321                 }
322         }
323
324         prog->xfunction = f;
325         return f->first_statement - 1;  // offset the s++
326 }
327
328 /*
329 ====================
330 PRVM_LeaveFunction
331 ====================
332 */
333 int PRVM_LeaveFunction (void)
334 {
335         int             i, c;
336
337         if (prog->depth <= 0)
338                 PRVM_ERROR ("prog stack underflow in %s", PRVM_NAME);
339
340         if (!prog->xfunction)
341                 PRVM_ERROR ("PR_LeaveFunction: NULL function in %s\n", PRVM_NAME);
342 // restore locals from the stack
343         c = prog->xfunction->locals;
344         prog->localstack_used -= c;
345         if (prog->localstack_used < 0)
346                 PRVM_ERROR ("PRVM_ExecuteProgram: locals stack underflow in %s\n", PRVM_NAME);
347
348         for (i=0 ; i < c ; i++)
349                 ((int *)prog->globals)[prog->xfunction->parm_start + i] = prog->localstack[prog->localstack_used+i];
350
351 // up stack
352         prog->depth--;
353         prog->xfunction = prog->stack[prog->depth].f;
354         return prog->stack[prog->depth].s;
355 }
356
357 void PRVM_Init_Exec(void)
358 {
359         // dump the stack
360         prog->depth = 0;
361         prog->localstack_used = 0;
362         // reset the string table
363         // nothing here yet
364 }
365
366 /*
367 ====================
368 PRVM_ExecuteProgram
369 ====================
370 */
371 // LordHavoc: optimized
372 #define OPA ((eval_t *)&prog->globals[(unsigned short) st->a])
373 #define OPB ((eval_t *)&prog->globals[(unsigned short) st->b])
374 #define OPC ((eval_t *)&prog->globals[(unsigned short) st->c])
375 extern cvar_t prvm_boundscheck;
376 extern cvar_t prvm_traceqc;
377 extern int              PRVM_ED_FindFieldOffset (const char *field);
378 extern ddef_t*  PRVM_ED_FindGlobal(const char *name); 
379 void PRVM_ExecuteProgram (func_t fnum, const char *errormessage)
380 {
381         dstatement_t    *st;
382         mfunction_t     *f, *newf;
383         prvm_edict_t    *ed;
384         prvm_eval_t     *ptr;
385         int             profile, startprofile, cachedpr_trace, exitdepth;
386
387         if (!fnum || fnum >= prog->progs->numfunctions)
388         {
389                 if (prog->self && PRVM_G_INT(prog->self->ofs))
390                         PRVM_ED_Print (PRVM_PROG_TO_EDICT(PRVM_G_INT(prog->self->ofs)));
391                 PRVM_ERROR ("PR_ExecuteProgram: %s", errormessage);
392         }
393
394         f = &prog->functions[fnum];
395
396         prog->trace = prvm_traceqc.integer;
397
398         // we know we're done when pr_depth drops to this
399         exitdepth = prog->depth;
400
401 // make a stack frame
402         st = &prog->statements[PRVM_EnterFunction (f)];
403         startprofile = profile = 0;
404
405 chooseexecprogram:
406         cachedpr_trace = prog->trace;
407         if (prvm_boundscheck.integer)
408         {
409 #define PRVMBOUNDSCHECK 1
410                 if (prog->trace)
411                 {
412 #define PRVMTRACE 1
413 #include "prvm_execprogram.h"
414                 }
415                 else
416                 {
417 #undef PRVMTRACE
418 #include "prvm_execprogram.h"
419                 }
420         }
421         else
422         {
423 #undef PRVMBOUNDSCHECK
424                 if (prog->trace)
425                 {
426 #define PRVMTRACE 1
427 #include "prvm_execprogram.h"
428                 }
429                 else
430                 {
431 #undef PRVMTRACE
432 #include "prvm_execprogram.h"
433                 }
434         }
435 }