X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=pr_execprogram.h;h=9cc8ed4c35ed6d34b3ec63a2f56715b437028276;hb=9f304ed6d1ccfcfd17a51f4b1d82880f97cf61ae;hp=aef70e8428fe8da82965c288cd19382013ed1e92;hpb=e17ddb29bc24c36a42005b981b4f86281deb761c;p=xonotic%2Fdarkplaces.git diff --git a/pr_execprogram.h b/pr_execprogram.h index aef70e84..9cc8ed4c 100644 --- a/pr_execprogram.h +++ b/pr_execprogram.h @@ -4,14 +4,22 @@ while (1) { st++; - if (++profile > 1000000) // LordHavoc: increased runaway loop limit 10x + if (++profile > 10000000) // LordHavoc: increased runaway loop limit 100x { + // LordHavoc: update profile counter for debugging reasons + // (identifying erroneous loops and recursion patterns) + pr_xfunction->profile += profile - startprofile; + startprofile = profile; + // update the statement number before we error out pr_xstatement = st - pr_statements; - Host_Error ("runaway loop error"); + Host_Error("runaway loop counter hit limit of %d opcodes\ntip: if having trouble identifying the problem, try typing profile now", profile); } #if PRTRACE - PR_PrintStatement (st); + pr_xfunction->profile += profile - startprofile; + startprofile = profile; + pr_xstatement = st - pr_statements; + PR_PrintStatement(st); #endif switch (st->op) @@ -143,6 +151,8 @@ #if PRBOUNDSCHECK if (OPB->_int < 0 || OPB->_int + 4 > pr_edictareasize) { + pr_xfunction->profile += profile - startprofile; + startprofile = profile; pr_xstatement = st - pr_statements; Host_Error("Progs attempted to write to an out of bounds edict (%i)\n", OPB->_int); return; @@ -155,6 +165,8 @@ #if PRBOUNDSCHECK if (OPB->_int < 0 || OPB->_int + 12 > pr_edictareasize) { + pr_xfunction->profile += profile - startprofile; + startprofile = profile; pr_xstatement = st - pr_statements; Host_Error("Progs attempted to write to an out of bounds edict (%i)\n", OPB->_int); return; @@ -167,17 +179,22 @@ break; case OP_ADDRESS: - pr_xstatement = st - pr_statements; #if PRBOUNDSCHECK if ((unsigned int)(OPB->_int) >= (unsigned int)(progs->entityfields)) { + pr_xfunction->profile += profile - startprofile; + startprofile = profile; + pr_xstatement = st - pr_statements; Host_Error("Progs attempted to address an invalid field (%i) in an edict\n", OPB->_int); return; } #endif if (OPA->edict == 0 && sv.state == ss_active) { - Host_Error ("assignment to world entity"); + pr_xfunction->profile += profile - startprofile; + startprofile = profile; + pr_xstatement = st - pr_statements; + Host_Error("assignment to world entity"); return; } ed = PROG_TO_EDICT(OPA->edict); @@ -189,10 +206,12 @@ case OP_LOAD_ENT: case OP_LOAD_S: case OP_LOAD_FNC: - pr_xstatement = st - pr_statements; #if PRBOUNDSCHECK if ((unsigned int)(OPB->_int) >= (unsigned int)(progs->entityfields)) { + pr_xfunction->profile += profile - startprofile; + startprofile = profile; + pr_xstatement = st - pr_statements; Host_Error("Progs attempted to read an invalid field in an edict (%i)\n", OPB->_int); return; } @@ -202,10 +221,12 @@ break; case OP_LOAD_V: - pr_xstatement = st - pr_statements; #if PRBOUNDSCHECK if (OPB->_int < 0 || OPB->_int + 2 >= progs->entityfields) { + pr_xfunction->profile += profile - startprofile; + startprofile = profile; + pr_xstatement = st - pr_statements; Host_Error("Progs attempted to read an invalid field in an edict (%i)\n", OPB->_int); return; } @@ -246,17 +267,19 @@ pr_xstatement = st - pr_statements; pr_argc = st->op - OP_CALL0; if (!OPA->function) - Host_Error ("NULL function"); + Host_Error("NULL function"); newf = &pr_functions[OPA->function]; if (newf->first_statement < 0) { // negative statements are built in functions - if ((-newf->first_statement) >= pr_numbuiltins) - Host_Error ("Bad builtin call number"); + int builtinnumber = -newf->first_statement; pr_xfunction->builtinsprofile++; - pr_builtins[-newf->first_statement] (); + if (builtinnumber < pr_numbuiltins && pr_builtins[builtinnumber]) + pr_builtins[builtinnumber](); + else + Host_Error("No such builtin #%i", builtinnumber); } else st = pr_statements + PR_EnterFunction(newf); @@ -264,6 +287,10 @@ case OP_DONE: case OP_RETURN: + pr_xfunction->profile += profile - startprofile; + startprofile = profile; + pr_xstatement = st - pr_statements; + pr_globals[OFS_RETURN] = pr_globals[(unsigned short) st->a]; pr_globals[OFS_RETURN+1] = pr_globals[(unsigned short) st->a+1]; pr_globals[OFS_RETURN+2] = pr_globals[(unsigned short) st->a+2]; @@ -276,6 +303,9 @@ break; case OP_STATE: + pr_xfunction->profile += profile - startprofile; + startprofile = profile; + pr_xstatement = st - pr_statements; ed = PROG_TO_EDICT(pr_global_struct->self); ed->v->nextthink = pr_global_struct->time + 0.1; ed->v->frame = OPA->_float; @@ -439,6 +469,8 @@ #if PRBOUNDSCHECK if (OPB->_int < 0 || OPB->_int + 4 > pr_edictareasize) { + pr_xfunction->profile += profile - startprofile; + startprofile = profile; pr_xstatement = st - pr_statements; Host_Error("Progs attempted to write to an out of bounds edict\n"); return; @@ -451,12 +483,16 @@ #if PRBOUNDSCHECK if (OPA->edict < 0 || OPA->edict >= pr_edictareasize) { + pr_xfunction->profile += profile - startprofile; + startprofile = profile; pr_xstatement = st - pr_statements; Host_Error("Progs attempted to read an out of bounds edict number\n"); return; } if (OPB->_int < 0 || OPB->_int >= progs->entityfields) { + pr_xfunction->profile += profile - startprofile; + startprofile = profile; pr_xstatement = st - pr_statements; Host_Error("Progs attempted to read an invalid field in an edict\n"); return; @@ -475,6 +511,8 @@ #if PRBOUNDSCHECK if (OPB->_int < 0 || OPB->_int >= pr_globaldefs) { + pr_xfunction->profile += profile - startprofile; + startprofile = profile; pr_xstatement = st - pr_statements; Host_Error("Progs attempted to write to an invalid indexed global\n"); return; @@ -486,6 +524,8 @@ #if PRBOUNDSCHECK if (OPB->_int < 0 || OPB->_int + 2 >= pr_globaldefs) { + pr_xfunction->profile += profile - startprofile; + startprofile = profile; pr_xstatement = st - pr_statements; Host_Error("Progs attempted to write to an invalid indexed global\n"); return; @@ -501,6 +541,8 @@ #if PRBOUNDSCHECK if (i < 0 || i >= pr_globaldefs) { + pr_xfunction->profile += profile - startprofile; + startprofile = profile; pr_xstatement = st - pr_statements; Host_Error("Progs attempted to address an out of bounds global\n"); return; @@ -518,6 +560,8 @@ #if PRBOUNDSCHECK if (OPA->_int < 0 || OPA->_int >= pr_globaldefs) { + pr_xfunction->profile += profile - startprofile; + startprofile = profile; pr_xstatement = st - pr_statements; Host_Error("Progs attempted to read an invalid indexed global\n"); return; @@ -530,6 +574,8 @@ #if PRBOUNDSCHECK if (OPA->_int < 0 || OPA->_int + 2 >= pr_globaldefs) { + pr_xfunction->profile += profile - startprofile; + startprofile = profile; pr_xstatement = st - pr_statements; Host_Error("Progs attempted to read an invalid indexed global\n"); return; @@ -543,6 +589,8 @@ case OP_BOUNDCHECK: if (OPA->_int < 0 || OPA->_int >= st->b) { + pr_xfunction->profile += profile - startprofile; + startprofile = profile; pr_xstatement = st - pr_statements; Host_Error("Progs boundcheck failed at line number %d, value is < 0 or >= %d\n", st->b, st->c); return; @@ -552,6 +600,8 @@ */ default: + pr_xfunction->profile += profile - startprofile; + startprofile = profile; pr_xstatement = st - pr_statements; Host_Error ("Bad opcode %i", st->op); }