← Index
NYTProf Performance Profile   « line view »
For Makefile.PL
  Run on Sun Mar 1 16:04:44 2015
Reported on Sun Mar 1 16:09:02 2015

FilenameC:/tmp64ng/perl/lib/ExtUtils/Liblist.pm
StatementsExecuted 10 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1110s0sExtUtils::Liblist::::BEGIN@3ExtUtils::Liblist::BEGIN@3
1110s0sExtUtils::Liblist::::BEGIN@7ExtUtils::Liblist::BEGIN@7
3110s0sExtUtils::Liblist::::extExtUtils::Liblist::ext
0000s0sExtUtils::Liblist::::lsdirExtUtils::Liblist::lsdir
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package ExtUtils::Liblist;
2
320s20s
# spent 0s within ExtUtils::Liblist::BEGIN@3 which was called: # once (0s+0s) by main::BEGIN@1 at line 3
use strict;
# spent 0s making 1 call to ExtUtils::Liblist::BEGIN@3 # spent 0s making 1 call to strict::import
4
510sour $VERSION = '7.04';
6
720s10s
# spent 0s within ExtUtils::Liblist::BEGIN@7 which was called: # once (0s+0s) by main::BEGIN@1 at line 7
use File::Spec;
# spent 0s making 1 call to ExtUtils::Liblist::BEGIN@7
810srequire ExtUtils::Liblist::Kid;
910sour @ISA = qw(ExtUtils::Liblist::Kid File::Spec);
10
11# Backwards compatibility with old interface.
12
# spent 0s within ExtUtils::Liblist::ext which was called 3 times, avg 0s/call: # 3 times (0s+0s) by ExtUtils::MM_Unix::extliblist at line 1015 of ExtUtils/MM_Unix.pm, avg 0s/call
sub ext {
1330s346.8ms goto &ExtUtils::Liblist::Kid::ext;
# spent 46.8ms making 3 calls to ExtUtils::Liblist::Kid::ext, avg 15.6ms/call
14}
15
16sub lsdir {
17 shift;
18 my $rex = qr/$_[1]/;
19 opendir DIR, $_[0];
20 my @out = grep /$rex/, readdir DIR;
21 closedir DIR;
22 return @out;
23}
24
25__END__