home *** CD-ROM | disk | FTP | other *** search
/ PC World 2004 November / PCWorld_2004-11_cd.bin / software / topware / activeperl / ActivePerl-5.8.4.810-MSWin32-x86.exe / ActivePerl-5.8.4.810 / Perl / bin / dprofpp.bat < prev    next >
DOS Batch File  |  2004-06-01  |  25KB  |  922 lines

  1. @rem = '--*-Perl-*--
  2. @echo off
  3. if "%OS%" == "Windows_NT" goto WinNT
  4. perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
  5. goto endofperl
  6. :WinNT
  7. perl -x -S %0 %*
  8. if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl
  9. if %errorlevel% == 9009 echo You do not have Perl in your PATH.
  10. if errorlevel 1 goto script_failed_so_exit_with_non_zero_val 2>nul
  11. goto endofperl
  12. @rem ';
  13. #!perl
  14. #line 15
  15.     eval 'exec perl -S $0 "$@"'
  16.     if 0;
  17.  
  18. require 5.003;
  19.  
  20. my $VERSION = '20030813.00';
  21. my $stty    = undef;
  22.  
  23. =head1 NAME
  24.  
  25. dprofpp - display perl profile data
  26.  
  27. =head1 SYNOPSIS
  28.  
  29. dprofpp [B<-a>|B<-z>|B<-l>|B<-v>|B<-U>] [B<-d>] [B<-s>|B<-r>|B<-u>] [B<-q>] [B<-F>] [B<-I|-E>] [B<-O cnt>] [B<-A>] [B<-R>] [B<-S>] [B<-g subroutine>] [B<-G> <regexp> [B<-P>]] [B<-f> <regexp>] [profile]
  30.   
  31. dprofpp B<-T> [B<-F>] [B<-g subroutine>] [profile]
  32.  
  33. dprofpp B<-t> [B<-F>] [B<-g subroutine>] [profile]
  34.  
  35. dprofpp B<-G> <regexp> [B<-P>] [profile]
  36.  
  37. dprofpp B<-p script> [B<-Q>] [other opts]
  38.  
  39. dprofpp B<-V> [profile]
  40.  
  41. =head1 DESCRIPTION
  42.  
  43. The I<dprofpp> command interprets profile data produced by a profiler, such
  44. as the Devel::DProf profiler.  Dprofpp will read the file F<tmon.out> and
  45. will display the 15 subroutines which are using the most time.  By default
  46. the times for each subroutine are given exclusive of the times of their
  47. child subroutines.
  48.  
  49. To profile a Perl script run the perl interpreter with the B<-d> switch.  So
  50. to profile script F<test.pl> with Devel::DProf the following command should
  51. be used.
  52.  
  53.     $ perl5 -d:DProf test.pl
  54.  
  55. Then run dprofpp to analyze the profile.  The output of dprofpp depends
  56. on the flags to the program and the version of Perl you're using.
  57.  
  58.     $ dprofpp -u
  59.     Total Elapsed Time =    1.67 Seconds
  60.          User Time =    0.61 Seconds
  61.     Exclusive Times
  62.     %Time Seconds     #Calls sec/call Name
  63.      52.4   0.320          2   0.1600 main::foo
  64.      45.9   0.280        200   0.0014 main::bar
  65.      0.00   0.000          1   0.0000 DynaLoader::import
  66.      0.00   0.000          1   0.0000 main::baz
  67.  
  68. The dprofpp tool can also run the profiler before analyzing the profile
  69. data.  The above two commands can be executed with one dprofpp command.
  70.  
  71.     $ dprofpp -u -p test.pl
  72.  
  73. Consult L<Devel::DProf/"PROFILE FORMAT"> for a description of the raw profile.
  74.  
  75. =head1 OUTPUT
  76.  
  77. Columns are:
  78.  
  79. =over 4
  80.  
  81. =item %Time
  82.  
  83. Percentage of time spent in this routine.
  84.  
  85. =item #Calls
  86.  
  87. Number of calls to this routine.
  88.  
  89. =item sec/call
  90.  
  91. Average number of seconds per call to this routine.
  92.  
  93. =item Name
  94.  
  95. Name of routine.
  96.  
  97. =item CumulS
  98.  
  99. Time (in seconds) spent in this routine and routines called from it.
  100.  
  101. =item ExclSec
  102.  
  103. Time (in seconds) spent in this routine (not including those called
  104. from it).
  105.  
  106. =item Csec/c
  107.  
  108. Average time (in seconds) spent in each call of this routine
  109. (including those called from it).
  110.  
  111. =back
  112.  
  113. =head1 OPTIONS
  114.  
  115. =over 5
  116.  
  117. =item B<-a>
  118.  
  119. Sort alphabetically by subroutine names.
  120.  
  121. =item B<-d>
  122.  
  123. Reverse whatever sort is used
  124.  
  125. =item B<-A>
  126.  
  127. Count timing for autoloaded subroutine as timing for C<*::AUTOLOAD>.
  128. Otherwise the time to autoload it is counted as time of the subroutine
  129. itself (there is no way to separate autoload time from run time).
  130.  
  131. This is going to be irrelevant with newer Perls.  They will inform
  132. C<Devel::DProf> I<when> the C<AUTOLOAD> switches to actual subroutine,
  133. so a separate statistics for C<AUTOLOAD> will be collected no matter
  134. whether this option is set.
  135.  
  136. =item B<-R>
  137.  
  138. Count anonymous subroutines defined in the same package separately.
  139.  
  140. =item B<-E>
  141.  
  142. (default)  Display all subroutine times exclusive of child subroutine times.
  143.  
  144. =item B<-F>
  145.  
  146. Force the generation of fake exit timestamps if dprofpp reports that the
  147. profile is garbled.  This is only useful if dprofpp determines that the
  148. profile is garbled due to missing exit timestamps.  You're on your own if
  149. you do this.  Consult the BUGS section.
  150.  
  151. =item B<-I>
  152.  
  153. Display all subroutine times inclusive of child subroutine times.
  154.  
  155. =item B<-l>
  156.  
  157. Sort by number of calls to the subroutines.  This may help identify
  158. candidates for inlining.
  159.  
  160. =item B<-O cnt>
  161.  
  162. Show only I<cnt> subroutines.  The default is 15.
  163.  
  164. =item B<-p script>
  165.  
  166. Tells dprofpp that it should profile the given script and then interpret its
  167. profile data.  See B<-Q>.
  168.  
  169. =item B<-Q>
  170.  
  171. Used with B<-p> to tell dprofpp to quit after profiling the script, without
  172. interpreting the data.
  173.  
  174. =item B<-q>
  175.  
  176. Do not display column headers.
  177.  
  178. =item B<-r>
  179.  
  180. Display elapsed real times rather than user+system times.
  181.  
  182. =item B<-s>
  183.  
  184. Display system times rather than user+system times.
  185.  
  186. =item B<-T>
  187.  
  188. Display subroutine call tree to stdout.  Subroutine statistics are
  189. not displayed.
  190.  
  191. =item B<-t>
  192.  
  193. Display subroutine call tree to stdout.  Subroutine statistics are not
  194. displayed.  When a function is called multiple consecutive times at the same
  195. calling level then it is displayed once with a repeat count.
  196.  
  197. =item B<-S>
  198.  
  199. Display I<merged> subroutine call tree to stdout.  Statistics are
  200. displayed for each branch of the tree.  
  201.  
  202. When a function is called multiple (I<not necessarily consecutive>)
  203. times in the same branch then all these calls go into one branch of
  204. the next level.  A repeat count is output together with combined
  205. inclusive, exclusive and kids time.
  206.  
  207. Branches are sorted w.r.t. inclusive time.
  208.  
  209. =item B<-U>
  210.  
  211. Do not sort.  Display in the order found in the raw profile.
  212.  
  213. =item B<-u>
  214.  
  215. Display user times rather than user+system times.
  216.  
  217. =item B<-V>
  218.  
  219. Print dprofpp's version number and exit.  If a raw profile is found then its
  220. XS_VERSION variable will be displayed, too.
  221.  
  222. =item B<-v>
  223.  
  224. Sort by average time spent in subroutines during each call.  This may help
  225. identify candidates for inlining. 
  226.  
  227. =item B<-z>
  228.  
  229. (default) Sort by amount of user+system time used.  The first few lines
  230. should show you which subroutines are using the most time.
  231.  
  232. =item B<-g> C<subroutine>
  233.  
  234. Ignore subroutines except C<subroutine> and whatever is called from it.
  235.  
  236. =item B<-G> <regexp>
  237.  
  238. Aggregate "Group" all calls matching the pattern together.
  239. For example this can be used to group all calls of a set of packages
  240.  
  241.   -G "(package1::)|(package2::)|(package3::)"
  242.  
  243. or to group subroutines by name:
  244.  
  245.   -G "getNum"
  246.  
  247. =item B<-P>
  248.  
  249. Used with -G to aggregate "Pull"  together all calls that did not match -G.
  250.  
  251. =item B<-f> <regexp>
  252.  
  253. Filter all calls matching the pattern.
  254.  
  255. =back
  256.  
  257. =head1 ENVIRONMENT
  258.  
  259. The environment variable B<DPROFPP_OPTS> can be set to a string containing
  260. options for dprofpp.  You might use this if you prefer B<-I> over B<-E> or
  261. if you want B<-F> on all the time.
  262.  
  263. This was added fairly lazily, so there are some undesirable side effects.
  264. Options on the commandline should override options in DPROFPP_OPTS--but
  265. don't count on that in this version.
  266.  
  267. =head1 BUGS
  268.  
  269. Applications which call _exit() or exec() from within a subroutine
  270. will leave an incomplete profile.  See the B<-F> option.
  271.  
  272. Any bugs in Devel::DProf, or any profiler generating the profile data, could
  273. be visible here.  See L<Devel::DProf/BUGS>.
  274.  
  275. Mail bug reports and feature requests to the perl5-porters mailing list at
  276. F<E<lt>perl5-porters@perl.orgE<gt>>.  Bug reports should include the
  277. output of the B<-V> option.
  278.  
  279. =head1 FILES
  280.  
  281.     dprofpp        - profile processor
  282.     tmon.out    - raw profile
  283.  
  284. =head1 SEE ALSO
  285.  
  286. L<perl>, L<Devel::DProf>, times(2)
  287.  
  288. =cut
  289.  
  290. use Getopt::Std 'getopts';
  291. use Config '%Config';
  292.  
  293. Setup: {
  294.     my $options = 'O:g:G:Pf:dlzaAvuTtqrRsUFEIp:QVS';
  295.  
  296.     $Monfile = 'tmon.out';
  297.     if( exists $ENV{DPROFPP_OPTS} ){
  298.         my @tmpargv = @ARGV;
  299.         @ARGV = split( ' ', $ENV{DPROFPP_OPTS} );
  300.         getopts( $options );
  301.         if( @ARGV ){
  302.             # there was a filename.
  303.             $Monfile = shift;
  304.         }
  305.         @ARGV = @tmpargv;
  306.     }
  307.  
  308.     getopts( $options );
  309.     if( @ARGV ){
  310.         # there was a filename, it overrides any earlier name.
  311.         $Monfile = shift;
  312.     }
  313.  
  314. # -O cnt    Specifies maximum number of subroutines to display.
  315. # -a        Sort by alphabetic name of subroutines.
  316. # -z        Sort by user+system time spent in subroutines. (default)
  317. # -l        Sort by number of calls to subroutines.
  318. # -v        Sort by average amount of time spent in subroutines.
  319. # -T        Show call tree.
  320. # -t        Show call tree, compressed.
  321. # -q        Do not print column headers.
  322. # -u        Use user time rather than user+system time.
  323. # -s        Use system time rather than user+system time.
  324. # -r        Use real elapsed time rather than user+system time.
  325. # -U        Do not sort subroutines.
  326. # -E        Sub times are reported exclusive of child times. (default)
  327. # -I        Sub times are reported inclusive of child times.
  328. # -V        Print dprofpp's version.
  329. # -p script    Specifies name of script to be profiled.
  330. # -Q        Used with -p to indicate the dprofpp should quit after
  331. #        profiling the script, without interpreting the data.
  332. # -A        count autoloaded to *AUTOLOAD
  333. # -R        count anonyms separately even if from the same package
  334. # -g subr    count only those who are SUBR or called from SUBR
  335. # -S        Create statistics for all the depths
  336.  
  337. # -G        Group all calls matching the pattern together.
  338. # -P        Used with -G to pull all other calls together.
  339. # -f        Filter all calls mathcing the pattern.
  340. # -d        Reverse sort
  341.  
  342.     if( defined $opt_V ){
  343.         my $fh = 'main::fh';
  344.         print "$0 version: $VERSION\n";
  345.         open( $fh, "<$Monfile" ) && do {
  346.             local $XS_VERSION = 'early';
  347.             header($fh);
  348.             close( $fh );
  349.             print "XS_VERSION: $XS_VERSION\n";
  350.         };
  351.         exit(0);
  352.     }
  353.     $cnt = $opt_O || 15;
  354.     $sort = 'by_time';
  355.     $sort = 'by_ctime' if defined $opt_I;
  356.     $sort = 'by_calls' if defined $opt_l;
  357.     $sort = 'by_alpha' if defined $opt_a;
  358.     $sort = 'by_avgcpu' if defined $opt_v;
  359.     
  360.     if(defined $opt_d){
  361.         $sort = "r".$sort;
  362.     }
  363.     $incl_excl = 'Exclusive';
  364.     $incl_excl = 'Inclusive' if defined $opt_I;
  365.     $whichtime = 'User+System';
  366.     $whichtime = 'System' if defined $opt_s;
  367.     $whichtime = 'Real' if defined $opt_r;
  368.     $whichtime = 'User' if defined $opt_u;
  369.  
  370.     if( defined $opt_p ){
  371.         my $prof = 'DProf';
  372.         my $startperl = $Config{'startperl'};
  373.  
  374.         $startperl =~ s/^#!//; # remove shebang
  375.         run_profiler( $opt_p, $prof, $startperl );
  376.         $Monfile = 'tmon.out';  # because that's where it is
  377.         exit(0) if defined $opt_Q;
  378.     }
  379.     elsif( defined $opt_Q ){
  380.         die "-Q is meaningful only when used with -p\n";
  381.     }
  382. }
  383.  
  384. Main: {
  385.     my $monout = $Monfile;
  386.     my $fh = 'main::fh';
  387.     local $names = {};
  388.     local $times = {};   # times in hz
  389.     local $ctimes = {};  # Cumulative times in hz
  390.     local $calls = {};
  391.     local $persecs = {}; # times in seconds
  392.     local $idkeys = [];
  393.     local $runtime; # runtime in seconds
  394.     my @a = ();
  395.     my $a;
  396.     local $rrun_utime = 0;    # user time in hz
  397.     local $rrun_stime = 0;    # system time in hz
  398.     local $rrun_rtime = 0;    # elapsed run time in hz
  399.     local $rrun_ustime = 0;    # user+system time in hz
  400.     local $hz = 0;
  401.     local $deep_times = {count => 0 , kids => {}, incl_time => 0};
  402.     local $time_precision = 2;
  403.     local $overhead = 0;
  404.  
  405.     open( $fh, "<$monout" ) || die "Unable to open $monout\n";
  406.  
  407.     header($fh);
  408.  
  409.     $rrun_ustime = $rrun_utime + $rrun_stime;
  410.  
  411.     $~ = 'STAT';
  412.     if( ! $opt_q ){
  413.         $^ = 'CSTAT_top';
  414.     }
  415.  
  416.     parsestack( $fh, $names, $calls, $times, $ctimes, $idkeys );
  417.  
  418.     #filter calls
  419.     if( $opt_f ){
  420.         for(my $i = 0;$i < @$idkeys - 2;){
  421.             $key = $$idkeys[$i];
  422.             if($key =~ /$opt_f/){
  423.                 splice(@$idkeys, $i, 1);
  424.                 $runtime -= $$times{$key};
  425.                 next;
  426.             }
  427.             $i++;
  428.         }
  429.     }
  430.  
  431.     if( $opt_G ){
  432.         group($names, $calls, $times, $ctimes, $idkeys );
  433.     }
  434.  
  435.     settime( \$runtime, $hz ) unless $opt_g;
  436.  
  437.     exit(0) if $opt_T || $opt_t;
  438.  
  439.     if( $opt_v ){
  440.         percalc( $calls, ($opt_I ? $ctimes : $times), $persecs, $idkeys );
  441.     }
  442.     if( ! $opt_U ){
  443.         @a = sort $sort @$idkeys;
  444.         $a = \@a;
  445.     }
  446.     else {
  447.         $a = $idkeys;
  448.     }
  449.     display( $runtime, $hz, $names, $calls, $times, $ctimes, $cnt, $a,
  450.          $deep_times);
  451. }
  452.  
  453. sub group{
  454.     my ($names, $calls, $times, $ctimes, $idkeys ) = @_;
  455.         print "Option G Grouping: [$opt_G]\n";
  456.         # create entries to store grouping
  457.         $$names{$opt_G} = $opt_G;
  458.         $$calls{$opt_G} = 0;
  459.         $$times{$opt_G} = 0;
  460.         $$ctimes{$opt_G} = 0;
  461.         $$idkeys[@$idkeys] = $opt_G;
  462.         # Sum calls for the grouping
  463.  
  464.         my $other = "other";
  465.         if($opt_P){
  466.             $$names{$other} = $other;
  467.             $$calls{$other} = 0;
  468.             $$times{$other} = 0;
  469.             $$ctimes{$other} = 0;
  470.             $$idkeys[@$idkeys] = $other;
  471.         }
  472.  
  473.         for(my $i = 0;$i < @$idkeys - 2;){
  474.             $key = $$idkeys[$i];
  475.             if($key =~ /$opt_G/){
  476.                 $$calls{$opt_G} += $$calls{$key};
  477.                 $$times{$opt_G} += $$times{$key};
  478.                 $$ctimes{$opt_G} += $$ctimes{$key};
  479.                 splice(@$idkeys, $i, 1);
  480.                 next;
  481.             }else{
  482.                 if($opt_P){
  483.                     $$calls{$other} += $$calls{$key};
  484.                     $$times{$other} += $$times{$key};
  485.                     $$ctimes{$other} += $$ctimes{$key};
  486.                     splice(@$idkeys, $i, 1);
  487.                     next;
  488.                 }
  489.             }
  490.             $i++;
  491.         }
  492.         print "Grouping [$opt_G] Calls: [$$calls{$opt_G}]\n".
  493.               "Grouping [$opt_G] Times: [$$times{$opt_G}]\n".
  494.               "Grouping [$opt_G] IncTimes: [$$ctimes{$opt_G}]\n";
  495. }
  496.  
  497. # Sets $runtime to user, system, real, or user+system time.  The
  498. # result is given in seconds.
  499. #
  500. sub settime {
  501.   my( $runtime, $hz ) = @_;
  502.  
  503.   $hz ||= 1;
  504.   
  505.   if( $opt_r ){
  506.     $$runtime = ($rrun_rtime - $overhead)/$hz;
  507.   }
  508.   elsif( $opt_s ){
  509.     $$runtime = ($rrun_stime - $overhead)/$hz;
  510.   }
  511.   elsif( $opt_u ){
  512.     $$runtime = ($rrun_utime - $overhead)/$hz;
  513.   }
  514.   else{
  515.     $$runtime = ($rrun_ustime - $overhead)/$hz;
  516.   }
  517.   $$runtime = 0 unless $$runtime > 0;
  518. }
  519.  
  520. sub exclusives_in_tree {
  521.   my( $deep_times ) = @_;
  522.   my $kids_time = 0;
  523.   my $kid;
  524.   # When summing, take into account non-rounded-up kids time.
  525.   for $kid (keys %{$deep_times->{kids}}) {
  526.     $kids_time += $deep_times->{kids}{$kid}{incl_time};
  527.   }
  528.   $kids_time = 0 unless $kids_time >= 0;
  529.   $deep_times->{excl_time} = $deep_times->{incl_time} - $kids_time;
  530.   $deep_times->{excl_time} = 0 unless $deep_times->{excl_time} >= 0;
  531.   for $kid (keys %{$deep_times->{kids}}) {
  532.     exclusives_in_tree($deep_times->{kids}{$kid});
  533.   }
  534.   $deep_times->{incl_time} = 0 unless $deep_times->{incl_time} >= 0;
  535.   $deep_times->{kids_time} = $kids_time;
  536. }
  537.  
  538. sub kids_by_incl { $kids{$b}{incl_time} <=> $kids{$a}{excl_time} 
  539.            or $a cmp $b }
  540.  
  541. sub display_tree {
  542.   my( $deep_times, $name, $level ) = @_;
  543.   exclusives_in_tree($deep_times);
  544.   
  545.   my $kid;
  546.  
  547.   my $time;
  548.   if (%{$deep_times->{kids}}) {
  549.     $time = sprintf '%.*fs = (%.*f + %.*f)', 
  550.       $time_precision, $deep_times->{incl_time}/$hz,
  551.         $time_precision, $deep_times->{excl_time}/$hz,
  552.           $time_precision, $deep_times->{kids_time}/$hz;
  553.   } else {
  554.     $time = sprintf '%.*f', $time_precision, $deep_times->{incl_time}/$hz;
  555.   }
  556.   print ' ' x (2*$level), "$name x $deep_times->{count}  \t${time}s\n"
  557.     if $deep_times->{count};
  558.  
  559.   for $kid (sort kids_by_incl %{$deep_times->{kids}}) {
  560.     display_tree( $deep_times->{kids}{$kid}, $kid, $level + 1 );
  561.   }  
  562. }
  563.  
  564. # Report the times in seconds.
  565. sub display {
  566.     my( $runtime, $hz, $names, $calls, $times, $ctimes, $cnt, 
  567.         $idkeys, $deep_times ) = @_;
  568.     my( $x, $key, $s, $cs );
  569.     #format: $ncalls, $name, $secs, $percall, $pcnt
  570.  
  571.     if ($opt_S) {
  572.       display_tree( $deep_times, 'toplevel', -1 )
  573.     } else {
  574.       for( $x = 0; $x < @$idkeys; ++$x ){
  575.         $key = $idkeys->[$x];
  576.         $ncalls = $calls->{$key};
  577.         $name = $names->{$key};
  578.         $s = $times->{$key}/$hz;
  579.         $secs = sprintf("%.3f", $s );
  580.         $cs = $ctimes->{$key}/$hz;
  581.         $csecs = sprintf("%.3f", $cs );
  582.         $percall = sprintf("%.4f", $s/$ncalls );
  583.         $cpercall = sprintf("%.4f", $cs/$ncalls );
  584.         $pcnt = sprintf("%.2f",
  585.                 $runtime? ((($opt_I ? $csecs : $secs) / $runtime) * 100.0): 0 );
  586.         write;
  587.         $pcnt = $secs = $ncalls = $percall = "";
  588.         write while( length $name );
  589.         last unless --$cnt;
  590.       }      
  591.     }
  592. }
  593.  
  594. sub move_keys {
  595.   my ($source, $dest) = @_;
  596.  
  597.   for my $kid_name (keys %$source) {
  598.     my $source_kid = delete $source->{$kid_name};
  599.  
  600.     if (my $dest_kid = $dest->{$kid_name}) {
  601.       $dest_kid->{count} += $source_kid->{count};
  602.       $dest_kid->{incl_time} += $source_kid->{incl_time};
  603.       move_keys($source_kid->{kids},$dest_kid->{kids});
  604.     } else {
  605.       $dest->{$kid_name} = $source_kid;
  606.     }
  607.   }
  608. }
  609.  
  610. sub add_to_tree {
  611.   my ($curdeep_times, $name, $t) = @_;
  612.   if ($name ne $curdeep_times->[-1]{name} and $opt_A) {
  613.     $name = $curdeep_times->[-1]{name};
  614.   }
  615.   die "Shorted?!" unless @$curdeep_times >= 2;
  616.   my $entry = $curdeep_times->[-2]{kids}{$name} ||= {
  617.     count => 0,
  618.     kids => {}, 
  619.     incl_time => 0,
  620.   };
  621.   # Now transfer to the new node (could not do earlier, since name can change)
  622.   $entry->{count}++;
  623.   $entry->{incl_time} += $t - $curdeep_times->[-1]{enter_stamp};
  624.   # Merge the kids?
  625.   move_keys($curdeep_times->[-1]->{kids},$entry->{kids});
  626.   pop @$curdeep_times;
  627. }
  628.  
  629.  
  630. sub parsestack {
  631.     my( $fh, $names, $calls, $times, $ctimes, $idkeys ) = @_;
  632.     my( $dir, $name );
  633.     my( $t, $syst, $realt, $usert );
  634.     my( $x, $z, $c, $id, $pack );
  635.     my @stack = ();
  636.     my @tstack = ();
  637.     my %outer;
  638.     my $tab = 3;
  639.     my $in = 0;
  640.  
  641.     # remember last call depth and function name
  642.     my $l_in = $in;
  643.     my $l_name = '';
  644.     my $repcnt = 0;
  645.     my $repstr = '';
  646.     my $dprof_stamp;
  647.     my %cv_hash;
  648.     my $in_level = not defined $opt_g; # Level deep in report grouping
  649.     my $curdeep_times = [$deep_times];
  650.  
  651.     my $over_per_call;
  652.     if   ( $opt_u )    {    $over_per_call = $over_utime        }
  653.     elsif( $opt_s )    {    $over_per_call = $over_stime        }
  654.     elsif( $opt_r )    {    $over_per_call = $over_rtime        }
  655.     else        {    $over_per_call = $over_utime + $over_stime }
  656.     $over_per_call /= 2*$over_tests; # distribute over entry and exit
  657.  
  658.     while(<$fh>){
  659.         next if /^#/;
  660.         last if /^PART/;
  661.  
  662.         chop;
  663.         if (/^&/) {
  664.           ($dir, $id, $pack, $name) = split;
  665.           if ($opt_R and ($name =~ /(?:::)?(__ANON__|END)$/)) {
  666.             $name .= "($id)";
  667.           }
  668.           $cv_hash{$id} = "$pack\::$name";
  669.           next;
  670.         }
  671.         ($dir, $usert, $syst, $realt, $name) = split;
  672.  
  673.         my $ot = $t;
  674.         if ( $dir eq '/' ) {
  675.           $syst = $stack[-1][0];
  676.           $usert = '&';
  677.           $dir = '-';
  678.           #warn("Inserted exit for $stack[-1][0].\n")
  679.         }
  680.         if (defined $realt) { # '+ times nam' '- times nam' or '@ incr'
  681.           if   ( $opt_u )    {    $t = $usert        }
  682.           elsif( $opt_s )    {    $t = $syst        }
  683.           elsif( $opt_r )    {    $t = $realt        }
  684.           else            {    $t = $usert + $syst    }
  685.           $t += $ot, next if $dir eq '@'; # Increments there
  686.         } else {
  687.           # "- id" or "- & name"
  688.           $name = defined $syst ? $syst : $cv_hash{$usert};
  689.         }
  690.  
  691.         next unless $in_level or $name eq $opt_g;
  692.         if ( $dir eq '-' or $dir eq '*' ) {
  693.               my $ename = $dir eq '*' ? $stack[-1][0]  : $name;
  694.             $overhead += $over_per_call;
  695.               if ($name eq "Devel::DProf::write") {
  696.               $overhead += $t - $dprof_stamp;
  697.               next;
  698.               } elsif (defined $opt_g and $ename eq $opt_g) {
  699.               $in_level--;
  700.             }
  701.             add_to_tree($curdeep_times, $ename,
  702.                     $t - $overhead) if $opt_S;
  703.             exitstamp( \@stack, \@tstack, 
  704.                    $t - $overhead, 
  705.                    $times, $ctimes, $ename, \$in, $tab, 
  706.                    $curdeep_times, \%outer );
  707.         } 
  708.         next unless $in_level or $name eq $opt_g;
  709.         if( $dir eq '+' or $dir eq '*' ){
  710.               if ($name eq "Devel::DProf::write") {
  711.               $dprof_stamp = $t;
  712.               next;
  713.               } elsif (defined $opt_g and $name eq $opt_g) {
  714.               $in_level++;
  715.               }
  716.             $overhead += $over_per_call;
  717.             if( $opt_T ){
  718.                 print ' ' x $in, "$name\n";
  719.                 $in += $tab;
  720.             }
  721.             elsif( $opt_t ){
  722.                 # suppress output on same function if the
  723.                 # same calling level is called.
  724.                 if ($l_in == $in and $l_name eq $name) {
  725.                     $repcnt++;
  726.                 } else {
  727.                     $repstr = ' ('.++$repcnt.'x)'
  728.                          if $repcnt;
  729.                     print ' ' x $l_in, "$l_name$repstr\n"
  730.                         if $l_name ne '';
  731.                     $repstr = '';
  732.                     $repcnt = 0;
  733.                     $l_in = $in;
  734.                     $l_name = $name;
  735.                 }
  736.                 $in += $tab;
  737.             }
  738.             if( ! defined $names->{$name} ){
  739.                 $names->{$name} = $name;
  740.                 $times->{$name} = 0;
  741.                 $ctimes->{$name} = 0;
  742.                 push( @$idkeys, $name );
  743.             }
  744.             $calls->{$name}++;
  745.                         $outer{$name}++;
  746.             push @$curdeep_times, { kids => {}, 
  747.                         name => $name, 
  748.                         enter_stamp => $t - $overhead,
  749.                           } if $opt_S;
  750.             $x = [ $name, $t - $overhead ];
  751.             push( @stack, $x );
  752.  
  753.             # my children will put their time here
  754.             push( @tstack, 0 );
  755.         } elsif ($dir ne '-'){
  756.             die "Bad profile: $_";
  757.             }
  758.     }
  759.     if( $opt_t ){
  760.         $repstr = ' ('.++$repcnt.'x)' if $repcnt;
  761.         print ' ' x $l_in, "$l_name$repstr\n";
  762.     }
  763.  
  764.         while (my ($key, $count) = each %outer) {
  765.             next unless $count;
  766.             warn "$key has $count unstacked calls in outer\n";
  767.         }
  768.  
  769.     if( @stack ){
  770.         if( ! $opt_F ){
  771.             warn "Garbled profile is missing some exit time stamps:\n";
  772.             foreach $x (@stack) {
  773.                 print $x->[0],"\n";
  774.             }
  775.             die "Try rerunning dprofpp with -F.\n";
  776.             # I don't want -F to be default behavior--yet
  777.             #  9/18/95 dmr
  778.         }
  779.         else{
  780.             warn( "Faking " . scalar( @stack ) . " exit timestamp(s).\n");
  781.             foreach $x ( reverse @stack ){
  782.                 $name = $x->[0];
  783.                 exitstamp( \@stack, \@tstack, 
  784.                        $t - $overhead, $times, 
  785.                        $ctimes, $name, \$in, $tab, 
  786.                        $curdeep_times, \%outer );
  787.                 add_to_tree($curdeep_times, $name,
  788.                         $t - $overhead)
  789.                   if $opt_S;
  790.             }
  791.         }
  792.     }
  793.     if (defined $opt_g) {
  794.       $runtime = $ctimes->{$opt_g}/$hz;
  795.       $runtime = 0 unless $runtime > 0;
  796.     }
  797. }
  798.  
  799. sub exitstamp {
  800.     my($stack, $tstack, $t, $times, $ctimes, $name, $in, $tab, $deep, $outer) = @_;
  801.     my( $x, $c, $z );
  802.  
  803.     $x = pop( @$stack );
  804.     if( ! defined $x ){
  805.         die "Garbled profile, missing an enter time stamp";
  806.     }
  807.     if( $x->[0] ne $name and $opt_G and ($name =~ /$opt_G/)){
  808.       if ($x->[0] =~ /(?:::)?AUTOLOAD$/) {
  809.         if ($opt_A) {
  810.           $name = $x->[0];
  811.         }
  812.       } elsif ( $opt_F ) {
  813.         warn( "Garbled profile, faking exit timestamp:\n\t$name => $x->[0].\n");
  814.         $name = $x->[0];
  815.       } else {
  816.         foreach $z (@stack, $x) {
  817.           print $z->[0],"\n";
  818.         }
  819.         die "Garbled profile, unexpected exit time stamp";
  820.       }
  821.     }
  822.     if( $opt_T || $opt_t ){
  823.         $$in -= $tab;
  824.     }
  825.     # collect childtime
  826.     $c = pop( @$tstack );
  827.     # total time this func has been active
  828.     $z = $t - $x->[1];
  829.     $ctimes->{$name} += $z
  830.             unless --$outer->{$name};
  831.     $times->{$name} += $z - $c;
  832.     # pass my time to my parent
  833.     if( @$tstack ){
  834.         $c = pop( @$tstack );
  835.         push( @$tstack, $c + $z );
  836.     }
  837. }
  838.  
  839.  
  840. sub header {
  841.     my $fh = shift;
  842.     chop($_ = <$fh>);
  843.     if( ! /^#fOrTyTwO$/ ){
  844.         die "Not a perl profile";
  845.     }
  846.     while(<$fh>){
  847.         next if /^#/;
  848.         last if /^PART/;
  849.         eval;
  850.     }
  851.     $over_tests = 1 unless $over_tests;
  852.     $time_precision = length int ($hz - 1);    # log ;-)
  853. }
  854.  
  855.  
  856. # Report avg time-per-function in seconds
  857. sub percalc {
  858.     my( $calls, $times, $persecs, $idkeys ) = @_;
  859.     my( $x, $t, $n, $key );
  860.  
  861.     for( $x = 0; $x < @$idkeys; ++$x ){
  862.         $key = $idkeys->[$x];
  863.         $n = $calls->{$key};
  864.         $t = $times->{$key} / $hz;
  865.         $persecs->{$key} = $t ? $t / $n : 0;
  866.     }
  867. }
  868.  
  869.  
  870. # Runs the given script with the given profiler and the given perl.
  871. sub run_profiler {
  872.     my $script = shift;
  873.     my $profiler = shift;
  874.     my $startperl = shift;
  875.     my @script_parts = split /\s+/, $script;
  876.  
  877.     system $startperl, "-d:$profiler", @script_parts;
  878.     if( $? / 256 > 0 ){
  879.         my $cmd = join ' ', @script_parts;
  880.         die "Failed: $startperl -d:$profiler $cmd: $!";
  881.     }
  882. }
  883.  
  884.  
  885. sub by_time { $times->{$b} <=> $times->{$a} }
  886. sub by_ctime { $ctimes->{$b} <=> $ctimes->{$a} }
  887. sub by_calls { $calls->{$b} <=> $calls->{$a} }
  888. sub by_alpha { $names->{$a} cmp $names->{$b} }
  889. sub by_avgcpu { $persecs->{$b} <=> $persecs->{$a} }
  890. # Reversed
  891. sub rby_time { $times->{$a} <=> $times->{$b} }
  892. sub rby_ctime { $ctimes->{$a} <=> $ctimes->{$b} }
  893. sub rby_calls { $calls->{$a} <=> $calls->{$b} }
  894. sub rby_alpha { $names->{$b} cmp $names->{$a} }
  895. sub rby_avgcpu { $persecs->{$a} <=> $persecs->{$b} }
  896.  
  897.  
  898. format CSTAT_top =
  899. Total Elapsed Time = @>>>>>>> Seconds
  900. (($rrun_rtime - $overhead) / $hz)
  901.   @>>>>>>>>>> Time = @>>>>>>> Seconds
  902. $whichtime, $runtime
  903. @<<<<<<<< Times
  904. $incl_excl
  905. %Time ExclSec CumulS #Calls sec/call Csec/c  Name
  906. .
  907.  
  908. BEGIN {
  909.     my $fmt = ' ^>>>   ^>>>> ^>>>>> ^>>>>>   ^>>>>> ^>>>>>  ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<';
  910.     if (-t STDOUT and defined $stty and my ($cols) = `$stty -a` =~ /\bcolumns\s+(\d+)/)
  911.     {
  912.     $fmt .= '<' x ($cols - length $fmt) if $cols > 80;
  913.     }
  914.  
  915.     eval "format STAT = \n$fmt" . '
  916. $pcnt, $secs, $csecs, $ncalls, $percall, $cpercall, $name
  917. .';
  918. }
  919.  
  920. __END__
  921. :endofperl
  922.