]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - pr_execprogram.h
added trace.realfraction field which is now used for comparisons instead of fraction...
[xonotic/darkplaces.git] / pr_execprogram.h
1
2 // This code isn't #ifdef/#define protectable, don't try.
3
4                 while (1)
5                 {
6                         st++;
7                         if (++profile > 10000000) // LordHavoc: increased runaway loop limit 100x
8                         {
9                                 // LordHavoc: update profile counter for debugging reasons
10                                 // (identifying erroneous loops and recursion patterns)
11                                 pr_xfunction->profile += profile - startprofile;
12                                 startprofile = profile;
13                                 // update the statement number before we error out
14                                 pr_xstatement = st - pr_statements;
15                                 Host_Error("runaway loop counter hit limit of %d opcodes\ntip: if having trouble identifying the problem, try typing profile now", profile);
16                         }
17
18 #if PRTRACE
19                         pr_xfunction->profile += profile - startprofile;
20                         startprofile = profile;
21                         pr_xstatement = st - pr_statements;
22                         PR_PrintStatement(st);
23 #endif
24
25                         switch (st->op)
26                         {
27                         case OP_ADD_F:
28                                 OPC->_float = OPA->_float + OPB->_float;
29                                 break;
30                         case OP_ADD_V:
31                                 OPC->vector[0] = OPA->vector[0] + OPB->vector[0];
32                                 OPC->vector[1] = OPA->vector[1] + OPB->vector[1];
33                                 OPC->vector[2] = OPA->vector[2] + OPB->vector[2];
34                                 break;
35                         case OP_SUB_F:
36                                 OPC->_float = OPA->_float - OPB->_float;
37                                 break;
38                         case OP_SUB_V:
39                                 OPC->vector[0] = OPA->vector[0] - OPB->vector[0];
40                                 OPC->vector[1] = OPA->vector[1] - OPB->vector[1];
41                                 OPC->vector[2] = OPA->vector[2] - OPB->vector[2];
42                                 break;
43                         case OP_MUL_F:
44                                 OPC->_float = OPA->_float * OPB->_float;
45                                 break;
46                         case OP_MUL_V:
47                                 OPC->_float = OPA->vector[0]*OPB->vector[0] + OPA->vector[1]*OPB->vector[1] + OPA->vector[2]*OPB->vector[2];
48                                 break;
49                         case OP_MUL_FV:
50                                 OPC->vector[0] = OPA->_float * OPB->vector[0];
51                                 OPC->vector[1] = OPA->_float * OPB->vector[1];
52                                 OPC->vector[2] = OPA->_float * OPB->vector[2];
53                                 break;
54                         case OP_MUL_VF:
55                                 OPC->vector[0] = OPB->_float * OPA->vector[0];
56                                 OPC->vector[1] = OPB->_float * OPA->vector[1];
57                                 OPC->vector[2] = OPB->_float * OPA->vector[2];
58                                 break;
59                         case OP_DIV_F:
60                                 OPC->_float = OPA->_float / OPB->_float;
61                                 break;
62                         case OP_BITAND:
63                                 OPC->_float = (int)OPA->_float & (int)OPB->_float;
64                                 break;
65                         case OP_BITOR:
66                                 OPC->_float = (int)OPA->_float | (int)OPB->_float;
67                                 break;
68                         case OP_GE:
69                                 OPC->_float = OPA->_float >= OPB->_float;
70                                 break;
71                         case OP_LE:
72                                 OPC->_float = OPA->_float <= OPB->_float;
73                                 break;
74                         case OP_GT:
75                                 OPC->_float = OPA->_float > OPB->_float;
76                                 break;
77                         case OP_LT:
78                                 OPC->_float = OPA->_float < OPB->_float;
79                                 break;
80                         case OP_AND:
81                                 OPC->_float = OPA->_float && OPB->_float;
82                                 break;
83                         case OP_OR:
84                                 OPC->_float = OPA->_float || OPB->_float;
85                                 break;
86                         case OP_NOT_F:
87                                 OPC->_float = !OPA->_float;
88                                 break;
89                         case OP_NOT_V:
90                                 OPC->_float = !OPA->vector[0] && !OPA->vector[1] && !OPA->vector[2];
91                                 break;
92                         case OP_NOT_S:
93                                 OPC->_float = !OPA->string || !*PR_GetString(OPA->string);
94                                 break;
95                         case OP_NOT_FNC:
96                                 OPC->_float = !OPA->function;
97                                 break;
98                         case OP_NOT_ENT:
99                                 OPC->_float = (OPA->edict == 0);
100                                 break;
101                         case OP_EQ_F:
102                                 OPC->_float = OPA->_float == OPB->_float;
103                                 break;
104                         case OP_EQ_V:
105                                 OPC->_float = (OPA->vector[0] == OPB->vector[0]) && (OPA->vector[1] == OPB->vector[1]) && (OPA->vector[2] == OPB->vector[2]);
106                                 break;
107                         case OP_EQ_S:
108                                 OPC->_float = !strcmp(PR_GetString(OPA->string),PR_GetString(OPB->string));
109                                 break;
110                         case OP_EQ_E:
111                                 OPC->_float = OPA->_int == OPB->_int;
112                                 break;
113                         case OP_EQ_FNC:
114                                 OPC->_float = OPA->function == OPB->function;
115                                 break;
116                         case OP_NE_F:
117                                 OPC->_float = OPA->_float != OPB->_float;
118                                 break;
119                         case OP_NE_V:
120                                 OPC->_float = (OPA->vector[0] != OPB->vector[0]) || (OPA->vector[1] != OPB->vector[1]) || (OPA->vector[2] != OPB->vector[2]);
121                                 break;
122                         case OP_NE_S:
123                                 OPC->_float = strcmp(PR_GetString(OPA->string),PR_GetString(OPB->string));
124                                 break;
125                         case OP_NE_E:
126                                 OPC->_float = OPA->_int != OPB->_int;
127                                 break;
128                         case OP_NE_FNC:
129                                 OPC->_float = OPA->function != OPB->function;
130                                 break;
131
132                 //==================
133                         case OP_STORE_F:
134                         case OP_STORE_ENT:
135                         case OP_STORE_FLD:              // integers
136                         case OP_STORE_S:
137                         case OP_STORE_FNC:              // pointers
138                                 OPB->_int = OPA->_int;
139                                 break;
140                         case OP_STORE_V:
141                                 OPB->ivector[0] = OPA->ivector[0];
142                                 OPB->ivector[1] = OPA->ivector[1];
143                                 OPB->ivector[2] = OPA->ivector[2];
144                                 break;
145
146                         case OP_STOREP_F:
147                         case OP_STOREP_ENT:
148                         case OP_STOREP_FLD:             // integers
149                         case OP_STOREP_S:
150                         case OP_STOREP_FNC:             // pointers
151 #if PRBOUNDSCHECK
152                                 if (OPB->_int < 0 || OPB->_int + 4 > pr_edictareasize)
153                                 {
154                                         pr_xfunction->profile += profile - startprofile;
155                                         startprofile = profile;
156                                         pr_xstatement = st - pr_statements;
157                                         Host_Error("Progs attempted to write to an out of bounds edict (%i)\n", OPB->_int);
158                                         return;
159                                 }
160 #endif
161                                 ptr = (eval_t *)((qbyte *)sv.edictsfields + OPB->_int);
162                                 ptr->_int = OPA->_int;
163                                 break;
164                         case OP_STOREP_V:
165 #if PRBOUNDSCHECK
166                                 if (OPB->_int < 0 || OPB->_int + 12 > pr_edictareasize)
167                                 {
168                                         pr_xfunction->profile += profile - startprofile;
169                                         startprofile = profile;
170                                         pr_xstatement = st - pr_statements;
171                                         Host_Error("Progs attempted to write to an out of bounds edict (%i)\n", OPB->_int);
172                                         return;
173                                 }
174 #endif
175                                 ptr = (eval_t *)((qbyte *)sv.edictsfields + OPB->_int);
176                                 ptr->vector[0] = OPA->vector[0];
177                                 ptr->vector[1] = OPA->vector[1];
178                                 ptr->vector[2] = OPA->vector[2];
179                                 break;
180
181                         case OP_ADDRESS:
182 #if PRBOUNDSCHECK
183                                 if ((unsigned int)(OPB->_int) >= (unsigned int)(progs->entityfields))
184                                 {
185                                         pr_xfunction->profile += profile - startprofile;
186                                         startprofile = profile;
187                                         pr_xstatement = st - pr_statements;
188                                         Host_Error("Progs attempted to address an invalid field (%i) in an edict\n", OPB->_int);
189                                         return;
190                                 }
191 #endif
192                                 if (OPA->edict == 0 && sv.state == ss_active)
193                                 {
194                                         pr_xfunction->profile += profile - startprofile;
195                                         startprofile = profile;
196                                         pr_xstatement = st - pr_statements;
197                                         Host_Error("assignment to world entity");
198                                         return;
199                                 }
200                                 ed = PROG_TO_EDICT(OPA->edict);
201                                 OPC->_int = (qbyte *)((int *)ed->v + OPB->_int) - (qbyte *)sv.edictsfields;
202                                 break;
203
204                         case OP_LOAD_F:
205                         case OP_LOAD_FLD:
206                         case OP_LOAD_ENT:
207                         case OP_LOAD_S:
208                         case OP_LOAD_FNC:
209 #if PRBOUNDSCHECK
210                                 if ((unsigned int)(OPB->_int) >= (unsigned int)(progs->entityfields))
211                                 {
212                                         pr_xfunction->profile += profile - startprofile;
213                                         startprofile = profile;
214                                         pr_xstatement = st - pr_statements;
215                                         Host_Error("Progs attempted to read an invalid field in an edict (%i)\n", OPB->_int);
216                                         return;
217                                 }
218 #endif
219                                 ed = PROG_TO_EDICT(OPA->edict);
220                                 OPC->_int = ((eval_t *)((int *)ed->v + OPB->_int))->_int;
221                                 break;
222
223                         case OP_LOAD_V:
224 #if PRBOUNDSCHECK
225                                 if (OPB->_int < 0 || OPB->_int + 2 >= progs->entityfields)
226                                 {
227                                         pr_xfunction->profile += profile - startprofile;
228                                         startprofile = profile;
229                                         pr_xstatement = st - pr_statements;
230                                         Host_Error("Progs attempted to read an invalid field in an edict (%i)\n", OPB->_int);
231                                         return;
232                                 }
233 #endif
234                                 ed = PROG_TO_EDICT(OPA->edict);
235                                 OPC->vector[0] = ((eval_t *)((int *)ed->v + OPB->_int))->vector[0];
236                                 OPC->vector[1] = ((eval_t *)((int *)ed->v + OPB->_int))->vector[1];
237                                 OPC->vector[2] = ((eval_t *)((int *)ed->v + OPB->_int))->vector[2];
238                                 break;
239
240                 //==================
241
242                         case OP_IFNOT:
243                                 if (!OPA->_int)
244                                         st += st->b - 1;        // offset the s++
245                                 break;
246
247                         case OP_IF:
248                                 if (OPA->_int)
249                                         st += st->b - 1;        // offset the s++
250                                 break;
251
252                         case OP_GOTO:
253                                 st += st->a - 1;        // offset the s++
254                                 break;
255
256                         case OP_CALL0:
257                         case OP_CALL1:
258                         case OP_CALL2:
259                         case OP_CALL3:
260                         case OP_CALL4:
261                         case OP_CALL5:
262                         case OP_CALL6:
263                         case OP_CALL7:
264                         case OP_CALL8:
265                                 pr_xfunction->profile += profile - startprofile;
266                                 startprofile = profile;
267                                 pr_xstatement = st - pr_statements;
268                                 pr_argc = st->op - OP_CALL0;
269                                 if (!OPA->function)
270                                         Host_Error("NULL function");
271
272                                 newf = &pr_functions[OPA->function];
273
274                                 if (newf->first_statement < 0)
275                                 {
276                                         // negative statements are built in functions
277                                         int builtinnumber = -newf->first_statement;
278                                         pr_xfunction->builtinsprofile++;
279                                         if (builtinnumber < pr_numbuiltins && pr_builtins[builtinnumber])
280                                                 pr_builtins[builtinnumber]();
281                                         else
282                                                 Host_Error("No such builtin #%i", builtinnumber);
283                                 }
284                                 else
285                                         st = pr_statements + PR_EnterFunction(newf);
286                                 break;
287
288                         case OP_DONE:
289                         case OP_RETURN:
290                                 pr_xfunction->profile += profile - startprofile;
291                                 startprofile = profile;
292                                 pr_xstatement = st - pr_statements;
293
294                                 pr_globals[OFS_RETURN] = pr_globals[(unsigned short) st->a];
295                                 pr_globals[OFS_RETURN+1] = pr_globals[(unsigned short) st->a+1];
296                                 pr_globals[OFS_RETURN+2] = pr_globals[(unsigned short) st->a+2];
297
298                                 st = pr_statements + PR_LeaveFunction();
299                                 if (pr_depth <= exitdepth)
300                                         return;         // all done
301                                 if (pr_trace != cachedpr_trace)
302                                         goto chooseexecprogram;
303                                 break;
304
305                         case OP_STATE:
306                                 pr_xfunction->profile += profile - startprofile;
307                                 startprofile = profile;
308                                 pr_xstatement = st - pr_statements;
309                                 ed = PROG_TO_EDICT(pr_global_struct->self);
310                                 ed->v->nextthink = pr_global_struct->time + 0.1;
311                                 ed->v->frame = OPA->_float;
312                                 ed->v->think = OPB->function;
313                                 break;
314
315 // LordHavoc: to be enabled when Progs version 7 (or whatever it will be numbered) is finalized
316 /*
317                         case OP_ADD_I:
318                                 OPC->_int = OPA->_int + OPB->_int;
319                                 break;
320                         case OP_ADD_IF:
321                                 OPC->_int = OPA->_int + (int) OPB->_float;
322                                 break;
323                         case OP_ADD_FI:
324                                 OPC->_float = OPA->_float + (float) OPB->_int;
325                                 break;
326                         case OP_SUB_I:
327                                 OPC->_int = OPA->_int - OPB->_int;
328                                 break;
329                         case OP_SUB_IF:
330                                 OPC->_int = OPA->_int - (int) OPB->_float;
331                                 break;
332                         case OP_SUB_FI:
333                                 OPC->_float = OPA->_float - (float) OPB->_int;
334                                 break;
335                         case OP_MUL_I:
336                                 OPC->_int = OPA->_int * OPB->_int;
337                                 break;
338                         case OP_MUL_IF:
339                                 OPC->_int = OPA->_int * (int) OPB->_float;
340                                 break;
341                         case OP_MUL_FI:
342                                 OPC->_float = OPA->_float * (float) OPB->_int;
343                                 break;
344                         case OP_MUL_VI:
345                                 OPC->vector[0] = (float) OPB->_int * OPA->vector[0];
346                                 OPC->vector[1] = (float) OPB->_int * OPA->vector[1];
347                                 OPC->vector[2] = (float) OPB->_int * OPA->vector[2];
348                                 break;
349                         case OP_DIV_VF:
350                                 {
351                                         float temp = 1.0f / OPB->_float;
352                                         OPC->vector[0] = temp * OPA->vector[0];
353                                         OPC->vector[1] = temp * OPA->vector[1];
354                                         OPC->vector[2] = temp * OPA->vector[2];
355                                 }
356                                 break;
357                         case OP_DIV_I:
358                                 OPC->_int = OPA->_int / OPB->_int;
359                                 break;
360                         case OP_DIV_IF:
361                                 OPC->_int = OPA->_int / (int) OPB->_float;
362                                 break;
363                         case OP_DIV_FI:
364                                 OPC->_float = OPA->_float / (float) OPB->_int;
365                                 break;
366                         case OP_CONV_IF:
367                                 OPC->_float = OPA->_int;
368                                 break;
369                         case OP_CONV_FI:
370                                 OPC->_int = OPA->_float;
371                                 break;
372                         case OP_BITAND_I:
373                                 OPC->_int = OPA->_int & OPB->_int;
374                                 break;
375                         case OP_BITOR_I:
376                                 OPC->_int = OPA->_int | OPB->_int;
377                                 break;
378                         case OP_BITAND_IF:
379                                 OPC->_int = OPA->_int & (int)OPB->_float;
380                                 break;
381                         case OP_BITOR_IF:
382                                 OPC->_int = OPA->_int | (int)OPB->_float;
383                                 break;
384                         case OP_BITAND_FI:
385                                 OPC->_float = (int)OPA->_float & OPB->_int;
386                                 break;
387                         case OP_BITOR_FI:
388                                 OPC->_float = (int)OPA->_float | OPB->_int;
389                                 break;
390                         case OP_GE_I:
391                                 OPC->_float = OPA->_int >= OPB->_int;
392                                 break;
393                         case OP_LE_I:
394                                 OPC->_float = OPA->_int <= OPB->_int;
395                                 break;
396                         case OP_GT_I:
397                                 OPC->_float = OPA->_int > OPB->_int;
398                                 break;
399                         case OP_LT_I:
400                                 OPC->_float = OPA->_int < OPB->_int;
401                                 break;
402                         case OP_AND_I:
403                                 OPC->_float = OPA->_int && OPB->_int;
404                                 break;
405                         case OP_OR_I:
406                                 OPC->_float = OPA->_int || OPB->_int;
407                                 break;
408                         case OP_GE_IF:
409                                 OPC->_float = (float)OPA->_int >= OPB->_float;
410                                 break;
411                         case OP_LE_IF:
412                                 OPC->_float = (float)OPA->_int <= OPB->_float;
413                                 break;
414                         case OP_GT_IF:
415                                 OPC->_float = (float)OPA->_int > OPB->_float;
416                                 break;
417                         case OP_LT_IF:
418                                 OPC->_float = (float)OPA->_int < OPB->_float;
419                                 break;
420                         case OP_AND_IF:
421                                 OPC->_float = (float)OPA->_int && OPB->_float;
422                                 break;
423                         case OP_OR_IF:
424                                 OPC->_float = (float)OPA->_int || OPB->_float;
425                                 break;
426                         case OP_GE_FI:
427                                 OPC->_float = OPA->_float >= (float)OPB->_int;
428                                 break;
429                         case OP_LE_FI:
430                                 OPC->_float = OPA->_float <= (float)OPB->_int;
431                                 break;
432                         case OP_GT_FI:
433                                 OPC->_float = OPA->_float > (float)OPB->_int;
434                                 break;
435                         case OP_LT_FI:
436                                 OPC->_float = OPA->_float < (float)OPB->_int;
437                                 break;
438                         case OP_AND_FI:
439                                 OPC->_float = OPA->_float && (float)OPB->_int;
440                                 break;
441                         case OP_OR_FI:
442                                 OPC->_float = OPA->_float || (float)OPB->_int;
443                                 break;
444                         case OP_NOT_I:
445                                 OPC->_float = !OPA->_int;
446                                 break;
447                         case OP_EQ_I:
448                                 OPC->_float = OPA->_int == OPB->_int;
449                                 break;
450                         case OP_EQ_IF:
451                                 OPC->_float = (float)OPA->_int == OPB->_float;
452                                 break;
453                         case OP_EQ_FI:
454                                 OPC->_float = OPA->_float == (float)OPB->_int;
455                                 break;
456                         case OP_NE_I:
457                                 OPC->_float = OPA->_int != OPB->_int;
458                                 break;
459                         case OP_NE_IF:
460                                 OPC->_float = (float)OPA->_int != OPB->_float;
461                                 break;
462                         case OP_NE_FI:
463                                 OPC->_float = OPA->_float != (float)OPB->_int;
464                                 break;
465                         case OP_STORE_I:
466                                 OPB->_int = OPA->_int;
467                                 break;
468                         case OP_STOREP_I:
469 #if PRBOUNDSCHECK
470                                 if (OPB->_int < 0 || OPB->_int + 4 > pr_edictareasize)
471                                 {
472                                         pr_xfunction->profile += profile - startprofile;
473                                         startprofile = profile;
474                                         pr_xstatement = st - pr_statements;
475                                         Host_Error("Progs attempted to write to an out of bounds edict\n");
476                                         return;
477                                 }
478 #endif
479                                 ptr = (eval_t *)((qbyte *)sv.edictsfields + OPB->_int);
480                                 ptr->_int = OPA->_int;
481                                 break;
482                         case OP_LOAD_I:
483 #if PRBOUNDSCHECK
484                                 if (OPA->edict < 0 || OPA->edict >= pr_edictareasize)
485                                 {
486                                         pr_xfunction->profile += profile - startprofile;
487                                         startprofile = profile;
488                                         pr_xstatement = st - pr_statements;
489                                         Host_Error("Progs attempted to read an out of bounds edict number\n");
490                                         return;
491                                 }
492                                 if (OPB->_int < 0 || OPB->_int >= progs->entityfields)
493                                 {
494                                         pr_xfunction->profile += profile - startprofile;
495                                         startprofile = profile;
496                                         pr_xstatement = st - pr_statements;
497                                         Host_Error("Progs attempted to read an invalid field in an edict\n");
498                                         return;
499                                 }
500 #endif
501                                 ed = PROG_TO_EDICT(OPA->edict);
502                                 OPC->_int = ((eval_t *)((int *)ed->v + OPB->_int))->_int;
503                                 break;
504
505                         case OP_GSTOREP_I:
506                         case OP_GSTOREP_F:
507                         case OP_GSTOREP_ENT:
508                         case OP_GSTOREP_FLD:            // integers
509                         case OP_GSTOREP_S:
510                         case OP_GSTOREP_FNC:            // pointers
511 #if PRBOUNDSCHECK
512                                 if (OPB->_int < 0 || OPB->_int >= pr_globaldefs)
513                                 {
514                                         pr_xfunction->profile += profile - startprofile;
515                                         startprofile = profile;
516                                         pr_xstatement = st - pr_statements;
517                                         Host_Error("Progs attempted to write to an invalid indexed global\n");
518                                         return;
519                                 }
520 #endif
521                                 pr_globals[OPB->_int] = OPA->_float;
522                                 break;
523                         case OP_GSTOREP_V:
524 #if PRBOUNDSCHECK
525                                 if (OPB->_int < 0 || OPB->_int + 2 >= pr_globaldefs)
526                                 {
527                                         pr_xfunction->profile += profile - startprofile;
528                                         startprofile = profile;
529                                         pr_xstatement = st - pr_statements;
530                                         Host_Error("Progs attempted to write to an invalid indexed global\n");
531                                         return;
532                                 }
533 #endif
534                                 pr_globals[OPB->_int  ] = OPA->vector[0];
535                                 pr_globals[OPB->_int+1] = OPA->vector[1];
536                                 pr_globals[OPB->_int+2] = OPA->vector[2];
537                                 break;
538
539                         case OP_GADDRESS:
540                                 i = OPA->_int + (int) OPB->_float;
541 #if PRBOUNDSCHECK
542                                 if (i < 0 || i >= pr_globaldefs)
543                                 {
544                                         pr_xfunction->profile += profile - startprofile;
545                                         startprofile = profile;
546                                         pr_xstatement = st - pr_statements;
547                                         Host_Error("Progs attempted to address an out of bounds global\n");
548                                         return;
549                                 }
550 #endif
551                                 OPC->_float = pr_globals[i];
552                                 break;
553
554                         case OP_GLOAD_I:
555                         case OP_GLOAD_F:
556                         case OP_GLOAD_FLD:
557                         case OP_GLOAD_ENT:
558                         case OP_GLOAD_S:
559                         case OP_GLOAD_FNC:
560 #if PRBOUNDSCHECK
561                                 if (OPA->_int < 0 || OPA->_int >= pr_globaldefs)
562                                 {
563                                         pr_xfunction->profile += profile - startprofile;
564                                         startprofile = profile;
565                                         pr_xstatement = st - pr_statements;
566                                         Host_Error("Progs attempted to read an invalid indexed global\n");
567                                         return;
568                                 }
569 #endif
570                                 OPC->_float = pr_globals[OPA->_int];
571                                 break;
572
573                         case OP_GLOAD_V:
574 #if PRBOUNDSCHECK
575                                 if (OPA->_int < 0 || OPA->_int + 2 >= pr_globaldefs)
576                                 {
577                                         pr_xfunction->profile += profile - startprofile;
578                                         startprofile = profile;
579                                         pr_xstatement = st - pr_statements;
580                                         Host_Error("Progs attempted to read an invalid indexed global\n");
581                                         return;
582                                 }
583 #endif
584                                 OPC->vector[0] = pr_globals[OPA->_int  ];
585                                 OPC->vector[1] = pr_globals[OPA->_int+1];
586                                 OPC->vector[2] = pr_globals[OPA->_int+2];
587                                 break;
588
589                         case OP_BOUNDCHECK:
590                                 if (OPA->_int < 0 || OPA->_int >= st->b)
591                                 {
592                                         pr_xfunction->profile += profile - startprofile;
593                                         startprofile = profile;
594                                         pr_xstatement = st - pr_statements;
595                                         Host_Error("Progs boundcheck failed at line number %d, value is < 0 or >= %d\n", st->b, st->c);
596                                         return;
597                                 }
598                                 break;
599
600 */
601
602                         default:
603                                 pr_xfunction->profile += profile - startprofile;
604                                 startprofile = profile;
605                                 pr_xstatement = st - pr_statements;
606                                 Host_Error ("Bad opcode %i", st->op);
607                         }
608                 }
609