← 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/news.pm
StatementsExecuted 22 statements in 273µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11126µs106µsRegexp::Common::URI::news::::BEGIN@3Regexp::Common::URI::news::BEGIN@3
11119µs61µsRegexp::Common::URI::news::::BEGIN@4Regexp::Common::URI::news::BEGIN@4
11111µs20µsRegexp::Common::URI::news::::BEGIN@9Regexp::Common::URI::news::BEGIN@9
11111µs16µsRegexp::Common::URI::news::::BEGIN@8Regexp::Common::URI::news::BEGIN@8
11111µs43µsRegexp::Common::URI::news::::BEGIN@11Regexp::Common::URI::news::BEGIN@11
11111µs211µsRegexp::Common::URI::news::::BEGIN@5Regexp::Common::URI::news::BEGIN@5
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::news;
2
3230µs2106µs
# spent 106µs (26+80) within Regexp::Common::URI::news::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::news::BEGIN@3 # spent 80µs making 1 call to Regexp::Common::import, recursion: max depth 1, sum of overlapping time 80µs
4235µs2104µs
# spent 61µs (19+42) within Regexp::Common::URI::news::BEGIN@4 which was called: # once (19µs+42µs) by Regexp::Common::import at line 4
use Regexp::Common::URI qw /register_uri/;
# spent 61µs making 1 call to Regexp::Common::URI::news::BEGIN@4 # spent 42µs making 1 call to Exporter::import
51200µs
# spent 211µs (11+200) within Regexp::Common::URI::news::BEGIN@5 which was called: # once (11µs+200µs) by Regexp::Common::import at line 6
use Regexp::Common::URI::RFC1738 qw /$grouppart $group $article
# spent 200µs making 1 call to Exporter::import
6228µs1211µs $host $port $digits/;
# spent 211µs making 1 call to Regexp::Common::URI::news::BEGIN@5
7
8225µs221µs
# spent 16µs (11+5) within Regexp::Common::URI::news::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::news::BEGIN@8 # spent 5µs making 1 call to strict::import
9226µs229µs
# spent 20µs (11+9) within Regexp::Common::URI::news::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::news::BEGIN@9 # spent 9µs making 1 call to warnings::import
10
11295µs275µs
# spent 43µs (11+32) within Regexp::Common::URI::news::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::news::BEGIN@11 # spent 32µs making 1 call to vars::import
1211µs$VERSION = '2010010201';
13
14
1511µsmy $news_scheme = 'news';
1612µsmy $news_uri = "(?k:(?k:$news_scheme):(?k:$grouppart))";
17
1811µsmy $nntp_scheme = 'nntp';
1913µsmy $nntp_uri = "(?k:(?k:$nntp_scheme)://(?k:(?k:(?k:$host)(?::(?k:$port))?)"
20 . "/(?k:$group)(?:/(?k:$digits))?))";
21
2214µs16µsregister_uri $news_scheme => $news_uri;
# spent 6µs making 1 call to Regexp::Common::URI::register_uri
2313µs15µsregister_uri $nntp_scheme => $nntp_uri;
# spent 5µs making 1 call to Regexp::Common::URI::register_uri
24
2514µs198µspattern name => [qw (URI news)],
# spent 98µs making 1 call to Regexp::Common::pattern
26 create => $news_uri,
27 ;
28
2915µs194µspattern name => [qw (URI NNTP)],
# spent 94µs making 1 call to Regexp::Common::pattern
30 create => $nntp_uri,
31 ;
32
3319µs1;
34
35__END__