This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
typo
[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          infix bitwise   - S|
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 bitwise 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 bitwise 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 uses ck_bitop only for the experimental warning.  Once the
181 # warning is gone, this can change to ck_null.
182 scomplement     string 1's complement (~)       ck_bitop        fsT1    S
183
184 smartmatch      smart match             ck_smartmatch   s2
185
186 # High falutin' math.
187
188 atan2           atan2                   ck_fun          fsT@    S S
189 sin             sin                     ck_fun          fsTu%   S?
190 cos             cos                     ck_fun          fsTu%   S?
191 rand            rand                    ck_fun          sT%     S?
192 srand           srand                   ck_fun          sT%     S?
193 exp             exp                     ck_fun          fsTu%   S?
194 log             log                     ck_fun          fsTu%   S?
195 sqrt            sqrt                    ck_fun          fsTu%   S?
196
197 # Lowbrow math.
198
199 int             int                     ck_fun          fsTu%   S?
200 hex             hex                     ck_fun          fsTu%   S?
201 oct             oct                     ck_fun          fsTu%   S?
202 abs             abs                     ck_fun          fsTu%   S?
203
204 # String stuff.
205
206 length          length                  ck_length       ifsTu%  S?
207 substr          substr                  ck_substr       st@     S S S? S?
208 vec             vec                     ck_fun          ist@    S S S
209
210 index           index                   ck_index        isT@    S S S?
211 rindex          rindex                  ck_index        isT@    S S S?
212
213 sprintf         sprintf                 ck_lfun         fmst@   S L
214 formline        formline                ck_fun          ms@     S L
215 ord             ord                     ck_fun          ifsTu%  S?
216 chr             chr                     ck_fun          fsTu%   S?
217 crypt           crypt                   ck_fun          fsT@    S S
218 ucfirst         ucfirst                 ck_fun          fstu%   S?
219 lcfirst         lcfirst                 ck_fun          fstu%   S?
220 uc              uc                      ck_fun          fstu%   S?
221 lc              lc                      ck_fun          fstu%   S?
222 quotemeta       quotemeta               ck_fun          fstu%   S?
223
224 # Arrays.
225
226 rv2av           array dereference       ck_rvconst      dt1     
227 aelemfast       constant array element  ck_null         ds$     A S
228 aelemfast_lex   constant lexical array element  ck_null         d0      A S
229 aelem           array element           ck_null         s2      A S
230 aslice          array slice             ck_null         m@      A L
231 kvaslice        index/value array slice ck_null         m@      A L
232
233 aeach           each on array           ck_each         d%      A
234 avalues         values on array         ck_each         dt%     A
235 akeys           keys on array           ck_each         t%      A
236
237 # Hashes.
238
239 each            each                    ck_each         d%      H
240 values          values                  ck_each         dt%     H
241 keys            keys                    ck_each         t%      H
242 delete          delete                  ck_delete       %       S
243 exists          exists                  ck_exists       is%     S
244 rv2hv           hash dereference        ck_rvconst      d1      
245 helem           hash element            ck_null         s2      H S
246 hslice          hash slice              ck_null         m@      H L
247 kvhslice        key/value hash slice    ck_null         m@      H L
248
249 # mixed array and hash access
250
251 multideref      array or hash lookup    ck_null         ds+     
252
253 # Explosives and implosives.
254
255 unpack          unpack                  ck_fun          u@      S S?
256 pack            pack                    ck_fun          fmst@   S L
257 split           split                   ck_split        t@      S S S
258 join            join or string          ck_join         fmst@   S L
259
260 # List operators.
261
262 list            list                    ck_null         m@      L
263 lslice          list slice              ck_null         2       H L L
264 anonlist        anonymous array ([])    ck_fun          ms@     L
265 anonhash        anonymous hash ({})     ck_fun          ms@     L
266
267 splice          splice                  ck_fun          m@      A S? S? L
268 push            push                    ck_fun          imsT@   A L
269 pop             pop                     ck_shift        s%      A?
270 shift           shift                   ck_shift        s%      A?
271 unshift         unshift                 ck_fun          imsT@   A L
272 sort            sort                    ck_sort         m@      C? L
273 reverse         reverse                 ck_fun          mt@     L
274
275 grepstart       grep                    ck_grep         m@      C L
276 grepwhile       grep iterator           ck_null         t|      
277
278 mapstart        map                     ck_grep         m@      C L
279 mapwhile        map iterator            ck_null         t|
280
281 # Range stuff.
282
283 range           flipflop                ck_null         |       S S
284 flip            range (or flip)         ck_null         1       S S
285 flop            range (or flop)         ck_null         1
286
287 # Control.
288
289 and             logical and (&&)                ck_null         |       
290 or              logical or (||)                 ck_null         |       
291 xor             logical xor                     ck_null         fs2     S S     
292 dor             defined or (//)                 ck_null         |
293 cond_expr       conditional expression          ck_null         |       
294 andassign       logical and assignment (&&=)    ck_null         s|      
295 orassign        logical or assignment (||=)     ck_null         s|      
296 dorassign       defined or assignment (//=)     ck_null         s|
297
298 method          method lookup           ck_method       d.
299 entersub        subroutine entry        ck_subr         dm1     L
300 leavesub        subroutine exit         ck_null         1       
301 leavesublv      lvalue subroutine return        ck_null         1       
302 argcheck        check subroutine arguments      ck_null         +
303 argelem         subroutine argument     ck_null         +
304 argdefelem      subroutine argument default value       ck_null         |
305 caller          caller                  ck_fun          t%      S?
306 warn            warn                    ck_fun          imst@   L
307 die             die                     ck_fun          imst@   L
308 reset           symbol reset            ck_fun          is%     S?
309
310 lineseq         line sequence           ck_null         @       
311 nextstate       next statement          ck_null         s;      
312 dbstate         debug next statement    ck_null         s;      
313 unstack         iteration finalizer     ck_null         s0
314 enter           block entry             ck_null         0       
315 leave           block exit              ck_null         @       
316 scope           block                   ck_null         @       
317 enteriter       foreach loop entry      ck_null         d{      
318 iter            foreach loop iterator   ck_null         0       
319 enterloop       loop entry              ck_null         d{      
320 leaveloop       loop exit               ck_null         2       
321 return          return                  ck_return       m@      L
322 last            last                    ck_null         s}      
323 next            next                    ck_null         s}      
324 redo            redo                    ck_null         s}      
325 dump            dump                    ck_null         ds}     
326 goto            goto                    ck_null         s}      
327 exit            exit                    ck_fun          s%      S?
328 method_named    method with known name  ck_null         d.
329 method_super    super with known name   ck_null         d.
330 method_redir    redirect method with known name ck_null d.
331 method_redir_super      redirect super method with known name   ck_null d.
332
333 entergiven      given()                 ck_null         d|
334 leavegiven      leave given block       ck_null         1
335 enterwhen       when()                  ck_null         d|
336 leavewhen       leave when block        ck_null         1
337 break           break                   ck_null         0
338 continue        continue                ck_null         0
339
340 # I/O.
341
342 open            open                    ck_open         ismt@   F S? L
343 close           close                   ck_fun          is%     F?
344 pipe_op         pipe                    ck_fun          is@     F F
345
346 fileno          fileno                  ck_fun          ist%    F
347 umask           umask                   ck_fun          ist%    S?
348 binmode         binmode                 ck_fun          s@      F S?
349
350 tie             tie                     ck_fun          idms@   R S L
351 untie           untie                   ck_fun          is%     R
352 tied            tied                    ck_fun          ds%     R
353 dbmopen         dbmopen                 ck_fun          is@     H S S
354 dbmclose        dbmclose                ck_fun          is%     H
355
356 sselect         select system call      ck_select       t@      S S S S
357 select          select                  ck_select       st@     F?
358
359 getc            getc                    ck_eof          st%     F?
360 read            read                    ck_fun          imst@   F R S S?
361 enterwrite      write                   ck_fun          is%     F?
362 leavewrite      write exit              ck_null         1       
363
364 prtf            printf                  ck_listiob      ims@    F? L
365 print           print                   ck_listiob      ims@    F? L
366 say             say                     ck_listiob      ims@    F? L
367
368 sysopen         sysopen                 ck_fun          s@      F S S S?
369 sysseek         sysseek                 ck_fun          s@      F S S
370 sysread         sysread                 ck_fun          imst@   F R S S?
371 syswrite        syswrite                ck_fun          imst@   F S S? S?
372
373 eof             eof                     ck_eof          is%     F?
374 tell            tell                    ck_tell         st%     F?
375 seek            seek                    ck_tell         s@      F S S
376 # truncate really behaves as if it had both "S S" and "F S"
377 truncate        truncate                ck_trunc        is@     S S
378
379 fcntl           fcntl                   ck_fun          st@     F S S
380 ioctl           ioctl                   ck_fun          st@     F S S
381 flock           flock                   ck_fun          isT@    F S
382
383 # Sockets.  OP_IS_SOCKET wants them consecutive (so moved 1st 2)
384
385 send            send                    ck_fun          imst@   Fs S S S?
386 recv            recv                    ck_fun          imst@   Fs R S S
387
388 socket          socket                  ck_fun          is@     Fs S S S
389 sockpair        socketpair              ck_fun          is@     Fs Fs S S S
390
391 bind            bind                    ck_fun          is@     Fs S
392 connect         connect                 ck_fun          is@     Fs S
393 listen          listen                  ck_fun          is@     Fs S
394 accept          accept                  ck_fun          ist@    Fs Fs
395 shutdown        shutdown                ck_fun          ist@    Fs S
396
397 gsockopt        getsockopt              ck_fun          is@     Fs S S
398 ssockopt        setsockopt              ck_fun          is@     Fs S S S
399
400 getsockname     getsockname             ck_fun          is%     Fs
401 getpeername     getpeername             ck_fun          is%     Fs
402
403 # Stat calls.  OP_IS_FILETEST wants them consecutive.
404
405 lstat           lstat                   ck_ftst         u-      F?
406 stat            stat                    ck_ftst         u-      F?
407 ftrread         -R                      ck_ftst         isu-    F-+
408 ftrwrite        -W                      ck_ftst         isu-    F-+
409 ftrexec         -X                      ck_ftst         isu-    F-+
410 fteread         -r                      ck_ftst         isu-    F-+
411 ftewrite        -w                      ck_ftst         isu-    F-+
412 fteexec         -x                      ck_ftst         isu-    F-+
413 ftis            -e                      ck_ftst         isu-    F-
414 ftsize          -s                      ck_ftst         istu-   F-
415 ftmtime         -M                      ck_ftst         stu-    F-
416 ftatime         -A                      ck_ftst         stu-    F-
417 ftctime         -C                      ck_ftst         stu-    F-
418 ftrowned        -O                      ck_ftst         isu-    F-
419 fteowned        -o                      ck_ftst         isu-    F-
420 ftzero          -z                      ck_ftst         isu-    F-
421 ftsock          -S                      ck_ftst         isu-    F-
422 ftchr           -c                      ck_ftst         isu-    F-
423 ftblk           -b                      ck_ftst         isu-    F-
424 ftfile          -f                      ck_ftst         isu-    F-
425 ftdir           -d                      ck_ftst         isu-    F-
426 ftpipe          -p                      ck_ftst         isu-    F-
427 ftsuid          -u                      ck_ftst         isu-    F-
428 ftsgid          -g                      ck_ftst         isu-    F-
429 ftsvtx          -k                      ck_ftst         isu-    F-
430 ftlink          -l                      ck_ftst         isu-    F-
431 fttty           -t                      ck_ftst         is-     F-
432 fttext          -T                      ck_ftst         isu-    F-
433 ftbinary        -B                      ck_ftst         isu-    F-
434
435 # File calls.
436
437 # chdir really behaves as if it had both "S?" and "F?"
438 chdir           chdir                   ck_trunc        isT%    S?
439 chown           chown                   ck_fun          imsT@   L
440 chroot          chroot                  ck_fun          isTu%   S?
441 unlink          unlink                  ck_fun          imsTu@  L
442 chmod           chmod                   ck_fun          imsT@   L
443 utime           utime                   ck_fun          imsT@   L
444 rename          rename                  ck_fun          isT@    S S
445 link            link                    ck_fun          isT@    S S
446 symlink         symlink                 ck_fun          isT@    S S
447 readlink        readlink                ck_fun          stu%    S?
448 mkdir           mkdir                   ck_fun          isTu@   S? S?
449 rmdir           rmdir                   ck_fun          isTu%   S?
450
451 # Directory calls.
452
453 open_dir        opendir                 ck_fun          is@     F S
454 readdir         readdir                 ck_fun          %       DF
455 telldir         telldir                 ck_fun          st%     DF
456 seekdir         seekdir                 ck_fun          s@      DF S
457 rewinddir       rewinddir               ck_fun          s%      DF
458 closedir        closedir                ck_fun          is%     DF
459
460 # Process control.
461
462 fork            fork                    ck_null         ist0    
463 wait            wait                    ck_null         isT0    
464 waitpid         waitpid                 ck_fun          isT@    S S
465 system          system                  ck_exec         imsT@   S? L
466 exec            exec                    ck_exec         imsT@   S? L
467 kill            kill                    ck_fun          imsT@   L
468 getppid         getppid                 ck_null         isT0    
469 getpgrp         getpgrp                 ck_fun          isT%    S?
470 setpgrp         setpgrp                 ck_fun          isT@    S? S?
471 getpriority     getpriority             ck_fun          isT@    S S
472 setpriority     setpriority             ck_fun          isT@    S S S
473
474 # Time calls.
475
476 time            time                    ck_null         isT0    
477 tms             times                   ck_null         0       
478 localtime       localtime               ck_fun          t%      S?
479 gmtime          gmtime                  ck_fun          t%      S?
480 alarm           alarm                   ck_fun          istu%   S?
481 sleep           sleep                   ck_fun          isT%    S?
482
483 # Shared memory.
484
485 shmget          shmget                  ck_fun          imst@   S S S
486 shmctl          shmctl                  ck_fun          imst@   S S S
487 shmread         shmread                 ck_fun          imst@   S S S S
488 shmwrite        shmwrite                ck_fun          imst@   S S S S
489
490 # Message passing.
491
492 msgget          msgget                  ck_fun          imst@   S S
493 msgctl          msgctl                  ck_fun          imst@   S S S
494 msgsnd          msgsnd                  ck_fun          imst@   S S S
495 msgrcv          msgrcv                  ck_fun          imst@   S S S S S
496
497 # Semaphores.
498
499 semop           semop                   ck_fun          imst@   S S
500 semget          semget                  ck_fun          imst@   S S S
501 semctl          semctl                  ck_fun          imst@   S S S S
502
503 # Eval.
504
505 require         require                 ck_require      dsu%    S?
506 dofile          do "file"               ck_fun          d1      S
507 hintseval       eval hints              ck_svconst      s$
508 entereval       eval "string"           ck_eval         du%     S?
509 leaveeval       eval "string" exit      ck_null         1       S
510 entertry        eval {block}            ck_eval         d|      
511 leavetry        eval {block} exit       ck_null         @       
512
513 # Get system info.
514
515 ghbyname        gethostbyname           ck_fun          %       S
516 ghbyaddr        gethostbyaddr           ck_fun          @       S S
517 ghostent        gethostent              ck_null         0       
518 gnbyname        getnetbyname            ck_fun          %       S
519 gnbyaddr        getnetbyaddr            ck_fun          @       S S
520 gnetent         getnetent               ck_null         0       
521 gpbyname        getprotobyname          ck_fun          %       S
522 gpbynumber      getprotobynumber        ck_fun          @       S
523 gprotoent       getprotoent             ck_null         0       
524 gsbyname        getservbyname           ck_fun          @       S S
525 gsbyport        getservbyport           ck_fun          @       S S
526 gservent        getservent              ck_null         0       
527 shostent        sethostent              ck_fun          is%     S
528 snetent         setnetent               ck_fun          is%     S
529 sprotoent       setprotoent             ck_fun          is%     S
530 sservent        setservent              ck_fun          is%     S
531 ehostent        endhostent              ck_null         is0     
532 enetent         endnetent               ck_null         is0     
533 eprotoent       endprotoent             ck_null         is0     
534 eservent        endservent              ck_null         is0     
535 gpwnam          getpwnam                ck_fun          %       S
536 gpwuid          getpwuid                ck_fun          %       S
537 gpwent          getpwent                ck_null         0       
538 spwent          setpwent                ck_null         is0     
539 epwent          endpwent                ck_null         is0     
540 ggrnam          getgrnam                ck_fun          %       S
541 ggrgid          getgrgid                ck_fun          %       S
542 ggrent          getgrent                ck_null         0       
543 sgrent          setgrent                ck_null         is0     
544 egrent          endgrent                ck_null         is0     
545 getlogin        getlogin                ck_null         st0     
546
547 # Miscellaneous.
548
549 syscall         syscall                 ck_fun          imst@   S L
550
551 # For multi-threading
552 lock            lock                    ck_rfun         s%      R
553
554 # For state support
555
556 once            once                    ck_null         |       
557
558 custom          unknown custom operator         ck_null         0
559
560 # For CORE:: subs
561 coreargs        CORE:: subroutine       ck_null         $       
562 avhvswitch      Array/hash switch       ck_null         t1
563
564 runcv           __SUB__                 ck_null         s0
565
566 # fc and \F
567 fc              fc                      ck_fun          fstu%   S?
568
569 padcv           private subroutine      ck_null         d0
570 introcv         private subroutine      ck_null         d0
571 clonecv         private subroutine      ck_null         d0
572 padrange        list of private variables       ck_null         d0
573 refassign       lvalue ref assignment   ck_refassign    ds2
574 lvref           lvalue ref assignment   ck_null         d%
575 lvrefslice      lvalue ref assignment   ck_null         d@
576 lvavref         lvalue array reference  ck_null         d%
577 anonconst       anonymous constant      ck_null         ds1