← 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 11:58:52 2013
Reported on Tue Oct 15 12:01:07 2013

Filename/usr/share/perl5/YAML/Tag.pm
StatementsExecuted 11 statements in 211µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11179µs83µsYAML::Tag::::BEGIN@3YAML::Tag::BEGIN@3
11116µs61µsYAML::Tag::::BEGIN@8YAML::Tag::BEGIN@8
11111µs25µ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
3333µs286µs
# spent 83µs (79+4) within YAML::Tag::BEGIN@3 which was called: # once (79µs+4µs) by YAML::Node::BEGIN@7 at line 3
use strict;
# spent 83µs making 1 call to YAML::Tag::BEGIN@3 # spent 4µs making 1 call to strict::import
4366µs238µs
# spent 25µs (11+13) within YAML::Tag::BEGIN@4 which was called: # once (11µs+13µs) by YAML::Node::BEGIN@7 at line 4
use warnings;
# spent 25µs making 1 call to YAML::Tag::BEGIN@4 # spent 13µs making 1 call to warnings::import
5
61700nsour $VERSION = '0.71';
7
83108µs2106µs
# spent 61µs (16+45) within YAML::Tag::BEGIN@8 which was called: # once (16µs+45µs) by YAML::Node::BEGIN@7 at line 8
use overload '""' => sub { ${$_[0]} };
# spent 61µs making 1 call to YAML::Tag::BEGIN@8 # spent 45µ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__