← Index
NYTProf Performance Profile   « block view • line view • sub view »
For reply.pl
  Run on Thu Oct 21 22:40:13 2010
Reported on Thu Oct 21 22:44:41 2010

Filename/home/hinrik/perl5/perlbrew/perls/perl-5.13.5/lib/site_perl/5.13.5/Regexp/Common/URI/file.pm
StatementsExecuted 18 statements in 352µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111805µs2.41msRegexp::Common::URI::file::::BEGIN@5Regexp::Common::URI::file::BEGIN@5
11126µs115µsRegexp::Common::URI::file::::BEGIN@3Regexp::Common::URI::file::BEGIN@3
11112µs17µsRegexp::Common::URI::file::::BEGIN@7Regexp::Common::URI::file::BEGIN@7
11112µs56µsRegexp::Common::URI::file::::BEGIN@4Regexp::Common::URI::file::BEGIN@4
11111µs46µsRegexp::Common::URI::file::::BEGIN@10Regexp::Common::URI::file::BEGIN@10
11110µs20µsRegexp::Common::URI::file::::BEGIN@8Regexp::Common::URI::file::BEGIN@8
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Regexp::Common::URI::file;
2
3230µs2115µs
# spent 115µs (26+89) within Regexp::Common::URI::file::BEGIN@3 which was called: # once (26µs+89µs) by Regexp::Common::import at line 3
use Regexp::Common qw /pattern clean no_defaults/;
# spent 115µs making 1 call to Regexp::Common::URI::file::BEGIN@3 # spent 89µs making 1 call to Regexp::Common::import, recursion: max depth 1, sum of overlapping time 89µs
4229µs2100µs
# spent 56µs (12+44) within Regexp::Common::URI::file::BEGIN@4 which was called: # once (12µs+44µs) by Regexp::Common::import at line 4
use Regexp::Common::URI qw /register_uri/;
# spent 56µs making 1 call to Regexp::Common::URI::file::BEGIN@4 # spent 44µs making 1 call to Exporter::import
52150µs22.76ms
# spent 2.41ms (805µs+1.60) within Regexp::Common::URI::file::BEGIN@5 which was called: # once (805µs+1.60ms) by Regexp::Common::import at line 5
use Regexp::Common::URI::RFC1738 qw /$host $fpath/;
# spent 2.41ms making 1 call to Regexp::Common::URI::file::BEGIN@5 # spent 350µs making 1 call to Exporter::import
6
7226µs222µs
# spent 17µs (12+5) within Regexp::Common::URI::file::BEGIN@7 which was called: # once (12µs+5µs) by Regexp::Common::import at line 7
use strict;
# spent 17µs making 1 call to Regexp::Common::URI::file::BEGIN@7 # spent 5µs making 1 call to strict::import
8227µs229µs
# spent 20µs (10+9) within Regexp::Common::URI::file::BEGIN@8 which was called: # once (10µs+9µs) by Regexp::Common::import at line 8
use warnings;
# spent 20µs making 1 call to Regexp::Common::URI::file::BEGIN@8 # spent 9µs making 1 call to warnings::import
9
10266µs282µs
# spent 46µs (11+35) within Regexp::Common::URI::file::BEGIN@10 which was called: # once (11µs+35µs) by Regexp::Common::import at line 10
use vars qw /$VERSION/;
# spent 46µs making 1 call to Regexp::Common::URI::file::BEGIN@10 # spent 35µs making 1 call to vars::import
1112µs$VERSION = '2010010201';
12
13
1411µsmy $scheme = 'file';
1515µsmy $uri = "(?k:(?k:$scheme)://(?k:(?k:(?:$host|localhost)?)" .
16 "(?k:/(?k:$fpath))))";
17
1814µs16µsregister_uri $scheme => $uri;
# spent 6µs making 1 call to Regexp::Common::URI::register_uri
19
2015µs1112µspattern name => [qw (URI file)],
# spent 112µs making 1 call to Regexp::Common::pattern
21 create => $uri,
22 ;
23
2417µs1;
25
26__END__