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