← 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
StatementsExecuted 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
17B::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
34This 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
41which contain information about the per-op meanings of the bits in the
42op_private field.
43
44=head2 C<%bits>
45
46This is indexed by op name and then bit number (0..7). For single bit flags,
47it returns the name of the define (if any) for that bit:
48
49 $B::Op_private::bits{aelem}{7} eq 'OPpLVAL_INTRO';
50
51For bit fields, it returns a hash ref containing details about the field.
52The same reference will be returned for all bit positions that make
53up 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
58The 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
93This 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
99This gives the short display label for each define, as used by C<B::Concise>
100and C<perl -Dx>, e.g.
101
102 $B::Op_private::labels{OPpLVAL_INTRO} eq 'LVINTRO';
103
104If the label equals '-', then Concise will treat the bit as a raw bit and
105not try to display it symbolically.
106
107=head2 C<%ops_using>
108
109For each define, this gives a reference to an array of op names that use
110the flag.
111
112 @ops_using_lvintro = @{ $B::Op_private::ops_using{OPp_LVAL_INTRO} };
113
114=cut
115
116package B::Op_private;
117
118our %bits;
119
120
1211500nsour $VERSION = "5.022000";
122
12314µs$bits{$_}{3} = 'OPpENTERSUB_AMPER' for qw(entersub rv2cv);
1241800ns$bits{$_}{6} = 'OPpENTERSUB_DB' for qw(entersub rv2cv);
1251600ns$bits{$_}{2} = 'OPpENTERSUB_HASTARG' for qw(entersub rv2cv);
12612µs$bits{$_}{6} = 'OPpFLIP_LINENUM' for qw(flip flop);
12713µs$bits{$_}{1} = 'OPpFT_ACCESS' for qw(fteexec fteread ftewrite ftrexec ftrread ftrwrite);
128112µ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);
12915µ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);
13016µ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);
13112µs$bits{$_}{1} = 'OPpGREP_LEX' for qw(grepstart grepwhile mapstart mapwhile);
13212µs$bits{$_}{1} = 'OPpHINT_STRICT_REFS' for qw(entersub multideref rv2av rv2cv rv2gv rv2hv rv2sv);
13311µs$bits{$_}{5} = 'OPpHUSH_VMSISH' for qw(dbstate nextstate);
13411µs$bits{$_}{2} = 'OPpITER_REVERSED' for qw(enteriter iter);
13511µs$bits{$_}{7} = 'OPpLVALUE' for qw(leave leaveloop);
13611µs$bits{$_}{6} = 'OPpLVAL_DEFER' for qw(aelem helem multideref);
13717µ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);
1381700ns$bits{$_}{2} = 'OPpLVREF_ELEM' for qw(lvref refassign);
1391600ns$bits{$_}{3} = 'OPpLVREF_ITER' for qw(lvref refassign);
14017µ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);
1411700ns$bits{$_}{4} = 'OPpMAYBE_TRUEBOOL' for qw(padhv rv2hv);
14211µs$bits{$_}{7} = 'OPpOFFBYONE' for qw(caller runcv wantarray);
14311µs$bits{$_}{5} = 'OPpOPEN_IN_CRLF' for qw(backtick open);
1441800ns$bits{$_}{4} = 'OPpOPEN_IN_RAW' for qw(backtick open);
1451700ns$bits{$_}{7} = 'OPpOPEN_OUT_CRLF' for qw(backtick open);
1461600ns$bits{$_}{6} = 'OPpOPEN_OUT_RAW' for qw(backtick open);
14712µs$bits{$_}{6} = 'OPpOUR_INTRO' for qw(enteriter gvsv rv2av rv2hv rv2sv split);
14812µs$bits{$_}{6} = 'OPpPAD_STATE' for qw(lvavref lvref padav padhv padsv pushmark refassign);
14912µs$bits{$_}{7} = 'OPpPV_IS_UTF8' for qw(dump goto last next redo);
15012µs$bits{$_}{6} = 'OPpREFCOUNTED' for qw(leave leaveeval leavesub leavesublv leavewrite);
15114µs$bits{$_}{6} = 'OPpRUNTIME' for qw(match pushre qr subst substcont);
15211µs$bits{$_}{2} = 'OPpSLICEWARNING' for qw(aslice hslice padav padhv rv2av rv2hv);
153127µ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);
1541800ns$bits{$_}{5} = 'OPpTRANS_COMPLEMENT' for qw(trans transr);
1551500ns$bits{$_}{7} = 'OPpTRANS_DELETE' for qw(trans transr);
1561800ns$bits{$_}{0} = 'OPpTRANS_FROM_UTF' for qw(trans transr);
1571600ns$bits{$_}{6} = 'OPpTRANS_GROWS' for qw(trans transr);
1581500ns$bits{$_}{2} = 'OPpTRANS_IDENTICAL' for qw(trans transr);
1591600ns$bits{$_}{3} = 'OPpTRANS_SQUASH' for qw(trans transr);
16011µs$bits{$_}{1} = 'OPpTRANS_TO_UTF' for qw(trans transr);
1611600ns$bits{$_}{5} = 'OPpTRUEBOOL' for qw(padhv rv2hv);
162
163110µsmy @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
23112µs@{$bits{aassign}}{6,1,0} = ('OPpASSIGN_COMMON', $bf[1], $bf[1]);
2321300ns$bits{abs}{0} = $bf[0];
2331900ns@{$bits{accept}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
2341500ns@{$bits{add}}{1,0} = ($bf[1], $bf[1]);
2351400ns$bits{aeach}{0} = $bf[0];
2361800ns@{$bits{aelem}}{5,4,1,0} = ($bf[6], $bf[6], $bf[1], $bf[1]);
23711µ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]);
23811µ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]);
2391300ns$bits{akeys}{0} = $bf[0];
2401300ns$bits{alarm}{0} = $bf[0];
2411200ns$bits{and}{0} = $bf[0];
2421200ns$bits{andassign}{0} = $bf[0];
2431200ns$bits{anonconst}{0} = $bf[0];
2441700ns@{$bits{anonhash}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
2451600ns@{$bits{anonlist}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
2461600ns@{$bits{atan2}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
2471200ns$bits{av2arylen}{0} = $bf[0];
2481200ns$bits{avalues}{0} = $bf[0];
2491200ns$bits{backtick}{0} = $bf[0];
2501600ns@{$bits{bind}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
25112µs@{$bits{binmode}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
2521600ns@{$bits{bit_and}}{1,0} = ($bf[1], $bf[1]);
2531500ns@{$bits{bit_or}}{1,0} = ($bf[1], $bf[1]);
2541500ns@{$bits{bit_xor}}{1,0} = ($bf[1], $bf[1]);
2551600ns@{$bits{bless}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
2561600ns@{$bits{caller}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
2571600ns@{$bits{chdir}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
2581500ns@{$bits{chmod}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
2591200ns$bits{chomp}{0} = $bf[0];
2601200ns$bits{chop}{0} = $bf[0];
2611500ns@{$bits{chown}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
2621200ns$bits{chr}{0} = $bf[0];
2631200ns$bits{chroot}{0} = $bf[0];
2641600ns@{$bits{close}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
2651200ns$bits{closedir}{0} = $bf[0];
2661300ns$bits{complement}{0} = $bf[0];
2671500ns@{$bits{concat}}{1,0} = ($bf[1], $bf[1]);
2681100ns$bits{cond_expr}{0} = $bf[0];
2691600ns@{$bits{connect}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
27011µs@{$bits{const}}{6,4,3,2,1} = ('OPpCONST_BARE', 'OPpCONST_ENTERED', 'OPpCONST_STRICT', 'OPpCONST_SHORTCIRCUIT', 'OPpCONST_NOVER');
2711800ns@{$bits{coreargs}}{7,6,1,0} = ('OPpCOREARGS_PUSHMARK', 'OPpCOREARGS_SCALARMOD', 'OPpCOREARGS_DEREF2', 'OPpCOREARGS_DEREF1');
27211µs$bits{cos}{0} = $bf[0];
2731600ns@{$bits{crypt}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
2741200ns$bits{dbmclose}{0} = $bf[0];
2751600ns@{$bits{dbmopen}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
2761900ns$bits{defined}{0} = $bf[0];
2771600ns@{$bits{delete}}{6,0} = ('OPpSLICE', $bf[0]);
2781600ns@{$bits{die}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
2791400ns@{$bits{divide}}{1,0} = ($bf[1], $bf[1]);
2801200ns$bits{dofile}{0} = $bf[0];
2811200ns$bits{dor}{0} = $bf[0];
2821300ns$bits{dorassign}{0} = $bf[0];
2831200ns$bits{dump}{0} = $bf[0];
2841300ns$bits{each}{0} = $bf[0];
28511µs@{$bits{entereval}}{5,4,3,2,1,0} = ('OPpEVAL_RE_REPARSING', 'OPpEVAL_COPHH', 'OPpEVAL_BYTES', 'OPpEVAL_UNICODE', 'OPpEVAL_HAS_HH', $bf[0]);
2861300ns$bits{entergiven}{0} = $bf[0];
2871300ns$bits{enteriter}{3} = 'OPpITER_DEF';
2881800ns@{$bits{entersub}}{5,4,0} = ($bf[6], $bf[6], 'OPpENTERSUB_INARGS');
2891300ns$bits{entertry}{0} = $bf[0];
2901300ns$bits{enterwhen}{0} = $bf[0];
2911600ns@{$bits{enterwrite}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
2921700ns@{$bits{eof}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
2931500ns@{$bits{eq}}{1,0} = ($bf[1], $bf[1]);
2941600ns@{$bits{exec}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
2951500ns@{$bits{exists}}{6,0} = ('OPpEXISTS_SUB', $bf[0]);
2961600ns@{$bits{exit}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
2971200ns$bits{exp}{0} = $bf[0];
2981300ns$bits{fc}{0} = $bf[0];
29912µs@{$bits{fcntl}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
3001600ns@{$bits{fileno}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
3011300ns$bits{flip}{0} = $bf[0];
3021600ns@{$bits{flock}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
3031200ns$bits{flop}{0} = $bf[0];
3041600ns@{$bits{formline}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
3051200ns$bits{ftatime}{0} = $bf[0];
3061200ns$bits{ftbinary}{0} = $bf[0];
3071200ns$bits{ftblk}{0} = $bf[0];
3081200ns$bits{ftchr}{0} = $bf[0];
3091200ns$bits{ftctime}{0} = $bf[0];
3101200ns$bits{ftdir}{0} = $bf[0];
3111100ns$bits{fteexec}{0} = $bf[0];
3121100ns$bits{fteowned}{0} = $bf[0];
3131100ns$bits{fteread}{0} = $bf[0];
3141100ns$bits{ftewrite}{0} = $bf[0];
3151100ns$bits{ftfile}{0} = $bf[0];
3161100ns$bits{ftis}{0} = $bf[0];
3171100ns$bits{ftlink}{0} = $bf[0];
3181100ns$bits{ftmtime}{0} = $bf[0];
3191200ns$bits{ftpipe}{0} = $bf[0];
3201100ns$bits{ftrexec}{0} = $bf[0];
3211100ns$bits{ftrowned}{0} = $bf[0];
3221100ns$bits{ftrread}{0} = $bf[0];
3231100ns$bits{ftrwrite}{0} = $bf[0];
3241100ns$bits{ftsgid}{0} = $bf[0];
3251100ns$bits{ftsize}{0} = $bf[0];
3261100ns$bits{ftsock}{0} = $bf[0];
3271100ns$bits{ftsuid}{0} = $bf[0];
3281100ns$bits{ftsvtx}{0} = $bf[0];
3291200ns$bits{fttext}{0} = $bf[0];
3301200ns$bits{fttty}{0} = $bf[0];
3311100ns$bits{ftzero}{0} = $bf[0];
3321400ns@{$bits{ge}}{1,0} = ($bf[1], $bf[1]);
3331500ns@{$bits{gelem}}{1,0} = ($bf[1], $bf[1]);
3341600ns@{$bits{getc}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
3351300ns$bits{getpeername}{0} = $bf[0];
3361500ns@{$bits{getpgrp}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
3371500ns@{$bits{getpriority}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
3381300ns$bits{getsockname}{0} = $bf[0];
3391200ns$bits{ggrgid}{0} = $bf[0];
3401200ns$bits{ggrnam}{0} = $bf[0];
3411600ns@{$bits{ghbyaddr}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
3421300ns$bits{ghbyname}{0} = $bf[0];
3431600ns@{$bits{glob}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
3441600ns@{$bits{gmtime}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
34512µs@{$bits{gnbyaddr}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
3461200ns$bits{gnbyname}{0} = $bf[0];
3471200ns$bits{goto}{0} = $bf[0];
3481300ns$bits{gpbyname}{0} = $bf[0];
3491600ns@{$bits{gpbynumber}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
3501200ns$bits{gpwnam}{0} = $bf[0];
3511300ns$bits{gpwuid}{0} = $bf[0];
3521200ns$bits{grepstart}{0} = $bf[0];
3531100ns$bits{grepwhile}{0} = $bf[0];
3541600ns@{$bits{gsbyname}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
3551600ns@{$bits{gsbyport}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
3561600ns@{$bits{gsockopt}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
3571500ns@{$bits{gt}}{1,0} = ($bf[1], $bf[1]);
3581400ns$bits{gv}{5} = 'OPpEARLY_CV';
3591700ns@{$bits{helem}}{5,4,1,0} = ($bf[6], $bf[6], $bf[1], $bf[1]);
3601200ns$bits{hex}{0} = $bf[0];
3611400ns@{$bits{i_add}}{1,0} = ($bf[1], $bf[1]);
3621400ns@{$bits{i_divide}}{1,0} = ($bf[1], $bf[1]);
36312µs@{$bits{i_eq}}{1,0} = ($bf[1], $bf[1]);
3641500ns@{$bits{i_ge}}{1,0} = ($bf[1], $bf[1]);
3651400ns@{$bits{i_gt}}{1,0} = ($bf[1], $bf[1]);
3661500ns@{$bits{i_le}}{1,0} = ($bf[1], $bf[1]);
3671500ns@{$bits{i_lt}}{1,0} = ($bf[1], $bf[1]);
3681400ns@{$bits{i_modulo}}{1,0} = ($bf[1], $bf[1]);
3691400ns@{$bits{i_multiply}}{1,0} = ($bf[1], $bf[1]);
3701400ns@{$bits{i_ncmp}}{1,0} = ($bf[1], $bf[1]);
3711400ns@{$bits{i_ne}}{1,0} = ($bf[1], $bf[1]);
3721200ns$bits{i_negate}{0} = $bf[0];
3731300ns$bits{i_postdec}{0} = $bf[0];
3741300ns$bits{i_postinc}{0} = $bf[0];
3751900ns$bits{i_predec}{0} = $bf[0];
3761200ns$bits{i_preinc}{0} = $bf[0];
3771300ns@{$bits{i_subtract}}{1,0} = ($bf[1], $bf[1]);
3781600ns@{$bits{index}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
3791200ns$bits{int}{0} = $bf[0];
3801700ns@{$bits{ioctl}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
3811700ns@{$bits{join}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
3821200ns$bits{keys}{0} = $bf[0];
3831500ns@{$bits{kill}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
3841200ns$bits{last}{0} = $bf[0];
3851300ns$bits{lc}{0} = $bf[0];
3861200ns$bits{lcfirst}{0} = $bf[0];
3871500ns@{$bits{le}}{1,0} = ($bf[1], $bf[1]);
3881200ns$bits{leaveeval}{0} = $bf[0];
3891300ns$bits{leavegiven}{0} = $bf[0];
3901400ns@{$bits{leaveloop}}{1,0} = ($bf[1], $bf[1]);
3911200ns$bits{leavesub}{0} = $bf[0];
3921200ns$bits{leavesublv}{0} = $bf[0];
3931200ns$bits{leavewhen}{0} = $bf[0];
3941200ns$bits{leavewrite}{0} = $bf[0];
3951400ns@{$bits{left_shift}}{1,0} = ($bf[1], $bf[1]);
3961200ns$bits{length}{0} = $bf[0];
3971600ns@{$bits{link}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
3981300ns$bits{list}{6} = 'OPpLIST_GUESSED';
3991700ns@{$bits{listen}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
4001200ns$bits{localtime}{0} = $bf[0];
4011200ns$bits{lock}{0} = $bf[0];
4021200ns$bits{log}{0} = $bf[0];
4031400ns@{$bits{lslice}}{1,0} = ($bf[1], $bf[1]);
4041200ns$bits{lstat}{0} = $bf[0];
4051400ns@{$bits{lt}}{1,0} = ($bf[1], $bf[1]);
4061200ns$bits{lvavref}{0} = $bf[0];
4071700ns@{$bits{lvref}}{5,4,0} = ($bf[7], $bf[7], $bf[0]);
4081200ns$bits{mapstart}{0} = $bf[0];
4091200ns$bits{mapwhile}{0} = $bf[0];
4101300ns$bits{method}{0} = $bf[0];
4111300ns$bits{method_named}{0} = $bf[0];
41216µs$bits{method_redir}{0} = $bf[0];
4131300ns$bits{method_redir_super}{0} = $bf[0];
4141300ns$bits{method_super}{0} = $bf[0];
4151600ns@{$bits{mkdir}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
41611µs@{$bits{modulo}}{1,0} = ($bf[1], $bf[1]);
4171700ns@{$bits{msgctl}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
4181700ns@{$bits{msgget}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
41912µs@{$bits{msgrcv}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
4201600ns@{$bits{msgsnd}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
4211700ns@{$bits{multideref}}{5,4,0} = ('OPpMULTIDEREF_DELETE', 'OPpMULTIDEREF_EXISTS', $bf[0]);
4221300ns@{$bits{multiply}}{1,0} = ($bf[1], $bf[1]);
4231400ns@{$bits{nbit_and}}{1,0} = ($bf[1], $bf[1]);
4241500ns@{$bits{nbit_or}}{1,0} = ($bf[1], $bf[1]);
4251400ns@{$bits{nbit_xor}}{1,0} = ($bf[1], $bf[1]);
4261500ns@{$bits{ncmp}}{1,0} = ($bf[1], $bf[1]);
4271200ns$bits{ncomplement}{0} = $bf[0];
4281500ns@{$bits{ne}}{1,0} = ($bf[1], $bf[1]);
4291300ns$bits{negate}{0} = $bf[0];
4301200ns$bits{next}{0} = $bf[0];
4311300ns$bits{not}{0} = $bf[0];
4321100ns$bits{oct}{0} = $bf[0];
4331300ns$bits{once}{0} = $bf[0];
4341900ns@{$bits{open}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
4351600ns@{$bits{open_dir}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
4361300ns$bits{or}{0} = $bf[0];
4371300ns$bits{orassign}{0} = $bf[0];
4381200ns$bits{ord}{0} = $bf[0];
4391700ns@{$bits{pack}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
44011µs@{$bits{padrange}}{6,5,4,3,2,1,0} = ($bf[4], $bf[4], $bf[4], $bf[4], $bf[4], $bf[4], $bf[4]);
4411500ns@{$bits{padsv}}{5,4} = ($bf[6], $bf[6]);
44213µs@{$bits{pipe_op}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
4431300ns$bits{pop}{0} = $bf[0];
4441200ns$bits{pos}{0} = $bf[0];
4451300ns$bits{postdec}{0} = $bf[0];
4461300ns$bits{postinc}{0} = $bf[0];
4471400ns@{$bits{pow}}{1,0} = ($bf[1], $bf[1]);
4481200ns$bits{predec}{0} = $bf[0];
4491300ns$bits{preinc}{0} = $bf[0];
4501200ns$bits{prototype}{0} = $bf[0];
4511600ns@{$bits{push}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
4521300ns$bits{quotemeta}{0} = $bf[0];
4531500ns@{$bits{rand}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
4541400ns$bits{range}{0} = $bf[0];
4551300ns$bits{reach}{0} = $bf[0];
4561600ns@{$bits{read}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
4571200ns$bits{readdir}{0} = $bf[0];
4581200ns$bits{readline}{0} = $bf[0];
4591300ns$bits{readlink}{0} = $bf[0];
4601600ns@{$bits{recv}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
4611200ns$bits{redo}{0} = $bf[0];
4621300ns$bits{ref}{0} = $bf[0];
4631900ns@{$bits{refassign}}{5,4,1,0} = ($bf[7], $bf[7], $bf[1], $bf[1]);
4641300ns$bits{refgen}{0} = $bf[0];
4651200ns$bits{regcmaybe}{0} = $bf[0];
4661300ns$bits{regcomp}{0} = $bf[0];
4671300ns$bits{regcreset}{0} = $bf[0];
4681600ns@{$bits{rename}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
4691800ns@{$bits{repeat}}{6,1,0} = ('OPpREPEAT_DOLIST', $bf[1], $bf[1]);
4701200ns$bits{require}{0} = $bf[0];
47114µs@{$bits{reset}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
4721600ns@{$bits{reverse}}{3,0} = ('OPpREVERSE_INPLACE', $bf[0]);
4731200ns$bits{rewinddir}{0} = $bf[0];
4741400ns@{$bits{right_shift}}{1,0} = ($bf[1], $bf[1]);
4751500ns@{$bits{rindex}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
4761200ns$bits{rkeys}{0} = $bf[0];
4771200ns$bits{rmdir}{0} = $bf[0];
4781200ns$bits{rv2av}{0} = $bf[0];
47912µs@{$bits{rv2cv}}{7,5,0} = ('OPpENTERSUB_NOPAREN', 'OPpMAY_RETURN_CONSTANT', $bf[0]);
48011µs@{$bits{rv2gv}}{6,5,4,2,0} = ('OPpALLOW_FAKE', $bf[6], $bf[6], 'OPpDONT_INIT_GV', $bf[0]);
4811300ns$bits{rv2hv}{0} = $bf[0];
4821600ns@{$bits{rv2sv}}{5,4,0} = ($bf[6], $bf[6], $bf[0]);
4831300ns$bits{rvalues}{0} = $bf[0];
4841800ns@{$bits{sassign}}{7,6,1,0} = ('OPpASSIGN_CV_TO_GV', 'OPpASSIGN_BACKWARDS', $bf[1], $bf[1]);
4851500ns@{$bits{sbit_and}}{1,0} = ($bf[1], $bf[1]);
4861500ns@{$bits{sbit_or}}{1,0} = ($bf[1], $bf[1]);
4871500ns@{$bits{sbit_xor}}{1,0} = ($bf[1], $bf[1]);
4881300ns$bits{scalar}{0} = $bf[0];
4891200ns$bits{schomp}{0} = $bf[0];
4901200ns$bits{schop}{0} = $bf[0];
4911500ns@{$bits{scmp}}{1,0} = ($bf[1], $bf[1]);
4921200ns$bits{scomplement}{0} = $bf[0];
4931600ns@{$bits{seek}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
4941600ns@{$bits{seekdir}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
4951700ns@{$bits{select}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
4961600ns@{$bits{semctl}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
4971500ns@{$bits{semget}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
4981600ns@{$bits{semop}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
49911µs@{$bits{send}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5001500ns@{$bits{seq}}{1,0} = ($bf[1], $bf[1]);
5011600ns@{$bits{setpgrp}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5021500ns@{$bits{setpriority}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5031400ns@{$bits{sge}}{1,0} = ($bf[1], $bf[1]);
5041400ns@{$bits{sgt}}{1,0} = ($bf[1], $bf[1]);
5051200ns$bits{shift}{0} = $bf[0];
5061600ns@{$bits{shmctl}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5071500ns@{$bits{shmget}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5081500ns@{$bits{shmread}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5091600ns@{$bits{shmwrite}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5101200ns$bits{shostent}{0} = $bf[0];
5111500ns@{$bits{shutdown}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5121200ns$bits{sin}{0} = $bf[0];
5131400ns@{$bits{sle}}{1,0} = ($bf[1], $bf[1]);
51412µs@{$bits{sleep}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5151500ns@{$bits{slt}}{1,0} = ($bf[1], $bf[1]);
5161500ns@{$bits{smartmatch}}{1,0} = ($bf[1], $bf[1]);
5171500ns@{$bits{sne}}{1,0} = ($bf[1], $bf[1]);
5181300ns$bits{snetent}{0} = $bf[0];
5191600ns@{$bits{socket}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5201700ns@{$bits{sockpair}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
52111µs@{$bits{sort}}{6,5,4,3,2,1,0} = ('OPpSORT_STABLE', 'OPpSORT_QSORT', 'OPpSORT_DESCEND', 'OPpSORT_INPLACE', 'OPpSORT_REVERSE', 'OPpSORT_INTEGER', 'OPpSORT_NUMERIC');
5221600ns@{$bits{splice}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5231200ns$bits{split}{7} = 'OPpSPLIT_IMPLIM';
5241600ns@{$bits{sprintf}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5251300ns$bits{sprotoent}{0} = $bf[0];
5261200ns$bits{sqrt}{0} = $bf[0];
52712µs@{$bits{srand}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5281300ns$bits{srefgen}{0} = $bf[0];
5291700ns@{$bits{sselect}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5301300ns$bits{sservent}{0} = $bf[0];
5311600ns@{$bits{ssockopt}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5321200ns$bits{stat}{0} = $bf[0];
5331500ns@{$bits{stringify}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5341200ns$bits{study}{0} = $bf[0];
5351200ns$bits{substcont}{0} = $bf[0];
5361700ns@{$bits{substr}}{4,2,1,0} = ('OPpSUBSTR_REPL_FIRST', $bf[2], $bf[2], $bf[2]);
5371400ns@{$bits{subtract}}{1,0} = ($bf[1], $bf[1]);
5381500ns@{$bits{symlink}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5391600ns@{$bits{syscall}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5401600ns@{$bits{sysopen}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5411600ns@{$bits{sysread}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5421600ns@{$bits{sysseek}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5431600ns@{$bits{system}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5441600ns@{$bits{syswrite}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5451500ns@{$bits{tell}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5461300ns$bits{telldir}{0} = $bf[0];
5471700ns@{$bits{tie}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5481300ns$bits{tied}{0} = $bf[0];
5491500ns@{$bits{truncate}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5501300ns$bits{uc}{0} = $bf[0];
5511300ns$bits{ucfirst}{0} = $bf[0];
55212µs@{$bits{umask}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5531200ns$bits{undef}{0} = $bf[0];
5541600ns@{$bits{unlink}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5551700ns@{$bits{unpack}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5561500ns@{$bits{unshift}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5571300ns$bits{untie}{0} = $bf[0];
5581600ns@{$bits{utime}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5591200ns$bits{values}{0} = $bf[0];
5601400ns@{$bits{vec}}{1,0} = ($bf[1], $bf[1]);
5611500ns@{$bits{waitpid}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5621600ns@{$bits{warn}}{3,2,1,0} = ($bf[3], $bf[3], $bf[3], $bf[3]);
5631500ns@{$bits{xor}}{1,0} = ($bf[1], $bf[1]);
564
565
566118µsour %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
663115µsour %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
753122µsour %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
7991400ns$ops_using{OPpASSIGN_CV_TO_GV} = $ops_using{OPpASSIGN_BACKWARDS};
8001200ns$ops_using{OPpCONST_ENTERED} = $ops_using{OPpCONST_BARE};
8011300ns$ops_using{OPpCONST_NOVER} = $ops_using{OPpCONST_BARE};
8021200ns$ops_using{OPpCONST_SHORTCIRCUIT} = $ops_using{OPpCONST_BARE};
8031200ns$ops_using{OPpCONST_STRICT} = $ops_using{OPpCONST_BARE};
8041200ns$ops_using{OPpCOREARGS_DEREF2} = $ops_using{OPpCOREARGS_DEREF1};
8051200ns$ops_using{OPpCOREARGS_PUSHMARK} = $ops_using{OPpCOREARGS_DEREF1};
8061200ns$ops_using{OPpCOREARGS_SCALARMOD} = $ops_using{OPpCOREARGS_DEREF1};
8071100ns$ops_using{OPpDONT_INIT_GV} = $ops_using{OPpALLOW_FAKE};
8081200ns$ops_using{OPpENTERSUB_DB} = $ops_using{OPpENTERSUB_AMPER};
8091100ns$ops_using{OPpENTERSUB_HASTARG} = $ops_using{OPpENTERSUB_AMPER};
8101200ns$ops_using{OPpEVAL_COPHH} = $ops_using{OPpEVAL_BYTES};
8111200ns$ops_using{OPpEVAL_HAS_HH} = $ops_using{OPpEVAL_BYTES};
8121200ns$ops_using{OPpEVAL_RE_REPARSING} = $ops_using{OPpEVAL_BYTES};
8131200ns$ops_using{OPpEVAL_UNICODE} = $ops_using{OPpEVAL_BYTES};
8141100ns$ops_using{OPpFT_STACKED} = $ops_using{OPpFT_AFTER_t};
8151100ns$ops_using{OPpFT_STACKING} = $ops_using{OPpFT_AFTER_t};
8161100ns$ops_using{OPpLVREF_ITER} = $ops_using{OPpLVREF_ELEM};
8171100ns$ops_using{OPpMAY_RETURN_CONSTANT} = $ops_using{OPpENTERSUB_NOPAREN};
8181200ns$ops_using{OPpMULTIDEREF_EXISTS} = $ops_using{OPpMULTIDEREF_DELETE};
81911µs$ops_using{OPpOPEN_IN_RAW} = $ops_using{OPpOPEN_IN_CRLF};
8201100ns$ops_using{OPpOPEN_OUT_CRLF} = $ops_using{OPpOPEN_IN_CRLF};
8211100ns$ops_using{OPpOPEN_OUT_RAW} = $ops_using{OPpOPEN_IN_CRLF};
8221100ns$ops_using{OPpSORT_INPLACE} = $ops_using{OPpSORT_DESCEND};
8231100ns$ops_using{OPpSORT_INTEGER} = $ops_using{OPpSORT_DESCEND};
8241100ns$ops_using{OPpSORT_NUMERIC} = $ops_using{OPpSORT_DESCEND};
8251100ns$ops_using{OPpSORT_QSORT} = $ops_using{OPpSORT_DESCEND};
8261100ns$ops_using{OPpSORT_REVERSE} = $ops_using{OPpSORT_DESCEND};
8271200ns$ops_using{OPpSORT_STABLE} = $ops_using{OPpSORT_DESCEND};
8281200ns$ops_using{OPpTRANS_DELETE} = $ops_using{OPpTRANS_COMPLEMENT};
8291200ns$ops_using{OPpTRANS_FROM_UTF} = $ops_using{OPpTRANS_COMPLEMENT};
8301200ns$ops_using{OPpTRANS_GROWS} = $ops_using{OPpTRANS_COMPLEMENT};
8311200ns$ops_using{OPpTRANS_IDENTICAL} = $ops_using{OPpTRANS_COMPLEMENT};
8321200ns$ops_using{OPpTRANS_SQUASH} = $ops_using{OPpTRANS_COMPLEMENT};
8331100ns$ops_using{OPpTRANS_TO_UTF} = $ops_using{OPpTRANS_COMPLEMENT};
8341182µs$ops_using{OPpTRUEBOOL} = $ops_using{OPpMAYBE_TRUEBOOL};
835
836# ex: set ro: