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