X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=prvm_exec.c;h=6ef71c3c119928a28ab34818b868a5afc202c6d5;hb=1129351590ae9c9f5db5890b9757482cbf8d46d8;hp=2ea778eba19475087a87bad70b89e305d47f2a02;hpb=29de7088f191d21a0c7dd5396cb5cead032c2ac2;p=xonotic%2Fdarkplaces.git diff --git a/prvm_exec.c b/prvm_exec.c index 2ea778eb..6ef71c3c 100644 --- a/prvm_exec.c +++ b/prvm_exec.c @@ -126,33 +126,33 @@ void PRVM_PrintStatement (dstatement_t *s) if ( (unsigned)s->op < sizeof(prvm_opnames)/sizeof(prvm_opnames[0])) { - Con_Printf ("%s ", prvm_opnames[s->op]); + Con_Printf("%s ", prvm_opnames[s->op]); i = strlen(prvm_opnames[s->op]); for ( ; i<10 ; i++) - Con_Printf (" "); + Con_Print(" "); } if (s->op == OP_IF || s->op == OP_IFNOT) - Con_Printf ("%sbranch %i",PRVM_GlobalString((unsigned short) s->a),s->b); + Con_Printf("%sbranch %i",PRVM_GlobalString((unsigned short) s->a),s->b); else if (s->op == OP_GOTO) { - Con_Printf ("branch %i",s->a); + Con_Printf("branch %i",s->a); } else if ( (unsigned)(s->op - OP_STORE_F) < 6) { - Con_Printf ("%s", PRVM_GlobalString((unsigned short) s->a)); - Con_Printf ("%s", PRVM_GlobalStringNoContents((unsigned short) s->b)); + Con_Print(PRVM_GlobalString((unsigned short) s->a)); + Con_Print(PRVM_GlobalStringNoContents((unsigned short) s->b)); } else { if (s->a) - Con_Printf ("%s", PRVM_GlobalString((unsigned short) s->a)); + Con_Print(PRVM_GlobalString((unsigned short) s->a)); if (s->b) - Con_Printf ("%s", PRVM_GlobalString((unsigned short) s->b)); + Con_Print(PRVM_GlobalString((unsigned short) s->b)); if (s->c) - Con_Printf ("%s", PRVM_GlobalStringNoContents((unsigned short) s->c)); + Con_Print(PRVM_GlobalStringNoContents((unsigned short) s->c)); } - Con_Printf ("\n"); + Con_Print("\n"); } /* @@ -172,9 +172,9 @@ void PRVM_StackTrace (void) f = prog->stack[i].f; if (!f) - Con_Printf ("\n"); + Con_Print("\n"); else - Con_Printf ("%12s : %s : statement %i\n", PRVM_GetString(f->s_file), PRVM_GetString(f->s_name), prog->stack[i].s - f->first_statement); + Con_Printf("%12s : %s : statement %i\n", PRVM_GetString(f->s_file), PRVM_GetString(f->s_name), prog->stack[i].s - f->first_statement); } } @@ -220,7 +220,7 @@ void PRVM_Profile_f (void) if (best) { //if (num < howmany) - Con_Printf ("%s: %7i %7i %s\n", PRVM_NAME, best->profile, best->builtinsprofile, PRVM_GetString(best->s_name)); + Con_Printf("%s: %7i %7i %s\n", PRVM_NAME, best->profile, best->builtinsprofile, PRVM_GetString(best->s_name)); num++; best->profile = 0; best->builtinsprofile = 0; @@ -233,7 +233,8 @@ void PRVM_Profile_f (void) void PRVM_CrashAll() { int i; - PRVM_Begin; + prvm_prog_t *oldprog = prog; + for(i = 0; i < PRVM_MAXPROGS; i++) { if(!PRVM_ProgLoaded(i)) @@ -241,13 +242,26 @@ void PRVM_CrashAll() PRVM_SetProg(i); PRVM_Crash(); } - PRVM_End; + + prog = oldprog; } -void PRVM_Crash() +void PRVM_PrintState(void) { int i; - + if (prog->xfunction) + { + for (i = -4;i <= 0;i++) + if (prog->xstatement + i >= prog->xfunction->first_statement) + PRVM_PrintStatement (prog->statements + prog->xstatement + i); + } + else + Con_Print("null function executing??\n"); + PRVM_StackTrace (); +} + +void PRVM_Crash() +{ if (prog->depth < 1) { // kill the stack just to be sure @@ -257,15 +271,7 @@ void PRVM_Crash() } Con_Printf("QuakeC crash report for %s:\n", PRVM_NAME); - if (prog->xfunction) - { - for (i = -4;i <= 0;i++) - if (prog->xstatement + i >= prog->xfunction->first_statement) - PRVM_PrintStatement (prog->statements + prog->xstatement + i); - } - else - Con_Printf("null function executing??\n"); - PRVM_StackTrace (); + PRVM_PrintState(); // dump the stack so host_error can shutdown functions prog->depth = 0; @@ -369,9 +375,9 @@ PRVM_ExecuteProgram ==================== */ // LordHavoc: optimized -#define OPA ((eval_t *)&prog->globals[(unsigned short) st->a]) -#define OPB ((eval_t *)&prog->globals[(unsigned short) st->b]) -#define OPC ((eval_t *)&prog->globals[(unsigned short) st->c]) +#define OPA ((prvm_eval_t *)&prog->globals[(unsigned short) st->a]) +#define OPB ((prvm_eval_t *)&prog->globals[(unsigned short) st->b]) +#define OPC ((prvm_eval_t *)&prog->globals[(unsigned short) st->c]) extern cvar_t prvm_boundscheck; extern cvar_t prvm_traceqc; extern int PRVM_ED_FindFieldOffset (const char *field); @@ -387,7 +393,7 @@ void PRVM_ExecuteProgram (func_t fnum, const char *errormessage) if (!fnum || fnum >= prog->progs->numfunctions) { if (prog->self && PRVM_G_INT(prog->self->ofs)) - PRVM_ED_Print (PRVM_PROG_TO_EDICT(PRVM_G_INT(prog->self->ofs))); + PRVM_ED_Print(PRVM_PROG_TO_EDICT(PRVM_G_INT(prog->self->ofs))); PRVM_ERROR ("PR_ExecuteProgram: %s", errormessage); }