← Index
NYTProf Performance Profile   « block view • line view • sub view »
For /usr/share/koha/opac/cgi-bin/opac/opac-search.pl
  Run on Tue Oct 15 17:10:45 2013
Reported on Tue Oct 15 17:12:49 2013

Filename/usr/share/perl5/YAML/Tag.pm
StatementsExecuted 11 statements in 207µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11119µs91µsYAML::Tag::::BEGIN@8YAML::Tag::BEGIN@8
11119µs23µsYAML::Tag::::BEGIN@3YAML::Tag::BEGIN@3
11115µs27µsYAML::Tag::::BEGIN@4YAML::Tag::BEGIN@4
0000s0sYAML::Tag::::__ANON__[:8]YAML::Tag::__ANON__[:8]
0000s0sYAML::Tag::::canonicalYAML::Tag::canonical
0000s0sYAML::Tag::::newYAML::Tag::new
0000s0sYAML::Tag::::shortYAML::Tag::short
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package YAML::Tag;
2
3327µs226µs
# spent 23µs (19+4) within YAML::Tag::BEGIN@3 which was called: # once (19µs+4µs) by YAML::Node::BEGIN@7 at line 3
use strict;
# spent 23µs making 1 call to YAML::Tag::BEGIN@3 # spent 4µs making 1 call to strict::import
4364µs238µs
# spent 27µs (15+12) within YAML::Tag::BEGIN@4 which was called: # once (15µs+12µs) by YAML::Node::BEGIN@7 at line 4
use warnings;
# spent 27µs making 1 call to YAML::Tag::BEGIN@4 # spent 12µs making 1 call to warnings::import
5
61700nsour $VERSION = '0.71';
7
83112µs2163µs
# spent 91µs (19+72) within YAML::Tag::BEGIN@8 which was called: # once (19µs+72µs) by YAML::Node::BEGIN@7 at line 8
use overload '""' => sub { ${$_[0]} };
# spent 91µs making 1 call to YAML::Tag::BEGIN@8 # spent 72µs making 1 call to overload::import
9
10sub new {
11 my ($class, $self) = @_;
12 bless \$self, $class
13}
14
15sub short {
16 ${$_[0]}
17}
18
19sub canonical {
20 ${$_[0]}
21}
22
2313µs1;
24
25__END__