← 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/wais.pm
StatementsExecuted 18 statements in 239µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11125µs105µsRegexp::Common::URI::wais::::BEGIN@3Regexp::Common::URI::wais::BEGIN@3
11112µs16µsRegexp::Common::URI::wais::::BEGIN@8Regexp::Common::URI::wais::BEGIN@8
11111µs54µsRegexp::Common::URI::wais::::BEGIN@4Regexp::Common::URI::wais::BEGIN@4
11111µs19µsRegexp::Common::URI::wais::::BEGIN@9Regexp::Common::URI::wais::BEGIN@9
11110µs43µsRegexp::Common::URI::wais::::BEGIN@11Regexp::Common::URI::wais::BEGIN@11
11110µs205µsRegexp::Common::URI::wais::::BEGIN@5Regexp::Common::URI::wais::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::wais;
2
3230µs2105µs
# spent 105µs (25+81) within Regexp::Common::URI::wais::BEGIN@3 which was called: # once (25µs+81µ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::wais::BEGIN@3 # spent 81µs making 1 call to Regexp::Common::import, recursion: max depth 1, sum of overlapping time 81µs
4231µs296µs
# spent 54µs (11+42) within Regexp::Common::URI::wais::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 54µs making 1 call to Regexp::Common::URI::wais::BEGIN@4 # spent 42µs making 1 call to Exporter::import
51195µs
# spent 205µs (10+195) within Regexp::Common::URI::wais::BEGIN@5 which was called: # once (10µs+195µs) by Regexp::Common::import at line 6
use Regexp::Common::URI::RFC1738 qw /$host $port
# spent 195µs making 1 call to Exporter::import
6228µs1205µs $search $database $wtype $wpath/;
# spent 205µs making 1 call to Regexp::Common::URI::wais::BEGIN@5
7
8224µs221µs
# spent 16µs (12+5) within Regexp::Common::URI::wais::BEGIN@8 which was called: # once (12µs+5µs) by Regexp::Common::import at line 8
use strict;
# spent 16µs making 1 call to Regexp::Common::URI::wais::BEGIN@8 # spent 5µs making 1 call to strict::import
9231µs228µs
# spent 19µs (11+9) within Regexp::Common::URI::wais::BEGIN@9 which was called: # once (11µs+9µs) by Regexp::Common::import at line 9
use warnings;
# spent 19µs making 1 call to Regexp::Common::URI::wais::BEGIN@9 # spent 9µs making 1 call to warnings::import
10
11273µs275µs
# spent 43µs (10+32) within Regexp::Common::URI::wais::BEGIN@11 which was called: # once (10µs+32µs) by Regexp::Common::import at line 11
use vars qw /$VERSION/;
# spent 43µs making 1 call to Regexp::Common::URI::wais::BEGIN@11 # spent 32µs making 1 call to vars::import
1212µs$VERSION = '2010010201';
13
14
1511µsmy $scheme = 'wais';
1614µsmy $uri = "(?k:(?k:$scheme)://(?k:$host)(?::(?k:$port))?/(?k:(?k:$database)"
17 . "(?k:[?](?k:$search)|/(?k:$wtype)/(?k:$wpath))?))";
18
1914µs17µsregister_uri $scheme => $uri;
# spent 7µs making 1 call to Regexp::Common::URI::register_uri
20
2114µs199µspattern name => [qw (URI WAIS)],
# spent 99µs making 1 call to Regexp::Common::pattern
22 create => $uri,
23 ;
24
2517µs1;
26
27__END__