← Index
NYTProf Performance Profile   « line view »
For ../prof.pl
  Run on Wed Dec 14 15:33:55 2022
Reported on Wed Dec 14 15:40:02 2022

Filename/Users/ether/perl5/perlbrew/perls/36.0/lib/5.36.0/version/regex.pm
StatementsExecuted 16 statements in 671µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
661174µs174µsversion::regex::::CORE:regcompversion::regex::CORE:regcomp (opcode)
11131µs34µsversion::regex::::BEGIN@3version::regex::BEGIN@3
1212112µs12µsversion::regex::::CORE:qrversion::regex::CORE:qr (opcode)
0000s0sversion::regex::::is_laxversion::regex::is_lax
0000s0sversion::regex::::is_strictversion::regex::is_strict
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package version::regex;
2
32415µs237µs
# spent 34µs (31+3) within version::regex::BEGIN@3 which was called: # once (31µs+3µs) by experimental::BEGIN@5 at line 3
use strict;
# spent 34µs making 1 call to version::regex::BEGIN@3 # spent 3µs making 1 call to strict::import
4
510sour $VERSION = 0.9929;
6
7#--------------------------------------------------------------------------#
8# Version regexp components
9#--------------------------------------------------------------------------#
10
11# Fraction part of a decimal version number. This is a common part of
12# both strict and lax decimal versions
13
14111µs14µsmy $FRACTION_PART = qr/\.[0-9]+/;
# spent 4µs making 1 call to version::regex::CORE:qr
15
16# First part of either decimal or dotted-decimal strict version number.
17# Unsigned integer with no leading zeroes (except for zero itself) to
18# avoid confusion with octal.
19
2013µs11µsmy $STRICT_INTEGER_PART = qr/0|[1-9][0-9]*/;
# spent 1µs making 1 call to version::regex::CORE:qr
21
22# First part of either decimal or dotted-decimal lax version number.
23# Unsigned integer, but allowing leading zeros. Always interpreted
24# as decimal. However, some forms of the resulting syntax give odd
25# results if used as ordinary Perl expressions, due to how perl treats
26# octals. E.g.
27# version->new("010" ) == 10
28# version->new( 010 ) == 8
29# version->new( 010.2) == 82 # "8" . "2"
30
3113µs11µsmy $LAX_INTEGER_PART = qr/[0-9]+/;
# spent 1µs making 1 call to version::regex::CORE:qr
32
33# Second and subsequent part of a strict dotted-decimal version number.
34# Leading zeroes are permitted, and the number is always decimal.
35# Limited to three digits to avoid overflow when converting to decimal
36# form and also avoid problematic style with excessive leading zeroes.
37
3812µs10smy $STRICT_DOTTED_DECIMAL_PART = qr/\.[0-9]{1,3}/;
# spent 0s making 1 call to version::regex::CORE:qr
39
40# Second and subsequent part of a lax dotted-decimal version number.
41# Leading zeroes are permitted, and the number is always decimal. No
42# limit on the numerical value or number of digits, so there is the
43# possibility of overflow when converting to decimal form.
44
4513µs11µsmy $LAX_DOTTED_DECIMAL_PART = qr/\.[0-9]+/;
# spent 1µs making 1 call to version::regex::CORE:qr
46
47# Alpha suffix part of lax version number syntax. Acts like a
48# dotted-decimal part.
49
5013µs11µsmy $LAX_ALPHA_PART = qr/_[0-9]+/;
# spent 1µs making 1 call to version::regex::CORE:qr
51
52#--------------------------------------------------------------------------#
53# Strict version regexp definitions
54#--------------------------------------------------------------------------#
55
56# Strict decimal version number.
57
58154µs248µsour $STRICT_DECIMAL_VERSION =
# spent 47µs making 1 call to version::regex::CORE:regcomp # spent 1µs making 1 call to version::regex::CORE:qr
59 qr/ $STRICT_INTEGER_PART $FRACTION_PART? /x;
60
61# Strict dotted-decimal version number. Must have both leading "v" and
62# at least three parts, to avoid confusion with decimal syntax.
63
64118µs216µsour $STRICT_DOTTED_DECIMAL_VERSION =
# spent 15µs making 1 call to version::regex::CORE:regcomp # spent 1µs making 1 call to version::regex::CORE:qr
65 qr/ v $STRICT_INTEGER_PART $STRICT_DOTTED_DECIMAL_PART{2,} /x;
66
67# Complete strict version number syntax -- should generally be used
68# anchored: qr/ \A $STRICT \z /x
69
70129µs225µsour $STRICT =
# spent 25µs making 1 call to version::regex::CORE:regcomp # spent 0s making 1 call to version::regex::CORE:qr
71 qr/ $STRICT_DECIMAL_VERSION | $STRICT_DOTTED_DECIMAL_VERSION /x;
72
73#--------------------------------------------------------------------------#
74# Lax version regexp definitions
75#--------------------------------------------------------------------------#
76
77# Lax decimal version number. Just like the strict one except for
78# allowing an alpha suffix or allowing a leading or trailing
79# decimal-point
80
81121µs218µsour $LAX_DECIMAL_VERSION =
# spent 17µs making 1 call to version::regex::CORE:regcomp # spent 1µs making 1 call to version::regex::CORE:qr
82 qr/ $LAX_INTEGER_PART (?: $FRACTION_PART | \. )? $LAX_ALPHA_PART?
83 |
84 $FRACTION_PART $LAX_ALPHA_PART?
85 /x;
86
87# Lax dotted-decimal version number. Distinguished by having either
88# leading "v" or at least three non-alpha parts. Alpha part is only
89# permitted if there are at least two non-alpha parts. Strangely
90# enough, without the leading "v", Perl takes .1.2 to mean v0.1.2,
91# so when there is no "v", the leading part is optional
92
93125µs218µsour $LAX_DOTTED_DECIMAL_VERSION =
# spent 18µs making 1 call to version::regex::CORE:regcomp # spent 0s making 1 call to version::regex::CORE:qr
94 qr/
95 v $LAX_INTEGER_PART (?: $LAX_DOTTED_DECIMAL_PART+ $LAX_ALPHA_PART? )?
96 |
97 $LAX_INTEGER_PART? $LAX_DOTTED_DECIMAL_PART{2,} $LAX_ALPHA_PART?
98 /x;
99
100# Complete lax version number syntax -- should generally be used
101# anchored: qr/ \A $LAX \z /x
102#
103# The string 'undef' is a special case to make for easier handling
104# of return values from ExtUtils::MM->parse_version
105
106160µs253µsour $LAX =
# spent 52µs making 1 call to version::regex::CORE:regcomp # spent 1µs making 1 call to version::regex::CORE:qr
107 qr/ undef | $LAX_DOTTED_DECIMAL_VERSION | $LAX_DECIMAL_VERSION /x;
108
109#--------------------------------------------------------------------------#
110
111# Preloaded methods go here.
112sub is_strict { defined $_[0] && $_[0] =~ qr/ \A $STRICT \z /x }
113sub is_lax { defined $_[0] && $_[0] =~ qr/ \A $LAX \z /x }
114
115124µs1;
 
# spent 12µs within version::regex::CORE:qr which was called 12 times, avg 1µs/call: # once (4µs+0s) by experimental::BEGIN@5 at line 14 # once (1µs+0s) by experimental::BEGIN@5 at line 64 # once (1µs+0s) by experimental::BEGIN@5 at line 58 # once (1µs+0s) by experimental::BEGIN@5 at line 31 # once (1µs+0s) by experimental::BEGIN@5 at line 81 # once (1µs+0s) by experimental::BEGIN@5 at line 45 # once (1µs+0s) by experimental::BEGIN@5 at line 50 # once (1µs+0s) by experimental::BEGIN@5 at line 20 # once (1µs+0s) by experimental::BEGIN@5 at line 106 # once (0s+0s) by experimental::BEGIN@5 at line 70 # once (0s+0s) by experimental::BEGIN@5 at line 93 # once (0s+0s) by experimental::BEGIN@5 at line 38
sub version::regex::CORE:qr; # opcode
# spent 174µs within version::regex::CORE:regcomp which was called 6 times, avg 29µs/call: # once (52µs+0s) by experimental::BEGIN@5 at line 106 # once (47µs+0s) by experimental::BEGIN@5 at line 58 # once (25µs+0s) by experimental::BEGIN@5 at line 70 # once (18µs+0s) by experimental::BEGIN@5 at line 93 # once (17µs+0s) by experimental::BEGIN@5 at line 81 # once (15µs+0s) by experimental::BEGIN@5 at line 64
sub version::regex::CORE:regcomp; # opcode