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