This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
final touches for lexical warnings (from Paul Marquess)
[perl5.git] / embed.pl
1 #!/usr/bin/perl -w
2
3 require 5.003;  # keep this compatible, an old perl is all we may have before
4                 # we build the new one
5
6 #
7 # See database of global and static function prototypes at the __END__.
8 # This is used to generate prototype headers under various configurations,
9 # export symbols lists for different platforms, and macros to provide an
10 # implicit interpreter context argument.
11 #
12
13 my $END = tell DATA;
14
15 # walk table providing an array of components in each line to
16 # subroutine, printing the result
17 sub walk_table (&@) {
18     my $function = shift;
19     my $filename = shift || '-';
20     my $leader = shift;
21     my $trailer = shift;
22     my $F;
23     local *F;
24     if (ref $filename) {        # filehandle
25         $F = $filename;
26     }
27     else {
28         open F, ">$filename" or die "Can't open $filename: $!";
29         $F = \*F;
30     }
31     print $F $leader if $leader;
32     seek DATA, $END, 0;         # so we may restart
33     while (<DATA>) {
34         chomp;
35         next if /^:/;
36         while (s|\\$||) {
37             $_ .= <DATA>;
38             chomp;
39         }
40         my @args;
41         if (/^\s*(#|$)/) {
42             @args = $_;
43         }
44         else {
45             @args = split /\s*\|\s*/, $_;
46         }
47         print $F $function->(@args);
48     }
49     print $F $trailer if $trailer;
50     close $F unless ref $filename;
51 }
52
53 sub munge_c_files () {
54     my $functions = {};
55     unless (@ARGV) {
56         warn "\@ARGV empty, nothing to do\n";
57         return;
58     }
59     walk_table {
60         if (@_ > 1) {
61             $functions->{$_[2]} = \@_ if $_[@_-1] =~ /\.\.\./;
62         }
63     } '/dev/null';
64     local $^I = '.bak';
65     while (<>) {
66 #       if (/^#\s*include\s+"perl.h"/) {
67 #           my $file = uc $ARGV;
68 #           $file =~ s/\./_/g;
69 #           print "#define PERL_IN_$file\n";
70 #       }
71 #       s{^(\w+)\s*\(}
72 #        {
73 #           my $f = $1;
74 #           my $repl = "$f(";
75 #           if (exists $functions->{$f}) {
76 #               my $flags = $functions->{$f}[0];
77 #               $repl = "Perl_$repl" if $flags =~ /p/;
78 #               unless ($flags =~ /n/) {
79 #                   $repl .= "pTHX";
80 #                   $repl .= "_ " if @{$functions->{$f}} > 3;
81 #               }
82 #               warn("$ARGV:$.:$repl\n");
83 #           }
84 #           $repl;
85 #        }e;
86         s{(\b(\w+)[ \t]*\([ \t]*(?!aTHX))}
87          {
88             my $repl = $1;
89             my $f = $2;
90             if (exists $functions->{$f}) {
91                 $repl .= "aTHX_ ";
92                 warn("$ARGV:$.:$`#$repl#$'");
93             }
94             $repl;
95          }eg;
96         print;
97         close ARGV if eof;      # restart $.
98     }
99     exit;
100 }
101
102 #munge_c_files();
103
104 # generate proto.h
105 my $wrote_protected = 0;
106
107 sub write_protos {
108     my $ret = "";
109     if (@_ == 1) {
110         my $arg = shift;
111         $ret .= "$arg\n";
112     }
113     else {
114         my ($flags,$retval,$func,@args) = @_;
115         if ($flags =~ /s/) {
116             $retval = "STATIC $retval";
117             $func = "S_$func";
118         }
119         else {
120             $retval = "PERL_CALLCONV $retval";
121             if ($flags =~ /p/) {
122                 $func = "Perl_$func";
123             }
124         }
125         $ret .= "$retval\t$func(";
126         unless ($flags =~ /n/) {
127             $ret .= "pTHX";
128             $ret .= "_ " if @args;
129         }
130         if (@args) {
131             $ret .= join ", ", @args;
132         }
133         else {
134             $ret .= "void" if $flags =~ /n/;
135         }
136         $ret .= ")";
137         $ret .= " __attribute__((noreturn))" if $flags =~ /r/;
138         if( $flags =~ /f/ ) { 
139             my $prefix = $flags =~ /n/ ? '' : 'pTHX_';
140             my $args = scalar @args; 
141             $ret .= "\n#ifdef CHECK_FORMAT\n";
142             $ret .= sprintf " __attribute__((format(printf,%s%d,%s%d)))",
143                                     $prefix, $args - 1, $prefix, $args; 
144             $ret .= "\n#endif\n";
145         }
146         $ret .= ";\n";
147     }
148     $ret;
149 }
150
151 # generates global.sym (API export list), and populates %global with global symbols
152 sub write_global_sym {
153     my $ret = "";
154     if (@_ > 1) {
155         my ($flags,$retval,$func,@args) = @_;
156         if ($flags =~ /A/ && $flags !~ /x/) { # public API, so export
157             $func = "Perl_$func" if $flags =~ /p/;
158             $ret = "$func\n";
159         }
160     }
161     $ret;
162 }
163
164
165 walk_table(\&write_protos, 'proto.h', <<'EOT');
166 /*
167  * !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!!
168  * This file is autogenerated from data in embed.pl.  Edit that file
169  * and run 'make regen_headers' to effect changes.
170  */
171
172 EOT
173
174 walk_table(\&write_global_sym, 'global.sym', <<'EOT');
175 #
176 # !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!!
177 # This file is autogenerated from data in embed.pl.  Edit that file
178 # and run 'make regen_headers' to effect changes.
179 #
180
181 EOT
182
183 # XXX others that may need adding
184 #       warnhook
185 #       hints
186 #       copline
187 my @extvars = qw(sv_undef sv_yes sv_no na dowarn
188                  curcop compiling 
189                  tainting tainted stack_base stack_sp sv_arenaroot
190                  no_modify
191                  curstash DBsub DBsingle debstash
192                  rsfp 
193                  stdingv
194                  defgv
195                  errgv
196                  rsfp_filters
197                  perldb
198                  diehook
199                  dirty
200                  perl_destruct_level
201                 );
202
203 sub readsyms (\%$) {
204     my ($syms, $file) = @_;
205     local (*FILE, $_);
206     open(FILE, "< $file")
207         or die "embed.pl: Can't open $file: $!\n";
208     while (<FILE>) {
209         s/[ \t]*#.*//;          # Delete comments.
210         if (/^\s*(\S+)\s*$/) {
211             my $sym = $1;
212             warn "duplicate symbol $sym while processing $file\n"
213                 if exists $$syms{$sym};
214             $$syms{$sym} = 1;
215         }
216     }
217     close(FILE);
218 }
219
220 # Perl_pp_* and Perl_ck_* are in pp.sym
221 readsyms my %ppsym, 'pp.sym';
222
223 sub readvars(\%$$@) {
224     my ($syms, $file,$pre,$keep_pre) = @_;
225     local (*FILE, $_);
226     open(FILE, "< $file")
227         or die "embed.pl: Can't open $file: $!\n";
228     while (<FILE>) {
229         s/[ \t]*#.*//;          # Delete comments.
230         if (/PERLVARA?I?C?\($pre(\w+)/) {
231             my $sym = $1;
232             $sym = $pre . $sym if $keep_pre;
233             warn "duplicate symbol $sym while processing $file\n"
234                 if exists $$syms{$sym};
235             $$syms{$sym} = $pre || 1;
236         }
237     }
238     close(FILE);
239 }
240
241 my %intrp;
242 my %thread;
243
244 readvars %intrp,  'intrpvar.h','I';
245 readvars %thread, 'thrdvar.h','T';
246 readvars %globvar, 'perlvars.h','G';
247
248 foreach my $sym (sort keys %thread) {
249   warn "$sym in intrpvar.h as well as thrdvar.h\n" if exists $intrp{$sym};
250 }
251
252 sub undefine ($) {
253     my ($sym) = @_;
254     "#undef  $sym\n";
255 }
256
257 sub hide ($$) {
258     my ($from, $to) = @_;
259     my $t = int(length($from) / 8);
260     "#define $from" . "\t" x ($t < 3 ? 3 - $t : 1) . "$to\n";
261 }
262
263 sub bincompat_var ($$) {
264     my ($pfx, $sym) = @_;
265     my $arg = ($pfx eq 'G' ? 'NULL' : 'aTHXo');
266     undefine("PL_$sym") . hide("PL_$sym", "(*Perl_${pfx}${sym}_ptr($arg))");
267 }
268
269 sub multon ($$$) {
270     my ($sym,$pre,$ptr) = @_;
271     hide("PL_$sym", "($ptr$pre$sym)");
272 }
273
274 sub multoff ($$) {
275     my ($sym,$pre) = @_;
276     return hide("PL_$pre$sym", "PL_$sym");
277 }
278
279 unlink 'embed.h';
280 open(EM, '> embed.h') or die "Can't create embed.h: $!\n";
281
282 print EM <<'END';
283 /* !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!! 
284    This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h,
285    perlvars.h and thrdvar.h.  Any changes made here will be lost!
286 */
287
288 /* (Doing namespace management portably in C is really gross.) */
289
290 /* NO_EMBED is no longer supported. i.e. EMBED is always active. */
291
292 /* provide binary compatible (but inconsistent) names */
293 #if defined(PERL_BINCOMPAT_5005)
294 #  define  Perl_call_argv               perl_call_argv
295 #  define  Perl_call_method             perl_call_method
296 #  define  Perl_call_pv                 perl_call_pv
297 #  define  Perl_call_sv                 perl_call_sv
298 #  define  Perl_get_av                  perl_get_av
299 #  define  Perl_get_cv                  perl_get_cv
300 #  define  Perl_get_hv                  perl_get_hv
301 #  define  Perl_get_sv                  perl_get_sv
302 #  define  Perl_init_i18nl10n           perl_init_i18nl10n
303 #  define  Perl_init_i18nl14n           perl_init_i18nl14n
304 #  define  Perl_new_collate             perl_new_collate
305 #  define  Perl_new_ctype               perl_new_ctype
306 #  define  Perl_new_numeric             perl_new_numeric
307 #  define  Perl_require_pv              perl_require_pv
308 #  define  Perl_safesyscalloc           Perl_safecalloc
309 #  define  Perl_safesysfree             Perl_safefree
310 #  define  Perl_safesysmalloc           Perl_safemalloc
311 #  define  Perl_safesysrealloc          Perl_saferealloc
312 #  define  Perl_set_numeric_local       perl_set_numeric_local
313 #  define  Perl_set_numeric_standard    perl_set_numeric_standard
314 /* malloc() pollution was the default in earlier versions, so enable
315  * it for bincompat; but not for systems that used to do prevent that,
316  * or when they ask for {HIDE,EMBED}MYMALLOC */
317 #  if !defined(EMBEDMYMALLOC) && !defined(HIDEMYMALLOC)
318 #    if !defined(NeXT) && !defined(__NeXT) && !defined(__MACHTEN__) && \
319         !defined(__QNX__)
320 #      define  PERL_POLLUTE_MALLOC
321 #    endif
322 #  endif
323 #endif
324
325 /* Hide global symbols */
326
327 #if !defined(PERL_OBJECT)
328 #if !defined(PERL_IMPLICIT_CONTEXT)
329
330 END
331
332 walk_table {
333     my $ret = "";
334     if (@_ == 1) {
335         my $arg = shift;
336         $ret .= "$arg\n" if $arg =~ /^#\s*(if|ifn?def|else|endif)\b/;
337     }
338     else {
339         my ($flags,$retval,$func,@args) = @_;
340         unless ($flags =~ /o/) {
341             if ($flags =~ /s/) {
342                 $ret .= hide($func,"S_$func");
343             }
344             elsif ($flags =~ /p/) {
345                 $ret .= hide($func,"Perl_$func");
346             }
347         }
348     }
349     $ret;
350 } \*EM;
351
352 for $sym (sort keys %ppsym) {
353     $sym =~ s/^Perl_//;
354     print EM hide($sym, "Perl_$sym");
355 }
356
357 print EM <<'END';
358
359 #else   /* PERL_IMPLICIT_CONTEXT */
360
361 END
362
363 my @az = ('a'..'z');
364
365 walk_table {
366     my $ret = "";
367     if (@_ == 1) {
368         my $arg = shift;
369         $ret .= "$arg\n" if $arg =~ /^#\s*(if|ifn?def|else|endif)\b/;
370     }
371     else {
372         my ($flags,$retval,$func,@args) = @_;
373         unless ($flags =~ /o/) {
374             my $args = scalar @args;
375             if ($args and $args[$args-1] =~ /\.\.\./) {
376                 # we're out of luck for varargs functions under CPP
377             }
378             elsif ($flags =~ /n/) {
379                 if ($flags =~ /s/) {
380                     $ret .= hide($func,"S_$func");
381                 }
382                 elsif ($flags =~ /p/) {
383                     $ret .= hide($func,"Perl_$func");
384                 }
385             }
386             else {
387                 my $alist = join(",", @az[0..$args-1]);
388                 $ret = "#define $func($alist)";
389                 my $t = int(length($ret) / 8);
390                 $ret .=  "\t" x ($t < 4 ? 4 - $t : 1);
391                 if ($flags =~ /s/) {
392                     $ret .= "S_$func(aTHX";
393                 }
394                 elsif ($flags =~ /p/) {
395                     $ret .= "Perl_$func(aTHX";
396                 }
397                 $ret .= "_ " if $alist;
398                 $ret .= $alist . ")\n";
399             }
400         }
401     }
402     $ret;
403 } \*EM;
404
405 for $sym (sort keys %ppsym) {
406     $sym =~ s/^Perl_//;
407     if ($sym =~ /^ck_/) {
408         print EM hide("$sym(a)", "Perl_$sym(aTHX_ a)");
409     }
410     elsif ($sym =~ /^pp_/) {
411         print EM hide("$sym()", "Perl_$sym(aTHX)");
412     }
413     else {
414         warn "Illegal symbol '$sym' in pp.sym";
415     }
416 }
417
418 print EM <<'END';
419
420 #endif  /* PERL_IMPLICIT_CONTEXT */
421 #else   /* PERL_OBJECT */
422
423 END
424
425 walk_table {
426     my $ret = "";
427     if (@_ == 1) {
428         my $arg = shift;
429         $ret .= "$arg\n" if $arg =~ /^#\s*(if|ifn?def|else|endif)\b/;
430     }
431     else {
432         my ($flags,$retval,$func,@args) = @_;
433         if ($flags =~ /s/) {
434             $ret .= hide("S_$func","CPerlObj::S_$func") if $flags !~ /j/;
435             $ret .= hide($func,"S_$func");
436         }
437         elsif ($flags =~ /p/) {
438             $ret .= hide("Perl_$func","CPerlObj::Perl_$func") if $flags !~ /j/;
439             $ret .= hide($func,"Perl_$func");
440         }
441         else {
442             $ret .= hide($func,"CPerlObj::$func") if $flags !~ /j/;
443         }
444     }
445     $ret;
446 } \*EM;
447
448 for $sym (sort keys %ppsym) {
449     $sym =~ s/^Perl_//;
450     print EM hide("Perl_$sym", "CPerlObj::Perl_$sym");
451     print EM hide($sym, "Perl_$sym");
452 }
453
454 print EM <<'END';
455
456 #endif  /* PERL_OBJECT */
457
458 /* Compatibility stubs.  Compile extensions with -DPERL_NOCOMPAT to
459    disable them.
460  */
461
462 #if !defined(PERL_CORE)
463 #  define sv_setptrobj(rv,ptr,name)     sv_setref_iv(rv,name,PTR2IV(ptr))
464 #  define sv_setptrref(rv,ptr)          sv_setref_iv(rv,Nullch,PTR2IV(ptr))
465 #endif
466
467 #if !defined(PERL_CORE) && !defined(PERL_NOCOMPAT) && !defined(PERL_BINCOMPAT_5005)
468
469 /* Compatibility for various misnamed functions.  All functions
470    in the API that begin with "perl_" (not "Perl_") take an explicit
471    interpreter context pointer.
472    The following are not like that, but since they had a "perl_"
473    prefix in previous versions, we provide compatibility macros.
474  */
475 #  define perl_atexit(a,b)              call_atexit(a,b)
476 #  define perl_call_argv(a,b,c)         call_argv(a,b,c)
477 #  define perl_call_pv(a,b)             call_pv(a,b)
478 #  define perl_call_method(a,b)         call_method(a,b)
479 #  define perl_call_sv(a,b)             call_sv(a,b)
480 #  define perl_eval_sv(a,b)             eval_sv(a,b)
481 #  define perl_eval_pv(a,b)             eval_pv(a,b)
482 #  define perl_require_pv(a)            require_pv(a)
483 #  define perl_get_sv(a,b)              get_sv(a,b)
484 #  define perl_get_av(a,b)              get_av(a,b)
485 #  define perl_get_hv(a,b)              get_hv(a,b)
486 #  define perl_get_cv(a,b)              get_cv(a,b)
487 #  define perl_init_i18nl10n(a)         init_i18nl10n(a)
488 #  define perl_init_i18nl14n(a)         init_i18nl14n(a)
489 #  define perl_new_ctype(a)             new_ctype(a)
490 #  define perl_new_collate(a)           new_collate(a)
491 #  define perl_new_numeric(a)           new_numeric(a)
492
493 /* varargs functions can't be handled with CPP macros. :-(
494    This provides a set of compatibility functions that don't take
495    an extra argument but grab the context pointer using the macro
496    dTHX.
497  */
498 #if defined(PERL_IMPLICIT_CONTEXT) && !defined(PERL_OBJECT)
499 #  define croak                         Perl_croak_nocontext
500 #  define deb                           Perl_deb_nocontext
501 #  define die                           Perl_die_nocontext
502 #  define form                          Perl_form_nocontext
503 #  define load_module                   Perl_load_module_nocontext
504 #  define mess                          Perl_mess_nocontext
505 #  define newSVpvf                      Perl_newSVpvf_nocontext
506 #  define sv_catpvf                     Perl_sv_catpvf_nocontext
507 #  define sv_setpvf                     Perl_sv_setpvf_nocontext
508 #  define warn                          Perl_warn_nocontext
509 #  define warner                        Perl_warner_nocontext
510 #  define sv_catpvf_mg                  Perl_sv_catpvf_mg_nocontext
511 #  define sv_setpvf_mg                  Perl_sv_setpvf_mg_nocontext
512 #endif
513
514 #endif /* !defined(PERL_CORE) && !defined(PERL_NOCOMPAT) */
515
516 #if !defined(PERL_IMPLICIT_CONTEXT)
517 /* undefined symbols, point them back at the usual ones */
518 #  define Perl_croak_nocontext          Perl_croak
519 #  define Perl_die_nocontext            Perl_die
520 #  define Perl_deb_nocontext            Perl_deb
521 #  define Perl_form_nocontext           Perl_form
522 #  define Perl_load_module_nocontext    Perl_load_module
523 #  define Perl_mess_nocontext           Perl_mess
524 #  define Perl_newSVpvf_nocontext       Perl_newSVpvf
525 #  define Perl_sv_catpvf_nocontext      Perl_sv_catpvf
526 #  define Perl_sv_setpvf_nocontext      Perl_sv_setpvf
527 #  define Perl_warn_nocontext           Perl_warn
528 #  define Perl_warner_nocontext         Perl_warner
529 #  define Perl_sv_catpvf_mg_nocontext   Perl_sv_catpvf_mg
530 #  define Perl_sv_setpvf_mg_nocontext   Perl_sv_setpvf_mg
531 #endif
532
533 END
534
535 close(EM);
536
537 unlink 'embedvar.h';
538 open(EM, '> embedvar.h')
539     or die "Can't create embedvar.h: $!\n";
540
541 print EM <<'END';
542 /* !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!! 
543    This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h,
544    perlvars.h and thrdvar.h.  Any changes made here will be lost!
545 */
546
547 /* (Doing namespace management portably in C is really gross.) */
548
549 /*
550    The following combinations of MULTIPLICITY, USE_THREADS, PERL_OBJECT
551    and PERL_IMPLICIT_CONTEXT are supported:
552      1) none
553      2) MULTIPLICITY    # supported for compatibility
554      3) MULTIPLICITY && PERL_IMPLICIT_CONTEXT
555      4) USE_THREADS && PERL_IMPLICIT_CONTEXT
556      5) MULTIPLICITY && USE_THREADS && PERL_IMPLICIT_CONTEXT
557      6) PERL_OBJECT && PERL_IMPLICIT_CONTEXT
558
559    All other combinations of these flags are errors.
560
561    #3, #4, #5, and #6 are supported directly, while #2 is a special
562    case of #3 (supported by redefining vTHX appropriately).
563 */
564
565 #if defined(MULTIPLICITY)
566 /* cases 2, 3 and 5 above */
567
568 #  if defined(PERL_IMPLICIT_CONTEXT)
569 #    define vTHX        aTHX
570 #  else
571 #    define vTHX        PERL_GET_INTERP
572 #  endif
573
574 END
575
576 for $sym (sort keys %thread) {
577     print EM multon($sym,'T','vTHX->');
578 }
579
580 print EM <<'END';
581
582 #  if defined(PERL_OBJECT)
583 #    include "error: PERL_OBJECT + MULTIPLICITY don't go together"
584 #  endif
585
586 #  if defined(USE_THREADS)
587 /* case 5 above */
588
589 END
590
591 for $sym (sort keys %intrp) {
592     print EM multon($sym,'I','PERL_GET_INTERP->');
593 }
594
595 print EM <<'END';
596
597 #  else         /* !USE_THREADS */
598 /* cases 2 and 3 above */
599
600 END
601
602 for $sym (sort keys %intrp) {
603     print EM multon($sym,'I','vTHX->');
604 }
605
606 print EM <<'END';
607
608 #  endif        /* USE_THREADS */
609
610 #else   /* !MULTIPLICITY */
611
612 #  if defined(PERL_OBJECT)
613 /* case 6 above */
614
615 END
616
617 for $sym (sort keys %thread) {
618     print EM multon($sym,'T','aTHXo->interp.');
619 }
620
621
622 for $sym (sort keys %intrp) {
623     print EM multon($sym,'I','aTHXo->interp.');
624 }
625
626 print EM <<'END';
627
628 #  else /* !PERL_OBJECT */
629
630 /* cases 1 and 4 above */
631
632 END
633
634 for $sym (sort keys %intrp) {
635     print EM multoff($sym,'I');
636 }
637
638 print EM <<'END';
639
640 #    if defined(USE_THREADS)
641 /* case 4 above */
642
643 END
644
645 for $sym (sort keys %thread) {
646     print EM multon($sym,'T','aTHX->');
647 }
648
649 print EM <<'END';
650
651 #    else       /* !USE_THREADS */
652 /* case 1 above */
653
654 END
655
656 for $sym (sort keys %thread) {
657     print EM multoff($sym,'T');
658 }
659
660 print EM <<'END';
661
662 #    endif      /* USE_THREADS */
663 #  endif        /* PERL_OBJECT */
664 #endif  /* MULTIPLICITY */
665
666 #if defined(PERL_GLOBAL_STRUCT)
667
668 END
669
670 for $sym (sort keys %globvar) {
671     print EM multon($sym,'G','PL_Vars.');
672 }
673
674 print EM <<'END';
675
676 #else /* !PERL_GLOBAL_STRUCT */
677
678 END
679
680 for $sym (sort keys %globvar) {
681     print EM multoff($sym,'G');
682 }
683
684 print EM <<'END';
685
686 #endif /* PERL_GLOBAL_STRUCT */
687
688 #ifdef PERL_POLLUTE             /* disabled by default in 5.006 */
689
690 END
691
692 for $sym (sort @extvars) {
693     print EM hide($sym,"PL_$sym");
694 }
695
696 print EM <<'END';
697
698 #endif /* PERL_POLLUTE */
699 END
700
701 close(EM);
702
703 unlink 'objXSUB.h';
704 open(OBX, '> objXSUB.h')
705     or die "Can't create objXSUB.h: $!\n";
706
707 print OBX <<'EOT';
708 /* !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!! 
709    This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h,
710    perlvars.h and thrdvar.h.  Any changes made here will be lost!
711 */
712
713 #ifndef __objXSUB_h__
714 #define __objXSUB_h__
715
716 /* method calls via pPerl (static functions without a "this" pointer need these) */
717
718 #if defined(PERL_CORE) && defined(PERL_OBJECT)
719
720 /* XXX soon to be eliminated, only a few things in PERLCORE need these now */
721
722 EOT
723
724 walk_table {
725     my $ret = "";
726     if (@_ == 1) {
727         my $arg = shift;
728         $ret .= "$arg\n" if $arg =~ /^#\s*(if|ifn?def|else|endif)\b/;
729     }
730     else {
731         my ($flags,$retval,$func,@args) = @_;
732         if ($flags =~ /A/ && $flags !~ /j/) { # API function needing macros
733             if ($flags =~ /p/) {
734                 $ret .= undefine("Perl_$func") . hide("Perl_$func","pPerl->Perl_$func");
735                 $ret .= undefine($func) . hide($func,"Perl_$func");
736             }
737             else {
738                 $ret .= undefine($func) . hide($func,"pPerl->$func");
739             }
740         }
741     }
742     $ret;
743 } \*OBX;
744
745 # NOTE: not part of API
746 #for $sym (sort keys %ppsym) {
747 #    $sym =~ s/^Perl_//;
748 #    print OBX undefine("Perl_$sym") . hide("Perl_$sym", "pPerl->Perl_$sym");
749 #    print OBX undefine($sym) . hide($sym, "Perl_$sym");
750 #}
751
752 print OBX <<'EOT';
753
754 #endif  /* PERL_CORE && PERL_OBJECT */
755 #endif  /* __objXSUB_h__ */
756 EOT
757
758 close(OBX);
759
760 unlink 'perlapi.h';
761 unlink 'perlapi.c';
762 open(CAPI, '> perlapi.c') or die "Can't create perlapi.c: $!\n";
763 open(CAPIH, '> perlapi.h') or die "Can't create perlapi.h: $!\n";
764
765 print CAPIH <<'EOT';
766 /* !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!! 
767    This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h,
768    perlvars.h and thrdvar.h.  Any changes made here will be lost!
769 */
770
771 /* declare accessor functions for Perl variables */
772 #ifndef __perlapi_h__
773 #define __perlapi_h__
774
775 #if defined(PERL_OBJECT) || defined (MULTIPLICITY)
776
777 #if defined(PERL_OBJECT)
778 #  undef  aTHXo
779 #  define aTHXo                 pPerl
780 #  undef  aTHXo_
781 #  define aTHXo_                aTHXo,
782 #endif /* PERL_OBJECT */
783
784 START_EXTERN_C
785
786 #undef PERLVAR
787 #undef PERLVARA
788 #undef PERLVARI
789 #undef PERLVARIC
790 #define PERLVAR(v,t)    EXTERN_C t* Perl_##v##_ptr(pTHXo);
791 #define PERLVARA(v,n,t) typedef t PL_##v##_t[n];                        \
792                         EXTERN_C PL_##v##_t* Perl_##v##_ptr(pTHXo);
793 #define PERLVARI(v,t,i) PERLVAR(v,t)
794 #define PERLVARIC(v,t,i) PERLVAR(v, const t)
795
796 #include "thrdvar.h"
797 #include "intrpvar.h"
798 #include "perlvars.h"
799
800 #undef PERLVAR
801 #undef PERLVARA
802 #undef PERLVARI
803 #undef PERLVARIC
804
805 END_EXTERN_C
806
807 #if defined(PERL_CORE)
808
809 /* accessor functions for Perl variables (provide binary compatibility) */
810
811 /* these need to be mentioned here, or most linkers won't put them in
812    the perl executable */
813
814 #ifndef PERL_NO_FORCE_LINK
815
816 START_EXTERN_C
817
818 #ifndef DOINIT
819 EXT void *PL_force_link_funcs[];
820 #else
821 EXT void *PL_force_link_funcs[] = {
822 #undef PERLVAR
823 #undef PERLVARA
824 #undef PERLVARI
825 #undef PERLVARIC
826 #define PERLVAR(v,t)    (void*)Perl_##v##_ptr,
827 #define PERLVARA(v,n,t) PERLVAR(v,t)
828 #define PERLVARI(v,t,i) PERLVAR(v,t)
829 #define PERLVARIC(v,t,i) PERLVAR(v,t)
830
831 #include "thrdvar.h"
832 #include "intrpvar.h"
833 #include "perlvars.h"
834
835 #undef PERLVAR
836 #undef PERLVARA
837 #undef PERLVARI
838 #undef PERLVARIC
839 };
840 #endif  /* DOINIT */
841
842 START_EXTERN_C
843
844 #endif  /* PERL_NO_FORCE_LINK */
845
846 #else   /* !PERL_CORE */
847
848 EOT
849
850 foreach my $sym (sort keys %intrp) {
851     print CAPIH bincompat_var('I',$sym);
852 }
853
854 foreach my $sym (sort keys %thread) {
855     print CAPIH bincompat_var('T',$sym);
856 }
857
858 foreach my $sym (sort keys %globvar) {
859     print CAPIH bincompat_var('G',$sym);
860 }
861
862 print CAPIH <<'EOT';
863
864 #endif /* !PERL_CORE */
865 #endif /* PERL_OBJECT || MULTIPLICITY */
866
867 #endif /* __perlapi_h__ */
868
869 EOT
870
871 print CAPI <<'EOT';
872 /* !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!! 
873    This file is built by embed.pl from data in embed.pl, pp.sym, intrpvar.h,
874    perlvars.h and thrdvar.h.  Any changes made here will be lost!
875 */
876
877 #include "EXTERN.h"
878 #include "perl.h"
879 #include "perlapi.h"
880
881 #if defined(PERL_OBJECT) || defined (MULTIPLICITY)
882
883 /* accessor functions for Perl variables (provides binary compatibility) */
884 START_EXTERN_C
885
886 #undef PERLVAR
887 #undef PERLVARA
888 #undef PERLVARI
889 #undef PERLVARIC
890
891 #if defined(PERL_OBJECT)
892 #define PERLVAR(v,t)    t* Perl_##v##_ptr(pTHXo)                        \
893                         { return &(aTHXo->interp.v); }
894 #define PERLVARA(v,n,t) PL_##v##_t* Perl_##v##_ptr(pTHXo)               \
895                         { return &(aTHXo->interp.v); }
896 #else   /* MULTIPLICITY */
897 #define PERLVAR(v,t)    t* Perl_##v##_ptr(pTHX)                         \
898                         { return &(aTHX->v); }
899 #define PERLVARA(v,n,t) PL_##v##_t* Perl_##v##_ptr(pTHX)                \
900                         { return &(aTHX->v); }
901 #endif
902
903 #define PERLVARI(v,t,i) PERLVAR(v,t)
904 #define PERLVARIC(v,t,i) PERLVAR(v, const t)
905
906 #include "thrdvar.h"
907 #include "intrpvar.h"
908
909 #undef PERLVAR
910 #undef PERLVARA
911 #define PERLVAR(v,t)    t* Perl_##v##_ptr(pTHXo)                        \
912                         { return &(PL_##v); }
913 #define PERLVARA(v,n,t) PL_##v##_t* Perl_##v##_ptr(pTHXo)               \
914                         { return &(PL_##v); }
915 #include "perlvars.h"
916
917 #undef PERLVAR
918 #undef PERLVARA
919 #undef PERLVARI
920 #undef PERLVARIC
921
922 #if defined(PERL_OBJECT)
923
924 /* C-API layer for PERL_OBJECT */
925
926 EOT
927
928 # functions that take va_list* for implementing vararg functions
929 # NOTE: makedef.pl must be updated if you add symbols to %vfuncs
930 my %vfuncs = qw(
931     Perl_croak                  Perl_vcroak
932     Perl_warn                   Perl_vwarn
933     Perl_warner                 Perl_vwarner
934     Perl_die                    Perl_vdie
935     Perl_form                   Perl_vform
936     Perl_load_module            Perl_vload_module
937     Perl_mess                   Perl_vmess
938     Perl_deb                    Perl_vdeb
939     Perl_newSVpvf               Perl_vnewSVpvf
940     Perl_sv_setpvf              Perl_sv_vsetpvf
941     Perl_sv_setpvf_mg           Perl_sv_vsetpvf_mg
942     Perl_sv_catpvf              Perl_sv_vcatpvf
943     Perl_sv_catpvf_mg           Perl_sv_vcatpvf_mg
944     Perl_dump_indent            Perl_dump_vindent
945     Perl_default_protect        Perl_vdefault_protect
946 );
947
948 sub emit_func {
949     my ($addcontext, $rettype,$func,@args) = @_;
950     my @aargs = @args;
951     my $a;
952     for $a (@aargs) { $a =~ s/^.*\b(\w+)$/$1/ }
953     my $ctxarg = '';
954     if (not $addcontext) {
955         $ctxarg = 'pTHXo';
956         $ctxarg .= '_ ' if @args;
957     }
958     my $decl = '';
959     if ($addcontext) {
960         $decl .= "    dTHXo;\n";
961     }
962     local $" = ', ';
963     my $return = ($rettype =~ /^\s*(void|Free_t|Signal_t)\s*$/
964                   ? '' : 'return ');
965     my $emitval = '';
966     if (@args and $args[$#args] =~ /\.\.\./) {
967         pop @aargs;
968         my $retarg = '';
969         my $ctxfunc = $func;
970         $ctxfunc =~ s/_nocontext$//;
971         return $emitval unless exists $vfuncs{$ctxfunc};
972         if (length $return) {
973             $decl .= "    $rettype retval;\n";
974             $retarg .= "retval = ";
975             $return = "\n    ${return}retval;\n";
976         }
977         $emitval .= <<EOT
978 $rettype
979 $func($ctxarg@args)
980 {
981 $decl    va_list args;
982     va_start(args, $aargs[$#aargs]);
983     $retarg((CPerlObj*)pPerl)->$vfuncs{$ctxfunc}(@aargs, &args);
984     va_end(args);$return
985 }
986 EOT
987     }
988     else {
989         $emitval .= <<EOT
990 $rettype
991 $func($ctxarg@args)
992 {
993 $decl    $return((CPerlObj*)pPerl)->$func(@aargs);
994 }
995 EOT
996     }
997     $emitval;
998 }
999
1000 # XXXX temporary hack
1001 my $sym;
1002 for $sym (qw(
1003                 perl_construct
1004                 perl_destruct
1005                 perl_free
1006                 perl_run
1007                 perl_parse
1008                 ))
1009 {
1010     $skipapi_funcs{$sym}++;
1011 }
1012
1013 walk_table {
1014     my $ret = "";
1015     if (@_ == 1) {
1016         my $arg = shift;
1017         $ret .= "$arg\n" if $arg =~ /^#\s*(if|ifn?def|else|endif)\b/;
1018     }
1019     else {
1020         my ($flags,$retval,$func,@args) = @_;
1021         return $ret if exists $skipapi_funcs{$func};
1022         if ($flags =~ /A/ && $flags !~ /j/) { # in public API, needed for XSUBS
1023             $ret .= "\n";
1024             my $addctx = 1 if $flags =~ /n/;
1025             if ($flags =~ /p/) {
1026                 $ret .= undefine("Perl_$func");
1027                 $ret .= emit_func($addctx,$retval,"Perl_$func",@args);
1028             }
1029             else {
1030                 $ret .= undefine($func);
1031                 $ret .= emit_func($addctx,$retval,$func,@args);
1032             }
1033         }
1034     }
1035     $ret;
1036 } \*CAPI;
1037
1038 # NOTE: not part of the API
1039 #for $sym (sort keys %ppsym) {
1040 #    $sym =~ s/^Perl_//;
1041 #    print CAPI "\n";
1042 #    print CAPI undefine("Perl_$sym");
1043 #    if ($sym =~ /^ck_/) {
1044 #       print CAPI emit_func(0, 'OP *',"Perl_$sym",'OP *o');
1045 #    }
1046 #   else {                                      # pp_foo
1047 #       print CAPI emit_func(0, 'OP *',"Perl_$sym");
1048 #    }
1049 #}
1050
1051 print CAPI <<'EOT';
1052
1053 #undef Perl_fprintf_nocontext
1054 int
1055 Perl_fprintf_nocontext(PerlIO *stream, const char *format, ...)
1056 {
1057     dTHXo;
1058     va_list(arglist);
1059     va_start(arglist, format);
1060     return (*PL_StdIO->pVprintf)(PL_StdIO, stream, format, arglist);
1061 }
1062
1063 END_EXTERN_C
1064
1065 #endif /* PERL_OBJECT */
1066 #endif /* PERL_OBJECT || MULTIPLICITY */
1067 EOT
1068
1069 close(CAPI);
1070
1071 # autogenerate documentation from comments in source files
1072
1073 my %apidocs;
1074 my %gutsdocs;
1075 my %docfuncs;
1076
1077 sub autodoc ($) { # parse a file and extract documentation info
1078     my($fh) = @_;
1079     my($in, $doc);
1080
1081 FUNC:
1082     while (defined($in = <$fh>)) {
1083         if ($in =~ /^=for\s+apidoc\s+(.*)\n/) {
1084             my $proto = $1;
1085             $proto = "||$proto" unless $proto =~ /\|/;
1086             my($flags, $ret, $name, @args) = split /\|/, $proto;
1087             my $docs = "";
1088 DOC:
1089             while (defined($doc = <$fh>)) {
1090                 last DOC if $doc =~ /^=\w+/;
1091                 $docs .= $doc;
1092             }
1093             $docs = "\n$docs" if $docs and $docs !~ /^\n/;
1094             if ($flags =~ /m/) {
1095                 if ($flags =~ /A/) {
1096                     $apidocs{$name} = [$flags, $docs, $ret, @args];
1097                 }
1098                 else {
1099                     $gutsdocs{$name} = [$flags, $docs, $ret, @args];
1100                 }
1101             }
1102             else {
1103                 $docfuncs{$name} = [$flags, $docs, $ret, @args];
1104             }
1105             if ($doc =~ /^=for/) {
1106                 $in = $doc;
1107                 redo FUNC;
1108             }
1109         }
1110     }
1111 }
1112
1113 sub docout ($$$) { # output the docs for one function
1114     my($fh, $name, $docref) = @_;
1115     my($flags, $docs, $ret, @args) = @$docref;
1116
1117     $docs .= "NOTE: the perl_ form of this function is deprecated.\n\n" 
1118         if $flags =~ /p/;
1119
1120     print $fh "=item $name\n$docs";
1121
1122     if ($flags =~ /U/) { # no usage
1123         # nothing
1124     } elsif ($flags =~ /s/) { # semicolon ("dTHR;")
1125         print $fh "\t\t$name;\n\n";
1126     } elsif ($flags =~ /n/) { # no args
1127         print $fh "\t$ret\t$name\n\n";
1128     } else { # full usage
1129         print $fh "\t$ret\t$name";
1130         print $fh "(" . join(", ", @args) . ")";
1131         print $fh "\n\n";
1132     }
1133 }
1134
1135 my $file;
1136 for $file (glob('*.c'), glob('*.h')) {
1137     open F, "< $file" or die "Cannot open $file for docs: $!\n";
1138     autodoc(\*F);
1139     close F or die "Error closing $file: $!\n";
1140 }
1141
1142 unlink "pod/perlapi.pod";
1143 open (DOC, ">pod/perlapi.pod") or 
1144         die "Can't create pod/perlapi.pod: $!\n";
1145
1146 walk_table {    # load documented functions into approriate hash
1147     if (@_ > 1) {
1148         my($flags, $retval, $func, @args) = @_;
1149         return "" unless $flags =~ /d/;
1150         $func =~ s/\t//g; $flags =~ s/p//; # clean up fields from embed.pl
1151         $retval =~ s/\t//;
1152         if ($flags =~ /A/) {
1153             my $docref = delete $docfuncs{$func};
1154             warn "no docs for $func\n" unless $docref and @$docref;
1155             $apidocs{$func} = [$docref->[0] . 'A', $docref->[1], $retval, @args];
1156         } else {
1157             my $docref = delete $docfuncs{$func};
1158             $gutsdocs{$func} = [$docref->[0], $docref->[1], $retval, @args];
1159         }
1160     }
1161     return "";
1162 } \*DOC;
1163
1164 for (sort keys %docfuncs) {
1165     warn "Unable to place $_!\n";
1166 }
1167
1168 print DOC <<'_EOB_';
1169 =head1 NAME
1170
1171 perlapi - autogenerated documentation for the perl public API
1172
1173 =head1 DESCRIPTION
1174
1175 This file contains the documentation of the perl public API generated by 
1176 embed.pl, specifically a listing of functions, macros, flags, and variables 
1177 that may be used by extension writers.  The interfaces of any functions that 
1178 are not listed here are subject to change without notice.  For this reason,
1179 blindly using functions listed in proto.h is to be avoided when writing
1180 extensions.
1181
1182 Note that all Perl API global variables must be referenced with the C<PL_>
1183 prefix.  Some macros are provided for compatibility with the older,
1184 unadorned names, but this support may be disabled in a future release.
1185
1186 The listing is alphabetical, case insensitive.
1187
1188 =over 8
1189
1190 _EOB_
1191
1192 my $key;
1193 for $key (sort { uc($a) cmp uc($b); } keys %apidocs) { # case insensitive sort
1194     docout(\*DOC, $key, $apidocs{$key});
1195 }
1196
1197 print DOC <<'_EOE_';
1198 =back
1199
1200 =head1 AUTHORS
1201
1202 Until May 1997, this document was maintained by Jeff Okamoto
1203 <okamoto@corp.hp.com>.  It is now maintained as part of Perl itself.
1204
1205 With lots of help and suggestions from Dean Roehrich, Malcolm Beattie,
1206 Andreas Koenig, Paul Hudson, Ilya Zakharevich, Paul Marquess, Neil
1207 Bowers, Matthew Green, Tim Bunce, Spider Boardman, Ulrich Pfeifer,
1208 Stephen McCamant, and Gurusamy Sarathy.
1209
1210 API Listing originally by Dean Roehrich <roehrich@cray.com>.
1211
1212 Updated to be autogenerated from comments in the source by Benjamin Stuhl.
1213
1214 =head1 SEE ALSO
1215
1216 perlguts(1), perlxs(1), perlxstut(1), perlintern(1)
1217
1218 _EOE_
1219
1220
1221 close(DOC);
1222
1223 open(GUTS, ">pod/perlintern.pod") or 
1224                 die "Unable to create pod/perlintern.pod: $!\n";
1225 print GUTS <<'END';
1226 =head1 NAME
1227
1228 perlintern - autogenerated documentation of purely B<internal> 
1229                  Perl functions
1230
1231 =head1 DESCRIPTION
1232
1233 This file is the autogenerated documentation of functions in the 
1234 Perl intrepreter that are documented using Perl's internal documentation
1235 format but are not marked as part of the Perl API. In other words, 
1236 B<they are not for use in extensions>!
1237
1238 =over 8
1239
1240 END
1241
1242 for $key (sort { uc($a) cmp uc($b); } keys %gutsdocs) {
1243     docout(\*GUTS, $key, $gutsdocs{$key});
1244 }
1245
1246 print GUTS <<'END';
1247 =back
1248
1249 =head1 AUTHORS
1250
1251 The autodocumentation system was orignally added to the Perl core by 
1252 Benjamin Stuhl. Documentation is by whoever was kind enough to 
1253 document their functions.
1254
1255 =head1 SEE ALSO
1256
1257 perlguts(1), perlapi(1)
1258
1259 END
1260
1261 close GUTS;
1262
1263
1264 __END__
1265
1266 : Lines are of the form:
1267 :    flags|return_type|function_name|arg1|arg2|...|argN
1268 :
1269 : A line may be continued on another by ending it with a backslash.
1270 : Leading and trailing whitespace will be ignored in each component.
1271 :
1272 : flags are single letters with following meanings:
1273 :       A               member of public API
1274 :       d               function has documentation with its source
1275 :       s               static function, should have an S_ prefix in source
1276 :                               file
1277 :       n               has no implicit interpreter/thread context argument
1278 :       p               function has a Perl_ prefix
1279 :       f               function takes printf style format string, varargs
1280 :       r               function never returns
1281 :       o               has no compatibility macro (#define foo Perl_foo)
1282 :       j               not a member of CPerlObj
1283 :       x               not exported
1284 :
1285 : Individual flags may be separated by whitespace.
1286 :
1287 : New global functions should be added at the end for binary compatibility
1288 : in some configurations.
1289
1290 START_EXTERN_C
1291
1292 #if defined(PERL_IMPLICIT_SYS)
1293 Ajno    |PerlInterpreter*       |perl_alloc_using \
1294                                 |struct IPerlMem* m|struct IPerlMem* ms \
1295                                 |struct IPerlMem* mp|struct IPerlEnv* e \
1296                                 |struct IPerlStdIO* io|struct IPerlLIO* lio \
1297                                 |struct IPerlDir* d|struct IPerlSock* s \
1298                                 |struct IPerlProc* p
1299 #endif
1300 Ajnod   |PerlInterpreter*       |perl_alloc
1301 Ajnod   |void   |perl_construct |PerlInterpreter* interp
1302 Ajnod   |void   |perl_destruct  |PerlInterpreter* interp
1303 Ajnod   |void   |perl_free      |PerlInterpreter* interp
1304 Ajnod   |int    |perl_run       |PerlInterpreter* interp
1305 Ajnod   |int    |perl_parse     |PerlInterpreter* interp|XSINIT_t xsinit \
1306                                 |int argc|char** argv|char** env
1307 #if defined(USE_ITHREADS)
1308 : XXX: perl_clone needs docs
1309 Ajno    |PerlInterpreter*|perl_clone|PerlInterpreter* interp, UV flags
1310 #  if defined(PERL_IMPLICIT_SYS)
1311 Ajno    |PerlInterpreter*|perl_clone_using|PerlInterpreter *interp|UV flags \
1312                                 |struct IPerlMem* m|struct IPerlMem* ms \
1313                                 |struct IPerlMem* mp|struct IPerlEnv* e \
1314                                 |struct IPerlStdIO* io|struct IPerlLIO* lio \
1315                                 |struct IPerlDir* d|struct IPerlSock* s \
1316                                 |struct IPerlProc* p
1317 #  endif
1318 #endif
1319
1320 #if defined(MYMALLOC)
1321 Ajnop   |Malloc_t|malloc        |MEM_SIZE nbytes
1322 Ajnop   |Malloc_t|calloc        |MEM_SIZE elements|MEM_SIZE size
1323 Ajnop   |Malloc_t|realloc       |Malloc_t where|MEM_SIZE nbytes
1324 Ajnop   |Free_t |mfree          |Malloc_t where
1325 jnp     |MEM_SIZE|malloced_size |void *p
1326 #endif
1327
1328 Ajnp    |void*  |get_context
1329 Ajnp    |void   |set_context    |void *thx
1330
1331 END_EXTERN_C
1332
1333 /* functions with flag 'n' should come before here */
1334 #if defined(PERL_OBJECT)
1335 class CPerlObj {
1336 public:
1337         struct interpreter interp;
1338         CPerlObj(IPerlMem*, IPerlMem*, IPerlMem*, IPerlEnv*, IPerlStdIO*,
1339             IPerlLIO*, IPerlDir*, IPerlSock*, IPerlProc*);
1340         void* operator new(size_t nSize, IPerlMem *pvtbl);
1341 #ifndef __BORLANDC__
1342         static void operator delete(void* pPerl, IPerlMem *pvtbl);
1343 #endif
1344         int do_aspawn (void *vreally, void **vmark, void **vsp);
1345 #endif
1346 #if defined(PERL_OBJECT)
1347 public:
1348 #else
1349 START_EXTERN_C
1350 #endif
1351 #  include "pp_proto.h"
1352 Ap      |SV*    |amagic_call    |SV* left|SV* right|int method|int dir
1353 Ap      |bool   |Gv_AMupdate    |HV* stash
1354 p       |OP*    |append_elem    |I32 optype|OP* head|OP* tail
1355 p       |OP*    |append_list    |I32 optype|LISTOP* first|LISTOP* last
1356 p       |I32    |apply          |I32 type|SV** mark|SV** sp
1357 Ap      |SV*    |avhv_delete_ent|AV *ar|SV* keysv|I32 flags|U32 hash
1358 Ap      |bool   |avhv_exists_ent|AV *ar|SV* keysv|U32 hash
1359 Ap      |SV**   |avhv_fetch_ent |AV *ar|SV* keysv|I32 lval|U32 hash
1360 Ap      |SV**   |avhv_store_ent |AV *ar|SV* keysv|SV* val|U32 hash
1361 Ap      |HE*    |avhv_iternext  |AV *ar
1362 Ap      |SV*    |avhv_iterval   |AV *ar|HE* entry
1363 Ap      |HV*    |avhv_keys      |AV *ar
1364 Apd     |void   |av_clear       |AV* ar
1365 Ap      |SV*    |av_delete      |AV* ar|I32 key|I32 flags
1366 Ap      |bool   |av_exists      |AV* ar|I32 key
1367 Apd     |void   |av_extend      |AV* ar|I32 key
1368 Ap      |AV*    |av_fake        |I32 size|SV** svp
1369 Apd     |SV**   |av_fetch       |AV* ar|I32 key|I32 lval
1370 Ap      |void   |av_fill        |AV* ar|I32 fill
1371 Apd     |I32    |av_len         |AV* ar
1372 Apd     |AV*    |av_make        |I32 size|SV** svp
1373 Apd     |SV*    |av_pop         |AV* ar
1374 Apd     |void   |av_push        |AV* ar|SV* val
1375 Ap      |void   |av_reify       |AV* ar
1376 Apd     |SV*    |av_shift       |AV* ar
1377 Apd     |SV**   |av_store       |AV* ar|I32 key|SV* val
1378 Apd     |void   |av_undef       |AV* ar
1379 Apd     |void   |av_unshift     |AV* ar|I32 num
1380 p       |OP*    |bind_match     |I32 type|OP* left|OP* pat
1381 p       |OP*    |block_end      |I32 floor|OP* seq
1382 Ap      |I32    |block_gimme
1383 p       |int    |block_start    |int full
1384 p       |void   |boot_core_UNIVERSAL
1385 Ap      |void   |call_list      |I32 oldscope|AV* av_list
1386 p       |bool   |cando          |Mode_t mode|Uid_t effective|Stat_t* statbufp
1387 Ap      |U32    |cast_ulong     |NV f
1388 Ap      |I32    |cast_i32       |NV f
1389 Ap      |IV     |cast_iv        |NV f
1390 Ap      |UV     |cast_uv        |NV f
1391 #if !defined(HAS_TRUNCATE) && !defined(HAS_CHSIZE) && defined(F_FREESP)
1392 Ap      |I32    |my_chsize      |int fd|Off_t length
1393 #endif
1394 #if defined(USE_THREADS)
1395 Ap      |MAGIC* |condpair_magic |SV *sv
1396 #endif
1397 p       |OP*    |convert        |I32 optype|I32 flags|OP* o
1398 Afprd   |void   |croak          |const char* pat|...
1399 Apr     |void   |vcroak         |const char* pat|va_list* args
1400 #if defined(PERL_IMPLICIT_CONTEXT)
1401 Afnrp   |void   |croak_nocontext|const char* pat|...
1402 Afnp    |OP*    |die_nocontext  |const char* pat|...
1403 Afnp    |void   |deb_nocontext  |const char* pat|...
1404 Afnp    |char*  |form_nocontext |const char* pat|...
1405 Afnp    |void   |load_module_nocontext|U32 flags|SV* name|SV* ver|...
1406 Afnp    |SV*    |mess_nocontext |const char* pat|...
1407 Afnp    |void   |warn_nocontext |const char* pat|...
1408 Afnp    |void   |warner_nocontext|U32 err|const char* pat|...
1409 Afnp    |SV*    |newSVpvf_nocontext|const char* pat|...
1410 Afnp    |void   |sv_catpvf_nocontext|SV* sv|const char* pat|...
1411 Afnp    |void   |sv_setpvf_nocontext|SV* sv|const char* pat|...
1412 Afnp    |void   |sv_catpvf_mg_nocontext|SV* sv|const char* pat|...
1413 Afnp    |void   |sv_setpvf_mg_nocontext|SV* sv|const char* pat|...
1414 Afnp    |int    |fprintf_nocontext|PerlIO* stream|const char* fmt|...
1415 #endif
1416 p       |void   |cv_ckproto     |CV* cv|GV* gv|char* p
1417 p       |CV*    |cv_clone       |CV* proto
1418 p       |SV*    |cv_const_sv    |CV* cv
1419 p       |SV*    |op_const_sv    |OP* o|CV* cv
1420 p       |void   |cv_undef       |CV* cv
1421 Ap      |void   |cx_dump        |PERL_CONTEXT* cs
1422 Ap      |SV*    |filter_add     |filter_t funcp|SV* datasv
1423 Ap      |void   |filter_del     |filter_t funcp
1424 Ap      |I32    |filter_read    |int idx|SV* buffer|int maxlen
1425 Ap      |char** |get_op_descs
1426 Ap      |char** |get_op_names
1427 p       |char*  |get_no_modify
1428 p       |U32*   |get_opargs
1429 Ap      |PPADDR_t*|get_ppaddr
1430 p       |I32    |cxinc
1431 Afp     |void   |deb            |const char* pat|...
1432 Ap      |void   |vdeb           |const char* pat|va_list* args
1433 Ap      |void   |debprofdump
1434 Ap      |I32    |debop          |OP* o
1435 Ap      |I32    |debstack
1436 Ap      |I32    |debstackptrs
1437 Ap      |char*  |delimcpy       |char* to|char* toend|char* from \
1438                                 |char* fromend|int delim|I32* retlen
1439 p       |void   |deprecate      |char* s
1440 Afp     |OP*    |die            |const char* pat|...
1441 p       |OP*    |vdie           |const char* pat|va_list* args
1442 p       |OP*    |die_where      |char* message|STRLEN msglen
1443 Ap      |void   |dounwind       |I32 cxix
1444 p       |bool   |do_aexec       |SV* really|SV** mark|SV** sp
1445 p       |bool   |do_aexec5      |SV* really|SV** mark|SV** sp|int fd|int flag
1446 Ap      |int    |do_binmode     |PerlIO *fp|int iotype|int flag
1447 p       |void   |do_chop        |SV* asv|SV* sv
1448 p       |bool   |do_close       |GV* gv|bool not_implicit
1449 p       |bool   |do_eof         |GV* gv
1450 p       |bool   |do_exec        |char* cmd
1451 #if !defined(WIN32)
1452 p       |bool   |do_exec3       |char* cmd|int fd|int flag
1453 #endif
1454 p       |void   |do_execfree
1455 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
1456 p       |I32    |do_ipcctl      |I32 optype|SV** mark|SV** sp
1457 p       |I32    |do_ipcget      |I32 optype|SV** mark|SV** sp
1458 p       |I32    |do_msgrcv      |SV** mark|SV** sp
1459 p       |I32    |do_msgsnd      |SV** mark|SV** sp
1460 p       |I32    |do_semop       |SV** mark|SV** sp
1461 p       |I32    |do_shmio       |I32 optype|SV** mark|SV** sp
1462 #endif
1463 p       |void   |do_join        |SV* sv|SV* del|SV** mark|SV** sp
1464 p       |OP*    |do_kv
1465 Ap      |bool   |do_open        |GV* gv|char* name|I32 len|int as_raw \
1466                                 |int rawmode|int rawperm|PerlIO* supplied_fp
1467 Ap      |bool   |do_open9       |GV *gv|char *name|I32 len|int as_raw \
1468                                 |int rawmode|int rawperm|PerlIO *supplied_fp \
1469                                 |SV *svs|I32 num
1470 p       |void   |do_pipe        |SV* sv|GV* rgv|GV* wgv
1471 p       |bool   |do_print       |SV* sv|PerlIO* fp
1472 p       |OP*    |do_readline
1473 p       |I32    |do_chomp       |SV* sv
1474 p       |bool   |do_seek        |GV* gv|Off_t pos|int whence
1475 p       |void   |do_sprintf     |SV* sv|I32 len|SV** sarg
1476 p       |Off_t  |do_sysseek     |GV* gv|Off_t pos|int whence
1477 p       |Off_t  |do_tell        |GV* gv
1478 p       |I32    |do_trans       |SV* sv
1479 p       |UV     |do_vecget      |SV* sv|I32 offset|I32 size
1480 p       |void   |do_vecset      |SV* sv
1481 p       |void   |do_vop         |I32 optype|SV* sv|SV* left|SV* right
1482 p       |OP*    |dofile         |OP* term
1483 Ap      |I32    |dowantarray
1484 Ap      |void   |dump_all
1485 Ap      |void   |dump_eval
1486 #if defined(DUMP_FDS)
1487 Ap      |void   |dump_fds       |char* s
1488 #endif
1489 Ap      |void   |dump_form      |GV* gv
1490 Ap      |void   |gv_dump        |GV* gv
1491 Ap      |void   |op_dump        |OP* arg
1492 Ap      |void   |pmop_dump      |PMOP* pm
1493 Ap      |void   |dump_packsubs  |HV* stash
1494 Ap      |void   |dump_sub       |GV* gv
1495 Apd     |void   |fbm_compile    |SV* sv|U32 flags
1496 Apd     |char*  |fbm_instr      |unsigned char* big|unsigned char* bigend \
1497                                 |SV* littlesv|U32 flags
1498 p       |char*  |find_script    |char *scriptname|bool dosearch \
1499                                 |char **search_ext|I32 flags
1500 #if defined(USE_THREADS)
1501 p       |PADOFFSET|find_threadsv|const char *name
1502 #endif
1503 p       |OP*    |force_list     |OP* arg
1504 p       |OP*    |fold_constants |OP* arg
1505 Afp     |char*  |form           |const char* pat|...
1506 Ap      |char*  |vform          |const char* pat|va_list* args
1507 Ap      |void   |free_tmps
1508 p       |OP*    |gen_constant_list|OP* o
1509 #if !defined(HAS_GETENV_LEN)
1510 p       |char*  |getenv_len     |char* key|unsigned long *len
1511 #endif
1512 Ap      |void   |gp_free        |GV* gv
1513 Ap      |GP*    |gp_ref         |GP* gp
1514 Ap      |GV*    |gv_AVadd       |GV* gv
1515 Ap      |GV*    |gv_HVadd       |GV* gv
1516 Ap      |GV*    |gv_IOadd       |GV* gv
1517 Ap      |GV*    |gv_autoload4   |HV* stash|const char* name|STRLEN len \
1518                                 |I32 method
1519 Ap      |void   |gv_check       |HV* stash
1520 Ap      |void   |gv_efullname   |SV* sv|GV* gv
1521 Ap      |void   |gv_efullname3  |SV* sv|GV* gv|const char* prefix
1522 Ap      |GV*    |gv_fetchfile   |const char* name
1523 Apd     |GV*    |gv_fetchmeth   |HV* stash|const char* name|STRLEN len \
1524                                 |I32 level
1525 Apd     |GV*    |gv_fetchmethod |HV* stash|const char* name
1526 Apd     |GV*    |gv_fetchmethod_autoload|HV* stash|const char* name \
1527                                 |I32 autoload
1528 Ap      |GV*    |gv_fetchpv     |const char* name|I32 add|I32 sv_type
1529 Ap      |void   |gv_fullname    |SV* sv|GV* gv
1530 Ap      |void   |gv_fullname3   |SV* sv|GV* gv|const char* prefix
1531 Ap      |void   |gv_init        |GV* gv|HV* stash|const char* name \
1532                                 |STRLEN len|int multi
1533 Apd     |HV*    |gv_stashpv     |const char* name|I32 create
1534 Ap      |HV*    |gv_stashpvn    |const char* name|U32 namelen|I32 create
1535 Apd     |HV*    |gv_stashsv     |SV* sv|I32 create
1536 Apd     |void   |hv_clear       |HV* tb
1537 Ap      |void   |hv_delayfree_ent|HV* hv|HE* entry
1538 Apd     |SV*    |hv_delete      |HV* tb|const char* key|U32 klen|I32 flags
1539 Apd     |SV*    |hv_delete_ent  |HV* tb|SV* key|I32 flags|U32 hash
1540 Apd     |bool   |hv_exists      |HV* tb|const char* key|U32 klen
1541 Apd     |bool   |hv_exists_ent  |HV* tb|SV* key|U32 hash
1542 Apd     |SV**   |hv_fetch       |HV* tb|const char* key|U32 klen|I32 lval
1543 Apd     |HE*    |hv_fetch_ent   |HV* tb|SV* key|I32 lval|U32 hash
1544 Ap      |void   |hv_free_ent    |HV* hv|HE* entry
1545 Apd     |I32    |hv_iterinit    |HV* tb
1546 Apd     |char*  |hv_iterkey     |HE* entry|I32* retlen
1547 Apd     |SV*    |hv_iterkeysv   |HE* entry
1548 Apd     |HE*    |hv_iternext    |HV* tb
1549 Apd     |SV*    |hv_iternextsv  |HV* hv|char** key|I32* retlen
1550 Apd     |SV*    |hv_iterval     |HV* tb|HE* entry
1551 Ap      |void   |hv_ksplit      |HV* hv|IV newmax
1552 Apd     |void   |hv_magic       |HV* hv|GV* gv|int how
1553 Apd     |SV**   |hv_store       |HV* tb|const char* key|U32 klen|SV* val \
1554                                 |U32 hash
1555 Apd     |HE*    |hv_store_ent   |HV* tb|SV* key|SV* val|U32 hash
1556 Apd     |void   |hv_undef       |HV* tb
1557 Ap      |I32    |ibcmp          |const char* a|const char* b|I32 len
1558 Ap      |I32    |ibcmp_locale   |const char* a|const char* b|I32 len
1559 p       |bool   |ingroup        |Gid_t testgid|Uid_t effective
1560 p       |void   |init_debugger
1561 Ap      |void   |init_stacks
1562 p       |U32    |intro_my
1563 Ap      |char*  |instr          |const char* big|const char* little
1564 p       |bool   |io_close       |IO* io|bool not_implicit
1565 p       |OP*    |invert         |OP* cmd
1566 Ap      |bool   |is_uni_alnum   |U32 c
1567 Ap      |bool   |is_uni_alnumc  |U32 c
1568 Ap      |bool   |is_uni_idfirst |U32 c
1569 Ap      |bool   |is_uni_alpha   |U32 c
1570 Ap      |bool   |is_uni_ascii   |U32 c
1571 Ap      |bool   |is_uni_space   |U32 c
1572 Ap      |bool   |is_uni_cntrl   |U32 c
1573 Ap      |bool   |is_uni_graph   |U32 c
1574 Ap      |bool   |is_uni_digit   |U32 c
1575 Ap      |bool   |is_uni_upper   |U32 c
1576 Ap      |bool   |is_uni_lower   |U32 c
1577 Ap      |bool   |is_uni_print   |U32 c
1578 Ap      |bool   |is_uni_punct   |U32 c
1579 Ap      |bool   |is_uni_xdigit  |U32 c
1580 Ap      |U32    |to_uni_upper   |U32 c
1581 Ap      |U32    |to_uni_title   |U32 c
1582 Ap      |U32    |to_uni_lower   |U32 c
1583 Ap      |bool   |is_uni_alnum_lc|U32 c
1584 Ap      |bool   |is_uni_alnumc_lc|U32 c
1585 Ap      |bool   |is_uni_idfirst_lc|U32 c
1586 Ap      |bool   |is_uni_alpha_lc|U32 c
1587 Ap      |bool   |is_uni_ascii_lc|U32 c
1588 Ap      |bool   |is_uni_space_lc|U32 c
1589 Ap      |bool   |is_uni_cntrl_lc|U32 c
1590 Ap      |bool   |is_uni_graph_lc|U32 c
1591 Ap      |bool   |is_uni_digit_lc|U32 c
1592 Ap      |bool   |is_uni_upper_lc|U32 c
1593 Ap      |bool   |is_uni_lower_lc|U32 c
1594 Ap      |bool   |is_uni_print_lc|U32 c
1595 Ap      |bool   |is_uni_punct_lc|U32 c
1596 Ap      |bool   |is_uni_xdigit_lc|U32 c
1597 Ap      |U32    |to_uni_upper_lc|U32 c
1598 Ap      |U32    |to_uni_title_lc|U32 c
1599 Ap      |U32    |to_uni_lower_lc|U32 c
1600 Ap      |int    |is_utf8_char   |U8 *p
1601 Ap      |bool   |is_utf8_alnum  |U8 *p
1602 Ap      |bool   |is_utf8_alnumc |U8 *p
1603 Ap      |bool   |is_utf8_idfirst|U8 *p
1604 Ap      |bool   |is_utf8_alpha  |U8 *p
1605 Ap      |bool   |is_utf8_ascii  |U8 *p
1606 Ap      |bool   |is_utf8_space  |U8 *p
1607 Ap      |bool   |is_utf8_cntrl  |U8 *p
1608 Ap      |bool   |is_utf8_digit  |U8 *p
1609 Ap      |bool   |is_utf8_graph  |U8 *p
1610 Ap      |bool   |is_utf8_upper  |U8 *p
1611 Ap      |bool   |is_utf8_lower  |U8 *p
1612 Ap      |bool   |is_utf8_print  |U8 *p
1613 Ap      |bool   |is_utf8_punct  |U8 *p
1614 Ap      |bool   |is_utf8_xdigit |U8 *p
1615 Ap      |bool   |is_utf8_mark   |U8 *p
1616 p       |OP*    |jmaybe         |OP* arg
1617 p       |I32    |keyword        |char* d|I32 len
1618 Ap      |void   |leave_scope    |I32 base
1619 p       |void   |lex_end
1620 p       |void   |lex_start      |SV* line
1621 p       |OP*    |linklist       |OP* o
1622 p       |OP*    |list           |OP* o
1623 p       |OP*    |listkids       |OP* o
1624 Afp     |void   |load_module|U32 flags|SV* name|SV* ver|...
1625 Ap      |void   |vload_module|U32 flags|SV* name|SV* ver|va_list* args
1626 p       |OP*    |localize       |OP* arg|I32 lexical
1627 Apd     |I32    |looks_like_number|SV* sv
1628 p       |int    |magic_clearenv |SV* sv|MAGIC* mg
1629 p       |int    |magic_clear_all_env|SV* sv|MAGIC* mg
1630 p       |int    |magic_clearpack|SV* sv|MAGIC* mg
1631 p       |int    |magic_clearsig |SV* sv|MAGIC* mg
1632 p       |int    |magic_existspack|SV* sv|MAGIC* mg
1633 p       |int    |magic_freeregexp|SV* sv|MAGIC* mg
1634 p       |int    |magic_get      |SV* sv|MAGIC* mg
1635 p       |int    |magic_getarylen|SV* sv|MAGIC* mg
1636 p       |int    |magic_getdefelem|SV* sv|MAGIC* mg
1637 p       |int    |magic_getglob  |SV* sv|MAGIC* mg
1638 p       |int    |magic_getnkeys |SV* sv|MAGIC* mg
1639 p       |int    |magic_getpack  |SV* sv|MAGIC* mg
1640 p       |int    |magic_getpos   |SV* sv|MAGIC* mg
1641 p       |int    |magic_getsig   |SV* sv|MAGIC* mg
1642 p       |int    |magic_getsubstr|SV* sv|MAGIC* mg
1643 p       |int    |magic_gettaint |SV* sv|MAGIC* mg
1644 p       |int    |magic_getuvar  |SV* sv|MAGIC* mg
1645 p       |int    |magic_getvec   |SV* sv|MAGIC* mg
1646 p       |U32    |magic_len      |SV* sv|MAGIC* mg
1647 #if defined(USE_THREADS)
1648 p       |int    |magic_mutexfree|SV* sv|MAGIC* mg
1649 #endif
1650 p       |int    |magic_nextpack |SV* sv|MAGIC* mg|SV* key
1651 p       |U32    |magic_regdata_cnt|SV* sv|MAGIC* mg
1652 p       |int    |magic_regdatum_get|SV* sv|MAGIC* mg
1653 p       |int    |magic_set      |SV* sv|MAGIC* mg
1654 p       |int    |magic_setamagic|SV* sv|MAGIC* mg
1655 p       |int    |magic_setarylen|SV* sv|MAGIC* mg
1656 p       |int    |magic_setbm    |SV* sv|MAGIC* mg
1657 p       |int    |magic_setdbline|SV* sv|MAGIC* mg
1658 #if defined(USE_LOCALE_COLLATE)
1659 p       |int    |magic_setcollxfrm|SV* sv|MAGIC* mg
1660 #endif
1661 p       |int    |magic_setdefelem|SV* sv|MAGIC* mg
1662 p       |int    |magic_setenv   |SV* sv|MAGIC* mg
1663 p       |int    |magic_setfm    |SV* sv|MAGIC* mg
1664 p       |int    |magic_setisa   |SV* sv|MAGIC* mg
1665 p       |int    |magic_setglob  |SV* sv|MAGIC* mg
1666 p       |int    |magic_setmglob |SV* sv|MAGIC* mg
1667 p       |int    |magic_setnkeys |SV* sv|MAGIC* mg
1668 p       |int    |magic_setpack  |SV* sv|MAGIC* mg
1669 p       |int    |magic_setpos   |SV* sv|MAGIC* mg
1670 p       |int    |magic_setsig   |SV* sv|MAGIC* mg
1671 p       |int    |magic_setsubstr|SV* sv|MAGIC* mg
1672 p       |int    |magic_settaint |SV* sv|MAGIC* mg
1673 p       |int    |magic_setuvar  |SV* sv|MAGIC* mg
1674 p       |int    |magic_setvec   |SV* sv|MAGIC* mg
1675 p       |int    |magic_set_all_env|SV* sv|MAGIC* mg
1676 p       |U32    |magic_sizepack |SV* sv|MAGIC* mg
1677 p       |int    |magic_wipepack |SV* sv|MAGIC* mg
1678 p       |void   |magicname      |char* sym|char* name|I32 namlen
1679 Ap      |void   |markstack_grow
1680 #if defined(USE_LOCALE_COLLATE)
1681 p       |char*  |mem_collxfrm   |const char* s|STRLEN len|STRLEN* xlen
1682 #endif
1683 Afp     |SV*    |mess           |const char* pat|...
1684 Ap      |SV*    |vmess          |const char* pat|va_list* args
1685 p       |void   |qerror         |SV* err
1686 Apd     |int    |mg_clear       |SV* sv
1687 Apd     |int    |mg_copy        |SV* sv|SV* nsv|const char* key|I32 klen
1688 Apd     |MAGIC* |mg_find        |SV* sv|int type
1689 Apd     |int    |mg_free        |SV* sv
1690 Apd     |int    |mg_get         |SV* sv
1691 Apd     |U32    |mg_length      |SV* sv
1692 Apd     |void   |mg_magical     |SV* sv
1693 Apd     |int    |mg_set         |SV* sv
1694 Ap      |I32    |mg_size        |SV* sv
1695 p       |OP*    |mod            |OP* o|I32 type
1696 p       |int    |mode_from_discipline|SV* discp
1697 Ap      |char*  |moreswitches   |char* s
1698 p       |OP*    |my             |OP* o
1699 Ap      |NV     |my_atof        |const char *s
1700 #if !defined(HAS_BCOPY) || !defined(HAS_SAFE_BCOPY)
1701 Anp     |char*  |my_bcopy       |const char* from|char* to|I32 len
1702 #endif
1703 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
1704 Anp     |char*  |my_bzero       |char* loc|I32 len
1705 #endif
1706 Apr     |void   |my_exit        |U32 status
1707 Apr     |void   |my_failure_exit
1708 Ap      |I32    |my_fflush_all
1709 Ap      |I32    |my_lstat
1710 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
1711 Anp     |I32    |my_memcmp      |const char* s1|const char* s2|I32 len
1712 #endif
1713 #if !defined(HAS_MEMSET)
1714 Anp     |void*  |my_memset      |char* loc|I32 ch|I32 len
1715 #endif
1716 #if !defined(PERL_OBJECT)
1717 Ap      |I32    |my_pclose      |PerlIO* ptr
1718 Ap      |PerlIO*|my_popen       |char* cmd|char* mode
1719 #endif
1720 Ap      |void   |my_setenv      |char* nam|char* val
1721 Ap      |I32    |my_stat
1722 #if defined(MYSWAP)
1723 Ap      |short  |my_swap        |short s
1724 Ap      |long   |my_htonl       |long l
1725 Ap      |long   |my_ntohl       |long l
1726 #endif
1727 p       |void   |my_unexec
1728 Ap      |OP*    |newANONLIST    |OP* o
1729 Ap      |OP*    |newANONHASH    |OP* o
1730 Ap      |OP*    |newANONSUB     |I32 floor|OP* proto|OP* block
1731 Ap      |OP*    |newASSIGNOP    |I32 flags|OP* left|I32 optype|OP* right
1732 Ap      |OP*    |newCONDOP      |I32 flags|OP* expr|OP* trueop|OP* falseop
1733 Apd     |void   |newCONSTSUB    |HV* stash|char* name|SV* sv
1734 Ap      |void   |newFORM        |I32 floor|OP* o|OP* block
1735 Ap      |OP*    |newFOROP       |I32 flags|char* label|line_t forline \
1736                                 |OP* sclr|OP* expr|OP*block|OP*cont
1737 Ap      |OP*    |newLOGOP       |I32 optype|I32 flags|OP* left|OP* right
1738 Ap      |OP*    |newLOOPEX      |I32 type|OP* label
1739 Ap      |OP*    |newLOOPOP      |I32 flags|I32 debuggable|OP* expr|OP* block
1740 Ap      |OP*    |newNULLLIST
1741 Ap      |OP*    |newOP          |I32 optype|I32 flags
1742 Ap      |void   |newPROG        |OP* o
1743 Ap      |OP*    |newRANGE       |I32 flags|OP* left|OP* right
1744 Ap      |OP*    |newSLICEOP     |I32 flags|OP* subscript|OP* listop
1745 Ap      |OP*    |newSTATEOP     |I32 flags|char* label|OP* o
1746 Ap      |CV*    |newSUB         |I32 floor|OP* o|OP* proto|OP* block
1747 Apd     |CV*    |newXS          |char* name|XSUBADDR_t f|char* filename
1748 Apd     |AV*    |newAV
1749 Ap      |OP*    |newAVREF       |OP* o
1750 Ap      |OP*    |newBINOP       |I32 type|I32 flags|OP* first|OP* last
1751 Ap      |OP*    |newCVREF       |I32 flags|OP* o
1752 Ap      |OP*    |newGVOP        |I32 type|I32 flags|GV* gv
1753 Ap      |GV*    |newGVgen       |char* pack
1754 Ap      |OP*    |newGVREF       |I32 type|OP* o
1755 Ap      |OP*    |newHVREF       |OP* o
1756 Apd     |HV*    |newHV
1757 Ap      |HV*    |newHVhv        |HV* hv
1758 Ap      |IO*    |newIO
1759 Ap      |OP*    |newLISTOP      |I32 type|I32 flags|OP* first|OP* last
1760 Ap      |OP*    |newPADOP       |I32 type|I32 flags|SV* sv
1761 Ap      |OP*    |newPMOP        |I32 type|I32 flags
1762 Ap      |OP*    |newPVOP        |I32 type|I32 flags|char* pv
1763 Ap      |SV*    |newRV          |SV* pref
1764 Apd     |SV*    |newRV_noinc    |SV *sv
1765 Ap      |SV*    |newSV          |STRLEN len
1766 Ap      |OP*    |newSVREF       |OP* o
1767 Ap      |OP*    |newSVOP        |I32 type|I32 flags|SV* sv
1768 Apd     |SV*    |newSViv        |IV i
1769 Apd     |SV*    |newSVnv        |NV n
1770 Apd     |SV*    |newSVpv        |const char* s|STRLEN len
1771 Apd     |SV*    |newSVpvn       |const char* s|STRLEN len
1772 Afpd    |SV*    |newSVpvf       |const char* pat|...
1773 Ap      |SV*    |vnewSVpvf      |const char* pat|va_list* args
1774 Apd     |SV*    |newSVrv        |SV* rv|const char* classname
1775 Apd     |SV*    |newSVsv        |SV* old
1776 Ap      |OP*    |newUNOP        |I32 type|I32 flags|OP* first
1777 Ap      |OP*    |newWHILEOP     |I32 flags|I32 debuggable|LOOP* loop \
1778                                 |I32 whileline|OP* expr|OP* block|OP* cont
1779
1780 Ap      |PERL_SI*|new_stackinfo|I32 stitems|I32 cxitems
1781 p       |PerlIO*|nextargv       |GV* gv
1782 Ap      |char*  |ninstr         |const char* big|const char* bigend \
1783                                 |const char* little|const char* lend
1784 p       |OP*    |oopsCV         |OP* o
1785 Ap      |void   |op_free        |OP* arg
1786 p       |void   |package        |OP* o
1787 p       |PADOFFSET|pad_alloc    |I32 optype|U32 tmptype
1788 p       |PADOFFSET|pad_allocmy  |char* name
1789 p       |PADOFFSET|pad_findmy   |char* name
1790 p       |OP*    |oopsAV         |OP* o
1791 p       |OP*    |oopsHV         |OP* o
1792 p       |void   |pad_leavemy    |I32 fill
1793 Ap      |SV*    |pad_sv         |PADOFFSET po
1794 p       |void   |pad_free       |PADOFFSET po
1795 p       |void   |pad_reset
1796 p       |void   |pad_swipe      |PADOFFSET po
1797 p       |void   |peep           |OP* o
1798 #if defined(PERL_OBJECT)
1799 Aox     |void   |Perl_construct
1800 Aox     |void   |Perl_destruct
1801 Aox     |void   |Perl_free
1802 Aox     |int    |Perl_run
1803 Aox     |int    |Perl_parse     |XSINIT_t xsinit \
1804                                 |int argc|char** argv|char** env
1805 #endif
1806 #if defined(USE_THREADS)
1807 Ap      |struct perl_thread*    |new_struct_thread|struct perl_thread *t
1808 #endif
1809 Ap      |void   |call_atexit    |ATEXIT_t fn|void *ptr
1810 Apd     |I32    |call_argv      |const char* sub_name|I32 flags|char** argv
1811 Apd     |I32    |call_method    |const char* methname|I32 flags
1812 Apd     |I32    |call_pv        |const char* sub_name|I32 flags
1813 Apd     |I32    |call_sv        |SV* sv|I32 flags
1814 Apd     |SV*    |eval_pv        |const char* p|I32 croak_on_error
1815 Apd     |I32    |eval_sv        |SV* sv|I32 flags
1816 Apd     |SV*    |get_sv         |const char* name|I32 create
1817 Apd     |AV*    |get_av         |const char* name|I32 create
1818 Apd     |HV*    |get_hv         |const char* name|I32 create
1819 Apd     |CV*    |get_cv         |const char* name|I32 create
1820 Ap      |int    |init_i18nl10n  |int printwarn
1821 Ap      |int    |init_i18nl14n  |int printwarn
1822 Ap      |void   |new_collate    |const char* newcoll
1823 Ap      |void   |new_ctype      |const char* newctype
1824 Ap      |void   |new_numeric    |const char* newcoll
1825 Ap      |void   |set_numeric_local
1826 Ap      |void   |set_numeric_radix
1827 Ap      |void   |set_numeric_standard
1828 Apd     |void   |require_pv     |const char* pv
1829 p       |void   |pidgone        |Pid_t pid|int status
1830 Ap      |void   |pmflag         |U16* pmfl|int ch
1831 p       |OP*    |pmruntime      |OP* pm|OP* expr|OP* repl
1832 p       |OP*    |pmtrans        |OP* o|OP* expr|OP* repl
1833 p       |OP*    |pop_return
1834 Ap      |void   |pop_scope
1835 p       |OP*    |prepend_elem   |I32 optype|OP* head|OP* tail
1836 p       |void   |push_return    |OP* o
1837 Ap      |void   |push_scope
1838 p       |OP*    |ref            |OP* o|I32 type
1839 p       |OP*    |refkids        |OP* o|I32 type
1840 Ap      |void   |regdump        |regexp* r
1841 Ap      |I32    |pregexec       |regexp* prog|char* stringarg \
1842                                 |char* strend|char* strbeg|I32 minend \
1843                                 |SV* screamer|U32 nosave
1844 Ap      |void   |pregfree       |struct regexp* r
1845 Ap      |regexp*|pregcomp       |char* exp|char* xend|PMOP* pm
1846 Ap      |char*  |re_intuit_start|regexp* prog|SV* sv|char* strpos \
1847                                 |char* strend|U32 flags \
1848                                 |struct re_scream_pos_data_s *data
1849 Ap      |SV*    |re_intuit_string|regexp* prog
1850 Ap      |I32    |regexec_flags  |regexp* prog|char* stringarg \
1851                                 |char* strend|char* strbeg|I32 minend \
1852                                 |SV* screamer|void* data|U32 flags
1853 Ap      |regnode*|regnext       |regnode* p
1854 p       |void   |regprop        |SV* sv|regnode* o
1855 Ap      |void   |repeatcpy      |char* to|const char* from|I32 len|I32 count
1856 Ap      |char*  |rninstr        |const char* big|const char* bigend \
1857                                 |const char* little|const char* lend
1858 p       |Sighandler_t|rsignal   |int i|Sighandler_t t
1859 p       |int    |rsignal_restore|int i|Sigsave_t* t
1860 p       |int    |rsignal_save   |int i|Sighandler_t t1|Sigsave_t* t2
1861 p       |Sighandler_t|rsignal_state|int i
1862 p       |void   |rxres_free     |void** rsp
1863 p       |void   |rxres_restore  |void** rsp|REGEXP* prx
1864 p       |void   |rxres_save     |void** rsp|REGEXP* prx
1865 #if !defined(HAS_RENAME)
1866 p       |I32    |same_dirent    |char* a|char* b
1867 #endif
1868 Apd     |char*  |savepv         |const char* sv
1869 Apd     |char*  |savepvn        |const char* sv|I32 len
1870 Ap      |void   |savestack_grow
1871 Ap      |void   |save_aelem     |AV* av|I32 idx|SV **sptr
1872 Ap      |I32    |save_alloc     |I32 size|I32 pad
1873 Ap      |void   |save_aptr      |AV** aptr
1874 Ap      |AV*    |save_ary       |GV* gv
1875 Ap      |void   |save_clearsv   |SV** svp
1876 Ap      |void   |save_delete    |HV* hv|char* key|I32 klen
1877 Ap      |void   |save_destructor|DESTRUCTORFUNC_NOCONTEXT_t f|void* p
1878 Ap      |void   |save_destructor_x|DESTRUCTORFUNC_t f|void* p
1879 Ap      |void   |save_freesv    |SV* sv
1880 p       |void   |save_freeop    |OP* o
1881 Ap      |void   |save_freepv    |char* pv
1882 Ap      |void   |save_generic_svref|SV** sptr
1883 Ap      |void   |save_gp        |GV* gv|I32 empty
1884 Ap      |HV*    |save_hash      |GV* gv
1885 Ap      |void   |save_helem     |HV* hv|SV *key|SV **sptr
1886 Ap      |void   |save_hints
1887 Ap      |void   |save_hptr      |HV** hptr
1888 Ap      |void   |save_I16       |I16* intp
1889 Ap      |void   |save_I32       |I32* intp
1890 Ap      |void   |save_I8        |I8* bytep
1891 Ap      |void   |save_int       |int* intp
1892 Ap      |void   |save_item      |SV* item
1893 Ap      |void   |save_iv        |IV* iv
1894 Ap      |void   |save_list      |SV** sarg|I32 maxsarg
1895 Ap      |void   |save_long      |long* longp
1896 Ap      |void   |save_nogv      |GV* gv
1897 p       |void   |save_op
1898 Ap      |SV*    |save_scalar    |GV* gv
1899 Ap      |void   |save_pptr      |char** pptr
1900 Ap      |void   |save_vptr      |void* pptr
1901 Ap      |void   |save_re_context
1902 Ap      |void   |save_sptr      |SV** sptr
1903 Ap      |SV*    |save_svref     |SV** sptr
1904 Ap      |SV**   |save_threadsv  |PADOFFSET i
1905 p       |OP*    |sawparens      |OP* o
1906 p       |OP*    |scalar         |OP* o
1907 p       |OP*    |scalarkids     |OP* o
1908 p       |OP*    |scalarseq      |OP* o
1909 p       |OP*    |scalarvoid     |OP* o
1910 Ap      |NV     |scan_bin       |char* start|I32 len|I32* retlen
1911 Ap      |NV     |scan_hex       |char* start|I32 len|I32* retlen
1912 Ap      |char*  |scan_num       |char* s
1913 Ap      |NV     |scan_oct       |char* start|I32 len|I32* retlen
1914 p       |OP*    |scope          |OP* o
1915 Ap      |char*  |screaminstr    |SV* bigsv|SV* littlesv|I32 start_shift \
1916                                 |I32 end_shift|I32 *state|I32 last
1917 #if !defined(VMS)
1918 p       |I32    |setenv_getix   |char* nam
1919 #endif
1920 p       |void   |setdefout      |GV* gv
1921 Ap      |char*  |sharepvn       |const char* sv|I32 len|U32 hash
1922 p       |HEK*   |share_hek      |const char* sv|I32 len|U32 hash
1923 np      |Signal_t |sighandler   |int sig
1924 Ap      |SV**   |stack_grow     |SV** sp|SV**p|int n
1925 Ap      |I32    |start_subparse |I32 is_format|U32 flags
1926 p       |void   |sub_crush_depth|CV* cv
1927 Ap      |bool   |sv_2bool       |SV* sv
1928 Ap      |CV*    |sv_2cv         |SV* sv|HV** st|GV** gvp|I32 lref
1929 Ap      |IO*    |sv_2io         |SV* sv
1930 Ap      |IV     |sv_2iv         |SV* sv
1931 Apd     |SV*    |sv_2mortal     |SV* sv
1932 Ap      |NV     |sv_2nv         |SV* sv
1933 Ap      |char*  |sv_2pv         |SV* sv|STRLEN* lp
1934 Ap      |char*  |sv_2pvutf8     |SV* sv|STRLEN* lp
1935 Ap      |char*  |sv_2pvbyte     |SV* sv|STRLEN* lp
1936 Ap      |UV     |sv_2uv         |SV* sv
1937 Ap      |IV     |sv_iv          |SV* sv
1938 Ap      |UV     |sv_uv          |SV* sv
1939 Ap      |NV     |sv_nv          |SV* sv
1940 Ap      |char*  |sv_pvn         |SV *sv|STRLEN *len
1941 Ap      |char*  |sv_pvutf8n     |SV *sv|STRLEN *len
1942 Ap      |char*  |sv_pvbyten     |SV *sv|STRLEN *len
1943 Ap      |I32    |sv_true        |SV *sv
1944 p       |void   |sv_add_arena   |char* ptr|U32 size|U32 flags
1945 Ap      |int    |sv_backoff     |SV* sv
1946 Apd     |SV*    |sv_bless       |SV* sv|HV* stash
1947 Afpd    |void   |sv_catpvf      |SV* sv|const char* pat|...
1948 Ap      |void   |sv_vcatpvf     |SV* sv|const char* pat|va_list* args
1949 Apd     |void   |sv_catpv       |SV* sv|const char* ptr
1950 Apd     |void   |sv_catpvn      |SV* sv|const char* ptr|STRLEN len
1951 Apd     |void   |sv_catsv       |SV* dsv|SV* ssv
1952 Apd     |void   |sv_chop        |SV* sv|char* ptr
1953 p       |void   |sv_clean_all
1954 p       |void   |sv_clean_objs
1955 Ap      |void   |sv_clear       |SV* sv
1956 Apd     |I32    |sv_cmp         |SV* sv1|SV* sv2
1957 Ap      |I32    |sv_cmp_locale  |SV* sv1|SV* sv2
1958 #if defined(USE_LOCALE_COLLATE)
1959 Ap      |char*  |sv_collxfrm    |SV* sv|STRLEN* nxp
1960 #endif
1961 Ap      |OP*    |sv_compile_2op |SV* sv|OP** startp|char* code|AV** avp
1962 Apd     |void   |sv_dec         |SV* sv
1963 Ap      |void   |sv_dump        |SV* sv
1964 Apd     |bool   |sv_derived_from|SV* sv|const char* name
1965 Apd     |I32    |sv_eq          |SV* sv1|SV* sv2
1966 Ap      |void   |sv_free        |SV* sv
1967 p       |void   |sv_free_arenas
1968 Ap      |char*  |sv_gets        |SV* sv|PerlIO* fp|I32 append
1969 Apd     |char*  |sv_grow        |SV* sv|STRLEN newlen
1970 Apd     |void   |sv_inc         |SV* sv
1971 Apd     |void   |sv_insert      |SV* bigsv|STRLEN offset|STRLEN len \
1972                                 |char* little|STRLEN littlelen
1973 Apd     |int    |sv_isa         |SV* sv|const char* name
1974 Apd     |int    |sv_isobject    |SV* sv
1975 Apd     |STRLEN |sv_len         |SV* sv
1976 Ap      |STRLEN |sv_len_utf8    |SV* sv
1977 Apd     |void   |sv_magic       |SV* sv|SV* obj|int how|const char* name \
1978                                 |I32 namlen
1979 Apd     |SV*    |sv_mortalcopy  |SV* oldsv
1980 Apd     |SV*    |sv_newmortal
1981 Ap      |SV*    |sv_newref      |SV* sv
1982 Ap      |char*  |sv_peek        |SV* sv
1983 Ap      |void   |sv_pos_u2b     |SV* sv|I32* offsetp|I32* lenp
1984 Ap      |void   |sv_pos_b2u     |SV* sv|I32* offsetp
1985 Ap      |char*  |sv_pvn_force   |SV* sv|STRLEN* lp
1986 Ap      |char*  |sv_pvutf8n_force|SV* sv|STRLEN* lp
1987 Ap      |char*  |sv_pvbyten_force|SV* sv|STRLEN* lp
1988 Ap      |char*  |sv_reftype     |SV* sv|int ob
1989 Ap      |void   |sv_replace     |SV* sv|SV* nsv
1990 Ap      |void   |sv_report_used
1991 Ap      |void   |sv_reset       |char* s|HV* stash
1992 Afpd    |void   |sv_setpvf      |SV* sv|const char* pat|...
1993 Ap      |void   |sv_vsetpvf     |SV* sv|const char* pat|va_list* args
1994 Apd     |void   |sv_setiv       |SV* sv|IV num
1995 Apd     |void   |sv_setpviv     |SV* sv|IV num
1996 Apd     |void   |sv_setuv       |SV* sv|UV num
1997 Apd     |void   |sv_setnv       |SV* sv|NV num
1998 Apd     |SV*    |sv_setref_iv   |SV* rv|const char* classname|IV iv
1999 Apd     |SV*    |sv_setref_nv   |SV* rv|const char* classname|NV nv
2000 Apd     |SV*    |sv_setref_pv   |SV* rv|const char* classname|void* pv
2001 Apd     |SV*    |sv_setref_pvn  |SV* rv|const char* classname|char* pv \
2002                                 |STRLEN n
2003 Apd     |void   |sv_setpv       |SV* sv|const char* ptr
2004 Apd     |void   |sv_setpvn      |SV* sv|const char* ptr|STRLEN len
2005 Apd     |void   |sv_setsv       |SV* dsv|SV* ssv
2006 Ap      |void   |sv_taint       |SV* sv
2007 Ap      |bool   |sv_tainted     |SV* sv
2008 Ap      |int    |sv_unmagic     |SV* sv|int type
2009 Apd     |void   |sv_unref       |SV* sv
2010 Ap      |void   |sv_untaint     |SV* sv
2011 Apd     |bool   |sv_upgrade     |SV* sv|U32 mt
2012 Apd     |void   |sv_usepvn      |SV* sv|char* ptr|STRLEN len
2013 Apd     |void   |sv_vcatpvfn    |SV* sv|const char* pat|STRLEN patlen \
2014                                 |va_list* args|SV** svargs|I32 svmax \
2015                                 |bool *maybe_tainted
2016 Apd     |void   |sv_vsetpvfn    |SV* sv|const char* pat|STRLEN patlen \
2017                                 |va_list* args|SV** svargs|I32 svmax \
2018                                 |bool *maybe_tainted
2019 Ap      |NV     |str_to_version |SV *sv
2020 Ap      |SV*    |swash_init     |char* pkg|char* name|SV* listsv \
2021                                 |I32 minbits|I32 none
2022 Ap      |UV     |swash_fetch    |SV *sv|U8 *ptr
2023 Ap      |void   |taint_env
2024 Ap      |void   |taint_proper   |const char* f|const char* s
2025 Ap      |UV     |to_utf8_lower  |U8 *p
2026 Ap      |UV     |to_utf8_upper  |U8 *p
2027 Ap      |UV     |to_utf8_title  |U8 *p
2028 #if defined(UNLINK_ALL_VERSIONS)
2029 Ap      |I32    |unlnk          |char* f
2030 #endif
2031 #if defined(USE_THREADS)
2032 Ap      |void   |unlock_condpair|void* svv
2033 #endif
2034 Ap      |void   |unsharepvn     |const char* sv|I32 len|U32 hash
2035 p       |void   |unshare_hek    |HEK* hek
2036 p       |void   |utilize        |int aver|I32 floor|OP* version|OP* id|OP* arg
2037 Ap      |U8*    |utf16_to_utf8  |U16* p|U8 *d|I32 bytelen
2038 Ap      |U8*    |utf16_to_utf8_reversed|U16* p|U8 *d|I32 bytelen
2039 Ap      |I32    |utf8_distance  |U8 *a|U8 *b
2040 Ap      |U8*    |utf8_hop       |U8 *s|I32 off
2041 Ap      |UV     |utf8_to_uv     |U8 *s|I32* retlen
2042 Ap      |U8*    |uv_to_utf8     |U8 *d|UV uv
2043 p       |void   |vivify_defelem |SV* sv
2044 p       |void   |vivify_ref     |SV* sv|U32 to_what
2045 p       |I32    |wait4pid       |Pid_t pid|int* statusp|int flags
2046 p       |void   |report_closed_fh|GV *gv|IO *io|const char *func|const char *obj
2047 p       |void   |report_uninit
2048 Afpd    |void   |warn           |const char* pat|...
2049 Ap      |void   |vwarn          |const char* pat|va_list* args
2050 Afp     |void   |warner         |U32 err|const char* pat|...
2051 Ap      |void   |vwarner        |U32 err|const char* pat|va_list* args
2052 p       |void   |watch          |char** addr
2053 p       |I32    |whichsig       |char* sig
2054 p       |int    |yyerror        |char* s
2055 #if defined(USE_PURE_BISON)
2056 p       |int    |yylex          |YYSTYPE *lvalp|int *lcharp
2057 #else
2058 p       |int    |yylex
2059 #endif
2060 p       |int    |yyparse
2061 p       |int    |yywarn         |char* s
2062 #if defined(MYMALLOC)
2063 Ap      |void   |dump_mstats    |char* s
2064 Ap      |int    |get_mstats     |perl_mstats_t *buf|int buflen|int level
2065 #endif
2066 Anp     |Malloc_t|safesysmalloc |MEM_SIZE nbytes
2067 Anp     |Malloc_t|safesyscalloc |MEM_SIZE elements|MEM_SIZE size
2068 Anp     |Malloc_t|safesysrealloc|Malloc_t where|MEM_SIZE nbytes
2069 Anp     |Free_t |safesysfree    |Malloc_t where
2070 #if defined(LEAKTEST)
2071 Anp     |Malloc_t|safexmalloc   |I32 x|MEM_SIZE size
2072 Anp     |Malloc_t|safexcalloc   |I32 x|MEM_SIZE elements|MEM_SIZE size
2073 Anp     |Malloc_t|safexrealloc  |Malloc_t where|MEM_SIZE size
2074 Anp     |void   |safexfree      |Malloc_t where
2075 #endif
2076 #if defined(PERL_GLOBAL_STRUCT)
2077 Ap      |struct perl_vars *|GetVars
2078 #endif
2079 Ap      |int    |runops_standard
2080 Ap      |int    |runops_debug
2081 Afpd    |void   |sv_catpvf_mg   |SV *sv|const char* pat|...
2082 Ap      |void   |sv_vcatpvf_mg  |SV* sv|const char* pat|va_list* args
2083 Apd     |void   |sv_catpv_mg    |SV *sv|const char *ptr
2084 Apd     |void   |sv_catpvn_mg   |SV *sv|const char *ptr|STRLEN len
2085 Apd     |void   |sv_catsv_mg    |SV *dstr|SV *sstr
2086 Afpd    |void   |sv_setpvf_mg   |SV *sv|const char* pat|...
2087 Ap      |void   |sv_vsetpvf_mg  |SV* sv|const char* pat|va_list* args
2088 Apd     |void   |sv_setiv_mg    |SV *sv|IV i
2089 Apd     |void   |sv_setpviv_mg  |SV *sv|IV iv
2090 Apd     |void   |sv_setuv_mg    |SV *sv|UV u
2091 Apd     |void   |sv_setnv_mg    |SV *sv|NV num
2092 Apd     |void   |sv_setpv_mg    |SV *sv|const char *ptr
2093 Apd     |void   |sv_setpvn_mg   |SV *sv|const char *ptr|STRLEN len
2094 Apd     |void   |sv_setsv_mg    |SV *dstr|SV *sstr
2095 Apd     |void   |sv_usepvn_mg   |SV *sv|char *ptr|STRLEN len
2096 Ap      |MGVTBL*|get_vtbl       |int vtbl_id
2097 p       |char*  |pv_display     |SV *sv|char *pv|STRLEN cur|STRLEN len \
2098                                 |STRLEN pvlim
2099 Afp     |void   |dump_indent    |I32 level|PerlIO *file|const char* pat|...
2100 Ap      |void   |dump_vindent   |I32 level|PerlIO *file|const char* pat \
2101                                 |va_list *args
2102 Ap      |void   |do_gv_dump     |I32 level|PerlIO *file|char *name|GV *sv
2103 Ap      |void   |do_gvgv_dump   |I32 level|PerlIO *file|char *name|GV *sv
2104 Ap      |void   |do_hv_dump     |I32 level|PerlIO *file|char *name|HV *sv
2105 Ap      |void   |do_magic_dump  |I32 level|PerlIO *file|MAGIC *mg|I32 nest \
2106                                 |I32 maxnest|bool dumpops|STRLEN pvlim
2107 Ap      |void   |do_op_dump     |I32 level|PerlIO *file|OP *o
2108 Ap      |void   |do_pmop_dump   |I32 level|PerlIO *file|PMOP *pm
2109 Ap      |void   |do_sv_dump     |I32 level|PerlIO *file|SV *sv|I32 nest \
2110                                 |I32 maxnest|bool dumpops|STRLEN pvlim
2111 Ap      |void   |magic_dump     |MAGIC *mg
2112 #if defined(PERL_FLEXIBLE_EXCEPTIONS)
2113 Ap      |void*  |default_protect|volatile JMPENV *je|int *excpt \
2114                                 |protect_body_t body|...
2115 Ap      |void*  |vdefault_protect|volatile JMPENV *je|int *excpt \
2116                                 |protect_body_t body|va_list *args
2117 #endif
2118 Ap      |void   |reginitcolors
2119 Ap      |char*  |sv_2pv_nolen   |SV* sv
2120 Ap      |char*  |sv_2pvutf8_nolen|SV* sv
2121 Ap      |char*  |sv_2pvbyte_nolen|SV* sv
2122 Ap      |char*  |sv_pv          |SV *sv
2123 Ap      |char*  |sv_pvutf8      |SV *sv
2124 Ap      |char*  |sv_pvbyte      |SV *sv
2125 Ap      |void   |sv_utf8_upgrade|SV *sv
2126 Ap      |bool   |sv_utf8_downgrade|SV *sv|bool fail_ok
2127 Ap      |void   |sv_utf8_encode |SV *sv
2128 Ap      |bool   |sv_utf8_decode |SV *sv
2129 Ap      |void   |sv_force_normal|SV *sv
2130 Ap      |void   |tmps_grow      |I32 n
2131 Ap      |SV*    |sv_rvweaken    |SV *sv
2132 p       |int    |magic_killbackrefs|SV *sv|MAGIC *mg
2133 Ap      |OP*    |newANONATTRSUB |I32 floor|OP *proto|OP *attrs|OP *block
2134 Ap      |CV*    |newATTRSUB     |I32 floor|OP *o|OP *proto|OP *attrs|OP *block
2135 Ap      |void   |newMYSUB       |I32 floor|OP *o|OP *proto|OP *attrs|OP *block
2136 p       |OP *   |my_attrs       |OP *o|OP *attrs
2137 p       |void   |boot_core_xsutils
2138 #if defined(USE_ITHREADS)
2139 Ap      |PERL_CONTEXT*|cx_dup   |PERL_CONTEXT* cx|I32 ix|I32 max
2140 Ap      |PERL_SI*|si_dup        |PERL_SI* si
2141 Ap      |ANY*   |ss_dup         |PerlInterpreter* proto_perl
2142 Ap      |void*  |any_dup        |void* v|PerlInterpreter* proto_perl
2143 Ap      |HE*    |he_dup         |HE* e|bool shared
2144 Ap      |REGEXP*|re_dup         |REGEXP* r
2145 Ap      |PerlIO*|fp_dup         |PerlIO* fp|char type
2146 Ap      |DIR*   |dirp_dup       |DIR* dp
2147 Ap      |GP*    |gp_dup         |GP* gp
2148 Ap      |MAGIC* |mg_dup         |MAGIC* mg
2149 Ap      |SV*    |sv_dup         |SV* sstr
2150 #if defined(HAVE_INTERP_INTERN)
2151 Ap      |void   |sys_intern_dup |struct interp_intern* src \
2152                                 |struct interp_intern* dst
2153 #endif
2154 Ap      |PTR_TBL_t*|ptr_table_new
2155 Ap      |void*  |ptr_table_fetch|PTR_TBL_t *tbl|void *sv
2156 Ap      |void   |ptr_table_store|PTR_TBL_t *tbl|void *oldsv|void *newsv
2157 Ap      |void   |ptr_table_split|PTR_TBL_t *tbl
2158 #endif
2159
2160 #if defined(PERL_OBJECT)
2161 protected:
2162 #else
2163 END_EXTERN_C
2164 #endif
2165
2166 #if defined(PERL_IN_AV_C) || defined(PERL_DECL_PROT)
2167 s       |I32    |avhv_index_sv  |SV* sv
2168 s       |I32    |avhv_index     |AV* av|SV* sv|U32 hash
2169 #endif
2170
2171 #if defined(PERL_IN_DOOP_C) || defined(PERL_DECL_PROT)
2172 s       |I32    |do_trans_CC_simple     |SV *sv
2173 s       |I32    |do_trans_CC_count      |SV *sv
2174 s       |I32    |do_trans_CC_complex    |SV *sv
2175 s       |I32    |do_trans_UU_simple     |SV *sv
2176 s       |I32    |do_trans_UU_count      |SV *sv
2177 s       |I32    |do_trans_UU_complex    |SV *sv
2178 s       |I32    |do_trans_UC_simple     |SV *sv
2179 s       |I32    |do_trans_CU_simple     |SV *sv
2180 s       |I32    |do_trans_UC_trivial    |SV *sv
2181 s       |I32    |do_trans_CU_trivial    |SV *sv
2182 #endif
2183
2184 #if defined(PERL_IN_GV_C) || defined(PERL_DECL_PROT)
2185 s       |void   |gv_init_sv     |GV *gv|I32 sv_type
2186 #endif
2187
2188 #if defined(PERL_IN_HV_C) || defined(PERL_DECL_PROT)
2189 s       |void   |hsplit         |HV *hv
2190 s       |void   |hfreeentries   |HV *hv
2191 s       |void   |more_he
2192 s       |HE*    |new_he
2193 s       |void   |del_he         |HE *p
2194 s       |HEK*   |save_hek       |const char *str|I32 len|U32 hash
2195 s       |void   |hv_magic_check |HV *hv|bool *needs_copy|bool *needs_store
2196 #endif
2197
2198 #if defined(PERL_IN_MG_C) || defined(PERL_DECL_PROT)
2199 s       |void   |save_magic     |I32 mgs_ix|SV *sv
2200 s       |int    |magic_methpack |SV *sv|MAGIC *mg|char *meth
2201 s       |int    |magic_methcall |SV *sv|MAGIC *mg|char *meth|I32 f \
2202                                 |int n|SV *val
2203 #endif
2204
2205 #if defined(PERL_IN_OP_C) || defined(PERL_DECL_PROT)
2206 s       |I32    |list_assignment|OP *o
2207 s       |void   |bad_type       |I32 n|char *t|char *name|OP *kid
2208 s       |void   |cop_free       |COP *cop
2209 s       |OP*    |modkids        |OP *o|I32 type
2210 s       |void   |no_bareword_allowed|OP *o
2211 s       |OP*    |no_fh_allowed  |OP *o
2212 s       |OP*    |scalarboolean  |OP *o
2213 s       |OP*    |too_few_arguments|OP *o|char* name
2214 s       |OP*    |too_many_arguments|OP *o|char* name
2215 s       |void   |op_clear       |OP* o
2216 s       |void   |null           |OP* o
2217 s       |PADOFFSET|pad_addlex   |SV* name
2218 s       |PADOFFSET|pad_findlex  |char* name|PADOFFSET newoff|U32 seq \
2219                                 |CV* startcv|I32 cx_ix|I32 saweval|U32 flags
2220 s       |OP*    |newDEFSVOP
2221 s       |OP*    |new_logop      |I32 type|I32 flags|OP **firstp|OP **otherp
2222 s       |void   |simplify_sort  |OP *o
2223 s       |bool   |is_handle_constructor  |OP *o|I32 argnum
2224 s       |char*  |gv_ename       |GV *gv
2225 s       |void   |cv_dump        |CV *cv
2226 s       |CV*    |cv_clone2      |CV *proto|CV *outside
2227 s       |bool   |scalar_mod_type|OP *o|I32 type
2228 s       |OP *   |my_kid         |OP *o|OP *attrs
2229 s       |OP *   |dup_attrlist   |OP *o
2230 s       |void   |apply_attrs    |HV *stash|SV *target|OP *attrs
2231 #  if defined(PL_OP_SLAB_ALLOC)
2232 s       |void*  |Slab_Alloc     |int m|size_t sz
2233 #  endif
2234 #endif
2235
2236 #if defined(PERL_IN_PERL_C) || defined(PERL_DECL_PROT)
2237 s       |void   |find_beginning
2238 s       |void   |forbid_setid   |char *
2239 s       |void   |incpush        |char *|int|int
2240 s       |void   |init_interp
2241 s       |void   |init_ids
2242 s       |void   |init_lexer
2243 s       |void   |init_main_stash
2244 s       |void   |init_perllib
2245 s       |void   |init_postdump_symbols|int|char **|char **
2246 s       |void   |init_predump_symbols
2247 rs      |void   |my_exit_jump
2248 s       |void   |nuke_stacks
2249 s       |void   |open_script    |char *|bool|SV *|int *fd
2250 s       |void   |usage          |char *
2251 s       |void   |validate_suid  |char *|char*|int
2252 #  if defined(IAMSUID)
2253 s       |int    |fd_on_nosuid_fs|int fd
2254 #  endif
2255 s       |void*  |parse_body     |char **env|XSINIT_t xsinit
2256 s       |void*  |run_body       |I32 oldscope
2257 s       |void   |call_body      |OP *myop|int is_eval
2258 s       |void*  |call_list_body |CV *cv
2259 #if defined(PERL_FLEXIBLE_EXCEPTIONS)
2260 s       |void*  |vparse_body    |va_list args
2261 s       |void*  |vrun_body      |va_list args
2262 s       |void*  |vcall_body     |va_list args
2263 s       |void*  |vcall_list_body|va_list args
2264 #endif
2265 #  if defined(USE_THREADS)
2266 s       |struct perl_thread *   |init_main_thread
2267 #  endif
2268 #endif
2269
2270 #if defined(PERL_IN_PP_C) || defined(PERL_DECL_PROT)
2271 s       |void   |doencodes      |SV* sv|char* s|I32 len
2272 s       |SV*    |refto          |SV* sv
2273 s       |U32    |seed
2274 s       |SV*    |mul128         |SV *sv|U8 m
2275 s       |SV*    |is_an_int      |char *s|STRLEN l
2276 s       |int    |div128         |SV *pnum|bool *done
2277 #endif
2278
2279 #if defined(PERL_IN_PP_CTL_C) || defined(PERL_DECL_PROT)
2280 s       |OP*    |docatch        |OP *o
2281 s       |void*  |docatch_body
2282 #if defined(PERL_FLEXIBLE_EXCEPTIONS)
2283 s       |void*  |vdocatch_body  |va_list args
2284 #endif
2285 s       |OP*    |dofindlabel    |OP *o|char *label|OP **opstack|OP **oplimit
2286 s       |void   |doparseform    |SV *sv
2287 s       |I32    |dopoptoeval    |I32 startingblock
2288 s       |I32    |dopoptolabel   |char *label
2289 s       |I32    |dopoptoloop    |I32 startingblock
2290 s       |I32    |dopoptosub     |I32 startingblock
2291 s       |I32    |dopoptosub_at  |PERL_CONTEXT* cxstk|I32 startingblock
2292 s       |void   |free_closures
2293 s       |void   |save_lines     |AV *array|SV *sv
2294 s       |OP*    |doeval         |int gimme|OP** startop
2295 s       |PerlIO *|doopen_pmc    |const char *name|const char *mode
2296 s       |void   |qsortsv        |SV ** array|size_t num_elts|SVCOMPARE_t f
2297 #endif
2298
2299 #if defined(PERL_IN_PP_HOT_C) || defined(PERL_DECL_PROT)
2300 s       |int    |do_maybe_phash |AV *ary|SV **lelem|SV **firstlelem \
2301                                 |SV **relem|SV **lastrelem
2302 s       |void   |do_oddball     |HV *hash|SV **relem|SV **firstrelem
2303 s       |CV*    |get_db_sub     |SV **svp|CV *cv
2304 s       |SV*    |method_common  |SV* meth|U32* hashp
2305 #endif
2306
2307 #if defined(PERL_IN_PP_SYS_C) || defined(PERL_DECL_PROT)
2308 s       |OP*    |doform         |CV *cv|GV *gv|OP *retop
2309 s       |int    |emulate_eaccess|const char* path|Mode_t mode
2310 #  if !defined(HAS_MKDIR) || !defined(HAS_RMDIR)
2311 s       |int    |dooneliner     |char *cmd|char *filename
2312 #  endif
2313 #endif
2314
2315 #if defined(PERL_IN_REGCOMP_C) || defined(PERL_DECL_PROT)
2316 s       |regnode*|reg           |I32|I32 *
2317 s       |regnode*|reganode      |U8|U32
2318 s       |regnode*|regatom       |I32 *
2319 s       |regnode*|regbranch     |I32 *|I32
2320 s       |void   |reguni         |UV|char *|I32*
2321 s       |regnode*|regclass
2322 s       |regnode*|regclassutf8
2323 s       |I32    |regcurly       |char *
2324 s       |regnode*|reg_node      |U8
2325 s       |regnode*|regpiece      |I32 *
2326 s       |void   |reginsert      |U8|regnode *
2327 s       |void   |regoptail      |regnode *|regnode *
2328 s       |void   |regtail        |regnode *|regnode *
2329 s       |char*|regwhite |char *|char *
2330 s       |char*|nextchar
2331 s       |regnode*|dumpuntil     |regnode *start|regnode *node \
2332                                 |regnode *last|SV* sv|I32 l
2333 s       |void   |put_byte       |SV* sv|int c
2334 s       |void   |scan_commit    |struct scan_data_t *data
2335 s       |void   |cl_anything    |struct regnode_charclass_class *cl
2336 s       |int    |cl_is_anything |struct regnode_charclass_class *cl
2337 s       |void   |cl_init        |struct regnode_charclass_class *cl
2338 s       |void   |cl_init_zero   |struct regnode_charclass_class *cl
2339 s       |void   |cl_and         |struct regnode_charclass_class *cl \
2340                                 |struct regnode_charclass_class *and_with
2341 s       |void   |cl_or          |struct regnode_charclass_class *cl \
2342                                 |struct regnode_charclass_class *or_with
2343 s       |I32    |study_chunk    |regnode **scanp|I32 *deltap \
2344                                 |regnode *last|struct scan_data_t *data \
2345                                 |U32 flags
2346 s       |I32    |add_data       |I32 n|char *s
2347 rs      |void|re_croak2 |const char* pat1|const char* pat2|...
2348 s       |I32    |regpposixcc    |I32 value
2349 s       |void   |checkposixcc
2350 #endif
2351
2352 #if defined(PERL_IN_REGEXEC_C) || defined(PERL_DECL_PROT)
2353 s       |I32    |regmatch       |regnode *prog
2354 s       |I32    |regrepeat      |regnode *p|I32 max
2355 s       |I32    |regrepeat_hard |regnode *p|I32 max|I32 *lp
2356 s       |I32    |regtry         |regexp *prog|char *startpos
2357 s       |bool   |reginclass     |regnode *p|I32 c
2358 s       |bool   |reginclassutf8 |regnode *f|U8* p
2359 s       |CHECKPOINT|regcppush   |I32 parenfloor
2360 s       |char*|regcppop
2361 s       |char*|regcp_set_to     |I32 ss
2362 s       |void   |cache_re       |regexp *prog
2363 s       |U8*    |reghop         |U8 *pos|I32 off
2364 s       |U8*    |reghopmaybe    |U8 *pos|I32 off
2365 s       |char*  |find_byclass   |regexp * prog|regnode *c|char *s|char *strend|char *startpos|I32 norun
2366 #endif
2367
2368 #if defined(PERL_IN_RUN_C) || defined(PERL_DECL_PROT)
2369 s       |void   |debprof        |OP *o
2370 #endif
2371
2372 #if defined(PERL_IN_SCOPE_C) || defined(PERL_DECL_PROT)
2373 s       |SV*    |save_scalar_at |SV **sptr
2374 #endif
2375
2376 #if defined(PERL_IN_SV_C) || defined(PERL_DECL_PROT)
2377 s       |IV     |asIV           |SV* sv
2378 s       |UV     |asUV           |SV* sv
2379 s       |SV*    |more_sv
2380 s       |void   |more_xiv
2381 s       |void   |more_xnv
2382 s       |void   |more_xpv
2383 s       |void   |more_xpviv
2384 s       |void   |more_xpvnv
2385 s       |void   |more_xpvcv
2386 s       |void   |more_xpvav
2387 s       |void   |more_xpvhv
2388 s       |void   |more_xpvmg
2389 s       |void   |more_xpvlv
2390 s       |void   |more_xpvbm
2391 s       |void   |more_xrv
2392 s       |XPVIV* |new_xiv
2393 s       |XPVNV* |new_xnv
2394 s       |XPV*   |new_xpv
2395 s       |XPVIV* |new_xpviv
2396 s       |XPVNV* |new_xpvnv
2397 s       |XPVCV* |new_xpvcv
2398 s       |XPVAV* |new_xpvav
2399 s       |XPVHV* |new_xpvhv
2400 s       |XPVMG* |new_xpvmg
2401 s       |XPVLV* |new_xpvlv
2402 s       |XPVBM* |new_xpvbm
2403 s       |XRV*   |new_xrv
2404 s       |void   |del_xiv        |XPVIV* p
2405 s       |void   |del_xnv        |XPVNV* p
2406 s       |void   |del_xpv        |XPV* p
2407 s       |void   |del_xpviv      |XPVIV* p
2408 s       |void   |del_xpvnv      |XPVNV* p
2409 s       |void   |del_xpvcv      |XPVCV* p
2410 s       |void   |del_xpvav      |XPVAV* p
2411 s       |void   |del_xpvhv      |XPVHV* p
2412 s       |void   |del_xpvmg      |XPVMG* p
2413 s       |void   |del_xpvlv      |XPVLV* p
2414 s       |void   |del_xpvbm      |XPVBM* p
2415 s       |void   |del_xrv        |XRV* p
2416 s       |void   |sv_unglob      |SV* sv
2417 s       |void   |not_a_number   |SV *sv
2418 s       |void   |visit          |SVFUNC_t f
2419 s       |void   |sv_add_backref |SV *tsv|SV *sv
2420 s       |void   |sv_del_backref |SV *sv
2421 #  if defined(DEBUGGING)
2422 s       |void   |del_sv |SV *p
2423 #  endif
2424 #endif
2425
2426 #if defined(PERL_IN_TOKE_C) || defined(PERL_DECL_PROT)
2427 s       |void   |check_uni
2428 s       |void   |force_next     |I32 type
2429 s       |char*  |force_version  |char *start
2430 s       |char*  |force_word     |char *start|int token|int check_keyword \
2431                                 |int allow_pack|int allow_tick
2432 s       |SV*    |tokeq          |SV *sv
2433 s       |char*  |scan_const     |char *start
2434 s       |char*  |scan_formline  |char *s
2435 s       |char*  |scan_heredoc   |char *s
2436 s       |char*  |scan_ident     |char *s|char *send|char *dest \
2437                                 |STRLEN destlen|I32 ck_uni
2438 s       |char*  |scan_inputsymbol|char *start
2439 s       |char*  |scan_pat       |char *start|I32 type
2440 s       |char*  |scan_str       |char *start|int keep_quoted|int keep_delims
2441 s       |char*  |scan_subst     |char *start
2442 s       |char*  |scan_trans     |char *start
2443 s       |char*  |scan_word      |char *s|char *dest|STRLEN destlen \
2444                                 |int allow_package|STRLEN *slp
2445 s       |char*  |skipspace      |char *s
2446 s       |void   |checkcomma     |char *s|char *name|char *what
2447 s       |void   |force_ident    |char *s|int kind
2448 s       |void   |incline        |char *s
2449 s       |int    |intuit_method  |char *s|GV *gv
2450 s       |int    |intuit_more    |char *s
2451 s       |I32    |lop            |I32 f|int x|char *s
2452 s       |void   |missingterm    |char *s
2453 s       |void   |no_op          |char *what|char *s
2454 s       |void   |set_csh
2455 s       |I32    |sublex_done
2456 s       |I32    |sublex_push
2457 s       |I32    |sublex_start
2458 s       |char * |filter_gets    |SV *sv|PerlIO *fp|STRLEN append
2459 s       |SV*    |new_constant   |char *s|STRLEN len|const char *key|SV *sv \
2460                                 |SV *pv|const char *type
2461 s       |int    |ao             |int toketype
2462 s       |void   |depcom
2463 s       |char*  |incl_perldb
2464 #if 0
2465 s       |I32    |utf16_textfilter|int idx|SV *sv|int maxlen
2466 s       |I32    |utf16rev_textfilter|int idx|SV *sv|int maxlen
2467 #endif
2468 #  if defined(CRIPPLED_CC)
2469 s       |int    |uni            |I32 f|char *s
2470 #  endif
2471 #  if defined(PERL_CR_FILTER)
2472 s       |I32    |cr_textfilter  |int idx|SV *sv|int maxlen
2473 #  endif
2474 #endif
2475
2476 #if defined(PERL_IN_UNIVERSAL_C) || defined(PERL_DECL_PROT)
2477 s       |SV*|isa_lookup |HV *stash|const char *name|int len|int level
2478 #endif
2479
2480 #if defined(PERL_IN_UTIL_C) || defined(PERL_DECL_PROT)
2481 s       |SV*    |mess_alloc
2482 #  if defined(LEAKTEST)
2483 s       |void   |xstat          |int
2484 #  endif
2485 #endif
2486
2487 #if defined(PERL_OBJECT)
2488 };
2489 #endif