This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update IO-Compress to CPAN version 2.040
[perl5.git] / pod / perldebug.pod
1 =head1 NAME
2 X<debug> X<debugger>
3
4 perldebug - Perl debugging
5
6 =head1 DESCRIPTION
7
8 First of all, have you tried using the B<-w> switch?
9
10
11 If you're new to the Perl debugger, you may prefer to read
12 L<perldebtut>, which is a tutorial introduction to the debugger.
13
14 =head1 The Perl Debugger
15
16 If you invoke Perl with the B<-d> switch, your script runs under the
17 Perl source debugger.  This works like an interactive Perl
18 environment, prompting for debugger commands that let you examine
19 source code, set breakpoints, get stack backtraces, change the values of
20 variables, etc.  This is so convenient that you often fire up
21 the debugger all by itself just to test out Perl constructs
22 interactively to see what they do.  For example:
23 X<-d>
24
25     $ perl -d -e 42
26
27 In Perl, the debugger is not a separate program the way it usually is in the
28 typical compiled environment.  Instead, the B<-d> flag tells the compiler
29 to insert source information into the parse trees it's about to hand off
30 to the interpreter.  That means your code must first compile correctly
31 for the debugger to work on it.  Then when the interpreter starts up, it
32 preloads a special Perl library file containing the debugger.
33
34 The program will halt I<right before> the first run-time executable
35 statement (but see below regarding compile-time statements) and ask you
36 to enter a debugger command.  Contrary to popular expectations, whenever
37 the debugger halts and shows you a line of code, it always displays the
38 line it's I<about> to execute, rather than the one it has just executed.
39
40 Any command not recognized by the debugger is directly executed
41 (C<eval>'d) as Perl code in the current package.  (The debugger
42 uses the DB package for keeping its own state information.)
43
44 Note that the said C<eval> is bound by an implicit scope. As a
45 result any newly introduced lexical variable or any modified
46 capture buffer content is lost after the eval. The debugger is a
47 nice environment to learn Perl, but if you interactively experiment using
48 material which should be in the same scope, stuff it in one line.
49
50 For any text entered at the debugger prompt, leading and trailing whitespace
51 is first stripped before further processing.  If a debugger command
52 coincides with some function in your own program, merely precede the
53 function with something that doesn't look like a debugger command, such
54 as a leading C<;> or perhaps a C<+>, or by wrapping it with parentheses
55 or braces.
56
57 =head2 Calling the Debugger
58
59 There are several ways to call the debugger:
60
61 =over 4
62
63 =item perl -d program_name
64
65 On the given program identified by C<program_name>.
66
67 =item perl -d -e 0 
68
69 Interactively supply an arbitrary C<expression> using C<-e>.
70
71 =item perl -d:Ptkdb program_name
72
73 Debug a given program via the C<Devel::Ptkdb> GUI.
74
75 =item perl -dt threaded_program_name
76
77 Debug a given program using threads (experimental).
78
79 =back
80
81 =head2 Debugger Commands
82
83 The interactive debugger understands the following commands:
84
85 =over 12
86
87 =item h
88 X<debugger command, h>
89
90 Prints out a summary help message
91
92 =item h [command]
93
94 Prints out a help message for the given debugger command.
95
96 =item h h
97
98 The special argument of C<h h> produces the entire help page, which is quite long.
99
100 If the output of the C<h h> command (or any command, for that matter) scrolls
101 past your screen, precede the command with a leading pipe symbol so
102 that it's run through your pager, as in
103
104     DB> |h h
105
106 You may change the pager which is used via C<o pager=...> command.
107
108 =item p expr
109 X<debugger command, p>
110
111 Same as C<print {$DB::OUT} expr> in the current package.  In particular,
112 because this is just Perl's own C<print> function, this means that nested
113 data structures and objects are not dumped, unlike with the C<x> command.
114
115 The C<DB::OUT> filehandle is opened to F</dev/tty>, regardless of
116 where STDOUT may be redirected to.
117
118 =item x [maxdepth] expr
119 X<debugger command, x>
120
121 Evaluates its expression in list context and dumps out the result in a
122 pretty-printed fashion.  Nested data structures are printed out
123 recursively, unlike the real C<print> function in Perl.  When dumping
124 hashes, you'll probably prefer 'x \%h' rather than 'x %h'.
125 See L<Dumpvalue> if you'd like to do this yourself.
126
127 The output format is governed by multiple options described under
128 L<"Configurable Options">.
129
130 If the C<maxdepth> is included, it must be a numeral I<N>; the value is
131 dumped only I<N> levels deep, as if the C<dumpDepth> option had been
132 temporarily set to I<N>.
133
134 =item V [pkg [vars]]
135 X<debugger command, V>
136
137 Display all (or some) variables in package (defaulting to C<main>)
138 using a data pretty-printer (hashes show their keys and values so
139 you see what's what, control characters are made printable, etc.).
140 Make sure you don't put the type specifier (like C<$>) there, just
141 the symbol names, like this:
142
143     V DB filename line
144
145 Use C<~pattern> and C<!pattern> for positive and negative regexes.
146
147 This is similar to calling the C<x> command on each applicable var.
148
149 =item X [vars]
150 X<debugger command, X>
151
152 Same as C<V currentpackage [vars]>.
153
154 =item y [level [vars]]
155 X<debugger command, y>
156
157 Display all (or some) lexical variables (mnemonic: C<mY> variables)
158 in the current scope or I<level> scopes higher.  You can limit the
159 variables that you see with I<vars> which works exactly as it does
160 for the C<V> and C<X> commands.  Requires the C<PadWalker> module
161 version 0.08 or higher; will warn if this isn't installed.  Output
162 is pretty-printed in the same style as for C<V> and the format is
163 controlled by the same options.
164
165 =item T
166 X<debugger command, T> X<backtrace> X<stack, backtrace>
167
168 Produce a stack backtrace.  See below for details on its output.
169
170 =item s [expr]
171 X<debugger command, s> X<step>
172
173 Single step.  Executes until the beginning of another
174 statement, descending into subroutine calls.  If an expression is
175 supplied that includes function calls, it too will be single-stepped.
176
177 =item n [expr]
178 X<debugger command, n>
179
180 Next.  Executes over subroutine calls, until the beginning
181 of the next statement.  If an expression is supplied that includes
182 function calls, those functions will be executed with stops before
183 each statement.
184
185 =item r
186 X<debugger command, r>
187
188 Continue until the return from the current subroutine.
189 Dump the return value if the C<PrintRet> option is set (default).
190
191 =item <CR>
192
193 Repeat last C<n> or C<s> command.
194
195 =item c [line|sub]
196 X<debugger command, c>
197
198 Continue, optionally inserting a one-time-only breakpoint
199 at the specified line or subroutine.
200
201 =item l
202 X<debugger command, l>
203
204 List next window of lines.
205
206 =item l min+incr
207
208 List C<incr+1> lines starting at C<min>.
209
210 =item l min-max
211
212 List lines C<min> through C<max>.  C<l -> is synonymous to C<->.
213
214 =item l line
215
216 List a single line.
217
218 =item l subname
219
220 List first window of lines from subroutine.  I<subname> may
221 be a variable that contains a code reference.
222
223 =item -
224 X<debugger command, ->
225
226 List previous window of lines.
227
228 =item v [line]
229 X<debugger command, v>
230
231 View a few lines of code around the current line.
232
233 =item .
234 X<debugger command, .>
235
236 Return the internal debugger pointer to the line last
237 executed, and print out that line.
238
239 =item f filename
240 X<debugger command, f>
241
242 Switch to viewing a different file or C<eval> statement.  If I<filename>
243 is not a full pathname found in the values of %INC, it is considered
244 a regex.
245
246 C<eval>ed strings (when accessible) are considered to be filenames:
247 C<f (eval 7)> and C<f eval 7\b> access the body of the 7th C<eval>ed string
248 (in the order of execution).  The bodies of the currently executed C<eval>
249 and of C<eval>ed strings that define subroutines are saved and thus
250 accessible.
251
252 =item /pattern/
253
254 Search forwards for pattern (a Perl regex); final / is optional.
255 The search is case-insensitive by default.
256
257 =item ?pattern?
258
259 Search backwards for pattern; final ? is optional.
260 The search is case-insensitive by default.
261
262 =item L [abw]
263 X<debugger command, L>
264
265 List (default all) actions, breakpoints and watch expressions
266
267 =item S [[!]regex]
268 X<debugger command, S>
269
270 List subroutine names [not] matching the regex.
271
272 =item t
273 X<debugger command, t>
274
275 Toggle trace mode (see also the C<AutoTrace> option).
276
277 =item t expr
278 X<debugger command, t>
279
280 Trace through execution of C<expr>.
281 See L<perldebguts/"Frame Listing Output Examples"> for examples.
282
283 =item b
284 X<breakpoint>
285 X<debugger command, b>
286
287 Sets breakpoint on current line
288
289 =item b [line] [condition]
290 X<breakpoint>
291 X<debugger command, b>
292
293 Set a breakpoint before the given line.  If a condition
294 is specified, it's evaluated each time the statement is reached: a
295 breakpoint is taken only if the condition is true.  Breakpoints may
296 only be set on lines that begin an executable statement.  Conditions
297 don't use C<if>:
298
299     b 237 $x > 30
300     b 237 ++$count237 < 11
301     b 33 /pattern/i
302
303 =item b [file]:[line] [condition]
304 X<breakpoint>
305 X<debugger command, b>
306
307 Set a breakpoint before the given line in a (possibly different) file.  If a
308 condition is specified, it's evaluated each time the statement is reached: a
309 breakpoint is taken only if the condition is true.  Breakpoints may only be set
310 on lines that begin an executable statement.  Conditions don't use C<if>:
311
312     b lib/MyModule.pm:237 $x > 30
313     b /usr/lib/perl5/site_perl/CGI.pm:100 ++$count100 < 11
314
315 =item b subname [condition]
316 X<breakpoint>
317 X<debugger command, b>
318
319 Set a breakpoint before the first line of the named subroutine.  I<subname> may
320 be a variable containing a code reference (in this case I<condition>
321 is not supported).
322
323 =item b postpone subname [condition]
324 X<breakpoint>
325 X<debugger command, b>
326
327 Set a breakpoint at first line of subroutine after it is compiled.
328
329 =item b load filename
330 X<breakpoint>
331 X<debugger command, b>
332
333 Set a breakpoint before the first executed line of the I<filename>,
334 which should be a full pathname found amongst the %INC values.
335
336 =item b compile subname
337 X<breakpoint>
338 X<debugger command, b>
339
340 Sets a breakpoint before the first statement executed after the specified
341 subroutine is compiled.
342
343 =item B line
344 X<breakpoint>
345 X<debugger command, B>
346
347 Delete a breakpoint from the specified I<line>.
348
349 =item B *
350 X<breakpoint>
351 X<debugger command, B>
352
353 Delete all installed breakpoints.
354
355 =item disable [file]:[line]
356 X<breakpoint>
357 X<debugger command, disable>
358 X<disable>
359
360 Disable the breakpoint so it won't stop the execution of the program. 
361 Breakpoints are enabled by default and can be re-enabled using the C<enable>
362 command.
363
364 =item disable [line]
365 X<breakpoint>
366 X<debugger command, disable>
367 X<disable>
368
369 Disable the breakpoint so it won't stop the execution of the program. 
370 Breakpoints are enabled by default and can be re-enabled using the C<enable>
371 command.
372
373 This is done for a breakpoint in the current file.
374
375 =item enable [file]:[line]
376 X<breakpoint>
377 X<debugger command, disable>
378 X<disable>
379
380 Enable the breakpoint so it will stop the execution of the program. 
381
382 =item enable [line]
383 X<breakpoint>
384 X<debugger command, disable>
385 X<disable>
386
387 Enable the breakpoint so it will stop the execution of the program. 
388
389 This is done for a breakpoint in the current file.
390
391 =item a [line] command
392 X<debugger command, a>
393
394 Set an action to be done before the line is executed.  If I<line> is
395 omitted, set an action on the line about to be executed.
396 The sequence of steps taken by the debugger is
397
398   1. check for a breakpoint at this line
399   2. print the line if necessary (tracing)
400   3. do any actions associated with that line
401   4. prompt user if at a breakpoint or in single-step
402   5. evaluate line
403
404 For example, this will print out $foo every time line
405 53 is passed:
406
407     a 53 print "DB FOUND $foo\n"
408
409 =item A line
410 X<debugger command, A>
411
412 Delete an action from the specified line.
413
414 =item A *
415 X<debugger command, A>
416
417 Delete all installed actions.
418
419 =item w expr
420 X<debugger command, w>
421
422 Add a global watch-expression. Whenever a watched global changes the
423 debugger will stop and display the old and new values.
424
425 =item W expr
426 X<debugger command, W>
427
428 Delete watch-expression
429
430 =item W *
431 X<debugger command, W>
432
433 Delete all watch-expressions.
434
435 =item o
436 X<debugger command, o>
437
438 Display all options.
439
440 =item o booloption ...
441 X<debugger command, o>
442
443 Set each listed Boolean option to the value C<1>.
444
445 =item o anyoption? ...
446 X<debugger command, o>
447
448 Print out the value of one or more options.
449
450 =item o option=value ...
451 X<debugger command, o>
452
453 Set the value of one or more options.  If the value has internal
454 whitespace, it should be quoted.  For example, you could set C<o
455 pager="less -MQeicsNfr"> to call B<less> with those specific options.
456 You may use either single or double quotes, but if you do, you must
457 escape any embedded instances of same sort of quote you began with,
458 as well as any escaping any escapes that immediately precede that
459 quote but which are not meant to escape the quote itself.  In other
460 words, you follow single-quoting rules irrespective of the quote;
461 eg: C<o option='this isn\'t bad'> or C<o option="She said, \"Isn't
462 it?\"">.
463
464 For historical reasons, the C<=value> is optional, but defaults to
465 1 only where it is safe to do so--that is, mostly for Boolean
466 options.  It is always better to assign a specific value using C<=>.
467 The C<option> can be abbreviated, but for clarity probably should
468 not be.  Several options can be set together.  See L<"Configurable Options">
469 for a list of these.
470
471 =item < ?
472 X<< debugger command, < >>
473
474 List out all pre-prompt Perl command actions.
475
476 =item < [ command ]
477 X<< debugger command, < >>
478
479 Set an action (Perl command) to happen before every debugger prompt.
480 A multi-line command may be entered by backslashing the newlines.
481
482 =item < *
483 X<< debugger command, < >>
484
485 Delete all pre-prompt Perl command actions.
486
487 =item << command
488 X<< debugger command, << >>
489
490 Add an action (Perl command) to happen before every debugger prompt.
491 A multi-line command may be entered by backwhacking the newlines.
492
493 =item > ?
494 X<< debugger command, > >>
495
496 List out post-prompt Perl command actions.
497
498 =item > command
499 X<< debugger command, > >>
500
501 Set an action (Perl command) to happen after the prompt when you've
502 just given a command to return to executing the script.  A multi-line
503 command may be entered by backslashing the newlines (we bet you
504 couldn't have guessed this by now).
505
506 =item > *
507 X<< debugger command, > >>
508
509 Delete all post-prompt Perl command actions.
510
511 =item >> command
512 X<<< debugger command, >> >>>
513
514 Adds an action (Perl command) to happen after the prompt when you've
515 just given a command to return to executing the script.  A multi-line
516 command may be entered by backslashing the newlines.
517
518 =item { ?
519 X<debugger command, {>
520
521 List out pre-prompt debugger commands.
522
523 =item { [ command ]
524
525 Set an action (debugger command) to happen before every debugger prompt.
526 A multi-line command may be entered in the customary fashion.
527
528 Because this command is in some senses new, a warning is issued if
529 you appear to have accidentally entered a block instead.  If that's
530 what you mean to do, write it as with C<;{ ... }> or even
531 C<do { ... }>.
532
533 =item { *
534 X<debugger command, {>
535
536 Delete all pre-prompt debugger commands.
537
538 =item {{ command
539 X<debugger command, {{>
540
541 Add an action (debugger command) to happen before every debugger prompt.
542 A multi-line command may be entered, if you can guess how: see above.
543
544 =item ! number
545 X<debugger command, !>
546
547 Redo a previous command (defaults to the previous command).
548
549 =item ! -number
550 X<debugger command, !>
551
552 Redo number'th previous command.
553
554 =item ! pattern
555 X<debugger command, !>
556
557 Redo last command that started with pattern.
558 See C<o recallCommand>, too.
559
560 =item !! cmd
561 X<debugger command, !!>
562
563 Run cmd in a subprocess (reads from DB::IN, writes to DB::OUT) See
564 C<o shellBang>, also.  Note that the user's current shell (well,
565 their C<$ENV{SHELL}> variable) will be used, which can interfere
566 with proper interpretation of exit status or signal and coredump
567 information.
568
569 =item source file
570 X<debugger command, source>
571
572 Read and execute debugger commands from I<file>.
573 I<file> may itself contain C<source> commands.
574
575 =item H -number
576 X<debugger command, H>
577
578 Display last n commands.  Only commands longer than one character are
579 listed.  If I<number> is omitted, list them all.
580
581 =item q or ^D
582 X<debugger command, q>
583 X<debugger command, ^D>
584
585 Quit.  ("quit" doesn't work for this, unless you've made an alias)
586 This is the only supported way to exit the debugger, though typing
587 C<exit> twice might work.
588
589 Set the C<inhibit_exit> option to 0 if you want to be able to step
590 off the end the script.  You may also need to set $finished to 0
591 if you want to step through global destruction.
592
593 =item R
594 X<debugger command, R>
595
596 Restart the debugger by C<exec()>ing a new session.  We try to maintain
597 your history across this, but internal settings and command-line options
598 may be lost.
599
600 The following setting are currently preserved: history, breakpoints,
601 actions, debugger options, and the Perl command-line
602 options B<-w>, B<-I>, and B<-e>.
603
604 =item |dbcmd
605 X<debugger command, |>
606
607 Run the debugger command, piping DB::OUT into your current pager.
608
609 =item ||dbcmd
610 X<debugger command, ||>
611
612 Same as C<|dbcmd> but DB::OUT is temporarily C<select>ed as well.
613
614 =item = [alias value]
615 X<debugger command, =>
616
617 Define a command alias, like
618
619     = quit q
620
621 or list current aliases.
622
623 =item command
624
625 Execute command as a Perl statement.  A trailing semicolon will be
626 supplied.  If the Perl statement would otherwise be confused for a
627 Perl debugger, use a leading semicolon, too.
628
629 =item m expr
630 X<debugger command, m>
631
632 List which methods may be called on the result of the evaluated
633 expression.  The expression may evaluated to a reference to a
634 blessed object, or to a package name.
635
636 =item M
637 X<debugger command, M>
638
639 Display all loaded modules and their versions.
640
641 =item man [manpage]
642 X<debugger command, man>
643
644 Despite its name, this calls your system's default documentation
645 viewer on the given page, or on the viewer itself if I<manpage> is
646 omitted.  If that viewer is B<man>, the current C<Config> information
647 is used to invoke B<man> using the proper MANPATH or S<B<-M>
648 I<manpath>> option.  Failed lookups of the form C<XXX> that match
649 known manpages of the form I<perlXXX> will be retried.  This lets
650 you type C<man debug> or C<man op> from the debugger.
651
652 On systems traditionally bereft of a usable B<man> command, the
653 debugger invokes B<perldoc>.  Occasionally this determination is
654 incorrect due to recalcitrant vendors or rather more felicitously,
655 to enterprising users.  If you fall into either category, just
656 manually set the $DB::doccmd variable to whatever viewer to view
657 the Perl documentation on your system.  This may be set in an rc
658 file, or through direct assignment.  We're still waiting for a
659 working example of something along the lines of:
660
661     $DB::doccmd = 'netscape -remote http://something.here/';
662
663 =back
664
665 =head2 Configurable Options
666
667 The debugger has numerous options settable using the C<o> command,
668 either interactively or from the environment or an rc file.
669 (./.perldb or ~/.perldb under Unix.)
670
671
672 =over 12
673
674 =item C<recallCommand>, C<ShellBang>
675 X<debugger option, recallCommand>
676 X<debugger option, ShellBang>
677
678 The characters used to recall command or spawn shell.  By
679 default, both are set to C<!>, which is unfortunate.
680
681 =item C<pager>
682 X<debugger option, pager>
683
684 Program to use for output of pager-piped commands (those beginning
685 with a C<|> character.)  By default, C<$ENV{PAGER}> will be used.
686 Because the debugger uses your current terminal characteristics
687 for bold and underlining, if the chosen pager does not pass escape
688 sequences through unchanged, the output of some debugger commands
689 will not be readable when sent through the pager.
690
691 =item C<tkRunning>
692 X<debugger option, tkRunning>
693
694 Run Tk while prompting (with ReadLine).
695
696 =item C<signalLevel>, C<warnLevel>, C<dieLevel>
697 X<debugger option, signalLevel> X<debugger option, warnLevel>
698 X<debugger option, dieLevel>
699
700 Level of verbosity.  By default, the debugger leaves your exceptions
701 and warnings alone, because altering them can break correctly running
702 programs.  It will attempt to print a message when uncaught INT, BUS, or
703 SEGV signals arrive.  (But see the mention of signals in L</BUGS> below.)
704
705 To disable this default safe mode, set these values to something higher
706 than 0.  At a level of 1, you get backtraces upon receiving any kind
707 of warning (this is often annoying) or exception (this is
708 often valuable).  Unfortunately, the debugger cannot discern fatal
709 exceptions from non-fatal ones.  If C<dieLevel> is even 1, then your
710 non-fatal exceptions are also traced and unceremoniously altered if they
711 came from C<eval'ed> strings or from any kind of C<eval> within modules
712 you're attempting to load.  If C<dieLevel> is 2, the debugger doesn't
713 care where they came from:  It usurps your exception handler and prints
714 out a trace, then modifies all exceptions with its own embellishments.
715 This may perhaps be useful for some tracing purposes, but tends to hopelessly
716 destroy any program that takes its exception handling seriously.
717
718 =item C<AutoTrace>
719 X<debugger option, AutoTrace>
720
721 Trace mode (similar to C<t> command, but can be put into
722 C<PERLDB_OPTS>).
723
724 =item C<LineInfo>
725 X<debugger option, LineInfo>
726
727 File or pipe to print line number info to.  If it is a pipe (say,
728 C<|visual_perl_db>), then a short message is used.  This is the
729 mechanism used to interact with a slave editor or visual debugger,
730 such as the special C<vi> or C<emacs> hooks, or the C<ddd> graphical
731 debugger.
732
733 =item C<inhibit_exit>
734 X<debugger option, inhibit_exit>
735
736 If 0, allows I<stepping off> the end of the script.
737
738 =item C<PrintRet>
739 X<debugger option, PrintRet>
740
741 Print return value after C<r> command if set (default).
742
743 =item C<ornaments>
744 X<debugger option, ornaments>
745
746 Affects screen appearance of the command line (see L<Term::ReadLine>).
747 There is currently no way to disable these, which can render
748 some output illegible on some displays, or with some pagers.
749 This is considered a bug.
750
751 =item C<frame>
752 X<debugger option, frame>
753
754 Affects the printing of messages upon entry and exit from subroutines.  If
755 C<frame & 2> is false, messages are printed on entry only. (Printing
756 on exit might be useful if interspersed with other messages.)
757
758 If C<frame & 4>, arguments to functions are printed, plus context
759 and caller info.  If C<frame & 8>, overloaded C<stringify> and
760 C<tie>d C<FETCH> is enabled on the printed arguments.  If C<frame
761 & 16>, the return value from the subroutine is printed.
762
763 The length at which the argument list is truncated is governed by the
764 next option:
765
766 =item C<maxTraceLen>
767 X<debugger option, maxTraceLen>
768
769 Length to truncate the argument list when the C<frame> option's
770 bit 4 is set.
771
772 =item C<windowSize>
773 X<debugger option, windowSize>
774
775 Change the size of code list window (default is 10 lines).
776
777 =back
778
779 The following options affect what happens with C<V>, C<X>, and C<x>
780 commands:
781
782 =over 12
783
784 =item C<arrayDepth>, C<hashDepth>
785 X<debugger option, arrayDepth> X<debugger option, hashDepth>
786
787 Print only first N elements ('' for all).
788
789 =item C<dumpDepth>
790 X<debugger option, dumpDepth>
791
792 Limit recursion depth to N levels when dumping structures.
793 Negative values are interpreted as infinity.  Default: infinity.
794
795 =item C<compactDump>, C<veryCompact>
796 X<debugger option, compactDump> X<debugger option, veryCompact>
797
798 Change the style of array and hash output.  If C<compactDump>, short array
799 may be printed on one line.
800
801 =item C<globPrint>
802 X<debugger option, globPrint>
803
804 Whether to print contents of globs.
805
806 =item C<DumpDBFiles>
807 X<debugger option, DumpDBFiles>
808
809 Dump arrays holding debugged files.
810
811 =item C<DumpPackages>
812 X<debugger option, DumpPackages>
813
814 Dump symbol tables of packages.
815
816 =item C<DumpReused>
817 X<debugger option, DumpReused>
818
819 Dump contents of "reused" addresses.
820
821 =item C<quote>, C<HighBit>, C<undefPrint>
822 X<debugger option, quote> X<debugger option, HighBit>
823 X<debugger option, undefPrint>
824
825 Change the style of string dump.  The default value for C<quote>
826 is C<auto>; one can enable double-quotish or single-quotish format
827 by setting it to C<"> or C<'>, respectively.  By default, characters
828 with their high bit set are printed verbatim.
829
830 =item C<UsageOnly>
831 X<debugger option, UsageOnly>
832
833 Rudimentary per-package memory usage dump.  Calculates total
834 size of strings found in variables in the package.  This does not
835 include lexicals in a module's file scope, or lost in closures.
836
837 =back
838
839 After the rc file is read, the debugger reads the C<$ENV{PERLDB_OPTS}>
840 environment variable and parses this as the remainder of a "O ..."
841 line as one might enter at the debugger prompt.  You may place the
842 initialization options C<TTY>, C<noTTY>, C<ReadLine>, and C<NonStop>
843 there.
844
845 If your rc file contains:
846
847   parse_options("NonStop=1 LineInfo=db.out AutoTrace");
848
849 then your script will run without human intervention, putting trace
850 information into the file I<db.out>.  (If you interrupt it, you'd
851 better reset C<LineInfo> to F</dev/tty> if you expect to see anything.)
852
853 =over 12
854
855 =item C<TTY>
856 X<debugger option, TTY>
857
858 The TTY to use for debugging I/O.
859
860 =item C<noTTY>
861 X<debugger option, noTTY>
862
863 If set, the debugger goes into C<NonStop> mode and will not connect to a TTY.  If
864 interrupted (or if control goes to the debugger via explicit setting of
865 $DB::signal or $DB::single from the Perl script), it connects to a TTY
866 specified in the C<TTY> option at startup, or to a tty found at
867 runtime using the C<Term::Rendezvous> module of your choice.
868
869 This module should implement a method named C<new> that returns an object
870 with two methods: C<IN> and C<OUT>.  These should return filehandles to use
871 for debugging input and output correspondingly.  The C<new> method should
872 inspect an argument containing the value of C<$ENV{PERLDB_NOTTY}> at
873 startup, or C<"$ENV{HOME}/.perldbtty$$"> otherwise.  This file is not
874 inspected for proper ownership, so security hazards are theoretically
875 possible.
876
877 =item C<ReadLine>
878 X<debugger option, ReadLine>
879
880 If false, readline support in the debugger is disabled in order
881 to debug applications that themselves use ReadLine.
882
883 =item C<NonStop>
884 X<debugger option, NonStop>
885
886 If set, the debugger goes into non-interactive mode until interrupted, or
887 programmatically by setting $DB::signal or $DB::single.
888
889 =back
890
891 Here's an example of using the C<$ENV{PERLDB_OPTS}> variable:
892
893     $ PERLDB_OPTS="NonStop frame=2" perl -d myprogram
894
895 That will run the script B<myprogram> without human intervention,
896 printing out the call tree with entry and exit points.  Note that
897 C<NonStop=1 frame=2> is equivalent to C<N f=2>, and that originally,
898 options could be uniquely abbreviated by the first letter (modulo
899 the C<Dump*> options).  It is nevertheless recommended that you
900 always spell them out in full for legibility and future compatibility.
901
902 Other examples include
903
904     $ PERLDB_OPTS="NonStop LineInfo=listing frame=2" perl -d myprogram
905
906 which runs script non-interactively, printing info on each entry
907 into a subroutine and each executed line into the file named F<listing>.
908 (If you interrupt it, you would better reset C<LineInfo> to something
909 "interactive"!)
910
911 Other examples include (using standard shell syntax to show environment
912 variable settings):
913
914   $ ( PERLDB_OPTS="NonStop frame=1 AutoTrace LineInfo=tperl.out"
915       perl -d myprogram )
916
917 which may be useful for debugging a program that uses C<Term::ReadLine>
918 itself.  Do not forget to detach your shell from the TTY in the window that
919 corresponds to F</dev/ttyXX>, say, by issuing a command like
920
921   $ sleep 1000000
922
923 See L<perldebguts/"Debugger Internals"> for details.
924
925 =head2 Debugger Input/Output
926
927 =over 8
928
929 =item Prompt
930
931 The debugger prompt is something like
932
933     DB<8>
934
935 or even
936
937     DB<<17>>
938
939 where that number is the command number, and which you'd use to
940 access with the built-in B<csh>-like history mechanism.  For example,
941 C<!17> would repeat command number 17.  The depth of the angle
942 brackets indicates the nesting depth of the debugger.  You could
943 get more than one set of brackets, for example, if you'd already
944 at a breakpoint and then printed the result of a function call that
945 itself has a breakpoint, or you step into an expression via C<s/n/t
946 expression> command.
947
948 =item Multiline commands
949
950 If you want to enter a multi-line command, such as a subroutine
951 definition with several statements or a format, escape the newline
952 that would normally end the debugger command with a backslash.
953 Here's an example:
954
955       DB<1> for (1..4) {         \
956       cont:     print "ok\n";   \
957       cont: }
958       ok
959       ok
960       ok
961       ok
962
963 Note that this business of escaping a newline is specific to interactive
964 commands typed into the debugger.
965
966 =item Stack backtrace
967 X<backtrace> X<stack, backtrace>
968
969 Here's an example of what a stack backtrace via C<T> command might
970 look like:
971
972     $ = main::infested called from file `Ambulation.pm' line 10
973     @ = Ambulation::legs(1, 2, 3, 4) called from file `camel_flea' line 7
974     $ = main::pests('bactrian', 4) called from file `camel_flea' line 4
975
976 The left-hand character up there indicates the context in which the
977 function was called, with C<$> and C<@> meaning scalar or list
978 contexts respectively, and C<.> meaning void context (which is
979 actually a sort of scalar context).  The display above says
980 that you were in the function C<main::infested> when you ran the
981 stack dump, and that it was called in scalar context from line
982 10 of the file I<Ambulation.pm>, but without any arguments at all,
983 meaning it was called as C<&infested>.  The next stack frame shows
984 that the function C<Ambulation::legs> was called in list context
985 from the I<camel_flea> file with four arguments.  The last stack
986 frame shows that C<main::pests> was called in scalar context,
987 also from I<camel_flea>, but from line 4.
988
989 If you execute the C<T> command from inside an active C<use>
990 statement, the backtrace will contain both a C<require> frame and
991 an C<eval> frame.
992
993 =item Line Listing Format
994
995 This shows the sorts of output the C<l> command can produce:
996
997     DB<<13>> l
998   101:                @i{@i} = ();
999   102:b               @isa{@i,$pack} = ()
1000   103                     if(exists $i{$prevpack} || exists $isa{$pack});
1001   104             }
1002   105
1003   106             next
1004   107==>              if(exists $isa{$pack});
1005   108
1006   109:a           if ($extra-- > 0) {
1007   110:                %isa = ($pack,1);
1008
1009 Breakable lines are marked with C<:>.  Lines with breakpoints are
1010 marked by C<b> and those with actions by C<a>.  The line that's
1011 about to be executed is marked by C<< ==> >>.
1012
1013 Please be aware that code in debugger listings may not look the same
1014 as your original source code.  Line directives and external source
1015 filters can alter the code before Perl sees it, causing code to move
1016 from its original positions or take on entirely different forms.
1017
1018 =item Frame listing
1019
1020 When the C<frame> option is set, the debugger would print entered (and
1021 optionally exited) subroutines in different styles.  See L<perldebguts>
1022 for incredibly long examples of these.
1023
1024 =back
1025
1026 =head2 Debugging Compile-Time Statements
1027
1028 If you have compile-time executable statements (such as code within
1029 BEGIN, UNITCHECK and CHECK blocks or C<use> statements), these will
1030 I<not> be stopped by debugger, although C<require>s and INIT blocks
1031 will, and compile-time statements can be traced with the C<AutoTrace>
1032 option set in C<PERLDB_OPTS>).  From your own Perl code, however, you
1033 can transfer control back to the debugger using the following
1034 statement, which is harmless if the debugger is not running:
1035
1036     $DB::single = 1;
1037
1038 If you set C<$DB::single> to 2, it's equivalent to having
1039 just typed the C<n> command, whereas a value of 1 means the C<s>
1040 command.  The C<$DB::trace>  variable should be set to 1 to simulate
1041 having typed the C<t> command.
1042
1043 Another way to debug compile-time code is to start the debugger, set a
1044 breakpoint on the I<load> of some module:
1045
1046     DB<7> b load f:/perllib/lib/Carp.pm
1047   Will stop on load of `f:/perllib/lib/Carp.pm'.
1048
1049 and then restart the debugger using the C<R> command (if possible).  One can use C<b
1050 compile subname> for the same purpose.
1051
1052 =head2 Debugger Customization
1053
1054 The debugger probably contains enough configuration hooks that you
1055 won't ever have to modify it yourself.  You may change the behaviour
1056 of the debugger from within the debugger using its C<o> command, from
1057 the command line via the C<PERLDB_OPTS> environment variable, and
1058 from customization files.
1059
1060 You can do some customization by setting up a F<.perldb> file, which
1061 contains initialization code.  For instance, you could make aliases
1062 like these (the last one is one people expect to be there):
1063
1064     $DB::alias{'len'}  = 's/^len(.*)/p length($1)/';
1065     $DB::alias{'stop'} = 's/^stop (at|in)/b/';
1066     $DB::alias{'ps'}   = 's/^ps\b/p scalar /';
1067     $DB::alias{'quit'} = 's/^quit(\s*)/exit/';
1068
1069 You can change options from F<.perldb> by using calls like this one;
1070
1071     parse_options("NonStop=1 LineInfo=db.out AutoTrace=1 frame=2");
1072
1073 The code is executed in the package C<DB>.  Note that F<.perldb> is
1074 processed before processing C<PERLDB_OPTS>.  If F<.perldb> defines the
1075 subroutine C<afterinit>, that function is called after debugger
1076 initialization ends.  F<.perldb> may be contained in the current
1077 directory, or in the home directory.  Because this file is sourced
1078 in by Perl and may contain arbitrary commands, for security reasons,
1079 it must be owned by the superuser or the current user, and writable
1080 by no one but its owner.
1081
1082 You can mock TTY input to debugger by adding arbitrary commands to
1083 @DB::typeahead. For example, your F<.perldb> file might contain:
1084
1085     sub afterinit { push @DB::typeahead, "b 4", "b 6"; }
1086
1087 Which would attempt to set breakpoints on lines 4 and 6 immediately
1088 after debugger initialization. Note that @DB::typeahead is not a supported
1089 interface and is subject to change in future releases.
1090
1091 If you want to modify the debugger, copy F<perl5db.pl> from the
1092 Perl library to another name and hack it to your heart's content.
1093 You'll then want to set your C<PERL5DB> environment variable to say
1094 something like this:
1095
1096     BEGIN { require "myperl5db.pl" }
1097
1098 As a last resort, you could also use C<PERL5DB> to customize the debugger
1099 by directly setting internal variables or calling debugger functions.
1100
1101 Note that any variables and functions that are not documented in
1102 this document (or in L<perldebguts>) are considered for internal
1103 use only, and as such are subject to change without notice.
1104
1105 =head2 Readline Support / History in the Debugger
1106
1107 As shipped, the only command-line history supplied is a simplistic one
1108 that checks for leading exclamation points.  However, if you install
1109 the Term::ReadKey and Term::ReadLine modules from CPAN (such as
1110 Term::ReadLine::Gnu, Term::ReadLine::Perl, ...) you will
1111 have full editing capabilities much like those GNU I<readline>(3) provides.
1112 Look for these in the F<modules/by-module/Term> directory on CPAN.
1113 These do not support normal B<vi> command-line editing, however.
1114
1115 A rudimentary command-line completion is also available, including
1116 lexical variables in the current scope if the C<PadWalker> module
1117 is installed.
1118
1119 Without Readline support you may see the symbols "^[[A", "^[[C", "^[[B",
1120 "^[[D"", "^H", ... when using the arrow keys and/or the backspace key.
1121
1122 =head2 Editor Support for Debugging
1123
1124 If you have the FSF's version of B<emacs> installed on your system,
1125 it can interact with the Perl debugger to provide an integrated
1126 software development environment reminiscent of its interactions
1127 with C debuggers.
1128
1129 Recent versions of Emacs come with a
1130 start file for making B<emacs> act like a
1131 syntax-directed editor that understands (some of) Perl's syntax.
1132 See L<perlfaq3>.
1133
1134 A similar setup by Tom Christiansen for interacting with any
1135 vendor-shipped B<vi> and the X11 window system is also available.
1136 This works similarly to the integrated multiwindow support that
1137 B<emacs> provides, where the debugger drives the editor.  At the
1138 time of this writing, however, that tool's eventual location in the
1139 Perl distribution was uncertain.
1140
1141 Users of B<vi> should also look into B<vim> and B<gvim>, the mousey
1142 and windy version, for coloring of Perl keywords.
1143
1144 Note that only perl can truly parse Perl, so all such CASE tools
1145 fall somewhat short of the mark, especially if you don't program
1146 your Perl as a C programmer might.
1147
1148 =head2 The Perl Profiler
1149 X<profile> X<profiling> X<profiler>
1150
1151 If you wish to supply an alternative debugger for Perl to run,
1152 invoke your script with a colon and a package argument given to the
1153 B<-d> flag.  Perl's alternative debuggers include a Perl profiler,
1154 L<Devel::NYTProf>, which is available separately as a CPAN
1155 distribution.  To profile your Perl program in the file F<mycode.pl>,
1156 just type:
1157
1158     $ perl -d:NYTProf mycode.pl
1159
1160 When the script terminates the profiler will create a database of the
1161 profile information that you can turn into reports using the profiler's
1162 tools. See <perlperf> for details.
1163
1164 =head1 Debugging Regular Expressions
1165 X<regular expression, debugging>
1166 X<regex, debugging> X<regexp, debugging>
1167
1168 C<use re 'debug'> enables you to see the gory details of how the Perl
1169 regular expression engine works. In order to understand this typically
1170 voluminous output, one must not only have some idea about how regular
1171 expression matching works in general, but also know how Perl's regular
1172 expressions are internally compiled into an automaton. These matters
1173 are explored in some detail in
1174 L<perldebguts/"Debugging Regular Expressions">.
1175
1176 =head1 Debugging Memory Usage
1177 X<memory usage>
1178
1179 Perl contains internal support for reporting its own memory usage,
1180 but this is a fairly advanced concept that requires some understanding
1181 of how memory allocation works.
1182 See L<perldebguts/"Debugging Perl Memory Usage"> for the details.
1183
1184 =head1 SEE ALSO
1185
1186 You did try the B<-w> switch, didn't you?
1187
1188 L<perldebtut>,
1189 L<perldebguts>,
1190 L<re>,
1191 L<DB>,
1192 L<Devel::NYTProf>,
1193 L<Dumpvalue>,
1194 and
1195 L<perlrun>.
1196
1197 When debugging a script that uses #! and is thus normally found in
1198 $PATH, the -S option causes perl to search $PATH for it, so you don't
1199 have to type the path or C<which $scriptname>.
1200
1201   $ perl -Sd foo.pl
1202
1203 =head1 BUGS
1204
1205 You cannot get stack frame information or in any fashion debug functions
1206 that were not compiled by Perl, such as those from C or C++ extensions.
1207
1208 If you alter your @_ arguments in a subroutine (such as with C<shift>
1209 or C<pop>), the stack backtrace will not show the original values.
1210
1211 The debugger does not currently work in conjunction with the B<-W>
1212 command-line switch, because it itself is not free of warnings.
1213
1214 If you're in a slow syscall (like C<wait>ing, C<accept>ing, or C<read>ing
1215 from your keyboard or a socket) and haven't set up your own C<$SIG{INT}>
1216 handler, then you won't be able to CTRL-C your way back to the debugger,
1217 because the debugger's own C<$SIG{INT}> handler doesn't understand that
1218 it needs to raise an exception to longjmp(3) out of slow syscalls.