← 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:11 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 241µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11124µs105µsRegexp::Common::URI::telnet::::BEGIN@3Regexp::Common::URI::telnet::BEGIN@3
11120µs25µsRegexp::Common::URI::telnet::::BEGIN@7Regexp::Common::URI::telnet::BEGIN@7
11112µs180µsRegexp::Common::URI::telnet::::BEGIN@5Regexp::Common::URI::telnet::BEGIN@5
11111µs48µsRegexp::Common::URI::telnet::::BEGIN@10Regexp::Common::URI::telnet::BEGIN@10
11111µs54µsRegexp::Common::URI::telnet::::BEGIN@4Regexp::Common::URI::telnet::BEGIN@4
11111µs20µsRegexp::Common::URI::telnet::::BEGIN@8Regexp::Common::URI::telnet::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::telnet;
2
3229µs2105µs
# spent 105µs (24+80) within Regexp::Common::URI::telnet::BEGIN@3 which was called: # once (24µs+80µ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 80µs making 1 call to Regexp::Common::import, recursion: max depth 1, sum of overlapping time 80µs
4234µs298µs
# spent 54µ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 54µs making 1 call to Regexp::Common::URI::telnet::BEGIN@4 # spent 44µs making 1 call to Exporter::import
5236µs2349µs
# spent 180µs (12+169) within Regexp::Common::URI::telnet::BEGIN@5 which was called: # once (12µs+169µs) by Regexp::Common::import at line 5
use Regexp::Common::URI::RFC1738 qw /$user $password $host $port/;
# spent 180µs making 1 call to Regexp::Common::URI::telnet::BEGIN@5 # spent 169µs making 1 call to Exporter::import
6
7226µs230µs
# spent 25µs (20+5) within Regexp::Common::URI::telnet::BEGIN@7 which was called: # once (20µs+5µs) by Regexp::Common::import at line 7
use strict;
# spent 25µs making 1 call to Regexp::Common::URI::telnet::BEGIN@7 # spent 5µs making 1 call to strict::import
8227µs228µ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
10263µs285µs
# spent 48µs (11+37) within Regexp::Common::URI::telnet::BEGIN@10 which was called: # once (11µs+37µs) by Regexp::Common::import at line 10
use vars qw /$VERSION/;
# spent 48µs making 1 call to Regexp::Common::URI::telnet::BEGIN@10 # spent 37µs making 1 call to vars::import
1112µs$VERSION = '2010010201';
12
13
1419µsmy $telnet_uri = "(?k:(?k:telnet)://(?:(?k:(?k:$user)(?::(?k:$password))?)\@)?"
15 . "(?k:(?k:$host)(?::(?k:$port))?)(?k:/)?)";
16
1714µs16µsregister_uri telnet => $telnet_uri;
# spent 6µs making 1 call to Regexp::Common::URI::register_uri
18
1914µs196µspattern name => [qw (URI telnet)],
# spent 96µs making 1 call to Regexp::Common::pattern
20 create => $telnet_uri,
21 ;
22
2316µs1;
24
25__END__