← Index
NYTProf Performance Profile   « line view »
For /usr/sbin/pkg_info
  Run on Mon Aug 7 09:39:31 2017
Reported on Mon Aug 7 09:40:21 2017

Filename/usr/libdata/perl5/amd64-openbsd/Scalar/Util.pm
StatementsExecuted 13 statements in 883µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
32121622µs622µsScalar::Util::::readonlyScalar::Util::readonly (xsub)
11125µs30µsScalar::Util::::BEGIN@9Scalar::Util::BEGIN@9
0000s0sScalar::Util::::export_failScalar::Util::export_fail
0000s0sScalar::Util::::set_prototypeScalar::Util::set_prototype
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1# Copyright (c) 1997-2007 Graham Barr <gbarr@pobox.com>. All rights reserved.
2# This program is free software; you can redistribute it and/or
3# modify it under the same terms as Perl itself.
4#
5# Maintained since 2013 by Paul Evans <leonerd@leonerd.org.uk>
6
7package Scalar::Util;
8
92488µs235µs
# spent 30µs (25+5) within Scalar::Util::BEGIN@9 which was called: # once (25µs+5µs) by IO::Compress::Base::Common::BEGIN@8 at line 9
use strict;
# spent 30µs making 1 call to Scalar::Util::BEGIN@9 # spent 5µs making 1 call to strict::import
1011µsrequire Exporter;
11
1218µsour @ISA = qw(Exporter);
1314µsour @EXPORT_OK = qw(
14 blessed refaddr reftype weaken unweaken isweak
15
16 dualvar isdual isvstring looks_like_number openhandle readonly set_prototype
17 tainted
18);
1911µsour $VERSION = "1.42_02";
20120µs$VERSION = eval $VERSION;
# spent 5µs executing statements in string eval
21
221316µsrequire List::Util; # List::Util loads the XS
23127µs114µsList::Util->VERSION( $VERSION ); # Ensure we got the right XS version (RT#100863)
# spent 14µs making 1 call to UNIVERSAL::VERSION
24
25our @EXPORT_FAIL;
26
2711µsunless (defined &weaken) {
28 push @EXPORT_FAIL, qw(weaken);
29}
301900nsunless (defined &isweak) {
31 push @EXPORT_FAIL, qw(isweak isvstring);
32}
331800nsunless (defined &isvstring) {
34 push @EXPORT_FAIL, qw(isvstring);
35}
36
37sub export_fail {
38 if (grep { /^(?:weaken|isweak)$/ } @_ ) {
39 require Carp;
40 Carp::croak("Weak references are not implemented in the version of perl");
41 }
42
43 if (grep { /^isvstring$/ } @_ ) {
44 require Carp;
45 Carp::croak("Vstrings are not implemented in the version of perl");
46 }
47
48 @_;
49}
50
51# set_prototype has been moved to Sub::Util with a different interface
52sub set_prototype(&$)
53{
54 my ( $code, $proto ) = @_;
55 return Sub::Util::set_prototype( $proto, $code );
56}
57
58115µs1;
59
60__END__
 
# spent 622µs within Scalar::Util::readonly which was called 321 times, avg 2µs/call: # 281 times (471µs+0s) by IO::Uncompress::Base::read at line 1112 of IO/Uncompress/Base.pm, avg 2µs/call # 40 times (151µs+0s) by IO::Uncompress::Base::read at line 1105 of IO/Uncompress/Base.pm, avg 4µs/call
sub Scalar::Util::readonly; # xsub