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