This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix ext/POSIX/t/time.t on Win32
[perl5.git] / deb.c
1 /*    deb.c
2  *
3  *    Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999,
4  *    2000, 2001, 2002, 2003, 2004, 2005, by Larry Wall and others
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  *
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
14  */
15
16 /*
17  * This file contains various utilities for producing debugging output
18  * (mainly related to displaying the stack)
19  */
20
21 #include "EXTERN.h"
22 #define PERL_IN_DEB_C
23 #include "perl.h"
24
25 #if defined(PERL_IMPLICIT_CONTEXT)
26 void
27 Perl_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
39 void
40 Perl_deb(pTHX_ const char *pat, ...)
41 {
42 #ifdef DEBUGGING
43     va_list args;
44     va_start(args, pat);
45     vdeb(pat, &args);
46     va_end(args);
47 #else
48     PERL_UNUSED_ARG(pat);
49 #endif /* DEBUGGING */
50 }
51
52 void
53 Perl_vdeb(pTHX_ const char *pat, va_list *args)
54 {
55 #ifdef DEBUGGING
56     char* file = OutCopFILE(PL_curcop);
57
58     PerlIO_printf(Perl_debug_log, "(%s:%ld)\t", (file ? file : "<free>"),
59                   (long)CopLINE(PL_curcop));
60     (void) PerlIO_vprintf(Perl_debug_log, pat, *args);
61 #else
62     PERL_UNUSED_ARG(pat);
63     PERL_UNUSED_ARG(args);
64 #endif /* DEBUGGING */
65 }
66
67 I32
68 Perl_debstackptrs(pTHX)
69 {
70 #ifdef DEBUGGING
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)));
81 #endif /* DEBUGGING */
82     return 0;
83 }
84
85
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  */
94
95 STATIC void
96 S_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;
101     const I32 *markscan = PL_markstack + mark_min;
102     if (i < stack_min)
103         i = stack_min;
104     
105     while (++markscan <= PL_markstack + mark_max)
106         if (*markscan >= i)
107             break;
108
109     if (i > stack_min)
110         PerlIO_printf(Perl_debug_log, "... ");
111
112     if (stack_base[0] != &PL_sv_undef || stack_max < 0)
113         PerlIO_printf(Perl_debug_log, " [STACK UNDERFLOW!!!]\n");
114     do {
115         ++i;
116         if (markscan <= PL_markstack + mark_max && *markscan < i) {
117             do {
118                 ++markscan;
119                 PerlIO_putc(Perl_debug_log, '*');
120             }
121             while (markscan <= PL_markstack + mark_max && *markscan < i);
122             PerlIO_printf(Perl_debug_log, "  ");
123         }
124         if (i > stack_max)
125             break;
126         PerlIO_printf(Perl_debug_log, "%-4s  ", SvPEEK(stack_base[i]));
127     }
128     while (1);
129     PerlIO_printf(Perl_debug_log, "\n");
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);
136 #endif /* DEBUGGING */
137 }
138
139
140 /* dump the current stack */
141
142 I32
143 Perl_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
157 #endif /* SKIP_DEBUGGING */
158     return 0;
159 }
160
161
162 #ifdef DEBUGGING
163 static const char * si_names[] = {
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
181 void
182 Perl_deb_stack_all(pTHX)
183 {
184 #ifdef DEBUGGING
185     I32          ix, si_ix;
186     const PERL_SI *si;
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     {
196         const int si_name_ix = si->si_type+1; /* -1 is a valid index */
197         const char * const si_name = (si_name_ix>= sizeof(si_names)) ? "????" : si_names[si_name_ix];
198         PerlIO_printf(Perl_debug_log, "STACK %"IVdf": %s\n",
199                                                 (IV)si_ix, si_name);
200
201         for (ix=0; ix<=si->si_cxix; ix++) {
202
203             const PERL_CONTEXT * const cx = &(si->si_cxstack[ix]);
204             PerlIO_printf(Perl_debug_log,
205                     "  CX %"IVdf": %-6s => ",
206                     (IV)ix, PL_block_type[CxTYPE(cx)]
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;
220                 const PERL_CONTEXT *cx_n;
221                 const PERL_SI *si_n;
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;
270                 if (cx_n) {
271                     mark_max  = cx_n->blk_oldmarksp;
272                 }
273                 else {
274                     mark_max = PL_markstack_ptr - PL_markstack;
275                 }
276
277                 deb_stack_n(AvARRAY(si->si_stack),
278                         stack_min, stack_max, mark_min, mark_max);
279
280                 if (CxTYPE(cx) == CXt_EVAL || CxTYPE(cx) == CXt_SUB
281                         || CxTYPE(cx) == CXt_FORMAT)
282                 {
283                     const OP * const retop = (CxTYPE(cx) == CXt_EVAL)
284                             ? cx->blk_eval.retop : cx->blk_sub.retop;
285
286                     PerlIO_printf(Perl_debug_log, "  retop=%s\n",
287                             retop ? OP_NAME(retop) : "(null)"
288                     );
289                 }
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
306 /*
307  * Local variables:
308  * c-indentation-style: bsd
309  * c-basic-offset: 4
310  * indent-tabs-mode: t
311  * End:
312  *
313  * ex: set ts=8 sts=4 sw=4 noet:
314  */