← 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:41 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 264µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11125µs107µsRegexp::Common::URI::news::::BEGIN@3Regexp::Common::URI::news::BEGIN@3
11112µs44µsRegexp::Common::URI::news::::BEGIN@11Regexp::Common::URI::news::BEGIN@11
11111µs16µsRegexp::Common::URI::news::::BEGIN@8Regexp::Common::URI::news::BEGIN@8
11111µs53µsRegexp::Common::URI::news::::BEGIN@4Regexp::Common::URI::news::BEGIN@4
11110µs18µsRegexp::Common::URI::news::::BEGIN@9Regexp::Common::URI::news::BEGIN@9
11110µs210µ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µs2107µs
# spent 107µs (25+82) within Regexp::Common::URI::news::BEGIN@3 which was called: # once (25µs+82µs) by Regexp::Common::import at line 3
use Regexp::Common qw /pattern clean no_defaults/;
# spent 107µs making 1 call to Regexp::Common::URI::news::BEGIN@3 # spent 82µs making 1 call to Regexp::Common::import, recursion: max depth 1, sum of overlapping time 82µs
4231µs296µs
# spent 53µs (11+42) within Regexp::Common::URI::news::BEGIN@4 which was called: # once (11µs+42µs) by Regexp::Common::import at line 4
use Regexp::Common::URI qw /register_uri/;
# spent 53µs making 1 call to Regexp::Common::URI::news::BEGIN@4 # spent 42µs making 1 call to Exporter::import
51200µs
# spent 210µs (10+200) within Regexp::Common::URI::news::BEGIN@5 which was called: # once (10µ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
6227µs1210µs $host $port $digits/;
# spent 210µ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µs226µs
# spent 18µs (10+8) within Regexp::Common::URI::news::BEGIN@9 which was called: # once (10µs+8µs) by Regexp::Common::import at line 9
use warnings;
# spent 18µs making 1 call to Regexp::Common::URI::news::BEGIN@9 # spent 8µs making 1 call to warnings::import
10
11291µs276µs
# spent 44µs (12+32) within Regexp::Common::URI::news::BEGIN@11 which was called: # once (12µs+32µs) by Regexp::Common::import at line 11
use vars qw /$VERSION/;
# spent 44µs making 1 call to Regexp::Common::URI::news::BEGIN@11 # spent 32µs making 1 call to vars::import
1212µs$VERSION = '2010010201';
13
14
151900nsmy $news_scheme = 'news';
1612µsmy $news_uri = "(?k:(?k:$news_scheme):(?k:$grouppart))";
17
1811µsmy $nntp_scheme = 'nntp';
1914µsmy $nntp_uri = "(?k:(?k:$nntp_scheme)://(?k:(?k:(?k:$host)(?::(?k:$port))?)"
20 . "/(?k:$group)(?:/(?k:$digits))?))";
21
2214µs15µsregister_uri $news_scheme => $news_uri;
# spent 5µs making 1 call to Regexp::Common::URI::register_uri
2314µs16µsregister_uri $nntp_scheme => $nntp_uri;
# spent 6µ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
2914µ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__