3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 * 2000, 2001, 2002, 2003, 2004, 2005, by Larry Wall and others
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
12 * "'You have talked long in your sleep, Frodo,' said Gandalf gently, 'and
13 * it has not been hard for me to read your mind and memory.'"
16 /* This file contains utility routines to dump the contents of SV and OP
17 * structures, as used by command-line options like -Dt and -Dx, and
20 * It also holds the debugging version of the runops function.
24 #define PERL_IN_DUMP_C
30 #define Sequence PL_op_sequence
33 Perl_dump_indent(pTHX_ I32 level, PerlIO *file, const char* pat, ...)
37 dump_vindent(level, file, pat, &args);
42 Perl_dump_vindent(pTHX_ I32 level, PerlIO *file, const char* pat, va_list *args)
44 PerlIO_printf(file, "%*s", (int)(level*PL_dumpindent), "");
45 PerlIO_vprintf(file, pat, *args);
51 PerlIO_setlinebuf(Perl_debug_log);
53 op_dump(PL_main_root);
54 dump_packsubs(PL_defstash);
58 Perl_dump_packsubs(pTHX_ const HV *stash)
64 for (i = 0; i <= (I32) HvMAX(stash); i++) {
66 for (entry = HvARRAY(stash)[i]; entry; entry = HeNEXT(entry)) {
67 const GV *gv = (GV*)HeVAL(entry);
69 if (SvTYPE(gv) != SVt_PVGV || !GvGP(gv))
75 if (HeKEY(entry)[HeKLEN(entry)-1] == ':'
76 && (hv = GvHV(gv)) && hv != PL_defstash)
77 dump_packsubs(hv); /* nested package */
83 Perl_dump_sub(pTHX_ const GV *gv)
85 SV * const sv = sv_newmortal();
87 gv_fullname3(sv, gv, Nullch);
88 Perl_dump_indent(aTHX_ 0, Perl_debug_log, "\nSUB %s = ", SvPVX_const(sv));
90 Perl_dump_indent(aTHX_ 0, Perl_debug_log, "(xsub 0x%"UVxf" %d)\n",
91 PTR2UV(CvXSUB(GvCV(gv))),
92 (int)CvXSUBANY(GvCV(gv)).any_i32);
93 else if (CvROOT(GvCV(gv)))
94 op_dump(CvROOT(GvCV(gv)));
96 Perl_dump_indent(aTHX_ 0, Perl_debug_log, "<undef>\n");
100 Perl_dump_form(pTHX_ const GV *gv)
102 SV * const sv = sv_newmortal();
104 gv_fullname3(sv, gv, Nullch);
105 Perl_dump_indent(aTHX_ 0, Perl_debug_log, "\nFORMAT %s = ", SvPVX_const(sv));
106 if (CvROOT(GvFORM(gv)))
107 op_dump(CvROOT(GvFORM(gv)));
109 Perl_dump_indent(aTHX_ 0, Perl_debug_log, "<undef>\n");
115 op_dump(PL_eval_root);
119 Perl_pv_display(pTHX_ SV *dsv, const char *pv, STRLEN cur, STRLEN len, STRLEN pvlim)
121 const bool nul_terminated = len > cur && pv[cur] == '\0';
124 sv_setpvn(dsv, "\"", 1);
125 for (; cur--; pv++) {
126 if (pvlim && SvCUR(dsv) >= pvlim) {
131 case '\t': sv_catpvn(dsv, "\\t", 2); break;
132 case '\n': sv_catpvn(dsv, "\\n", 2); break;
133 case '\r': sv_catpvn(dsv, "\\r", 2); break;
134 case '\f': sv_catpvn(dsv, "\\f", 2); break;
135 case '"': sv_catpvn(dsv, "\\\"", 2); break;
136 case '\\': sv_catpvn(dsv, "\\\\", 2); break;
139 sv_catpvn(dsv, pv, 1);
140 else if (cur && isDIGIT(*(pv+1)))
141 Perl_sv_catpvf(aTHX_ dsv, "\\%03o", (U8)*pv);
143 Perl_sv_catpvf(aTHX_ dsv, "\\%o", (U8)*pv);
146 sv_catpvn(dsv, "\"", 1);
148 sv_catpvn(dsv, "...", 3);
150 sv_catpvn(dsv, "\\0", 2);
156 Perl_sv_peek(pTHX_ SV *sv)
159 SV * const t = sv_newmortal();
168 else if (sv == (SV*)0x55555555 || SvTYPE(sv) == 'U') {
172 else if (sv == &PL_sv_undef || sv == &PL_sv_no || sv == &PL_sv_yes || sv == &PL_sv_placeholder) {
173 if (sv == &PL_sv_undef) {
174 sv_catpv(t, "SV_UNDEF");
175 if (!(SvFLAGS(sv) & (SVf_OK|SVf_OOK|SVs_OBJECT|
176 SVs_GMG|SVs_SMG|SVs_RMG)) &&
180 else if (sv == &PL_sv_no) {
181 sv_catpv(t, "SV_NO");
182 if (!(SvFLAGS(sv) & (SVf_ROK|SVf_OOK|SVs_OBJECT|
183 SVs_GMG|SVs_SMG|SVs_RMG)) &&
184 !(~SvFLAGS(sv) & (SVf_POK|SVf_NOK|SVf_READONLY|
190 else if (sv == &PL_sv_yes) {
191 sv_catpv(t, "SV_YES");
192 if (!(SvFLAGS(sv) & (SVf_ROK|SVf_OOK|SVs_OBJECT|
193 SVs_GMG|SVs_SMG|SVs_RMG)) &&
194 !(~SvFLAGS(sv) & (SVf_POK|SVf_NOK|SVf_READONLY|
197 SvPVX_const(sv) && *SvPVX_const(sv) == '1' &&
202 sv_catpv(t, "SV_PLACEHOLDER");
203 if (!(SvFLAGS(sv) & (SVf_OK|SVf_OOK|SVs_OBJECT|
204 SVs_GMG|SVs_SMG|SVs_RMG)) &&
210 else if (SvREFCNT(sv) == 0) {
214 else if (DEBUG_R_TEST_) {
217 /* is this SV on the tmps stack? */
218 for (ix=PL_tmps_ix; ix>=0; ix--) {
219 if (PL_tmps_stack[ix] == sv) {
224 if (SvREFCNT(sv) > 1)
225 Perl_sv_catpvf(aTHX_ t, "<%"UVuf"%s>", (UV)SvREFCNT(sv),
233 if (SvCUR(t) + unref > 10) {
234 SvCUR_set(t, unref + 3);
242 switch (SvTYPE(sv)) {
244 sv_catpv(t, "FREED");
248 sv_catpv(t, "UNDEF");
282 Perl_sv_catpvf(aTHX_ t, "CV(%s)", GvNAME(CvGV(sv)));
301 if (!SvPVX_const(sv))
302 sv_catpv(t, "(null)");
304 SV *tmp = newSVpvn("", 0);
307 Perl_sv_catpvf(aTHX_ t, "[%s]", pv_display(tmp, SvPVX_const(sv)-SvIVX(sv), SvIVX(sv), 0, 127));
308 Perl_sv_catpvf(aTHX_ t, "%s)", pv_display(tmp, SvPVX_const(sv), SvCUR(sv), SvLEN(sv), 127));
310 Perl_sv_catpvf(aTHX_ t, " [UTF8 \"%s\"]",
311 sv_uni_display(tmp, sv, 8 * sv_len_utf8(sv),
316 else if (SvNOKp(sv)) {
317 STORE_NUMERIC_LOCAL_SET_STANDARD();
318 Perl_sv_catpvf(aTHX_ t, "(%"NVgf")",SvNVX(sv));
319 RESTORE_NUMERIC_LOCAL();
321 else if (SvIOKp(sv)) {
323 Perl_sv_catpvf(aTHX_ t, "(%"UVuf")", (UV)SvUVX(sv));
325 Perl_sv_catpvf(aTHX_ t, "(%"IVdf")", (IV)SvIVX(sv));
335 return SvPV_nolen(t);
339 Perl_do_pmop_dump(pTHX_ I32 level, PerlIO *file, const PMOP *pm)
344 Perl_dump_indent(aTHX_ level, file, "{}\n");
347 Perl_dump_indent(aTHX_ level, file, "{\n");
349 if (pm->op_pmflags & PMf_ONCE)
354 Perl_dump_indent(aTHX_ level, file, "PMf_PRE %c%s%c%s\n",
355 ch, PM_GETRE(pm)->precomp, ch,
356 (pm->op_private & OPpRUNTIME) ? " (RUNTIME)" : "");
358 Perl_dump_indent(aTHX_ level, file, "PMf_PRE (RUNTIME)\n");
359 if (pm->op_type != OP_PUSHRE && pm->op_pmreplroot) {
360 Perl_dump_indent(aTHX_ level, file, "PMf_REPL = ");
361 op_dump(pm->op_pmreplroot);
363 if (pm->op_pmflags || (PM_GETRE(pm) && PM_GETRE(pm)->check_substr)) {
364 SV *tmpsv = newSVpvn("", 0);
365 if (pm->op_pmdynflags & PMdf_USED)
366 sv_catpv(tmpsv, ",USED");
367 if (pm->op_pmdynflags & PMdf_TAINTED)
368 sv_catpv(tmpsv, ",TAINTED");
369 if (pm->op_pmflags & PMf_ONCE)
370 sv_catpv(tmpsv, ",ONCE");
371 if (PM_GETRE(pm) && PM_GETRE(pm)->check_substr
372 && !(PM_GETRE(pm)->reganch & ROPT_NOSCAN))
373 sv_catpv(tmpsv, ",SCANFIRST");
374 if (PM_GETRE(pm) && PM_GETRE(pm)->check_substr
375 && PM_GETRE(pm)->reganch & ROPT_CHECK_ALL)
376 sv_catpv(tmpsv, ",ALL");
377 if (pm->op_pmflags & PMf_SKIPWHITE)
378 sv_catpv(tmpsv, ",SKIPWHITE");
379 if (pm->op_pmflags & PMf_CONST)
380 sv_catpv(tmpsv, ",CONST");
381 if (pm->op_pmflags & PMf_KEEP)
382 sv_catpv(tmpsv, ",KEEP");
383 if (pm->op_pmflags & PMf_GLOBAL)
384 sv_catpv(tmpsv, ",GLOBAL");
385 if (pm->op_pmflags & PMf_CONTINUE)
386 sv_catpv(tmpsv, ",CONTINUE");
387 if (pm->op_pmflags & PMf_RETAINT)
388 sv_catpv(tmpsv, ",RETAINT");
389 if (pm->op_pmflags & PMf_EVAL)
390 sv_catpv(tmpsv, ",EVAL");
391 Perl_dump_indent(aTHX_ level, file, "PMFLAGS = (%s)\n", SvCUR(tmpsv) ? SvPVX_const(tmpsv) + 1 : "");
395 Perl_dump_indent(aTHX_ level-1, file, "}\n");
399 Perl_pmop_dump(pTHX_ PMOP *pm)
401 do_pmop_dump(0, Perl_debug_log, pm);
404 /* An op sequencer. We visit the ops in the order they're to execute. */
407 S_sequence(pTHX_ register const OP *o)
422 for (; o; o = o->op_next) {
423 op = newSVuv(PTR2UV(o));
424 key = SvPV_const(op, len);
425 if (hv_exists(Sequence, key, len))
428 switch (o->op_type) {
430 if ((o->op_flags & OPf_WANT) != OPf_WANT_LIST) {
431 hv_store(Sequence, key, len, newSVuv(++PL_op_seq), 0);
436 if (oldop && o->op_next)
443 if (oldop && o->op_next)
445 hv_store(Sequence, key, len, newSVuv(++PL_op_seq), 0);
458 hv_store(Sequence, key, len, newSVuv(++PL_op_seq), 0);
459 for (l = cLOGOPo->op_other; l && l->op_type == OP_NULL; l = l->op_next)
466 hv_store(Sequence, key, len, newSVuv(++PL_op_seq), 0);
467 for (l = cLOOPo->op_redoop; l && l->op_type == OP_NULL; l = l->op_next)
470 for (l = cLOOPo->op_nextop; l && l->op_type == OP_NULL; l = l->op_next)
473 for (l = cLOOPo->op_lastop; l && l->op_type == OP_NULL; l = l->op_next)
481 hv_store(Sequence, key, len, newSVuv(++PL_op_seq), 0);
482 for (l = cPMOPo->op_pmreplstart; l && l->op_type == OP_NULL; l = l->op_next)
491 hv_store(Sequence, key, len, newSVuv(++PL_op_seq), 0);
499 S_sequence_num(pTHX_ const OP *o)
507 op = newSVuv(PTR2UV(o));
508 key = SvPV_const(op, len);
509 seq = hv_fetch(Sequence, key, len, 0);
510 return seq ? SvUV(*seq): 0;
514 Perl_do_op_dump(pTHX_ I32 level, PerlIO *file, const OP *o)
519 Perl_dump_indent(aTHX_ level, file, "{\n");
521 seq = sequence_num(o);
523 PerlIO_printf(file, "%-4"UVf, seq);
525 PerlIO_printf(file, " ");
527 "%*sTYPE = %s ===> ",
528 (int)(PL_dumpindent*level-4), "", OP_NAME(o));
530 PerlIO_printf(file, seq ? "%"UVf"\n" : "(%"UVf")\n",
531 sequence_num(o->op_next));
533 PerlIO_printf(file, "DONE\n");
535 if (o->op_type == OP_NULL)
537 Perl_dump_indent(aTHX_ level, file, " (was %s)\n", PL_op_name[o->op_targ]);
538 if (o->op_targ == OP_NEXTSTATE)
541 Perl_dump_indent(aTHX_ level, file, "LINE = %"UVf"\n",
543 if (CopSTASHPV(cCOPo))
544 Perl_dump_indent(aTHX_ level, file, "PACKAGE = \"%s\"\n",
546 if (cCOPo->cop_label)
547 Perl_dump_indent(aTHX_ level, file, "LABEL = \"%s\"\n",
552 Perl_dump_indent(aTHX_ level, file, "TARG = %ld\n", (long)o->op_targ);
555 Perl_dump_indent(aTHX_ level, file, "ADDR = 0x%"UVxf" => 0x%"UVxf"\n", (UV)o, (UV)o->op_next);
558 SV *tmpsv = newSVpvn("", 0);
559 switch (o->op_flags & OPf_WANT) {
561 sv_catpv(tmpsv, ",VOID");
563 case OPf_WANT_SCALAR:
564 sv_catpv(tmpsv, ",SCALAR");
567 sv_catpv(tmpsv, ",LIST");
570 sv_catpv(tmpsv, ",UNKNOWN");
573 if (o->op_flags & OPf_KIDS)
574 sv_catpv(tmpsv, ",KIDS");
575 if (o->op_flags & OPf_PARENS)
576 sv_catpv(tmpsv, ",PARENS");
577 if (o->op_flags & OPf_STACKED)
578 sv_catpv(tmpsv, ",STACKED");
579 if (o->op_flags & OPf_REF)
580 sv_catpv(tmpsv, ",REF");
581 if (o->op_flags & OPf_MOD)
582 sv_catpv(tmpsv, ",MOD");
583 if (o->op_flags & OPf_SPECIAL)
584 sv_catpv(tmpsv, ",SPECIAL");
585 Perl_dump_indent(aTHX_ level, file, "FLAGS = (%s)\n", SvCUR(tmpsv) ? SvPVX_const(tmpsv) + 1 : "");
589 SV *tmpsv = newSVpvn("", 0);
590 if (PL_opargs[o->op_type] & OA_TARGLEX) {
591 if (o->op_private & OPpTARGET_MY)
592 sv_catpv(tmpsv, ",TARGET_MY");
594 else if (o->op_type == OP_LEAVESUB ||
595 o->op_type == OP_LEAVE ||
596 o->op_type == OP_LEAVESUBLV ||
597 o->op_type == OP_LEAVEWRITE) {
598 if (o->op_private & OPpREFCOUNTED)
599 sv_catpv(tmpsv, ",REFCOUNTED");
601 else if (o->op_type == OP_AASSIGN) {
602 if (o->op_private & OPpASSIGN_COMMON)
603 sv_catpv(tmpsv, ",COMMON");
605 else if (o->op_type == OP_SASSIGN) {
606 if (o->op_private & OPpASSIGN_BACKWARDS)
607 sv_catpv(tmpsv, ",BACKWARDS");
609 else if (o->op_type == OP_TRANS) {
610 if (o->op_private & OPpTRANS_SQUASH)
611 sv_catpv(tmpsv, ",SQUASH");
612 if (o->op_private & OPpTRANS_DELETE)
613 sv_catpv(tmpsv, ",DELETE");
614 if (o->op_private & OPpTRANS_COMPLEMENT)
615 sv_catpv(tmpsv, ",COMPLEMENT");
616 if (o->op_private & OPpTRANS_IDENTICAL)
617 sv_catpv(tmpsv, ",IDENTICAL");
618 if (o->op_private & OPpTRANS_GROWS)
619 sv_catpv(tmpsv, ",GROWS");
621 else if (o->op_type == OP_REPEAT) {
622 if (o->op_private & OPpREPEAT_DOLIST)
623 sv_catpv(tmpsv, ",DOLIST");
625 else if (o->op_type == OP_ENTERSUB ||
626 o->op_type == OP_RV2SV ||
627 o->op_type == OP_GVSV ||
628 o->op_type == OP_RV2AV ||
629 o->op_type == OP_RV2HV ||
630 o->op_type == OP_RV2GV ||
631 o->op_type == OP_AELEM ||
632 o->op_type == OP_HELEM )
634 if (o->op_type == OP_ENTERSUB) {
635 if (o->op_private & OPpENTERSUB_AMPER)
636 sv_catpv(tmpsv, ",AMPER");
637 if (o->op_private & OPpENTERSUB_DB)
638 sv_catpv(tmpsv, ",DB");
639 if (o->op_private & OPpENTERSUB_HASTARG)
640 sv_catpv(tmpsv, ",HASTARG");
641 if (o->op_private & OPpENTERSUB_NOPAREN)
642 sv_catpv(tmpsv, ",NOPAREN");
643 if (o->op_private & OPpENTERSUB_INARGS)
644 sv_catpv(tmpsv, ",INARGS");
645 if (o->op_private & OPpENTERSUB_NOMOD)
646 sv_catpv(tmpsv, ",NOMOD");
649 switch (o->op_private & OPpDEREF) {
651 sv_catpv(tmpsv, ",SV");
654 sv_catpv(tmpsv, ",AV");
657 sv_catpv(tmpsv, ",HV");
660 if (o->op_private & OPpMAYBE_LVSUB)
661 sv_catpv(tmpsv, ",MAYBE_LVSUB");
663 if (o->op_type == OP_AELEM || o->op_type == OP_HELEM) {
664 if (o->op_private & OPpLVAL_DEFER)
665 sv_catpv(tmpsv, ",LVAL_DEFER");
668 if (o->op_private & HINT_STRICT_REFS)
669 sv_catpv(tmpsv, ",STRICT_REFS");
670 if (o->op_private & OPpOUR_INTRO)
671 sv_catpv(tmpsv, ",OUR_INTRO");
674 else if (o->op_type == OP_CONST) {
675 if (o->op_private & OPpCONST_BARE)
676 sv_catpv(tmpsv, ",BARE");
677 if (o->op_private & OPpCONST_STRICT)
678 sv_catpv(tmpsv, ",STRICT");
679 if (o->op_private & OPpCONST_ARYBASE)
680 sv_catpv(tmpsv, ",ARYBASE");
681 if (o->op_private & OPpCONST_WARNING)
682 sv_catpv(tmpsv, ",WARNING");
683 if (o->op_private & OPpCONST_ENTERED)
684 sv_catpv(tmpsv, ",ENTERED");
686 else if (o->op_type == OP_FLIP) {
687 if (o->op_private & OPpFLIP_LINENUM)
688 sv_catpv(tmpsv, ",LINENUM");
690 else if (o->op_type == OP_FLOP) {
691 if (o->op_private & OPpFLIP_LINENUM)
692 sv_catpv(tmpsv, ",LINENUM");
694 else if (o->op_type == OP_RV2CV) {
695 if (o->op_private & OPpLVAL_INTRO)
696 sv_catpv(tmpsv, ",INTRO");
698 else if (o->op_type == OP_GV) {
699 if (o->op_private & OPpEARLY_CV)
700 sv_catpv(tmpsv, ",EARLY_CV");
702 else if (o->op_type == OP_LIST) {
703 if (o->op_private & OPpLIST_GUESSED)
704 sv_catpv(tmpsv, ",GUESSED");
706 else if (o->op_type == OP_DELETE) {
707 if (o->op_private & OPpSLICE)
708 sv_catpv(tmpsv, ",SLICE");
710 else if (o->op_type == OP_EXISTS) {
711 if (o->op_private & OPpEXISTS_SUB)
712 sv_catpv(tmpsv, ",EXISTS_SUB");
714 else if (o->op_type == OP_SORT) {
715 if (o->op_private & OPpSORT_NUMERIC)
716 sv_catpv(tmpsv, ",NUMERIC");
717 if (o->op_private & OPpSORT_INTEGER)
718 sv_catpv(tmpsv, ",INTEGER");
719 if (o->op_private & OPpSORT_REVERSE)
720 sv_catpv(tmpsv, ",REVERSE");
722 else if (o->op_type == OP_THREADSV) {
723 if (o->op_private & OPpDONE_SVREF)
724 sv_catpv(tmpsv, ",SVREF");
726 else if (o->op_type == OP_OPEN || o->op_type == OP_BACKTICK) {
727 if (o->op_private & OPpOPEN_IN_RAW)
728 sv_catpv(tmpsv, ",IN_RAW");
729 if (o->op_private & OPpOPEN_IN_CRLF)
730 sv_catpv(tmpsv, ",IN_CRLF");
731 if (o->op_private & OPpOPEN_OUT_RAW)
732 sv_catpv(tmpsv, ",OUT_RAW");
733 if (o->op_private & OPpOPEN_OUT_CRLF)
734 sv_catpv(tmpsv, ",OUT_CRLF");
736 else if (o->op_type == OP_EXIT) {
737 if (o->op_private & OPpEXIT_VMSISH)
738 sv_catpv(tmpsv, ",EXIT_VMSISH");
739 if (o->op_private & OPpHUSH_VMSISH)
740 sv_catpv(tmpsv, ",HUSH_VMSISH");
742 else if (o->op_type == OP_DIE) {
743 if (o->op_private & OPpHUSH_VMSISH)
744 sv_catpv(tmpsv, ",HUSH_VMSISH");
746 else if (PL_check[o->op_type] != MEMBER_TO_FPTR(Perl_ck_ftst)) {
747 if (OP_IS_FILETEST_ACCESS(o) && o->op_private & OPpFT_ACCESS)
748 sv_catpv(tmpsv, ",FT_ACCESS");
749 if (o->op_private & OPpFT_STACKED)
750 sv_catpv(tmpsv, ",FT_STACKED");
752 if (o->op_flags & OPf_MOD && o->op_private & OPpLVAL_INTRO)
753 sv_catpv(tmpsv, ",INTRO");
755 Perl_dump_indent(aTHX_ level, file, "PRIVATE = (%s)\n", SvPVX_const(tmpsv) + 1);
759 switch (o->op_type) {
764 Perl_dump_indent(aTHX_ level, file, "PADIX = %" IVdf "\n", (IV)cPADOPo->op_padix);
766 if ( ! PL_op->op_flags & OPf_SPECIAL) { /* not lexical */
768 SV *tmpsv = NEWSV(0,0);
771 gv_fullname3(tmpsv, (GV*)cSVOPo->op_sv, Nullch);
772 Perl_dump_indent(aTHX_ level, file, "GV = %s\n",
773 SvPV_nolen_const(tmpsv));
777 Perl_dump_indent(aTHX_ level, file, "GV = NULL\n");
782 case OP_METHOD_NAMED:
784 /* with ITHREADS, consts are stored in the pad, and the right pad
785 * may not be active here, so skip */
786 Perl_dump_indent(aTHX_ level, file, "SV = %s\n", SvPEEK(cSVOPo_sv));
793 Perl_dump_indent(aTHX_ level, file, "LINE = %"UVf"\n",
795 if (CopSTASHPV(cCOPo))
796 Perl_dump_indent(aTHX_ level, file, "PACKAGE = \"%s\"\n",
798 if (cCOPo->cop_label)
799 Perl_dump_indent(aTHX_ level, file, "LABEL = \"%s\"\n",
803 Perl_dump_indent(aTHX_ level, file, "REDO ===> ");
804 if (cLOOPo->op_redoop)
805 PerlIO_printf(file, "%"UVf"\n", sequence_num(cLOOPo->op_redoop));
807 PerlIO_printf(file, "DONE\n");
808 Perl_dump_indent(aTHX_ level, file, "NEXT ===> ");
809 if (cLOOPo->op_nextop)
810 PerlIO_printf(file, "%"UVf"\n", sequence_num(cLOOPo->op_nextop));
812 PerlIO_printf(file, "DONE\n");
813 Perl_dump_indent(aTHX_ level, file, "LAST ===> ");
814 if (cLOOPo->op_lastop)
815 PerlIO_printf(file, "%"UVf"\n", sequence_num(cLOOPo->op_lastop));
817 PerlIO_printf(file, "DONE\n");
825 Perl_dump_indent(aTHX_ level, file, "OTHER ===> ");
826 if (cLOGOPo->op_other)
827 PerlIO_printf(file, "%"UVf"\n", sequence_num(cLOGOPo->op_other));
829 PerlIO_printf(file, "DONE\n");
835 do_pmop_dump(level, file, cPMOPo);
843 if (o->op_private & OPpREFCOUNTED)
844 Perl_dump_indent(aTHX_ level, file, "REFCNT = %"UVuf"\n", (UV)o->op_targ);
849 if (o->op_flags & OPf_KIDS) {
851 for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling)
852 do_op_dump(level, file, kid);
854 Perl_dump_indent(aTHX_ level-1, file, "}\n");
858 Perl_op_dump(pTHX_ const OP *o)
860 do_op_dump(0, Perl_debug_log, o);
864 Perl_gv_dump(pTHX_ GV *gv)
869 PerlIO_printf(Perl_debug_log, "{}\n");
873 PerlIO_printf(Perl_debug_log, "{\n");
874 gv_fullname3(sv, gv, Nullch);
875 Perl_dump_indent(aTHX_ 1, Perl_debug_log, "GV_NAME = %s", SvPVX_const(sv));
876 if (gv != GvEGV(gv)) {
877 gv_efullname3(sv, GvEGV(gv), Nullch);
878 Perl_dump_indent(aTHX_ 1, Perl_debug_log, "-> %s", SvPVX_const(sv));
880 PerlIO_putc(Perl_debug_log, '\n');
881 Perl_dump_indent(aTHX_ 0, Perl_debug_log, "}\n");
885 /* map magic types to the symbolic names
886 * (with the PERL_MAGIC_ prefixed stripped)
889 static const struct { const char type; const char *name; } magic_names[] = {
890 { PERL_MAGIC_sv, "sv(\\0)" },
891 { PERL_MAGIC_arylen, "arylen(#)" },
892 { PERL_MAGIC_rhash, "rhash(%)" },
893 { PERL_MAGIC_glob, "glob(*)" },
894 { PERL_MAGIC_pos, "pos(.)" },
895 { PERL_MAGIC_symtab, "symtab(:)" },
896 { PERL_MAGIC_backref, "backref(<)" },
897 { PERL_MAGIC_arylen_p, "arylen_p(@)" },
898 { PERL_MAGIC_overload, "overload(A)" },
899 { PERL_MAGIC_bm, "bm(B)" },
900 { PERL_MAGIC_regdata, "regdata(D)" },
901 { PERL_MAGIC_env, "env(E)" },
902 { PERL_MAGIC_isa, "isa(I)" },
903 { PERL_MAGIC_dbfile, "dbfile(L)" },
904 { PERL_MAGIC_shared, "shared(N)" },
905 { PERL_MAGIC_tied, "tied(P)" },
906 { PERL_MAGIC_sig, "sig(S)" },
907 { PERL_MAGIC_uvar, "uvar(U)" },
908 { PERL_MAGIC_overload_elem, "overload_elem(a)" },
909 { PERL_MAGIC_overload_table, "overload_table(c)" },
910 { PERL_MAGIC_regdatum, "regdatum(d)" },
911 { PERL_MAGIC_envelem, "envelem(e)" },
912 { PERL_MAGIC_fm, "fm(f)" },
913 { PERL_MAGIC_regex_global, "regex_global(g)" },
914 { PERL_MAGIC_isaelem, "isaelem(i)" },
915 { PERL_MAGIC_nkeys, "nkeys(k)" },
916 { PERL_MAGIC_dbline, "dbline(l)" },
917 { PERL_MAGIC_mutex, "mutex(m)" },
918 { PERL_MAGIC_shared_scalar, "shared_scalar(n)" },
919 { PERL_MAGIC_collxfrm, "collxfrm(o)" },
920 { PERL_MAGIC_tiedelem, "tiedelem(p)" },
921 { PERL_MAGIC_tiedscalar, "tiedscalar(q)" },
922 { PERL_MAGIC_qr, "qr(r)" },
923 { PERL_MAGIC_sigelem, "sigelem(s)" },
924 { PERL_MAGIC_taint, "taint(t)" },
925 { PERL_MAGIC_uvar_elem, "uvar_elem(v)" },
926 { PERL_MAGIC_vec, "vec(v)" },
927 { PERL_MAGIC_vstring, "vstring(V)" },
928 { PERL_MAGIC_utf8, "utf8(w)" },
929 { PERL_MAGIC_substr, "substr(x)" },
930 { PERL_MAGIC_defelem, "defelem(y)" },
931 { PERL_MAGIC_ext, "ext(~)" },
932 /* this null string terminates the list */
937 Perl_do_magic_dump(pTHX_ I32 level, PerlIO *file, const MAGIC *mg, I32 nest, I32 maxnest, bool dumpops, STRLEN pvlim)
939 for (; mg; mg = mg->mg_moremagic) {
940 Perl_dump_indent(aTHX_ level, file,
941 " MAGIC = 0x%"UVxf"\n", PTR2UV(mg));
942 if (mg->mg_virtual) {
943 const MGVTBL * const v = mg->mg_virtual;
945 if (v == &PL_vtbl_sv) s = "sv";
946 else if (v == &PL_vtbl_env) s = "env";
947 else if (v == &PL_vtbl_envelem) s = "envelem";
948 else if (v == &PL_vtbl_sig) s = "sig";
949 else if (v == &PL_vtbl_sigelem) s = "sigelem";
950 else if (v == &PL_vtbl_pack) s = "pack";
951 else if (v == &PL_vtbl_packelem) s = "packelem";
952 else if (v == &PL_vtbl_dbline) s = "dbline";
953 else if (v == &PL_vtbl_isa) s = "isa";
954 else if (v == &PL_vtbl_arylen) s = "arylen";
955 else if (v == &PL_vtbl_glob) s = "glob";
956 else if (v == &PL_vtbl_mglob) s = "mglob";
957 else if (v == &PL_vtbl_nkeys) s = "nkeys";
958 else if (v == &PL_vtbl_taint) s = "taint";
959 else if (v == &PL_vtbl_substr) s = "substr";
960 else if (v == &PL_vtbl_vec) s = "vec";
961 else if (v == &PL_vtbl_pos) s = "pos";
962 else if (v == &PL_vtbl_bm) s = "bm";
963 else if (v == &PL_vtbl_fm) s = "fm";
964 else if (v == &PL_vtbl_uvar) s = "uvar";
965 else if (v == &PL_vtbl_defelem) s = "defelem";
966 #ifdef USE_LOCALE_COLLATE
967 else if (v == &PL_vtbl_collxfrm) s = "collxfrm";
969 else if (v == &PL_vtbl_amagic) s = "amagic";
970 else if (v == &PL_vtbl_amagicelem) s = "amagicelem";
971 else if (v == &PL_vtbl_backref) s = "backref";
972 else if (v == &PL_vtbl_utf8) s = "utf8";
973 else if (v == &PL_vtbl_arylen_p) s = "arylen_p";
975 Perl_dump_indent(aTHX_ level, file, " MG_VIRTUAL = &PL_vtbl_%s\n", s);
977 Perl_dump_indent(aTHX_ level, file, " MG_VIRTUAL = 0x%"UVxf"\n", PTR2UV(v));
980 Perl_dump_indent(aTHX_ level, file, " MG_VIRTUAL = 0\n");
983 Perl_dump_indent(aTHX_ level, file, " MG_PRIVATE = %d\n", mg->mg_private);
987 const char *name = 0;
988 for (n = 0; magic_names[n].name; n++) {
989 if (mg->mg_type == magic_names[n].type) {
990 name = magic_names[n].name;
995 Perl_dump_indent(aTHX_ level, file,
996 " MG_TYPE = PERL_MAGIC_%s\n", name);
998 Perl_dump_indent(aTHX_ level, file,
999 " MG_TYPE = UNKNOWN(\\%o)\n", mg->mg_type);
1003 Perl_dump_indent(aTHX_ level, file, " MG_FLAGS = 0x%02X\n", mg->mg_flags);
1004 if (mg->mg_type == PERL_MAGIC_envelem &&
1005 mg->mg_flags & MGf_TAINTEDDIR)
1006 Perl_dump_indent(aTHX_ level, file, " TAINTEDDIR\n");
1007 if (mg->mg_flags & MGf_REFCOUNTED)
1008 Perl_dump_indent(aTHX_ level, file, " REFCOUNTED\n");
1009 if (mg->mg_flags & MGf_GSKIP)
1010 Perl_dump_indent(aTHX_ level, file, " GSKIP\n");
1011 if (mg->mg_type == PERL_MAGIC_regex_global &&
1012 mg->mg_flags & MGf_MINMATCH)
1013 Perl_dump_indent(aTHX_ level, file, " MINMATCH\n");
1016 Perl_dump_indent(aTHX_ level, file, " MG_OBJ = 0x%"UVxf"\n", PTR2UV(mg->mg_obj));
1017 if (mg->mg_flags & MGf_REFCOUNTED)
1018 do_sv_dump(level+2, file, mg->mg_obj, nest+1, maxnest, dumpops, pvlim); /* MG is already +1 */
1021 Perl_dump_indent(aTHX_ level, file, " MG_LEN = %ld\n", (long)mg->mg_len);
1023 Perl_dump_indent(aTHX_ level, file, " MG_PTR = 0x%"UVxf, PTR2UV(mg->mg_ptr));
1024 if (mg->mg_len >= 0) {
1025 if (mg->mg_type != PERL_MAGIC_utf8) {
1026 SV *sv = newSVpvn("", 0);
1027 PerlIO_printf(file, " %s", pv_display(sv, mg->mg_ptr, mg->mg_len, 0, pvlim));
1031 else if (mg->mg_len == HEf_SVKEY) {
1032 PerlIO_puts(file, " => HEf_SVKEY\n");
1033 do_sv_dump(level+2, file, (SV*)((mg)->mg_ptr), nest+1, maxnest, dumpops, pvlim); /* MG is already +1 */
1037 PerlIO_puts(file, " ???? - please notify IZ");
1038 PerlIO_putc(file, '\n');
1040 if (mg->mg_type == PERL_MAGIC_utf8) {
1041 STRLEN *cache = (STRLEN *) mg->mg_ptr;
1044 for (i = 0; i < PERL_MAGIC_UTF8_CACHESIZE; i++)
1045 Perl_dump_indent(aTHX_ level, file,
1046 " %2"IVdf": %"UVuf" -> %"UVuf"\n",
1049 (UV)cache[i * 2 + 1]);
1056 Perl_magic_dump(pTHX_ const MAGIC *mg)
1058 do_magic_dump(0, Perl_debug_log, mg, 0, 0, 0, 0);
1062 Perl_do_hv_dump(pTHX_ I32 level, PerlIO *file, const char *name, HV *sv)
1065 Perl_dump_indent(aTHX_ level, file, "%s = 0x%"UVxf, name, PTR2UV(sv));
1066 if (sv && (hvname = HvNAME_get(sv)))
1067 PerlIO_printf(file, "\t\"%s\"\n", hvname);
1069 PerlIO_putc(file, '\n');
1073 Perl_do_gv_dump(pTHX_ I32 level, PerlIO *file, const char *name, GV *sv)
1075 Perl_dump_indent(aTHX_ level, file, "%s = 0x%"UVxf, name, PTR2UV(sv));
1076 if (sv && GvNAME(sv))
1077 PerlIO_printf(file, "\t\"%s\"\n", GvNAME(sv));
1079 PerlIO_putc(file, '\n');
1083 Perl_do_gvgv_dump(pTHX_ I32 level, PerlIO *file, const char *name, GV *sv)
1085 Perl_dump_indent(aTHX_ level, file, "%s = 0x%"UVxf, name, PTR2UV(sv));
1086 if (sv && GvNAME(sv)) {
1088 PerlIO_printf(file, "\t\"");
1089 if (GvSTASH(sv) && (hvname = HvNAME_get(GvSTASH(sv))))
1090 PerlIO_printf(file, "%s\" :: \"", hvname);
1091 PerlIO_printf(file, "%s\"\n", GvNAME(sv));
1094 PerlIO_putc(file, '\n');
1098 Perl_do_sv_dump(pTHX_ I32 level, PerlIO *file, SV *sv, I32 nest, I32 maxnest, bool dumpops, STRLEN pvlim)
1106 Perl_dump_indent(aTHX_ level, file, "SV = 0\n");
1110 flags = SvFLAGS(sv);
1113 d = Perl_newSVpvf(aTHX_
1114 "(0x%"UVxf") at 0x%"UVxf"\n%*s REFCNT = %"IVdf"\n%*s FLAGS = (",
1115 PTR2UV(SvANY(sv)), PTR2UV(sv),
1116 (int)(PL_dumpindent*level), "", (IV)SvREFCNT(sv),
1117 (int)(PL_dumpindent*level), "");
1119 if (flags & SVs_PADSTALE) sv_catpv(d, "PADSTALE,");
1120 if (flags & SVs_PADTMP) sv_catpv(d, "PADTMP,");
1121 if (flags & SVs_PADMY) sv_catpv(d, "PADMY,");
1122 if (flags & SVs_TEMP) sv_catpv(d, "TEMP,");
1123 if (flags & SVs_OBJECT) sv_catpv(d, "OBJECT,");
1124 if (flags & SVs_GMG) sv_catpv(d, "GMG,");
1125 if (flags & SVs_SMG) sv_catpv(d, "SMG,");
1126 if (flags & SVs_RMG) sv_catpv(d, "RMG,");
1128 if (flags & SVf_IOK) sv_catpv(d, "IOK,");
1129 if (flags & SVf_NOK) sv_catpv(d, "NOK,");
1130 if (flags & SVf_POK) sv_catpv(d, "POK,");
1131 if (flags & SVf_ROK) {
1132 sv_catpv(d, "ROK,");
1133 if (SvWEAKREF(sv)) sv_catpv(d, "WEAKREF,");
1135 if (flags & SVf_OOK) sv_catpv(d, "OOK,");
1136 if (flags & SVf_FAKE) sv_catpv(d, "FAKE,");
1137 if (flags & SVf_READONLY) sv_catpv(d, "READONLY,");
1139 if (flags & SVf_AMAGIC && type != SVt_PVHV)
1140 sv_catpv(d, "OVERLOAD,");
1141 if (flags & SVp_IOK) sv_catpv(d, "pIOK,");
1142 if (flags & SVp_NOK) sv_catpv(d, "pNOK,");
1143 if (flags & SVp_POK) sv_catpv(d, "pPOK,");
1144 if (flags & SVp_SCREAM && type != SVt_PVHV)
1145 sv_catpv(d, "SCREAM,");
1150 if (CvANON(sv)) sv_catpv(d, "ANON,");
1151 if (CvUNIQUE(sv)) sv_catpv(d, "UNIQUE,");
1152 if (CvCLONE(sv)) sv_catpv(d, "CLONE,");
1153 if (CvCLONED(sv)) sv_catpv(d, "CLONED,");
1154 if (CvCONST(sv)) sv_catpv(d, "CONST,");
1155 if (CvNODEBUG(sv)) sv_catpv(d, "NODEBUG,");
1156 if (SvCOMPILED(sv)) sv_catpv(d, "COMPILED,");
1157 if (CvLVALUE(sv)) sv_catpv(d, "LVALUE,");
1158 if (CvMETHOD(sv)) sv_catpv(d, "METHOD,");
1159 if (CvLOCKED(sv)) sv_catpv(d, "LOCKED,");
1160 if (CvWEAKOUTSIDE(sv)) sv_catpv(d, "WEAKOUTSIDE,");
1161 if (CvASSERTION(sv)) sv_catpv(d, "ASSERTION,");
1164 if (HvSHAREKEYS(sv)) sv_catpv(d, "SHAREKEYS,");
1165 if (HvLAZYDEL(sv)) sv_catpv(d, "LAZYDEL,");
1166 if (HvHASKFLAGS(sv)) sv_catpv(d, "HASKFLAGS,");
1167 if (HvREHASH(sv)) sv_catpv(d, "REHASH,");
1168 if (flags & SVphv_CLONEABLE) sv_catpv(d, "CLONEABLE,");
1170 case SVt_PVGV: case SVt_PVLV:
1171 if (GvINTRO(sv)) sv_catpv(d, "INTRO,");
1172 if (GvMULTI(sv)) sv_catpv(d, "MULTI,");
1173 if (GvUNIQUE(sv)) sv_catpv(d, "UNIQUE,");
1174 if (GvASSUMECV(sv)) sv_catpv(d, "ASSUMECV,");
1175 if (GvIN_PAD(sv)) sv_catpv(d, "IN_PAD,");
1176 if (flags & SVpad_OUR) sv_catpv(d, "OUR,");
1177 if (GvIMPORTED(sv)) {
1178 sv_catpv(d, "IMPORT");
1179 if (GvIMPORTED(sv) == GVf_IMPORTED)
1180 sv_catpv(d, "ALL,");
1183 if (GvIMPORTED_SV(sv)) sv_catpv(d, " SV");
1184 if (GvIMPORTED_AV(sv)) sv_catpv(d, " AV");
1185 if (GvIMPORTED_HV(sv)) sv_catpv(d, " HV");
1186 if (GvIMPORTED_CV(sv)) sv_catpv(d, " CV");
1192 if (SvEVALED(sv)) sv_catpv(d, "EVALED,");
1193 if (SvIsUV(sv) && !(flags & SVf_ROK)) sv_catpv(d, "IsUV,");
1196 if (SvTAIL(sv)) sv_catpv(d, "TAIL,");
1197 if (SvVALID(sv)) sv_catpv(d, "VALID,");
1200 if (flags & SVpad_TYPED)
1201 sv_catpv(d, "TYPED,");
1206 /* SVphv_SHAREKEYS is also 0x20000000 */
1207 if ((type != SVt_PVHV) && SvUTF8(sv))
1208 sv_catpv(d, "UTF8");
1210 if (*(SvEND(d) - 1) == ',') {
1211 SvCUR_set(d, SvCUR(d) - 1);
1212 SvPVX(d)[SvCUR(d)] = '\0';
1217 #ifdef DEBUG_LEAKING_SCALARS
1218 Perl_dump_indent(aTHX_ level, file, "ALLOCATED at %s:%d %s %s%s\n",
1219 sv->sv_debug_file ? sv->sv_debug_file : "(unknown)",
1221 sv->sv_debug_inpad ? "for" : "by",
1222 sv->sv_debug_optype ? PL_op_name[sv->sv_debug_optype]: "(none)",
1223 sv->sv_debug_cloned ? " (cloned)" : "");
1225 Perl_dump_indent(aTHX_ level, file, "SV = ");
1228 PerlIO_printf(file, "NULL%s\n", s);
1232 PerlIO_printf(file, "IV%s\n", s);
1235 PerlIO_printf(file, "NV%s\n", s);
1238 PerlIO_printf(file, "RV%s\n", s);
1241 PerlIO_printf(file, "PV%s\n", s);
1244 PerlIO_printf(file, "PVIV%s\n", s);
1247 PerlIO_printf(file, "PVNV%s\n", s);
1250 PerlIO_printf(file, "PVBM%s\n", s);
1253 PerlIO_printf(file, "PVMG%s\n", s);
1256 PerlIO_printf(file, "PVLV%s\n", s);
1259 PerlIO_printf(file, "PVAV%s\n", s);
1262 PerlIO_printf(file, "PVHV%s\n", s);
1265 PerlIO_printf(file, "PVCV%s\n", s);
1268 PerlIO_printf(file, "PVGV%s\n", s);
1271 PerlIO_printf(file, "PVFM%s\n", s);
1274 PerlIO_printf(file, "PVIO%s\n", s);
1277 PerlIO_printf(file, "UNKNOWN(0x%"UVxf") %s\n", (UV)type, s);
1281 if ((type >= SVt_PVIV && type != SVt_PVAV && type != SVt_PVHV)
1282 || type == SVt_IV) {
1284 #ifdef PERL_OLD_COPY_ON_WRITE
1288 Perl_dump_indent(aTHX_ level, file, " UV = %"UVuf, (UV)SvUVX(sv));
1290 Perl_dump_indent(aTHX_ level, file, " IV = %"IVdf, (IV)SvIVX(sv));
1292 PerlIO_printf(file, " (OFFSET)");
1293 #ifdef PERL_OLD_COPY_ON_WRITE
1294 if (SvIsCOW_shared_hash(sv))
1295 PerlIO_printf(file, " (HASH)");
1296 else if (SvIsCOW_normal(sv))
1297 PerlIO_printf(file, " (COW from 0x%"UVxf")", (UV)SvUVX(sv));
1299 PerlIO_putc(file, '\n');
1301 if ((type >= SVt_PVNV && type != SVt_PVAV && type != SVt_PVHV)
1302 || type == SVt_NV) {
1303 STORE_NUMERIC_LOCAL_SET_STANDARD();
1304 /* %Vg doesn't work? --jhi */
1305 #ifdef USE_LONG_DOUBLE
1306 Perl_dump_indent(aTHX_ level, file, " NV = %.*" PERL_PRIgldbl "\n", LDBL_DIG, SvNVX(sv));
1308 Perl_dump_indent(aTHX_ level, file, " NV = %.*g\n", DBL_DIG, SvNVX(sv));
1310 RESTORE_NUMERIC_LOCAL();
1313 Perl_dump_indent(aTHX_ level, file, " RV = 0x%"UVxf"\n", PTR2UV(SvRV(sv)));
1315 do_sv_dump(level+1, file, SvRV(sv), nest+1, maxnest, dumpops, pvlim);
1317 if (type < SVt_PV) {
1321 if (type <= SVt_PVLV && type != SVt_PVGV) {
1322 if (SvPVX_const(sv)) {
1323 Perl_dump_indent(aTHX_ level, file," PV = 0x%"UVxf" ", PTR2UV(SvPVX_const(sv)));
1325 PerlIO_printf(file, "( %s . ) ", pv_display(d, SvPVX_const(sv)-SvIVX(sv), SvIVX(sv), 0, pvlim));
1326 PerlIO_printf(file, "%s", pv_display(d, SvPVX_const(sv), SvCUR(sv), SvLEN(sv), pvlim));
1327 if (SvUTF8(sv)) /* the 8? \x{....} */
1328 PerlIO_printf(file, " [UTF8 \"%s\"]", sv_uni_display(d, sv, 8 * sv_len_utf8(sv), UNI_DISPLAY_QQ));
1329 PerlIO_printf(file, "\n");
1330 Perl_dump_indent(aTHX_ level, file, " CUR = %"IVdf"\n", (IV)SvCUR(sv));
1331 Perl_dump_indent(aTHX_ level, file, " LEN = %"IVdf"\n", (IV)SvLEN(sv));
1334 Perl_dump_indent(aTHX_ level, file, " PV = 0\n");
1336 if (type >= SVt_PVMG) {
1338 do_magic_dump(level, file, SvMAGIC(sv), nest, maxnest, dumpops, pvlim);
1340 do_hv_dump(level, file, " STASH", SvSTASH(sv));
1344 Perl_dump_indent(aTHX_ level, file, " ARRAY = 0x%"UVxf, PTR2UV(AvARRAY(sv)));
1345 if (AvARRAY(sv) != AvALLOC(sv)) {
1346 PerlIO_printf(file, " (offset=%"IVdf")\n", (IV)(AvARRAY(sv) - AvALLOC(sv)));
1347 Perl_dump_indent(aTHX_ level, file, " ALLOC = 0x%"UVxf"\n", PTR2UV(AvALLOC(sv)));
1350 PerlIO_putc(file, '\n');
1351 Perl_dump_indent(aTHX_ level, file, " FILL = %"IVdf"\n", (IV)AvFILLp(sv));
1352 Perl_dump_indent(aTHX_ level, file, " MAX = %"IVdf"\n", (IV)AvMAX(sv));
1353 Perl_dump_indent(aTHX_ level, file, " ARYLEN = 0x%"UVxf"\n", SvMAGIC(sv) ? PTR2UV(AvARYLEN(sv)) : 0);
1354 sv_setpvn(d, "", 0);
1355 if (AvREAL(sv)) sv_catpv(d, ",REAL");
1356 if (AvREIFY(sv)) sv_catpv(d, ",REIFY");
1357 Perl_dump_indent(aTHX_ level, file, " FLAGS = (%s)\n",
1358 SvCUR(d) ? SvPVX_const(d) + 1 : "");
1359 if (nest < maxnest && av_len((AV*)sv) >= 0) {
1361 for (count = 0; count <= av_len((AV*)sv) && count < maxnest; count++) {
1362 SV** elt = av_fetch((AV*)sv,count,0);
1364 Perl_dump_indent(aTHX_ level + 1, file, "Elt No. %"IVdf"\n", (IV)count);
1366 do_sv_dump(level+1, file, *elt, nest+1, maxnest, dumpops, pvlim);
1371 Perl_dump_indent(aTHX_ level, file, " ARRAY = 0x%"UVxf, PTR2UV(HvARRAY(sv)));
1372 if (HvARRAY(sv) && HvKEYS(sv)) {
1373 /* Show distribution of HEs in the ARRAY */
1375 #define FREQ_MAX (sizeof freq / sizeof freq[0] - 1)
1378 U32 pow2 = 2, keys = HvKEYS(sv);
1379 NV theoret, sum = 0;
1381 PerlIO_printf(file, " (");
1382 Zero(freq, FREQ_MAX + 1, int);
1383 for (i = 0; (STRLEN)i <= HvMAX(sv); i++) {
1384 HE* h; int count = 0;
1385 for (h = HvARRAY(sv)[i]; h; h = HeNEXT(h))
1387 if (count > FREQ_MAX)
1393 for (i = 0; i <= max; i++) {
1395 PerlIO_printf(file, "%d%s:%d", i,
1396 (i == FREQ_MAX) ? "+" : "",
1399 PerlIO_printf(file, ", ");
1402 PerlIO_putc(file, ')');
1403 /* The "quality" of a hash is defined as the total number of
1404 comparisons needed to access every element once, relative
1405 to the expected number needed for a random hash.
1407 The total number of comparisons is equal to the sum of
1408 the squares of the number of entries in each bucket.
1409 For a random hash of n keys into k buckets, the expected
1414 for (i = max; i > 0; i--) { /* Precision: count down. */
1415 sum += freq[i] * i * i;
1417 while ((keys = keys >> 1))
1419 theoret = HvKEYS(sv);
1420 theoret += theoret * (theoret-1)/pow2;
1421 PerlIO_putc(file, '\n');
1422 Perl_dump_indent(aTHX_ level, file, " hash quality = %.1"NVff"%%", theoret/sum*100);
1424 PerlIO_putc(file, '\n');
1425 Perl_dump_indent(aTHX_ level, file, " KEYS = %"IVdf"\n", (IV)HvKEYS(sv));
1426 Perl_dump_indent(aTHX_ level, file, " FILL = %"IVdf"\n", (IV)HvFILL(sv));
1427 Perl_dump_indent(aTHX_ level, file, " MAX = %"IVdf"\n", (IV)HvMAX(sv));
1428 Perl_dump_indent(aTHX_ level, file, " RITER = %"IVdf"\n", (IV)HvRITER_get(sv));
1429 Perl_dump_indent(aTHX_ level, file, " EITER = 0x%"UVxf"\n", PTR2UV(HvEITER_get(sv)));
1431 MAGIC *mg = mg_find(sv, PERL_MAGIC_symtab);
1432 if (mg && mg->mg_obj) {
1433 Perl_dump_indent(aTHX_ level, file, " PMROOT = 0x%"UVxf"\n", PTR2UV(mg->mg_obj));
1437 const char *hvname = HvNAME_get(sv);
1439 Perl_dump_indent(aTHX_ level, file, " NAME = \"%s\"\n", hvname);
1441 if (nest < maxnest && !HvEITER_get(sv)) { /* Try to preserve iterator */
1444 int count = maxnest - nest;
1447 while ((he = hv_iternext_flags(hv, HV_ITERNEXT_WANTPLACEHOLDERS))
1452 U32 hash = HeHASH(he);
1454 keysv = hv_iterkeysv(he);
1455 keypv = SvPV_const(keysv, len);
1456 elt = hv_iterval(hv, he);
1457 Perl_dump_indent(aTHX_ level+1, file, "Elt %s ", pv_display(d, keypv, len, 0, pvlim));
1459 PerlIO_printf(file, "[UTF8 \"%s\"] ", sv_uni_display(d, keysv, 8 * sv_len_utf8(keysv), UNI_DISPLAY_QQ));
1461 PerlIO_printf(file, "[REHASH] ");
1462 PerlIO_printf(file, "HASH = 0x%"UVxf"\n", (UV)hash);
1463 do_sv_dump(level+1, file, elt, nest+1, maxnest, dumpops, pvlim);
1465 hv_iterinit(hv); /* Return to status quo */
1470 Perl_dump_indent(aTHX_ level, file, " PROTOTYPE = \"%s\"\n", SvPV_nolen_const(sv));
1473 do_hv_dump(level, file, " COMP_STASH", CvSTASH(sv));
1475 Perl_dump_indent(aTHX_ level, file, " START = 0x%"UVxf" ===> %"IVdf"\n", PTR2UV(CvSTART(sv)), (IV)sequence_num(CvSTART(sv)));
1476 Perl_dump_indent(aTHX_ level, file, " ROOT = 0x%"UVxf"\n", PTR2UV(CvROOT(sv)));
1477 if (CvROOT(sv) && dumpops)
1478 do_op_dump(level+1, file, CvROOT(sv));
1479 Perl_dump_indent(aTHX_ level, file, " XSUB = 0x%"UVxf"\n", PTR2UV(CvXSUB(sv)));
1481 SV *constant = cv_const_sv((CV *)sv);
1485 Perl_dump_indent(aTHX_ level, file, " XSUBANY = 0x%"UVxf
1487 PTR2UV(CvXSUBANY(sv).any_ptr));
1488 do_sv_dump(level+1, file, constant, nest+1, maxnest, dumpops,
1491 Perl_dump_indent(aTHX_ level, file, " XSUBANY = %"IVdf"\n",
1492 (IV)CvXSUBANY(sv).any_i32);
1495 do_gvgv_dump(level, file, " GVGV::GV", CvGV(sv));
1496 Perl_dump_indent(aTHX_ level, file, " FILE = \"%s\"\n", CvFILE(sv));
1497 Perl_dump_indent(aTHX_ level, file, " DEPTH = %"IVdf"\n", (IV)CvDEPTH(sv));
1498 Perl_dump_indent(aTHX_ level, file, " FLAGS = 0x%"UVxf"\n", (UV)CvFLAGS(sv));
1499 Perl_dump_indent(aTHX_ level, file, " OUTSIDE_SEQ = %"UVuf"\n", (UV)CvOUTSIDE_SEQ(sv));
1500 if (type == SVt_PVFM)
1501 Perl_dump_indent(aTHX_ level, file, " LINES = %"IVdf"\n", (IV)FmLINES(sv));
1502 Perl_dump_indent(aTHX_ level, file, " PADLIST = 0x%"UVxf"\n", PTR2UV(CvPADLIST(sv)));
1503 if (nest < maxnest) {
1504 do_dump_pad(level+1, file, CvPADLIST(sv), 0);
1507 const CV *outside = CvOUTSIDE(sv);
1508 Perl_dump_indent(aTHX_ level, file, " OUTSIDE = 0x%"UVxf" (%s)\n",
1511 : CvANON(outside) ? "ANON"
1512 : (outside == PL_main_cv) ? "MAIN"
1513 : CvUNIQUE(outside) ? "UNIQUE"
1514 : CvGV(outside) ? GvNAME(CvGV(outside)) : "UNDEFINED"));
1516 if (nest < maxnest && (CvCLONE(sv) || CvCLONED(sv)))
1517 do_sv_dump(level+1, file, (SV*)CvOUTSIDE(sv), nest+1, maxnest, dumpops, pvlim);
1519 case SVt_PVGV: case SVt_PVLV:
1520 if (type == SVt_PVLV) {
1521 Perl_dump_indent(aTHX_ level, file, " TYPE = %c\n", LvTYPE(sv));
1522 Perl_dump_indent(aTHX_ level, file, " TARGOFF = %"IVdf"\n", (IV)LvTARGOFF(sv));
1523 Perl_dump_indent(aTHX_ level, file, " TARGLEN = %"IVdf"\n", (IV)LvTARGLEN(sv));
1524 Perl_dump_indent(aTHX_ level, file, " TARG = 0x%"UVxf"\n", PTR2UV(LvTARG(sv)));
1525 if (LvTYPE(sv) != 't' && LvTYPE(sv) != 'T')
1526 do_sv_dump(level+1, file, LvTARG(sv), nest+1, maxnest,
1529 Perl_dump_indent(aTHX_ level, file, " NAME = \"%s\"\n", GvNAME(sv));
1530 Perl_dump_indent(aTHX_ level, file, " NAMELEN = %"IVdf"\n", (IV)GvNAMELEN(sv));
1531 do_hv_dump (level, file, " GvSTASH", GvSTASH(sv));
1532 Perl_dump_indent(aTHX_ level, file, " GP = 0x%"UVxf"\n", PTR2UV(GvGP(sv)));
1535 Perl_dump_indent(aTHX_ level, file, " SV = 0x%"UVxf"\n", PTR2UV(GvSV(sv)));
1536 Perl_dump_indent(aTHX_ level, file, " REFCNT = %"IVdf"\n", (IV)GvREFCNT(sv));
1537 Perl_dump_indent(aTHX_ level, file, " IO = 0x%"UVxf"\n", PTR2UV(GvIOp(sv)));
1538 Perl_dump_indent(aTHX_ level, file, " FORM = 0x%"UVxf" \n", PTR2UV(GvFORM(sv)));
1539 Perl_dump_indent(aTHX_ level, file, " AV = 0x%"UVxf"\n", PTR2UV(GvAV(sv)));
1540 Perl_dump_indent(aTHX_ level, file, " HV = 0x%"UVxf"\n", PTR2UV(GvHV(sv)));
1541 Perl_dump_indent(aTHX_ level, file, " CV = 0x%"UVxf"\n", PTR2UV(GvCV(sv)));
1542 Perl_dump_indent(aTHX_ level, file, " CVGEN = 0x%"UVxf"\n", (UV)GvCVGEN(sv));
1543 Perl_dump_indent(aTHX_ level, file, " LINE = %"IVdf"\n", (IV)GvLINE(sv));
1544 Perl_dump_indent(aTHX_ level, file, " FILE = \"%s\"\n", GvFILE(sv));
1545 Perl_dump_indent(aTHX_ level, file, " FLAGS = 0x%"UVxf"\n", (UV)GvFLAGS(sv));
1546 do_gv_dump (level, file, " EGV", GvEGV(sv));
1549 Perl_dump_indent(aTHX_ level, file, " IFP = 0x%"UVxf"\n", PTR2UV(IoIFP(sv)));
1550 Perl_dump_indent(aTHX_ level, file, " OFP = 0x%"UVxf"\n", PTR2UV(IoOFP(sv)));
1551 Perl_dump_indent(aTHX_ level, file, " DIRP = 0x%"UVxf"\n", PTR2UV(IoDIRP(sv)));
1552 Perl_dump_indent(aTHX_ level, file, " LINES = %"IVdf"\n", (IV)IoLINES(sv));
1553 Perl_dump_indent(aTHX_ level, file, " PAGE = %"IVdf"\n", (IV)IoPAGE(sv));
1554 Perl_dump_indent(aTHX_ level, file, " PAGE_LEN = %"IVdf"\n", (IV)IoPAGE_LEN(sv));
1555 Perl_dump_indent(aTHX_ level, file, " LINES_LEFT = %"IVdf"\n", (IV)IoLINES_LEFT(sv));
1557 Perl_dump_indent(aTHX_ level, file, " TOP_NAME = \"%s\"\n", IoTOP_NAME(sv));
1558 do_gv_dump (level, file, " TOP_GV", IoTOP_GV(sv));
1560 Perl_dump_indent(aTHX_ level, file, " FMT_NAME = \"%s\"\n", IoFMT_NAME(sv));
1561 do_gv_dump (level, file, " FMT_GV", IoFMT_GV(sv));
1562 if (IoBOTTOM_NAME(sv))
1563 Perl_dump_indent(aTHX_ level, file, " BOTTOM_NAME = \"%s\"\n", IoBOTTOM_NAME(sv));
1564 do_gv_dump (level, file, " BOTTOM_GV", IoBOTTOM_GV(sv));
1565 Perl_dump_indent(aTHX_ level, file, " SUBPROCESS = %"IVdf"\n", (IV)IoSUBPROCESS(sv));
1566 if (isPRINT(IoTYPE(sv)))
1567 Perl_dump_indent(aTHX_ level, file, " TYPE = '%c'\n", IoTYPE(sv));
1569 Perl_dump_indent(aTHX_ level, file, " TYPE = '\\%o'\n", IoTYPE(sv));
1570 Perl_dump_indent(aTHX_ level, file, " FLAGS = 0x%"UVxf"\n", (UV)IoFLAGS(sv));
1577 Perl_sv_dump(pTHX_ SV *sv)
1579 do_sv_dump(0, Perl_debug_log, sv, 0, 0, 0, 0);
1583 Perl_runops_debug(pTHX)
1586 if (ckWARN_d(WARN_DEBUGGING))
1587 Perl_warner(aTHX_ packWARN(WARN_DEBUGGING), "NULL OP IN RUN");
1591 DEBUG_l(Perl_deb(aTHX_ "Entering new RUNOPS level\n"));
1595 if (PL_watchaddr != 0 && *PL_watchaddr != PL_watchok)
1596 PerlIO_printf(Perl_debug_log,
1597 "WARNING: %"UVxf" changed from %"UVxf" to %"UVxf"\n",
1598 PTR2UV(PL_watchaddr), PTR2UV(PL_watchok),
1599 PTR2UV(*PL_watchaddr));
1600 if (DEBUG_s_TEST_) {
1601 if (DEBUG_v_TEST_) {
1602 PerlIO_printf(Perl_debug_log, "\n");
1610 if (DEBUG_t_TEST_) debop(PL_op);
1611 if (DEBUG_P_TEST_) debprof(PL_op);
1613 } while ((PL_op = CALL_FPTR(PL_op->op_ppaddr)(aTHX)));
1614 DEBUG_l(Perl_deb(aTHX_ "leaving RUNOPS level\n"));
1621 Perl_debop(pTHX_ const OP *o)
1623 if (CopSTASH_eq(PL_curcop, PL_debstash) && !DEBUG_J_TEST_)
1626 Perl_deb(aTHX_ "%s", OP_NAME(o));
1627 switch (o->op_type) {
1629 PerlIO_printf(Perl_debug_log, "(%s)", SvPEEK(cSVOPo_sv));
1634 SV *sv = NEWSV(0,0);
1635 gv_fullname3(sv, cGVOPo_gv, Nullch);
1636 PerlIO_printf(Perl_debug_log, "(%s)", SvPV_nolen_const(sv));
1640 PerlIO_printf(Perl_debug_log, "(NULL)");
1646 /* print the lexical's name */
1647 CV *cv = deb_curcv(cxstack_ix);
1650 AV * const padlist = CvPADLIST(cv);
1651 AV * const comppad = (AV*)(*av_fetch(padlist, 0, FALSE));
1652 sv = *av_fetch(comppad, o->op_targ, FALSE);
1656 PerlIO_printf(Perl_debug_log, "(%s)", SvPV_nolen_const(sv));
1658 PerlIO_printf(Perl_debug_log, "[%"UVuf"]", (UV)o->op_targ);
1664 PerlIO_printf(Perl_debug_log, "\n");
1669 S_deb_curcv(pTHX_ I32 ix)
1671 const PERL_CONTEXT *cx = &cxstack[ix];
1672 if (CxTYPE(cx) == CXt_SUB || CxTYPE(cx) == CXt_FORMAT)
1673 return cx->blk_sub.cv;
1674 else if (CxTYPE(cx) == CXt_EVAL && !CxTRYBLOCK(cx))
1676 else if (ix == 0 && PL_curstackinfo->si_type == PERLSI_MAIN)
1681 return deb_curcv(ix - 1);
1685 Perl_watch(pTHX_ char **addr)
1687 PL_watchaddr = addr;
1689 PerlIO_printf(Perl_debug_log, "WATCHING, %"UVxf" is currently %"UVxf"\n",
1690 PTR2UV(PL_watchaddr), PTR2UV(PL_watchok));
1694 S_debprof(pTHX_ const OP *o)
1696 if (CopSTASH_eq(PL_curcop, PL_debstash) && !DEBUG_J_TEST_)
1698 if (!PL_profiledata)
1699 Newxz(PL_profiledata, MAXO, U32);
1700 ++PL_profiledata[o->op_type];
1704 Perl_debprofdump(pTHX)
1707 if (!PL_profiledata)
1709 for (i = 0; i < MAXO; i++) {
1710 if (PL_profiledata[i])
1711 PerlIO_printf(Perl_debug_log,
1712 "%5lu %s\n", (unsigned long)PL_profiledata[i],
1719 * c-indentation-style: bsd
1721 * indent-tabs-mode: t
1724 * ex: set ts=8 sts=4 sw=4 noet: