← Index
NYTProf Performance Profile
«
line view
»
For /home/ss5/perl5/perlbrew/perls/perl-5.22.0/bin/benchmarkanything-storage
Run on Mon Jan 29 16:55:34 2018
Reported on Mon Jan 29 16:57:07 2018
Filename
/home/ss5/perl5/perlbrew/perls/perl-5.22.0/lib/5.22.0/B/Op_private.pm
Statements
Executed 413 statements in 522µs
Line
State
ments
Time
on line
Calls
Time
in subs
Code
1
# -*- buffer-read-only: t -*-
2
#
3
# lib/B/Op_private.pm
4
#
5
# Copyright (C) 2014 by Larry Wall and others
6
#
7
# You may distribute under the terms of either the GNU General Public
8
# License or the Artistic License, as specified in the README file.
9
#
10
# !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
11
# This file is built by regen/opcode.pl from data in
12
# regen/op_private and pod embedded in regen/opcode.pl.
13
# Any changes made here will be lost!
14
15
=head1 NAME
16
17
B::Op_private - OP op_private flag definitions
18
19
=head1 SYNOPSIS
20
21
use B::Op_private;
22
23
# flag details for bit 7 of OP_AELEM's op_private:
24
my $name = $B::Op_private::bits{aelem}{7}; # OPpLVAL_INTRO
25
my $value = $B::Op_private::defines{$name}; # 128
26
my $label = $B::Op_private::labels{$name}; # LVINTRO
27
28
# the bit field at bits 5..6 of OP_AELEM's op_private:
29
my $bf = $B::Op_private::bits{aelem}{6};
30
my $mask = $bf->{bitmask}; # etc
31
32
=head1 DESCRIPTION
33
34
This module provides four global hashes:
35
36
%B::Op_private::bits
37
%B::Op_private::defines
38
%B::Op_private::labels
39
%B::Op_private::ops_using
40
41
which contain information about the per-op meanings of the bits in the
42
op_private field.
43
44
=head2 C<%bits>
45
46
This is indexed by op name and then bit number (0..7). For single bit flags,
47
it returns the name of the define (if any) for that bit:
48
49
$B::Op_private::bits{aelem}{7} eq 'OPpLVAL_INTRO';
50
51
For bit fields, it returns a hash ref containing details about the field.
52
The same reference will be returned for all bit positions that make
53
up the bit field; so for example these both return the same hash ref:
54
55
$bitfield = $B::Op_private::bits{aelem}{5};
56
$bitfield = $B::Op_private::bits{aelem}{6};
57
58
The general format of this hash ref is
59
60
{
61
# The bit range and mask; these are always present.
62
bitmin => 5,
63
bitmax => 6,
64
bitmask => 0x60,
65
66
# (The remaining keys are optional)
67
68
# The names of any defines that were requested:
69
mask_def => 'OPpFOO_MASK',
70
baseshift_def => 'OPpFOO_SHIFT',
71
bitcount_def => 'OPpFOO_BITS',
72
73
# If present, Concise etc will display the value with a 'FOO='
74
# prefix. If it equals '-', then Concise will treat the bit
75
# field as raw bits and not try to interpret it.
76
label => 'FOO',
77
78
# If present, specifies the names of some defines and the
79
# display labels that are used to assign meaning to particu-
80
# lar integer values within the bit field; e.g. 3 is dis-
81
# played as 'C'.
82
enum => [ qw(
83
1 OPpFOO_A A
84
2 OPpFOO_B B
85
3 OPpFOO_C C
86
)],
87
88
};
89
90
91
=head2 C<%defines>
92
93
This gives the value of every C<OPp> define, e.g.
94
95
$B::Op_private::defines{OPpLVAL_INTRO} == 128;
96
97
=head2 C<%labels>
98
99
This gives the short display label for each define, as used by C<B::Concise>
100
and C<perl -Dx>, e.g.
101
102
$B::Op_private::labels{OPpLVAL_INTRO} eq 'LVINTRO';
103
104
If the label equals '-', then Concise will treat the bit as a raw bit and
105
not try to display it symbolically.
106
107
=head2 C<%ops_using>
108
109
For each define, this gives a reference to an array of op names that use
110
the flag.
111
112
@ops_using_lvintro = @{ $B::Op_private::ops_using{OPp_LVAL_INTRO} };
113
114
=cut
115
116
package B::Op_private;
117
118
our %bits;
119
120
121
1
500ns
our $VERSION = "5.022000";
122
123
1
4µs
$bits{$_}{3} = 'OPpENTERSUB_AMPER' for qw(entersub rv2cv);
124
1
800ns
$bits{$_}{6} = 'OPpENTERSUB_DB' for qw(entersub rv2cv);
125
1
600ns
$bits{$_}{2} = 'OPpENTERSUB_HASTARG' for qw(entersub rv2cv);
126
1
2µs
$bits{$_}{6} = 'OPpFLIP_LINENUM' for qw(flip flop);
127
1
3µs
$bits{$_}{1} = 'OPpFT_ACCESS' for qw(fteexec fteread ftewrite ftrexec ftrread ftrwrite);
128
1
12µs
$bits{$_}{4} = 'OPpFT_AFTER_t' for qw(ftatime ftbinary ftblk ftchr ftctime ftdir fteexec fteowned fteread ftewrite ftfile ftis ftlink ftmtime ftpipe ftrexec ftrowned ftrread ftrwrite ftsgid ftsize ftsock ftsuid ftsvtx fttext fttty ftzero);
129
1
5µs
$bits{$_}{2} = 'OPpFT_STACKED' for qw(ftatime ftbinary ftblk ftchr ftctime ftdir fteexec fteowned fteread ftewrite ftfile ftis ftlink ftmtime ftpipe ftrexec ftrowned ftrread ftrwrite ftsgid ftsize ftsock ftsuid ftsvtx fttext fttty ftzero);
130
1
6µs
$bits{$_}{3} = 'OPpFT_STACKING' for qw(ftatime ftbinary ftblk ftchr ftctime ftdir fteexec fteowned fteread ftewrite ftfile ftis ftlink ftmtime ftpipe ftrexec ftrowned ftrread ftrwrite ftsgid ftsize ftsock ftsuid ftsvtx fttext fttty ftzero);
131
1
2µs
$bits{$_}{1} = 'OPpGREP_LEX' for qw(grepstart grepwhile mapstart mapwhile);
132
1
2µs
$bits{$_}{1} = 'OPpHINT_STRICT_REFS' for qw(entersub multideref rv2av rv2cv rv2gv rv2hv rv2sv);
133
1
1µs
$bits{$_}{5} = 'OPpHUSH_VMSISH' for qw(dbstate nextstate);
134
1
1µs
$bits{$_}{2} = 'OPpITER_REVERSED' for qw(enteriter iter);
135
1
1µs
$bits{$_}{7} = 'OPpLVALUE' for qw(leave leaveloop);
136
1
1µs
$bits{$_}{6} = 'OPpLVAL_DEFER' for qw(aelem helem multideref);
137
1
7µs
$bits{$_}{7} = 'OPpLVAL_INTRO' for qw(aelem aslice cond_expr delete enteriter entersub gvsv helem hslice list lvavref lvref lvrefslice multideref padav padhv padrange padsv pushmark refassign rv2av rv2gv rv2hv rv2sv);
138
1
700ns
$bits{$_}{2} = 'OPpLVREF_ELEM' for qw(lvref refassign);
139
1
600ns
$bits{$_}{3} = 'OPpLVREF_ITER' for qw(lvref refassign);
140
1
7µs
$bits{$_}{3} = 'OPpMAYBE_LVSUB' for qw(aassign aelem aslice av2arylen helem hslice keys kvaslice kvhslice multideref padav padhv pos rkeys rv2av rv2gv rv2hv substr vec);
141
1
700ns
$bits{$_}{4} = 'OPpMAYBE_TRUEBOOL' for qw(padhv rv2hv);
142
1
1µs
$bits{$_}{7} = 'OPpOFFBYONE' for qw(caller runcv wantarray);
143
1
1µs
$bits{$_}{5} = 'OPpOPEN_IN_CRLF' for qw(backtick open);
144
1
800ns
$bits{$_}{4} = 'OPpOPEN_IN_RAW' for qw(backtick open);
145
1
700ns
$bits{$_}{7} = 'OPpOPEN_OUT_CRLF' for qw(backtick open);
146
1
600ns
$bits{$_}{6} = 'OPpOPEN_OUT_RAW' for qw(backtick open);
147
1
2µs
$bits{$_}{6} = 'OPpOUR_INTRO' for qw(enteriter gvsv rv2av rv2hv rv2sv split);
148
1
2µs
$bits{$_}{6} = 'OPpPAD_STATE' for qw(lvavref lvref padav padhv padsv pushmark refassign);
149
1
2µs
$bits{$_}{7} = 'OPpPV_IS_UTF8' for qw(dump goto last next redo);
150
1
2µs
$bits{$_}{6} = 'OPpREFCOUNTED' for qw(leave leaveeval leavesub leavesublv leavewrite);
151
1
4µs
$bits{$_}{6} = 'OPpRUNTIME' for qw(match pushre qr subst substcont);
152
1
1µs
$bits{$_}{2} = 'OPpSLICEWARNING' for qw(aslice hslice padav padhv rv2av rv2hv);
153
1
27µs
$bits{$_}{4} = 'OPpTARGET_MY' for qw(abs add atan2 chdir chmod chomp chown chr chroot concat cos crypt divide exec exp flock getpgrp getppid getpriority hex i_add i_divide i_modulo i_multiply i_subtract index int kill left_shift length link log match mkdir modulo multiply nbit_and nbit_or nbit_xor ncomplement oct ord pow push pushre qr rand rename right_shift rindex rmdir schomp scomplement setpgrp setpriority sin sleep sqrt srand stringify subst subtract symlink system time trans transr unlink unshift utime wait waitpid);
154
1
800ns
$bits{$_}{5} = 'OPpTRANS_COMPLEMENT' for qw(trans transr);
155
1
500ns
$bits{$_}{7} = 'OPpTRANS_DELETE' for qw(trans transr);
156
1
800ns
$bits{$_}{0} = 'OPpTRANS_FROM_UTF' for qw(trans transr);
157
1
600ns
$bits{$_}{6} = 'OPpTRANS_GROWS' for qw(trans transr);
158
1
500ns
$bits{$_}{2} = 'OPpTRANS_IDENTICAL' for qw(trans transr);
159
1
600ns
$bits{$_}{3} = 'OPpTRANS_SQUASH' for qw(trans transr);
160
1
1µs
$bits{$_}{1} = 'OPpTRANS_TO_UTF' for qw(trans transr);
161
1
600ns
$bits{$_}{5} = 'OPpTRUEBOOL' for qw(padhv rv2hv);
162
163
1
10µs
my @bf = (
164
{
165
label => '-',
166
mask_def => 'OPpARG1_MASK',
167
bitmin => 0,
168
bitmax => 0,
169
bitmask => 1,
170
},
171
{
172
label => '-',
173
mask_def => 'OPpARG2_MASK',
174
bitmin => 0,
175
bitmax => 1,
176
bitmask => 3,
177
},
178
{
179
label => '-',
180
mask_def => 'OPpARG3_MASK',
181
bitmin => 0,
182
bitmax => 2,
183
bitmask => 7,
184
},
185
{
186
label => '-',
187
mask_def => 'OPpARG4_MASK',
188
bitmin => 0,
189
bitmax => 3,
190
bitmask => 15,
191
},
192
{
193
label => '-',
194
mask_def => 'OPpPADRANGE_COUNTMASK',
195
bitcount_def => 'OPpPADRANGE_COUNTSHIFT',
196
bitmin => 0,
197
bitmax => 6,
198
bitmask => 127,
199
},
200
{
201
label => '-',
202
bitmin => 0,
203
bitmax => 7,
204
bitmask => 255,
205
},
206
{
207
mask_def => 'OPpDEREF',
208
bitmin => 4,
209
bitmax => 5,
210
bitmask => 48,
211
enum => [
212
1, 'OPpDEREF_AV', 'DREFAV',
213
2, 'OPpDEREF_HV', 'DREFHV',
214
3, 'OPpDEREF_SV', 'DREFSV',
215
],
216
},
217
{
218
mask_def => 'OPpLVREF_TYPE',
219
bitmin => 4,
220
bitmax => 5,
221
bitmask => 48,
222
enum => [
223
0, 'OPpLVREF_SV', 'SV',
224
1, 'OPpLVREF_AV', 'AV',
225
2, 'OPpLVREF_HV', 'HV',
226
3, 'OPpLVREF_CV', 'CV',
227
],
228
},
229
);
230
231
1
2µs
@{$bits{aassign}}{6,1,0} = ('OPpASSIGN_COMMON', $bf[1], $bf[1]);
232
1
300ns
$bits{abs}{0} = $bf[0];
233
1
900ns
@{$bits{accept}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
234
1
500ns
@{$bits{add}}{1,0} = ($bf[1], $bf[1]);
235
1
400ns
$bits{aeach}{0} = $bf[0];
236
1
800ns
@{$bits{aelem}}{5,4,1,0} = ($bf[6], $bf[6], $bf[1], $bf[1]);
237
1
1µs
@{$bits{aelemfast}}{7,6,5,4,3,2,1,0} = ($bf[5], $bf[5], $bf[5], $bf[5], $bf[5], $bf[5], $bf[5], $bf[5]);
238
1
1µs
@{$bits{aelemfast_lex}}{7,6,5,4,3,2,1,0} = ($bf[5], $bf[5], $bf[5], $bf[5], $bf[5], $bf[5], $bf[5], $bf[5]);
239
1
300ns
$bits{akeys}{0} = $bf[0];
240
1
300ns
$bits{alarm}{0} = $bf[0];
241
1
200ns
$bits{and}{0} = $bf[0];
242
1
200ns
$bits{andassign}{0} = $bf[0];
243
1
200ns
$bits{anonconst}{0} = $bf[0];
244
1
700ns
@{$bits{anonhash}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
245
1
600ns
@{$bits{anonlist}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
246
1
600ns
@{$bits{atan2}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
247
1
200ns
$bits{av2arylen}{0} = $bf[0];
248
1
200ns
$bits{avalues}{0} = $bf[0];
249
1
200ns
$bits{backtick}{0} = $bf[0];
250
1
600ns
@{$bits{bind}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
251
1
2µs
@{$bits{binmode}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
252
1
600ns
@{$bits{bit_and}}{1,0} = ($bf[1], $bf[1]);
253
1
500ns
@{$bits{bit_or}}{1,0} = ($bf[1], $bf[1]);
254
1
500ns
@{$bits{bit_xor}}{1,0} = ($bf[1], $bf[1]);
255
1
600ns
@{$bits{bless}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
256
1
600ns
@{$bits{caller}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
257
1
600ns
@{$bits{chdir}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
258
1
500ns
@{$bits{chmod}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
259
1
200ns
$bits{chomp}{0} = $bf[0];
260
1
200ns
$bits{chop}{0} = $bf[0];
261
1
500ns
@{$bits{chown}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
262
1
200ns
$bits{chr}{0} = $bf[0];
263
1
200ns
$bits{chroot}{0} = $bf[0];
264
1
600ns
@{$bits{close}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
265
1
200ns
$bits{closedir}{0} = $bf[0];
266
1
300ns
$bits{complement}{0} = $bf[0];
267
1
500ns
@{$bits{concat}}{1,0} = ($bf[1], $bf[1]);
268
1
100ns
$bits{cond_expr}{0} = $bf[0];
269
1
600ns
@{$bits{connect}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
270
1
1µs
@{$bits{const}}{6,4,3,2,1} = ('OPpCONST_BARE', 'OPpCONST_ENTERED', 'OPpCONST_STRICT', 'OPpCONST_SHORTCIRCUIT', 'OPpCONST_NOVER');
271
1
800ns
@{$bits{coreargs}}{7,6,1,0} = ('OPpCOREARGS_PUSHMARK', 'OPpCOREARGS_SCALARMOD', 'OPpCOREARGS_DEREF2', 'OPpCOREARGS_DEREF1');
272
1
1µs
$bits{cos}{0} = $bf[0];
273
1
600ns
@{$bits{crypt}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
274
1
200ns
$bits{dbmclose}{0} = $bf[0];
275
1
600ns
@{$bits{dbmopen}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
276
1
900ns
$bits{defined}{0} = $bf[0];
277
1
600ns
@{$bits{delete}}{6,0} = ('OPpSLICE', $bf[0]);
278
1
600ns
@{$bits{die}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
279
1
400ns
@{$bits{divide}}{1,0} = ($bf[1], $bf[1]);
280
1
200ns
$bits{dofile}{0} = $bf[0];
281
1
200ns
$bits{dor}{0} = $bf[0];
282
1
300ns
$bits{dorassign}{0} = $bf[0];
283
1
200ns
$bits{dump}{0} = $bf[0];
284
1
300ns
$bits{each}{0} = $bf[0];
285
1
1µs
@{$bits{entereval}}{5,4,3,2,1,0} = ('OPpEVAL_RE_REPARSING', 'OPpEVAL_COPHH', 'OPpEVAL_BYTES', 'OPpEVAL_UNICODE', 'OPpEVAL_HAS_HH', $bf[0]);
286
1
300ns
$bits{entergiven}{0} = $bf[0];
287
1
300ns
$bits{enteriter}{3} = 'OPpITER_DEF';
288
1
800ns
@{$bits{entersub}}{5,4,0} = ($bf[6], $bf[6], 'OPpENTERSUB_INARGS');
289
1
300ns
$bits{entertry}{0} = $bf[0];
290
1
300ns
$bits{enterwhen}{0} = $bf[0];
291
1
600ns
@{$bits{enterwrite}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
292
1
700ns
@{$bits{eof}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
293
1
500ns
@{$bits{eq}}{1,0} = ($bf[1], $bf[1]);
294
1
600ns
@{$bits{exec}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
295
1
500ns
@{$bits{exists}}{6,0} = ('OPpEXISTS_SUB', $bf[0]);
296
1
600ns
@{$bits{exit}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
297
1
200ns
$bits{exp}{0} = $bf[0];
298
1
300ns
$bits{fc}{0} = $bf[0];
299
1
2µs
@{$bits{fcntl}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
300
1
600ns
@{$bits{fileno}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
301
1
300ns
$bits{flip}{0} = $bf[0];
302
1
600ns
@{$bits{flock}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
303
1
200ns
$bits{flop}{0} = $bf[0];
304
1
600ns
@{$bits{formline}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
305
1
200ns
$bits{ftatime}{0} = $bf[0];
306
1
200ns
$bits{ftbinary}{0} = $bf[0];
307
1
200ns
$bits{ftblk}{0} = $bf[0];
308
1
200ns
$bits{ftchr}{0} = $bf[0];
309
1
200ns
$bits{ftctime}{0} = $bf[0];
310
1
200ns
$bits{ftdir}{0} = $bf[0];
311
1
100ns
$bits{fteexec}{0} = $bf[0];
312
1
100ns
$bits{fteowned}{0} = $bf[0];
313
1
100ns
$bits{fteread}{0} = $bf[0];
314
1
100ns
$bits{ftewrite}{0} = $bf[0];
315
1
100ns
$bits{ftfile}{0} = $bf[0];
316
1
100ns
$bits{ftis}{0} = $bf[0];
317
1
100ns
$bits{ftlink}{0} = $bf[0];
318
1
100ns
$bits{ftmtime}{0} = $bf[0];
319
1
200ns
$bits{ftpipe}{0} = $bf[0];
320
1
100ns
$bits{ftrexec}{0} = $bf[0];
321
1
100ns
$bits{ftrowned}{0} = $bf[0];
322
1
100ns
$bits{ftrread}{0} = $bf[0];
323
1
100ns
$bits{ftrwrite}{0} = $bf[0];
324
1
100ns
$bits{ftsgid}{0} = $bf[0];
325
1
100ns
$bits{ftsize}{0} = $bf[0];
326
1
100ns
$bits{ftsock}{0} = $bf[0];
327
1
100ns
$bits{ftsuid}{0} = $bf[0];
328
1
100ns
$bits{ftsvtx}{0} = $bf[0];
329
1
200ns
$bits{fttext}{0} = $bf[0];
330
1
200ns
$bits{fttty}{0} = $bf[0];
331
1
100ns
$bits{ftzero}{0} = $bf[0];
332
1
400ns
@{$bits{ge}}{1,0} = ($bf[1], $bf[1]);
333
1
500ns
@{$bits{gelem}}{1,0} = ($bf[1], $bf[1]);
334
1
600ns
@{$bits{getc}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
335
1
300ns
$bits{getpeername}{0} = $bf[0];
336
1
500ns
@{$bits{getpgrp}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
337
1
500ns
@{$bits{getpriority}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
338
1
300ns
$bits{getsockname}{0} = $bf[0];
339
1
200ns
$bits{ggrgid}{0} = $bf[0];
340
1
200ns
$bits{ggrnam}{0} = $bf[0];
341
1
600ns
@{$bits{ghbyaddr}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
342
1
300ns
$bits{ghbyname}{0} = $bf[0];
343
1
600ns
@{$bits{glob}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
344
1
600ns
@{$bits{gmtime}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
345
1
2µs
@{$bits{gnbyaddr}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
346
1
200ns
$bits{gnbyname}{0} = $bf[0];
347
1
200ns
$bits{goto}{0} = $bf[0];
348
1
300ns
$bits{gpbyname}{0} = $bf[0];
349
1
600ns
@{$bits{gpbynumber}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
350
1
200ns
$bits{gpwnam}{0} = $bf[0];
351
1
300ns
$bits{gpwuid}{0} = $bf[0];
352
1
200ns
$bits{grepstart}{0} = $bf[0];
353
1
100ns
$bits{grepwhile}{0} = $bf[0];
354
1
600ns
@{$bits{gsbyname}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
355
1
600ns
@{$bits{gsbyport}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
356
1
600ns
@{$bits{gsockopt}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
357
1
500ns
@{$bits{gt}}{1,0} = ($bf[1], $bf[1]);
358
1
400ns
$bits{gv}{5} = 'OPpEARLY_CV';
359
1
700ns
@{$bits{helem}}{5,4,1,0} = ($bf[6], $bf[6], $bf[1], $bf[1]);
360
1
200ns
$bits{hex}{0} = $bf[0];
361
1
400ns
@{$bits{i_add}}{1,0} = ($bf[1], $bf[1]);
362
1
400ns
@{$bits{i_divide}}{1,0} = ($bf[1], $bf[1]);
363
1
2µs
@{$bits{i_eq}}{1,0} = ($bf[1], $bf[1]);
364
1
500ns
@{$bits{i_ge}}{1,0} = ($bf[1], $bf[1]);
365
1
400ns
@{$bits{i_gt}}{1,0} = ($bf[1], $bf[1]);
366
1
500ns
@{$bits{i_le}}{1,0} = ($bf[1], $bf[1]);
367
1
500ns
@{$bits{i_lt}}{1,0} = ($bf[1], $bf[1]);
368
1
400ns
@{$bits{i_modulo}}{1,0} = ($bf[1], $bf[1]);
369
1
400ns
@{$bits{i_multiply}}{1,0} = ($bf[1], $bf[1]);
370
1
400ns
@{$bits{i_ncmp}}{1,0} = ($bf[1], $bf[1]);
371
1
400ns
@{$bits{i_ne}}{1,0} = ($bf[1], $bf[1]);
372
1
200ns
$bits{i_negate}{0} = $bf[0];
373
1
300ns
$bits{i_postdec}{0} = $bf[0];
374
1
300ns
$bits{i_postinc}{0} = $bf[0];
375
1
900ns
$bits{i_predec}{0} = $bf[0];
376
1
200ns
$bits{i_preinc}{0} = $bf[0];
377
1
300ns
@{$bits{i_subtract}}{1,0} = ($bf[1], $bf[1]);
378
1
600ns
@{$bits{index}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
379
1
200ns
$bits{int}{0} = $bf[0];
380
1
700ns
@{$bits{ioctl}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
381
1
700ns
@{$bits{join}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
382
1
200ns
$bits{keys}{0} = $bf[0];
383
1
500ns
@{$bits{kill}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
384
1
200ns
$bits{last}{0} = $bf[0];
385
1
300ns
$bits{lc}{0} = $bf[0];
386
1
200ns
$bits{lcfirst}{0} = $bf[0];
387
1
500ns
@{$bits{le}}{1,0} = ($bf[1], $bf[1]);
388
1
200ns
$bits{leaveeval}{0} = $bf[0];
389
1
300ns
$bits{leavegiven}{0} = $bf[0];
390
1
400ns
@{$bits{leaveloop}}{1,0} = ($bf[1], $bf[1]);
391
1
200ns
$bits{leavesub}{0} = $bf[0];
392
1
200ns
$bits{leavesublv}{0} = $bf[0];
393
1
200ns
$bits{leavewhen}{0} = $bf[0];
394
1
200ns
$bits{leavewrite}{0} = $bf[0];
395
1
400ns
@{$bits{left_shift}}{1,0} = ($bf[1], $bf[1]);
396
1
200ns
$bits{length}{0} = $bf[0];
397
1
600ns
@{$bits{link}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
398
1
300ns
$bits{list}{6} = 'OPpLIST_GUESSED';
399
1
700ns
@{$bits{listen}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
400
1
200ns
$bits{localtime}{0} = $bf[0];
401
1
200ns
$bits{lock}{0} = $bf[0];
402
1
200ns
$bits{log}{0} = $bf[0];
403
1
400ns
@{$bits{lslice}}{1,0} = ($bf[1], $bf[1]);
404
1
200ns
$bits{lstat}{0} = $bf[0];
405
1
400ns
@{$bits{lt}}{1,0} = ($bf[1], $bf[1]);
406
1
200ns
$bits{lvavref}{0} = $bf[0];
407
1
700ns
@{$bits{lvref}}{5,4,0} = ($bf[7], $bf[7], $bf[0]);
408
1
200ns
$bits{mapstart}{0} = $bf[0];
409
1
200ns
$bits{mapwhile}{0} = $bf[0];
410
1
300ns
$bits{method}{0} = $bf[0];
411
1
300ns
$bits{method_named}{0} = $bf[0];
412
1
6µs
$bits{method_redir}{0} = $bf[0];
413
1
300ns
$bits{method_redir_super}{0} = $bf[0];
414
1
300ns
$bits{method_super}{0} = $bf[0];
415
1
600ns
@{$bits{mkdir}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
416
1
1µs
@{$bits{modulo}}{1,0} = ($bf[1], $bf[1]);
417
1
700ns
@{$bits{msgctl}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
418
1
700ns
@{$bits{msgget}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
419
1
2µs
@{$bits{msgrcv}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
420
1
600ns
@{$bits{msgsnd}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
421
1
700ns
@{$bits{multideref}}{5,4,0} = ('OPpMULTIDEREF_DELETE', 'OPpMULTIDEREF_EXISTS', $bf[0]);
422
1
300ns
@{$bits{multiply}}{1,0} = ($bf[1], $bf[1]);
423
1
400ns
@{$bits{nbit_and}}{1,0} = ($bf[1], $bf[1]);
424
1
500ns
@{$bits{nbit_or}}{1,0} = ($bf[1], $bf[1]);
425
1
400ns
@{$bits{nbit_xor}}{1,0} = ($bf[1], $bf[1]);
426
1
500ns
@{$bits{ncmp}}{1,0} = ($bf[1], $bf[1]);
427
1
200ns
$bits{ncomplement}{0} = $bf[0];
428
1
500ns
@{$bits{ne}}{1,0} = ($bf[1], $bf[1]);
429
1
300ns
$bits{negate}{0} = $bf[0];
430
1
200ns
$bits{next}{0} = $bf[0];
431
1
300ns
$bits{not}{0} = $bf[0];
432
1
100ns
$bits{oct}{0} = $bf[0];
433
1
300ns
$bits{once}{0} = $bf[0];
434
1
900ns
@{$bits{open}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
435
1
600ns
@{$bits{open_dir}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
436
1
300ns
$bits{or}{0} = $bf[0];
437
1
300ns
$bits{orassign}{0} = $bf[0];
438
1
200ns
$bits{ord}{0} = $bf[0];
439
1
700ns
@{$bits{pack}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
440
1
1µs
@{$bits{padrange}}{6,5,4,3,2,1,0} = ($bf[4], $bf[4], $bf[4], $bf[4], $bf[4], $bf[4], $bf[4]);
441
1
500ns
@{$bits{padsv}}{5,4} = ($bf[6], $bf[6]);
442
1
3µs
@{$bits{pipe_op}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
443
1
300ns
$bits{pop}{0} = $bf[0];
444
1
200ns
$bits{pos}{0} = $bf[0];
445
1
300ns
$bits{postdec}{0} = $bf[0];
446
1
300ns
$bits{postinc}{0} = $bf[0];
447
1
400ns
@{$bits{pow}}{1,0} = ($bf[1], $bf[1]);
448
1
200ns
$bits{predec}{0} = $bf[0];
449
1
300ns
$bits{preinc}{0} = $bf[0];
450
1
200ns
$bits{prototype}{0} = $bf[0];
451
1
600ns
@{$bits{push}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
452
1
300ns
$bits{quotemeta}{0} = $bf[0];
453
1
500ns
@{$bits{rand}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
454
1
400ns
$bits{range}{0} = $bf[0];
455
1
300ns
$bits{reach}{0} = $bf[0];
456
1
600ns
@{$bits{read}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
457
1
200ns
$bits{readdir}{0} = $bf[0];
458
1
200ns
$bits{readline}{0} = $bf[0];
459
1
300ns
$bits{readlink}{0} = $bf[0];
460
1
600ns
@{$bits{recv}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
461
1
200ns
$bits{redo}{0} = $bf[0];
462
1
300ns
$bits{ref}{0} = $bf[0];
463
1
900ns
@{$bits{refassign}}{5,4,1,0} = ($bf[7], $bf[7], $bf[1], $bf[1]);
464
1
300ns
$bits{refgen}{0} = $bf[0];
465
1
200ns
$bits{regcmaybe}{0} = $bf[0];
466
1
300ns
$bits{regcomp}{0} = $bf[0];
467
1
300ns
$bits{regcreset}{0} = $bf[0];
468
1
600ns
@{$bits{rename}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
469
1
800ns
@{$bits{repeat}}{6,1,0} = ('OPpREPEAT_DOLIST', $bf[1], $bf[1]);
470
1
200ns
$bits{require}{0} = $bf[0];
471
1
4µs
@{$bits{reset}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
472
1
600ns
@{$bits{reverse}}{3,0} = ('OPpREVERSE_INPLACE', $bf[0]);
473
1
200ns
$bits{rewinddir}{0} = $bf[0];
474
1
400ns
@{$bits{right_shift}}{1,0} = ($bf[1], $bf[1]);
475
1
500ns
@{$bits{rindex}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
476
1
200ns
$bits{rkeys}{0} = $bf[0];
477
1
200ns
$bits{rmdir}{0} = $bf[0];
478
1
200ns
$bits{rv2av}{0} = $bf[0];
479
1
2µs
@{$bits{rv2cv}}{7,5,0} = ('OPpENTERSUB_NOPAREN', 'OPpMAY_RETURN_CONSTANT', $bf[0]);
480
1
1µs
@{$bits{rv2gv}}{6,5,4,2,0} = ('OPpALLOW_FAKE', $bf[6], $bf[6], 'OPpDONT_INIT_GV', $bf[0]);
481
1
300ns
$bits{rv2hv}{0} = $bf[0];
482
1
600ns
@{$bits{rv2sv}}{5,4,0} = ($bf[6], $bf[6], $bf[0]);
483
1
300ns
$bits{rvalues}{0} = $bf[0];
484
1
800ns
@{$bits{sassign}}{7,6,1,0} = ('OPpASSIGN_CV_TO_GV', 'OPpASSIGN_BACKWARDS', $bf[1], $bf[1]);
485
1
500ns
@{$bits{sbit_and}}{1,0} = ($bf[1], $bf[1]);
486
1
500ns
@{$bits{sbit_or}}{1,0} = ($bf[1], $bf[1]);
487
1
500ns
@{$bits{sbit_xor}}{1,0} = ($bf[1], $bf[1]);
488
1
300ns
$bits{scalar}{0} = $bf[0];
489
1
200ns
$bits{schomp}{0} = $bf[0];
490
1
200ns
$bits{schop}{0} = $bf[0];
491
1
500ns
@{$bits{scmp}}{1,0} = ($bf[1], $bf[1]);
492
1
200ns
$bits{scomplement}{0} = $bf[0];
493
1
600ns
@{$bits{seek}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
494
1
600ns
@{$bits{seekdir}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
495
1
700ns
@{$bits{select}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
496
1
600ns
@{$bits{semctl}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
497
1
500ns
@{$bits{semget}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
498
1
600ns
@{$bits{semop}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
499
1
1µs
@{$bits{send}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
500
1
500ns
@{$bits{seq}}{1,0} = ($bf[1], $bf[1]);
501
1
600ns
@{$bits{setpgrp}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
502
1
500ns
@{$bits{setpriority}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
503
1
400ns
@{$bits{sge}}{1,0} = ($bf[1], $bf[1]);
504
1
400ns
@{$bits{sgt}}{1,0} = ($bf[1], $bf[1]);
505
1
200ns
$bits{shift}{0} = $bf[0];
506
1
600ns
@{$bits{shmctl}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
507
1
500ns
@{$bits{shmget}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
508
1
500ns
@{$bits{shmread}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
509
1
600ns
@{$bits{shmwrite}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
510
1
200ns
$bits{shostent}{0} = $bf[0];
511
1
500ns
@{$bits{shutdown}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
512
1
200ns
$bits{sin}{0} = $bf[0];
513
1
400ns
@{$bits{sle}}{1,0} = ($bf[1], $bf[1]);
514
1
2µs
@{$bits{sleep}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
515
1
500ns
@{$bits{slt}}{1,0} = ($bf[1], $bf[1]);
516
1
500ns
@{$bits{smartmatch}}{1,0} = ($bf[1], $bf[1]);
517
1
500ns
@{$bits{sne}}{1,0} = ($bf[1], $bf[1]);
518
1
300ns
$bits{snetent}{0} = $bf[0];
519
1
600ns
@{$bits{socket}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
520
1
700ns
@{$bits{sockpair}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
521
1
1µs
@{$bits{sort}}{6,5,4,3,2,1,0} = ('OPpSORT_STABLE', 'OPpSORT_QSORT', 'OPpSORT_DESCEND', 'OPpSORT_INPLACE', 'OPpSORT_REVERSE', 'OPpSORT_INTEGER', 'OPpSORT_NUMERIC');
522
1
600ns
@{$bits{splice}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
523
1
200ns
$bits{split}{7} = 'OPpSPLIT_IMPLIM';
524
1
600ns
@{$bits{sprintf}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
525
1
300ns
$bits{sprotoent}{0} = $bf[0];
526
1
200ns
$bits{sqrt}{0} = $bf[0];
527
1
2µs
@{$bits{srand}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
528
1
300ns
$bits{srefgen}{0} = $bf[0];
529
1
700ns
@{$bits{sselect}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
530
1
300ns
$bits{sservent}{0} = $bf[0];
531
1
600ns
@{$bits{ssockopt}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
532
1
200ns
$bits{stat}{0} = $bf[0];
533
1
500ns
@{$bits{stringify}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
534
1
200ns
$bits{study}{0} = $bf[0];
535
1
200ns
$bits{substcont}{0} = $bf[0];
536
1
700ns
@{$bits{substr}}{4,2,1,0} = ('OPpSUBSTR_REPL_FIRST', $bf[2], $bf[2], $bf[2]);
537
1
400ns
@{$bits{subtract}}{1,0} = ($bf[1], $bf[1]);
538
1
500ns
@{$bits{symlink}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
539
1
600ns
@{$bits{syscall}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
540
1
600ns
@{$bits{sysopen}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
541
1
600ns
@{$bits{sysread}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
542
1
600ns
@{$bits{sysseek}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
543
1
600ns
@{$bits{system}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
544
1
600ns
@{$bits{syswrite}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
545
1
500ns
@{$bits{tell}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
546
1
300ns
$bits{telldir}{0} = $bf[0];
547
1
700ns
@{$bits{tie}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
548
1
300ns
$bits{tied}{0} = $bf[0];
549
1
500ns
@{$bits{truncate}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
550
1
300ns
$bits{uc}{0} = $bf[0];
551
1
300ns
$bits{ucfirst}{0} = $bf[0];
552
1
2µs
@{$bits{umask}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
553
1
200ns
$bits{undef}{0} = $bf[0];
554
1
600ns
@{$bits{unlink}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
555
1
700ns
@{$bits{unpack}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
556
1
500ns
@{$bits{unshift}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
557
1
300ns
$bits{untie}{0} = $bf[0];
558
1
600ns
@{$bits{utime}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
559
1
200ns
$bits{values}{0} = $bf[0];
560
1
400ns
@{$bits{vec}}{1,0} = ($bf[1], $bf[1]);
561
1
500ns
@{$bits{waitpid}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
562
1
600ns
@{$bits{warn}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
563
1
500ns
@{$bits{xor}}{1,0} = ($bf[1], $bf[1]);
564
565
566
1
18µs
our %defines = (
567
OPpALLOW_FAKE => 64,
568
OPpARG1_MASK => 1,
569
OPpARG2_MASK => 3,
570
OPpARG3_MASK => 7,
571
OPpARG4_MASK => 15,
572
OPpASSIGN_BACKWARDS => 64,
573
OPpASSIGN_COMMON => 64,
574
OPpASSIGN_CV_TO_GV => 128,
575
OPpCONST_BARE => 64,
576
OPpCONST_ENTERED => 16,
577
OPpCONST_NOVER => 2,
578
OPpCONST_SHORTCIRCUIT => 4,
579
OPpCONST_STRICT => 8,
580
OPpCOREARGS_DEREF1 => 1,
581
OPpCOREARGS_DEREF2 => 2,
582
OPpCOREARGS_PUSHMARK => 128,
583
OPpCOREARGS_SCALARMOD => 64,
584
OPpDEREF => 48,
585
OPpDEREF_AV => 16,
586
OPpDEREF_HV => 32,
587
OPpDEREF_SV => 48,
588
OPpDONT_INIT_GV => 4,
589
OPpEARLY_CV => 32,
590
OPpENTERSUB_AMPER => 8,
591
OPpENTERSUB_DB => 64,
592
OPpENTERSUB_HASTARG => 4,
593
OPpENTERSUB_INARGS => 1,
594
OPpENTERSUB_NOPAREN => 128,
595
OPpEVAL_BYTES => 8,
596
OPpEVAL_COPHH => 16,
597
OPpEVAL_HAS_HH => 2,
598
OPpEVAL_RE_REPARSING => 32,
599
OPpEVAL_UNICODE => 4,
600
OPpEXISTS_SUB => 64,
601
OPpFLIP_LINENUM => 64,
602
OPpFT_ACCESS => 2,
603
OPpFT_AFTER_t => 16,
604
OPpFT_STACKED => 4,
605
OPpFT_STACKING => 8,
606
OPpGREP_LEX => 2,
607
OPpHINT_STRICT_REFS => 2,
608
OPpHUSH_VMSISH => 32,
609
OPpITER_DEF => 8,
610
OPpITER_REVERSED => 4,
611
OPpLIST_GUESSED => 64,
612
OPpLVALUE => 128,
613
OPpLVAL_DEFER => 64,
614
OPpLVAL_INTRO => 128,
615
OPpLVREF_AV => 16,
616
OPpLVREF_CV => 48,
617
OPpLVREF_ELEM => 4,
618
OPpLVREF_HV => 32,
619
OPpLVREF_ITER => 8,
620
OPpLVREF_SV => 0,
621
OPpLVREF_TYPE => 48,
622
OPpMAYBE_LVSUB => 8,
623
OPpMAYBE_TRUEBOOL => 16,
624
OPpMAY_RETURN_CONSTANT => 32,
625
OPpMULTIDEREF_DELETE => 32,
626
OPpMULTIDEREF_EXISTS => 16,
627
OPpOFFBYONE => 128,
628
OPpOPEN_IN_CRLF => 32,
629
OPpOPEN_IN_RAW => 16,
630
OPpOPEN_OUT_CRLF => 128,
631
OPpOPEN_OUT_RAW => 64,
632
OPpOUR_INTRO => 64,
633
OPpPADRANGE_COUNTMASK => 127,
634
OPpPADRANGE_COUNTSHIFT => 7,
635
OPpPAD_STATE => 64,
636
OPpPV_IS_UTF8 => 128,
637
OPpREFCOUNTED => 64,
638
OPpREPEAT_DOLIST => 64,
639
OPpREVERSE_INPLACE => 8,
640
OPpRUNTIME => 64,
641
OPpSLICE => 64,
642
OPpSLICEWARNING => 4,
643
OPpSORT_DESCEND => 16,
644
OPpSORT_INPLACE => 8,
645
OPpSORT_INTEGER => 2,
646
OPpSORT_NUMERIC => 1,
647
OPpSORT_QSORT => 32,
648
OPpSORT_REVERSE => 4,
649
OPpSORT_STABLE => 64,
650
OPpSPLIT_IMPLIM => 128,
651
OPpSUBSTR_REPL_FIRST => 16,
652
OPpTARGET_MY => 16,
653
OPpTRANS_COMPLEMENT => 32,
654
OPpTRANS_DELETE => 128,
655
OPpTRANS_FROM_UTF => 1,
656
OPpTRANS_GROWS => 64,
657
OPpTRANS_IDENTICAL => 4,
658
OPpTRANS_SQUASH => 8,
659
OPpTRANS_TO_UTF => 2,
660
OPpTRUEBOOL => 32,
661
);
662
663
1
15µs
our %labels = (
664
OPpALLOW_FAKE => 'FAKE',
665
OPpASSIGN_BACKWARDS => 'BKWARD',
666
OPpASSIGN_COMMON => 'COMMON',
667
OPpASSIGN_CV_TO_GV => 'CV2GV',
668
OPpCONST_BARE => 'BARE',
669
OPpCONST_ENTERED => 'ENTERED',
670
OPpCONST_NOVER => 'NOVER',
671
OPpCONST_SHORTCIRCUIT => 'SHORT',
672
OPpCONST_STRICT => 'STRICT',
673
OPpCOREARGS_DEREF1 => 'DEREF1',
674
OPpCOREARGS_DEREF2 => 'DEREF2',
675
OPpCOREARGS_PUSHMARK => 'MARK',
676
OPpCOREARGS_SCALARMOD => '$MOD',
677
OPpDEREF_AV => 'DREFAV',
678
OPpDEREF_HV => 'DREFHV',
679
OPpDEREF_SV => 'DREFSV',
680
OPpDONT_INIT_GV => 'NOINIT',
681
OPpEARLY_CV => 'EARLYCV',
682
OPpENTERSUB_AMPER => 'AMPER',
683
OPpENTERSUB_DB => 'DBG',
684
OPpENTERSUB_HASTARG => 'TARG',
685
OPpENTERSUB_INARGS => 'INARGS',
686
OPpENTERSUB_NOPAREN => 'NO()',
687
OPpEVAL_BYTES => 'BYTES',
688
OPpEVAL_COPHH => 'COPHH',
689
OPpEVAL_HAS_HH => 'HAS_HH',
690
OPpEVAL_RE_REPARSING => 'REPARSE',
691
OPpEVAL_UNICODE => 'UNI',
692
OPpEXISTS_SUB => 'SUB',
693
OPpFLIP_LINENUM => 'LINENUM',
694
OPpFT_ACCESS => 'FTACCESS',
695
OPpFT_AFTER_t => 'FTAFTERt',
696
OPpFT_STACKED => 'FTSTACKED',
697
OPpFT_STACKING => 'FTSTACKING',
698
OPpGREP_LEX => 'GREPLEX',
699
OPpHINT_STRICT_REFS => 'STRICT',
700
OPpHUSH_VMSISH => 'HUSH',
701
OPpITER_DEF => 'DEF',
702
OPpITER_REVERSED => 'REVERSED',
703
OPpLIST_GUESSED => 'GUESSED',
704
OPpLVALUE => 'LV',
705
OPpLVAL_DEFER => 'LVDEFER',
706
OPpLVAL_INTRO => 'LVINTRO',
707
OPpLVREF_AV => 'AV',
708
OPpLVREF_CV => 'CV',
709
OPpLVREF_ELEM => 'ELEM',
710
OPpLVREF_HV => 'HV',
711
OPpLVREF_ITER => 'ITER',
712
OPpLVREF_SV => 'SV',
713
OPpMAYBE_LVSUB => 'LVSUB',
714
OPpMAYBE_TRUEBOOL => 'BOOL?',
715
OPpMAY_RETURN_CONSTANT => 'CONST',
716
OPpMULTIDEREF_DELETE => 'DELETE',
717
OPpMULTIDEREF_EXISTS => 'EXISTS',
718
OPpOFFBYONE => '+1',
719
OPpOPEN_IN_CRLF => 'INCR',
720
OPpOPEN_IN_RAW => 'INBIN',
721
OPpOPEN_OUT_CRLF => 'OUTCR',
722
OPpOPEN_OUT_RAW => 'OUTBIN',
723
OPpOUR_INTRO => 'OURINTR',
724
OPpPAD_STATE => 'STATE',
725
OPpPV_IS_UTF8 => 'UTF',
726
OPpREFCOUNTED => 'REFC',
727
OPpREPEAT_DOLIST => 'DOLIST',
728
OPpREVERSE_INPLACE => 'INPLACE',
729
OPpRUNTIME => 'RTIME',
730
OPpSLICE => 'SLICE',
731
OPpSLICEWARNING => 'SLICEWARN',
732
OPpSORT_DESCEND => 'DESC',
733
OPpSORT_INPLACE => 'INPLACE',
734
OPpSORT_INTEGER => 'INT',
735
OPpSORT_NUMERIC => 'NUM',
736
OPpSORT_QSORT => 'QSORT',
737
OPpSORT_REVERSE => 'REV',
738
OPpSORT_STABLE => 'STABLE',
739
OPpSPLIT_IMPLIM => 'IMPLIM',
740
OPpSUBSTR_REPL_FIRST => 'REPL1ST',
741
OPpTARGET_MY => 'TARGMY',
742
OPpTRANS_COMPLEMENT => 'COMPL',
743
OPpTRANS_DELETE => 'DEL',
744
OPpTRANS_FROM_UTF => '<UTF',
745
OPpTRANS_GROWS => 'GROWS',
746
OPpTRANS_IDENTICAL => 'IDENT',
747
OPpTRANS_SQUASH => 'SQUASH',
748
OPpTRANS_TO_UTF => '>UTF',
749
OPpTRUEBOOL => 'BOOL',
750
);
751
752
753
1
22µs
our %ops_using = (
754
OPpALLOW_FAKE => [qw(rv2gv)],
755
OPpASSIGN_BACKWARDS => [qw(sassign)],
756
OPpASSIGN_COMMON => [qw(aassign)],
757
OPpCONST_BARE => [qw(const)],
758
OPpCOREARGS_DEREF1 => [qw(coreargs)],
759
OPpEARLY_CV => [qw(gv)],
760
OPpENTERSUB_AMPER => [qw(entersub rv2cv)],
761
OPpENTERSUB_INARGS => [qw(entersub)],
762
OPpENTERSUB_NOPAREN => [qw(rv2cv)],
763
OPpEVAL_BYTES => [qw(entereval)],
764
OPpEXISTS_SUB => [qw(exists)],
765
OPpFLIP_LINENUM => [qw(flip flop)],
766
OPpFT_ACCESS => [qw(fteexec fteread ftewrite ftrexec ftrread ftrwrite)],
767
OPpFT_AFTER_t => [qw(ftatime ftbinary ftblk ftchr ftctime ftdir fteexec fteowned fteread ftewrite ftfile ftis ftlink ftmtime ftpipe ftrexec ftrowned ftrread ftrwrite ftsgid ftsize ftsock ftsuid ftsvtx fttext fttty ftzero)],
768
OPpGREP_LEX => [qw(grepstart grepwhile mapstart mapwhile)],
769
OPpHINT_STRICT_REFS => [qw(entersub multideref rv2av rv2cv rv2gv rv2hv rv2sv)],
770
OPpHUSH_VMSISH => [qw(dbstate nextstate)],
771
OPpITER_DEF => [qw(enteriter)],
772
OPpITER_REVERSED => [qw(enteriter iter)],
773
OPpLIST_GUESSED => [qw(list)],
774
OPpLVALUE => [qw(leave leaveloop)],
775
OPpLVAL_DEFER => [qw(aelem helem multideref)],
776
OPpLVAL_INTRO => [qw(aelem aslice cond_expr delete enteriter entersub gvsv helem hslice list lvavref lvref lvrefslice multideref padav padhv padrange padsv pushmark refassign rv2av rv2gv rv2hv rv2sv)],
777
OPpLVREF_ELEM => [qw(lvref refassign)],
778
OPpMAYBE_LVSUB => [qw(aassign aelem aslice av2arylen helem hslice keys kvaslice kvhslice multideref padav padhv pos rkeys rv2av rv2gv rv2hv substr vec)],
779
OPpMAYBE_TRUEBOOL => [qw(padhv rv2hv)],
780
OPpMULTIDEREF_DELETE => [qw(multideref)],
781
OPpOFFBYONE => [qw(caller runcv wantarray)],
782
OPpOPEN_IN_CRLF => [qw(backtick open)],
783
OPpOUR_INTRO => [qw(enteriter gvsv rv2av rv2hv rv2sv split)],
784
OPpPAD_STATE => [qw(lvavref lvref padav padhv padsv pushmark refassign)],
785
OPpPV_IS_UTF8 => [qw(dump goto last next redo)],
786
OPpREFCOUNTED => [qw(leave leaveeval leavesub leavesublv leavewrite)],
787
OPpREPEAT_DOLIST => [qw(repeat)],
788
OPpREVERSE_INPLACE => [qw(reverse)],
789
OPpRUNTIME => [qw(match pushre qr subst substcont)],
790
OPpSLICE => [qw(delete)],
791
OPpSLICEWARNING => [qw(aslice hslice padav padhv rv2av rv2hv)],
792
OPpSORT_DESCEND => [qw(sort)],
793
OPpSPLIT_IMPLIM => [qw(split)],
794
OPpSUBSTR_REPL_FIRST => [qw(substr)],
795
OPpTARGET_MY => [qw(abs add atan2 chdir chmod chomp chown chr chroot concat cos crypt divide exec exp flock getpgrp getppid getpriority hex i_add i_divide i_modulo i_multiply i_subtract index int kill left_shift length link log match mkdir modulo multiply nbit_and nbit_or nbit_xor ncomplement oct ord pow push pushre qr rand rename right_shift rindex rmdir schomp scomplement setpgrp setpriority sin sleep sqrt srand stringify subst subtract symlink system time trans transr unlink unshift utime wait waitpid)],
796
OPpTRANS_COMPLEMENT => [qw(trans transr)],
797
);
798
799
1
400ns
$ops_using{OPpASSIGN_CV_TO_GV} = $ops_using{OPpASSIGN_BACKWARDS};
800
1
200ns
$ops_using{OPpCONST_ENTERED} = $ops_using{OPpCONST_BARE};
801
1
300ns
$ops_using{OPpCONST_NOVER} = $ops_using{OPpCONST_BARE};
802
1
200ns
$ops_using{OPpCONST_SHORTCIRCUIT} = $ops_using{OPpCONST_BARE};
803
1
200ns
$ops_using{OPpCONST_STRICT} = $ops_using{OPpCONST_BARE};
804
1
200ns
$ops_using{OPpCOREARGS_DEREF2} = $ops_using{OPpCOREARGS_DEREF1};
805
1
200ns
$ops_using{OPpCOREARGS_PUSHMARK} = $ops_using{OPpCOREARGS_DEREF1};
806
1
200ns
$ops_using{OPpCOREARGS_SCALARMOD} = $ops_using{OPpCOREARGS_DEREF1};
807
1
100ns
$ops_using{OPpDONT_INIT_GV} = $ops_using{OPpALLOW_FAKE};
808
1
200ns
$ops_using{OPpENTERSUB_DB} = $ops_using{OPpENTERSUB_AMPER};
809
1
100ns
$ops_using{OPpENTERSUB_HASTARG} = $ops_using{OPpENTERSUB_AMPER};
810
1
200ns
$ops_using{OPpEVAL_COPHH} = $ops_using{OPpEVAL_BYTES};
811
1
200ns
$ops_using{OPpEVAL_HAS_HH} = $ops_using{OPpEVAL_BYTES};
812
1
200ns
$ops_using{OPpEVAL_RE_REPARSING} = $ops_using{OPpEVAL_BYTES};
813
1
200ns
$ops_using{OPpEVAL_UNICODE} = $ops_using{OPpEVAL_BYTES};
814
1
100ns
$ops_using{OPpFT_STACKED} = $ops_using{OPpFT_AFTER_t};
815
1
100ns
$ops_using{OPpFT_STACKING} = $ops_using{OPpFT_AFTER_t};
816
1
100ns
$ops_using{OPpLVREF_ITER} = $ops_using{OPpLVREF_ELEM};
817
1
100ns
$ops_using{OPpMAY_RETURN_CONSTANT} = $ops_using{OPpENTERSUB_NOPAREN};
818
1
200ns
$ops_using{OPpMULTIDEREF_EXISTS} = $ops_using{OPpMULTIDEREF_DELETE};
819
1
1µs
$ops_using{OPpOPEN_IN_RAW} = $ops_using{OPpOPEN_IN_CRLF};
820
1
100ns
$ops_using{OPpOPEN_OUT_CRLF} = $ops_using{OPpOPEN_IN_CRLF};
821
1
100ns
$ops_using{OPpOPEN_OUT_RAW} = $ops_using{OPpOPEN_IN_CRLF};
822
1
100ns
$ops_using{OPpSORT_INPLACE} = $ops_using{OPpSORT_DESCEND};
823
1
100ns
$ops_using{OPpSORT_INTEGER} = $ops_using{OPpSORT_DESCEND};
824
1
100ns
$ops_using{OPpSORT_NUMERIC} = $ops_using{OPpSORT_DESCEND};
825
1
100ns
$ops_using{OPpSORT_QSORT} = $ops_using{OPpSORT_DESCEND};
826
1
100ns
$ops_using{OPpSORT_REVERSE} = $ops_using{OPpSORT_DESCEND};
827
1
200ns
$ops_using{OPpSORT_STABLE} = $ops_using{OPpSORT_DESCEND};
828
1
200ns
$ops_using{OPpTRANS_DELETE} = $ops_using{OPpTRANS_COMPLEMENT};
829
1
200ns
$ops_using{OPpTRANS_FROM_UTF} = $ops_using{OPpTRANS_COMPLEMENT};
830
1
200ns
$ops_using{OPpTRANS_GROWS} = $ops_using{OPpTRANS_COMPLEMENT};
831
1
200ns
$ops_using{OPpTRANS_IDENTICAL} = $ops_using{OPpTRANS_COMPLEMENT};
832
1
200ns
$ops_using{OPpTRANS_SQUASH} = $ops_using{OPpTRANS_COMPLEMENT};
833
1
100ns
$ops_using{OPpTRANS_TO_UTF} = $ops_using{OPpTRANS_COMPLEMENT};
834
1
182µs
$ops_using{OPpTRUEBOOL} = $ops_using{OPpMAYBE_TRUEBOOL};
835
836
# ex: set ro: