Filename | /home/hejohns/perl5/lib/perl5/x86_64-linux-gnu-thread-multi/Encode/Encoding.pm |
Statements | Executed 135889 statements in 556ms |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
135345 | 2 | 1 | 778ms | 778ms | renewed | Encode::Encoding::
105 | 1 | 1 | 1.57ms | 1.57ms | renew | Encode::Encoding::
105 | 1 | 1 | 227µs | 227µs | needs_lines | Encode::Encoding::
1 | 1 | 1 | 9µs | 10µs | BEGIN@12 | Encode::Encoding::
1 | 1 | 1 | 9µs | 11µs | BEGIN@4 | Encode::Encoding::
1 | 1 | 1 | 7µs | 24µs | BEGIN@5 | Encode::Encoding::
1 | 1 | 1 | 5µs | 34µs | BEGIN@14 | Encode::Encoding::
1 | 1 | 1 | 2µs | 2µs | CORE:match (opcode) | Encode::Encoding::
1 | 1 | 1 | 2µs | 2µs | BEGIN@10 | Encode::Encoding::
1 | 1 | 1 | 1µs | 1µs | name | Encode::Encoding::
1 | 1 | 1 | 1µs | 1µs | BEGIN@11 | Encode::Encoding::
1 | 1 | 1 | 300ns | 300ns | __ANON__ (xsub) | Encode::Encoding::
0 | 0 | 0 | 0s | 0s | DESTROY | Encode::Encoding::
0 | 0 | 0 | 0s | 0s | Define | Encode::Encoding::
0 | 0 | 0 | 0s | 0s | decode | Encode::Encoding::
0 | 0 | 0 | 0s | 0s | encode | Encode::Encoding::
0 | 0 | 0 | 0s | 0s | fromUnicode | Encode::Encoding::
0 | 0 | 0 | 0s | 0s | mime_name | Encode::Encoding::
0 | 0 | 0 | 0s | 0s | perlio_ok | Encode::Encoding::
0 | 0 | 0 | 0s | 0s | toUnicode | Encode::Encoding::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | package Encode::Encoding; | ||||
2 | |||||
3 | # Base class for classes which implement encodings | ||||
4 | 2 | 19µs | 2 | 13µs | # spent 11µs (9+2) within Encode::Encoding::BEGIN@4 which was called:
# once (9µs+2µs) by parent::import at line 4 # spent 11µs making 1 call to Encode::Encoding::BEGIN@4
# spent 2µs making 1 call to strict::import |
5 | 2 | 53µs | 2 | 42µs | # spent 24µs (7+17) within Encode::Encoding::BEGIN@5 which was called:
# once (7µs+17µs) by parent::import at line 5 # spent 24µs making 1 call to Encode::Encoding::BEGIN@5
# spent 17µs making 1 call to warnings::import |
6 | 3 | 10µs | 1 | 2µs | our $VERSION = do { my @r = ( q$Revision: 2.8 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r }; # spent 2µs making 1 call to Encode::Encoding::CORE:match |
7 | |||||
8 | 1 | 500ns | our @CARP_NOT = qw(Encode Encode::Encoder); | ||
9 | |||||
10 | 2 | 11µs | 1 | 2µs | # spent 2µs within Encode::Encoding::BEGIN@10 which was called:
# once (2µs+0s) by parent::import at line 10 # spent 2µs making 1 call to Encode::Encoding::BEGIN@10 |
11 | 2 | 13µs | 1 | 1µs | # spent 1µs within Encode::Encoding::BEGIN@11 which was called:
# once (1µs+0s) by parent::import at line 11 # spent 1µs making 1 call to Encode::Encoding::BEGIN@11 |
12 | 2 | 26µs | 2 | 10µs | # spent 10µs (9+300ns) within Encode::Encoding::BEGIN@12 which was called:
# once (9µs+300ns) by parent::import at line 12 # spent 10µs making 1 call to Encode::Encoding::BEGIN@12
# spent 300ns making 1 call to Encode::Encoding::__ANON__ |
13 | |||||
14 | 2 | 229µs | 2 | 63µs | # spent 34µs (5+29) within Encode::Encoding::BEGIN@14 which was called:
# once (5µs+29µs) by parent::import at line 14 # spent 34µs making 1 call to Encode::Encoding::BEGIN@14
# spent 29µs making 1 call to constant::import |
15 | |||||
16 | sub Define { | ||||
17 | my $obj = shift; | ||||
18 | my $canonical = shift; | ||||
19 | $obj = bless { Name => $canonical }, $obj unless ref $obj; | ||||
20 | |||||
21 | # warn "$canonical => $obj\n"; | ||||
22 | Encode::define_encoding( $obj, $canonical, @_ ); | ||||
23 | } | ||||
24 | |||||
25 | 1 | 2µs | # spent 1µs within Encode::Encoding::name which was called:
# once (1µs+0s) by IPC::Cmd::can_run at line 15 of ExtUtils/MakeMaker.pm | ||
26 | |||||
27 | sub mime_name { | ||||
28 | return Encode::MIME::Name::get_mime_name(shift->name); | ||||
29 | } | ||||
30 | |||||
31 | # spent 1.57ms within Encode::Encoding::renew which was called 105 times, avg 15µs/call:
# 105 times (1.57ms+0s) by Text::CSV_XS::CORE:open at line 1240 of Text/CSV_XS.pm, avg 15µs/call | ||||
32 | 105 | 24µs | my $self = shift; | ||
33 | 105 | 847µs | my $clone = bless {%$self} => ref($self); | ||
34 | 105 | 62µs | $clone->{renewed}++; # so the caller can see it | ||
35 | DEBUG and warn $clone->{renewed}; | ||||
36 | 105 | 167µs | return $clone; | ||
37 | } | ||||
38 | |||||
39 | 135345 | 554ms | # spent 778ms within Encode::Encoding::renewed which was called 135345 times, avg 6µs/call:
# 135240 times (778ms+0s) by Encode::utf8::decode at line 1047 of Text/CSV_XS.pm, avg 6µs/call
# 105 times (129µs+0s) by Encode::utf8::decode at line 1421 of Text/CSV_XS.pm, avg 1µs/call | ||
40 | |||||
41 | 1 | 600ns | *new_sequence = \&renew; | ||
42 | |||||
43 | 105 | 150µs | # spent 227µs within Encode::Encoding::needs_lines which was called 105 times, avg 2µs/call:
# 105 times (227µs+0s) by Text::CSV_XS::CORE:open at line 1240 of Text/CSV_XS.pm, avg 2µs/call | ||
44 | |||||
45 | sub perlio_ok { | ||||
46 | return eval { require PerlIO::encoding } ? 1 : 0; | ||||
47 | } | ||||
48 | |||||
49 | # (Temporary|legacy) methods | ||||
50 | |||||
51 | sub toUnicode { shift->decode(@_) } | ||||
52 | sub fromUnicode { shift->encode(@_) } | ||||
53 | |||||
54 | # | ||||
55 | # Needs to be overloaded or just croak | ||||
56 | # | ||||
57 | |||||
58 | sub encode { | ||||
59 | my $obj = shift; | ||||
60 | my $class = ref($obj) ? ref($obj) : $obj; | ||||
61 | Carp::croak( $class . "->encode() not defined!" ); | ||||
62 | } | ||||
63 | |||||
64 | sub decode { | ||||
65 | my $obj = shift; | ||||
66 | my $class = ref($obj) ? ref($obj) : $obj; | ||||
67 | Carp::croak( $class . "->encode() not defined!" ); | ||||
68 | } | ||||
69 | |||||
70 | sub DESTROY { } | ||||
71 | |||||
72 | 1 | 5µs | 1; | ||
73 | __END__ | ||||
# spent 2µs within Encode::Encoding::CORE:match which was called:
# once (2µs+0s) by parent::import at line 6 | |||||
# spent 300ns within Encode::Encoding::__ANON__ which was called:
# once (300ns+0s) by Encode::Encoding::BEGIN@12 at line 12 |