← Index
NYTProf Performance Profile   « block view • line view • sub view »
For t/app_dpath.t
  Run on Tue Jun 5 15:25:28 2012
Reported on Tue Jun 5 15:26:00 2012

Filename/home/ss5/perl5/perlbrew/perls/perl-5.14.1/lib/site_perl/5.14.1/Test/Deep/RegexpVersion.pm
StatementsExecuted 6 statements in 273µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11154µs70µsTest::Deep::::BEGIN@1.3Test::Deep::BEGIN@1.3
11128µs56µsTest::Deep::::BEGIN@2.4Test::Deep::BEGIN@2.4
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1293µs286µs
# spent 70µs (54+16) within Test::Deep::BEGIN@1.3 which was called: # once (54µs+16µs) by Test::Deep::BEGIN@9 at line 1
use strict;
# spent 70µs making 1 call to Test::Deep::BEGIN@1.3 # spent 16µs making 1 call to strict::import
22164µs283µs
# spent 56µs (28+27) within Test::Deep::BEGIN@2.4 which was called: # once (28µs+27µs) by Test::Deep::BEGIN@9 at line 2
use warnings;
# spent 56µs making 1 call to Test::Deep::BEGIN@2.4 # spent 27µs making 1 call to warnings::import
3
4package Test::Deep::RegexpVersion;
5
6# Older versions of Perl treated Regexp refs as opaque scalars blessed
7# into the "Regexp" class. Several bits of code need this so we
8# centralise the test for that kind of version.
916µsour $OldStyle = ($] < 5.011);
10
1119µs1;