0b61bf00c572b8c129c5bbc9bbad6f911b63073c
[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 p       |void   |atfork_lock
1403 p       |void   |atfork_unlock
1404 Ap      |SV*    |avhv_delete_ent|AV *ar|SV* keysv|I32 flags|U32 hash
1405 Ap      |bool   |avhv_exists_ent|AV *ar|SV* keysv|U32 hash
1406 Ap      |SV**   |avhv_fetch_ent |AV *ar|SV* keysv|I32 lval|U32 hash
1407 Ap      |SV**   |avhv_store_ent |AV *ar|SV* keysv|SV* val|U32 hash
1408 Ap      |HE*    |avhv_iternext  |AV *ar
1409 Ap      |SV*    |avhv_iterval   |AV *ar|HE* entry
1410 Ap      |HV*    |avhv_keys      |AV *ar
1411 Apd     |void   |av_clear       |AV* ar
1412 Apd     |SV*    |av_delete      |AV* ar|I32 key|I32 flags
1413 Apd     |bool   |av_exists      |AV* ar|I32 key
1414 Apd     |void   |av_extend      |AV* ar|I32 key
1415 p       |AV*    |av_fake        |I32 size|SV** svp
1416 Apd     |SV**   |av_fetch       |AV* ar|I32 key|I32 lval
1417 Apd     |void   |av_fill        |AV* ar|I32 fill
1418 Apd     |I32    |av_len         |AV* ar
1419 Apd     |AV*    |av_make        |I32 size|SV** svp
1420 Apd     |SV*    |av_pop         |AV* ar
1421 Apd     |void   |av_push        |AV* ar|SV* val
1422 p       |void   |av_reify       |AV* ar
1423 Apd     |SV*    |av_shift       |AV* ar
1424 Apd     |SV**   |av_store       |AV* ar|I32 key|SV* val
1425 Apd     |void   |av_undef       |AV* ar
1426 Apd     |void   |av_unshift     |AV* ar|I32 num
1427 p       |OP*    |bind_match     |I32 type|OP* left|OP* pat
1428 p       |OP*    |block_end      |I32 floor|OP* seq
1429 Ap      |I32    |block_gimme
1430 p       |int    |block_start    |int full
1431 p       |void   |boot_core_UNIVERSAL
1432 p       |void   |boot_core_PerlIO
1433 Ap      |void   |call_list      |I32 oldscope|AV* av_list
1434 p       |bool   |cando          |Mode_t mode|Uid_t effective|Stat_t* statbufp
1435 Ap      |U32    |cast_ulong     |NV f
1436 Ap      |I32    |cast_i32       |NV f
1437 Ap      |IV     |cast_iv        |NV f
1438 Ap      |UV     |cast_uv        |NV f
1439 #if !defined(HAS_TRUNCATE) && !defined(HAS_CHSIZE) && defined(F_FREESP)
1440 Ap      |I32    |my_chsize      |int fd|Off_t length
1441 #endif
1442 #if defined(USE_THREADS)
1443 Ap      |MAGIC* |condpair_magic |SV *sv
1444 #endif
1445 p       |OP*    |convert        |I32 optype|I32 flags|OP* o
1446 Afprd   |void   |croak          |const char* pat|...
1447 Apr     |void   |vcroak         |const char* pat|va_list* args
1448 #if defined(PERL_IMPLICIT_CONTEXT)
1449 Afnrp   |void   |croak_nocontext|const char* pat|...
1450 Afnp    |OP*    |die_nocontext  |const char* pat|...
1451 Afnp    |void   |deb_nocontext  |const char* pat|...
1452 Afnp    |char*  |form_nocontext |const char* pat|...
1453 Anp     |void   |load_module_nocontext|U32 flags|SV* name|SV* ver|...
1454 Afnp    |SV*    |mess_nocontext |const char* pat|...
1455 Afnp    |void   |warn_nocontext |const char* pat|...
1456 Afnp    |void   |warner_nocontext|U32 err|const char* pat|...
1457 Afnp    |SV*    |newSVpvf_nocontext|const char* pat|...
1458 Afnp    |void   |sv_catpvf_nocontext|SV* sv|const char* pat|...
1459 Afnp    |void   |sv_setpvf_nocontext|SV* sv|const char* pat|...
1460 Afnp    |void   |sv_catpvf_mg_nocontext|SV* sv|const char* pat|...
1461 Afnp    |void   |sv_setpvf_mg_nocontext|SV* sv|const char* pat|...
1462 Afnp    |int    |fprintf_nocontext|PerlIO* stream|const char* fmt|...
1463 Afnp    |int    |printf_nocontext|const char* fmt|...
1464 #endif
1465 p       |void   |cv_ckproto     |CV* cv|GV* gv|char* p
1466 p       |CV*    |cv_clone       |CV* proto
1467 Apd     |SV*    |cv_const_sv    |CV* cv
1468 p       |SV*    |op_const_sv    |OP* o|CV* cv
1469 Ap      |void   |cv_undef       |CV* cv
1470 Ap      |void   |cx_dump        |PERL_CONTEXT* cs
1471 Ap      |SV*    |filter_add     |filter_t funcp|SV* datasv
1472 Ap      |void   |filter_del     |filter_t funcp
1473 Ap      |I32    |filter_read    |int idx|SV* buffer|int maxlen
1474 Ap      |char** |get_op_descs
1475 Ap      |char** |get_op_names
1476 p       |char*  |get_no_modify
1477 p       |U32*   |get_opargs
1478 Ap      |PPADDR_t*|get_ppaddr
1479 p       |I32    |cxinc
1480 Afp     |void   |deb            |const char* pat|...
1481 Ap      |void   |vdeb           |const char* pat|va_list* args
1482 Ap      |void   |debprofdump
1483 Ap      |I32    |debop          |OP* o
1484 Ap      |I32    |debstack
1485 Ap      |I32    |debstackptrs
1486 Ap      |char*  |delimcpy       |char* to|char* toend|char* from \
1487                                 |char* fromend|int delim|I32* retlen
1488 p       |void   |deprecate      |char* s
1489 Afp     |OP*    |die            |const char* pat|...
1490 p       |OP*    |vdie           |const char* pat|va_list* args
1491 p       |OP*    |die_where      |char* message|STRLEN msglen
1492 Ap      |void   |dounwind       |I32 cxix
1493 p       |bool   |do_aexec       |SV* really|SV** mark|SV** sp
1494 p       |bool   |do_aexec5      |SV* really|SV** mark|SV** sp|int fd|int flag
1495 Ap      |int    |do_binmode     |PerlIO *fp|int iotype|int mode
1496 p       |void   |do_chop        |SV* asv|SV* sv
1497 Ap      |bool   |do_close       |GV* gv|bool not_implicit
1498 p       |bool   |do_eof         |GV* gv
1499 p       |bool   |do_exec        |char* cmd
1500 #if !defined(WIN32)
1501 p       |bool   |do_exec3       |char* cmd|int fd|int flag
1502 #endif
1503 p       |void   |do_execfree
1504 #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
1505 p       |I32    |do_ipcctl      |I32 optype|SV** mark|SV** sp
1506 p       |I32    |do_ipcget      |I32 optype|SV** mark|SV** sp
1507 p       |I32    |do_msgrcv      |SV** mark|SV** sp
1508 p       |I32    |do_msgsnd      |SV** mark|SV** sp
1509 p       |I32    |do_semop       |SV** mark|SV** sp
1510 p       |I32    |do_shmio       |I32 optype|SV** mark|SV** sp
1511 #endif
1512 Ap      |void   |do_join        |SV* sv|SV* del|SV** mark|SV** sp
1513 p       |OP*    |do_kv
1514 Ap      |bool   |do_open        |GV* gv|char* name|I32 len|int as_raw \
1515                                 |int rawmode|int rawperm|PerlIO* supplied_fp
1516 Ap      |bool   |do_open9       |GV *gv|char *name|I32 len|int as_raw \
1517                                 |int rawmode|int rawperm|PerlIO *supplied_fp \
1518                                 |SV *svs|I32 num
1519 Ap      |bool   |do_openn       |GV *gv|char *name|I32 len|int as_raw \
1520                                 |int rawmode|int rawperm|PerlIO *supplied_fp \
1521                                 |SV **svp|I32 num
1522 p       |void   |do_pipe        |SV* sv|GV* rgv|GV* wgv
1523 p       |bool   |do_print       |SV* sv|PerlIO* fp
1524 p       |OP*    |do_readline
1525 p       |I32    |do_chomp       |SV* sv
1526 p       |bool   |do_seek        |GV* gv|Off_t pos|int whence
1527 p       |void   |do_sprintf     |SV* sv|I32 len|SV** sarg
1528 p       |Off_t  |do_sysseek     |GV* gv|Off_t pos|int whence
1529 p       |Off_t  |do_tell        |GV* gv
1530 p       |I32    |do_trans       |SV* sv
1531 p       |UV     |do_vecget      |SV* sv|I32 offset|I32 size
1532 p       |void   |do_vecset      |SV* sv
1533 p       |void   |do_vop         |I32 optype|SV* sv|SV* left|SV* right
1534 p       |OP*    |dofile         |OP* term
1535 Ap      |I32    |dowantarray
1536 Ap      |void   |dump_all
1537 Ap      |void   |dump_eval
1538 #if defined(DUMP_FDS)
1539 Ap      |void   |dump_fds       |char* s
1540 #endif
1541 Ap      |void   |dump_form      |GV* gv
1542 Ap      |void   |gv_dump        |GV* gv
1543 Ap      |void   |op_dump        |OP* arg
1544 Ap      |void   |pmop_dump      |PMOP* pm
1545 Ap      |void   |dump_packsubs  |HV* stash
1546 Ap      |void   |dump_sub       |GV* gv
1547 Apd     |void   |fbm_compile    |SV* sv|U32 flags
1548 Apd     |char*  |fbm_instr      |unsigned char* big|unsigned char* bigend \
1549                                 |SV* littlesv|U32 flags
1550 p       |char*  |find_script    |char *scriptname|bool dosearch \
1551                                 |char **search_ext|I32 flags
1552 #if defined(USE_THREADS)
1553 p       |PADOFFSET|find_threadsv|const char *name
1554 #endif
1555 p       |OP*    |force_list     |OP* arg
1556 p       |OP*    |fold_constants |OP* arg
1557 Afp     |char*  |form           |const char* pat|...
1558 Ap      |char*  |vform          |const char* pat|va_list* args
1559 Ap      |void   |free_tmps
1560 p       |OP*    |gen_constant_list|OP* o
1561 #if !defined(HAS_GETENV_LEN)
1562 p       |char*  |getenv_len     |const char* key|unsigned long *len
1563 #endif
1564 Ap      |void   |gp_free        |GV* gv
1565 Ap      |GP*    |gp_ref         |GP* gp
1566 Ap      |GV*    |gv_AVadd       |GV* gv
1567 Ap      |GV*    |gv_HVadd       |GV* gv
1568 Ap      |GV*    |gv_IOadd       |GV* gv
1569 Ap      |GV*    |gv_autoload4   |HV* stash|const char* name|STRLEN len \
1570                                 |I32 method
1571 Ap      |void   |gv_check       |HV* stash
1572 Ap      |void   |gv_efullname   |SV* sv|GV* gv
1573 Ap      |void   |gv_efullname3  |SV* sv|GV* gv|const char* prefix
1574 Ap      |void   |gv_efullname4  |SV* sv|GV* gv|const char* prefix|bool keepmain
1575 Ap      |GV*    |gv_fetchfile   |const char* name
1576 Apd     |GV*    |gv_fetchmeth   |HV* stash|const char* name|STRLEN len \
1577                                 |I32 level
1578 Apd     |GV*    |gv_fetchmethod |HV* stash|const char* name
1579 Apd     |GV*    |gv_fetchmethod_autoload|HV* stash|const char* name \
1580                                 |I32 autoload
1581 Ap      |GV*    |gv_fetchpv     |const char* name|I32 add|I32 sv_type
1582 Ap      |void   |gv_fullname    |SV* sv|GV* gv
1583 Ap      |void   |gv_fullname3   |SV* sv|GV* gv|const char* prefix
1584 Ap      |void   |gv_fullname4   |SV* sv|GV* gv|const char* prefix|bool keepmain
1585 Ap      |void   |gv_init        |GV* gv|HV* stash|const char* name \
1586                                 |STRLEN len|int multi
1587 Apd     |HV*    |gv_stashpv     |const char* name|I32 create
1588 Ap      |HV*    |gv_stashpvn    |const char* name|U32 namelen|I32 create
1589 Apd     |HV*    |gv_stashsv     |SV* sv|I32 create
1590 Apd     |void   |hv_clear       |HV* tb
1591 Ap      |void   |hv_delayfree_ent|HV* hv|HE* entry
1592 Apd     |SV*    |hv_delete      |HV* tb|const char* key|I32 klen|I32 flags
1593 Apd     |SV*    |hv_delete_ent  |HV* tb|SV* key|I32 flags|U32 hash
1594 Apd     |bool   |hv_exists      |HV* tb|const char* key|I32 klen
1595 Apd     |bool   |hv_exists_ent  |HV* tb|SV* key|U32 hash
1596 Apd     |SV**   |hv_fetch       |HV* tb|const char* key|I32 klen|I32 lval
1597 Apd     |HE*    |hv_fetch_ent   |HV* tb|SV* key|I32 lval|U32 hash
1598 Ap      |void   |hv_free_ent    |HV* hv|HE* entry
1599 Apd     |I32    |hv_iterinit    |HV* tb
1600 Apd     |char*  |hv_iterkey     |HE* entry|I32* retlen
1601 Apd     |SV*    |hv_iterkeysv   |HE* entry
1602 Apd     |HE*    |hv_iternext    |HV* tb
1603 Apd     |SV*    |hv_iternextsv  |HV* hv|char** key|I32* retlen
1604 Apd     |SV*    |hv_iterval     |HV* tb|HE* entry
1605 Ap      |void   |hv_ksplit      |HV* hv|IV newmax
1606 Apd     |void   |hv_magic       |HV* hv|GV* gv|int how
1607 Apd     |SV**   |hv_store       |HV* tb|const char* key|I32 klen|SV* val \
1608                                 |U32 hash
1609 Apd     |HE*    |hv_store_ent   |HV* tb|SV* key|SV* val|U32 hash
1610 Apd     |void   |hv_undef       |HV* tb
1611 Ap      |I32    |ibcmp          |const char* a|const char* b|I32 len
1612 Ap      |I32    |ibcmp_locale   |const char* a|const char* b|I32 len
1613 p       |bool   |ingroup        |Gid_t testgid|Uid_t effective
1614 p       |void   |init_debugger
1615 Ap      |void   |init_stacks
1616 Ap      |void   |init_tm        |struct tm *ptm
1617 p       |U32    |intro_my
1618 Ap      |char*  |instr          |const char* big|const char* little
1619 p       |bool   |io_close       |IO* io|bool not_implicit
1620 p       |OP*    |invert         |OP* cmd
1621 dp      |bool   |is_gv_magical  |char *name|STRLEN len|U32 flags
1622 p       |I32    |is_lvalue_sub
1623 Ap      |bool   |is_uni_alnum   |U32 c
1624 Ap      |bool   |is_uni_alnumc  |U32 c
1625 Ap      |bool   |is_uni_idfirst |U32 c
1626 Ap      |bool   |is_uni_alpha   |U32 c
1627 Ap      |bool   |is_uni_ascii   |U32 c
1628 Ap      |bool   |is_uni_space   |U32 c
1629 Ap      |bool   |is_uni_cntrl   |U32 c
1630 Ap      |bool   |is_uni_graph   |U32 c
1631 Ap      |bool   |is_uni_digit   |U32 c
1632 Ap      |bool   |is_uni_upper   |U32 c
1633 Ap      |bool   |is_uni_lower   |U32 c
1634 Ap      |bool   |is_uni_print   |U32 c
1635 Ap      |bool   |is_uni_punct   |U32 c
1636 Ap      |bool   |is_uni_xdigit  |U32 c
1637 Ap      |U32    |to_uni_upper   |U32 c
1638 Ap      |U32    |to_uni_title   |U32 c
1639 Ap      |U32    |to_uni_lower   |U32 c
1640 Ap      |bool   |is_uni_alnum_lc|U32 c
1641 Ap      |bool   |is_uni_alnumc_lc|U32 c
1642 Ap      |bool   |is_uni_idfirst_lc|U32 c
1643 Ap      |bool   |is_uni_alpha_lc|U32 c
1644 Ap      |bool   |is_uni_ascii_lc|U32 c
1645 Ap      |bool   |is_uni_space_lc|U32 c
1646 Ap      |bool   |is_uni_cntrl_lc|U32 c
1647 Ap      |bool   |is_uni_graph_lc|U32 c
1648 Ap      |bool   |is_uni_digit_lc|U32 c
1649 Ap      |bool   |is_uni_upper_lc|U32 c
1650 Ap      |bool   |is_uni_lower_lc|U32 c
1651 Ap      |bool   |is_uni_print_lc|U32 c
1652 Ap      |bool   |is_uni_punct_lc|U32 c
1653 Ap      |bool   |is_uni_xdigit_lc|U32 c
1654 Ap      |U32    |to_uni_upper_lc|U32 c
1655 Ap      |U32    |to_uni_title_lc|U32 c
1656 Ap      |U32    |to_uni_lower_lc|U32 c
1657 Apd     |STRLEN |is_utf8_char   |U8 *p
1658 Apd     |bool   |is_utf8_string |U8 *s|STRLEN len
1659 Ap      |bool   |is_utf8_alnum  |U8 *p
1660 Ap      |bool   |is_utf8_alnumc |U8 *p
1661 Ap      |bool   |is_utf8_idfirst|U8 *p
1662 Ap      |bool   |is_utf8_alpha  |U8 *p
1663 Ap      |bool   |is_utf8_ascii  |U8 *p
1664 Ap      |bool   |is_utf8_space  |U8 *p
1665 Ap      |bool   |is_utf8_cntrl  |U8 *p
1666 Ap      |bool   |is_utf8_digit  |U8 *p
1667 Ap      |bool   |is_utf8_graph  |U8 *p
1668 Ap      |bool   |is_utf8_upper  |U8 *p
1669 Ap      |bool   |is_utf8_lower  |U8 *p
1670 Ap      |bool   |is_utf8_print  |U8 *p
1671 Ap      |bool   |is_utf8_punct  |U8 *p
1672 Ap      |bool   |is_utf8_xdigit |U8 *p
1673 Ap      |bool   |is_utf8_mark   |U8 *p
1674 p       |OP*    |jmaybe         |OP* arg
1675 p       |I32    |keyword        |char* d|I32 len
1676 Ap      |void   |leave_scope    |I32 base
1677 p       |void   |lex_end
1678 p       |void   |lex_start      |SV* line
1679 Ap |void   |op_null    |OP* o
1680 p       |void   |op_clear       |OP* o
1681 p       |OP*    |linklist       |OP* o
1682 p       |OP*    |list           |OP* o
1683 p       |OP*    |listkids       |OP* o
1684 Apd     |void   |load_module|U32 flags|SV* name|SV* ver|...
1685 Ap      |void   |vload_module|U32 flags|SV* name|SV* ver|va_list* args
1686 p       |OP*    |localize       |OP* arg|I32 lexical
1687 Apd     |I32    |looks_like_number|SV* sv
1688 Apd     |int    |grok_number    |const char *pv|STRLEN len|UV *valuep
1689 Apd     |bool   |grok_numeric_radix|const char **sp|const char *send
1690 p       |int    |magic_clearenv |SV* sv|MAGIC* mg
1691 p       |int    |magic_clear_all_env|SV* sv|MAGIC* mg
1692 p       |int    |magic_clearpack|SV* sv|MAGIC* mg
1693 p       |int    |magic_clearsig |SV* sv|MAGIC* mg
1694 p       |int    |magic_existspack|SV* sv|MAGIC* mg
1695 p       |int    |magic_freeregexp|SV* sv|MAGIC* mg
1696 p       |int    |magic_freeovrld|SV* sv|MAGIC* mg
1697 p       |int    |magic_get      |SV* sv|MAGIC* mg
1698 p       |int    |magic_getarylen|SV* sv|MAGIC* mg
1699 p       |int    |magic_getdefelem|SV* sv|MAGIC* mg
1700 p       |int    |magic_getglob  |SV* sv|MAGIC* mg
1701 p       |int    |magic_getnkeys |SV* sv|MAGIC* mg
1702 p       |int    |magic_getpack  |SV* sv|MAGIC* mg
1703 p       |int    |magic_getpos   |SV* sv|MAGIC* mg
1704 p       |int    |magic_getsig   |SV* sv|MAGIC* mg
1705 p       |int    |magic_getsubstr|SV* sv|MAGIC* mg
1706 p       |int    |magic_gettaint |SV* sv|MAGIC* mg
1707 p       |int    |magic_getuvar  |SV* sv|MAGIC* mg
1708 p       |int    |magic_getvec   |SV* sv|MAGIC* mg
1709 p       |U32    |magic_len      |SV* sv|MAGIC* mg
1710 #if defined(USE_THREADS)
1711 p       |int    |magic_mutexfree|SV* sv|MAGIC* mg
1712 #endif
1713 p       |int    |magic_nextpack |SV* sv|MAGIC* mg|SV* key
1714 p       |U32    |magic_regdata_cnt|SV* sv|MAGIC* mg
1715 p       |int    |magic_regdatum_get|SV* sv|MAGIC* mg
1716 p       |int    |magic_regdatum_set|SV* sv|MAGIC* mg
1717 p       |int    |magic_set      |SV* sv|MAGIC* mg
1718 p       |int    |magic_setamagic|SV* sv|MAGIC* mg
1719 p       |int    |magic_setarylen|SV* sv|MAGIC* mg
1720 p       |int    |magic_setbm    |SV* sv|MAGIC* mg
1721 p       |int    |magic_setdbline|SV* sv|MAGIC* mg
1722 #if defined(USE_LOCALE_COLLATE)
1723 p       |int    |magic_setcollxfrm|SV* sv|MAGIC* mg
1724 #endif
1725 p       |int    |magic_setdefelem|SV* sv|MAGIC* mg
1726 p       |int    |magic_setenv   |SV* sv|MAGIC* mg
1727 p       |int    |magic_setfm    |SV* sv|MAGIC* mg
1728 p       |int    |magic_setisa   |SV* sv|MAGIC* mg
1729 p       |int    |magic_setglob  |SV* sv|MAGIC* mg
1730 p       |int    |magic_setmglob |SV* sv|MAGIC* mg
1731 p       |int    |magic_setnkeys |SV* sv|MAGIC* mg
1732 p       |int    |magic_setpack  |SV* sv|MAGIC* mg
1733 p       |int    |magic_setpos   |SV* sv|MAGIC* mg
1734 p       |int    |magic_setsig   |SV* sv|MAGIC* mg
1735 p       |int    |magic_setsubstr|SV* sv|MAGIC* mg
1736 p       |int    |magic_settaint |SV* sv|MAGIC* mg
1737 p       |int    |magic_setuvar  |SV* sv|MAGIC* mg
1738 p       |int    |magic_setvec   |SV* sv|MAGIC* mg
1739 p       |int    |magic_set_all_env|SV* sv|MAGIC* mg
1740 p       |U32    |magic_sizepack |SV* sv|MAGIC* mg
1741 p       |int    |magic_wipepack |SV* sv|MAGIC* mg
1742 p       |void   |magicname      |char* sym|char* name|I32 namlen
1743 Ap      |void   |markstack_grow
1744 #if defined(USE_LOCALE_COLLATE)
1745 p       |char*  |mem_collxfrm   |const char* s|STRLEN len|STRLEN* xlen
1746 #endif
1747 Afp     |SV*    |mess           |const char* pat|...
1748 Ap      |SV*    |vmess          |const char* pat|va_list* args
1749 p       |void   |qerror         |SV* err
1750 Apd     |int    |mg_clear       |SV* sv
1751 Apd     |int    |mg_copy        |SV* sv|SV* nsv|const char* key|I32 klen
1752 Apd     |MAGIC* |mg_find        |SV* sv|int type
1753 Apd     |int    |mg_free        |SV* sv
1754 Apd     |int    |mg_get         |SV* sv
1755 Apd     |U32    |mg_length      |SV* sv
1756 Apd     |void   |mg_magical     |SV* sv
1757 Apd     |int    |mg_set         |SV* sv
1758 Ap      |I32    |mg_size        |SV* sv
1759 Ap      |void   |mini_mktime    |struct tm *pm
1760 p       |OP*    |mod            |OP* o|I32 type
1761 p       |int    |mode_from_discipline|SV* discp
1762 Ap      |char*  |moreswitches   |char* s
1763 p       |OP*    |my             |OP* o
1764 Ap      |NV     |my_atof        |const char *s
1765 #if (!defined(HAS_MEMCPY) && !defined(HAS_BCOPY)) || (!defined(HAS_MEMMOVE) && !defined(HAS_SAFE_MEMCPY) && !defined(HAS_SAFE_BCOPY))
1766 Anp     |char*  |my_bcopy       |const char* from|char* to|I32 len
1767 #endif
1768 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
1769 Anp     |char*  |my_bzero       |char* loc|I32 len
1770 #endif
1771 Apr     |void   |my_exit        |U32 status
1772 Apr     |void   |my_failure_exit
1773 Ap      |I32    |my_fflush_all
1774 Ap      |I32    |my_lstat
1775 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
1776 Anp     |I32    |my_memcmp      |const char* s1|const char* s2|I32 len
1777 #endif
1778 #if !defined(HAS_MEMSET)
1779 Anp     |void*  |my_memset      |char* loc|I32 ch|I32 len
1780 #endif
1781 #if !defined(PERL_OBJECT)
1782 Ap      |I32    |my_pclose      |PerlIO* ptr
1783 Ap      |PerlIO*|my_popen       |char* cmd|char* mode
1784 Ap      |PerlIO*|my_popen_list  |char* mode|int n|SV ** args
1785 #endif
1786 Ap      |void   |my_setenv      |char* nam|char* val
1787 Ap      |I32    |my_stat
1788 Ap      |char * |my_strftime    |char *fmt|int sec|int min|int hour|int mday|int mon|int year|int wday|int yday|int isdst
1789 #if defined(MYSWAP)
1790 Ap      |short  |my_swap        |short s
1791 Ap      |long   |my_htonl       |long l
1792 Ap      |long   |my_ntohl       |long l
1793 #endif
1794 p       |void   |my_unexec
1795 Ap      |OP*    |newANONLIST    |OP* o
1796 Ap      |OP*    |newANONHASH    |OP* o
1797 Ap      |OP*    |newANONSUB     |I32 floor|OP* proto|OP* block
1798 Ap      |OP*    |newASSIGNOP    |I32 flags|OP* left|I32 optype|OP* right
1799 Ap      |OP*    |newCONDOP      |I32 flags|OP* expr|OP* trueop|OP* falseop
1800 Apd     |CV*    |newCONSTSUB    |HV* stash|char* name|SV* sv
1801 Ap      |void   |newFORM        |I32 floor|OP* o|OP* block
1802 Ap      |OP*    |newFOROP       |I32 flags|char* label|line_t forline \
1803                                 |OP* sclr|OP* expr|OP*block|OP*cont
1804 Ap      |OP*    |newLOGOP       |I32 optype|I32 flags|OP* left|OP* right
1805 Ap      |OP*    |newLOOPEX      |I32 type|OP* label
1806 Ap      |OP*    |newLOOPOP      |I32 flags|I32 debuggable|OP* expr|OP* block
1807 Ap      |OP*    |newNULLLIST
1808 Ap      |OP*    |newOP          |I32 optype|I32 flags
1809 Ap      |void   |newPROG        |OP* o
1810 Ap      |OP*    |newRANGE       |I32 flags|OP* left|OP* right
1811 Ap      |OP*    |newSLICEOP     |I32 flags|OP* subscript|OP* listop
1812 Ap      |OP*    |newSTATEOP     |I32 flags|char* label|OP* o
1813 Ap      |CV*    |newSUB         |I32 floor|OP* o|OP* proto|OP* block
1814 Apd     |CV*    |newXS          |char* name|XSUBADDR_t f|char* filename
1815 Apd     |AV*    |newAV
1816 Ap      |OP*    |newAVREF       |OP* o
1817 Ap      |OP*    |newBINOP       |I32 type|I32 flags|OP* first|OP* last
1818 Ap      |OP*    |newCVREF       |I32 flags|OP* o
1819 Ap      |OP*    |newGVOP        |I32 type|I32 flags|GV* gv
1820 Ap      |GV*    |newGVgen       |char* pack
1821 Ap      |OP*    |newGVREF       |I32 type|OP* o
1822 Ap      |OP*    |newHVREF       |OP* o
1823 Apd     |HV*    |newHV
1824 Ap      |HV*    |newHVhv        |HV* hv
1825 Ap      |IO*    |newIO
1826 Ap      |OP*    |newLISTOP      |I32 type|I32 flags|OP* first|OP* last
1827 Ap      |OP*    |newPADOP       |I32 type|I32 flags|SV* sv
1828 Ap      |OP*    |newPMOP        |I32 type|I32 flags
1829 Ap      |OP*    |newPVOP        |I32 type|I32 flags|char* pv
1830 Ap      |SV*    |newRV          |SV* pref
1831 Apd     |SV*    |newRV_noinc    |SV *sv
1832 Apd     |SV*    |newSV          |STRLEN len
1833 Ap      |OP*    |newSVREF       |OP* o
1834 Ap      |OP*    |newSVOP        |I32 type|I32 flags|SV* sv
1835 Apd     |SV*    |newSViv        |IV i
1836 Apd     |SV*    |newSVuv        |UV u
1837 Apd     |SV*    |newSVnv        |NV n
1838 Apd     |SV*    |newSVpv        |const char* s|STRLEN len
1839 Apd     |SV*    |newSVpvn       |const char* s|STRLEN len
1840 Apd     |SV*    |newSVpvn_share |const char* s|I32 len|U32 hash
1841 Afpd    |SV*    |newSVpvf       |const char* pat|...
1842 Ap      |SV*    |vnewSVpvf      |const char* pat|va_list* args
1843 Apd     |SV*    |newSVrv        |SV* rv|const char* classname
1844 Apd     |SV*    |newSVsv        |SV* old
1845 Ap      |OP*    |newUNOP        |I32 type|I32 flags|OP* first
1846 Ap      |OP*    |newWHILEOP     |I32 flags|I32 debuggable|LOOP* loop \
1847                                 |I32 whileline|OP* expr|OP* block|OP* cont
1848
1849 Ap      |PERL_SI*|new_stackinfo|I32 stitems|I32 cxitems
1850 p       |PerlIO*|nextargv       |GV* gv
1851 Ap      |char*  |ninstr         |const char* big|const char* bigend \
1852                                 |const char* little|const char* lend
1853 p       |OP*    |oopsCV         |OP* o
1854 Ap      |void   |op_free        |OP* arg
1855 p       |void   |package        |OP* o
1856 p       |PADOFFSET|pad_alloc    |I32 optype|U32 tmptype
1857 p       |PADOFFSET|pad_allocmy  |char* name
1858 p       |PADOFFSET|pad_findmy   |char* name
1859 p       |OP*    |oopsAV         |OP* o
1860 p       |OP*    |oopsHV         |OP* o
1861 p       |void   |pad_leavemy    |I32 fill
1862 Ap      |SV*    |pad_sv         |PADOFFSET po
1863 p       |void   |pad_free       |PADOFFSET po
1864 p       |void   |pad_reset
1865 p       |void   |pad_swipe      |PADOFFSET po
1866 p       |void   |peep           |OP* o
1867 dopM    |PerlIO*|start_glob     |SV* pattern|IO *io
1868 #if defined(PERL_OBJECT)
1869 Aox     |void   |Perl_construct
1870 Aox     |void   |Perl_destruct
1871 Aox     |void   |Perl_free
1872 Aox     |int    |Perl_run
1873 Aox     |int    |Perl_parse     |XSINIT_t xsinit \
1874                                 |int argc|char** argv|char** env
1875 #endif
1876 #if defined(USE_THREADS)
1877 Ap      |struct perl_thread*    |new_struct_thread|struct perl_thread *t
1878 #endif
1879 Ap      |void   |call_atexit    |ATEXIT_t fn|void *ptr
1880 Apd     |I32    |call_argv      |const char* sub_name|I32 flags|char** argv
1881 Apd     |I32    |call_method    |const char* methname|I32 flags
1882 Apd     |I32    |call_pv        |const char* sub_name|I32 flags
1883 Apd     |I32    |call_sv        |SV* sv|I32 flags
1884 p       |void   |despatch_signals
1885 Apd     |SV*    |eval_pv        |const char* p|I32 croak_on_error
1886 Apd     |I32    |eval_sv        |SV* sv|I32 flags
1887 Apd     |SV*    |get_sv         |const char* name|I32 create
1888 Apd     |AV*    |get_av         |const char* name|I32 create
1889 Apd     |HV*    |get_hv         |const char* name|I32 create
1890 Apd     |CV*    |get_cv         |const char* name|I32 create
1891 Ap      |int    |init_i18nl10n  |int printwarn
1892 Ap      |int    |init_i18nl14n  |int printwarn
1893 Ap      |void   |new_collate    |char* newcoll
1894 Ap      |void   |new_ctype      |char* newctype
1895 Ap      |void   |new_numeric    |char* newcoll
1896 Ap      |void   |set_numeric_local
1897 Ap      |void   |set_numeric_radix
1898 Ap      |void   |set_numeric_standard
1899 Apd     |void   |require_pv     |const char* pv
1900 p       |void   |pidgone        |Pid_t pid|int status
1901 Ap      |void   |pmflag         |U16* pmfl|int ch
1902 p       |OP*    |pmruntime      |OP* pm|OP* expr|OP* repl
1903 p       |OP*    |pmtrans        |OP* o|OP* expr|OP* repl
1904 p       |OP*    |pop_return
1905 Ap      |void   |pop_scope
1906 p       |OP*    |prepend_elem   |I32 optype|OP* head|OP* tail
1907 p       |void   |push_return    |OP* o
1908 Ap      |void   |push_scope
1909 p       |OP*    |ref            |OP* o|I32 type
1910 p       |OP*    |refkids        |OP* o|I32 type
1911 Ap      |void   |regdump        |regexp* r
1912 Ap      |SV*    |regclass_swash |struct regnode *n|bool doinit|SV **initsvp
1913 Ap      |I32    |pregexec       |regexp* prog|char* stringarg \
1914                                 |char* strend|char* strbeg|I32 minend \
1915                                 |SV* screamer|U32 nosave
1916 Ap      |void   |pregfree       |struct regexp* r
1917 Ap      |regexp*|pregcomp       |char* exp|char* xend|PMOP* pm
1918 Ap      |char*  |re_intuit_start|regexp* prog|SV* sv|char* strpos \
1919                                 |char* strend|U32 flags \
1920                                 |struct re_scream_pos_data_s *data
1921 Ap      |SV*    |re_intuit_string|regexp* prog
1922 Ap      |I32    |regexec_flags  |regexp* prog|char* stringarg \
1923                                 |char* strend|char* strbeg|I32 minend \
1924                                 |SV* screamer|void* data|U32 flags
1925 Ap      |regnode*|regnext       |regnode* p
1926 p       |void   |regprop        |SV* sv|regnode* o
1927 Ap      |void   |repeatcpy      |char* to|const char* from|I32 len|I32 count
1928 Ap      |char*  |rninstr        |const char* big|const char* bigend \
1929                                 |const char* little|const char* lend
1930 Ap      |Sighandler_t|rsignal   |int i|Sighandler_t t
1931 p       |int    |rsignal_restore|int i|Sigsave_t* t
1932 p       |int    |rsignal_save   |int i|Sighandler_t t1|Sigsave_t* t2
1933 Ap      |Sighandler_t|rsignal_state|int i
1934 p       |void   |rxres_free     |void** rsp
1935 p       |void   |rxres_restore  |void** rsp|REGEXP* prx
1936 p       |void   |rxres_save     |void** rsp|REGEXP* prx
1937 #if !defined(HAS_RENAME)
1938 p       |I32    |same_dirent    |char* a|char* b
1939 #endif
1940 Apd     |char*  |savepv         |const char* sv
1941 Apd     |char*  |savepvn        |const char* sv|I32 len
1942 Ap      |void   |savestack_grow
1943 Ap      |void   |save_aelem     |AV* av|I32 idx|SV **sptr
1944 Ap      |I32    |save_alloc     |I32 size|I32 pad
1945 Ap      |void   |save_aptr      |AV** aptr
1946 Ap      |AV*    |save_ary       |GV* gv
1947 Ap      |void   |save_clearsv   |SV** svp
1948 Ap      |void   |save_delete    |HV* hv|char* key|I32 klen
1949 Ap      |void   |save_destructor|DESTRUCTORFUNC_NOCONTEXT_t f|void* p
1950 Ap      |void   |save_destructor_x|DESTRUCTORFUNC_t f|void* p
1951 Ap      |void   |save_freesv    |SV* sv
1952 p       |void   |save_freeop    |OP* o
1953 Ap      |void   |save_freepv    |char* pv
1954 Ap      |void   |save_generic_svref|SV** sptr
1955 Ap      |void   |save_generic_pvref|char** str
1956 Ap      |void   |save_gp        |GV* gv|I32 empty
1957 Ap      |HV*    |save_hash      |GV* gv
1958 Ap      |void   |save_helem     |HV* hv|SV *key|SV **sptr
1959 Ap      |void   |save_hints
1960 Ap      |void   |save_hptr      |HV** hptr
1961 Ap      |void   |save_I16       |I16* intp
1962 Ap      |void   |save_I32       |I32* intp
1963 Ap      |void   |save_I8        |I8* bytep
1964 Ap      |void   |save_int       |int* intp
1965 Ap      |void   |save_item      |SV* item
1966 Ap      |void   |save_iv        |IV* iv
1967 Ap      |void   |save_list      |SV** sarg|I32 maxsarg
1968 Ap      |void   |save_long      |long* longp
1969 Ap      |void   |save_mortalizesv|SV* sv
1970 Ap      |void   |save_nogv      |GV* gv
1971 p       |void   |save_op
1972 Ap      |SV*    |save_scalar    |GV* gv
1973 Ap      |void   |save_pptr      |char** pptr
1974 Ap      |void   |save_vptr      |void* pptr
1975 Ap      |void   |save_re_context
1976 Ap      |void   |save_padsv     |PADOFFSET off
1977 Ap      |void   |save_sptr      |SV** sptr
1978 Ap      |SV*    |save_svref     |SV** sptr
1979 Ap      |SV**   |save_threadsv  |PADOFFSET i
1980 p       |OP*    |sawparens      |OP* o
1981 p       |OP*    |scalar         |OP* o
1982 p       |OP*    |scalarkids     |OP* o
1983 p       |OP*    |scalarseq      |OP* o
1984 p       |OP*    |scalarvoid     |OP* o
1985 Ap      |NV     |scan_bin       |char* start|STRLEN len|STRLEN* retlen
1986 Ap      |NV     |scan_hex       |char* start|STRLEN len|STRLEN* retlen
1987 Ap      |char*  |scan_num       |char* s|YYSTYPE *lvalp
1988 Ap      |NV     |scan_oct       |char* start|STRLEN len|STRLEN* retlen
1989 p       |OP*    |scope          |OP* o
1990 Ap      |char*  |screaminstr    |SV* bigsv|SV* littlesv|I32 start_shift \
1991                                 |I32 end_shift|I32 *state|I32 last
1992 #if !defined(VMS)
1993 p       |I32    |setenv_getix   |char* nam
1994 #endif
1995 p       |void   |setdefout      |GV* gv
1996 Ap      |char*  |sharepvn       |const char* sv|I32 len|U32 hash
1997 p       |HEK*   |share_hek      |const char* sv|I32 len|U32 hash
1998 np      |Signal_t |sighandler   |int sig
1999 Ap      |SV**   |stack_grow     |SV** sp|SV**p|int n
2000 Ap      |I32    |start_subparse |I32 is_format|U32 flags
2001 p       |void   |sub_crush_depth|CV* cv
2002 Apd     |bool   |sv_2bool       |SV* sv
2003 Apd     |CV*    |sv_2cv         |SV* sv|HV** st|GV** gvp|I32 lref
2004 Apd     |IO*    |sv_2io         |SV* sv
2005 Apd     |IV     |sv_2iv         |SV* sv
2006 Apd     |SV*    |sv_2mortal     |SV* sv
2007 Apd     |NV     |sv_2nv         |SV* sv
2008 Aop     |char*  |sv_2pv         |SV* sv|STRLEN* lp
2009 Apd     |char*  |sv_2pvutf8     |SV* sv|STRLEN* lp
2010 Apd     |char*  |sv_2pvbyte     |SV* sv|STRLEN* lp
2011 Apd     |UV     |sv_2uv         |SV* sv
2012 Apd     |IV     |sv_iv          |SV* sv
2013 Apd     |UV     |sv_uv          |SV* sv
2014 Apd     |NV     |sv_nv          |SV* sv
2015 Apd     |char*  |sv_pvn         |SV *sv|STRLEN *len
2016 Apd     |char*  |sv_pvutf8n     |SV *sv|STRLEN *len
2017 Apd     |char*  |sv_pvbyten     |SV *sv|STRLEN *len
2018 Apd     |I32    |sv_true        |SV *sv
2019 pd      |void   |sv_add_arena   |char* ptr|U32 size|U32 flags
2020 Apd     |int    |sv_backoff     |SV* sv
2021 Apd     |SV*    |sv_bless       |SV* sv|HV* stash
2022 Afpd    |void   |sv_catpvf      |SV* sv|const char* pat|...
2023 Ap      |void   |sv_vcatpvf     |SV* sv|const char* pat|va_list* args
2024 Apd     |void   |sv_catpv       |SV* sv|const char* ptr
2025 Aopd    |void   |sv_catpvn      |SV* sv|const char* ptr|STRLEN len
2026 Aopd    |void   |sv_catsv       |SV* dsv|SV* ssv
2027 Apd     |void   |sv_chop        |SV* sv|char* ptr
2028 pd      |I32    |sv_clean_all
2029 pd      |void   |sv_clean_objs
2030 Apd     |void   |sv_clear       |SV* sv
2031 Apd     |I32    |sv_cmp         |SV* sv1|SV* sv2
2032 Apd     |I32    |sv_cmp_locale  |SV* sv1|SV* sv2
2033 #if defined(USE_LOCALE_COLLATE)
2034 Apd     |char*  |sv_collxfrm    |SV* sv|STRLEN* nxp
2035 #endif
2036 Ap      |OP*    |sv_compile_2op |SV* sv|OP** startp|char* code|AV** avp
2037 Apd     |int    |getcwd_sv      |SV* sv
2038 Apd     |void   |sv_dec         |SV* sv
2039 Ap      |void   |sv_dump        |SV* sv
2040 Apd     |bool   |sv_derived_from|SV* sv|const char* name
2041 Apd     |I32    |sv_eq          |SV* sv1|SV* sv2
2042 Apd     |void   |sv_free        |SV* sv
2043 pd      |void   |sv_free_arenas
2044 Apd     |char*  |sv_gets        |SV* sv|PerlIO* fp|I32 append
2045 Apd     |char*  |sv_grow        |SV* sv|STRLEN newlen
2046 Apd     |void   |sv_inc         |SV* sv
2047 Apd     |void   |sv_insert      |SV* bigsv|STRLEN offset|STRLEN len \
2048                                 |char* little|STRLEN littlelen
2049 Apd     |int    |sv_isa         |SV* sv|const char* name
2050 Apd     |int    |sv_isobject    |SV* sv
2051 Apd     |STRLEN |sv_len         |SV* sv
2052 Apd     |STRLEN |sv_len_utf8    |SV* sv
2053 Apd     |void   |sv_magic       |SV* sv|SV* obj|int how|const char* name \
2054                                 |I32 namlen
2055 Apd     |SV*    |sv_mortalcopy  |SV* oldsv
2056 Apd     |SV*    |sv_newmortal
2057 Apd     |SV*    |sv_newref      |SV* sv
2058 Ap      |char*  |sv_peek        |SV* sv
2059 Apd     |void   |sv_pos_u2b     |SV* sv|I32* offsetp|I32* lenp
2060 Apd     |void   |sv_pos_b2u     |SV* sv|I32* offsetp
2061 Aopd    |char*  |sv_pvn_force   |SV* sv|STRLEN* lp
2062 Apd     |char*  |sv_pvutf8n_force|SV* sv|STRLEN* lp
2063 Apd     |char*  |sv_pvbyten_force|SV* sv|STRLEN* lp
2064 Apd     |char*  |sv_reftype     |SV* sv|int ob
2065 Apd     |void   |sv_replace     |SV* sv|SV* nsv
2066 Apd     |void   |sv_report_used
2067 Apd     |void   |sv_reset       |char* s|HV* stash
2068 Afpd    |void   |sv_setpvf      |SV* sv|const char* pat|...
2069 Ap      |void   |sv_vsetpvf     |SV* sv|const char* pat|va_list* args
2070 Apd     |void   |sv_setiv       |SV* sv|IV num
2071 Apd     |void   |sv_setpviv     |SV* sv|IV num
2072 Apd     |void   |sv_setuv       |SV* sv|UV num
2073 Apd     |void   |sv_setnv       |SV* sv|NV num
2074 Apd     |SV*    |sv_setref_iv   |SV* rv|const char* classname|IV iv
2075 Apd     |SV*    |sv_setref_uv   |SV* rv|const char* classname|UV uv
2076 Apd     |SV*    |sv_setref_nv   |SV* rv|const char* classname|NV nv
2077 Apd     |SV*    |sv_setref_pv   |SV* rv|const char* classname|void* pv
2078 Apd     |SV*    |sv_setref_pvn  |SV* rv|const char* classname|char* pv \
2079                                 |STRLEN n
2080 Apd     |void   |sv_setpv       |SV* sv|const char* ptr
2081 Apd     |void   |sv_setpvn      |SV* sv|const char* ptr|STRLEN len
2082 Aopd    |void   |sv_setsv       |SV* dsv|SV* ssv
2083 Apd     |void   |sv_taint       |SV* sv
2084 Apd     |bool   |sv_tainted     |SV* sv
2085 Apd     |int    |sv_unmagic     |SV* sv|int type
2086 Apd     |void   |sv_unref       |SV* sv
2087 Apd     |void   |sv_unref_flags |SV* sv|U32 flags
2088 Apd     |void   |sv_untaint     |SV* sv
2089 Apd     |bool   |sv_upgrade     |SV* sv|U32 mt
2090 Apd     |void   |sv_usepvn      |SV* sv|char* ptr|STRLEN len
2091 Apd     |void   |sv_vcatpvfn    |SV* sv|const char* pat|STRLEN patlen \
2092                                 |va_list* args|SV** svargs|I32 svmax \
2093                                 |bool *maybe_tainted
2094 Apd     |void   |sv_vsetpvfn    |SV* sv|const char* pat|STRLEN patlen \
2095                                 |va_list* args|SV** svargs|I32 svmax \
2096                                 |bool *maybe_tainted
2097 Ap      |NV     |str_to_version |SV *sv
2098 Ap      |SV*    |swash_init     |char* pkg|char* name|SV* listsv \
2099                                 |I32 minbits|I32 none
2100 Ap      |UV     |swash_fetch    |SV *sv|U8 *ptr|bool do_utf8
2101 Ap      |void   |taint_env
2102 Ap      |void   |taint_proper   |const char* f|const char* s
2103 Ap      |UV     |to_utf8_lower  |U8 *p
2104 Ap      |UV     |to_utf8_upper  |U8 *p
2105 Ap      |UV     |to_utf8_title  |U8 *p
2106 #if defined(UNLINK_ALL_VERSIONS)
2107 Ap      |I32    |unlnk          |char* f
2108 #endif
2109 #if defined(USE_THREADS)
2110 Ap      |void   |unlock_condpair|void* svv
2111 #endif
2112 Ap      |void   |unsharepvn     |const char* sv|I32 len|U32 hash
2113 p       |void   |unshare_hek    |HEK* hek
2114 p       |void   |utilize        |int aver|I32 floor|OP* version|OP* id|OP* arg
2115 Ap      |U8*    |utf16_to_utf8  |U8* p|U8 *d|I32 bytelen|I32 *newlen
2116 Ap      |U8*    |utf16_to_utf8_reversed|U8* p|U8 *d|I32 bytelen|I32 *newlen
2117 Adp     |STRLEN |utf8_length    |U8* s|U8 *e
2118 Apd     |IV     |utf8_distance  |U8 *a|U8 *b
2119 Apd     |U8*    |utf8_hop       |U8 *s|I32 off
2120 ApMd    |U8*    |utf8_to_bytes  |U8 *s|STRLEN *len
2121 ApMd    |U8*    |bytes_from_utf8|U8 *s|STRLEN *len|bool *is_utf8
2122 ApMd    |U8*    |bytes_to_utf8  |U8 *s|STRLEN *len
2123 Apd     |UV     |utf8_to_uvchr  |U8 *s|STRLEN* retlen
2124 Apd     |UV     |utf8_to_uvuni  |U8 *s|STRLEN* retlen
2125 Adp     |UV     |utf8n_to_uvchr |U8 *s|STRLEN curlen|STRLEN* retlen|U32 flags
2126 Adp     |UV     |utf8n_to_uvuni |U8 *s|STRLEN curlen|STRLEN* retlen|U32 flags
2127 Apd     |U8*    |uvchr_to_utf8  |U8 *d|UV uv
2128 Apd     |U8*    |uvuni_to_utf8  |U8 *d|UV uv
2129 p       |void   |vivify_defelem |SV* sv
2130 p       |void   |vivify_ref     |SV* sv|U32 to_what
2131 p       |I32    |wait4pid       |Pid_t pid|int* statusp|int flags
2132 p       |void   |report_evil_fh |GV *gv|IO *io|I32 op
2133 pd      |void   |report_uninit
2134 Afpd    |void   |warn           |const char* pat|...
2135 Ap      |void   |vwarn          |const char* pat|va_list* args
2136 Afp     |void   |warner         |U32 err|const char* pat|...
2137 Ap      |void   |vwarner        |U32 err|const char* pat|va_list* args
2138 p       |void   |watch          |char** addr
2139 Ap      |I32    |whichsig       |char* sig
2140 p       |int    |yyerror        |char* s
2141 #ifdef USE_PURE_BISON
2142 p       |int    |yylex_r        |YYSTYPE *lvalp|int *lcharp
2143 #endif
2144 p       |int    |yylex
2145 p       |int    |yyparse
2146 p       |int    |yywarn         |char* s
2147 #if defined(MYMALLOC)
2148 Ap      |void   |dump_mstats    |char* s
2149 Ap      |int    |get_mstats     |perl_mstats_t *buf|int buflen|int level
2150 #endif
2151 Anp     |Malloc_t|safesysmalloc |MEM_SIZE nbytes
2152 Anp     |Malloc_t|safesyscalloc |MEM_SIZE elements|MEM_SIZE size
2153 Anp     |Malloc_t|safesysrealloc|Malloc_t where|MEM_SIZE nbytes
2154 Anp     |Free_t |safesysfree    |Malloc_t where
2155 #if defined(LEAKTEST)
2156 Anp     |Malloc_t|safexmalloc   |I32 x|MEM_SIZE size
2157 Anp     |Malloc_t|safexcalloc   |I32 x|MEM_SIZE elements|MEM_SIZE size
2158 Anp     |Malloc_t|safexrealloc  |Malloc_t where|MEM_SIZE size
2159 Anp     |void   |safexfree      |Malloc_t where
2160 #endif
2161 #if defined(PERL_GLOBAL_STRUCT)
2162 Ap      |struct perl_vars *|GetVars
2163 #endif
2164 Ap      |int    |runops_standard
2165 Ap      |int    |runops_debug
2166 #if defined(USE_THREADS)
2167 Ap      |SV*    |sv_lock        |SV *sv
2168 #endif
2169 Afpd    |void   |sv_catpvf_mg   |SV *sv|const char* pat|...
2170 Ap      |void   |sv_vcatpvf_mg  |SV* sv|const char* pat|va_list* args
2171 Apd     |void   |sv_catpv_mg    |SV *sv|const char *ptr
2172 Apd     |void   |sv_catpvn_mg   |SV *sv|const char *ptr|STRLEN len
2173 Apd     |void   |sv_catsv_mg    |SV *dstr|SV *sstr
2174 Afpd    |void   |sv_setpvf_mg   |SV *sv|const char* pat|...
2175 Ap      |void   |sv_vsetpvf_mg  |SV* sv|const char* pat|va_list* args
2176 Apd     |void   |sv_setiv_mg    |SV *sv|IV i
2177 Apd     |void   |sv_setpviv_mg  |SV *sv|IV iv
2178 Apd     |void   |sv_setuv_mg    |SV *sv|UV u
2179 Apd     |void   |sv_setnv_mg    |SV *sv|NV num
2180 Apd     |void   |sv_setpv_mg    |SV *sv|const char *ptr
2181 Apd     |void   |sv_setpvn_mg   |SV *sv|const char *ptr|STRLEN len
2182 Apd     |void   |sv_setsv_mg    |SV *dstr|SV *sstr
2183 Apd     |void   |sv_usepvn_mg   |SV *sv|char *ptr|STRLEN len
2184 Ap      |MGVTBL*|get_vtbl       |int vtbl_id
2185 p       |char*  |pv_display     |SV *sv|char *pv|STRLEN cur|STRLEN len \
2186                                 |STRLEN pvlim
2187 Afp     |void   |dump_indent    |I32 level|PerlIO *file|const char* pat|...
2188 Ap      |void   |dump_vindent   |I32 level|PerlIO *file|const char* pat \
2189                                 |va_list *args
2190 Ap      |void   |do_gv_dump     |I32 level|PerlIO *file|char *name|GV *sv
2191 Ap      |void   |do_gvgv_dump   |I32 level|PerlIO *file|char *name|GV *sv
2192 Ap      |void   |do_hv_dump     |I32 level|PerlIO *file|char *name|HV *sv
2193 Ap      |void   |do_magic_dump  |I32 level|PerlIO *file|MAGIC *mg|I32 nest \
2194                                 |I32 maxnest|bool dumpops|STRLEN pvlim
2195 Ap      |void   |do_op_dump     |I32 level|PerlIO *file|OP *o
2196 Ap      |void   |do_pmop_dump   |I32 level|PerlIO *file|PMOP *pm
2197 Ap      |void   |do_sv_dump     |I32 level|PerlIO *file|SV *sv|I32 nest \
2198                                 |I32 maxnest|bool dumpops|STRLEN pvlim
2199 Ap      |void   |magic_dump     |MAGIC *mg
2200 #if defined(PERL_FLEXIBLE_EXCEPTIONS)
2201 Ap      |void*  |default_protect|volatile JMPENV *je|int *excpt \
2202                                 |protect_body_t body|...
2203 Ap      |void*  |vdefault_protect|volatile JMPENV *je|int *excpt \
2204                                 |protect_body_t body|va_list *args
2205 #endif
2206 Ap      |void   |reginitcolors
2207 Apd     |char*  |sv_2pv_nolen   |SV* sv
2208 Apd     |char*  |sv_2pvutf8_nolen|SV* sv
2209 Apd     |char*  |sv_2pvbyte_nolen|SV* sv
2210 Apd     |char*  |sv_pv          |SV *sv
2211 Apd     |char*  |sv_pvutf8      |SV *sv
2212 Apd     |char*  |sv_pvbyte      |SV *sv
2213 Aopd    |STRLEN |sv_utf8_upgrade|SV *sv
2214 ApdM    |bool   |sv_utf8_downgrade|SV *sv|bool fail_ok
2215 Apd     |void   |sv_utf8_encode |SV *sv
2216 ApdM    |bool   |sv_utf8_decode |SV *sv
2217 Apd     |void   |sv_force_normal|SV *sv
2218 Apd     |void   |sv_force_normal_flags|SV *sv|U32 flags
2219 Ap      |void   |tmps_grow      |I32 n
2220 Apd     |SV*    |sv_rvweaken    |SV *sv
2221 p       |int    |magic_killbackrefs|SV *sv|MAGIC *mg
2222 Ap      |OP*    |newANONATTRSUB |I32 floor|OP *proto|OP *attrs|OP *block
2223 Ap      |CV*    |newATTRSUB     |I32 floor|OP *o|OP *proto|OP *attrs|OP *block
2224 Ap      |void   |newMYSUB       |I32 floor|OP *o|OP *proto|OP *attrs|OP *block
2225 p       |OP *   |my_attrs       |OP *o|OP *attrs
2226 p       |void   |boot_core_xsutils
2227 #if defined(USE_ITHREADS)
2228 Ap      |PERL_CONTEXT*|cx_dup   |PERL_CONTEXT* cx|I32 ix|I32 max|clone_params* param
2229 Ap      |PERL_SI*|si_dup        |PERL_SI* si|clone_params* param
2230 Ap      |ANY*   |ss_dup         |PerlInterpreter* proto_perl|clone_params* param
2231 Ap      |void*  |any_dup        |void* v|PerlInterpreter* proto_perl
2232 Ap      |HE*    |he_dup         |HE* e|bool shared|clone_params* param
2233 Ap      |REGEXP*|re_dup         |REGEXP* r
2234 Ap      |PerlIO*|fp_dup         |PerlIO* fp|char type
2235 Ap      |DIR*   |dirp_dup       |DIR* dp
2236 Ap      |GP*    |gp_dup         |GP* gp|clone_params* param
2237 Ap      |MAGIC* |mg_dup         |MAGIC* mg|clone_params* param
2238 Ap      |SV*    |sv_dup         |SV* sstr|clone_params* param
2239 #if defined(HAVE_INTERP_INTERN)
2240 Ap      |void   |sys_intern_dup |struct interp_intern* src \
2241                                 |struct interp_intern* dst
2242 #endif
2243 Ap      |PTR_TBL_t*|ptr_table_new
2244 Ap      |void*  |ptr_table_fetch|PTR_TBL_t *tbl|void *sv
2245 Ap      |void   |ptr_table_store|PTR_TBL_t *tbl|void *oldsv|void *newsv
2246 Ap      |void   |ptr_table_split|PTR_TBL_t *tbl
2247 Ap      |void   |ptr_table_clear|PTR_TBL_t *tbl
2248 Ap      |void   |ptr_table_free|PTR_TBL_t *tbl
2249 #endif
2250 #if defined(HAVE_INTERP_INTERN)
2251 Ap      |void   |sys_intern_clear
2252 Ap      |void   |sys_intern_init
2253 #endif
2254
2255 #if defined(PERL_OBJECT)
2256 protected:
2257 #else
2258 END_EXTERN_C
2259 #endif
2260
2261 #if defined(PERL_IN_AV_C) || defined(PERL_DECL_PROT)
2262 s       |I32    |avhv_index_sv  |SV* sv
2263 s       |I32    |avhv_index     |AV* av|SV* sv|U32 hash
2264 #endif
2265
2266 #if defined(PERL_IN_DOOP_C) || defined(PERL_DECL_PROT)
2267 s       |I32    |do_trans_simple        |SV *sv
2268 s       |I32    |do_trans_count         |SV *sv
2269 s       |I32    |do_trans_complex       |SV *sv
2270 s       |I32    |do_trans_simple_utf8   |SV *sv
2271 s       |I32    |do_trans_count_utf8    |SV *sv
2272 s       |I32    |do_trans_complex_utf8  |SV *sv
2273 #endif
2274
2275 #if defined(PERL_IN_GV_C) || defined(PERL_DECL_PROT)
2276 s       |void   |gv_init_sv     |GV *gv|I32 sv_type
2277 s       |void   |require_errno  |GV *gv
2278 #endif
2279
2280 #if defined(PERL_IN_HV_C) || defined(PERL_DECL_PROT)
2281 s       |void   |hsplit         |HV *hv
2282 s       |void   |hfreeentries   |HV *hv
2283 s       |void   |more_he
2284 s       |HE*    |new_he
2285 s       |void   |del_he         |HE *p
2286 s       |HEK*   |save_hek       |const char *str|I32 len|U32 hash
2287 s       |void   |hv_magic_check |HV *hv|bool *needs_copy|bool *needs_store
2288 #endif
2289
2290 #if defined(PERL_IN_MG_C) || defined(PERL_DECL_PROT)
2291 s       |void   |save_magic     |I32 mgs_ix|SV *sv
2292 s       |int    |magic_methpack |SV *sv|MAGIC *mg|char *meth
2293 s       |int    |magic_methcall |SV *sv|MAGIC *mg|char *meth|I32 f \
2294                                 |int n|SV *val
2295 #endif
2296
2297 #if defined(PERL_IN_OP_C) || defined(PERL_DECL_PROT)
2298 s       |I32    |list_assignment|OP *o
2299 s       |void   |bad_type       |I32 n|char *t|char *name|OP *kid
2300 s       |void   |cop_free       |COP *cop
2301 s       |OP*    |modkids        |OP *o|I32 type
2302 s       |void   |no_bareword_allowed|OP *o
2303 s       |OP*    |no_fh_allowed  |OP *o
2304 s       |OP*    |scalarboolean  |OP *o
2305 s       |OP*    |too_few_arguments|OP *o|char* name
2306 s       |OP*    |too_many_arguments|OP *o|char* name
2307 s       |PADOFFSET|pad_addlex   |SV* name
2308 s       |PADOFFSET|pad_findlex  |char* name|PADOFFSET newoff|U32 seq \
2309                                 |CV* startcv|I32 cx_ix|I32 saweval|U32 flags
2310 s       |OP*    |newDEFSVOP
2311 s       |OP*    |new_logop      |I32 type|I32 flags|OP **firstp|OP **otherp
2312 s       |void   |simplify_sort  |OP *o
2313 s       |bool   |is_handle_constructor  |OP *o|I32 argnum
2314 s       |char*  |gv_ename       |GV *gv
2315 #  if defined(DEBUG_CLOSURES)
2316 s       |void   |cv_dump        |CV *cv
2317 #  endif
2318 s       |CV*    |cv_clone2      |CV *proto|CV *outside
2319 s       |bool   |scalar_mod_type|OP *o|I32 type
2320 s       |OP *   |my_kid         |OP *o|OP *attrs
2321 s       |OP *   |dup_attrlist   |OP *o
2322 s       |void   |apply_attrs    |HV *stash|SV *target|OP *attrs
2323 #  if defined(PL_OP_SLAB_ALLOC)
2324 s       |void*  |Slab_Alloc     |int m|size_t sz
2325 #  endif
2326 #endif
2327
2328 #if defined(PERL_IN_PERL_C) || defined(PERL_DECL_PROT)
2329 s       |void   |find_beginning
2330 s       |void   |forbid_setid   |char *
2331 s       |void   |incpush        |char *|int|int
2332 s       |void   |init_interp
2333 s       |void   |init_ids
2334 s       |void   |init_lexer
2335 s       |void   |init_main_stash
2336 s       |void   |init_perllib
2337 s       |void   |init_postdump_symbols|int|char **|char **
2338 s       |void   |init_predump_symbols
2339 rs      |void   |my_exit_jump
2340 s       |void   |nuke_stacks
2341 s       |void   |open_script    |char *|bool|SV *|int *fd
2342 s       |void   |usage          |char *
2343 s       |void   |validate_suid  |char *|char*|int
2344 #  if defined(IAMSUID)
2345 s       |int    |fd_on_nosuid_fs|int fd
2346 #  endif
2347 s       |void*  |parse_body     |char **env|XSINIT_t xsinit
2348 s       |void*  |run_body       |I32 oldscope
2349 s       |void   |call_body      |OP *myop|int is_eval
2350 s       |void*  |call_list_body |CV *cv
2351 #if defined(PERL_FLEXIBLE_EXCEPTIONS)
2352 s       |void*  |vparse_body    |va_list args
2353 s       |void*  |vrun_body      |va_list args
2354 s       |void*  |vcall_body     |va_list args
2355 s       |void*  |vcall_list_body|va_list args
2356 #endif
2357 #  if defined(USE_THREADS)
2358 s       |struct perl_thread *   |init_main_thread
2359 #  endif
2360 #endif
2361
2362 #if defined(PERL_IN_PP_C) || defined(PERL_DECL_PROT)
2363 s       |SV*    |refto          |SV* sv
2364 s       |U32    |seed
2365 #endif
2366
2367 #if defined(PERL_IN_PP_PACK_C) || defined(PERL_DECL_PROT)
2368 s       |void   |doencodes      |SV* sv|char* s|I32 len
2369 s       |SV*    |mul128         |SV *sv|U8 m
2370 s       |SV*    |is_an_int      |char *s|STRLEN l
2371 s       |int    |div128         |SV *pnum|bool *done
2372 #endif
2373
2374 #if defined(PERL_IN_PP_CTL_C) || defined(PERL_DECL_PROT)
2375 s       |OP*    |docatch        |OP *o
2376 s       |void*  |docatch_body
2377 #if defined(PERL_FLEXIBLE_EXCEPTIONS)
2378 s       |void*  |vdocatch_body  |va_list args
2379 #endif
2380 s       |OP*    |dofindlabel    |OP *o|char *label|OP **opstack|OP **oplimit
2381 s       |void   |doparseform    |SV *sv
2382 s       |I32    |dopoptoeval    |I32 startingblock
2383 s       |I32    |dopoptolabel   |char *label
2384 s       |I32    |dopoptoloop    |I32 startingblock
2385 s       |I32    |dopoptosub     |I32 startingblock
2386 s       |I32    |dopoptosub_at  |PERL_CONTEXT* cxstk|I32 startingblock
2387 s       |void   |save_lines     |AV *array|SV *sv
2388 s       |OP*    |doeval         |int gimme|OP** startop
2389 s       |PerlIO *|doopen_pmc    |const char *name|const char *mode
2390 s       |void   |qsortsv        |SV ** array|size_t num_elts|SVCOMPARE_t f
2391 #endif
2392
2393 #if defined(PERL_IN_PP_HOT_C) || defined(PERL_DECL_PROT)
2394 s       |int    |do_maybe_phash |AV *ary|SV **lelem|SV **firstlelem \
2395                                 |SV **relem|SV **lastrelem
2396 s       |void   |do_oddball     |HV *hash|SV **relem|SV **firstrelem
2397 s       |CV*    |get_db_sub     |SV **svp|CV *cv
2398 s       |SV*    |method_common  |SV* meth|U32* hashp
2399 #endif
2400
2401 #if defined(PERL_IN_PP_SYS_C) || defined(PERL_DECL_PROT)
2402 s       |OP*    |doform         |CV *cv|GV *gv|OP *retop
2403 s       |int    |emulate_eaccess|const char* path|Mode_t mode
2404 #  if !defined(HAS_MKDIR) || !defined(HAS_RMDIR)
2405 s       |int    |dooneliner     |char *cmd|char *filename
2406 #  endif
2407 #endif
2408
2409 #if defined(PERL_IN_REGCOMP_C) || defined(PERL_DECL_PROT)
2410 s       |regnode*|reg           |struct RExC_state_t*|I32|I32 *
2411 s       |regnode*|reganode      |struct RExC_state_t*|U8|U32
2412 s       |regnode*|regatom       |struct RExC_state_t*|I32 *
2413 s       |regnode*|regbranch     |struct RExC_state_t*|I32 *|I32
2414 s       |void   |reguni         |struct RExC_state_t*|UV|char *|STRLEN*
2415 s       |regnode*|regclass      |struct RExC_state_t*
2416 s       |I32    |regcurly       |char *
2417 s       |regnode*|reg_node      |struct RExC_state_t*|U8
2418 s       |regnode*|regpiece      |struct RExC_state_t*|I32 *
2419 s       |void   |reginsert      |struct RExC_state_t*|U8|regnode *
2420 s       |void   |regoptail      |struct RExC_state_t*|regnode *|regnode *
2421 s       |void   |regtail        |struct RExC_state_t*|regnode *|regnode *
2422 s       |char*|regwhite |char *|char *
2423 s       |char*|nextchar |struct RExC_state_t*
2424 #  ifdef DEBUGGING
2425 s       |regnode*|dumpuntil     |regnode *start|regnode *node \
2426                                 |regnode *last|SV* sv|I32 l
2427 s       |void   |put_byte       |SV* sv|int c
2428 #  endif
2429 s       |void   |scan_commit    |struct RExC_state_t*|struct scan_data_t *data
2430 s       |void   |cl_anything    |struct RExC_state_t*|struct regnode_charclass_class *cl
2431 s       |int    |cl_is_anything |struct regnode_charclass_class *cl
2432 s       |void   |cl_init        |struct RExC_state_t*|struct regnode_charclass_class *cl
2433 s       |void   |cl_init_zero   |struct RExC_state_t*|struct regnode_charclass_class *cl
2434 s       |void   |cl_and         |struct regnode_charclass_class *cl \
2435                                 |struct regnode_charclass_class *and_with
2436 s       |void   |cl_or          |struct RExC_state_t*|struct regnode_charclass_class *cl \
2437                                 |struct regnode_charclass_class *or_with
2438 s       |I32    |study_chunk    |struct RExC_state_t*|regnode **scanp|I32 *deltap \
2439                                 |regnode *last|struct scan_data_t *data \
2440                                 |U32 flags
2441 s       |I32    |add_data       |struct RExC_state_t*|I32 n|char *s
2442 rs      |void|re_croak2 |const char* pat1|const char* pat2|...
2443 s       |I32    |regpposixcc    |struct RExC_state_t*|I32 value
2444 s       |void   |checkposixcc   |struct RExC_state_t*
2445 #endif
2446
2447 #if defined(PERL_IN_REGEXEC_C) || defined(PERL_DECL_PROT)
2448 s       |I32    |regmatch       |regnode *prog
2449 s       |I32    |regrepeat      |regnode *p|I32 max
2450 s       |I32    |regrepeat_hard |regnode *p|I32 max|I32 *lp
2451 s       |I32    |regtry         |regexp *prog|char *startpos
2452 s       |bool   |reginclass     |regnode *n|U8 *p|bool do_utf8sv_is_utf8
2453 s       |CHECKPOINT|regcppush   |I32 parenfloor
2454 s       |char*|regcppop
2455 s       |char*|regcp_set_to     |I32 ss
2456 s       |void   |cache_re       |regexp *prog
2457 s       |U8*    |reghop         |U8 *pos|I32 off
2458 s       |U8*    |reghop3        |U8 *pos|I32 off|U8 *lim
2459 s       |U8*    |reghopmaybe    |U8 *pos|I32 off
2460 s       |U8*    |reghopmaybe3   |U8 *pos|I32 off|U8 *lim
2461 s       |char*  |find_byclass   |regexp * prog|regnode *c|char *s|char *strend|char *startpos|I32 norun
2462 #endif
2463
2464 #if defined(PERL_IN_RUN_C) || defined(PERL_DECL_PROT)
2465 #   ifdef DEBUGGING
2466 s       |CV*    |deb_curcv      |I32 ix
2467 s       |void   |debprof        |OP *o
2468 #   endif
2469 #endif
2470
2471 #if defined(PERL_IN_SCOPE_C) || defined(PERL_DECL_PROT)
2472 s       |SV*    |save_scalar_at |SV **sptr
2473 #endif
2474
2475 #if defined(PERL_IN_SV_C) || defined(PERL_DECL_PROT)
2476 s       |IV     |asIV           |SV* sv
2477 s       |UV     |asUV           |SV* sv
2478 s       |SV*    |more_sv
2479 s       |void   |more_xiv
2480 s       |void   |more_xnv
2481 s       |void   |more_xpv
2482 s       |void   |more_xpviv
2483 s       |void   |more_xpvnv
2484 s       |void   |more_xpvcv
2485 s       |void   |more_xpvav
2486 s       |void   |more_xpvhv
2487 s       |void   |more_xpvmg
2488 s       |void   |more_xpvlv
2489 s       |void   |more_xpvbm
2490 s       |void   |more_xrv
2491 s       |XPVIV* |new_xiv
2492 s       |XPVNV* |new_xnv
2493 s       |XPV*   |new_xpv
2494 s       |XPVIV* |new_xpviv
2495 s       |XPVNV* |new_xpvnv
2496 s       |XPVCV* |new_xpvcv
2497 s       |XPVAV* |new_xpvav
2498 s       |XPVHV* |new_xpvhv
2499 s       |XPVMG* |new_xpvmg
2500 s       |XPVLV* |new_xpvlv
2501 s       |XPVBM* |new_xpvbm
2502 s       |XRV*   |new_xrv
2503 s       |void   |del_xiv        |XPVIV* p
2504 s       |void   |del_xnv        |XPVNV* p
2505 s       |void   |del_xpv        |XPV* p
2506 s       |void   |del_xpviv      |XPVIV* p
2507 s       |void   |del_xpvnv      |XPVNV* p
2508 s       |void   |del_xpvcv      |XPVCV* p
2509 s       |void   |del_xpvav      |XPVAV* p
2510 s       |void   |del_xpvhv      |XPVHV* p
2511 s       |void   |del_xpvmg      |XPVMG* p
2512 s       |void   |del_xpvlv      |XPVLV* p
2513 s       |void   |del_xpvbm      |XPVBM* p
2514 s       |void   |del_xrv        |XRV* p
2515 s       |void   |sv_unglob      |SV* sv
2516 s       |void   |not_a_number   |SV *sv
2517 s       |I32    |visit          |SVFUNC_t f
2518 s       |void   |sv_add_backref |SV *tsv|SV *sv
2519 s       |void   |sv_del_backref |SV *sv
2520 #  ifdef DEBUGGING
2521 s       |void   |del_sv |SV *p
2522 #  endif
2523 #  if !defined(NV_PRESERVES_UV)
2524 s      |int    |sv_2iuv_non_preserve   |SV *sv|I32 numtype
2525 #  endif
2526 s       |I32    |expect_number  |char** pattern
2527 #
2528 #  if defined(USE_ITHREADS)
2529 s       |SV*    |gv_share       |SV *sv
2530 #  endif
2531 #endif
2532
2533 #if defined(PERL_IN_TOKE_C) || defined(PERL_DECL_PROT)
2534 s       |void   |check_uni
2535 s       |void   |force_next     |I32 type
2536 s       |char*  |force_version  |char *start
2537 s       |char*  |force_word     |char *start|int token|int check_keyword \
2538                                 |int allow_pack|int allow_tick
2539 s       |SV*    |tokeq          |SV *sv
2540 s       |int    |pending_ident
2541 s       |char*  |scan_const     |char *start
2542 s       |char*  |scan_formline  |char *s
2543 s       |char*  |scan_heredoc   |char *s
2544 s       |char*  |scan_ident     |char *s|char *send|char *dest \
2545                                 |STRLEN destlen|I32 ck_uni
2546 s       |char*  |scan_inputsymbol|char *start
2547 s       |char*  |scan_pat       |char *start|I32 type
2548 s       |char*  |scan_str       |char *start|int keep_quoted|int keep_delims
2549 s       |char*  |scan_subst     |char *start
2550 s       |char*  |scan_trans     |char *start
2551 s       |char*  |scan_word      |char *s|char *dest|STRLEN destlen \
2552                                 |int allow_package|STRLEN *slp
2553 s       |char*  |skipspace      |char *s
2554 s       |char*  |swallow_bom    |U8 *s
2555 s       |void   |checkcomma     |char *s|char *name|char *what
2556 s       |void   |force_ident    |char *s|int kind
2557 s       |void   |incline        |char *s
2558 s       |int    |intuit_method  |char *s|GV *gv
2559 s       |int    |intuit_more    |char *s
2560 s       |I32    |lop            |I32 f|int x|char *s
2561 s       |void   |missingterm    |char *s
2562 s       |void   |no_op          |char *what|char *s
2563 s       |void   |set_csh
2564 s       |I32    |sublex_done
2565 s       |I32    |sublex_push
2566 s       |I32    |sublex_start
2567 s       |char * |filter_gets    |SV *sv|PerlIO *fp|STRLEN append
2568 s       |HV *   |find_in_my_stash|char *pkgname|I32 len
2569 s       |SV*    |new_constant   |char *s|STRLEN len|const char *key|SV *sv \
2570                                 |SV *pv|const char *type
2571 #  if defined(DEBUGGING)
2572 s       |void   |tokereport     |char *thing|char *s|I32 rv
2573 #  endif
2574 s       |int    |ao             |int toketype
2575 s       |void   |depcom
2576 s       |char*  |incl_perldb
2577 #if 0
2578 s       |I32    |utf16_textfilter|int idx|SV *sv|int maxlen
2579 s       |I32    |utf16rev_textfilter|int idx|SV *sv|int maxlen
2580 #endif
2581 #  if defined(CRIPPLED_CC)
2582 s       |int    |uni            |I32 f|char *s
2583 #  endif
2584 #  if defined(PERL_CR_FILTER)
2585 s       |I32    |cr_textfilter  |int idx|SV *sv|int maxlen
2586 #  endif
2587 #endif
2588
2589 #if defined(PERL_IN_UNIVERSAL_C) || defined(PERL_DECL_PROT)
2590 s       |SV*|isa_lookup |HV *stash|const char *name|int len|int level
2591 #endif
2592
2593 #if defined(PERL_IN_LOCALE_C) || defined(PERL_DECL_PROT)
2594 s       |char*  |stdize_locale  |char* locs
2595 #endif
2596
2597 #if defined(PERL_IN_UTIL_C) || defined(PERL_DECL_PROT)
2598 s       |SV*    |mess_alloc
2599 #  if defined(LEAKTEST)
2600 s       |void   |xstat          |int
2601 #  endif
2602 #endif
2603
2604 #if defined(PERL_OBJECT)
2605 };
2606 #endif
2607
2608 START_EXTERN_C
2609
2610 Apd     |void   |sv_setsv_flags |SV* dsv|SV* ssv|I32 flags
2611 Apd     |void   |sv_catpvn_flags|SV* sv|const char* ptr|STRLEN len|I32 flags
2612 Apd     |void   |sv_catsv_flags |SV* dsv|SV* ssv|I32 flags
2613 Apd     |STRLEN |sv_utf8_upgrade_flags|SV *sv|I32 flags
2614 Apd     |char*  |sv_pvn_force_flags|SV* sv|STRLEN* lp|I32 flags
2615 Apd     |char*  |sv_2pv_flags   |SV* sv|STRLEN* lp|I32 flags
2616 Ap      |char*  |my_atof2       |const char *s|NV* value
2617
2618 END_EXTERN_C
2619