3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999,
4 * 2000, 2001, 2002, 2003, 2004, 2005, 2006, 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 * "Didst thou think that the eyes of the White Tower were blind? Nay, I
13 * have seen more than thou knowest, Gray Fool." --Denethor
17 * This file contains various utilities for producing debugging output
18 * (mainly related to displaying the stack)
25 #if defined(PERL_IMPLICIT_CONTEXT)
27 Perl_deb_nocontext(const char *pat, ...)
37 #endif /* DEBUGGING */
42 Perl_deb(pTHX_ const char *pat, ...)
51 #endif /* DEBUGGING */
55 Perl_vdeb(pTHX_ const char *pat, va_list *args)
59 const char* const file = OutCopFILE(PL_curcop);
61 PerlIO_printf(Perl_debug_log, "(%s:%ld)\t", (file ? file : "<free>"),
62 (long)CopLINE(PL_curcop));
63 (void) PerlIO_vprintf(Perl_debug_log, pat, *args);
66 PERL_UNUSED_ARG(args);
67 #endif /* DEBUGGING */
71 Perl_debstackptrs(pTHX)
75 PerlIO_printf(Perl_debug_log,
76 "%8"UVxf" %8"UVxf" %8"IVdf" %8"IVdf" %8"IVdf"\n",
77 PTR2UV(PL_curstack), PTR2UV(PL_stack_base),
78 (IV)*PL_markstack_ptr, (IV)(PL_stack_sp-PL_stack_base),
79 (IV)(PL_stack_max-PL_stack_base));
80 PerlIO_printf(Perl_debug_log,
81 "%8"UVxf" %8"UVxf" %8"UVuf" %8"UVuf" %8"UVuf"\n",
82 PTR2UV(PL_mainstack), PTR2UV(AvARRAY(PL_curstack)),
83 PTR2UV(PL_mainstack), PTR2UV(AvFILLp(PL_curstack)),
84 PTR2UV(AvMAX(PL_curstack)));
85 #endif /* DEBUGGING */
90 /* dump the contents of a particular stack
91 * Display stack_base[stack_min+1 .. stack_max],
92 * and display the marks whose offsets are contained in addresses
93 * PL_markstack[mark_min+1 .. mark_max] and whose values are in the range
94 * of the stack values being displayed
96 * Only displays top 30 max
100 S_deb_stack_n(pTHX_ SV** stack_base, I32 stack_min, I32 stack_max,
101 I32 mark_min, I32 mark_max)
105 register I32 i = stack_max - 30;
106 const I32 *markscan = PL_markstack + mark_min;
110 while (++markscan <= PL_markstack + mark_max)
115 PerlIO_printf(Perl_debug_log, "... ");
117 if (stack_base[0] != &PL_sv_undef || stack_max < 0)
118 PerlIO_printf(Perl_debug_log, " [STACK UNDERFLOW!!!]\n");
121 if (markscan <= PL_markstack + mark_max && *markscan < i) {
124 PerlIO_putc(Perl_debug_log, '*');
126 while (markscan <= PL_markstack + mark_max && *markscan < i);
127 PerlIO_printf(Perl_debug_log, " ");
131 PerlIO_printf(Perl_debug_log, "%-4s ", SvPEEK(stack_base[i]));
134 PerlIO_printf(Perl_debug_log, "\n");
136 PERL_UNUSED_ARG(stack_base);
137 PERL_UNUSED_ARG(stack_min);
138 PERL_UNUSED_ARG(stack_max);
139 PERL_UNUSED_ARG(mark_min);
140 PERL_UNUSED_ARG(mark_max);
141 #endif /* DEBUGGING */
145 /* dump the current stack */
150 #ifndef SKIP_DEBUGGING
152 if (CopSTASH_eq(PL_curcop, PL_debstash) && !DEBUG_J_TEST_)
155 PerlIO_printf(Perl_debug_log, " => ");
156 deb_stack_n(PL_stack_base,
158 PL_stack_sp - PL_stack_base,
159 PL_curstackinfo->si_markoff,
160 PL_markstack_ptr - PL_markstack);
163 #endif /* SKIP_DEBUGGING */
169 static const char * const si_names[] = {
184 /* display all stacks */
188 Perl_deb_stack_all(pTHX)
195 /* rewind to start of chain */
196 si = PL_curstackinfo;
203 const int si_name_ix = si->si_type+1; /* -1 is a valid index */
204 const char * const si_name = (si_name_ix>= sizeof(si_names)) ? "????" : si_names[si_name_ix];
206 PerlIO_printf(Perl_debug_log, "STACK %"IVdf": %s\n",
209 for (ix=0; ix<=si->si_cxix; ix++) {
211 const PERL_CONTEXT * const cx = &(si->si_cxstack[ix]);
212 PerlIO_printf(Perl_debug_log,
213 " CX %"IVdf": %-6s => ",
214 (IV)ix, PL_block_type[CxTYPE(cx)]
216 /* substitution contexts don't save stack pointers etc) */
217 if (CxTYPE(cx) == CXt_SUBST)
218 PerlIO_printf(Perl_debug_log, "\n");
221 /* Find the the current context's stack range by searching
222 * forward for any higher contexts using this stack; failing
223 * that, it will be equal to the size of the stack for old
224 * stacks, or PL_stack_sp for the current stack
227 I32 i, stack_min, stack_max, mark_min, mark_max;
228 const PERL_CONTEXT *cx_n;
231 cx_n = Null(PERL_CONTEXT*);
233 /* there's a separate stack per SI, so only search
236 for (i=ix+1; i<=si->si_cxix; i++) {
237 if (CxTYPE(cx) == CXt_SUBST)
239 cx_n = &(si->si_cxstack[i]);
243 stack_min = cx->blk_oldsp;
246 stack_max = cx_n->blk_oldsp;
248 else if (si == PL_curstackinfo) {
249 stack_max = PL_stack_sp - AvARRAY(si->si_stack);
252 stack_max = AvFILLp(si->si_stack);
255 /* for the other stack types, there's only one stack
256 * shared between all SIs */
260 cx_n = Null(PERL_CONTEXT*);
263 if (i > si_n->si_cxix) {
264 if (si_n == PL_curstackinfo)
267 si_n = si_n->si_next;
271 if (CxTYPE(&(si_n->si_cxstack[i])) == CXt_SUBST)
273 cx_n = &(si_n->si_cxstack[i]);
277 mark_min = cx->blk_oldmarksp;
279 mark_max = cx_n->blk_oldmarksp;
282 mark_max = PL_markstack_ptr - PL_markstack;
285 deb_stack_n(AvARRAY(si->si_stack),
286 stack_min, stack_max, mark_min, mark_max);
288 if (CxTYPE(cx) == CXt_EVAL || CxTYPE(cx) == CXt_SUB
289 || CxTYPE(cx) == CXt_FORMAT)
291 const OP * const retop = (CxTYPE(cx) == CXt_EVAL)
292 ? cx->blk_eval.retop : cx->blk_sub.retop;
294 PerlIO_printf(Perl_debug_log, " retop=%s\n",
295 retop ? OP_NAME(retop) : "(null)"
302 if (si == PL_curstackinfo)
307 break; /* shouldn't happen, but just in case.. */
308 } /* next stackinfo */
310 PerlIO_printf(Perl_debug_log, "\n");
311 #endif /* DEBUGGING */
316 * c-indentation-style: bsd
318 * indent-tabs-mode: t
321 * ex: set ts=8 sts=4 sw=4 noet: