X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=run.c;h=b4b9b903875de924b6d2dcb35e69336619b87749;hb=41d39f3045c8f89e3965ec33f17acd39dcfa09eb;hp=d1c9aca7f8980a71d2d00a89058be2fb9ccfecb5;hpb=79072805bf63abe5b5978b5928ab00d360ea3e7f;p=p5sagit%2Fp5-mst-13.2.git diff --git a/run.c b/run.c index d1c9aca..b4b9b90 100644 --- a/run.c +++ b/run.c @@ -1,74 +1,30 @@ +/* run.c + * + * Copyright (c) 1991-2002, Larry Wall + * + * You may distribute under the terms of either the GNU General Public + * License or the Artistic License, as specified in the README file. + * + */ + #include "EXTERN.h" +#define PERL_IN_RUN_C #include "perl.h" -char **watchaddr = 0; -char *watchok; - -#ifndef DEBUGGING - -run() { - while ( op = (*op->op_ppaddr)() ) ; -} - -#else - -run() { - if (!op) { - warn("NULL OP IN RUN"); - return; - } - do { - if (debug) { - if (watchaddr != 0 && *watchaddr != watchok) - fprintf(stderr, "WARNING: %lx changed from %lx to %lx\n", - watchaddr, watchok, *watchaddr); - DEBUG_s(debstack()); - DEBUG_t(debop(op)); - } - } while ( op = (*op->op_ppaddr)() ); -} +/* + * "Away now, Shadowfax! Run, greatheart, run as you have never run before! + * Now we are come to the lands where you were foaled, and every stone you + * know. Run now! Hope is in speed!" --Gandalf + */ -#endif - -I32 -getgimme(op) -OP *op; -{ - return cxstack[cxstack_ix].blk_gimme; -} - -I32 -debop(op) -OP *op; +int +Perl_runops_standard(pTHX) { - SV *sv; - deb("%s", op_name[op->op_type]); - switch (op->op_type) { - case OP_CONST: - fprintf(stderr, "(%s)", SvPEEK(cSVOP->op_sv)); - break; - case OP_GVSV: - case OP_GV: - if (cGVOP->op_gv) { - sv = NEWSV(0,0); - gv_fullname(sv, cGVOP->op_gv); - fprintf(stderr, "(%s)", SvPVn(sv)); - sv_free(sv); - } - else - fprintf(stderr, "(NULL)"); - break; + while ((PL_op = CALL_FPTR(PL_op->op_ppaddr)(aTHX))) { + PERL_ASYNC_CHECK(); } - fprintf(stderr, "\n"); + + TAINT_NOT; return 0; } -void -watch(addr) -char **addr; -{ - watchaddr = addr; - watchok = *addr; - fprintf(stderr, "WATCHING, %lx is currently %lx\n", - watchaddr, watchok); -}