← 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:16 2010

Filename/home/hinrik/perl5/perlbrew/perls/perl-5.13.5/lib/site_perl/5.13.5/Regexp/Common/URI/fax.pm
StatementsExecuted 20 statements in 382µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1111.03ms5.97msRegexp::Common::URI::fax::::BEGIN@5Regexp::Common::URI::fax::BEGIN@5
11126µs104µsRegexp::Common::URI::fax::::BEGIN@3Regexp::Common::URI::fax::BEGIN@3
11115µs87µsRegexp::Common::URI::fax::::BEGIN@4Regexp::Common::URI::fax::BEGIN@4
11112µs17µsRegexp::Common::URI::fax::::BEGIN@8Regexp::Common::URI::fax::BEGIN@8
11111µs43µsRegexp::Common::URI::fax::::BEGIN@11Regexp::Common::URI::fax::BEGIN@11
11110µs19µsRegexp::Common::URI::fax::::BEGIN@9Regexp::Common::URI::fax::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::fax;
2
3233µs2104µs
# spent 104µs (26+78) within Regexp::Common::URI::fax::BEGIN@3 which was called: # once (26µs+78µs) by Regexp::Common::import at line 3
use Regexp::Common qw /pattern clean no_defaults/;
# spent 104µs making 1 call to Regexp::Common::URI::fax::BEGIN@3 # spent 78µs making 1 call to Regexp::Common::import, recursion: max depth 1, sum of overlapping time 78µs
4237µs2159µs
# spent 87µs (15+72) within Regexp::Common::URI::fax::BEGIN@4 which was called: # once (15µs+72µs) by Regexp::Common::import at line 4
use Regexp::Common::URI qw /register_uri/;
# spent 87µs making 1 call to Regexp::Common::URI::fax::BEGIN@4 # spent 72µs making 1 call to Exporter::import
5112µs1302µs
# spent 5.97ms (1.03+4.94) within Regexp::Common::URI::fax::BEGIN@5 which was called: # once (1.03ms+4.94ms) by Regexp::Common::import at line 6
use Regexp::Common::URI::RFC2806 qw /$fax_subscriber
# spent 302µs making 1 call to Exporter::import
61135µs15.97ms $fax_subscriber_no_future/;
# spent 5.97ms making 1 call to Regexp::Common::URI::fax::BEGIN@5
7
8225µs222µs
# spent 17µs (12+5) within Regexp::Common::URI::fax::BEGIN@8 which was called: # once (12µs+5µs) by Regexp::Common::import at line 8
use strict;
# spent 17µs making 1 call to Regexp::Common::URI::fax::BEGIN@8 # spent 5µs making 1 call to strict::import
9226µs227µs
# spent 19µs (10+9) within Regexp::Common::URI::fax::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::fax::BEGIN@9 # spent 9µs making 1 call to warnings::import
10
11272µs276µs
# spent 43µs (11+33) within Regexp::Common::URI::fax::BEGIN@11 which was called: # once (11µs+33µs) by Regexp::Common::import at line 11
use vars qw /$VERSION/;
# spent 43µs making 1 call to Regexp::Common::URI::fax::BEGIN@11 # spent 33µs making 1 call to vars::import
1211µs$VERSION = '2010010201';
13
14
1511µsmy $fax_scheme = 'fax';
16116µsmy $fax_uri = "(?k:(?k:$fax_scheme):(?k:$fax_subscriber))";
1712µsmy $fax_uri_nf = "(?k:(?k:$fax_scheme):(?k:$fax_subscriber_no_future))";
18
1913µs16µsregister_uri $fax_scheme => $fax_uri;
# spent 6µs making 1 call to Regexp::Common::URI::register_uri
20
2115µs1164µspattern name => [qw (URI fax)],
# spent 164µs making 1 call to Regexp::Common::pattern
22 create => $fax_uri
23 ;
24
2515µs1117µspattern name => [qw (URI fax nofuture)],
# spent 117µs making 1 call to Regexp::Common::pattern
26 create => $fax_uri_nf
27 ;
28
2918µs1;
30
31__END__