← 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:08 2014

Filename/usr/lib/perl/5.14/MIME/QuotedPrint.pm
StatementsExecuted 13 statements in 214µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111295µs530µsMIME::QuotedPrint::::BEGIN@12MIME::QuotedPrint::BEGIN@12
11117µs20µsMIME::QuotedPrint::::BEGIN@3MIME::QuotedPrint::BEGIN@3
1117µs45µ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
3229µs223µs
# spent 20µs (17+3) within MIME::QuotedPrint::BEGIN@3 which was called: # once (17µs+3µs) by Mail::Sendmail::BEGIN@2 at line 3
use strict;
# spent 20µs making 1 call to MIME::QuotedPrint::BEGIN@3 # spent 3µs making 1 call to strict::import
4254µs282µs
# spent 45µs (7+37) within MIME::QuotedPrint::BEGIN@4 which was called: # once (7µs+37µs) by Mail::Sendmail::BEGIN@2 at line 4
use vars qw(@ISA @EXPORT $VERSION);
# spent 45µs making 1 call to MIME::QuotedPrint::BEGIN@4 # spent 37µs making 1 call to vars::import
5
61600nsrequire Exporter;
715µs@ISA = qw(Exporter);
81500ns@EXPORT = qw(encode_qp decode_qp);
9
101200ns$VERSION = "3.13";
11
122119µs2560µs
# spent 530µs (295+235) within MIME::QuotedPrint::BEGIN@12 which was called: # once (295µs+235µs) by Mail::Sendmail::BEGIN@2 at line 12
use MIME::Base64; # will load XS version of {en,de}code_qp()
# spent 530µs making 1 call to MIME::QuotedPrint::BEGIN@12 # spent 30µs making 1 call to Exporter::import
13
1411µs*encode = \&encode_qp;
151400ns*decode = \&decode_qp;
16
1715µs1;
18
19__END__