← Index
NYTProf Performance Profile   « block view • line view • sub view »
For xt/tapper-mcp-scheduler-with-db-longrun.t
  Run on Tue May 22 17:18:39 2012
Reported on Tue May 22 17:22:36 2012

Filename/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3/YAML/Tag.pm
StatementsExecuted 11 statements in 136µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11111µs49µsYAML::Tag::::BEGIN@7 YAML::Tag::BEGIN@7
11111µs13µsYAML::Node::::BEGIN@1YAML::Node::BEGIN@1
1116µs13µsYAML::Node::::BEGIN@2YAML::Node::BEGIN@2
0000s0sYAML::Tag::::__ANON__[:7] YAML::Tag::__ANON__[:7]
0000s0sYAML::Tag::::canonical YAML::Tag::canonical
0000s0sYAML::Tag::::new YAML::Tag::new
0000s0sYAML::Tag::::short YAML::Tag::short
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1319µs215µs
# spent 13µs (11+2) within YAML::Node::BEGIN@1 which was called: # once (11µs+2µs) by YAML::Node::BEGIN@7 at line 1
use strict;
# spent 13µs making 1 call to YAML::Node::BEGIN@1 # spent 2µs making 1 call to strict::import
2346µs220µs
# spent 13µs (6+7) within YAML::Node::BEGIN@2 which was called: # once (6µs+7µs) by YAML::Node::BEGIN@7 at line 2
use warnings;
# spent 13µs making 1 call to YAML::Node::BEGIN@2 # spent 7µs making 1 call to warnings::import
3package YAML::Tag;
4
51400nsour $VERSION = '0.81';
6
7368µs286µs
# spent 49µs (11+37) within YAML::Tag::BEGIN@7 which was called: # once (11µs+37µs) by YAML::Node::BEGIN@7 at line 7
use overload '""' => sub { ${$_[0]} };
# spent 49µs making 1 call to YAML::Tag::BEGIN@7 # spent 37µs making 1 call to overload::import
8
9sub new {
10 my ($class, $self) = @_;
11 bless \$self, $class
12}
13
14sub short {
15 ${$_[0]}
16}
17
18sub canonical {
19 ${$_[0]}
20}
21
2212µs1;
23
24__END__