This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Deparse.t: Account for new warnings category
[perl5.git] / regen / opcodes
1 # New ops always go at the end
2 # The restriction on having custom as the last op has been removed
3
4 # A recapitulation of the format of this file:
5 # The file consists of five columns: the name of the op, an English
6 # description, the name of the "check" routine used to optimize this
7 # operation, some flags, and a description of the operands.
8
9 # The flags consist of options followed by a mandatory op class signifier
10
11 # The classes are:
12 # baseop      - 0            unop     - 1            binop      - 2
13 # logop       - |            listop   - @            pmop       - /
14 # padop/svop  - $            padop    - # (unused)   loop       - {
15 # baseop/unop - %            loopexop - }            filestatop - -
16 # pvop/svop   - "            cop      - ;            methop     - .
17 # unop_aux    - +
18
19 # Other options are:
20 #   needs stack mark                    - m  (OA_MARK)
21 #   needs constant folding              - f  (OA_FOLDCONST)
22 #   produces a scalar                   - s  (OA_RETSCALAR)
23 #   produces an integer                 - i  (unused)
24 #   needs a target                      - t  (OA_TARGET)
25 #   target can be in a pad              - T  (OA_TARGET|OA_TARGLEX)
26 #   has a corresponding integer version - I  (OA_OTHERINT)
27 #   make temp copy in list assignment   - d  (OA_DANGEROUS)
28 #   uses $_ if no argument given        - u  (OA_DEFGV)
29
30 # Values for the operands are:
31 # scalar      - S            list     - L            array     - A
32 # hash        - H            sub (CV) - C            file      - F
33 # socket      - Fs           filetest - F-           filetest_access - F-+
34 # num-compare - S<           dirhandle - DF
35
36 # reference - R
37 # "?" denotes an optional operand.
38
39 # Nothing.
40
41 null            null operation          ck_null         0       
42 stub            stub                    ck_null         0
43 scalar          scalar                  ck_fun          s%      S
44
45 # Pushy stuff.
46
47 pushmark        pushmark                ck_null         s0      
48 wantarray       wantarray               ck_null         is0     
49
50 const           constant item           ck_svconst      s$      
51
52 gvsv            scalar variable         ck_null         ds$     
53 gv              glob value              ck_null         ds$     
54 gelem           glob elem               ck_null         ds2     S S
55 padsv           private variable        ck_null         ds0
56 padav           private array           ck_null         d0
57 padhv           private hash            ck_null         d0
58 padany          private value           ck_null         d0
59
60 pushre          push regexp             ck_null         d/
61
62 # References and stuff.
63
64 rv2gv           ref-to-glob cast        ck_rvconst      ds1     
65 rv2sv           scalar dereference      ck_rvconst      ds1     
66 av2arylen       array length            ck_null         is1     
67 rv2cv           subroutine dereference  ck_rvconst      d1
68 anoncode        anonymous subroutine    ck_anoncode     s$      
69 prototype       subroutine prototype    ck_prototype    su%     S?
70 refgen          reference constructor   ck_spair        m1      L
71 srefgen         single ref constructor  ck_null         fs1     S
72 ref             reference-type operator ck_fun          stu%    S?
73 bless           bless                   ck_fun          s@      S S?
74
75 # Pushy I/O.
76
77 backtick        quoted execution (``, qx)       ck_backtick     tu%     S?
78 # glob defaults its first arg to $_
79 glob            glob                    ck_glob         t@      S?
80 readline        <HANDLE>                ck_readline     t%      F?
81 rcatline        append I/O operator     ck_null         t$
82
83 # Bindable operators.
84
85 regcmaybe       regexp internal guard   ck_fun          s1      S
86 regcreset       regexp internal reset   ck_fun          s1      S
87 regcomp         regexp compilation      ck_null         s|      S
88 match           pattern match (m//)     ck_match        /
89 qr              pattern quote (qr//)    ck_match        s/
90 subst           substitution (s///)     ck_match        is/     S
91 substcont       substitution iterator   ck_null         is|     
92 trans           transliteration (tr///) ck_match        is"     S
93 # y///r
94 transr          transliteration (tr///) ck_match        is"     S
95
96 # Lvalue operators.
97 # sassign is special-cased for op class
98
99 sassign         scalar assignment       ck_sassign      s0
100 aassign         list assignment         ck_null         t2      L L
101
102 chop            chop                    ck_spair        mts%    L
103 schop           scalar chop             ck_null         stu%    S?
104 chomp           chomp                   ck_spair        mTs%    L
105 schomp          scalar chomp            ck_null         sTu%    S?
106 defined         defined operator        ck_defined      isu%    S?
107 undef           undef operator          ck_fun          s%      R?
108 study           study                   ck_fun          su%     S?
109 pos             match position          ck_fun          stu%    R?
110
111 preinc          preincrement (++)               ck_lfun         dIs1    S
112 i_preinc        integer preincrement (++)       ck_lfun         dis1    S
113 predec          predecrement (--)               ck_lfun         dIs1    S
114 i_predec        integer predecrement (--)       ck_lfun         dis1    S
115 postinc         postincrement (++)              ck_lfun         Ist1    S
116 i_postinc       integer postincrement (++)      ck_lfun         ist1    S
117 postdec         postdecrement (--)              ck_lfun         Ist1    S
118 i_postdec       integer postdecrement (--)      ck_lfun         ist1    S
119
120 # Ordinary operators.
121
122 pow             exponentiation (**)     ck_null         fsT2    S S
123
124 multiply        multiplication (*)      ck_null         IfsT2   S S
125 i_multiply      integer multiplication (*)      ck_null         ifsT2   S S
126 divide          division (/)            ck_null         IfsT2   S S
127 i_divide        integer division (/)    ck_null         ifsT2   S S
128 modulo          modulus (%)             ck_null         IifsT2  S S
129 i_modulo        integer modulus (%)     ck_null         ifsT2   S S
130 repeat          repeat (x)              ck_repeat       fmT2    L S
131
132 add             addition (+)            ck_null         IfsT2   S S
133 i_add           integer addition (+)    ck_null         ifsT2   S S
134 subtract        subtraction (-)         ck_null         IfsT2   S S
135 i_subtract      integer subtraction (-) ck_null         ifsT2   S S
136 concat          concatenation (.) or string     ck_concat       fsT2    S S
137 stringify       string                  ck_stringify    fsT@    S
138
139 left_shift      left bitshift (<<)      ck_bitop        fsT2    S S
140 right_shift     right bitshift (>>)     ck_bitop        fsT2    S S
141
142 lt              numeric lt (<)          ck_cmp          Iifs2   S S<
143 i_lt            integer lt (<)          ck_cmp          ifs2    S S<
144 gt              numeric gt (>)          ck_cmp          Iifs2   S S<
145 i_gt            integer gt (>)          ck_cmp          ifs2    S S<
146 le              numeric le (<=)         ck_cmp          Iifs2   S S<
147 i_le            integer le (<=)         ck_cmp          ifs2    S S<
148 ge              numeric ge (>=)         ck_cmp          Iifs2   S S<
149 i_ge            integer ge (>=)         ck_cmp          ifs2    S S<
150 eq              numeric eq (==)         ck_null         Iifs2   S S<
151 i_eq            integer eq (==)         ck_null         ifs2    S S<
152 ne              numeric ne (!=)         ck_null         Iifs2   S S<
153 i_ne            integer ne (!=)         ck_null         ifs2    S S<
154 ncmp            numeric comparison (<=>)        ck_null         Iifst2  S S<
155 i_ncmp          integer comparison (<=>)        ck_null         ifsT2   S S<
156
157 slt             string lt               ck_null         ifs2    S S
158 sgt             string gt               ck_null         ifs2    S S
159 sle             string le               ck_null         ifs2    S S
160 sge             string ge               ck_null         ifs2    S S
161 seq             string eq               ck_null         ifs2    S S
162 sne             string ne               ck_null         ifs2    S S
163 scmp            string comparison (cmp) ck_null         ifsT2   S S
164
165 bit_and         bitwise and (&)         ck_bitop        fst2    S S
166 bit_xor         bitwise xor (^)         ck_bitop        fst2    S S
167 bit_or          bitwise or (|)          ck_bitop        fst2    S S
168 nbit_and        numeric bitiwse and (&) ck_bitop        fsT2    S S
169 nbit_xor        numeric bitwise xor (^) ck_bitop        fsT2    S S
170 nbit_or         numeric bitwise or (|)  ck_bitop        fsT2    S S
171 sbit_and        string bitiwse and (&)  ck_bitop        fst2    S S
172 sbit_xor        string bitwise xor (^)  ck_bitop        fst2    S S
173 sbit_or         string bitwise or (|)   ck_bitop        fst2    S S
174
175 negate          negation (-)            ck_null         Ifst1   S
176 i_negate        integer negation (-)    ck_null         ifst1   S
177 not             not                     ck_null         ifs1    S
178 complement      1's complement (~)      ck_bitop        fsT1    S
179 ncomplement     numeric 1's complement (~)      ck_bitop        fsT1    S
180 scomplement     string 1's complement (~)       ck_null fsT1    S
181
182 smartmatch      smart match             ck_smartmatch   s2
183
184 # High falutin' math.
185
186 atan2           atan2                   ck_fun          fsT@    S S
187 sin             sin                     ck_fun          fsTu%   S?
188 cos             cos                     ck_fun          fsTu%   S?
189 rand            rand                    ck_fun          sT%     S?
190 srand           srand                   ck_fun          sT%     S?
191 exp             exp                     ck_fun          fsTu%   S?
192 log             log                     ck_fun          fsTu%   S?
193 sqrt            sqrt                    ck_fun          fsTu%   S?
194
195 # Lowbrow math.
196
197 int             int                     ck_fun          fsTu%   S?
198 hex             hex                     ck_fun          fsTu%   S?
199 oct             oct                     ck_fun          fsTu%   S?
200 abs             abs                     ck_fun          fsTu%   S?
201
202 # String stuff.
203
204 length          length                  ck_length       ifsTu%  S?
205 substr          substr                  ck_substr       st@     S S S? S?
206 vec             vec                     ck_fun          isT@    S S S
207
208 index           index                   ck_index        isT@    S S S?
209 rindex          rindex                  ck_index        isT@    S S S?
210
211 sprintf         sprintf                 ck_lfun         fmst@   S L
212 formline        formline                ck_fun          ms@     S L
213 ord             ord                     ck_fun          ifsTu%  S?
214 chr             chr                     ck_fun          fsTu%   S?
215 crypt           crypt                   ck_fun          fsT@    S S
216 ucfirst         ucfirst                 ck_fun          fstu%   S?
217 lcfirst         lcfirst                 ck_fun          fstu%   S?
218 uc              uc                      ck_fun          fstu%   S?
219 lc              lc                      ck_fun          fstu%   S?
220 quotemeta       quotemeta               ck_fun          fstu%   S?
221
222 # Arrays.
223
224 rv2av           array dereference       ck_rvconst      dt1     
225 aelemfast       constant array element  ck_null         ds$     A S
226 aelemfast_lex   constant lexical array element  ck_null         d0      A S
227 aelem           array element           ck_null         s2      A S
228 aslice          array slice             ck_null         m@      A L
229 kvaslice        index/value array slice ck_null         m@      A L
230
231 aeach           each on array           ck_each         d%      A
232 akeys           keys on array           ck_each         t%      A
233 avalues         values on array         ck_each         dt%     A
234
235 # Hashes.
236
237 each            each                    ck_each         d%      H
238 values          values                  ck_each         dt%     H
239 keys            keys                    ck_each         t%      H
240 delete          delete                  ck_delete       %       S
241 exists          exists                  ck_exists       is%     S
242 rv2hv           hash dereference        ck_rvconst      d1      
243 helem           hash element            ck_null         s2      H S
244 hslice          hash slice              ck_null         m@      H L
245 kvhslice        key/value hash slice    ck_null         m@      H L
246
247 # mixed array and hash access
248
249 multideref      array or hash lookup    ck_null         ds+     
250
251 # Explosives and implosives.
252
253 unpack          unpack                  ck_fun          u@      S S?
254 pack            pack                    ck_fun          fmst@   S L
255 split           split                   ck_split        T@      S S S
256 join            join or string          ck_join         fmst@   S L
257
258 # List operators.
259
260 list            list                    ck_null         m@      L
261 lslice          list slice              ck_null         2       H L L
262 anonlist        anonymous array ([])    ck_fun          ms@     L
263 anonhash        anonymous hash ({})     ck_fun          ms@     L
264
265 splice          splice                  ck_fun          m@      A S? S? L
266 push            push                    ck_fun          imsT@   A L
267 pop             pop                     ck_shift        s%      A?
268 shift           shift                   ck_shift        s%      A?
269 unshift         unshift                 ck_fun          imsT@   A L
270 sort            sort                    ck_sort         m@      C? L
271 reverse         reverse                 ck_fun          mt@     L
272
273 grepstart       grep                    ck_grep         m@      C L
274 grepwhile       grep iterator           ck_null         t|      
275
276 mapstart        map                     ck_grep         m@      C L
277 mapwhile        map iterator            ck_null         t|
278
279 # Range stuff.
280
281 range           flipflop                ck_null         |       S S
282 flip            range (or flip)         ck_null         1       S S
283 flop            range (or flop)         ck_null         1
284
285 # Control.
286
287 and             logical and (&&)                ck_null         |       
288 or              logical or (||)                 ck_null         |       
289 xor             logical xor                     ck_null         fs2     S S     
290 dor             defined or (//)                 ck_null         |
291 cond_expr       conditional expression          ck_null         |       
292 andassign       logical and assignment (&&=)    ck_null         s|      
293 orassign        logical or assignment (||=)     ck_null         s|      
294 dorassign       defined or assignment (//=)     ck_null         s|
295
296 method          method lookup           ck_method       d.
297 entersub        subroutine entry        ck_subr         dm1     L
298 leavesub        subroutine exit         ck_null         1       
299 leavesublv      lvalue subroutine return        ck_null         1       
300 caller          caller                  ck_fun          t%      S?
301 warn            warn                    ck_fun          imst@   L
302 die             die                     ck_fun          imst@   L
303 reset           symbol reset            ck_fun          is%     S?
304
305 lineseq         line sequence           ck_null         @       
306 nextstate       next statement          ck_null         s;      
307 dbstate         debug next statement    ck_null         s;      
308 unstack         iteration finalizer     ck_null         s0
309 enter           block entry             ck_null         0       
310 leave           block exit              ck_null         @       
311 scope           block                   ck_null         @       
312 enteriter       foreach loop entry      ck_null         d{      
313 iter            foreach loop iterator   ck_null         0       
314 enterloop       loop entry              ck_null         d{      
315 leaveloop       loop exit               ck_null         2       
316 return          return                  ck_return       m@      L
317 last            last                    ck_null         s}      
318 next            next                    ck_null         s}      
319 redo            redo                    ck_null         s}      
320 dump            dump                    ck_null         ds}     
321 goto            goto                    ck_null         s}      
322 exit            exit                    ck_fun          s%      S?
323 method_named    method with known name  ck_null         d.
324 method_super    super with known name   ck_null         d.
325 method_redir    redirect method with known name ck_null d.
326 method_redir_super      redirect super method with known name   ck_null d.
327
328 entergiven      given()                 ck_null         d|
329 leavegiven      leave given block       ck_null         1
330 enterwhen       when()                  ck_null         d|
331 leavewhen       leave when block        ck_null         1
332 break           break                   ck_null         0
333 continue        continue                ck_null         0
334
335 # I/O.
336
337 open            open                    ck_open         ismt@   F S? L
338 close           close                   ck_fun          is%     F?
339 pipe_op         pipe                    ck_fun          is@     F F
340
341 fileno          fileno                  ck_fun          ist%    F
342 umask           umask                   ck_fun          ist%    S?
343 binmode         binmode                 ck_fun          s@      F S?
344
345 tie             tie                     ck_fun          idms@   R S L
346 untie           untie                   ck_fun          is%     R
347 tied            tied                    ck_fun          ds%     R
348 dbmopen         dbmopen                 ck_fun          is@     H S S
349 dbmclose        dbmclose                ck_fun          is%     H
350
351 sselect         select system call      ck_select       t@      S S S S
352 select          select                  ck_select       st@     F?
353
354 getc            getc                    ck_eof          st%     F?
355 read            read                    ck_fun          imst@   F R S S?
356 enterwrite      write                   ck_fun          is%     F?
357 leavewrite      write exit              ck_null         1       
358
359 prtf            printf                  ck_listiob      ims@    F? L
360 print           print                   ck_listiob      ims@    F? L
361 say             say                     ck_listiob      ims@    F? L
362
363 sysopen         sysopen                 ck_fun          s@      F S S S?
364 sysseek         sysseek                 ck_fun          s@      F S S
365 sysread         sysread                 ck_fun          imst@   F R S S?
366 syswrite        syswrite                ck_fun          imst@   F S S? S?
367
368 eof             eof                     ck_eof          is%     F?
369 tell            tell                    ck_tell         st%     F?
370 seek            seek                    ck_tell         s@      F S S
371 # truncate really behaves as if it had both "S S" and "F S"
372 truncate        truncate                ck_trunc        is@     S S
373
374 fcntl           fcntl                   ck_fun          st@     F S S
375 ioctl           ioctl                   ck_fun          st@     F S S
376 flock           flock                   ck_fun          isT@    F S
377
378 # Sockets.  OP_IS_SOCKET wants them consecutive (so moved 1st 2)
379
380 send            send                    ck_fun          imst@   Fs S S S?
381 recv            recv                    ck_fun          imst@   Fs R S S
382
383 socket          socket                  ck_fun          is@     Fs S S S
384 sockpair        socketpair              ck_fun          is@     Fs Fs S S S
385
386 bind            bind                    ck_fun          is@     Fs S
387 connect         connect                 ck_fun          is@     Fs S
388 listen          listen                  ck_fun          is@     Fs S
389 accept          accept                  ck_fun          ist@    Fs Fs
390 shutdown        shutdown                ck_fun          ist@    Fs S
391
392 gsockopt        getsockopt              ck_fun          is@     Fs S S
393 ssockopt        setsockopt              ck_fun          is@     Fs S S S
394
395 getsockname     getsockname             ck_fun          is%     Fs
396 getpeername     getpeername             ck_fun          is%     Fs
397
398 # Stat calls.  OP_IS_FILETEST wants them consecutive.
399
400 lstat           lstat                   ck_ftst         u-      F?
401 stat            stat                    ck_ftst         u-      F?
402 ftrread         -R                      ck_ftst         isu-    F-+
403 ftrwrite        -W                      ck_ftst         isu-    F-+
404 ftrexec         -X                      ck_ftst         isu-    F-+
405 fteread         -r                      ck_ftst         isu-    F-+
406 ftewrite        -w                      ck_ftst         isu-    F-+
407 fteexec         -x                      ck_ftst         isu-    F-+
408 ftis            -e                      ck_ftst         isu-    F-
409 ftsize          -s                      ck_ftst         istu-   F-
410 ftmtime         -M                      ck_ftst         stu-    F-
411 ftatime         -A                      ck_ftst         stu-    F-
412 ftctime         -C                      ck_ftst         stu-    F-
413 ftrowned        -O                      ck_ftst         isu-    F-
414 fteowned        -o                      ck_ftst         isu-    F-
415 ftzero          -z                      ck_ftst         isu-    F-
416 ftsock          -S                      ck_ftst         isu-    F-
417 ftchr           -c                      ck_ftst         isu-    F-
418 ftblk           -b                      ck_ftst         isu-    F-
419 ftfile          -f                      ck_ftst         isu-    F-
420 ftdir           -d                      ck_ftst         isu-    F-
421 ftpipe          -p                      ck_ftst         isu-    F-
422 ftsuid          -u                      ck_ftst         isu-    F-
423 ftsgid          -g                      ck_ftst         isu-    F-
424 ftsvtx          -k                      ck_ftst         isu-    F-
425 ftlink          -l                      ck_ftst         isu-    F-
426 fttty           -t                      ck_ftst         is-     F-
427 fttext          -T                      ck_ftst         isu-    F-
428 ftbinary        -B                      ck_ftst         isu-    F-
429
430 # File calls.
431
432 # chdir really behaves as if it had both "S?" and "F?"
433 chdir           chdir                   ck_trunc        isT%    S?
434 chown           chown                   ck_fun          imsT@   L
435 chroot          chroot                  ck_fun          isTu%   S?
436 unlink          unlink                  ck_fun          imsTu@  L
437 chmod           chmod                   ck_fun          imsT@   L
438 utime           utime                   ck_fun          imsT@   L
439 rename          rename                  ck_fun          isT@    S S
440 link            link                    ck_fun          isT@    S S
441 symlink         symlink                 ck_fun          isT@    S S
442 readlink        readlink                ck_fun          stu%    S?
443 mkdir           mkdir                   ck_fun          isTu@   S? S?
444 rmdir           rmdir                   ck_fun          isTu%   S?
445
446 # Directory calls.
447
448 open_dir        opendir                 ck_fun          is@     F S
449 readdir         readdir                 ck_fun          %       DF
450 telldir         telldir                 ck_fun          st%     DF
451 seekdir         seekdir                 ck_fun          s@      DF S
452 rewinddir       rewinddir               ck_fun          s%      DF
453 closedir        closedir                ck_fun          is%     DF
454
455 # Process control.
456
457 fork            fork                    ck_null         ist0    
458 wait            wait                    ck_null         isT0    
459 waitpid         waitpid                 ck_fun          isT@    S S
460 system          system                  ck_exec         imsT@   S? L
461 exec            exec                    ck_exec         imsT@   S? L
462 kill            kill                    ck_fun          imsT@   L
463 getppid         getppid                 ck_null         isT0    
464 getpgrp         getpgrp                 ck_fun          isT%    S?
465 setpgrp         setpgrp                 ck_fun          isT@    S? S?
466 getpriority     getpriority             ck_fun          isT@    S S
467 setpriority     setpriority             ck_fun          isT@    S S S
468
469 # Time calls.
470
471 time            time                    ck_null         isT0    
472 tms             times                   ck_null         0       
473 localtime       localtime               ck_fun          t%      S?
474 gmtime          gmtime                  ck_fun          t%      S?
475 alarm           alarm                   ck_fun          istu%   S?
476 sleep           sleep                   ck_fun          isT%    S?
477
478 # Shared memory.
479
480 shmget          shmget                  ck_fun          imst@   S S S
481 shmctl          shmctl                  ck_fun          imst@   S S S
482 shmread         shmread                 ck_fun          imst@   S S S S
483 shmwrite        shmwrite                ck_fun          imst@   S S S S
484
485 # Message passing.
486
487 msgget          msgget                  ck_fun          imst@   S S
488 msgctl          msgctl                  ck_fun          imst@   S S S
489 msgsnd          msgsnd                  ck_fun          imst@   S S S
490 msgrcv          msgrcv                  ck_fun          imst@   S S S S S
491
492 # Semaphores.
493
494 semop           semop                   ck_fun          imst@   S S
495 semget          semget                  ck_fun          imst@   S S S
496 semctl          semctl                  ck_fun          imst@   S S S S
497
498 # Eval.
499
500 require         require                 ck_require      dsu%    S?
501 dofile          do "file"               ck_fun          d1      S
502 hintseval       eval hints              ck_svconst      s$
503 entereval       eval "string"           ck_eval         du%     S?
504 leaveeval       eval "string" exit      ck_null         1       S
505 entertry        eval {block}            ck_eval         d|      
506 leavetry        eval {block} exit       ck_null         @       
507
508 # Get system info.
509
510 ghbyname        gethostbyname           ck_fun          %       S
511 ghbyaddr        gethostbyaddr           ck_fun          @       S S
512 ghostent        gethostent              ck_null         0       
513 gnbyname        getnetbyname            ck_fun          %       S
514 gnbyaddr        getnetbyaddr            ck_fun          @       S S
515 gnetent         getnetent               ck_null         0       
516 gpbyname        getprotobyname          ck_fun          %       S
517 gpbynumber      getprotobynumber        ck_fun          @       S
518 gprotoent       getprotoent             ck_null         0       
519 gsbyname        getservbyname           ck_fun          @       S S
520 gsbyport        getservbyport           ck_fun          @       S S
521 gservent        getservent              ck_null         0       
522 shostent        sethostent              ck_fun          is%     S
523 snetent         setnetent               ck_fun          is%     S
524 sprotoent       setprotoent             ck_fun          is%     S
525 sservent        setservent              ck_fun          is%     S
526 ehostent        endhostent              ck_null         is0     
527 enetent         endnetent               ck_null         is0     
528 eprotoent       endprotoent             ck_null         is0     
529 eservent        endservent              ck_null         is0     
530 gpwnam          getpwnam                ck_fun          %       S
531 gpwuid          getpwuid                ck_fun          %       S
532 gpwent          getpwent                ck_null         0       
533 spwent          setpwent                ck_null         is0     
534 epwent          endpwent                ck_null         is0     
535 ggrnam          getgrnam                ck_fun          %       S
536 ggrgid          getgrgid                ck_fun          %       S
537 ggrent          getgrent                ck_null         0       
538 sgrent          setgrent                ck_null         is0     
539 egrent          endgrent                ck_null         is0     
540 getlogin        getlogin                ck_null         st0     
541
542 # Miscellaneous.
543
544 syscall         syscall                 ck_fun          imst@   S L
545
546 # For multi-threading
547 lock            lock                    ck_rfun         s%      R
548
549 # For state support
550
551 once            once                    ck_null         |       
552
553 custom          unknown custom operator         ck_null         0
554
555 # For smart dereference for each/keys/values
556 reach           each on reference       ck_each         d%      S
557 rkeys           keys on reference                       ck_each         t%      S
558 rvalues         values on reference     ck_each         dt%     S
559
560 # For CORE:: subs
561 coreargs        CORE:: subroutine       ck_null         $       
562
563 runcv           __SUB__                 ck_null         s0
564
565 # fc and \F
566 fc              fc                      ck_fun          fstu%   S?
567
568 padcv           private subroutine      ck_null         d0
569 introcv         private subroutine      ck_null         d0
570 clonecv         private subroutine      ck_null         d0
571 padrange        list of private variables       ck_null         d0
572 refassign       lvalue ref assignment   ck_refassign    ds2
573 lvref           lvalue ref assignment   ck_null         d%
574 lvrefslice      lvalue ref assignment   ck_null         d@
575 lvavref         lvalue array reference  ck_null         d%
576 anonconst       anonymous constant      ck_null         ds1