Re: stringification of v-string references
[p5sagit/p5-mst-13.2.git] / deb.c
CommitLineData
a0d0e21e 1/* deb.c
79072805 2 *
4bb101f2 3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999,
1d325971 4 * 2000, 2001, 2002, 2003, 2004, 2005, by Larry Wall and others
79072805 5 *
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.
8 *
a0d0e21e 9 */
10
11/*
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
79072805 14 */
15
166f8a29 16/*
61296642 17 * This file contains various utilities for producing debugging output
18 * (mainly related to displaying the stack)
166f8a29 19 */
20
79072805 21#include "EXTERN.h"
864dbfa3 22#define PERL_IN_DEB_C
79072805 23#include "perl.h"
24
c5be433b 25#if defined(PERL_IMPLICIT_CONTEXT)
26void
27Perl_deb_nocontext(const char *pat, ...)
28{
29#ifdef DEBUGGING
30 dTHX;
31 va_list args;
32 va_start(args, pat);
33 vdeb(pat, &args);
34 va_end(args);
35#endif /* DEBUGGING */
36}
37#endif
38
8990e307 39void
864dbfa3 40Perl_deb(pTHX_ const char *pat, ...)
79072805 41{
17c3b450 42#ifdef DEBUGGING
79072805 43 va_list args;
c5be433b 44 va_start(args, pat);
45 vdeb(pat, &args);
46 va_end(args);
65e66c80 47#else
48 PERL_UNUSED_ARG(pat);
c5be433b 49#endif /* DEBUGGING */
50}
51
52void
53Perl_vdeb(pTHX_ const char *pat, va_list *args)
54{
55#ifdef DEBUGGING
248c2a4d 56 char* file = OutCopFILE(PL_curcop);
79072805 57
cc49e20b 58 PerlIO_printf(Perl_debug_log, "(%s:%ld)\t", (file ? file : "<free>"),
59 (long)CopLINE(PL_curcop));
c5be433b 60 (void) PerlIO_vprintf(Perl_debug_log, pat, *args);
65e66c80 61#else
62 PERL_UNUSED_ARG(pat);
63 PERL_UNUSED_ARG(args);
17c3b450 64#endif /* DEBUGGING */
79072805 65}
79072805 66
79072805 67I32
864dbfa3 68Perl_debstackptrs(pTHX)
79072805 69{
17c3b450 70#ifdef DEBUGGING
b900a521 71 PerlIO_printf(Perl_debug_log,
72 "%8"UVxf" %8"UVxf" %8"IVdf" %8"IVdf" %8"IVdf"\n",
73 PTR2UV(PL_curstack), PTR2UV(PL_stack_base),
74 (IV)*PL_markstack_ptr, (IV)(PL_stack_sp-PL_stack_base),
75 (IV)(PL_stack_max-PL_stack_base));
76 PerlIO_printf(Perl_debug_log,
77 "%8"UVxf" %8"UVxf" %8"UVuf" %8"UVuf" %8"UVuf"\n",
78 PTR2UV(PL_mainstack), PTR2UV(AvARRAY(PL_curstack)),
79 PTR2UV(PL_mainstack), PTR2UV(AvFILLp(PL_curstack)),
80 PTR2UV(AvMAX(PL_curstack)));
17c3b450 81#endif /* DEBUGGING */
79072805 82 return 0;
83}
84
a0d0e21e 85
d6721266 86/* dump the contents of a particular stack
87 * Display stack_base[stack_min+1 .. stack_max],
88 * and display the marks whose offsets are contained in addresses
89 * PL_markstack[mark_min+1 .. mark_max] and whose values are in the range
90 * of the stack values being displayed
91 *
92 * Only displays top 30 max
93 */
1045810a 94
d6721266 95STATIC void
96S_deb_stack_n(pTHX_ SV** stack_base, I32 stack_min, I32 stack_max,
97 I32 mark_min, I32 mark_max)
98{
99#ifdef DEBUGGING
100 register I32 i = stack_max - 30;
b64e5050 101 const I32 *markscan = PL_markstack + mark_min;
d6721266 102 if (i < stack_min)
103 i = stack_min;
a0d0e21e 104
d6721266 105 while (++markscan <= PL_markstack + mark_max)
a0d0e21e 106 if (*markscan >= i)
107 break;
79072805 108
d6721266 109 if (i > stack_min)
110 PerlIO_printf(Perl_debug_log, "... ");
111
112 if (stack_base[0] != &PL_sv_undef || stack_max < 0)
760ac839 113 PerlIO_printf(Perl_debug_log, " [STACK UNDERFLOW!!!]\n");
a0d0e21e 114 do {
115 ++i;
d6721266 116 if (markscan <= PL_markstack + mark_max && *markscan < i) {
a0d0e21e 117 do {
118 ++markscan;
760ac839 119 PerlIO_putc(Perl_debug_log, '*');
a0d0e21e 120 }
d6721266 121 while (markscan <= PL_markstack + mark_max && *markscan < i);
760ac839 122 PerlIO_printf(Perl_debug_log, " ");
79072805 123 }
d6721266 124 if (i > stack_max)
a0d0e21e 125 break;
d6721266 126 PerlIO_printf(Perl_debug_log, "%-4s ", SvPEEK(stack_base[i]));
79072805 127 }
a0d0e21e 128 while (1);
760ac839 129 PerlIO_printf(Perl_debug_log, "\n");
65e66c80 130#else
131 PERL_UNUSED_ARG(stack_base);
132 PERL_UNUSED_ARG(stack_min);
133 PERL_UNUSED_ARG(stack_max);
134 PERL_UNUSED_ARG(mark_min);
135 PERL_UNUSED_ARG(mark_max);
d6721266 136#endif /* DEBUGGING */
137}
138
139
140/* dump the current stack */
141
142I32
143Perl_debstack(pTHX)
144{
145#ifndef SKIP_DEBUGGING
146 if (CopSTASH_eq(PL_curcop, PL_debstash) && !DEBUG_J_TEST_)
147 return 0;
148
149 PerlIO_printf(Perl_debug_log, " => ");
150 deb_stack_n(PL_stack_base,
151 0,
152 PL_stack_sp - PL_stack_base,
153 PL_curstackinfo->si_markoff,
154 PL_markstack_ptr - PL_markstack);
155
156
1045810a 157#endif /* SKIP_DEBUGGING */
79072805 158 return 0;
159}
d6721266 160
161
162#ifdef DEBUGGING
bfed75c6 163static const char * si_names[] = {
d6721266 164 "UNKNOWN",
165 "UNDEF",
166 "MAIN",
167 "MAGIC",
168 "SORT",
169 "SIGNAL",
170 "OVERLOAD",
171 "DESTROY",
172 "WARNHOOK",
173 "DIEHOOK",
174 "REQUIRE"
175};
176#endif
177
178/* display all stacks */
179
180
181void
182Perl_deb_stack_all(pTHX)
183{
184#ifdef DEBUGGING
185 I32 ix, si_ix;
7452cf6a 186 const PERL_SI *si;
d6721266 187
188 /* rewind to start of chain */
189 si = PL_curstackinfo;
190 while (si->si_prev)
191 si = si->si_prev;
192
193 si_ix=0;
194 for (;;)
195 {
e1ec3a88 196 const int si_name_ix = si->si_type+1; /* -1 is a valid index */
7452cf6a 197 const char * const si_name = (si_name_ix>= sizeof(si_names)) ? "????" : si_names[si_name_ix];
d6721266 198 PerlIO_printf(Perl_debug_log, "STACK %"IVdf": %s\n",
e922992d 199 (IV)si_ix, si_name);
d6721266 200
201 for (ix=0; ix<=si->si_cxix; ix++) {
202
7452cf6a 203 const PERL_CONTEXT * const cx = &(si->si_cxstack[ix]);
d6721266 204 PerlIO_printf(Perl_debug_log,
205 " CX %"IVdf": %-6s => ",
f1fe7cd8 206 (IV)ix, PL_block_type[CxTYPE(cx)]
d6721266 207 );
208 /* substitution contexts don't save stack pointers etc) */
209 if (CxTYPE(cx) == CXt_SUBST)
210 PerlIO_printf(Perl_debug_log, "\n");
211 else {
212
213 /* Find the the current context's stack range by searching
214 * forward for any higher contexts using this stack; failing
215 * that, it will be equal to the size of the stack for old
216 * stacks, or PL_stack_sp for the current stack
217 */
218
219 I32 i, stack_min, stack_max, mark_min, mark_max;
7452cf6a 220 const PERL_CONTEXT *cx_n;
221 const PERL_SI *si_n;
d6721266 222
223 cx_n = Null(PERL_CONTEXT*);
224
225 /* there's a separate stack per SI, so only search
226 * this one */
227
228 for (i=ix+1; i<=si->si_cxix; i++) {
229 if (CxTYPE(cx) == CXt_SUBST)
230 continue;
231 cx_n = &(si->si_cxstack[i]);
232 break;
233 }
234
235 stack_min = cx->blk_oldsp;
236
237 if (cx_n) {
238 stack_max = cx_n->blk_oldsp;
239 }
240 else if (si == PL_curstackinfo) {
241 stack_max = PL_stack_sp - AvARRAY(si->si_stack);
242 }
243 else {
244 stack_max = AvFILLp(si->si_stack);
245 }
246
247 /* for the other stack types, there's only one stack
248 * shared between all SIs */
249
250 si_n = si;
251 i = ix;
252 cx_n = Null(PERL_CONTEXT*);
253 for (;;) {
254 i++;
255 if (i > si_n->si_cxix) {
256 if (si_n == PL_curstackinfo)
257 break;
258 else {
259 si_n = si_n->si_next;
260 i = 0;
261 }
262 }
263 if (CxTYPE(&(si_n->si_cxstack[i])) == CXt_SUBST)
264 continue;
265 cx_n = &(si_n->si_cxstack[i]);
266 break;
267 }
268
269 mark_min = cx->blk_oldmarksp;
d6721266 270 if (cx_n) {
271 mark_max = cx_n->blk_oldmarksp;
d6721266 272 }
273 else {
274 mark_max = PL_markstack_ptr - PL_markstack;
d6721266 275 }
276
277 deb_stack_n(AvARRAY(si->si_stack),
278 stack_min, stack_max, mark_min, mark_max);
279
f39bc417 280 if (CxTYPE(cx) == CXt_EVAL || CxTYPE(cx) == CXt_SUB
281 || CxTYPE(cx) == CXt_FORMAT)
282 {
7452cf6a 283 const OP * const retop = (CxTYPE(cx) == CXt_EVAL)
f39bc417 284 ? cx->blk_eval.retop : cx->blk_sub.retop;
285
d6721266 286 PerlIO_printf(Perl_debug_log, " retop=%s\n",
f39bc417 287 retop ? OP_NAME(retop) : "(null)"
d6721266 288 );
289 }
d6721266 290 }
291 } /* next context */
292
293
294 if (si == PL_curstackinfo)
295 break;
296 si = si->si_next;
297 si_ix++;
298 if (!si)
299 break; /* shouldn't happen, but just in case.. */
300 } /* next stackinfo */
301
302 PerlIO_printf(Perl_debug_log, "\n");
303#endif /* DEBUGGING */
304}
305
66610fdd 306/*
307 * Local variables:
308 * c-indentation-style: bsd
309 * c-basic-offset: 4
310 * indent-tabs-mode: t
311 * End:
312 *
37442d52 313 * ex: set ts=8 sts=4 sw=4 noet:
314 */