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

Filename/home/hinrik/perl5/perlbrew/perls/perl-5.13.5/lib/site_perl/5.13.5/Regexp/Common/URI/file.pm
StatementsExecuted 18 statements in 347µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111792µs2.38msRegexp::Common::URI::file::::BEGIN@5Regexp::Common::URI::file::BEGIN@5
11125µs106µsRegexp::Common::URI::file::::BEGIN@3Regexp::Common::URI::file::BEGIN@3
11112µs17µsRegexp::Common::URI::file::::BEGIN@7Regexp::Common::URI::file::BEGIN@7
11112µs61µsRegexp::Common::URI::file::::BEGIN@4Regexp::Common::URI::file::BEGIN@4
11111µs19µsRegexp::Common::URI::file::::BEGIN@8Regexp::Common::URI::file::BEGIN@8
11110µs43µsRegexp::Common::URI::file::::BEGIN@10Regexp::Common::URI::file::BEGIN@10
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::file;
2
3230µs2106µs
# spent 106µs (25+81) within Regexp::Common::URI::file::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 106µs making 1 call to Regexp::Common::URI::file::BEGIN@3 # spent 81µs making 1 call to Regexp::Common::import, recursion: max depth 1, sum of overlapping time 81µs
4229µs2110µs
# spent 61µs (12+49) within Regexp::Common::URI::file::BEGIN@4 which was called: # once (12µs+49µs) by Regexp::Common::import at line 4
use Regexp::Common::URI qw /register_uri/;
# spent 61µs making 1 call to Regexp::Common::URI::file::BEGIN@4 # spent 49µs making 1 call to Exporter::import
52150µs22.72ms
# spent 2.38ms (792µs+1.59) within Regexp::Common::URI::file::BEGIN@5 which was called: # once (792µs+1.59ms) by Regexp::Common::import at line 5
use Regexp::Common::URI::RFC1738 qw /$host $fpath/;
# spent 2.38ms making 1 call to Regexp::Common::URI::file::BEGIN@5 # spent 334µs making 1 call to Exporter::import
6
7225µs222µs
# spent 17µs (12+5) within Regexp::Common::URI::file::BEGIN@7 which was called: # once (12µs+5µs) by Regexp::Common::import at line 7
use strict;
# spent 17µs making 1 call to Regexp::Common::URI::file::BEGIN@7 # spent 5µs making 1 call to strict::import
8228µs228µs
# spent 19µs (11+9) within Regexp::Common::URI::file::BEGIN@8 which was called: # once (11µs+9µs) by Regexp::Common::import at line 8
use warnings;
# spent 19µs making 1 call to Regexp::Common::URI::file::BEGIN@8 # spent 9µs making 1 call to warnings::import
9
10265µs275µs
# spent 43µs (10+32) within Regexp::Common::URI::file::BEGIN@10 which was called: # once (10µs+32µs) by Regexp::Common::import at line 10
use vars qw /$VERSION/;
# spent 43µs making 1 call to Regexp::Common::URI::file::BEGIN@10 # spent 32µs making 1 call to vars::import
1111µs$VERSION = '2010010201';
12
13
1411µsmy $scheme = 'file';
1513µsmy $uri = "(?k:(?k:$scheme)://(?k:(?k:(?:$host|localhost)?)" .
16 "(?k:/(?k:$fpath))))";
17
1814µs16µsregister_uri $scheme => $uri;
# spent 6µs making 1 call to Regexp::Common::URI::register_uri
19
2014µs199µspattern name => [qw (URI file)],
# spent 99µs making 1 call to Regexp::Common::pattern
21 create => $uri,
22 ;
23
2416µs1;
25
26__END__