← 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/telnet.pm
StatementsExecuted 17 statements in 234µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11126µs105µsRegexp::Common::URI::telnet::::BEGIN@3Regexp::Common::URI::telnet::BEGIN@3
11116µs195µsRegexp::Common::URI::telnet::::BEGIN@5Regexp::Common::URI::telnet::BEGIN@5
11112µs23µsRegexp::Common::URI::telnet::::BEGIN@7Regexp::Common::URI::telnet::BEGIN@7
11111µs55µsRegexp::Common::URI::telnet::::BEGIN@4Regexp::Common::URI::telnet::BEGIN@4
11111µs20µsRegexp::Common::URI::telnet::::BEGIN@8Regexp::Common::URI::telnet::BEGIN@8
11110µs42µsRegexp::Common::URI::telnet::::BEGIN@10Regexp::Common::URI::telnet::BEGIN@10
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::telnet;
2
3230µs2105µs
# spent 105µs (26+79) within Regexp::Common::URI::telnet::BEGIN@3 which was called: # once (26µs+79µs) by Regexp::Common::import at line 3
use Regexp::Common qw /pattern clean no_defaults/;
# spent 105µs making 1 call to Regexp::Common::URI::telnet::BEGIN@3 # spent 79µs making 1 call to Regexp::Common::import, recursion: max depth 1, sum of overlapping time 79µs
4234µs298µs
# spent 55µs (11+43) within Regexp::Common::URI::telnet::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 55µs making 1 call to Regexp::Common::URI::telnet::BEGIN@4 # spent 43µs making 1 call to Exporter::import
5230µs2374µs
# spent 195µs (16+179) within Regexp::Common::URI::telnet::BEGIN@5 which was called: # once (16µs+179µs) by Regexp::Common::import at line 5
use Regexp::Common::URI::RFC1738 qw /$user $password $host $port/;
# spent 195µs making 1 call to Regexp::Common::URI::telnet::BEGIN@5 # spent 179µs making 1 call to Exporter::import
6
7225µs233µs
# spent 23µs (12+10) within Regexp::Common::URI::telnet::BEGIN@7 which was called: # once (12µs+10µs) by Regexp::Common::import at line 7
use strict;
# spent 23µs making 1 call to Regexp::Common::URI::telnet::BEGIN@7 # spent 10µs making 1 call to strict::import
8227µs229µs
# spent 20µs (11+9) within Regexp::Common::URI::telnet::BEGIN@8 which was called: # once (11µs+9µs) by Regexp::Common::import at line 8
use warnings;
# spent 20µs making 1 call to Regexp::Common::URI::telnet::BEGIN@8 # spent 9µs making 1 call to warnings::import
9
10266µs274µs
# spent 42µs (10+32) within Regexp::Common::URI::telnet::BEGIN@10 which was called: # once (10µs+32µs) by Regexp::Common::import at line 10
use vars qw /$VERSION/;
# spent 42µs making 1 call to Regexp::Common::URI::telnet::BEGIN@10 # spent 32µs making 1 call to vars::import
1112µs$VERSION = '2010010201';
12
13
1414µsmy $telnet_uri = "(?k:(?k:telnet)://(?:(?k:(?k:$user)(?::(?k:$password))?)\@)?"
15 . "(?k:(?k:$host)(?::(?k:$port))?)(?k:/)?)";
16
1714µs15µsregister_uri telnet => $telnet_uri;
# spent 5µs making 1 call to Regexp::Common::URI::register_uri
18
1914µs1114µspattern name => [qw (URI telnet)],
# spent 114µs making 1 call to Regexp::Common::pattern
20 create => $telnet_uri,
21 ;
22
2316µs1;
24
25__END__