← Index
NYTProf Performance Profile   « block view • line view • sub view »
For C:/lo/libo-master/solenv/bin/make_installer.pl
  Run on Mon Sep 24 00:52:54 2012
Reported on Mon Sep 24 07:34:36 2012

Filename/usr/lib/perl5/5.14/i686-cygwin-threads-64int/Scalar/Util.pm
StatementsExecuted 12 statements in 3.49ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
158061125.7ms25.7msScalar::Util::::blessedScalar::Util::blessed (xsub)
111199µs207µsScalar::Util::::BEGIN@9Scalar::Util::BEGIN@9
11113µs139µsScalar::Util::::BEGIN@10Scalar::Util::BEGIN@10
0000s0sScalar::Util::::export_failScalar::Util::export_fail
0000s0sScalar::Util::::openhandleScalar::Util::openhandle
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1# Scalar::Util.pm
2#
3# Copyright (c) 1997-2007 Graham Barr <gbarr@pobox.com>. All rights reserved.
4# This program is free software; you can redistribute it and/or
5# modify it under the same terms as Perl itself.
6
7package Scalar::Util;
8
9270µs2216µs
# spent 207µs (199+8) within Scalar::Util::BEGIN@9 which was called: # once (199µs+8µs) by installer::BEGIN@34 at line 9
use strict;
# spent 207µs making 1 call to Scalar::Util::BEGIN@9 # spent 8µs making 1 call to strict::import
102721µs2265µs
# spent 139µs (13+126) within Scalar::Util::BEGIN@10 which was called: # once (13µs+126µs) by installer::BEGIN@34 at line 10
use vars qw(@ISA @EXPORT_OK $VERSION @EXPORT_FAIL);
# spent 139µs making 1 call to Scalar::Util::BEGIN@10 # spent 126µs making 1 call to vars::import
1111µsrequire Exporter;
1212.59msrequire List::Util; # List::Util loads the XS
13
14110µs@ISA = qw(Exporter);
1519µs@EXPORT_OK = qw(blessed dualvar reftype weaken isweak tainted readonly openhandle refaddr isvstring looks_like_number set_prototype);
1611µs$VERSION = "1.23";
17133µs$VERSION = eval $VERSION;
# spent 6µs executing statements in string eval
18
191600nsunless (defined &dualvar) {
20 # Load Pure Perl version if XS not loaded
21 require Scalar::Util::PP;
22 Scalar::Util::PP->import;
23 push @EXPORT_FAIL, qw(weaken isweak dualvar isvstring set_prototype);
24}
25
26sub export_fail {
27 if (grep { /dualvar/ } @EXPORT_FAIL) { # no XS loaded
28 my $pat = join("|", @EXPORT_FAIL);
29 if (my ($err) = grep { /^($pat)$/ } @_ ) {
30 require Carp;
31 Carp::croak("$err is only available with the XS version of Scalar::Util");
32 }
33 }
34
35 if (grep { /^(weaken|isweak)$/ } @_ ) {
36 require Carp;
37 Carp::croak("Weak references are not implemented in the version of perl");
38 }
39
40 if (grep { /^(isvstring)$/ } @_ ) {
41 require Carp;
42 Carp::croak("Vstrings are not implemented in the version of perl");
43 }
44
45 @_;
46}
47
48sub openhandle ($) {
49 my $fh = shift;
50 my $rt = reftype($fh) || '';
51
52 return defined(fileno($fh)) ? $fh : undef
53 if $rt eq 'IO';
54
55 if (reftype(\$fh) eq 'GLOB') { # handle openhandle(*DATA)
56 $fh = \(my $tmp=$fh);
57 }
58 elsif ($rt ne 'GLOB') {
59 return undef;
60 }
61
62 (tied(*$fh) or defined(fileno($fh)))
63 ? $fh : undef;
64}
65
66152µs1;
67
68__END__
 
# spent 25.7ms within Scalar::Util::blessed which was called 15806 times, avg 2µs/call: # 15806 times (25.7ms+0s) by File::Copy::_eq at line 94 of File/Copy.pm, avg 2µs/call
sub Scalar::Util::blessed; # xsub