3 * Copyright (c) 1991-1997, Larry Wall
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
14 * "Away now, Shadowfax! Run, greatheart, run as you have never run before!
15 * Now we are come to the lands where you were foaled, and every stone you
16 * know. Run now! Hope is in speed!" --Gandalf
19 dEXT char **watchaddr = 0;
30 while ( op = (*op->op_ppaddr)(ARGS) ) ;
38 static void debprof _((OP*o));
44 warn("NULL OP IN RUN");
53 if (watchaddr != 0 && *watchaddr != watchok)
54 PerlIO_printf(Perl_debug_log, "WARNING: %lx changed from %lx to %lx\n",
55 (long)watchaddr, (long)watchok, (long)*watchaddr);
60 } while ( op = (*op->op_ppaddr)(ARGS) );
71 deb("%s", op_name[o->op_type]);
74 PerlIO_printf(Perl_debug_log, "(%s)", SvPEEK(cSVOPo->op_sv));
80 gv_fullname3(sv, cGVOPo->op_gv, Nullch);
81 PerlIO_printf(Perl_debug_log, "(%s)", SvPV(sv, na));
85 PerlIO_printf(Perl_debug_log, "(NULL)");
90 PerlIO_printf(Perl_debug_log, "\n");
100 PerlIO_printf(Perl_debug_log, "WATCHING, %lx is currently %lx\n",
101 (long)watchaddr, (long)watchok);
109 New(000, profiledata, MAXO, U32);
110 ++profiledata[o->op_type];
119 for (i = 0; i < MAXO; i++) {
121 PerlIO_printf(Perl_debug_log,
122 "%u\t%lu\n", i, (unsigned long)profiledata[i]);