← 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/fax.pm
StatementsExecuted 20 statements in 398µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1111.01ms6.39msRegexp::Common::URI::fax::::BEGIN@5Regexp::Common::URI::fax::BEGIN@5
11125µs104µsRegexp::Common::URI::fax::::BEGIN@3Regexp::Common::URI::fax::BEGIN@3
11116µs90µsRegexp::Common::URI::fax::::BEGIN@4Regexp::Common::URI::fax::BEGIN@4
11111µs16µsRegexp::Common::URI::fax::::BEGIN@8Regexp::Common::URI::fax::BEGIN@8
11111µs20µsRegexp::Common::URI::fax::::BEGIN@9Regexp::Common::URI::fax::BEGIN@9
11110µs43µsRegexp::Common::URI::fax::::BEGIN@11Regexp::Common::URI::fax::BEGIN@11
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
3238µs2104µs
# spent 104µs (25+79) within Regexp::Common::URI::fax::BEGIN@3 which was called: # once (25µs+79µ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 79µs making 1 call to Regexp::Common::import, recursion: max depth 1, sum of overlapping time 79µs
4237µs2164µs
# spent 90µs (16+74) within Regexp::Common::URI::fax::BEGIN@4 which was called: # once (16µs+74µs) by Regexp::Common::import at line 4
use Regexp::Common::URI qw /register_uri/;
# spent 90µs making 1 call to Regexp::Common::URI::fax::BEGIN@4 # spent 74µs making 1 call to Exporter::import
51318µs
# spent 6.39ms (1.01+5.39) within Regexp::Common::URI::fax::BEGIN@5 which was called: # once (1.01ms+5.39ms) by Regexp::Common::import at line 6
use Regexp::Common::URI::RFC2806 qw /$fax_subscriber
# spent 318µs making 1 call to Exporter::import
62166µs16.39ms $fax_subscriber_no_future/;
# spent 6.39ms making 1 call to Regexp::Common::URI::fax::BEGIN@5
7
8226µs221µs
# spent 16µs (11+5) within Regexp::Common::URI::fax::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::fax::BEGIN@8 # spent 5µs making 1 call to strict::import
9227µs230µs
# spent 20µs (11+9) within Regexp::Common::URI::fax::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::fax::BEGIN@9 # spent 9µs making 1 call to warnings::import
10
11275µs276µs
# spent 43µs (10+33) within Regexp::Common::URI::fax::BEGIN@11 which was called: # once (10µ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
151900nsmy $fax_scheme = 'fax';
1614µ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
1914µs110µsregister_uri $fax_scheme => $fax_uri;
# spent 10µs making 1 call to Regexp::Common::URI::register_uri
20
2115µs1170µspattern name => [qw (URI fax)],
# spent 170µs making 1 call to Regexp::Common::pattern
22 create => $fax_uri
23 ;
24
2515µs1114µspattern name => [qw (URI fax nofuture)],
# spent 114µs making 1 call to Regexp::Common::pattern
26 create => $fax_uri_nf
27 ;
28
2918µs1;
30
31__END__