← Index
NYTProf Performance Profile   « block view • line view • sub view »
For bin/hailo
  Run on Thu Oct 21 22:50:37 2010
Reported on Thu Oct 21 22:52:06 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 369µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111511µs1.46msRegexp::Common::URI::pop::::BEGIN@6Regexp::Common::URI::pop::BEGIN@6
11125µs104µsRegexp::Common::URI::pop::::BEGIN@3Regexp::Common::URI::pop::BEGIN@3
11112µs54µsRegexp::Common::URI::pop::::BEGIN@4Regexp::Common::URI::pop::BEGIN@4
11111µs43µsRegexp::Common::URI::pop::::BEGIN@11Regexp::Common::URI::pop::BEGIN@11
11111µs138µsRegexp::Common::URI::pop::::BEGIN@5Regexp::Common::URI::pop::BEGIN@5
11111µs20µsRegexp::Common::URI::pop::::BEGIN@9Regexp::Common::URI::pop::BEGIN@9
11111µs16µsRegexp::Common::URI::pop::::BEGIN@8Regexp::Common::URI::pop::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::pop;
2
3229µs2104µs
# spent 104µs (25+79) within Regexp::Common::URI::pop::BEGIN@3 which was called: # once (25µs+79µs) by Regexp::Common::import at line 3
use Regexp::Common qw /pattern clean no_defaults/;
# spent 104µs making 1 call to Regexp::Common::URI::pop::BEGIN@3 # spent 79µs making 1 call to Regexp::Common::import, recursion: max depth 1, sum of overlapping time 79µs
4229µs296µs
# spent 54µs (12+42) within Regexp::Common::URI::pop::BEGIN@4 which was called: # once (12µs+42µ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 42µs making 1 call to Exporter::import
5229µs2265µs
# spent 138µs (11+127) within Regexp::Common::URI::pop::BEGIN@5 which was called: # once (11µs+127µ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 127µs making 1 call to Exporter::import
62138µs21.65ms
# spent 1.46ms (511µs+947µs) within Regexp::Common::URI::pop::BEGIN@6 which was called: # once (511µs+947µs) by Regexp::Common::import at line 6
use Regexp::Common::URI::RFC2384 qw /$enc_user $enc_auth_type/;
# spent 1.46ms 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 (11+5) within Regexp::Common::URI::pop::BEGIN@8 which was called: # once (11µs+5µs) by Regexp::Common::import at line 8
use strict;
# spent 16µs making 1 call to Regexp::Common::URI::pop::BEGIN@8 # spent 5µs making 1 call to strict::import
9226µs228µs
# spent 20µs (11+9) within Regexp::Common::URI::pop::BEGIN@9 which was called: # once (11µs+9µs) by Regexp::Common::import at line 9
use warnings;
# spent 20µs making 1 call to Regexp::Common::URI::pop::BEGIN@9 # spent 9µs making 1 call to warnings::import
10
11266µs275µs
# spent 43µs (11+32) within Regexp::Common::URI::pop::BEGIN@11 which was called: # once (11µs+32µs) by Regexp::Common::import at line 11
use vars qw /$VERSION/;
# spent 43µ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
151800nsmy $scheme = "pop";
1614µsmy $uri = "(?k:(?k:$scheme)://(?:(?k:$enc_user)" .
17 "(?:;AUTH=(?k:[*]|$enc_auth_type))?\@)?" .
18 "(?k:$host)(?::(?k:$port))?)";
19
2014µs16µsregister_uri $scheme => $uri;
# spent 6µs making 1 call to Regexp::Common::URI::register_uri
21
2218µs1104µspattern name => [qw (URI POP)],
# spent 104µs making 1 call to Regexp::Common::pattern
23 create => $uri,
24 ;
25
2617µs1;
27
28__END__