Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1661 lines
54 KiB

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