avoid accidental #line directives (from Rick Delaney
[p5sagit/p5-mst-13.2.git] / pod / perldebug.pod
CommitLineData
a0d0e21e 1=head1 NAME
2
3perldebug - Perl debugging
4
5=head1 DESCRIPTION
6
7First of all, have you tried using the B<-w> switch?
8
4e1d3b43 9=head1 The Perl Debugger
10
26f28346 11"As soon as we started programming, we found to our
12surprise that it wasn't as easy to get programs right
13as we had thought. Debugging had to be discovered.
14I can remember the exact instant when I realized that
15a large part of my life from then on was going to be
16spent in finding mistakes in my own programs."
84902520 17
18I< --Maurice Wilkes, 1949>
26f28346 19
4e1d3b43 20If you invoke Perl with the B<-d> switch, your script runs under the
21Perl source debugger. This works like an interactive Perl
22environment, prompting for debugger commands that let you examine
68dc0745 23source code, set breakpoints, get stack backtraces, change the values of
4e1d3b43 24variables, etc. This is so convenient that you often fire up
54310121 25the debugger all by itself just to test out Perl constructs
4e1d3b43 26interactively to see what they do. For example:
27
28 perl -d -e 42
29
30In Perl, the debugger is not a separate program as it usually is in the
31typical compiled environment. Instead, the B<-d> flag tells the compiler
32to insert source information into the parse trees it's about to hand off
33to the interpreter. That means your code must first compile correctly
34for the debugger to work on it. Then when the interpreter starts up, it
54310121 35preloads a Perl library file containing the debugger itself.
4e1d3b43 36
37The program will halt I<right before> the first run-time executable
38statement (but see below regarding compile-time statements) and ask you
39to enter a debugger command. Contrary to popular expectations, whenever
40the debugger halts and shows you a line of code, it always displays the
41line it's I<about> to execute, rather than the one it has just executed.
42
43Any command not recognized by the debugger is directly executed
44(C<eval>'d) as Perl code in the current package. (The debugger uses the
45DB package for its own state information.)
46
47Leading white space before a command would cause the debugger to think
48it's I<NOT> a debugger command but for Perl, so be careful not to do
49that.
50
51=head2 Debugger Commands
52
53The debugger understands the following commands:
a0d0e21e 54
55=over 12
56
4e1d3b43 57=item h [command]
58
54310121 59Prints out a help message.
4e1d3b43 60
61If you supply another debugger command as an argument to the C<h> command,
62it prints out the description for just that command. The special
63argument of C<h h> produces a more compact help listing, designed to fit
64together on one screen.
65
7b8d334a 66If the output of the C<h> command (or any command, for that matter) scrolls
4e1d3b43 67past your screen, either precede the command with a leading pipe symbol so
68it's run through your pager, as in
69
70 DB> |h
71
e7ea3e70 72You may change the pager which is used via C<O pager=...> command.
73
4e1d3b43 74=item p expr
75
36477c24 76Same as C<print {$DB::OUT} expr> in the current package. In particular,
5f05dabc 77because this is just Perl's own B<print> function, this means that nested
4e1d3b43 78data structures and objects are not dumped, unlike with the C<x> command.
79
e7ea3e70 80The C<DB::OUT> filehandle is opened to F</dev/tty>, regardless of
81where STDOUT may be redirected to.
82
4e1d3b43 83=item x expr
84
54310121 85Evaluates its expression in list context and dumps out the result
4e1d3b43 86in a pretty-printed fashion. Nested data structures are printed out
87recursively, unlike the C<print> function.
88
36477c24 89The details of printout are governed by multiple C<O>ptions.
90
4e1d3b43 91=item V [pkg [vars]]
92
93Display all (or some) variables in package (defaulting to the C<main>
94package) using a data pretty-printer (hashes show their keys and values so
95you see what's what, control characters are made printable, etc.). Make
96sure you don't put the type specifier (like C<$>) there, just the symbol
97names, like this:
98
99 V DB filename line
100
101Use C<~pattern> and C<!pattern> for positive and negative regexps.
a0d0e21e 102
4e1d3b43 103Nested data structures are printed out in a legible fashion, unlike
104the C<print> function.
105
36477c24 106The details of printout are governed by multiple C<O>ptions.
107
4e1d3b43 108=item X [vars]
109
110Same as C<V currentpackage [vars]>.
a0d0e21e 111
112=item T
113
68dc0745 114Produce a stack backtrace. See below for details on its output.
a0d0e21e 115
4e1d3b43 116=item s [expr]
a0d0e21e 117
118Single step. Executes until it reaches the beginning of another
4e1d3b43 119statement, descending into subroutine calls. If an expression is
120supplied that includes function calls, it too will be single-stepped.
a0d0e21e 121
e7ea3e70 122=item n [expr]
a0d0e21e 123
124Next. Executes over subroutine calls, until it reaches the beginning
774d564b 125of the next statement. If an expression is supplied that includes
126function calls, those functions will be executed with stops before
127each statement.
a0d0e21e 128
184e9718 129=item E<lt>CRE<gt>
a0d0e21e 130
4e1d3b43 131Repeat last C<n> or C<s> command.
a0d0e21e 132
36477c24 133=item c [line|sub]
a0d0e21e 134
4e1d3b43 135Continue, optionally inserting a one-time-only breakpoint
36477c24 136at the specified line or subroutine.
a0d0e21e 137
4e1d3b43 138=item l
a0d0e21e 139
4e1d3b43 140List next window of lines.
a0d0e21e 141
142=item l min+incr
143
4e1d3b43 144List C<incr+1> lines starting at C<min>.
a0d0e21e 145
146=item l min-max
147
6d0f518e 148List lines C<min> through C<max>. C<l E<45>> is synonymous to C<E<45>>.
a0d0e21e 149
150=item l line
151
4e1d3b43 152List a single line.
a0d0e21e 153
4e1d3b43 154=item l subname
a0d0e21e 155
83ee9e09 156List first window of lines from subroutine. I<subname> may
157be a variable which contains a code reference.
a0d0e21e 158
159=item -
160
4e1d3b43 161List previous window of lines.
a0d0e21e 162
4e1d3b43 163=item w [line]
a0d0e21e 164
4e1d3b43 165List window (a few lines) around the current line.
a0d0e21e 166
4e1d3b43 167=item .
a0d0e21e 168
4e1d3b43 169Return debugger pointer to the last-executed line and
170print it out.
171
172=item f filename
173
774d564b 174Switch to viewing a different file or eval statement. If C<filename>
e7ea3e70 175is not a full filename as found in values of %INC, it is considered as
176a regexp.
a0d0e21e 177
bee32ff8 178C<eval>ed strings (when accessible) are considered to be filenames:
179C<f (eval 7)> and C<f eval 7\b> access the body of the 7th C<eval>ed string
180(in the order of execution). The bodies of currently executed C<eval>
181and of C<eval>ed strings which define subroutines are saved, thus are
182accessible by this mechanism.
183
a0d0e21e 184=item /pattern/
185
4e1d3b43 186Search forwards for pattern; final / is optional.
a0d0e21e 187
188=item ?pattern?
189
4e1d3b43 190Search backwards for pattern; final ? is optional.
a0d0e21e 191
192=item L
193
36477c24 194List all breakpoints and actions.
a0d0e21e 195
4e1d3b43 196=item S [[!]pattern]
a0d0e21e 197
4e1d3b43 198List subroutine names [not] matching pattern.
a0d0e21e 199
200=item t
201
36477c24 202Toggle trace mode (see also C<AutoTrace> C<O>ption).
4e1d3b43 203
204=item t expr
205
206Trace through execution of expr. For example:
207
208 $ perl -de 42
209 Stack dump during die enabled outside of evals.
a0d0e21e 210
4e1d3b43 211 Loading DB routines from perl5db.pl patch level 0.94
212 Emacs support available.
213
214 Enter h or `h h' for help.
215
216 main::(-e:1): 0
217 DB<1> sub foo { 14 }
218
219 DB<2> sub bar { 3 }
220
221 DB<3> t print foo() * bar()
222 main::((eval 172):3): print foo() + bar();
223 main::foo((eval 168):2):
224 main::bar((eval 170):2):
225 42
36477c24 226
227or, with the C<O>ption C<frame=2> set,
228
229 DB<4> O f=2
230 frame = '2'
231 DB<5> t print foo() * bar()
232 3: foo() * bar()
233 entering main::foo
234 2: sub foo { 14 };
235 exited main::foo
236 entering main::bar
237 2: sub bar { 3 };
238 exited main::bar
239 42
4e1d3b43 240
241=item b [line] [condition]
a0d0e21e 242
243Set a breakpoint. If line is omitted, sets a breakpoint on the line
4e1d3b43 244that is about to be executed. If a condition is specified, it's
a0d0e21e 245evaluated each time the statement is reached and a breakpoint is taken
5f05dabc 246only if the condition is true. Breakpoints may be set on only lines
4e1d3b43 247that begin an executable statement. Conditions don't use B<if>:
a0d0e21e 248
249 b 237 $x > 30
36477c24 250 b 237 ++$count237 < 11
a0d0e21e 251 b 33 /pattern/i
252
4e1d3b43 253=item b subname [condition]
a0d0e21e 254
83ee9e09 255Set a breakpoint at the first line of the named subroutine. I<subname> may
256be a variable which contains a code reference (in this case I<condition>
257is not supported).
a0d0e21e 258
36477c24 259=item b postpone subname [condition]
260
261Set breakpoint at first line of subroutine after it is compiled.
262
263=item b load filename
264
774d564b 265Set breakpoint at the first executed line of the file. Filename should
e7ea3e70 266be a full name as found in values of %INC.
267
268=item b compile subname
269
270Sets breakpoint at the first statement executed after the subroutine
271is compiled.
36477c24 272
4e1d3b43 273=item d [line]
a0d0e21e 274
4e1d3b43 275Delete a breakpoint at the specified line. If line is omitted, deletes
276the breakpoint on the line that is about to be executed.
a0d0e21e 277
278=item D
279
4e1d3b43 280Delete all installed breakpoints.
281
282=item a [line] command
283
284Set an action to be done before the line is executed.
285The sequence of steps taken by the debugger is
286
8ebc5c01 287 1. check for a breakpoint at this line
288 2. print the line if necessary (tracing)
289 3. do any actions associated with that line
290 4. prompt user if at a breakpoint or in single-step
291 5. evaluate line
a0d0e21e 292
7b8d334a 293For example, this will print out $foo every time line
4e1d3b43 29453 is passed:
a0d0e21e 295
4e1d3b43 296 a 53 print "DB FOUND $foo\n"
a0d0e21e 297
298=item A
299
4e1d3b43 300Delete all installed actions.
301
6ee623d5 302=item W [expr]
303
304Add a global watch-expression.
305
306=item W
307
308Delete all watch-expressions.
309
4e1d3b43 310=item O [opt[=val]] [opt"val"] [opt?]...
311
312Set or query values of options. val defaults to 1. opt can
313be abbreviated. Several options can be listed.
314
315=over 12
316
e7ea3e70 317=item C<recallCommand>, C<ShellBang>
4e1d3b43 318
319The characters used to recall command or spawn shell. By
320default, these are both set to C<!>.
321
e7ea3e70 322=item C<pager>
4e1d3b43 323
324Program to use for output of pager-piped commands (those
325beginning with a C<|> character.) By default,
326C<$ENV{PAGER}> will be used.
327
e7ea3e70 328=item C<tkRunning>
36477c24 329
330Run Tk while prompting (with ReadLine).
331
e7ea3e70 332=item C<signalLevel>, C<warnLevel>, C<dieLevel>
333
774d564b 334Level of verbosity. By default the debugger is in a sane verbose mode,
e7ea3e70 335thus it will print backtraces on all the warnings and die-messages
336which are going to be printed out, and will print a message when
54310121 337interesting uncaught signals arrive.
36477c24 338
774d564b 339To disable this behaviour, set these values to 0. If C<dieLevel> is 2,
e7ea3e70 340then the messages which will be caught by surrounding C<eval> are also
341printed.
36477c24 342
e7ea3e70 343=item C<AutoTrace>
36477c24 344
e7ea3e70 345Trace mode (similar to C<t> command, but can be put into
346C<PERLDB_OPTS>).
36477c24 347
e7ea3e70 348=item C<LineInfo>
36477c24 349
e7ea3e70 350File or pipe to print line number info to. If it is a pipe (say,
351C<|visual_perl_db>), then a short, "emacs like" message is used.
36477c24 352
353=item C<inhibit_exit>
354
355If 0, allows I<stepping off> the end of the script.
356
54310121 357=item C<PrintRet>
36477c24 358
359affects printing of return value after C<r> command.
360
28d1fb14 361=item C<ornaments>
362
3e3baf6d 363affects screen appearance of the command line (see L<Term::ReadLine>).
28d1fb14 364
54310121 365=item C<frame>
36477c24 366
367affects printing messages on entry and exit from subroutines. If
368C<frame & 2> is false, messages are printed on entry only. (Printing
5f05dabc 369on exit may be useful if inter(di)spersed with other messages.)
36477c24 370
371If C<frame & 4>, arguments to functions are printed as well as the
774d564b 372context and caller info. If C<frame & 8>, overloaded C<stringify> and
28d1fb14 373C<tie>d C<FETCH> are enabled on the printed arguments. If C<frame &
37416>, the return value from the subroutine is printed as well.
375
376The length at which the argument list is truncated is governed by the
377next option:
e7ea3e70 378
379=item C<maxTraceLen>
380
381length at which the argument list is truncated when C<frame> option's
382bit 4 is set.
36477c24 383
4e1d3b43 384=back
385
386The following options affect what happens with C<V>, C<X>, and C<x>
387commands:
388
389=over 12
390
e7ea3e70 391=item C<arrayDepth>, C<hashDepth>
4e1d3b43 392
393Print only first N elements ('' for all).
394
e7ea3e70 395=item C<compactDump>, C<veryCompact>
4e1d3b43 396
774d564b 397Change style of array and hash dump. If C<compactDump>, short array
e7ea3e70 398may be printed on one line.
4e1d3b43 399
e7ea3e70 400=item C<globPrint>
4e1d3b43 401
402Whether to print contents of globs.
403
e7ea3e70 404=item C<DumpDBFiles>
4e1d3b43 405
406Dump arrays holding debugged files.
407
e7ea3e70 408=item C<DumpPackages>
4e1d3b43 409
410Dump symbol tables of packages.
411
6ee623d5 412=item C<DumpReused>
413
414Dump contents of "reused" addresses.
415
e7ea3e70 416=item C<quote>, C<HighBit>, C<undefPrint>
417
774d564b 418Change style of string dump. Default value of C<quote> is C<auto>, one
e7ea3e70 419can enable either double-quotish dump, or single-quotish by setting it
774d564b 420to C<"> or C<'>. By default, characters with high bit set are printed
e7ea3e70 421I<as is>.
422
54310121 423=item C<UsageOnly>
4e1d3b43 424
774d564b 425I<very> rudimentally per-package memory usage dump. Calculates total
e7ea3e70 426size of strings in variables in the package.
4e1d3b43 427
36477c24 428=back
4e1d3b43 429
36477c24 430During startup options are initialized from C<$ENV{PERLDB_OPTS}>.
431You can put additional initialization options C<TTY>, C<noTTY>,
432C<ReadLine>, and C<NonStop> there.
433
434Example rc file:
4e1d3b43 435
e7ea3e70 436 &parse_options("NonStop=1 LineInfo=db.out AutoTrace");
4e1d3b43 437
36477c24 438The script will run without human intervention, putting trace information
439into the file I<db.out>. (If you interrupt it, you would better reset
440C<LineInfo> to something "interactive"!)
4e1d3b43 441
36477c24 442=over 12
4e1d3b43 443
36477c24 444=item C<TTY>
4e1d3b43 445
36477c24 446The TTY to use for debugging I/O.
447
36477c24 448=item C<noTTY>
449
774d564b 450If set, goes in C<NonStop> mode, and would not connect to a TTY. If
36477c24 451interrupt (or if control goes to debugger via explicit setting of
452$DB::signal or $DB::single from the Perl script), connects to a TTY
453specified by the C<TTY> option at startup, or to a TTY found at
454runtime using C<Term::Rendezvous> module of your choice.
455
456This module should implement a method C<new> which returns an object
457with two methods: C<IN> and C<OUT>, returning two filehandles to use
774d564b 458for debugging input and output correspondingly. Method C<new> may
36477c24 459inspect an argument which is a value of C<$ENV{PERLDB_NOTTY}> at
460startup, or is C<"/tmp/perldbtty$$"> otherwise.
461
462=item C<ReadLine>
463
464If false, readline support in debugger is disabled, so you can debug
465ReadLine applications.
466
467=item C<NonStop>
468
54310121 469If set, debugger goes into noninteractive mode until interrupted, or
36477c24 470programmatically by setting $DB::signal or $DB::single.
471
472=back
473
474Here's an example of using the C<$ENV{PERLDB_OPTS}> variable:
4e1d3b43 475
e7ea3e70 476 $ PERLDB_OPTS="N f=2" perl -d myprogram
4e1d3b43 477
478will run the script C<myprogram> without human intervention, printing
479out the call tree with entry and exit points. Note that C<N f=2> is
774d564b 480equivalent to C<NonStop=1 frame=2>. Note also that at the moment when
4e1d3b43 481this documentation was written all the options to the debugger could
36477c24 482be uniquely abbreviated by the first letter (with exception of
483C<Dump*> options).
4e1d3b43 484
36477c24 485Other examples may include
a0d0e21e 486
e7ea3e70 487 $ PERLDB_OPTS="N f A L=listing" perl -d myprogram
a0d0e21e 488
54310121 489- runs script noninteractively, printing info on each entry into a
36477c24 490subroutine and each executed line into the file F<listing>. (If you
491interrupt it, you would better reset C<LineInfo> to something
492"interactive"!)
493
494
e7ea3e70 495 $ env "PERLDB_OPTS=R=0 TTY=/dev/ttyc" perl -d myprogram
36477c24 496
497may be useful for debugging a program which uses C<Term::ReadLine>
774d564b 498itself. Do not forget detach shell from the TTY in the window which
36477c24 499corresponds to F</dev/ttyc>, say, by issuing a command like
500
e7ea3e70 501 $ sleep 1000000
36477c24 502
503See L<"Debugger Internals"> below for more details.
504
505=item E<lt> [ command ]
506
507Set an action (Perl command) to happen before every debugger prompt.
4a6725af 508A multi-line command may be entered by backslashing the newlines. If
36477c24 509C<command> is missing, resets the list of actions.
510
511=item E<lt>E<lt> command
512
513Add an action (Perl command) to happen before every debugger prompt.
4a6725af 514A multi-line command may be entered by backslashing the newlines.
a0d0e21e 515
184e9718 516=item E<gt> command
a0d0e21e 517
36477c24 518Set an action (Perl command) to happen after the prompt when you've
4a6725af 519just given a command to return to executing the script. A multi-line
36477c24 520command may be entered by backslashing the newlines. If C<command> is
521missing, resets the list of actions.
522
523=item E<gt>E<gt> command
524
525Adds an action (Perl command) to happen after the prompt when you've
4a6725af 526just given a command to return to executing the script. A multi-line
36477c24 527command may be entered by backslashing the newlines.
528
529=item { [ command ]
530
531Set an action (debugger command) to happen before every debugger prompt.
4a6725af 532A multi-line command may be entered by backslashing the newlines. If
36477c24 533C<command> is missing, resets the list of actions.
534
535=item {{ command
536
537Add an action (debugger command) to happen before every debugger prompt.
4a6725af 538A multi-line command may be entered by backslashing the newlines.
a0d0e21e 539
4e1d3b43 540=item ! number
a0d0e21e 541
4e1d3b43 542Redo a previous command (default previous command).
a0d0e21e 543
4e1d3b43 544=item ! -number
a0d0e21e 545
4e1d3b43 546Redo number'th-to-last command.
a0d0e21e 547
4e1d3b43 548=item ! pattern
a0d0e21e 549
4e1d3b43 550Redo last command that started with pattern.
551See C<O recallCommand>, too.
a0d0e21e 552
4e1d3b43 553=item !! cmd
a0d0e21e 554
4e1d3b43 555Run cmd in a subprocess (reads from DB::IN, writes to DB::OUT)
556See C<O shellBang> too.
a0d0e21e 557
558=item H -number
559
560Display last n commands. Only commands longer than one character are
561listed. If number is omitted, lists them all.
562
563=item q or ^D
564
36477c24 565Quit. ("quit" doesn't work for this.) This is the only supported way
566to exit the debugger, though typing C<exit> twice may do it too.
567
568Set an C<O>ption C<inhibit_exit> to 0 if you want to be able to I<step
19799a22 569off> the end the script. You may also need to set $finished to 0 at
36477c24 570some moment if you want to step through global destruction.
a0d0e21e 571
4e1d3b43 572=item R
573
574Restart the debugger by B<exec>ing a new session. It tries to maintain
575your history across this, but internal settings and command line options
576may be lost.
577
5f05dabc 578Currently the following setting are preserved: history, breakpoints,
54310121 579actions, debugger C<O>ptions, and the following command line
5f05dabc 580options: B<-w>, B<-I>, and B<-e>.
36477c24 581
4e1d3b43 582=item |dbcmd
583
584Run debugger command, piping DB::OUT to current pager.
585
586=item ||dbcmd
587
588Same as C<|dbcmd> but DB::OUT is temporarily B<select>ed as well.
589Often used with commands that would otherwise produce long
590output, such as
591
592 |V main
593
594=item = [alias value]
595
e7ea3e70 596Define a command alias, like
597
598 = quit q
599
600or list current aliases.
4e1d3b43 601
a0d0e21e 602=item command
603
604Execute command as a Perl statement. A missing semicolon will be
605supplied.
606
e7ea3e70 607=item m expr
a0d0e21e 608
e7ea3e70 609The expression is evaluated, and the methods which may be applied to
610the result are listed.
611
612=item m package
613
614The methods which may be applied to objects in the C<package> are listed.
a0d0e21e 615
616=back
617
e7ea3e70 618=head2 Debugger input/output
619
620=over 8
621
622=item Prompt
623
4e1d3b43 624The debugger prompt is something like
625
626 DB<8>
627
628or even
629
630 DB<<17>>
631
632where that number is the command number, which you'd use to access with
54310121 633the builtin B<csh>-like history mechanism, e.g., C<!17> would repeat
4e1d3b43 634command number 17. The number of angle brackets indicates the depth of
635the debugger. You could get more than one set of brackets, for example, if
636you'd already at a breakpoint and then printed out the result of a
36477c24 637function call that itself also has a breakpoint, or you step into an
638expression via C<s/n/t expression> command.
4e1d3b43 639
54310121 640=item Multiline commands
e7ea3e70 641
4a6725af 642If you want to enter a multi-line command, such as a subroutine
e7ea3e70 643definition with several statements, or a format, you may escape the
644newline that would normally end the debugger command with a backslash.
645Here's an example:
a0d0e21e 646
4e1d3b43 647 DB<1> for (1..4) { \
648 cont: print "ok\n"; \
649 cont: }
650 ok
651 ok
652 ok
653 ok
654
655Note that this business of escaping a newline is specific to interactive
656commands typed into the debugger.
657
e7ea3e70 658=item Stack backtrace
659
68dc0745 660Here's an example of what a stack backtrace via C<T> command might
e7ea3e70 661look like:
4e1d3b43 662
663 $ = main::infested called from file `Ambulation.pm' line 10
664 @ = Ambulation::legs(1, 2, 3, 4) called from file `camel_flea' line 7
665 $ = main::pests('bactrian', 4) called from file `camel_flea' line 4
666
667The left-hand character up there tells whether the function was called
668in a scalar or list context (we bet you can tell which is which). What
669that says is that you were in the function C<main::infested> when you ran
670the stack dump, and that it was called in a scalar context from line 10
671of the file I<Ambulation.pm>, but without any arguments at all, meaning
672it was called as C<&infested>. The next stack frame shows that the
673function C<Ambulation::legs> was called in a list context from the
674I<camel_flea> file with four arguments. The last stack frame shows that
675C<main::pests> was called in a scalar context, also from I<camel_flea>,
676but from line 4.
677
e7ea3e70 678Note that if you execute C<T> command from inside an active C<use>
7b8d334a 679statement, the backtrace will contain both C<require>
680frame and an C<eval>) frame.
e7ea3e70 681
682=item Listing
683
684Listing given via different flavors of C<l> command looks like this:
685
686 DB<<13>> l
687 101: @i{@i} = ();
688 102:b @isa{@i,$pack} = ()
689 103 if(exists $i{$prevpack} || exists $isa{$pack});
690 104 }
691 105
692 106 next
693 107==> if(exists $isa{$pack});
694 108
695 109:a if ($extra-- > 0) {
696 110: %isa = ($pack,1);
697
698Note that the breakable lines are marked with C<:>, lines with
699breakpoints are marked by C<b>, with actions by C<a>, and the
700next executed line is marked by C<==E<gt>>.
701
702=item Frame listing
703
704When C<frame> option is set, debugger would print entered (and
705optionally exited) subroutines in different styles.
706
54310121 707What follows is the start of the listing of
e7ea3e70 708
28d1fb14 709 env "PERLDB_OPTS=f=n N" perl -d -V
710
711for different values of C<n>:
e7ea3e70 712
713=over 4
714
715=item 1
716
717 entering main::BEGIN
718 entering Config::BEGIN
719 Package lib/Exporter.pm.
720 Package lib/Carp.pm.
721 Package lib/Config.pm.
722 entering Config::TIEHASH
723 entering Exporter::import
724 entering Exporter::export
725 entering Config::myconfig
726 entering Config::FETCH
727 entering Config::FETCH
728 entering Config::FETCH
729 entering Config::FETCH
730
731=item 2
732
733 entering main::BEGIN
734 entering Config::BEGIN
735 Package lib/Exporter.pm.
736 Package lib/Carp.pm.
737 exited Config::BEGIN
738 Package lib/Config.pm.
739 entering Config::TIEHASH
740 exited Config::TIEHASH
741 entering Exporter::import
742 entering Exporter::export
743 exited Exporter::export
744 exited Exporter::import
745 exited main::BEGIN
746 entering Config::myconfig
747 entering Config::FETCH
748 exited Config::FETCH
749 entering Config::FETCH
750 exited Config::FETCH
751 entering Config::FETCH
752
753=item 4
754
755 in $=main::BEGIN() from /dev/nul:0
756 in $=Config::BEGIN() from lib/Config.pm:2
757 Package lib/Exporter.pm.
758 Package lib/Carp.pm.
759 Package lib/Config.pm.
760 in $=Config::TIEHASH('Config') from lib/Config.pm:644
761 in $=Exporter::import('Config', 'myconfig', 'config_vars') from /dev/nul:0
762 in $=Exporter::export('Config', 'main', 'myconfig', 'config_vars') from li
763 in @=Config::myconfig() from /dev/nul:0
764 in $=Config::FETCH(ref(Config), 'package') from lib/Config.pm:574
765 in $=Config::FETCH(ref(Config), 'baserev') from lib/Config.pm:574
cceca5ed 766 in $=Config::FETCH(ref(Config), 'PERL_VERSION') from lib/Config.pm:574
767 in $=Config::FETCH(ref(Config), 'PERL_SUBVERSION') from lib/Config.pm:574
e7ea3e70 768 in $=Config::FETCH(ref(Config), 'osname') from lib/Config.pm:574
769 in $=Config::FETCH(ref(Config), 'osvers') from lib/Config.pm:574
770
771=item 6
772
773 in $=main::BEGIN() from /dev/nul:0
774 in $=Config::BEGIN() from lib/Config.pm:2
775 Package lib/Exporter.pm.
776 Package lib/Carp.pm.
777 out $=Config::BEGIN() from lib/Config.pm:0
778 Package lib/Config.pm.
779 in $=Config::TIEHASH('Config') from lib/Config.pm:644
780 out $=Config::TIEHASH('Config') from lib/Config.pm:644
781 in $=Exporter::import('Config', 'myconfig', 'config_vars') from /dev/nul:0
782 in $=Exporter::export('Config', 'main', 'myconfig', 'config_vars') from lib/
783 out $=Exporter::export('Config', 'main', 'myconfig', 'config_vars') from lib/
784 out $=Exporter::import('Config', 'myconfig', 'config_vars') from /dev/nul:0
785 out $=main::BEGIN() from /dev/nul:0
786 in @=Config::myconfig() from /dev/nul:0
787 in $=Config::FETCH(ref(Config), 'package') from lib/Config.pm:574
788 out $=Config::FETCH(ref(Config), 'package') from lib/Config.pm:574
789 in $=Config::FETCH(ref(Config), 'baserev') from lib/Config.pm:574
790 out $=Config::FETCH(ref(Config), 'baserev') from lib/Config.pm:574
cceca5ed 791 in $=Config::FETCH(ref(Config), 'PERL_VERSION') from lib/Config.pm:574
792 out $=Config::FETCH(ref(Config), 'PERL_VERSION') from lib/Config.pm:574
793 in $=Config::FETCH(ref(Config), 'PERL_SUBVERSION') from lib/Config.pm:574
e7ea3e70 794
795=item 14
796
797 in $=main::BEGIN() from /dev/nul:0
798 in $=Config::BEGIN() from lib/Config.pm:2
799 Package lib/Exporter.pm.
800 Package lib/Carp.pm.
801 out $=Config::BEGIN() from lib/Config.pm:0
802 Package lib/Config.pm.
803 in $=Config::TIEHASH('Config') from lib/Config.pm:644
804 out $=Config::TIEHASH('Config') from lib/Config.pm:644
805 in $=Exporter::import('Config', 'myconfig', 'config_vars') from /dev/nul:0
806 in $=Exporter::export('Config', 'main', 'myconfig', 'config_vars') from lib/E
807 out $=Exporter::export('Config', 'main', 'myconfig', 'config_vars') from lib/E
808 out $=Exporter::import('Config', 'myconfig', 'config_vars') from /dev/nul:0
809 out $=main::BEGIN() from /dev/nul:0
810 in @=Config::myconfig() from /dev/nul:0
811 in $=Config::FETCH('Config=HASH(0x1aa444)', 'package') from lib/Config.pm:574
812 out $=Config::FETCH('Config=HASH(0x1aa444)', 'package') from lib/Config.pm:574
813 in $=Config::FETCH('Config=HASH(0x1aa444)', 'baserev') from lib/Config.pm:574
814 out $=Config::FETCH('Config=HASH(0x1aa444)', 'baserev') from lib/Config.pm:574
815
28d1fb14 816=item 30
817
818 in $=CODE(0x15eca4)() from /dev/null:0
819 in $=CODE(0x182528)() from lib/Config.pm:2
820 Package lib/Exporter.pm.
821 out $=CODE(0x182528)() from lib/Config.pm:0
822 scalar context return from CODE(0x182528): undef
823 Package lib/Config.pm.
824 in $=Config::TIEHASH('Config') from lib/Config.pm:628
825 out $=Config::TIEHASH('Config') from lib/Config.pm:628
826 scalar context return from Config::TIEHASH: empty hash
827 in $=Exporter::import('Config', 'myconfig', 'config_vars') from /dev/null:0
828 in $=Exporter::export('Config', 'main', 'myconfig', 'config_vars') from lib/Exporter.pm:171
829 out $=Exporter::export('Config', 'main', 'myconfig', 'config_vars') from lib/Exporter.pm:171
830 scalar context return from Exporter::export: ''
831 out $=Exporter::import('Config', 'myconfig', 'config_vars') from /dev/null:0
832 scalar context return from Exporter::import: ''
833
834
e7ea3e70 835=back
836
837In all the cases indentation of lines shows the call tree, if bit 2 of
838C<frame> is set, then a line is printed on exit from a subroutine as
839well, if bit 4 is set, then the arguments are printed as well as the
840caller info, if bit 8 is set, the arguments are printed even if they
28d1fb14 841are tied or references, if bit 16 is set, the return value is printed
842as well.
e7ea3e70 843
844When a package is compiled, a line like this
845
846 Package lib/Carp.pm.
847
848is printed with proper indentation.
849
850=back
851
852=head2 Debugging compile-time statements
853
4e1d3b43 854If you have any compile-time executable statements (code within a BEGIN
855block or a C<use> statement), these will C<NOT> be stopped by debugger,
36477c24 856although C<require>s will (and compile-time statements can be traced
54310121 857with C<AutoTrace> option set in C<PERLDB_OPTS>). From your own Perl
36477c24 858code, however, you can
4e1d3b43 859transfer control back to the debugger using the following statement,
860which is harmless if the debugger is not running:
a0d0e21e 861
862 $DB::single = 1;
863
4e1d3b43 864If you set C<$DB::single> to the value 2, it's equivalent to having
865just typed the C<n> command, whereas a value of 1 means the C<s>
866command. The C<$DB::trace> variable should be set to 1 to simulate
867having typed the C<t> command.
868
e7ea3e70 869Another way to debug compile-time code is to start debugger, set a
870breakpoint on I<load> of some module thusly
871
872 DB<7> b load f:/perllib/lib/Carp.pm
873 Will stop on load of `f:/perllib/lib/Carp.pm'.
874
774d564b 875and restart debugger by C<R> command (if possible). One can use C<b
e7ea3e70 876compile subname> for the same purpose.
877
4e1d3b43 878=head2 Debugger Customization
a0d0e21e 879
7b8d334a 880Most probably you do not want to modify the debugger, it contains enough
774d564b 881hooks to satisfy most needs. You may change the behaviour of debugger
36477c24 882from the debugger itself, using C<O>ptions, from the command line via
883C<PERLDB_OPTS> environment variable, and from I<customization files>.
a0d0e21e 884
885You can do some customization by setting up a F<.perldb> file which
886contains initialization code. For instance, you could make aliases
4e1d3b43 887like these (the last one is one people expect to be there):
a0d0e21e 888
4e1d3b43 889 $DB::alias{'len'} = 's/^len(.*)/p length($1)/';
a0d0e21e 890 $DB::alias{'stop'} = 's/^stop (at|in)/b/';
4e1d3b43 891 $DB::alias{'ps'} = 's/^ps\b/p scalar /';
892 $DB::alias{'quit'} = 's/^quit(\s*)/exit\$/';
893
36477c24 894One changes options from F<.perldb> file via calls like this one;
895
896 parse_options("NonStop=1 LineInfo=db.out AutoTrace=1 frame=2");
897
774d564b 898(the code is executed in the package C<DB>). Note that F<.perldb> is
899processed before processing C<PERLDB_OPTS>. If F<.perldb> defines the
36477c24 900subroutine C<afterinit>, it is called after all the debugger
774d564b 901initialization ends. F<.perldb> may be contained in the current
36477c24 902directory, or in the C<LOGDIR>/C<HOME> directory.
903
904If you want to modify the debugger, copy F<perl5db.pl> from the Perl
905library to another name and modify it as necessary. You'll also want
906to set your C<PERL5DB> environment variable to say something like this:
907
908 BEGIN { require "myperl5db.pl" }
909
910As the last resort, one can use C<PERL5DB> to customize debugger by
911directly setting internal variables or calling debugger functions.
912
4e1d3b43 913=head2 Readline Support
914
915As shipped, the only command line history supplied is a simplistic one
916that checks for leading exclamation points. However, if you install
917the Term::ReadKey and Term::ReadLine modules from CPAN, you will
918have full editing capabilities much like GNU I<readline>(3) provides.
919Look for these in the F<modules/by-module/Term> directory on CPAN.
920
54310121 921A rudimentary command line completion is also available.
e7ea3e70 922Unfortunately, the names of lexical variables are not available for
923completion.
924
4e1d3b43 925=head2 Editor Support for Debugging
926
927If you have GNU B<emacs> installed on your system, it can interact with
928the Perl debugger to provide an integrated software development
929environment reminiscent of its interactions with C debuggers.
930
931Perl is also delivered with a start file for making B<emacs> act like a
932syntax-directed editor that understands (some of) Perl's syntax. Look in
933the I<emacs> directory of the Perl source distribution.
934
935(Historically, a similar setup for interacting with B<vi> and the
936X11 window system had also been available, but at the time of this
937writing, no debugger support for B<vi> currently exists.)
938
939=head2 The Perl Profiler
940
941If you wish to supply an alternative debugger for Perl to run, just
942invoke your script with a colon and a package argument given to the B<-d>
943flag. One of the most popular alternative debuggers for Perl is
944B<DProf>, the Perl profiler. As of this writing, B<DProf> is not
945included with the standard Perl distribution, but it is expected to
946be included soon, for certain values of "soon".
947
948Meanwhile, you can fetch the Devel::Dprof module from CPAN. Assuming
949it's properly installed on your system, to profile your Perl program in
950the file F<mycode.pl>, just type:
951
952 perl -d:DProf mycode.pl
953
954When the script terminates the profiler will dump the profile information
955to a file called F<tmon.out>. A tool like B<dprofpp> (also supplied with
956the Devel::DProf package) can be used to interpret the information which is
957in that profile.
958
36477c24 959=head2 Debugger support in perl
4e1d3b43 960
e7ea3e70 961When you call the B<caller> function (see L<perlfunc/caller>) from the
962package DB, Perl sets the array @DB::args to contain the arguments the
54310121 963corresponding stack frame was called with.
4e1d3b43 964
36477c24 965If perl is run with B<-d> option, the following additional features
84902520 966are enabled (cf. L<perlvar/$^P>):
a0d0e21e 967
36477c24 968=over
4e1d3b43 969
36477c24 970=item *
4e1d3b43 971
36477c24 972Perl inserts the contents of C<$ENV{PERL5DB}> (or C<BEGIN {require
973'perl5db.pl'}> if not present) before the first line of the
974application.
4e1d3b43 975
36477c24 976=item *
4e1d3b43 977
7b8d334a 978The array C<@{"_E<lt>$filename"}> is the line-by-line contents of
774d564b 979$filename for all the compiled files. Same for C<eval>ed strings which
19799a22 980contain subroutines, or which are currently executed. The $filename
36477c24 981for C<eval>ed strings looks like C<(eval 34)>.
4e1d3b43 982
36477c24 983=item *
4e1d3b43 984
7b8d334a 985The hash C<%{"_E<lt>$filename"}> contains breakpoints and action (it is
36477c24 986keyed by line number), and individual entries are settable (as opposed
774d564b 987to the whole hash). Only true/false is important to Perl, though the
36477c24 988values used by F<perl5db.pl> have the form
774d564b 989C<"$break_condition\0$action">. Values are magical in numeric context:
36477c24 990they are zeros if the line is not breakable.
4e1d3b43 991
36477c24 992Same for evaluated strings which contain subroutines, or which are
7b8d334a 993currently executed. The $filename for C<eval>ed strings looks like
36477c24 994C<(eval 34)>.
4e1d3b43 995
36477c24 996=item *
4e1d3b43 997
7b8d334a 998The scalar C<${"_E<lt>$filename"}> contains C<"_E<lt>$filename">. Same for
36477c24 999evaluated strings which contain subroutines, or which are currently
7b8d334a 1000executed. The $filename for C<eval>ed strings looks like C<(eval
36477c24 100134)>.
4e1d3b43 1002
36477c24 1003=item *
4e1d3b43 1004
36477c24 1005After each C<require>d file is compiled, but before it is executed,
7b8d334a 1006C<DB::postponed(*{"_E<lt>$filename"})> is called (if subroutine
774d564b 1007C<DB::postponed> exists). Here the $filename is the expanded name of
7b8d334a 1008the C<require>d file (as found in values of %INC).
4e1d3b43 1009
36477c24 1010=item *
4e1d3b43 1011
36477c24 1012After each subroutine C<subname> is compiled existence of
774d564b 1013C<$DB::postponed{subname}> is checked. If this key exists,
36477c24 1014C<DB::postponed(subname)> is called (if subroutine C<DB::postponed>
1015exists).
4e1d3b43 1016
36477c24 1017=item *
4e1d3b43 1018
36477c24 1019A hash C<%DB::sub> is maintained, with keys being subroutine names,
774d564b 1020values having the form C<filename:startline-endline>. C<filename> has
36477c24 1021the form C<(eval 31)> for subroutines defined inside C<eval>s.
4e1d3b43 1022
36477c24 1023=item *
1024
5f05dabc 1025When execution of the application reaches a place that can have
1026a breakpoint, a call to C<DB::DB()> is performed if any one of
1027variables $DB::trace, $DB::single, or $DB::signal is true. (Note that
36477c24 1028these variables are not C<local>izable.) This feature is disabled when
1029the control is inside C<DB::DB()> or functions called from it (unless
e7ea3e70 1030C<$^D & (1E<lt>E<lt>30)>).
36477c24 1031
1032=item *
1033
5f05dabc 1034When execution of the application reaches a subroutine call, a call
36477c24 1035to C<&DB::sub>(I<args>) is performed instead, with C<$DB::sub> being
1036the name of the called subroutine. (Unless the subroutine is compiled
1037in the package C<DB>.)
4e1d3b43 1038
1039=back
a0d0e21e 1040
84902520 1041Note that if C<&DB::sub> needs some external data to be setup for it
1042to work, no subroutine call is possible until this is done. For the
1043standard debugger C<$DB::deep> (how many levels of recursion deep into
1044the debugger you can go before a mandatory break) gives an example of
1045such a dependency.
e7ea3e70 1046
84902520 1047The minimal working debugger consists of one line
e7ea3e70 1048
1049 sub DB::DB {}
1050
1051which is quite handy as contents of C<PERL5DB> environment
1052variable:
1053
1054 env "PERL5DB=sub DB::DB {}" perl -d your-script
1055
1056Another (a little bit more useful) minimal debugger can be created
1057with the only line being
1058
1059 sub DB::DB {print ++$i; scalar <STDIN>}
1060
1061This debugger would print the sequential number of encountered
1062statement, and would wait for your C<CR> to continue.
1063
1064The following debugger is quite functional:
1065
54310121 1066 {
1067 package DB;
1068 sub DB {}
e7ea3e70 1069 sub sub {print ++$i, " $sub\n"; &$sub}
1070 }
1071
1072It prints the sequential number of subroutine call and the name of the
774d564b 1073called subroutine. Note that C<&DB::sub> should be compiled into the
e7ea3e70 1074package C<DB>.
36477c24 1075
1076=head2 Debugger Internals
1077
1078At the start, the debugger reads your rc file (F<./.perldb> or
54310121 1079F<~/.perldb> under Unix), which can set important options. This file may
36477c24 1080define a subroutine C<&afterinit> to be executed after the debugger is
1081initialized.
1082
5f05dabc 1083After the rc file is read, the debugger reads environment variable
36477c24 1084PERLDB_OPTS and parses it as a rest of C<O ...> line in debugger prompt.
1085
1086It also maintains magical internal variables, such as C<@DB::dbline>,
1087C<%DB::dbline>, which are aliases for C<@{"::_<current_file"}>
774d564b 1088C<%{"::_<current_file"}>. Here C<current_file> is the currently
36477c24 1089selected (with the debugger's C<f> command, or by flow of execution)
1090file.
1091
774d564b 1092Some functions are provided to simplify customization. See L<"Debugger
1093Customization"> for description of C<DB::parse_options(string)>. The
36477c24 1094function C<DB::dump_trace(skip[, count])> skips the specified number
1d2dff63 1095of frames, and returns a list containing info about the caller
774d564b 1096frames (all if C<count> is missing). Each entry is a hash with keys
36477c24 1097C<context> (C<$> or C<@>), C<sub> (subroutine name, or info about
5f05dabc 1098eval), C<args> (C<undef> or a reference to an array), C<file>, and
36477c24 1099C<line>.
1100
54310121 1101The function C<DB::print_trace(FH, skip[, count[, short]])> prints
774d564b 1102formatted info about caller frames. The last two functions may be
36477c24 1103convenient as arguments to C<E<lt>>, C<E<lt>E<lt>> commands.
1104
a0d0e21e 1105=head2 Other resources
1106
1107You did try the B<-w> switch, didn't you?
1108
a77df738 1109=head2 BUGS
a0d0e21e 1110
4e1d3b43 1111You cannot get the stack frame information or otherwise debug functions
1112that were not compiled by Perl, such as C or C++ extensions.
a0d0e21e 1113
4e1d3b43 1114If you alter your @_ arguments in a subroutine (such as with B<shift>
68dc0745 1115or B<pop>, the stack backtrace will not show the original values.
a77df738 1116
1117=head1 Debugging Perl memory usage
1118
1119Perl is I<very> frivolous with memory. There is a saying that to
1120estimate memory usage of Perl, assume a reasonable algorithm of
c2611fb3 1121allocation, and multiply your estimates by 10. This is not absolutely
a77df738 1122true, but may give you a good grasp of what happens.
1123
1124Say, an integer cannot take less than 20 bytes of memory, a float
1125cannot take less than 24 bytes, a string cannot take less than 32
1126bytes (all these examples assume 32-bit architectures, the result are
1127much worse on 64-bit architectures). If a variable is accessed in two
1128of three different ways (which require an integer, a float, or a
1129string), the memory footprint may increase by another 20 bytes. A
1130sloppy malloc() implementation will make these numbers yet more.
1131
1132On the opposite end of the scale, a declaration like
1133
1134 sub foo;
1135
1136may take (on some versions of perl) up to 500 bytes of memory.
1137
1138Off-the-cuff anecdotal estimates of a code bloat give a factor around
11398. This means that the compiled form of reasonable (commented
1140indented etc.) code will take approximately 8 times more than the
1141disk space the code takes.
1142
1143There are two Perl-specific ways to analyze the memory usage:
1144$ENV{PERL_DEBUG_MSTATS} and B<-DL> switch. First one is available
1145only if perl is compiled with Perl's malloc(), the second one only if
1146Perl compiled with C<-DDEBUGGING> (as with giving C<-D optimise=-g>
1147option to F<Configure>).
1148
1149=head2 Using C<$ENV{PERL_DEBUG_MSTATS}>
1150
1151If your perl is using Perl's malloc(), and compiled with correct
1152switches (this is the default), then it will print memory usage
1153statistics after compiling your code (if C<$ENV{PERL_DEBUG_MSTATS}> >
11541), and before termination of the script (if
1155C<$ENV{PERL_DEBUG_MSTATS}> >= 1). The report format is similar to one
1156in the following example:
1157
1158 env PERL_DEBUG_MSTATS=2 perl -e "require Carp"
1159 Memory allocation statistics after compilation: (buckets 4(4)..8188(8192)
1160 14216 free: 130 117 28 7 9 0 2 2 1 0 0
1161 437 61 36 0 5
1162 60924 used: 125 137 161 55 7 8 6 16 2 0 1
1163 74 109 304 84 20
1164 Total sbrk(): 77824/21:119. Odd ends: pad+heads+chain+tail: 0+636+0+2048.
1165 Memory allocation statistics after execution: (buckets 4(4)..8188(8192)
1166 30888 free: 245 78 85 13 6 2 1 3 2 0 1
1167 315 162 39 42 11
1168 175816 used: 265 176 1112 111 26 22 11 27 2 1 1
1169 196 178 1066 798 39
1170 Total sbrk(): 215040/47:145. Odd ends: pad+heads+chain+tail: 0+2192+0+6144.
1171
1172It is possible to ask for such a statistic at arbitrary moment by
c2611fb3 1173using Devel::Peek::mstats() (module Devel::Peek is available on CPAN).
a77df738 1174
1175Here is the explanation of different parts of the format:
1176
1177=over
1178
1179=item C<buckets SMALLEST(APPROX)..GREATEST(APPROX)>
1180
1181Perl's malloc() uses bucketed allocations. Every request is rounded
1182up to the closest bucket size available, and a bucket of these size is
1183taken from the pool of the buckets of this size.
1184
1185The above line describes limits of buckets currently in use. Each
1186bucket has two sizes: memory footprint, and the maximal size of user
1187data which may be put into this bucket. Say, in the above example the
1188smallest bucket is both sizes 4. The biggest bucket has usable size
11898188, and the memory footprint 8192.
1190
1191With debugging Perl some buckets may have negative usable size. This
1192means that these buckets cannot (and will not) be used. For greater
1193buckets the memory footprint may be one page greater than a power of
11942. In such a case the corresponding power of two is printed instead
1195in the C<APPROX> field above.
1196
1197=item Free/Used
1198
1199The following 1 or 2 rows of numbers correspond to the number of
1200buckets of each size between C<SMALLEST> and C<GREATEST>. In the
1201first row the sizes (memory footprints) of buckets are powers of two
1202(or possibly one page greater). In the second row (if present) the
1203memory footprints of the buckets are between memory footprints of two
1204buckets "above".
1205
1206Say, with the above example the memory footprints are (with current
c2611fb3 1207algorithm)
a77df738 1208
1209 free: 8 16 32 64 128 256 512 1024 2048 4096 8192
1210 4 12 24 48 80
1211
1212With non-C<DEBUGGING> perl the buckets starting from C<128>-long ones
1213have 4-byte overhead, thus 8192-long bucket may take up to
12148188-byte-long allocations.
1215
1216=item C<Total sbrk(): SBRKed/SBRKs:CONTINUOUS>
1217
1218The first two fields give the total amount of memory perl sbrk()ed,
1219and number of sbrk()s used. The third number is what perl thinks
1220about continuity of returned chunks. As far as this number is
1221positive, malloc() will assume that it is probable that sbrk() will
1222provide continuous memory.
1223
1224The amounts sbrk()ed by external libraries is not counted.
1225
1226=item C<pad: 0>
1227
1228The amount of sbrk()ed memory needed to keep buckets aligned.
1229
1230=item C<heads: 2192>
1231
1232While memory overhead of bigger buckets is kept inside the bucket, for
1233smaller buckets it is kept in separate areas. This field gives the
1234total size of these areas.
1235
1236=item C<chain: 0>
1237
1238malloc() may want to subdivide a bigger bucket into smaller buckets.
1239If only a part of the deceased-bucket is left non-subdivided, the rest
1240is kept as an element of a linked list. This field gives the total
1241size of these chunks.
1242
1243=item C<tail: 6144>
1244
1245To minimize amount of sbrk()s malloc() asks for more memory. This
1246field gives the size of the yet-unused part, which is sbrk()ed, but
1247never touched.
1248
1249=back
1250
1251=head2 Example of using B<-DL> switch
1252
1253Below we show how to analyse memory usage by
1254
1255 do 'lib/auto/POSIX/autosplit.ix';
1256
1257The file in question contains a header and 146 lines similar to
1258
1259 sub getcwd ;
1260
1261B<Note:> I<the discussion below supposes 32-bit architecture. In the
1262newer versions of perl the memory usage of the constructs discussed
1263here is much improved, but the story discussed below is a real-life
1264story. This story is very terse, and assumes more than cursory
1265knowledge of Perl internals.>
1266
1267Here is the itemized list of Perl allocations performed during parsing
1268of this file:
1269
1270 !!! "after" at test.pl line 3.
1271 Id subtot 4 8 12 16 20 24 28 32 36 40 48 56 64 72 80 80+
1272 0 02 13752 . . . . 294 . . . . . . . . . . 4
1273 0 54 5545 . . 8 124 16 . . . 1 1 . . . . . 3
1274 5 05 32 . . . . . . . 1 . . . . . . . .
1275 6 02 7152 . . . . . . . . . . 149 . . . . .
1276 7 02 3600 . . . . . 150 . . . . . . . . . .
1277 7 03 64 . -1 . 1 . . 2 . . . . . . . . .
1278 7 04 7056 . . . . . . . . . . . . . . . 7
1279 7 17 38404 . . . . . . . 1 . . 442 149 . . 147 .
1280 9 03 2078 17 249 32 . . . . 2 . . . . . . . .
1281
1282
1283To see this list insert two C<warn('!...')> statements around the call:
1284
1285 warn('!');
1286 do 'lib/auto/POSIX/autosplit.ix';
1287 warn('!!! "after"');
1288
1289and run it with B<-DL> option. The first warn() will print memory
1290allocation info before the parsing of the file, and will memorize the
1291statistics at this point (we ignore what it prints). The second warn()
1292will print increments w.r.t. this memorized statistics. This is the
1293above printout.
1294
1295Different I<Id>s on the left correspond to different subsystems of
1296perl interpreter, they are just first argument given to perl memory
1297allocation API New(). To find what C<9 03> means C<grep> the perl
1298source for C<903>. You will see that it is F<util.c>, function
1299savepvn(). This function is used to store a copy of existing chunk of
1300memory. Using C debugger, one can see that it is called either
1301directly from gv_init(), or via sv_magic(), and gv_init() is called
1302from gv_fetchpv() - which is called from newSUB().
1303
1304B<Note:> to reach this place in debugger and skip all the calls to
1305savepvn during the compilation of the main script, set a C breakpoint
1306in Perl_warn(), C<continue> this point is reached, I<then> set
1307breakpoint in Perl_savepvn(). Note that you may need to skip a
1308handful of Perl_savepvn() which do not correspond to mass production
1309of CVs (there are more C<903> allocations than 146 similar lines of
1310F<lib/auto/POSIX/autosplit.ix>). Note also that C<Perl_> prefixes are
1311added by macroization code in perl header files to avoid conflicts
1312with external libraries.
1313
1314Anyway, we see that C<903> ids correspond to creation of globs, twice
1315per glob - for glob name, and glob stringification magic.
1316
1317Here are explanations for other I<Id>s above:
1318
1319=over
1320
1321=item C<717>
1322
1323is for creation of bigger C<XPV*> structures. In the above case it
1324creates 3 C<AV> per subroutine, one for a list of lexical variable
1325names, one for a scratchpad (which contains lexical variables and
1326C<targets>), and one for the array of scratchpads needed for
1327recursion.
1328
1329It also creates a C<GV> and a C<CV> per subroutine (all called from
1330start_subparse()).
1331
1332=item C<002>
1333
1334Creates C array corresponding to the C<AV> of scratchpads, and the
1335scratchpad itself (the first fake entry of this scratchpad is created
1336though the subroutine itself is not defined yet).
1337
1338It also creates C arrays to keep data for the stash (this is one HV,
1339but it grows, thus there are 4 big allocations: the big chunks are not
c2611fb3 1340freed, but are kept as additional arenas for C<SV> allocations).
a77df738 1341
1342=item C<054>
1343
1344creates a C<HEK> for the name of the glob for the subroutine (this
1345name is a key in a I<stash>).
1346
1347Big allocations with this I<Id> correspond to allocations of new
1348arenas to keep C<HE>.
1349
1350=item C<602>
1351
1352creates a C<GP> for the glob for the subroutine.
1353
1354=item C<702>
1355
1356creates the C<MAGIC> for the glob for the subroutine.
1357
1358=item C<704>
1359
1360creates I<arenas> which keep SVs.
1361
1362=back
1363
1364=head2 B<-DL> details
1365
1366If Perl is run with B<-DL> option, then warn()s which start with `!'
1367behave specially. They print a list of I<categories> of memory
1368allocations, and statistics of allocations of different sizes for
1369these categories.
1370
1371If warn() string starts with
1372
1373=over
1374
1375=item C<!!!>
1376
1377print changed categories only, print the differences in counts of allocations;
1378
1379=item C<!!>
1380
1381print grown categories only; print the absolute values of counts, and totals;
1382
1383=item C<!>
1384
1385print nonempty categories, print the absolute values of counts and totals.
1386
1387=back
1388
1389=head2 Limitations of B<-DL> statistic
1390
1391If an extension or an external library does not use Perl API to
1392allocate memory, these allocations are not counted.
1393
54dc92de 1394=head1 Debugging regular expressions
1395
1396There are two ways to enable debugging output for regular expressions.
1397
1398If your perl is compiled with C<-DDEBUGGING>, you may use the
1399B<-Dr> flag on the command line.
1400
1401Otherwise, one can C<use re 'debug'>, which has effects both at
1402compile time, and at run time (and is I<not> lexically scoped).
1403
1404=head2 Compile-time output
1405
1406The debugging output for the compile time looks like this:
1407
1408 compiling RE `[bc]d(ef*g)+h[ij]k$'
1409 size 43 first at 1
1410 1: ANYOF(11)
1411 11: EXACT <d>(13)
1412 13: CURLYX {1,32767}(27)
1413 15: OPEN1(17)
1414 17: EXACT <e>(19)
1415 19: STAR(22)
1416 20: EXACT <f>(0)
1417 22: EXACT <g>(24)
1418 24: CLOSE1(26)
1419 26: WHILEM(0)
1420 27: NOTHING(28)
1421 28: EXACT <h>(30)
1422 30: ANYOF(40)
1423 40: EXACT <k>(42)
1424 42: EOL(43)
1425 43: END(0)
1426 anchored `de' at 1 floating `gh' at 3..2147483647 (checking floating)
1427 stclass `ANYOF' minlen 7
1428
1429The first line shows the pre-compiled form of the regexp, and the
1430second shows the size of the compiled form (in arbitrary units,
1431usually 4-byte words) and the label I<id> of the first node which
1432does a match.
1433
1434The last line (split into two lines in the above) contains the optimizer
1435info. In the example shown, the optimizer found that the match
1436should contain a substring C<de> at the offset 1, and substring C<gh>
1437at some offset between 3 and infinity. Moreover, when checking for
1438these substrings (to abandon impossible matches quickly) it will check
1439for the substring C<gh> before checking for the substring C<de>. The
1440optimizer may also use the knowledge that the match starts (at the
1441C<first> I<id>) with a character class, and the match cannot be
1442shorter than 7 chars.
1443
1444The fields of interest which may appear in the last line are
1445
1446=over
1447
1448=item C<anchored> I<STRING> C<at> I<POS>
1449
1450=item C<floating> I<STRING> C<at> I<POS1..POS2>
1451
1452see above;
1453
1454=item C<matching floating/anchored>
1455
1456which substring to check first;
1457
1458=item C<minlen>
1459
1460the minimal length of the match;
1461
1462=item C<stclass> I<TYPE>
1463
1464The type of the first matching node.
1465
1466=item C<noscan>
1467
1468which advises to not scan for the found substrings;
1469
1470=item C<isall>
1471
1472which says that the optimizer info is in fact all that the regular
1473expression contains (thus one does not need to enter the RE engine at
1474all);
1475
1476=item C<GPOS>
1477
1478if the pattern contains C<\G>;
1479
1480=item C<plus>
1481
1482if the pattern starts with a repeated char (as in C<x+y>);
1483
1484=item C<implicit>
1485
1486if the pattern starts with C<.*>;
1487
1488=item C<with eval>
1489
1490if the pattern contain eval-groups (see L<perlre/(?{ code })>);
1491
1492=item C<anchored(TYPE)>
1493
1494if the pattern may
1495match only at a handful of places (with C<TYPE> being
1496C<BOL>, C<MBOL>, or C<GPOS>, see the table below).
1497
1498=back
1499
1500If a substring is known to match at end-of-line only, it may be
1501followed by C<$>, as in C<floating `k'$>.
1502
1503The optimizer-specific info is used to avoid entering (a slow) RE
1504engine on strings which will definitely not match. If C<isall> flag
1505is set, a call to the RE engine may be avoided even when optimizer
1506found an appropriate place for the match.
1507
1508The rest of the output contains the list of I<nodes> of the compiled
1509form of the RE. Each line has format
1510
1511C< >I<id>: I<TYPE> I<OPTIONAL-INFO> (I<next-id>)
1512
1513=head2 Types of nodes
1514
1515Here is the list of possible types with short descriptions:
1516
1517 # TYPE arg-description [num-args] [longjump-len] DESCRIPTION
1518
1519 # Exit points
1520 END no End of program.
1521 SUCCEED no Return from a subroutine, basically.
1522
1523 # Anchors:
1524 BOL no Match "" at beginning of line.
1525 MBOL no Same, assuming multiline.
1526 SBOL no Same, assuming singleline.
1527 EOS no Match "" at end of string.
1528 EOL no Match "" at end of line.
1529 MEOL no Same, assuming multiline.
1530 SEOL no Same, assuming singleline.
1531 BOUND no Match "" at any word boundary
1532 BOUNDL no Match "" at any word boundary
1533 NBOUND no Match "" at any word non-boundary
1534 NBOUNDL no Match "" at any word non-boundary
1535 GPOS no Matches where last m//g left off.
1536
1537 # [Special] alternatives
1538 ANY no Match any one character (except newline).
1539 SANY no Match any one character.
1540 ANYOF sv Match character in (or not in) this class.
1541 ALNUM no Match any alphanumeric character
1542 ALNUML no Match any alphanumeric char in locale
1543 NALNUM no Match any non-alphanumeric character
1544 NALNUML no Match any non-alphanumeric char in locale
1545 SPACE no Match any whitespace character
1546 SPACEL no Match any whitespace char in locale
1547 NSPACE no Match any non-whitespace character
1548 NSPACEL no Match any non-whitespace char in locale
1549 DIGIT no Match any numeric character
1550 NDIGIT no Match any non-numeric character
1551
1552 # BRANCH The set of branches constituting a single choice are hooked
1553 # together with their "next" pointers, since precedence prevents
1554 # anything being concatenated to any individual branch. The
1555 # "next" pointer of the last BRANCH in a choice points to the
1556 # thing following the whole choice. This is also where the
1557 # final "next" pointer of each individual branch points; each
1558 # branch starts with the operand node of a BRANCH node.
1559 #
1560 BRANCH node Match this alternative, or the next...
1561
1562 # BACK Normal "next" pointers all implicitly point forward; BACK
1563 # exists to make loop structures possible.
1564 # not used
1565 BACK no Match "", "next" ptr points backward.
1566
1567 # Literals
1568 EXACT sv Match this string (preceded by length).
1569 EXACTF sv Match this string, folded (prec. by length).
1570 EXACTFL sv Match this string, folded in locale (w/len).
1571
1572 # Do nothing
1573 NOTHING no Match empty string.
1574 # A variant of above which delimits a group, thus stops optimizations
1575 TAIL no Match empty string. Can jump here from outside.
1576
1577 # STAR,PLUS '?', and complex '*' and '+', are implemented as circular
1578 # BRANCH structures using BACK. Simple cases (one character
1579 # per match) are implemented with STAR and PLUS for speed
1580 # and to minimize recursive plunges.
1581 #
1582 STAR node Match this (simple) thing 0 or more times.
1583 PLUS node Match this (simple) thing 1 or more times.
1584
1585 CURLY sv 2 Match this simple thing {n,m} times.
1586 CURLYN no 2 Match next-after-this simple thing
1587 # {n,m} times, set parenths.
1588 CURLYM no 2 Match this medium-complex thing {n,m} times.
1589 CURLYX sv 2 Match this complex thing {n,m} times.
1590
1591 # This terminator creates a loop structure for CURLYX
1592 WHILEM no Do curly processing and see if rest matches.
1593
1594 # OPEN,CLOSE,GROUPP ...are numbered at compile time.
1595 OPEN num 1 Mark this point in input as start of #n.
1596 CLOSE num 1 Analogous to OPEN.
1597
1598 REF num 1 Match some already matched string
1599 REFF num 1 Match already matched string, folded
1600 REFFL num 1 Match already matched string, folded in loc.
1601
1602 # grouping assertions
1603 IFMATCH off 1 2 Succeeds if the following matches.
1604 UNLESSM off 1 2 Fails if the following matches.
1605 SUSPEND off 1 1 "Independent" sub-RE.
1606 IFTHEN off 1 1 Switch, should be preceeded by switcher .
1607 GROUPP num 1 Whether the group matched.
1608
1609 # Support for long RE
1610 LONGJMP off 1 1 Jump far away.
1611 BRANCHJ off 1 1 BRANCH with long offset.
1612
1613 # The heavy worker
1614 EVAL evl 1 Execute some Perl code.
1615
1616 # Modifiers
1617 MINMOD no Next operator is not greedy.
1618 LOGICAL no Next opcode should set the flag only.
1619
1620 # This is not used yet
1621 RENUM off 1 1 Group with independently numbered parens.
1622
1623 # This is not really a node, but an optimized away piece of a "long" node.
1624 # To simplify debugging output, we mark it as if it were a node
1625 OPTIMIZED off Placeholder for dump.
1626
1627=head2 Run-time output
1628
1629First of all, when doing a match, one may get no run-time output even
1630if debugging is enabled. this means that the RE engine was never
1631entered, all of the job was done by the optimizer.
1632
1633If RE engine was entered, the output may look like this:
1634
1635 Matching `[bc]d(ef*g)+h[ij]k$' against `abcdefg__gh__'
1636 Setting an EVAL scope, savestack=3
1637 2 <ab> <cdefg__gh_> | 1: ANYOF
1638 3 <abc> <defg__gh_> | 11: EXACT <d>
1639 4 <abcd> <efg__gh_> | 13: CURLYX {1,32767}
1640 4 <abcd> <efg__gh_> | 26: WHILEM
1641 0 out of 1..32767 cc=effff31c
1642 4 <abcd> <efg__gh_> | 15: OPEN1
1643 4 <abcd> <efg__gh_> | 17: EXACT <e>
1644 5 <abcde> <fg__gh_> | 19: STAR
1645 EXACT <f> can match 1 times out of 32767...
1646 Setting an EVAL scope, savestack=3
1647 6 <bcdef> <g__gh__> | 22: EXACT <g>
1648 7 <bcdefg> <__gh__> | 24: CLOSE1
1649 7 <bcdefg> <__gh__> | 26: WHILEM
1650 1 out of 1..32767 cc=effff31c
1651 Setting an EVAL scope, savestack=12
1652 7 <bcdefg> <__gh__> | 15: OPEN1
1653 7 <bcdefg> <__gh__> | 17: EXACT <e>
1654 restoring \1 to 4(4)..7
1655 failed, try continuation...
1656 7 <bcdefg> <__gh__> | 27: NOTHING
1657 7 <bcdefg> <__gh__> | 28: EXACT <h>
1658 failed...
1659 failed...
1660
1661The most significant information in the output is about the particular I<node>
1662of the compiled RE which is currently being tested against the target string.
1663The format of these lines is
1664
1665C< >I<STRING-OFFSET> <I<PRE-STRING>> <I<POST-STRING>> |I<ID>: I<TYPE>
1666
1667The I<TYPE> info is indented with respect to the backtracking level.
1668Other incidental information appears interspersed within.
1669
a77df738 1670=cut