← Index
NYTProf Performance Profile   « block view • line view • sub view »
For mentat.storage.mongo.pl
  Run on Tue Jun 24 10:04:38 2014
Reported on Tue Jun 24 10:05:14 2014

Filename/usr/local/lib/perl/5.14.2/Class/MOP/Mixin.pm
StatementsExecuted 46 statements in 262µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11119µs22µsClass::MOP::Mixin::::BEGIN@9Class::MOP::Mixin::BEGIN@9
1118µs8µsClass::MOP::Mixin::::BEGIN@2Class::MOP::Mixin::BEGIN@2
1117µs12µsClass::MOP::Mixin::::BEGIN@10Class::MOP::Mixin::BEGIN@10
1116µs43µsClass::MOP::Mixin::::BEGIN@12Class::MOP::Mixin::BEGIN@12
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Class::MOP::Mixin;
2
# spent 8µs within Class::MOP::Mixin::BEGIN@2 which was called: # once (8µs+0s) by base::import at line 4
BEGIN {
315µs $Class::MOP::Mixin::AUTHORITY = 'cpan:STEVAN';
4136µs18µs}
# spent 8µs making 1 call to Class::MOP::Mixin::BEGIN@2
5{
621µs $Class::MOP::Mixin::VERSION = '2.1005';
7}
8
9223µs224µs
# spent 22µs (19+3) within Class::MOP::Mixin::BEGIN@9 which was called: # once (19µs+3µs) by base::import at line 9
use strict;
# spent 22µs making 1 call to Class::MOP::Mixin::BEGIN@9 # spent 3µs making 1 call to strict::import
10221µs216µs
# spent 12µs (7+5) within Class::MOP::Mixin::BEGIN@10 which was called: # once (7µs+5µs) by base::import at line 10
use warnings;
# spent 12µs making 1 call to Class::MOP::Mixin::BEGIN@10 # spent 5µs making 1 call to warnings::import
11
12258µs280µs
# spent 43µs (6+37) within Class::MOP::Mixin::BEGIN@12 which was called: # once (6µs+37µs) by base::import at line 12
use Scalar::Util 'blessed';
# spent 43µs making 1 call to Class::MOP::Mixin::BEGIN@12 # spent 37µs making 1 call to Exporter::import
13
14sub meta {
1536115µs require Class::MOP::Class;
16361.19ms Class::MOP::Class->initialize( blessed( $_[0] ) || $_[0] );
# spent 1.18ms making 18 calls to Class::MOP::Class::initialize, avg 66µs/call # spent 10µs making 18 calls to Scalar::Util::blessed, avg 578ns/call
17}
18
1912µs1;
20
21# ABSTRACT: Base class for mixin classes
22
23__END__