← Index
NYTProf Performance Profile   « line view »
For svc/members/upsert
  Run on Tue Jan 13 11:50:22 2015
Reported on Tue Jan 13 12:09:50 2015

Filename/usr/lib/x86_64-linux-gnu/perl/5.20/MIME/QuotedPrint.pm
StatementsExecuted 13 statements in 115µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11112µs23µsMIME::QuotedPrint::::BEGIN@3MIME::QuotedPrint::BEGIN@3
1117µs31µsMIME::QuotedPrint::::BEGIN@12MIME::QuotedPrint::BEGIN@12
1116µs37µ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
3226µs234µs
# spent 23µs (12+11) within MIME::QuotedPrint::BEGIN@3 which was called: # once (12µs+11µs) by C4::Letters::BEGIN@23 at line 3
use strict;
# spent 23µs making 1 call to MIME::QuotedPrint::BEGIN@3 # spent 11µs making 1 call to strict::import
4243µs268µs
# spent 37µs (6+31) within MIME::QuotedPrint::BEGIN@4 which was called: # once (6µs+31µs) by C4::Letters::BEGIN@23 at line 4
use vars qw(@ISA @EXPORT $VERSION);
# spent 37µs making 1 call to MIME::QuotedPrint::BEGIN@4 # spent 31µs making 1 call to vars::import
5
61500nsrequire Exporter;
715µs@ISA = qw(Exporter);
81500ns@EXPORT = qw(encode_qp decode_qp);
9
101200ns$VERSION = "3.13";
11
12235µs256µs
# spent 31µs (7+25) within MIME::QuotedPrint::BEGIN@12 which was called: # once (7µs+25µs) by C4::Letters::BEGIN@23 at line 12
use MIME::Base64; # will load XS version of {en,de}code_qp()
# spent 31µs making 1 call to MIME::QuotedPrint::BEGIN@12 # spent 25µs making 1 call to Exporter::import
13
141800ns*encode = \&encode_qp;
151100ns*decode = \&decode_qp;
16
1714µs1;
18
19__END__