← 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/tel.pm
StatementsExecuted 20 statements in 245µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11126µs106µsRegexp::Common::URI::tel::::BEGIN@3Regexp::Common::URI::tel::BEGIN@3
11114µs45µsRegexp::Common::URI::tel::::BEGIN@11Regexp::Common::URI::tel::BEGIN@11
11111µs15µsRegexp::Common::URI::tel::::BEGIN@8Regexp::Common::URI::tel::BEGIN@8
11111µs143µsRegexp::Common::URI::tel::::BEGIN@5Regexp::Common::URI::tel::BEGIN@5
11111µs53µsRegexp::Common::URI::tel::::BEGIN@4Regexp::Common::URI::tel::BEGIN@4
11110µs19µ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
3229µs2106µs
# spent 106µs (26+80) within Regexp::Common::URI::tel::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::tel::BEGIN@3 # spent 80µs making 1 call to Regexp::Common::import, recursion: max depth 1, sum of overlapping time 80µs
4229µs295µs
# spent 53µs (11+42) within Regexp::Common::URI::tel::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::tel::BEGIN@4 # spent 42µs making 1 call to Exporter::import
51132µs
# spent 143µs (11+132) within Regexp::Common::URI::tel::BEGIN@5 which was called: # once (11µs+132µs) by Regexp::Common::import at line 6
use Regexp::Common::URI::RFC2806 qw /$telephone_subscriber
# spent 132µs making 1 call to Exporter::import
6227µs1143µs $telephone_subscriber_no_future/;
# spent 143µs making 1 call to Regexp::Common::URI::tel::BEGIN@5
7
8224µs219µs
# spent 15µs (11+4) within Regexp::Common::URI::tel::BEGIN@8 which was called: # once (11µs+4µs) by Regexp::Common::import at line 8
use strict;
# spent 15µs making 1 call to Regexp::Common::URI::tel::BEGIN@8 # spent 4µs making 1 call to strict::import
9226µs228µs
# spent 19µs (10+9) within Regexp::Common::URI::tel::BEGIN@9 which was called: # once (10µs+9µs) by Regexp::Common::import at line 9
use warnings;
# spent 19µs making 1 call to Regexp::Common::URI::tel::BEGIN@9 # spent 9µs making 1 call to warnings::import
10
11281µs276µs
# spent 45µs (14+31) within Regexp::Common::URI::tel::BEGIN@11 which was called: # once (14µs+31µs) by Regexp::Common::import at line 11
use vars qw /$VERSION/;
# spent 45µs making 1 call to Regexp::Common::URI::tel::BEGIN@11 # spent 31µs making 1 call to vars::import
1211µ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µs1117µspattern name => [qw (URI tel nofuture)],
# spent 117µs making 1 call to Regexp::Common::pattern
26 create => $tel_uri_nf
27 ;
28
2917µs1;
30
31__END__