/usr/share/perl5/Devel/GraphVizProf.pm is in libgraphviz-perl 2.16-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 | package Devel::GraphVizProf; # To help the CPAN indexer to identify us
our $VERSION = '2.16';
package DB;
use Time::HiRes 'time';
use strict;
BEGIN {
$DB::drop_zeros = 0;
$DB::profile = 1;
if (-e '.smallprof') {
do '.smallprof';
}
$DB::prevf = '';
$DB::prevl = 0;
my($diff,$cdiff);
my($testDB) = sub {
my($pkg,$filename,$line) = caller;
$DB::profile || return;
%DB::packages && !$DB::packages{$pkg} && return;
};
# "Null time" compensation code
$DB::nulltime = 0;
for (1..100) {
my($u,$s,$cu,$cs) = times;
$DB::cstart = $u+$s+$cu+$cs;
$DB::start = time;
&$testDB;
($u,$s,$cu,$cs) = times;
$DB::cdone = $u+$s+$cu+$cs;
$DB::done = time;
$diff = $DB::done - $DB::start;
$DB::nulltime += $diff;
}
$DB::nulltime /= 100;
my($u,$s,$cu,$cs) = times;
$DB::cstart = $u+$s+$cu+$cs;
$DB::start = time;
}
sub DB {
my($pkg,$filename,$line) = caller;
$DB::profile || return;
%DB::packages && !$DB::packages{$pkg} && return;
my($u,$s,$cu,$cs) = times;
$DB::cdone = $u+$s+$cu+$cs;
$DB::done = time;
# Now save the _< array for later reference. If we don't do this here,
# evals which do not define subroutines will disappear.
no strict 'refs';
$DB::listings{$filename} = \@{"main::_<$filename"} if
defined(@{"main::_<$filename"});
use strict 'refs';
# warn $DB::prevl . " -> " . $line . "\n";
# $DB::calls{$DB::prevf}->{$DB::prevl}->{$filename}->{$line}++;
$DB::calls{$filename}->{$line}->{$DB::prevf}->{$DB::prevl}++;
my($delta);
$delta = $DB::done - $DB::start;
$delta = ($delta > $DB::nulltime) ? $delta - $DB::nulltime : 0;
$DB::profiles{$filename}->[$line]++;
$DB::times{$DB::prevf}->[$DB::prevl] += $delta;
$DB::ctimes{$DB::prevf}->[$DB::prevl] += ($DB::cdone - $DB::cstart);
($DB::prevf, $DB::prevl) = ($filename, $line);
($u,$s,$cu,$cs) = times;
$DB::cstart = $u+$s+$cu+$cs;
$DB::start = time;
}
END {
# Get time on last line executed.
my($u,$s,$cu,$cs) = times;
$DB::cdone = $u+$s+$cu+$cs;
$DB::done = time;
my($delta);
$delta = $DB::done - $DB::start;
$delta = ($delta > $DB::nulltime) ? $delta - $DB::nulltime : 0;
$DB::times{$DB::prevf}->[$DB::prevl] += $delta;
$DB::ctimes{$DB::prevf}->[$DB::prevl] += ($DB::cdone - $DB::cstart);
# Now write out the results.
# open(OUT,">graphvizprof.dot");
# select OUT;
my($i,$stat,$time,$ctime,$line,$file,$page);
$page = 1;
my %seenlabel;
my $maxcalls = 1;
my $maxtime = 0;
foreach $file (sort keys %DB::profiles) {
$- = 0;
if (defined($DB::listings{$file})) {
$i = -1;
foreach $line (@{$DB::listings{$file}}) {
++$i or next;
my $time = defined($DB::ctimes{$file}->[$i]) ? $DB::ctimes{$file}->[$i] : 0;
$maxtime = $time if $time > $maxtime;
foreach my $file (sort keys %{$DB::calls{$file}->{$i}}) {
foreach my $j (sort {$a <=> $b} keys %{$DB::calls{$file}->{$i}->{$file}}) {
my $calls = $DB::calls{$file}->{$i}->{$file}->{$j};
$maxcalls = $calls if $calls > $maxcalls;
}
}
}
}
}
use GraphViz;
my $g = GraphViz->new();
foreach $file (sort keys %DB::profiles) {
$- = 0;
if (defined($DB::listings{$file})) {
$i = -1;
foreach $line (@{$DB::listings{$file}}) {
++$i or next;
$line = "" unless defined $line;
chomp($line);
$stat = $DB::profiles{$file}->[$i] || 0 or !$DB::drop_zeros or next;
$time = defined($DB::times{$file}->[$i]) ?
$DB::times{$file}->[$i] : 0;
$ctime = defined($DB::ctimes{$file}->[$i]) ?
$DB::ctimes{$file}->[$i] : 0;
my $label = getlabel($file . $i);
my $name = getname($file, $i);
foreach my $file (sort keys %{$DB::calls{$file}->{$i}}) {
foreach my $j (sort {$a <=> $b} keys %{$DB::calls{$file}->{$i}->{$file}}) {
my $calls = $DB::calls{$file}->{$i}->{$file}->{$j};
# next unless $calls > 2;
my $fromlabel = getlabel($file . $j);
my $ratio = $ctime / $maxtime;
$g->add_node("$file/$name", label => $name, color => "0,1,$ratio") unless ($name =~ m|/| || $seenlabel{"$file/$name"}++);
my $fromtime = defined($DB::ctimes{$file}->[$j]) ?
$DB::times{$file}->[$j] : 0;
$ratio = $fromtime / $maxtime;
my $fromname = getname($file, $j);
$g->add_node("$file/$fromname", label => $fromname, color => "0,1,$ratio") unless $seenlabel{"$file/$fromname"}++;
my $ratio = $calls / $maxcalls;
my $w = 100 * (1 - $ratio);
$g->add_edge("$file/$fromname" => "$file/$name", color => "0,1,$ratio", w => $w, len => 2);
}
}
}
} else {
# print "# The code for $file is not in the symbol table.";
}
}
print $g->_as_debug;
}
sub getname {
my($file, $lineno) = @_;
# return "$file line $lineno";
my $line = $DB::listings{$file}->[$lineno];
$line = "" unless defined $line;
chomp $line;
$line =~ s|"|\\"|g;
$line =~ s|^\s+||g;
# return "$file: $lineno";
# return "$lineno: $line";
return $line;
}
{
my $labelcount;
my %label;
sub getlabel {
my $url = shift;
return $label{$url} if exists $label{$url};
$labelcount++;
# warn "miss $url\n";
my $label = 'n' . $labelcount;
$label{$url} = $label;
return $label;
}
}
sub sub {
no strict 'refs';
goto &$DB::sub unless $DB::profile;
if (defined($DB::sub{$DB::sub})) {
my($m,$s) = ($DB::sub{$DB::sub} =~ /.+(?=:)|[^:-]+/g);
$DB::profiles{$m}->[$s]++;
$DB::listings{$m} = \@{"main::_<$m"} if defined(@{"main::_<$m"});
}
goto &$DB::sub;
}
1;
__END__
=head1 NAME
Devel::GraphVizProf - per-line Perl profiler (with graph output)
=head1 SYNOPSIS
perl -d:GraphVizProf test.pl > test.dot
dot -Tpng test.dot > test.png
=head1 DESCRIPTION
NOTE: This module is a hack of Devel::SmallProf by Ted Ashton. It has
been modified by Leon Brocard to produce output for GraphViz, but
otherwise the only thing I have done is change the name. I hope to get
my patches put into the main Devel::SmallProf code eventually, or
alternatively read the output of Devel::SmallProf. Anyway, the normal
documentation, which you can probably ignore, follows.
The Devel::GraphVizProf profiler is focused on the time taken for a program run on
a line-by-line basis. It is intended to be as "small" in terms of impact on
the speed and memory usage of the profiled program as possible and also in
terms of being simple to use. Those statistics are placed in the file
F<smallprof.out> in the following format:
<num> <time> <ctime> <line>:<text>
where <num> is the number of times that the line was executed, <time> is the
amount of "wall time" (time according the the clock on the wall vs. cpu time)
spent executing it, <ctime> is the amount of cpu time expended on it and <line>
and <text> are the line number and the actual text of the executed line (read
from the file).
The package uses the debugging hooks in Perl and thus needs the B<-d> switch,
so to profile F<test.pl>, use the command:
perl5 -d:GraphVizProf test.pl
Once the script is done, the statistics in F<smallprof.out> can be sorted to
show which lines took the most time. The output can be sorted to find which
lines take the longest, either with the sort command:
sort -k 2nr,2 smallprof.out | less
or a perl script:
open(PROF,"smallprof.out");
@sorted = sort {(split(/\s+/,$b))[2] <=>
(split(/\s+/,$a))[2]} <PROF>;
close PROF;
print join('',@sorted);
=head1 NOTES
=over 4
=item *
The "wall time" readings come from Time::HiRes and are reasonably useful, at
least on my system. The cpu times come from the 'times' built-in and the
granularity is not necessarily as small as with the wall time. On some systems
this column may be useful. On others it may not.
=item *
GraphVizProf does attempt to make up for its shortcomings by subtracting a small
amount from each timing (null time compensation). This should help somewhat
with the accuracy.
=item *
GraphVizProf depends on the Time::HiRes package to do its timings. It claims to
require version 1.20, but may work with earlier versions, depending on your
platform.
=back
=head1 OPTIONS
GraphVizProf has 3 variables which can be used during your script to affect what
gets profiled.
=over 4
=item *
If you do not wish to see lines which were never called, set the variable
C<$DB::drop_zeros = 1>. With C<drop_zeros> set, GraphVizProf can be used for
basic coverage analysis.
=item *
To turn off profiling for a time, insert a C<$DB::profile = 0> into your code
(profiling may be turned back on with C<$DB::profile = 1>). All of the time
between profiling being turned off and back on again will be lumped together
and reported on the C<$DB::profile = 0> line. This can be used to summarize a
subroutine call or a chunk of code.
=item *
To only profile code in a certain package, set the C<%DB::packages> array. For
example, to see only the code in packages C<main> and C<Test1>, do this:
%DB::packages = ( 'main' => 1, 'Test1' => 1 );
=item *
These variables can be put in a file called F<.smallprof> in the current
directory. For example, a F<.smallprof> containing
$DB::drop_zeros = 1;
$DB::profile = 0;
will set GraphVizProf to not report lines which are never touched for any file
profiled in that directory and will set profiling off initially (presumably to
be turned on only for a small portion of code).
=back
=head1 INSTALLATION
Just the usual
perl Makefile.PL
make
make test
make install
and should install fine via the CPAN module.
=head1 BUGS
Subroutine calls are currently not under the control of %DB::packages. This
should not be a great inconvenience in general.
The handling of evals is bad news. This is due to Perl's handling of evals
under the B<-d> flag. For certain evals, caller() returns '(eval n)' for the
filename and for others it doesn't. For some of those which it does, the array
C<@{'_E<lt>filename'}> contains the code of the eval. For others it doesn't.
Sometime, when I've an extra tuit or two, I'll figure out why and how I can
compensate for this.
Comments, advice and questions are welcome. If you see
inefficent stuff in this module and have a better way, please let me know.
=head1 AUTHOR
Ted Ashton E<lt>ashted@southern.eduE<gt>
GraphVizProf was developed from code originally posted to usenet by Philippe
Verdret E<lt>philippe.verdret@sonovision-itep.frE<gt>. Special thanks to
Geoffrey Broadwell E<lt>habusan2@sprynet.comE<gt> for his assistance on the
Win32 platform and to Philippe for his patient assistance in testing and
debugging.
Copyright (c) 1997 Ted Ashton
This module is free software and can be redistributed and/or modified under the
same terms as Perl itself.
=head1 SEE ALSO
L<Devel::DProf>, L<Time::HiRes>.
=cut
|