← 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:44 2010

Filename/home/hinrik/perl5/perlbrew/perls/perl-5.13.5/lib/site_perl/5.13.5/Regexp/Common/URI/pop.pm
StatementsExecuted 20 statements in 383µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111492µs1.44msRegexp::Common::URI::pop::::BEGIN@6Regexp::Common::URI::pop::BEGIN@6
11126µs106µsRegexp::Common::URI::pop::::BEGIN@3Regexp::Common::URI::pop::BEGIN@3
11112µs16µsRegexp::Common::URI::pop::::BEGIN@8Regexp::Common::URI::pop::BEGIN@8
11111µs138µsRegexp::Common::URI::pop::::BEGIN@5Regexp::Common::URI::pop::BEGIN@5
11111µs54µsRegexp::Common::URI::pop::::BEGIN@4Regexp::Common::URI::pop::BEGIN@4
11111µs19µsRegexp::Common::URI::pop::::BEGIN@9Regexp::Common::URI::pop::BEGIN@9
11110µs42µsRegexp::Common::URI::pop::::BEGIN@11Regexp::Common::URI::pop::BEGIN@11
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::pop;
2
3230µs2106µs
# spent 106µs (26+80) within Regexp::Common::URI::pop::BEGIN@3 which was called: # once (26µs+80µs) by Regexp::Common::import at line 3
use Regexp::Common qw /pattern clean no_defaults/;
# spent 106µs making 1 call to Regexp::Common::URI::pop::BEGIN@3 # spent 80µs making 1 call to Regexp::Common::import, recursion: max depth 1, sum of overlapping time 80µs
4229µs296µs
# spent 54µs (11+43) within Regexp::Common::URI::pop::BEGIN@4 which was called: # once (11µs+43µs) by Regexp::Common::import at line 4
use Regexp::Common::URI qw /register_uri/;
# spent 54µs making 1 call to Regexp::Common::URI::pop::BEGIN@4 # spent 43µs making 1 call to Exporter::import
5230µs2264µs
# spent 138µs (11+126) within Regexp::Common::URI::pop::BEGIN@5 which was called: # once (11µs+126µs) by Regexp::Common::import at line 5
use Regexp::Common::URI::RFC1738 qw /$host $port/;
# spent 138µs making 1 call to Regexp::Common::URI::pop::BEGIN@5 # spent 126µs making 1 call to Exporter::import
62149µs21.63ms
# spent 1.44ms (492µs+944µs) within Regexp::Common::URI::pop::BEGIN@6 which was called: # once (492µs+944µs) by Regexp::Common::import at line 6
use Regexp::Common::URI::RFC2384 qw /$enc_user $enc_auth_type/;
# spent 1.44ms making 1 call to Regexp::Common::URI::pop::BEGIN@6 # spent 194µs making 1 call to Exporter::import
7
8225µs220µs
# spent 16µs (12+4) within Regexp::Common::URI::pop::BEGIN@8 which was called: # once (12µs+4µs) by Regexp::Common::import at line 8
use strict;
# spent 16µs making 1 call to Regexp::Common::URI::pop::BEGIN@8 # spent 4µs making 1 call to strict::import
9227µs228µs
# spent 19µs (11+8) within Regexp::Common::URI::pop::BEGIN@9 which was called: # once (11µs+8µs) by Regexp::Common::import at line 9
use warnings;
# spent 19µs making 1 call to Regexp::Common::URI::pop::BEGIN@9 # spent 8µs making 1 call to warnings::import
10
11269µs274µs
# spent 42µs (10+32) within Regexp::Common::URI::pop::BEGIN@11 which was called: # once (10µs+32µs) by Regexp::Common::import at line 11
use vars qw /$VERSION/;
# spent 42µs making 1 call to Regexp::Common::URI::pop::BEGIN@11 # spent 32µs making 1 call to vars::import
1212µs$VERSION = '2010010201';
13
14
1511µsmy $scheme = "pop";
1614µsmy $uri = "(?k:(?k:$scheme)://(?:(?k:$enc_user)" .
17 "(?:;AUTH=(?k:[*]|$enc_auth_type))?\@)?" .
18 "(?k:$host)(?::(?k:$port))?)";
19
2014µs15µsregister_uri $scheme => $uri;
# spent 5µs making 1 call to Regexp::Common::URI::register_uri
21
2214µs1108µspattern name => [qw (URI POP)],
# spent 108µs making 1 call to Regexp::Common::pattern
23 create => $uri,
24 ;
25
2618µs1;
27
28__END__