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=item C<HistFile> 846X<debugger option, history, HistFile> 847 848The path of the file from which the history (assuming a usable 849Term::ReadLine backend) will be read on the debugger's startup, and to which 850it will be saved on shutdown (for persistence across sessions). Similar in 851concept to Bash's C<.bash_history> file. 852 853=item C<HistSize> 854X<debugger option, history, HistSize> 855 856The count of the saved lines in the history (assuming C<HistFile> above). 857 858=back 859 860After the rc file is read, the debugger reads the C<$ENV{PERLDB_OPTS}> 861environment variable and parses this as the remainder of a "O ..." 862line as one might enter at the debugger prompt. You may place the 863initialization options C<TTY>, C<noTTY>, C<ReadLine>, and C<NonStop> 864there. 865 866If your rc file contains: 867 868 parse_options("NonStop=1 LineInfo=db.out AutoTrace"); 869 870then your script will run without human intervention, putting trace 871information into the file I<db.out>. (If you interrupt it, you'd 872better reset C<LineInfo> to F</dev/tty> if you expect to see anything.) 873 874=over 12 875 876=item C<TTY> 877X<debugger option, TTY> 878 879The TTY to use for debugging I/O. 880 881=item C<noTTY> 882X<debugger option, noTTY> 883 884If set, the debugger goes into C<NonStop> mode and will not connect to a TTY. If 885interrupted (or if control goes to the debugger via explicit setting of 886$DB::signal or $DB::single from the Perl script), it connects to a TTY 887specified in the C<TTY> option at startup, or to a tty found at 888runtime using the C<Term::Rendezvous> module of your choice. 889 890This module should implement a method named C<new> that returns an object 891with two methods: C<IN> and C<OUT>. These should return filehandles to use 892for debugging input and output correspondingly. The C<new> method should 893inspect an argument containing the value of C<$ENV{PERLDB_NOTTY}> at 894startup, or C<"$ENV{HOME}/.perldbtty$$"> otherwise. This file is not 895inspected for proper ownership, so security hazards are theoretically 896possible. 897 898=item C<ReadLine> 899X<debugger option, ReadLine> 900 901If false, readline support in the debugger is disabled in order 902to debug applications that themselves use ReadLine. 903 904=item C<NonStop> 905X<debugger option, NonStop> 906 907If set, the debugger goes into non-interactive mode until interrupted, or 908programmatically by setting $DB::signal or $DB::single. 909 910=back 911 912Here's an example of using the C<$ENV{PERLDB_OPTS}> variable: 913 914 $ PERLDB_OPTS="NonStop frame=2" perl -d myprogram 915 916That will run the script B<myprogram> without human intervention, 917printing out the call tree with entry and exit points. Note that 918C<NonStop=1 frame=2> is equivalent to C<N f=2>, and that originally, 919options could be uniquely abbreviated by the first letter (modulo 920the C<Dump*> options). It is nevertheless recommended that you 921always spell them out in full for legibility and future compatibility. 922 923Other examples include 924 925 $ PERLDB_OPTS="NonStop LineInfo=listing frame=2" perl -d myprogram 926 927which runs script non-interactively, printing info on each entry 928into a subroutine and each executed line into the file named F<listing>. 929(If you interrupt it, you would better reset C<LineInfo> to something 930"interactive"!) 931 932Other examples include (using standard shell syntax to show environment 933variable settings): 934 935 $ ( PERLDB_OPTS="NonStop frame=1 AutoTrace LineInfo=tperl.out" 936 perl -d myprogram ) 937 938which may be useful for debugging a program that uses C<Term::ReadLine> 939itself. Do not forget to detach your shell from the TTY in the window that 940corresponds to F</dev/ttyXX>, say, by issuing a command like 941 942 $ sleep 1000000 943 944See L<perldebguts/"Debugger Internals"> for details. 945 946=head2 Debugger Input/Output 947 948=over 8 949 950=item Prompt 951 952The debugger prompt is something like 953 954 DB<8> 955 956or even 957 958 DB<<17>> 959 960where that number is the command number, and which you'd use to 961access with the built-in B<csh>-like history mechanism. For example, 962C<!17> would repeat command number 17. The depth of the angle 963brackets indicates the nesting depth of the debugger. You could 964get more than one set of brackets, for example, if you'd already 965at a breakpoint and then printed the result of a function call that 966itself has a breakpoint, or you step into an expression via C<s/n/t 967expression> command. 968 969=item Multiline commands 970 971If you want to enter a multi-line command, such as a subroutine 972definition with several statements or a format, escape the newline 973that would normally end the debugger command with a backslash. 974Here's an example: 975 976 DB<1> for (1..4) { \ 977 cont: print "ok\n"; \ 978 cont: } 979 ok 980 ok 981 ok 982 ok 983 984Note that this business of escaping a newline is specific to interactive 985commands typed into the debugger. 986 987=item Stack backtrace 988X<backtrace> X<stack, backtrace> 989 990Here's an example of what a stack backtrace via C<T> command might 991look like: 992 993 $ = main::infested called from file 'Ambulation.pm' line 10 994 @ = Ambulation::legs(1, 2, 3, 4) called from file 'camel_flea' line 7 995 $ = main::pests('bactrian', 4) called from file 'camel_flea' line 4 996 997The left-hand character up there indicates the context in which the 998function was called, with C<$> and C<@> meaning scalar or list 999contexts respectively, and C<.> meaning void context (which is 1000actually a sort of scalar context). The display above says 1001that you were in the function C<main::infested> when you ran the 1002stack dump, and that it was called in scalar context from line 100310 of the file I<Ambulation.pm>, but without any arguments at all, 1004meaning it was called as C<&infested>. The next stack frame shows 1005that the function C<Ambulation::legs> was called in list context 1006from the I<camel_flea> file with four arguments. The last stack 1007frame shows that C<main::pests> was called in scalar context, 1008also from I<camel_flea>, but from line 4. 1009 1010If you execute the C<T> command from inside an active C<use> 1011statement, the backtrace will contain both a C<require> frame and 1012an C<eval> frame. 1013 1014=item Line Listing Format 1015 1016This shows the sorts of output the C<l> command can produce: 1017 1018 DB<<13>> l 1019 101: @i{@i} = (); 1020 102:b @isa{@i,$pack} = () 1021 103 if(exists $i{$prevpack} || exists $isa{$pack}); 1022 104 } 1023 105 1024 106 next 1025 107==> if(exists $isa{$pack}); 1026 108 1027 109:a if ($extra-- > 0) { 1028 110: %isa = ($pack,1); 1029 1030Breakable lines are marked with C<:>. Lines with breakpoints are 1031marked by C<b> and those with actions by C<a>. The line that's 1032about to be executed is marked by C<< ==> >>. 1033 1034Please be aware that code in debugger listings may not look the same 1035as your original source code. Line directives and external source 1036filters can alter the code before Perl sees it, causing code to move 1037from its original positions or take on entirely different forms. 1038 1039=item Frame listing 1040 1041When the C<frame> option is set, the debugger would print entered (and 1042optionally exited) subroutines in different styles. See L<perldebguts> 1043for incredibly long examples of these. 1044 1045=back 1046 1047=head2 Debugging Compile-Time Statements 1048 1049If you have compile-time executable statements (such as code within 1050BEGIN, UNITCHECK and CHECK blocks or C<use> statements), these will 1051I<not> be stopped by debugger, although C<require>s and INIT blocks 1052will, and compile-time statements can be traced with the C<AutoTrace> 1053option set in C<PERLDB_OPTS>). From your own Perl code, however, you 1054can transfer control back to the debugger using the following 1055statement, which is harmless if the debugger is not running: 1056 1057 $DB::single = 1; 1058 1059If you set C<$DB::single> to 2, it's equivalent to having 1060just typed the C<n> command, whereas a value of 1 means the C<s> 1061command. The C<$DB::trace> variable should be set to 1 to simulate 1062having typed the C<t> command. 1063 1064Another way to debug compile-time code is to start the debugger, set a 1065breakpoint on the I<load> of some module: 1066 1067 DB<7> b load f:/perllib/lib/Carp.pm 1068 Will stop on load of 'f:/perllib/lib/Carp.pm'. 1069 1070and then restart the debugger using the C<R> command (if possible). One can use C<b 1071compile subname> for the same purpose. 1072 1073=head2 Debugger Customization 1074 1075The debugger probably contains enough configuration hooks that you 1076won't ever have to modify it yourself. You may change the behaviour 1077of the debugger from within the debugger using its C<o> command, from 1078the command line via the C<PERLDB_OPTS> environment variable, and 1079from customization files. 1080 1081You can do some customization by setting up a F<.perldb> file, which 1082contains initialization code. For instance, you could make aliases 1083like these (the last one is one people expect to be there): 1084 1085 $DB::alias{'len'} = 's/^len(.*)/p length($1)/'; 1086 $DB::alias{'stop'} = 's/^stop (at|in)/b/'; 1087 $DB::alias{'ps'} = 's/^ps\b/p scalar /'; 1088 $DB::alias{'quit'} = 's/^quit(\s*)/exit/'; 1089 1090You can change options from F<.perldb> by using calls like this one; 1091 1092 parse_options("NonStop=1 LineInfo=db.out AutoTrace=1 frame=2"); 1093 1094The code is executed in the package C<DB>. Note that F<.perldb> is 1095processed before processing C<PERLDB_OPTS>. If F<.perldb> defines the 1096subroutine C<afterinit>, that function is called after debugger 1097initialization ends. F<.perldb> may be contained in the current 1098directory, or in the home directory. Because this file is sourced 1099in by Perl and may contain arbitrary commands, for security reasons, 1100it must be owned by the superuser or the current user, and writable 1101by no one but its owner. 1102 1103You can mock TTY input to debugger by adding arbitrary commands to 1104@DB::typeahead. For example, your F<.perldb> file might contain: 1105 1106 sub afterinit { push @DB::typeahead, "b 4", "b 6"; } 1107 1108Which would attempt to set breakpoints on lines 4 and 6 immediately 1109after debugger initialization. Note that @DB::typeahead is not a supported 1110interface and is subject to change in future releases. 1111 1112If you want to modify the debugger, copy F<perl5db.pl> from the 1113Perl library to another name and hack it to your heart's content. 1114You'll then want to set your C<PERL5DB> environment variable to say 1115something like this: 1116 1117 BEGIN { require "myperl5db.pl" } 1118 1119As a last resort, you could also use C<PERL5DB> to customize the debugger 1120by directly setting internal variables or calling debugger functions. 1121 1122Note that any variables and functions that are not documented in 1123this document (or in L<perldebguts>) are considered for internal 1124use only, and as such are subject to change without notice. 1125 1126=head2 Readline Support / History in the Debugger 1127 1128As shipped, the only command-line history supplied is a simplistic one 1129that checks for leading exclamation points. However, if you install 1130the Term::ReadKey and Term::ReadLine modules from CPAN (such as 1131Term::ReadLine::Gnu, Term::ReadLine::Perl, ...) you will 1132have full editing capabilities much like those GNU I<readline>(3) provides. 1133Look for these in the F<modules/by-module/Term> directory on CPAN. 1134These do not support normal B<vi> command-line editing, however. 1135 1136A rudimentary command-line completion is also available, including 1137lexical variables in the current scope if the C<PadWalker> module 1138is installed. 1139 1140Without Readline support you may see the symbols "^[[A", "^[[C", "^[[B", 1141"^[[D"", "^H", ... when using the arrow keys and/or the backspace key. 1142 1143=head2 Editor Support for Debugging 1144 1145If you have the GNU's version of B<emacs> installed on your system, 1146it can interact with the Perl debugger to provide an integrated 1147software development environment reminiscent of its interactions 1148with C debuggers. 1149 1150Recent versions of Emacs come with a 1151start file for making B<emacs> act like a 1152syntax-directed editor that understands (some of) Perl's syntax. 1153See L<perlfaq3>. 1154 1155Users of B<vi> should also look into B<vim> and B<gvim>, the mousey 1156and windy version, for coloring of Perl keywords. 1157 1158Note that only perl can truly parse Perl, so all such CASE tools 1159fall somewhat short of the mark, especially if you don't program 1160your Perl as a C programmer might. 1161 1162=head2 The Perl Profiler 1163X<profile> X<profiling> X<profiler> 1164 1165If you wish to supply an alternative debugger for Perl to run, 1166invoke your script with a colon and a package argument given to the 1167B<-d> flag. Perl's alternative debuggers include a Perl profiler, 1168L<Devel::NYTProf>, which is available separately as a CPAN 1169distribution. To profile your Perl program in the file F<mycode.pl>, 1170just type: 1171 1172 $ perl -d:NYTProf mycode.pl 1173 1174When the script terminates the profiler will create a database of the 1175profile information that you can turn into reports using the profiler's 1176tools. See <perlperf> for details. 1177 1178=head1 Debugging Regular Expressions 1179X<regular expression, debugging> 1180X<regex, debugging> X<regexp, debugging> 1181 1182C<use re 'debug'> enables you to see the gory details of how the Perl 1183regular expression engine works. In order to understand this typically 1184voluminous output, one must not only have some idea about how regular 1185expression matching works in general, but also know how Perl's regular 1186expressions are internally compiled into an automaton. These matters 1187are explored in some detail in 1188L<perldebguts/"Debugging Regular Expressions">. 1189 1190=head1 Debugging Memory Usage 1191X<memory usage> 1192 1193Perl contains internal support for reporting its own memory usage, 1194but this is a fairly advanced concept that requires some understanding 1195of how memory allocation works. 1196See L<perldebguts/"Debugging Perl Memory Usage"> for the details. 1197 1198=head1 SEE ALSO 1199 1200You did try the B<-w> switch, didn't you? 1201 1202L<perldebtut>, 1203L<perldebguts>, 1204L<re>, 1205L<DB>, 1206L<Devel::NYTProf>, 1207L<Dumpvalue>, 1208and 1209L<perlrun>. 1210 1211When debugging a script that uses #! and is thus normally found in 1212$PATH, the -S option causes perl to search $PATH for it, so you don't 1213have to type the path or C<which $scriptname>. 1214 1215 $ perl -Sd foo.pl 1216 1217=head1 BUGS 1218 1219You cannot get stack frame information or in any fashion debug functions 1220that were not compiled by Perl, such as those from C or C++ extensions. 1221 1222If you alter your @_ arguments in a subroutine (such as with C<shift> 1223or C<pop>), the stack backtrace will not show the original values. 1224 1225The debugger does not currently work in conjunction with the B<-W> 1226command-line switch, because it itself is not free of warnings. 1227 1228If you're in a slow syscall (like C<wait>ing, C<accept>ing, or C<read>ing 1229from your keyboard or a socket) and haven't set up your own C<$SIG{INT}> 1230handler, then you won't be able to CTRL-C your way back to the debugger, 1231because the debugger's own C<$SIG{INT}> handler doesn't understand that 1232it needs to raise an exception to longjmp(3) out of slow syscalls. 1233