← Index
NYTProf Performance Profile   « line view »
For fastest.pl
  Run on Fri Jan 31 20:48:16 2014
Reported on Fri Jan 31 20:49:40 2014

Filename/opt/perl-5.18.1/lib/site_perl/5.18.1/darwin-thread-multi-2level/Class/MOP/Mixin.pm
StatementsExecuted 46 statements in 366µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11111µs11µsClass::MOP::Mixin::::BEGIN@2Class::MOP::Mixin::BEGIN@2
1119µs14µsClass::MOP::Mixin::::BEGIN@10Class::MOP::Mixin::BEGIN@10
1118µs38µsClass::MOP::Mixin::::BEGIN@12Class::MOP::Mixin::BEGIN@12
1118µs28µsClass::MOP::Mixin::::BEGIN@9Class::MOP::Mixin::BEGIN@9
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 11µs within Class::MOP::Mixin::BEGIN@2 which was called: # once (11µs+0s) by base::import at line 4
BEGIN {
316µs $Class::MOP::Mixin::AUTHORITY = 'cpan:STEVAN';
4144µs111µs}
# spent 11µs making 1 call to Class::MOP::Mixin::BEGIN@2
5{
621µs $Class::MOP::Mixin::VERSION = '2.1005';
7}
8
9231µs248µs
# spent 28µs (8+20) within Class::MOP::Mixin::BEGIN@9 which was called: # once (8µs+20µs) by base::import at line 9
use strict;
# spent 28µs making 1 call to Class::MOP::Mixin::BEGIN@9 # spent 20µs making 1 call to strict::import
10231µs218µs
# spent 14µs (9+5) within Class::MOP::Mixin::BEGIN@10 which was called: # once (9µs+5µs) by base::import at line 10
use warnings;
# spent 14µs making 1 call to Class::MOP::Mixin::BEGIN@10 # spent 5µs making 1 call to warnings::import
11
12288µs267µs
# spent 38µs (8+29) within Class::MOP::Mixin::BEGIN@12 which was called: # once (8µs+29µs) by base::import at line 12
use Scalar::Util 'blessed';
# spent 38µs making 1 call to Class::MOP::Mixin::BEGIN@12 # spent 29µs making 1 call to Exporter::import
13
14sub meta {
151810µs require Class::MOP::Class;
1618151µs361.59ms Class::MOP::Class->initialize( blessed( $_[0] ) || $_[0] );
# spent 1.58ms making 18 calls to Class::MOP::Class::initialize, avg 88µs/call # spent 12µs making 18 calls to Scalar::Util::blessed, avg 650ns/call
17}
18
1914µs1;
20
21# ABSTRACT: Base class for mixin classes
22
23__END__