3 perldebug - Perl debugging
7 First of all, have you tried using the B<-w> switch?
9 =head1 The Perl Debugger
11 If you invoke Perl with the B<-d> switch, your script runs under the
12 Perl source debugger. This works like an interactive Perl
13 environment, prompting for debugger commands that let you examine
14 source code, set breakpoints, get stack backtraces, change the values of
15 variables, etc. This is so convenient that you often fire up
16 the debugger all by itself just to test out Perl constructs
17 interactively to see what they do. For example:
21 In Perl, the debugger is not a separate program as it usually is in the
22 typical compiled environment. Instead, the B<-d> flag tells the compiler
23 to insert source information into the parse trees it's about to hand off
24 to the interpreter. That means your code must first compile correctly
25 for the debugger to work on it. Then when the interpreter starts up, it
26 preloads a Perl library file containing the debugger itself.
28 The program will halt I<right before> the first run-time executable
29 statement (but see below regarding compile-time statements) and ask you
30 to enter a debugger command. Contrary to popular expectations, whenever
31 the debugger halts and shows you a line of code, it always displays the
32 line it's I<about> to execute, rather than the one it has just executed.
34 Any command not recognized by the debugger is directly executed
35 (C<eval>'d) as Perl code in the current package. (The debugger uses the
36 DB package for its own state information.)
38 Leading white space before a command would cause the debugger to think
39 it's I<NOT> a debugger command but for Perl, so be careful not to do
42 =head2 Debugger Commands
44 The debugger understands the following commands:
50 Prints out a help message.
52 If you supply another debugger command as an argument to the C<h> command,
53 it prints out the description for just that command. The special
54 argument of C<h h> produces a more compact help listing, designed to fit
55 together on one screen.
57 If the output the C<h> command (or any command, for that matter) scrolls
58 past your screen, either precede the command with a leading pipe symbol so
59 it's run through your pager, as in
63 You may change the pager which is used via C<O pager=...> command.
67 Same as C<print {$DB::OUT} expr> in the current package. In particular,
68 because this is just Perl's own B<print> function, this means that nested
69 data structures and objects are not dumped, unlike with the C<x> command.
71 The C<DB::OUT> filehandle is opened to F</dev/tty>, regardless of
72 where STDOUT may be redirected to.
76 Evaluates its expression in list context and dumps out the result
77 in a pretty-printed fashion. Nested data structures are printed out
78 recursively, unlike the C<print> function.
80 The details of printout are governed by multiple C<O>ptions.
84 Display all (or some) variables in package (defaulting to the C<main>
85 package) using a data pretty-printer (hashes show their keys and values so
86 you see what's what, control characters are made printable, etc.). Make
87 sure you don't put the type specifier (like C<$>) there, just the symbol
92 Use C<~pattern> and C<!pattern> for positive and negative regexps.
94 Nested data structures are printed out in a legible fashion, unlike
95 the C<print> function.
97 The details of printout are governed by multiple C<O>ptions.
101 Same as C<V currentpackage [vars]>.
105 Produce a stack backtrace. See below for details on its output.
109 Single step. Executes until it reaches the beginning of another
110 statement, descending into subroutine calls. If an expression is
111 supplied that includes function calls, it too will be single-stepped.
115 Next. Executes over subroutine calls, until it reaches the beginning
116 of the next statement. If an expression is supplied that includes
117 function calls, those functions will be executed with stops before
122 Repeat last C<n> or C<s> command.
126 Continue, optionally inserting a one-time-only breakpoint
127 at the specified line or subroutine.
131 List next window of lines.
135 List C<incr+1> lines starting at C<min>.
139 List lines C<min> through C<max>. C<l -> is synonymous to C<->.
147 List first window of lines from subroutine.
151 List previous window of lines.
155 List window (a few lines) around the current line.
159 Return debugger pointer to the last-executed line and
164 Switch to viewing a different file or eval statement. If C<filename>
165 is not a full filename as found in values of %INC, it is considered as
170 Search forwards for pattern; final / is optional.
174 Search backwards for pattern; final ? is optional.
178 List all breakpoints and actions.
182 List subroutine names [not] matching pattern.
186 Toggle trace mode (see also C<AutoTrace> C<O>ption).
190 Trace through execution of expr. For example:
193 Stack dump during die enabled outside of evals.
195 Loading DB routines from perl5db.pl patch level 0.94
196 Emacs support available.
198 Enter h or `h h' for help.
205 DB<3> t print foo() * bar()
206 main::((eval 172):3): print foo() + bar();
207 main::foo((eval 168):2):
208 main::bar((eval 170):2):
211 or, with the C<O>ption C<frame=2> set,
215 DB<5> t print foo() * bar()
225 =item b [line] [condition]
227 Set a breakpoint. If line is omitted, sets a breakpoint on the line
228 that is about to be executed. If a condition is specified, it's
229 evaluated each time the statement is reached and a breakpoint is taken
230 only if the condition is true. Breakpoints may be set on only lines
231 that begin an executable statement. Conditions don't use B<if>:
234 b 237 ++$count237 < 11
237 =item b subname [condition]
239 Set a breakpoint at the first line of the named subroutine.
241 =item b postpone subname [condition]
243 Set breakpoint at first line of subroutine after it is compiled.
245 =item b load filename
247 Set breakpoint at the first executed line of the file. Filename should
248 be a full name as found in values of %INC.
250 =item b compile subname
252 Sets breakpoint at the first statement executed after the subroutine
257 Delete a breakpoint at the specified line. If line is omitted, deletes
258 the breakpoint on the line that is about to be executed.
262 Delete all installed breakpoints.
264 =item a [line] command
266 Set an action to be done before the line is executed.
267 The sequence of steps taken by the debugger is
269 1. check for a breakpoint at this line
270 2. print the line if necessary (tracing)
271 3. do any actions associated with that line
272 4. prompt user if at a breakpoint or in single-step
275 For example, this will print out C<$foo> every time line
278 a 53 print "DB FOUND $foo\n"
282 Delete all installed actions.
284 =item O [opt[=val]] [opt"val"] [opt?]...
286 Set or query values of options. val defaults to 1. opt can
287 be abbreviated. Several options can be listed.
291 =item C<recallCommand>, C<ShellBang>
293 The characters used to recall command or spawn shell. By
294 default, these are both set to C<!>.
298 Program to use for output of pager-piped commands (those
299 beginning with a C<|> character.) By default,
300 C<$ENV{PAGER}> will be used.
304 Run Tk while prompting (with ReadLine).
306 =item C<signalLevel>, C<warnLevel>, C<dieLevel>
308 Level of verbosity. By default the debugger is in a sane verbose mode,
309 thus it will print backtraces on all the warnings and die-messages
310 which are going to be printed out, and will print a message when
311 interesting uncaught signals arrive.
313 To disable this behaviour, set these values to 0. If C<dieLevel> is 2,
314 then the messages which will be caught by surrounding C<eval> are also
319 Trace mode (similar to C<t> command, but can be put into
324 File or pipe to print line number info to. If it is a pipe (say,
325 C<|visual_perl_db>), then a short, "emacs like" message is used.
327 =item C<inhibit_exit>
329 If 0, allows I<stepping off> the end of the script.
333 affects printing of return value after C<r> command.
337 affects screen appearance of the command line (see L<Term::Readline>).
341 affects printing messages on entry and exit from subroutines. If
342 C<frame & 2> is false, messages are printed on entry only. (Printing
343 on exit may be useful if inter(di)spersed with other messages.)
345 If C<frame & 4>, arguments to functions are printed as well as the
346 context and caller info. If C<frame & 8>, overloaded C<stringify> and
347 C<tie>d C<FETCH> are enabled on the printed arguments. If C<frame &
348 16>, the return value from the subroutine is printed as well.
350 The length at which the argument list is truncated is governed by the
355 length at which the argument list is truncated when C<frame> option's
360 The following options affect what happens with C<V>, C<X>, and C<x>
365 =item C<arrayDepth>, C<hashDepth>
367 Print only first N elements ('' for all).
369 =item C<compactDump>, C<veryCompact>
371 Change style of array and hash dump. If C<compactDump>, short array
372 may be printed on one line.
376 Whether to print contents of globs.
380 Dump arrays holding debugged files.
382 =item C<DumpPackages>
384 Dump symbol tables of packages.
386 =item C<quote>, C<HighBit>, C<undefPrint>
388 Change style of string dump. Default value of C<quote> is C<auto>, one
389 can enable either double-quotish dump, or single-quotish by setting it
390 to C<"> or C<'>. By default, characters with high bit set are printed
395 I<very> rudimentally per-package memory usage dump. Calculates total
396 size of strings in variables in the package.
400 During startup options are initialized from C<$ENV{PERLDB_OPTS}>.
401 You can put additional initialization options C<TTY>, C<noTTY>,
402 C<ReadLine>, and C<NonStop> there.
406 &parse_options("NonStop=1 LineInfo=db.out AutoTrace");
408 The script will run without human intervention, putting trace information
409 into the file I<db.out>. (If you interrupt it, you would better reset
410 C<LineInfo> to something "interactive"!)
416 The TTY to use for debugging I/O.
420 If set, goes in C<NonStop> mode, and would not connect to a TTY. If
421 interrupt (or if control goes to debugger via explicit setting of
422 $DB::signal or $DB::single from the Perl script), connects to a TTY
423 specified by the C<TTY> option at startup, or to a TTY found at
424 runtime using C<Term::Rendezvous> module of your choice.
426 This module should implement a method C<new> which returns an object
427 with two methods: C<IN> and C<OUT>, returning two filehandles to use
428 for debugging input and output correspondingly. Method C<new> may
429 inspect an argument which is a value of C<$ENV{PERLDB_NOTTY}> at
430 startup, or is C<"/tmp/perldbtty$$"> otherwise.
434 If false, readline support in debugger is disabled, so you can debug
435 ReadLine applications.
439 If set, debugger goes into noninteractive mode until interrupted, or
440 programmatically by setting $DB::signal or $DB::single.
444 Here's an example of using the C<$ENV{PERLDB_OPTS}> variable:
446 $ PERLDB_OPTS="N f=2" perl -d myprogram
448 will run the script C<myprogram> without human intervention, printing
449 out the call tree with entry and exit points. Note that C<N f=2> is
450 equivalent to C<NonStop=1 frame=2>. Note also that at the moment when
451 this documentation was written all the options to the debugger could
452 be uniquely abbreviated by the first letter (with exception of
455 Other examples may include
457 $ PERLDB_OPTS="N f A L=listing" perl -d myprogram
459 - runs script noninteractively, printing info on each entry into a
460 subroutine and each executed line into the file F<listing>. (If you
461 interrupt it, you would better reset C<LineInfo> to something
465 $ env "PERLDB_OPTS=R=0 TTY=/dev/ttyc" perl -d myprogram
467 may be useful for debugging a program which uses C<Term::ReadLine>
468 itself. Do not forget detach shell from the TTY in the window which
469 corresponds to F</dev/ttyc>, say, by issuing a command like
473 See L<"Debugger Internals"> below for more details.
475 =item E<lt> [ command ]
477 Set an action (Perl command) to happen before every debugger prompt.
478 A multi-line command may be entered by backslashing the newlines. If
479 C<command> is missing, resets the list of actions.
481 =item E<lt>E<lt> command
483 Add an action (Perl command) to happen before every debugger prompt.
484 A multi-line command may be entered by backslashing the newlines.
488 Set an action (Perl command) to happen after the prompt when you've
489 just given a command to return to executing the script. A multi-line
490 command may be entered by backslashing the newlines. If C<command> is
491 missing, resets the list of actions.
493 =item E<gt>E<gt> command
495 Adds an action (Perl command) to happen after the prompt when you've
496 just given a command to return to executing the script. A multi-line
497 command may be entered by backslashing the newlines.
501 Set an action (debugger command) to happen before every debugger prompt.
502 A multi-line command may be entered by backslashing the newlines. If
503 C<command> is missing, resets the list of actions.
507 Add an action (debugger command) to happen before every debugger prompt.
508 A multi-line command may be entered by backslashing the newlines.
512 Redo a previous command (default previous command).
516 Redo number'th-to-last command.
520 Redo last command that started with pattern.
521 See C<O recallCommand>, too.
525 Run cmd in a subprocess (reads from DB::IN, writes to DB::OUT)
526 See C<O shellBang> too.
530 Display last n commands. Only commands longer than one character are
531 listed. If number is omitted, lists them all.
535 Quit. ("quit" doesn't work for this.) This is the only supported way
536 to exit the debugger, though typing C<exit> twice may do it too.
538 Set an C<O>ption C<inhibit_exit> to 0 if you want to be able to I<step
539 off> the end the script. You may also need to set C<$finished> to 0 at
540 some moment if you want to step through global destruction.
544 Restart the debugger by B<exec>ing a new session. It tries to maintain
545 your history across this, but internal settings and command line options
548 Currently the following setting are preserved: history, breakpoints,
549 actions, debugger C<O>ptions, and the following command line
550 options: B<-w>, B<-I>, and B<-e>.
554 Run debugger command, piping DB::OUT to current pager.
558 Same as C<|dbcmd> but DB::OUT is temporarily B<select>ed as well.
559 Often used with commands that would otherwise produce long
564 =item = [alias value]
566 Define a command alias, like
570 or list current aliases.
574 Execute command as a Perl statement. A missing semicolon will be
579 The expression is evaluated, and the methods which may be applied to
580 the result are listed.
584 The methods which may be applied to objects in the C<package> are listed.
588 =head2 Debugger input/output
594 The debugger prompt is something like
602 where that number is the command number, which you'd use to access with
603 the builtin B<csh>-like history mechanism, e.g., C<!17> would repeat
604 command number 17. The number of angle brackets indicates the depth of
605 the debugger. You could get more than one set of brackets, for example, if
606 you'd already at a breakpoint and then printed out the result of a
607 function call that itself also has a breakpoint, or you step into an
608 expression via C<s/n/t expression> command.
610 =item Multiline commands
612 If you want to enter a multi-line command, such as a subroutine
613 definition with several statements, or a format, you may escape the
614 newline that would normally end the debugger command with a backslash.
618 cont: print "ok\n"; \
625 Note that this business of escaping a newline is specific to interactive
626 commands typed into the debugger.
628 =item Stack backtrace
630 Here's an example of what a stack backtrace via C<T> command might
633 $ = main::infested called from file `Ambulation.pm' line 10
634 @ = Ambulation::legs(1, 2, 3, 4) called from file `camel_flea' line 7
635 $ = main::pests('bactrian', 4) called from file `camel_flea' line 4
637 The left-hand character up there tells whether the function was called
638 in a scalar or list context (we bet you can tell which is which). What
639 that says is that you were in the function C<main::infested> when you ran
640 the stack dump, and that it was called in a scalar context from line 10
641 of the file I<Ambulation.pm>, but without any arguments at all, meaning
642 it was called as C<&infested>. The next stack frame shows that the
643 function C<Ambulation::legs> was called in a list context from the
644 I<camel_flea> file with four arguments. The last stack frame shows that
645 C<main::pests> was called in a scalar context, also from I<camel_flea>,
648 Note that if you execute C<T> command from inside an active C<use>
649 statement, the backtrace will contain both C<L<perlfunc/require>>
650 frame and an C<L<perlfunc/eval EXPR>>) frame.
654 Listing given via different flavors of C<l> command looks like this:
658 102:b @isa{@i,$pack} = ()
659 103 if(exists $i{$prevpack} || exists $isa{$pack});
663 107==> if(exists $isa{$pack});
665 109:a if ($extra-- > 0) {
666 110: %isa = ($pack,1);
668 Note that the breakable lines are marked with C<:>, lines with
669 breakpoints are marked by C<b>, with actions by C<a>, and the
670 next executed line is marked by C<==E<gt>>.
674 When C<frame> option is set, debugger would print entered (and
675 optionally exited) subroutines in different styles.
677 What follows is the start of the listing of
679 env "PERLDB_OPTS=f=n N" perl -d -V
681 for different values of C<n>:
688 entering Config::BEGIN
689 Package lib/Exporter.pm.
691 Package lib/Config.pm.
692 entering Config::TIEHASH
693 entering Exporter::import
694 entering Exporter::export
695 entering Config::myconfig
696 entering Config::FETCH
697 entering Config::FETCH
698 entering Config::FETCH
699 entering Config::FETCH
704 entering Config::BEGIN
705 Package lib/Exporter.pm.
708 Package lib/Config.pm.
709 entering Config::TIEHASH
710 exited Config::TIEHASH
711 entering Exporter::import
712 entering Exporter::export
713 exited Exporter::export
714 exited Exporter::import
716 entering Config::myconfig
717 entering Config::FETCH
719 entering Config::FETCH
721 entering Config::FETCH
725 in $=main::BEGIN() from /dev/nul:0
726 in $=Config::BEGIN() from lib/Config.pm:2
727 Package lib/Exporter.pm.
729 Package lib/Config.pm.
730 in $=Config::TIEHASH('Config') from lib/Config.pm:644
731 in $=Exporter::import('Config', 'myconfig', 'config_vars') from /dev/nul:0
732 in $=Exporter::export('Config', 'main', 'myconfig', 'config_vars') from li
733 in @=Config::myconfig() from /dev/nul:0
734 in $=Config::FETCH(ref(Config), 'package') from lib/Config.pm:574
735 in $=Config::FETCH(ref(Config), 'baserev') from lib/Config.pm:574
736 in $=Config::FETCH(ref(Config), 'PATCHLEVEL') from lib/Config.pm:574
737 in $=Config::FETCH(ref(Config), 'SUBVERSION') from lib/Config.pm:574
738 in $=Config::FETCH(ref(Config), 'osname') from lib/Config.pm:574
739 in $=Config::FETCH(ref(Config), 'osvers') from lib/Config.pm:574
743 in $=main::BEGIN() from /dev/nul:0
744 in $=Config::BEGIN() from lib/Config.pm:2
745 Package lib/Exporter.pm.
747 out $=Config::BEGIN() from lib/Config.pm:0
748 Package lib/Config.pm.
749 in $=Config::TIEHASH('Config') from lib/Config.pm:644
750 out $=Config::TIEHASH('Config') from lib/Config.pm:644
751 in $=Exporter::import('Config', 'myconfig', 'config_vars') from /dev/nul:0
752 in $=Exporter::export('Config', 'main', 'myconfig', 'config_vars') from lib/
753 out $=Exporter::export('Config', 'main', 'myconfig', 'config_vars') from lib/
754 out $=Exporter::import('Config', 'myconfig', 'config_vars') from /dev/nul:0
755 out $=main::BEGIN() from /dev/nul:0
756 in @=Config::myconfig() from /dev/nul:0
757 in $=Config::FETCH(ref(Config), 'package') from lib/Config.pm:574
758 out $=Config::FETCH(ref(Config), 'package') from lib/Config.pm:574
759 in $=Config::FETCH(ref(Config), 'baserev') from lib/Config.pm:574
760 out $=Config::FETCH(ref(Config), 'baserev') from lib/Config.pm:574
761 in $=Config::FETCH(ref(Config), 'PATCHLEVEL') from lib/Config.pm:574
762 out $=Config::FETCH(ref(Config), 'PATCHLEVEL') from lib/Config.pm:574
763 in $=Config::FETCH(ref(Config), 'SUBVERSION') from lib/Config.pm:574
767 in $=main::BEGIN() from /dev/nul:0
768 in $=Config::BEGIN() from lib/Config.pm:2
769 Package lib/Exporter.pm.
771 out $=Config::BEGIN() from lib/Config.pm:0
772 Package lib/Config.pm.
773 in $=Config::TIEHASH('Config') from lib/Config.pm:644
774 out $=Config::TIEHASH('Config') from lib/Config.pm:644
775 in $=Exporter::import('Config', 'myconfig', 'config_vars') from /dev/nul:0
776 in $=Exporter::export('Config', 'main', 'myconfig', 'config_vars') from lib/E
777 out $=Exporter::export('Config', 'main', 'myconfig', 'config_vars') from lib/E
778 out $=Exporter::import('Config', 'myconfig', 'config_vars') from /dev/nul:0
779 out $=main::BEGIN() from /dev/nul:0
780 in @=Config::myconfig() from /dev/nul:0
781 in $=Config::FETCH('Config=HASH(0x1aa444)', 'package') from lib/Config.pm:574
782 out $=Config::FETCH('Config=HASH(0x1aa444)', 'package') from lib/Config.pm:574
783 in $=Config::FETCH('Config=HASH(0x1aa444)', 'baserev') from lib/Config.pm:574
784 out $=Config::FETCH('Config=HASH(0x1aa444)', 'baserev') from lib/Config.pm:574
788 in $=CODE(0x15eca4)() from /dev/null:0
789 in $=CODE(0x182528)() from lib/Config.pm:2
790 Package lib/Exporter.pm.
791 out $=CODE(0x182528)() from lib/Config.pm:0
792 scalar context return from CODE(0x182528): undef
793 Package lib/Config.pm.
794 in $=Config::TIEHASH('Config') from lib/Config.pm:628
795 out $=Config::TIEHASH('Config') from lib/Config.pm:628
796 scalar context return from Config::TIEHASH: empty hash
797 in $=Exporter::import('Config', 'myconfig', 'config_vars') from /dev/null:0
798 in $=Exporter::export('Config', 'main', 'myconfig', 'config_vars') from lib/Exporter.pm:171
799 out $=Exporter::export('Config', 'main', 'myconfig', 'config_vars') from lib/Exporter.pm:171
800 scalar context return from Exporter::export: ''
801 out $=Exporter::import('Config', 'myconfig', 'config_vars') from /dev/null:0
802 scalar context return from Exporter::import: ''
807 In all the cases indentation of lines shows the call tree, if bit 2 of
808 C<frame> is set, then a line is printed on exit from a subroutine as
809 well, if bit 4 is set, then the arguments are printed as well as the
810 caller info, if bit 8 is set, the arguments are printed even if they
811 are tied or references, if bit 16 is set, the return value is printed
814 When a package is compiled, a line like this
818 is printed with proper indentation.
822 =head2 Debugging compile-time statements
824 If you have any compile-time executable statements (code within a BEGIN
825 block or a C<use> statement), these will C<NOT> be stopped by debugger,
826 although C<require>s will (and compile-time statements can be traced
827 with C<AutoTrace> option set in C<PERLDB_OPTS>). From your own Perl
828 code, however, you can
829 transfer control back to the debugger using the following statement,
830 which is harmless if the debugger is not running:
834 If you set C<$DB::single> to the value 2, it's equivalent to having
835 just typed the C<n> command, whereas a value of 1 means the C<s>
836 command. The C<$DB::trace> variable should be set to 1 to simulate
837 having typed the C<t> command.
839 Another way to debug compile-time code is to start debugger, set a
840 breakpoint on I<load> of some module thusly
842 DB<7> b load f:/perllib/lib/Carp.pm
843 Will stop on load of `f:/perllib/lib/Carp.pm'.
845 and restart debugger by C<R> command (if possible). One can use C<b
846 compile subname> for the same purpose.
848 =head2 Debugger Customization
850 Most probably you not want to modify the debugger, it contains enough
851 hooks to satisfy most needs. You may change the behaviour of debugger
852 from the debugger itself, using C<O>ptions, from the command line via
853 C<PERLDB_OPTS> environment variable, and from I<customization files>.
855 You can do some customization by setting up a F<.perldb> file which
856 contains initialization code. For instance, you could make aliases
857 like these (the last one is one people expect to be there):
859 $DB::alias{'len'} = 's/^len(.*)/p length($1)/';
860 $DB::alias{'stop'} = 's/^stop (at|in)/b/';
861 $DB::alias{'ps'} = 's/^ps\b/p scalar /';
862 $DB::alias{'quit'} = 's/^quit(\s*)/exit\$/';
864 One changes options from F<.perldb> file via calls like this one;
866 parse_options("NonStop=1 LineInfo=db.out AutoTrace=1 frame=2");
868 (the code is executed in the package C<DB>). Note that F<.perldb> is
869 processed before processing C<PERLDB_OPTS>. If F<.perldb> defines the
870 subroutine C<afterinit>, it is called after all the debugger
871 initialization ends. F<.perldb> may be contained in the current
872 directory, or in the C<LOGDIR>/C<HOME> directory.
874 If you want to modify the debugger, copy F<perl5db.pl> from the Perl
875 library to another name and modify it as necessary. You'll also want
876 to set your C<PERL5DB> environment variable to say something like this:
878 BEGIN { require "myperl5db.pl" }
880 As the last resort, one can use C<PERL5DB> to customize debugger by
881 directly setting internal variables or calling debugger functions.
883 =head2 Readline Support
885 As shipped, the only command line history supplied is a simplistic one
886 that checks for leading exclamation points. However, if you install
887 the Term::ReadKey and Term::ReadLine modules from CPAN, you will
888 have full editing capabilities much like GNU I<readline>(3) provides.
889 Look for these in the F<modules/by-module/Term> directory on CPAN.
891 A rudimentary command line completion is also available.
892 Unfortunately, the names of lexical variables are not available for
895 =head2 Editor Support for Debugging
897 If you have GNU B<emacs> installed on your system, it can interact with
898 the Perl debugger to provide an integrated software development
899 environment reminiscent of its interactions with C debuggers.
901 Perl is also delivered with a start file for making B<emacs> act like a
902 syntax-directed editor that understands (some of) Perl's syntax. Look in
903 the I<emacs> directory of the Perl source distribution.
905 (Historically, a similar setup for interacting with B<vi> and the
906 X11 window system had also been available, but at the time of this
907 writing, no debugger support for B<vi> currently exists.)
909 =head2 The Perl Profiler
911 If you wish to supply an alternative debugger for Perl to run, just
912 invoke your script with a colon and a package argument given to the B<-d>
913 flag. One of the most popular alternative debuggers for Perl is
914 B<DProf>, the Perl profiler. As of this writing, B<DProf> is not
915 included with the standard Perl distribution, but it is expected to
916 be included soon, for certain values of "soon".
918 Meanwhile, you can fetch the Devel::Dprof module from CPAN. Assuming
919 it's properly installed on your system, to profile your Perl program in
920 the file F<mycode.pl>, just type:
922 perl -d:DProf mycode.pl
924 When the script terminates the profiler will dump the profile information
925 to a file called F<tmon.out>. A tool like B<dprofpp> (also supplied with
926 the Devel::DProf package) can be used to interpret the information which is
929 =head2 Debugger support in perl
931 When you call the B<caller> function (see L<perlfunc/caller>) from the
932 package DB, Perl sets the array @DB::args to contain the arguments the
933 corresponding stack frame was called with.
935 If perl is run with B<-d> option, the following additional features
942 Perl inserts the contents of C<$ENV{PERL5DB}> (or C<BEGIN {require
943 'perl5db.pl'}> if not present) before the first line of the
948 The array C<@{"_<$filename"}> is the line-by-line contents of
949 $filename for all the compiled files. Same for C<eval>ed strings which
950 contain subroutines, or which are currently executed. The C<$filename>
951 for C<eval>ed strings looks like C<(eval 34)>.
955 The hash C<%{"_<$filename"}> contains breakpoints and action (it is
956 keyed by line number), and individual entries are settable (as opposed
957 to the whole hash). Only true/false is important to Perl, though the
958 values used by F<perl5db.pl> have the form
959 C<"$break_condition\0$action">. Values are magical in numeric context:
960 they are zeros if the line is not breakable.
962 Same for evaluated strings which contain subroutines, or which are
963 currently executed. The C<$filename> for C<eval>ed strings looks like
968 The scalar C<${"_<$filename"}> contains C<"_<$filename">. Same for
969 evaluated strings which contain subroutines, or which are currently
970 executed. The C<$filename> for C<eval>ed strings looks like C<(eval
975 After each C<require>d file is compiled, but before it is executed,
976 C<DB::postponed(*{"_<$filename"})> is called (if subroutine
977 C<DB::postponed> exists). Here the $filename is the expanded name of
978 the C<require>d file (as found in values of C<%INC>).
982 After each subroutine C<subname> is compiled existence of
983 C<$DB::postponed{subname}> is checked. If this key exists,
984 C<DB::postponed(subname)> is called (if subroutine C<DB::postponed>
989 A hash C<%DB::sub> is maintained, with keys being subroutine names,
990 values having the form C<filename:startline-endline>. C<filename> has
991 the form C<(eval 31)> for subroutines defined inside C<eval>s.
995 When execution of the application reaches a place that can have
996 a breakpoint, a call to C<DB::DB()> is performed if any one of
997 variables $DB::trace, $DB::single, or $DB::signal is true. (Note that
998 these variables are not C<local>izable.) This feature is disabled when
999 the control is inside C<DB::DB()> or functions called from it (unless
1000 C<$^D & (1E<lt>E<lt>30)>).
1004 When execution of the application reaches a subroutine call, a call
1005 to C<&DB::sub>(I<args>) is performed instead, with C<$DB::sub> being
1006 the name of the called subroutine. (Unless the subroutine is compiled
1007 in the package C<DB>.)
1011 Note that no subroutine call is possible until C<&DB::sub> is defined
1012 (for subroutines outside of package C<DB>). (This restriction is
1015 (In fact, for the standard debugger the same is true if C<$DB::deep>
1016 (how many levels of recursion deep into the debugger you can go before
1017 a mandatory break) is not defined.)
1019 With the recent updates the minimal possible debugger consists of one
1024 which is quite handy as contents of C<PERL5DB> environment
1027 env "PERL5DB=sub DB::DB {}" perl -d your-script
1029 Another (a little bit more useful) minimal debugger can be created
1030 with the only line being
1032 sub DB::DB {print ++$i; scalar <STDIN>}
1034 This debugger would print the sequential number of encountered
1035 statement, and would wait for your C<CR> to continue.
1037 The following debugger is quite functional:
1042 sub sub {print ++$i, " $sub\n"; &$sub}
1045 It prints the sequential number of subroutine call and the name of the
1046 called subroutine. Note that C<&DB::sub> should be compiled into the
1049 =head2 Debugger Internals
1051 At the start, the debugger reads your rc file (F<./.perldb> or
1052 F<~/.perldb> under Unix), which can set important options. This file may
1053 define a subroutine C<&afterinit> to be executed after the debugger is
1056 After the rc file is read, the debugger reads environment variable
1057 PERLDB_OPTS and parses it as a rest of C<O ...> line in debugger prompt.
1059 It also maintains magical internal variables, such as C<@DB::dbline>,
1060 C<%DB::dbline>, which are aliases for C<@{"::_<current_file"}>
1061 C<%{"::_<current_file"}>. Here C<current_file> is the currently
1062 selected (with the debugger's C<f> command, or by flow of execution)
1065 Some functions are provided to simplify customization. See L<"Debugger
1066 Customization"> for description of C<DB::parse_options(string)>. The
1067 function C<DB::dump_trace(skip[, count])> skips the specified number
1068 of frames, and returns an array containing info about the caller
1069 frames (all if C<count> is missing). Each entry is a hash with keys
1070 C<context> (C<$> or C<@>), C<sub> (subroutine name, or info about
1071 eval), C<args> (C<undef> or a reference to an array), C<file>, and
1074 The function C<DB::print_trace(FH, skip[, count[, short]])> prints
1075 formatted info about caller frames. The last two functions may be
1076 convenient as arguments to C<E<lt>>, C<E<lt>E<lt>> commands.
1078 =head2 Other resources
1080 You did try the B<-w> switch, didn't you?
1084 You cannot get the stack frame information or otherwise debug functions
1085 that were not compiled by Perl, such as C or C++ extensions.
1087 If you alter your @_ arguments in a subroutine (such as with B<shift>
1088 or B<pop>, the stack backtrace will not show the original values.