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