← 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/tel.pm
StatementsExecuted 20 statements in 257µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11126µs108µsRegexp::Common::URI::tel::::BEGIN@3Regexp::Common::URI::tel::BEGIN@3
11115µs57µsRegexp::Common::URI::tel::::BEGIN@4Regexp::Common::URI::tel::BEGIN@4
11112µs147µsRegexp::Common::URI::tel::::BEGIN@5Regexp::Common::URI::tel::BEGIN@5
11112µs16µsRegexp::Common::URI::tel::::BEGIN@8Regexp::Common::URI::tel::BEGIN@8
11111µs44µsRegexp::Common::URI::tel::::BEGIN@11Regexp::Common::URI::tel::BEGIN@11
11111µs20µsRegexp::Common::URI::tel::::BEGIN@9Regexp::Common::URI::tel::BEGIN@9
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::tel;
2
3231µs2108µs
# spent 108µs (26+82) within Regexp::Common::URI::tel::BEGIN@3 which was called: # once (26µs+82µs) by Regexp::Common::import at line 3
use Regexp::Common qw /pattern clean no_defaults/;
# spent 108µs making 1 call to Regexp::Common::URI::tel::BEGIN@3 # spent 82µs making 1 call to Regexp::Common::import, recursion: max depth 1, sum of overlapping time 82µs
4231µs2100µs
# spent 57µs (15+42) within Regexp::Common::URI::tel::BEGIN@4 which was called: # once (15µs+42µs) by Regexp::Common::import at line 4
use Regexp::Common::URI qw /register_uri/;
# spent 57µs making 1 call to Regexp::Common::URI::tel::BEGIN@4 # spent 42µs making 1 call to Exporter::import
518µs1135µs
# spent 147µs (12+135) within Regexp::Common::URI::tel::BEGIN@5 which was called: # once (12µs+135µs) by Regexp::Common::import at line 6
use Regexp::Common::URI::RFC2806 qw /$telephone_subscriber
# spent 135µs making 1 call to Exporter::import
6124µs1147µs $telephone_subscriber_no_future/;
# spent 147µs making 1 call to Regexp::Common::URI::tel::BEGIN@5
7
8226µs220µs
# spent 16µs (12+4) within Regexp::Common::URI::tel::BEGIN@8 which was called: # once (12µs+4µs) by Regexp::Common::import at line 8
use strict;
# spent 16µs making 1 call to Regexp::Common::URI::tel::BEGIN@8 # spent 4µs making 1 call to strict::import
9227µs228µs
# spent 20µs (11+9) within Regexp::Common::URI::tel::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::tel::BEGIN@9 # spent 9µs making 1 call to warnings::import
10
11280µs276µs
# spent 44µs (11+33) within Regexp::Common::URI::tel::BEGIN@11 which was called: # once (11µs+33µs) by Regexp::Common::import at line 11
use vars qw /$VERSION/;
# spent 44µs making 1 call to Regexp::Common::URI::tel::BEGIN@11 # spent 33µs making 1 call to vars::import
1212µs$VERSION = '2010010201';
13
14
1511µsmy $tel_scheme = 'tel';
1614µsmy $tel_uri = "(?k:(?k:$tel_scheme):(?k:$telephone_subscriber))";
1713µsmy $tel_uri_nf = "(?k:(?k:$tel_scheme):(?k:$telephone_subscriber_no_future))";
18
1914µs16µsregister_uri $tel_scheme => $tel_uri;
# spent 6µs making 1 call to Regexp::Common::URI::register_uri
20
2114µs1100µspattern name => [qw (URI tel)],
# spent 100µs making 1 call to Regexp::Common::pattern
22 create => $tel_uri
23 ;
24
2514µs1116µspattern name => [qw (URI tel nofuture)],
# spent 116µs making 1 call to Regexp::Common::pattern
26 create => $tel_uri_nf
27 ;
28
2918µs1;
30
31__END__