← Index
NYTProf Performance Profile   « line view »
For v5.pl
  Run on Sun Sep 22 16:32:09 2019
Reported on Sun Sep 22 16:32:53 2019

Filename/usr/share/perl/5.26/Carp.pm
StatementsExecuted 56 statements in 2.30ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11115µs22µsCarp::::BEGIN@6 Carp::BEGIN@6
2218µs8µsCarp::::_fetch_sub Carp::_fetch_sub
1116µs6µsCarp::::BEGIN@3 Carp::BEGIN@3
1114µs11µsCarp::::BEGIN@592 Carp::BEGIN@592
1114µs8µsCarp::::BEGIN@73 Carp::BEGIN@73
1114µs8µsCarp::::BEGIN@605 Carp::BEGIN@605
1114µs9µsCarp::::BEGIN@61 Carp::BEGIN@61
1113µs3µsCarp::::BEGIN@49 Carp::BEGIN@49
1113µs12µsCarp::::BEGIN@132 Carp::BEGIN@132
1113µs5µsCarp::::BEGIN@4 Carp::BEGIN@4
1113µs3µsCarp::::BEGIN@172 Carp::BEGIN@172
1113µs5µsCarp::::BEGIN@5 Carp::BEGIN@5
1113µs7µsCarp::::BEGIN@612 Carp::BEGIN@612
0000s0sCarp::::__ANON__[:262] Carp::__ANON__[:262]
0000s0sCarp::::__ANON__[:273] Carp::__ANON__[:273]
0000s0sCarp::::__ANON__[:66] Carp::__ANON__[:66]
0000s0sCarp::::__ANON__[:86] Carp::__ANON__[:86]
0000s0sCarp::::_cgc Carp::_cgc
0000s0sCarp::::caller_info Carp::caller_info
0000s0sCarp::::carp Carp::carp
0000s0sCarp::::cluck Carp::cluck
0000s0sCarp::::confess Carp::confess
0000s0sCarp::::croak Carp::croak
0000s0sCarp::::export_fail Carp::export_fail
0000s0sCarp::::format_arg Carp::format_arg
0000s0sCarp::::get_status Carp::get_status
0000s0sCarp::::get_subname Carp::get_subname
0000s0sCarp::::long_error_loc Carp::long_error_loc
0000s0sCarp::::longmess Carp::longmess
0000s0sCarp::::longmess_heavy Carp::longmess_heavy
0000s0sCarp::::ret_backtrace Carp::ret_backtrace
0000s0sCarp::::ret_summary Carp::ret_summary
0000s0sCarp::::short_error_loc Carp::short_error_loc
0000s0sCarp::::shortmess Carp::shortmess
0000s0sCarp::::shortmess_heavy Carp::shortmess_heavy
0000s0sCarp::::str_len_trim Carp::str_len_trim
0000s0sCarp::::trusts Carp::trusts
0000s0sCarp::::trusts_directly Carp::trusts_directly
0000s0sRegexp::::CARP_TRACERegexp::CARP_TRACE
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Carp;
2
3220µs16µs
# spent 6µs within Carp::BEGIN@3 which was called: # once (6µs+0s) by Function::Parameters::BEGIN@6 at line 3
{ use 5.006; }
# spent 6µs making 1 call to Carp::BEGIN@3
4311µs26µs
# spent 5µs (3+2) within Carp::BEGIN@4 which was called: # once (3µs+2µs) by Function::Parameters::BEGIN@6 at line 4
use strict;
# spent 5µs making 1 call to Carp::BEGIN@4 # spent 2µs making 1 call to strict::import
5238µs27µs
# spent 5µs (3+2) within Carp::BEGIN@5 which was called: # once (3µs+2µs) by Function::Parameters::BEGIN@6 at line 5
use warnings;
# spent 5µs making 1 call to Carp::BEGIN@5 # spent 2µs making 1 call to warnings::import
6
# spent 22µs (15+7) within Carp::BEGIN@6 which was called: # once (15µs+7µs) by Function::Parameters::BEGIN@6 at line 26
BEGIN {
7 # Very old versions of warnings.pm load Carp. This can go wrong due
8 # to the circular dependency. If warnings is invoked before Carp,
9 # then warnings starts by loading Carp, then Carp (above) tries to
10 # invoke warnings, and gets nothing because warnings is in the process
11 # of loading and hasn't defined its import method yet. If we were
12 # only turning on warnings ("use warnings" above) this wouldn't be too
13 # bad, because Carp would just gets the state of the -w switch and so
14 # might not get some warnings that it wanted. The real problem is
15 # that we then want to turn off Unicode warnings, but "no warnings
16 # 'utf8'" won't be effective if we're in this circular-dependency
17 # situation. So, if warnings.pm is an affected version, we turn
18 # off all warnings ourselves by directly setting ${^WARNING_BITS}.
19 # On unaffected versions, we turn off just Unicode warnings, via
20 # the proper API.
21111µs if(!defined($warnings::VERSION) || eval($warnings::VERSION) < 1.06) {
# spent 1µs executing statements in string eval
22 ${^WARNING_BITS} = "";
23 } else {
2411µs16µs "warnings"->unimport("utf8");
# spent 6µs making 1 call to warnings::unimport
25 }
26191µs122µs}
# spent 22µs making 1 call to Carp::BEGIN@6
27
28
# spent 8µs within Carp::_fetch_sub which was called 2 times, avg 4µs/call: # once (5µs+0s) by Carp::BEGIN@61 at line 62 # once (3µs+0s) by Carp::BEGIN@73 at line 74
sub _fetch_sub { # fetch sub without autovivifying
292900ns my($pack, $sub) = @_;
302500ns $pack .= '::';
31 # only works with top-level packages
322700ns return unless exists($::{$pack});
332800ns for ($::{$pack}) {
3422µs return unless ref \$_ eq 'GLOB' && *$_{HASH} && exists $$_{$sub};
352600ns for ($$_{$sub}) {
36 return ref \$_ eq 'GLOB' ? *$_{CODE} : undef
3725µs }
38 }
39}
40
41# UTF8_REGEXP_PROBLEM is a compile-time constant indicating whether Carp
42# must avoid applying a regular expression to an upgraded (is_utf8)
43# string. There are multiple problems, on different Perl versions,
44# that require this to be avoided. All versions prior to 5.13.8 will
45# load utf8_heavy.pl for the swash system, even if the regexp doesn't
46# use character classes. Perl 5.6 and Perls [5.11.2, 5.13.11) exhibit
47# specific problems when Carp is being invoked in the aftermath of a
48# syntax error.
49
# spent 3µs within Carp::BEGIN@49 which was called: # once (3µs+0s) by Function::Parameters::BEGIN@6 at line 55
BEGIN {
5014µs if("$]" < 5.013011) {
51 *UTF8_REGEXP_PROBLEM = sub () { 1 };
52 } else {
531600ns *UTF8_REGEXP_PROBLEM = sub () { 0 };
54 }
55142µs13µs}
# spent 3µs making 1 call to Carp::BEGIN@49
56
57# is_utf8() is essentially the utf8::is_utf8() function, which indicates
58# whether a string is represented in the upgraded form (using UTF-8
59# internally). As utf8::is_utf8() is only available from Perl 5.8
60# onwards, extra effort is required here to make it work on Perl 5.6.
61
# spent 9µs (4+5) within Carp::BEGIN@61 which was called: # once (4µs+5µs) by Function::Parameters::BEGIN@6 at line 68
BEGIN {
6212µs15µs if(defined(my $sub = _fetch_sub utf8 => 'is_utf8')) {
# spent 5µs making 1 call to Carp::_fetch_sub
63 *is_utf8 = $sub;
64 } else {
65 # black magic for perl 5.6
66 *is_utf8 = sub { unpack("C", "\xaa".$_[0]) != 170 };
67 }
68167µs19µs}
# spent 9µs making 1 call to Carp::BEGIN@61
69
70# The downgrade() function defined here is to be used for attempts to
71# downgrade where it is acceptable to fail. It must be called with a
72# second argument that is a true value.
73
# spent 8µs (4+3) within Carp::BEGIN@73 which was called: # once (4µs+3µs) by Function::Parameters::BEGIN@6 at line 88
BEGIN {
7412µs13µs if(defined(my $sub = _fetch_sub utf8 => 'downgrade')) {
# spent 3µs making 1 call to Carp::_fetch_sub
75 *downgrade = \&{"utf8::downgrade"};
76 } else {
77 *downgrade = sub {
78 my $r = "";
79 my $l = length($_[0]);
80 for(my $i = 0; $i != $l; $i++) {
81 my $o = ord(substr($_[0], $i, 1));
82 return if $o > 255;
83 $r .= chr($o);
84 }
85 $_[0] = $r;
86 };
87 }
881101µs18µs}
# spent 8µs making 1 call to Carp::BEGIN@73
89
901200nsour $VERSION = '1.42';
911800ns$VERSION =~ tr/_//d;
92
931100nsour $MaxEvalLen = 0;
941100nsour $Verbose = 0;
951100nsour $CarpLevel = 0;
961100nsour $MaxArgLen = 64; # How much of each argument to print. 0 = all.
9710sour $MaxArgNums = 8; # How many arguments to print. 0 = all.
981100nsour $RefArgFormatter = undef; # allow caller to format reference arguments
99
1001342µsrequire Exporter;
10115µsour @ISA = ('Exporter');
1021500nsour @EXPORT = qw(confess croak carp);
1031400nsour @EXPORT_OK = qw(cluck verbose longmess shortmess);
1041100nsour @EXPORT_FAIL = qw(verbose); # hook to enable verbose mode
105
106# The members of %Internal are packages that are internal to perl.
107# Carp will not report errors from within these packages if it
108# can. The members of %CarpInternal are internal to Perl's warning
109# system. Carp will not report errors from within these packages
110# either, and will not report calls *to* these packages for carp and
111# croak. They replace $CarpLevel, which is deprecated. The
112# $Max(EvalLen|(Arg(Len|Nums)) variables are used to specify how the eval
113# text and function arguments should be formatted when printed.
114
115our %CarpInternal;
116our %Internal;
117
118# disable these by default, so they can live w/o require Carp
1191500ns$CarpInternal{Carp}++;
1201200ns$CarpInternal{warnings}++;
1211200ns$Internal{Exporter}++;
1221100ns$Internal{'Exporter::Heavy'}++;
123
124# if the caller specifies verbose usage ("perl -MCarp=verbose script.pl")
125# then the following method will be called by the Exporter which knows
126# to do this thanks to @EXPORT_FAIL, above. $_[1] will contain the word
127# 'verbose'.
128
129sub export_fail { shift; $Verbose = shift if $_[0] eq 'verbose'; @_ }
130
131sub _cgc {
1322176µs222µs
# spent 12µs (3+9) within Carp::BEGIN@132 which was called: # once (3µs+9µs) by Function::Parameters::BEGIN@6 at line 132
no strict 'refs';
# spent 12µs making 1 call to Carp::BEGIN@132 # spent 9µs making 1 call to strict::unimport
133 return \&{"CORE::GLOBAL::caller"} if defined &{"CORE::GLOBAL::caller"};
134 return;
135}
136
137sub longmess {
138 local($!, $^E);
139 # Icky backwards compatibility wrapper. :-(
140 #
141 # The story is that the original implementation hard-coded the
142 # number of call levels to go back, so calls to longmess were off
143 # by one. Other code began calling longmess and expecting this
144 # behaviour, so the replacement has to emulate that behaviour.
145 my $cgc = _cgc();
146 my $call_pack = $cgc ? $cgc->() : caller();
147 if ( $Internal{$call_pack} or $CarpInternal{$call_pack} ) {
148 return longmess_heavy(@_);
149 }
150 else {
151 local $CarpLevel = $CarpLevel + 1;
152 return longmess_heavy(@_);
153 }
154}
155
156our @CARP_NOT;
157
158sub shortmess {
159 local($!, $^E);
160 my $cgc = _cgc();
161
162 # Icky backwards compatibility wrapper. :-(
163 local @CARP_NOT = $cgc ? $cgc->() : caller();
164 shortmess_heavy(@_);
165}
166
167sub croak { die shortmess @_ }
168sub confess { die longmess @_ }
169sub carp { warn shortmess @_ }
170sub cluck { warn longmess @_ }
171
172
# spent 3µs within Carp::BEGIN@172 which was called: # once (3µs+0s) by Function::Parameters::BEGIN@6 at line 179
BEGIN {
17314µs if("$]" >= 5.015002 || ("$]" >= 5.014002 && "$]" < 5.015) ||
174 ("$]" >= 5.012005 && "$]" < 5.013)) {
175 *CALLER_OVERRIDE_CHECK_OK = sub () { 1 };
176 } else {
177 *CALLER_OVERRIDE_CHECK_OK = sub () { 0 };
178 }
17911.24ms13µs}
# spent 3µs making 1 call to Carp::BEGIN@172
180
181sub caller_info {
182 my $i = shift(@_) + 1;
183 my %call_info;
184 my $cgc = _cgc();
185 {
186 # Some things override caller() but forget to implement the
187 # @DB::args part of it, which we need. We check for this by
188 # pre-populating @DB::args with a sentinel which no-one else
189 # has the address of, so that we can detect whether @DB::args
190 # has been properly populated. However, on earlier versions
191 # of perl this check tickles a bug in CORE::caller() which
192 # leaks memory. So we only check on fixed perls.
193 @DB::args = \$i if CALLER_OVERRIDE_CHECK_OK;
194 package DB;
195
- -
200 unless ( defined $call_info{file} ) {
201 return ();
202 }
203
204 my $sub_name = Carp::get_subname( \%call_info );
205 if ( $call_info{has_args} ) {
206 my @args;
207 if (CALLER_OVERRIDE_CHECK_OK && @DB::args == 1
208 && ref $DB::args[0] eq ref \$i
209 && $DB::args[0] == \$i ) {
210 @DB::args = (); # Don't let anyone see the address of $i
211 local $@;
212 my $where = eval {
213 my $func = $cgc or return '';
214 my $gv =
215 (_fetch_sub B => 'svref_2object' or return '')
216 ->($func)->GV;
217 my $package = $gv->STASH->NAME;
218 my $subname = $gv->NAME;
219 return unless defined $package && defined $subname;
220
221 # returning CORE::GLOBAL::caller isn't useful for tracing the cause:
222 return if $package eq 'CORE::GLOBAL' && $subname eq 'caller';
223 " in &${package}::$subname";
224 } || '';
225 @args
226 = "** Incomplete caller override detected$where; \@DB::args were not set **";
227 }
228 else {
229 @args = @DB::args;
230 my $overflow;
231 if ( $MaxArgNums and @args > $MaxArgNums )
232 { # More than we want to show?
233 $#args = $MaxArgNums - 1;
234 $overflow = 1;
235 }
236
237 @args = map { Carp::format_arg($_) } @args;
238
239 if ($overflow) {
240 push @args, '...';
241 }
242 }
243
244 # Push the args onto the subroutine
245 $sub_name .= '(' . join( ', ', @args ) . ')';
246 }
247 $call_info{sub_name} = $sub_name;
248 return wantarray() ? %call_info : \%call_info;
249}
250
251# Transform an argument to a function into a string.
252our $in_recurse;
253sub format_arg {
254 my $arg = shift;
255
256 if ( ref($arg) ) {
257 # legitimate, let's not leak it.
258 if (!$in_recurse &&
259 do {
260 local $@;
261 local $in_recurse = 1;
262 local $SIG{__DIE__} = sub{};
263 eval {$arg->can('CARP_TRACE') }
264 })
265 {
266 return $arg->CARP_TRACE();
267 }
268 elsif (!$in_recurse &&
269 defined($RefArgFormatter) &&
270 do {
271 local $@;
272 local $in_recurse = 1;
273 local $SIG{__DIE__} = sub{};
274 eval {$arg = $RefArgFormatter->($arg); 1}
275 })
276 {
277 return $arg;
278 }
279 else
280 {
281 my $sub = _fetch_sub(overload => 'StrVal');
282 return $sub ? &$sub($arg) : "$arg";
283 }
284 }
285 return "undef" if !defined($arg);
286 downgrade($arg, 1);
287 return $arg if !(UTF8_REGEXP_PROBLEM && is_utf8($arg)) &&
288 $arg =~ /\A-?[0-9]+(?:\.[0-9]*)?(?:[eE][-+]?[0-9]+)?\z/;
289 my $suffix = "";
290 if ( 2 < $MaxArgLen and $MaxArgLen < length($arg) ) {
291 substr ( $arg, $MaxArgLen - 3 ) = "";
292 $suffix = "...";
293 }
294 if(UTF8_REGEXP_PROBLEM && is_utf8($arg)) {
295 for(my $i = length($arg); $i--; ) {
296 my $c = substr($arg, $i, 1);
297 my $x = substr($arg, 0, 0); # work around bug on Perl 5.8.{1,2}
298 if($c eq "\"" || $c eq "\\" || $c eq "\$" || $c eq "\@") {
299 substr $arg, $i, 0, "\\";
300 next;
301 }
302 my $o = ord($c);
303
304 # This code is repeated in Regexp::CARP_TRACE()
305 if ($] ge 5.007_003) {
306 substr $arg, $i, 1, sprintf("\\x{%x}", $o)
307 if utf8::native_to_unicode($o) < utf8::native_to_unicode(0x20)
308 || utf8::native_to_unicode($o) > utf8::native_to_unicode(0x7e);
309 } elsif (ord("A") == 65) {
310 substr $arg, $i, 1, sprintf("\\x{%x}", $o)
311 if $o < 0x20 || $o > 0x7e;
312 } else { # Early EBCDIC
313
314 # 3 EBCDIC code pages supported then; all controls but one
315 # are the code points below SPACE. The other one is 0x5F on
316 # POSIX-BC; FF on the other two.
317 substr $arg, $i, 1, sprintf("\\x{%x}", $o)
318 if $o < ord(" ") || ((ord ("^") == 106)
319 ? $o == 0x5f
320 : $o == 0xff);
321 }
322 }
323 } else {
324 $arg =~ s/([\"\\\$\@])/\\$1/g;
325 # This is all the ASCII printables spelled-out. It is portable to all
326 # Perl versions and platforms (such as EBCDIC). There are other more
327 # compact ways to do this, but may not work everywhere every version.
328 $arg =~ s/([^ !"\$\%#'()*+,\-.\/0123456789:;<=>?\@ABCDEFGHIJKLMNOPQRSTUVWXYZ\[\\\]^_`abcdefghijklmnopqrstuvwxyz\{|}~])/sprintf("\\x{%x}",ord($1))/eg;
329 }
330 downgrade($arg, 1);
331 return "\"".$arg."\"".$suffix;
332}
333
334sub Regexp::CARP_TRACE {
335 my $arg = "$_[0]";
336 downgrade($arg, 1);
337 if(UTF8_REGEXP_PROBLEM && is_utf8($arg)) {
338 for(my $i = length($arg); $i--; ) {
339 my $o = ord(substr($arg, $i, 1));
340 my $x = substr($arg, 0, 0); # work around bug on Perl 5.8.{1,2}
341
342 # This code is repeated in format_arg()
343 if ($] ge 5.007_003) {
344 substr $arg, $i, 1, sprintf("\\x{%x}", $o)
345 if utf8::native_to_unicode($o) < utf8::native_to_unicode(0x20)
346 || utf8::native_to_unicode($o) > utf8::native_to_unicode(0x7e);
347 } elsif (ord("A") == 65) {
348 substr $arg, $i, 1, sprintf("\\x{%x}", $o)
349 if $o < 0x20 || $o > 0x7e;
350 } else { # Early EBCDIC
351 substr $arg, $i, 1, sprintf("\\x{%x}", $o)
352 if $o < ord(" ") || ((ord ("^") == 106)
353 ? $o == 0x5f
354 : $o == 0xff);
355 }
356 }
357 } else {
358 # See comment in format_arg() about this same regex.
359 $arg =~ s/([^ !"\$\%#'()*+,\-.\/0123456789:;<=>?\@ABCDEFGHIJKLMNOPQRSTUVWXYZ\[\\\]^_`abcdefghijklmnopqrstuvwxyz\{|}~])/sprintf("\\x{%x}",ord($1))/eg;
360 }
361 downgrade($arg, 1);
362 my $suffix = "";
363 if($arg =~ /\A\(\?\^?([a-z]*)(?:-[a-z]*)?:(.*)\)\z/s) {
364 ($suffix, $arg) = ($1, $2);
365 }
366 if ( 2 < $MaxArgLen and $MaxArgLen < length($arg) ) {
367 substr ( $arg, $MaxArgLen - 3 ) = "";
368 $suffix = "...".$suffix;
369 }
370 return "qr($arg)$suffix";
371}
372
373# Takes an inheritance cache and a package and returns
374# an anon hash of known inheritances and anon array of
375# inheritances which consequences have not been figured
376# for.
377sub get_status {
378 my $cache = shift;
379 my $pkg = shift;
380 $cache->{$pkg} ||= [ { $pkg => $pkg }, [ trusts_directly($pkg) ] ];
381 return @{ $cache->{$pkg} };
382}
383
384# Takes the info from caller() and figures out the name of
385# the sub/require/eval
386sub get_subname {
387 my $info = shift;
388 if ( defined( $info->{evaltext} ) ) {
389 my $eval = $info->{evaltext};
390 if ( $info->{is_require} ) {
391 return "require $eval";
392 }
393 else {
394 $eval =~ s/([\\\'])/\\$1/g;
395 return "eval '" . str_len_trim( $eval, $MaxEvalLen ) . "'";
396 }
397 }
398
399 # this can happen on older perls when the sub (or the stash containing it)
400 # has been deleted
401 if ( !defined( $info->{sub} ) ) {
402 return '__ANON__::__ANON__';
403 }
404
405 return ( $info->{sub} eq '(eval)' ) ? 'eval {...}' : $info->{sub};
406}
407
408# Figures out what call (from the point of view of the caller)
409# the long error backtrace should start at.
410sub long_error_loc {
411 my $i;
412 my $lvl = $CarpLevel;
413 {
414 ++$i;
415 my $cgc = _cgc();
416 my @caller = $cgc ? $cgc->($i) : caller($i);
417 my $pkg = $caller[0];
418 unless ( defined($pkg) ) {
419
420 # This *shouldn't* happen.
421 if (%Internal) {
422 local %Internal;
423 $i = long_error_loc();
424 last;
425 }
426 elsif (defined $caller[2]) {
427 # this can happen when the stash has been deleted
428 # in that case, just assume that it's a reasonable place to
429 # stop (the file and line data will still be intact in any
430 # case) - the only issue is that we can't detect if the
431 # deleted package was internal (so don't do that then)
432 # -doy
433 redo unless 0 > --$lvl;
434 last;
435 }
436 else {
437 return 2;
438 }
439 }
440 redo if $CarpInternal{$pkg};
441 redo unless 0 > --$lvl;
442 redo if $Internal{$pkg};
443 }
444 return $i - 1;
445}
446
447sub longmess_heavy {
448 if ( ref( $_[0] ) ) { # don't break references as exceptions
449 return wantarray ? @_ : $_[0];
450 }
451 my $i = long_error_loc();
452 return ret_backtrace( $i, @_ );
453}
454
455# Returns a full stack backtrace starting from where it is
456# told.
457sub ret_backtrace {
458 my ( $i, @error ) = @_;
459 my $mess;
460 my $err = join '', @error;
461 $i++;
462
463 my $tid_msg = '';
464 if ( defined &threads::tid ) {
465 my $tid = threads->tid;
466 $tid_msg = " thread $tid" if $tid;
467 }
468
469 my %i = caller_info($i);
470 $mess = "$err at $i{file} line $i{line}$tid_msg";
471 if( defined $. ) {
472 local $@ = '';
473 local $SIG{__DIE__};
474 eval {
475 CORE::die;
476 };
477 if($@ =~ /^Died at .*(, <.*?> (?:line|chunk) \d+).$/ ) {
478 $mess .= $1;
479 }
480 }
481 $mess .= "\.\n";
482
483 while ( my %i = caller_info( ++$i ) ) {
484 $mess .= "\t$i{sub_name} called at $i{file} line $i{line}$tid_msg\n";
485 }
486
487 return $mess;
488}
489
490sub ret_summary {
491 my ( $i, @error ) = @_;
492 my $err = join '', @error;
493 $i++;
494
495 my $tid_msg = '';
496 if ( defined &threads::tid ) {
497 my $tid = threads->tid;
498 $tid_msg = " thread $tid" if $tid;
499 }
500
501 my %i = caller_info($i);
502 return "$err at $i{file} line $i{line}$tid_msg\.\n";
503}
504
505sub short_error_loc {
506 # You have to create your (hash)ref out here, rather than defaulting it
507 # inside trusts *on a lexical*, as you want it to persist across calls.
508 # (You can default it on $_[2], but that gets messy)
509 my $cache = {};
510 my $i = 1;
511 my $lvl = $CarpLevel;
512 {
513 my $cgc = _cgc();
514 my $called = $cgc ? $cgc->($i) : caller($i);
515 $i++;
516 my $caller = $cgc ? $cgc->($i) : caller($i);
517
518 if (!defined($caller)) {
519 my @caller = $cgc ? $cgc->($i) : caller($i);
520 if (@caller) {
521 # if there's no package but there is other caller info, then
522 # the package has been deleted - treat this as a valid package
523 # in this case
524 redo if defined($called) && $CarpInternal{$called};
525 redo unless 0 > --$lvl;
526 last;
527 }
528 else {
529 return 0;
530 }
531 }
532 redo if $Internal{$caller};
533 redo if $CarpInternal{$caller};
534 redo if $CarpInternal{$called};
535 redo if trusts( $called, $caller, $cache );
536 redo if trusts( $caller, $called, $cache );
537 redo unless 0 > --$lvl;
538 }
539 return $i - 1;
540}
541
542sub shortmess_heavy {
543 return longmess_heavy(@_) if $Verbose;
544 return @_ if ref( $_[0] ); # don't break references as exceptions
545 my $i = short_error_loc();
546 if ($i) {
547 ret_summary( $i, @_ );
548 }
549 else {
550 longmess_heavy(@_);
551 }
552}
553
554# If a string is too long, trims it with ...
555sub str_len_trim {
556 my $str = shift;
557 my $max = shift || 0;
558 if ( 2 < $max and $max < length($str) ) {
559 substr( $str, $max - 3 ) = '...';
560 }
561 return $str;
562}
563
564# Takes two packages and an optional cache. Says whether the
565# first inherits from the second.
566#
567# Recursive versions of this have to work to avoid certain
568# possible endless loops, and when following long chains of
569# inheritance are less efficient.
570sub trusts {
571 my $child = shift;
572 my $parent = shift;
573 my $cache = shift;
574 my ( $known, $partial ) = get_status( $cache, $child );
575
576 # Figure out consequences until we have an answer
577 while ( @$partial and not exists $known->{$parent} ) {
578 my $anc = shift @$partial;
579 next if exists $known->{$anc};
580 $known->{$anc}++;
581 my ( $anc_knows, $anc_partial ) = get_status( $cache, $anc );
582 my @found = keys %$anc_knows;
583 @$known{@found} = ();
584 push @$partial, @$anc_partial;
585 }
586 return exists $known->{$parent};
587}
588
589# Takes a package and gives a list of those trusted directly
590sub trusts_directly {
591 my $class = shift;
592259µs217µs
# spent 11µs (4+6) within Carp::BEGIN@592 which was called: # once (4µs+6µs) by Function::Parameters::BEGIN@6 at line 592
no strict 'refs';
# spent 11µs making 1 call to Carp::BEGIN@592 # spent 6µs making 1 call to strict::unimport
593 my $stash = \%{"$class\::"};
594 for my $var (qw/ CARP_NOT ISA /) {
595 # Don't try using the variable until we know it exists,
596 # to avoid polluting the caller's namespace.
597 if ( $stash->{$var} && *{$stash->{$var}}{ARRAY} && @{$stash->{$var}} ) {
598 return @{$stash->{$var}}
599 }
600 }
601 return;
602}
603
6041500nsif(!defined($warnings::VERSION) ||
605319µs213µs
# spent 8µs (4+4) within Carp::BEGIN@605 which was called: # once (4µs+4µs) by Function::Parameters::BEGIN@6 at line 605
do { no warnings "numeric"; $warnings::VERSION < 1.03 }) {
# spent 8µs making 1 call to Carp::BEGIN@605 # spent 4µs making 1 call to warnings::unimport
606 # Very old versions of warnings.pm import from Carp. This can go
607 # wrong due to the circular dependency. If Carp is invoked before
608 # warnings, then Carp starts by loading warnings, then warnings
609 # tries to import from Carp, and gets nothing because Carp is in
610 # the process of loading and hasn't defined its import method yet.
611 # So we work around that by manually exporting to warnings here.
612240µs212µs
# spent 7µs (3+5) within Carp::BEGIN@612 which was called: # once (3µs+5µs) by Function::Parameters::BEGIN@6 at line 612
no strict "refs";
# spent 7µs making 1 call to Carp::BEGIN@612 # spent 5µs making 1 call to strict::unimport
613 *{"warnings::$_"} = \&$_ foreach @EXPORT;
614}
615
61617µs1;
617
618__END__