X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=run.c;h=d7133c7ba771b06119a752f8caa0b3bdf017a5a7;hb=aebf16e7cdbc86ec766bcfc2294cc17a0e67dc15;hp=543fb08a64489b96a877aa2f928729953d692dfb;hpb=8ac853655d9b744749adcb9687c13d99cdd6e9fb;p=p5sagit%2Fp5-mst-13.2.git diff --git a/run.c b/run.c index 543fb08..d7133c7 100644 --- a/run.c +++ b/run.c @@ -16,35 +16,44 @@ * know. Run now! Hope is in speed!" --Gandalf */ -dEXT char **watchaddr = 0; -dEXT char *watchok; +#ifdef PERL_OBJECT +#define CALLOP this->*op +#else +#define CALLOP *op +#endif int -runops_standard(void) { +runops_standard(void) +{ dTHR; - SAVEI32(runlevel); - runlevel++; - while ( op = (*op->op_ppaddr)(ARGS) ) ; + while ( op = (CALLOP->op_ppaddr)(ARGS) ) ; TAINT_NOT; return 0; } #ifdef DEBUGGING + +dEXT char **watchaddr = 0; +dEXT char *watchok; + +#ifndef PERL_OBJECT static void debprof _((OP*o)); +#endif + +#endif /* DEBUGGING */ int -runops_debug(void) { +runops_debug(void) +{ +#ifdef DEBUGGING dTHR; if (!op) { warn("NULL OP IN RUN"); return 0; } - SAVEI32(runlevel); - runlevel++; - do { if (debug) { if (watchaddr != 0 && *watchaddr != watchok) @@ -54,15 +63,19 @@ runops_debug(void) { DEBUG_t(debop(op)); DEBUG_P(debprof(op)); } - } while ( op = (*op->op_ppaddr)(ARGS) ); + } while ( op = (CALLOP->op_ppaddr)(ARGS) ); TAINT_NOT; return 0; +#else + return runops_standard(); +#endif /* DEBUGGING */ } I32 debop(OP *o) { +#ifdef DEBUGGING SV *sv; deb("%s", op_name[o->op_type]); switch (o->op_type) { @@ -84,29 +97,35 @@ debop(OP *o) break; } PerlIO_printf(Perl_debug_log, "\n"); +#endif /* DEBUGGING */ return 0; } void watch(char **addr) { +#ifdef DEBUGGING watchaddr = addr; watchok = *addr; PerlIO_printf(Perl_debug_log, "WATCHING, %lx is currently %lx\n", (long)watchaddr, (long)watchok); +#endif /* DEBUGGING */ } -static void +STATIC void debprof(OP *o) { +#ifdef DEBUGGING if (!profiledata) New(000, profiledata, MAXO, U32); ++profiledata[o->op_type]; +#endif /* DEBUGGING */ } void debprofdump(void) { +#ifdef DEBUGGING unsigned i; if (!profiledata) return; @@ -115,7 +134,5 @@ debprofdump(void) PerlIO_printf(Perl_debug_log, "%u\t%lu\n", i, (unsigned long)profiledata[i]); } +#endif /* DEBUGGING */ } - -#endif -