home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / dprofpp < prev    next >
Text File  |  2003-11-07  |  23KB  |  906 lines

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