← Index
NYTProf Performance Profile   « line view »
For /usr/local/bin/sa-learn
  Run on Sun Nov 5 02:36:06 2017
Reported on Sun Nov 5 02:56:21 2017

Filename/usr/local/lib/perl5/5.24/mach/MIME/QuotedPrint.pm
StatementsExecuted 13 statements in 404µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11149µs62µsMIME::QuotedPrint::::BEGIN@3MIME::QuotedPrint::BEGIN@3
11133µs198µsMIME::QuotedPrint::::BEGIN@12MIME::QuotedPrint::BEGIN@12
11131µs234µsMIME::QuotedPrint::::BEGIN@4MIME::QuotedPrint::BEGIN@4
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package MIME::QuotedPrint;
2
3287µs274µs
# spent 62µs (49+12) within MIME::QuotedPrint::BEGIN@3 which was called: # once (49µs+12µs) by Razor2::Preproc::deNewline::BEGIN@2 at line 3
use strict;
# spent 62µs making 1 call to MIME::QuotedPrint::BEGIN@3 # spent 12µs making 1 call to strict::import
42135µs2436µs
# spent 234µs (31+203) within MIME::QuotedPrint::BEGIN@4 which was called: # once (31µs+203µs) by Razor2::Preproc::deNewline::BEGIN@2 at line 4
use vars qw(@ISA @EXPORT $VERSION);
# spent 234µs making 1 call to MIME::QuotedPrint::BEGIN@4 # spent 203µs making 1 call to vars::import
5
612µsrequire Exporter;
7118µs@ISA = qw(Exporter);
813µs@EXPORT = qw(encode_qp decode_qp);
9
1012µs$VERSION = "3.13";
11
122129µs2364µs
# spent 198µs (33+165) within MIME::QuotedPrint::BEGIN@12 which was called: # once (33µs+165µs) by Razor2::Preproc::deNewline::BEGIN@2 at line 12
use MIME::Base64; # will load XS version of {en,de}code_qp()
# spent 198µs making 1 call to MIME::QuotedPrint::BEGIN@12 # spent 165µs making 1 call to Exporter::import
13
14114µs*encode = \&encode_qp;
1512µs*decode = \&decode_qp;
16
17112µs1;
18
19__END__