This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
for pod/perlfaq2.pod against latest snapshot for Alpaca
[perl5.git] / makedef.pl
CommitLineData
549a6b10
JH
1#
2# Create the export list for perl.
3#
86593e8d
JH
4# Needed by WIN32 and OS/2 for creating perl.dll,
5# and by AIX for creating libperl.a when -Dusershrplib is in effect,
6# and by MacOS Classic.
549a6b10 7#
22c35a8c 8# reads global.sym, pp.sym, perlvars.h, intrpvar.h, thrdvar.h, config.h
5c728af0 9# On OS/2 reads miniperl.map and the previous version of perl5.def as well
0a753a76 10
549a6b10
JH
11my $PLATFORM;
12my $CCTYPE;
910dfcc8 13
7766f137
GS
14while (@ARGV) {
15 my $flag = shift;
5c728af0
IZ
16 if ($flag =~ s/^CC_FLAGS=/ /) {
17 for my $fflag ($flag =~ /(?:^|\s)-D(\S+)/g) {
18 $fflag .= '=1' unless $fflag =~ /^(\w+)=/;
19 $define{$1} = $2 if $fflag =~ /^(\w+)=(.+)$/;
20 }
21 next;
22 }
7766f137
GS
23 $define{$1} = 1 if ($flag =~ /^-D(\w+)$/);
24 $define{$1} = $2 if ($flag =~ /^-D(\w+)=(.+)$/);
25 $CCTYPE = $1 if ($flag =~ /^CCTYPE=(\w+)$/);
26 $PLATFORM = $1 if ($flag =~ /^PLATFORM=(\w+)$/);
18f68570
VK
27 if ($PLATFORM eq 'netware') {
28 $FILETYPE = $1 if ($flag =~ /^FILETYPE=(\w+)$/);
29 }
7766f137 30}
d55594ae 31
18f68570 32my @PLATFORM = qw(aix win32 wince os2 MacOS netware);
549a6b10
JH
33my %PLATFORM;
34@PLATFORM{@PLATFORM} = ();
35
36defined $PLATFORM || die "PLATFORM undefined, must be one of: @PLATFORM\n";
9df9a5cd 37exists $PLATFORM{$PLATFORM} || die "PLATFORM must be one of: @PLATFORM\n";
549a6b10 38
c6261f3b
JH
39my %exportperlmalloc =
40 (
41 Perl_malloc => "malloc",
42 Perl_mfree => "free",
43 Perl_realloc => "realloc",
44 Perl_calloc => "calloc",
45 );
46
47my $exportperlmalloc = $PLATFORM eq 'os2';
48
549a6b10
JH
49my $config_sh = "config.sh";
50my $config_h = "config.h";
51my $thrdvar_h = "thrdvar.h";
52my $intrpvar_h = "intrpvar.h";
53my $perlvars_h = "perlvars.h";
54my $global_sym = "global.sym";
55my $pp_sym = "pp.sym";
56my $globvar_sym = "globvar.sym";
57my $perlio_sym = "perlio.sym";
58
9df9a5cd 59if ($PLATFORM eq 'aix') {
549a6b10 60 # Nothing for now.
7766f137 61}
18f68570 62elsif ($PLATFORM =~ /^win(?:32|ce)$/ || $PLATFORM eq 'netware') {
549a6b10 63 $CCTYPE = "MSVC" unless defined $CCTYPE;
00b02797
JH
64 foreach ($thrdvar_h, $intrpvar_h, $perlvars_h, $global_sym,
65 $pp_sym, $globvar_sym, $perlio_sym) {
549a6b10
JH
66 s!^!..\\!;
67 }
68}
084592ab
CN
69elsif ($PLATFORM eq 'MacOS') {
70 foreach ($thrdvar_h, $intrpvar_h, $perlvars_h, $global_sym,
71 $pp_sym, $globvar_sym, $perlio_sym) {
72 s!^!::!;
73 }
74}
549a6b10 75
18f68570 76unless ($PLATFORM eq 'win32' || $PLATFORM eq 'wince' || $PLATFORM eq 'MacOS' || $PLATFORM eq 'netware') {
549a6b10 77 open(CFG,$config_sh) || die "Cannot open $config_sh: $!\n";
7766f137 78 while (<CFG>) {
549a6b10
JH
79 if (/^(?:ccflags|optimize)='(.+)'$/) {
80 $_ = $1;
81 $define{$1} = 1 while /-D(\w+)/g;
82 }
3cfae81b 83 if ($PLATFORM eq 'os2') {
52e4c282
IZ
84 $CONFIG_ARGS = $1 if /^config_args='(.+)'$/;
85 $ARCHNAME = $1 if /^archname='(.+)'$/;
86 $PATCHLEVEL = $1 if /^perl_patchlevel='(.+)'$/;
3cfae81b 87 }
549a6b10
JH
88 }
89 close(CFG);
90}
91
92open(CFG,$config_h) || die "Cannot open $config_h: $!\n";
7766f137
GS
93while (<CFG>) {
94 $define{$1} = 1 if /^\s*#\s*define\s+(MYMALLOC)\b/;
7766f137 95 $define{$1} = 1 if /^\s*#\s*define\s+(MULTIPLICITY)\b/;
0e32cd81
JH
96 $define{$1} = 1 if /^\s*#\s*define\s+(PERL_\w+)\b/;
97 $define{$1} = 1 if /^\s*#\s*define\s+(USE_\w+)\b/;
7766f137 98}
bbc8f9de
NIS
99close(CFG);
100
18c4b137
JH
101# perl.h logic duplication begins
102
ac6bedea
JH
103if ($define{PERL_IMPLICIT_SYS}) {
104 $define{PL_OP_SLAB_ALLOC} = 1;
105}
106
18c4b137 107if ($define{USE_ITHREADS}) {
acfe0abc 108 if (!$define{MULTIPLICITY}) {
18c4b137
JH
109 $define{MULTIPLICITY} = 1;
110 }
111}
112
113$define{PERL_IMPLICIT_CONTEXT} ||=
114 $define{USE_ITHREADS} ||
18c4b137
JH
115 $define{MULTIPLICITY} ;
116
10bc17b6
JH
117if ($define{USE_ITHREADS} && $PLATFORM ne 'win32' && $^O ne 'darwin') {
118 $define{USE_REENTRANT_API} = 1;
119}
120
18c4b137
JH
121# perl.h logic duplication ends
122
ac6bedea
JH
123my $sym_ord = 0;
124
18f68570 125if ($PLATFORM =~ /^win(?:32|ce)$/) {
549a6b10 126 warn join(' ',keys %define)."\n";
78a7c709 127 ($dll = ($define{PERL_DLL} || "perl59")) =~ s/\.dll$//i;
18f68570 128 print "LIBRARY $dll\n";
dfdd1393
GS
129 print "DESCRIPTION 'Perl interpreter'\n";
130 print "EXPORTS\n";
131 if ($define{PERL_IMPLICIT_SYS}) {
549a6b10 132 output_symbol("perl_get_host_info");
7766f137 133 output_symbol("perl_alloc_override");
0295eab8 134 }
b54a2e1e 135 if ($define{USE_ITHREADS} and $define{PERL_IMPLICIT_SYS}) {
ac6bedea 136 output_symbol("perl_clone_host");
51371543 137 }
7766f137
GS
138}
139elsif ($PLATFORM eq 'os2') {
52e4c282
IZ
140 if (open my $fh, '<', 'perl5.def') {
141 while (<$fh>) {
142 last if /^\s*EXPORTS\b/;
143 }
144 while (<$fh>) {
78232bc0 145 $ordinal{$1} = $2 if /^\s*"(\w+)"\s*(?:=\s*"\w+"\s*)?\@(\d+)\s*$/;
52e4c282
IZ
146 # This allows skipping ordinals which were used in older versions
147 $sym_ord = $1 if /^\s*;\s*LAST_ORDINAL\s*=\s*(\d+)\s*$/;
148 }
149 $sym_ord < $_ and $sym_ord = $_ for values %ordinal; # Take the max
150 }
3cfae81b
IZ
151 ($v = $]) =~ s/(\d\.\d\d\d)(\d\d)$/$1_$2/;
152 $v .= '-thread' if $ARCHNAME =~ /-thread/;
3cfae81b 153 ($dll = $define{PERL_DLL}) =~ s/\.dll$//i;
52e4c282 154 $v .= "\@$PATCHLEVEL" if $PATCHLEVEL;
1102eebe
IZ
155 $d = "DESCRIPTION '\@#perl5-porters\@perl.org:$v#\@ Perl interpreter, configured as $CONFIG_ARGS'";
156 $d = substr($d, 0, 249) . "...'" if length $d > 253;
3cfae81b
IZ
157 print <<"---EOP---";
158LIBRARY '$dll' INITINSTANCE TERMINSTANCE
1102eebe 159$d
3cfae81b
IZ
160STACKSIZE 32768
161CODE LOADONCALL
162DATA LOADONCALL NONSHARED MULTIPLE
163EXPORTS
164---EOP---
7766f137
GS
165}
166elsif ($PLATFORM eq 'aix') {
61d42ce4
JH
167 $OSVER = `uname -v`;
168 chop $OSVER;
169 $OSREL = `uname -r`;
170 chop $OSREL;
171 if ($OSVER > 4 || ($OSVER == 4 && $OSREL >= 3)) {
172 print "#! ..\n";
173 } else {
174 print "#!\n";
175 }
ac4c12e7 176}
2986a63f
JH
177elsif ($PLATFORM eq 'netware') {
178 if ($FILETYPE eq 'def') {
78a7c709 179 print "LIBRARY perl59\n";
2986a63f
JH
180 print "DESCRIPTION 'Perl interpreter for NetWare'\n";
181 print "EXPORTS\n";
182 }
183 if ($define{PERL_IMPLICIT_SYS}) {
ac6bedea
JH
184 output_symbol("perl_get_host_info");
185 output_symbol("perl_alloc_override");
186 output_symbol("perl_clone_host");
2986a63f
JH
187 }
188}
bbc8f9de 189
22239a37
NIS
190my %skip;
191my %export;
192
51371543
GS
193sub skip_symbols {
194 my $list = shift;
195 foreach my $symbol (@$list) {
196 $skip{$symbol} = 1;
197 }
22239a37
NIS
198}
199
51371543
GS
200sub emit_symbols {
201 my $list = shift;
202 foreach my $symbol (@$list) {
203 my $skipsym = $symbol;
204 # XXX hack
acfe0abc 205 if ($define{MULTIPLICITY}) {
51371543
GS
206 $skipsym =~ s/^Perl_[GIT](\w+)_ptr$/PL_$1/;
207 }
208 emit_symbol($symbol) unless exists $skip{$skipsym};
209 }
22239a37
NIS
210}
211
549a6b10 212if ($PLATFORM eq 'win32') {
7766f137
GS
213 skip_symbols [qw(
214 PL_statusvalue_vms
215 PL_archpat_auto
216 PL_cryptseen
217 PL_DBcv
218 PL_generation
219 PL_lastgotoprobe
220 PL_linestart
221 PL_modcount
222 PL_pending_ident
223 PL_sortcxix
224 PL_sublex_info
225 PL_timesbuf
226 main
227 Perl_ErrorNo
228 Perl_GetVars
229 Perl_do_exec3
230 Perl_do_ipcctl
231 Perl_do_ipcget
232 Perl_do_msgrcv
233 Perl_do_msgsnd
234 Perl_do_semop
235 Perl_do_shmio
236 Perl_dump_fds
237 Perl_init_thread_intern
238 Perl_my_bzero
9d50d399 239 Perl_my_bcopy
7766f137
GS
240 Perl_my_htonl
241 Perl_my_ntohl
242 Perl_my_swap
243 Perl_my_chsize
244 Perl_same_dirent
245 Perl_setenv_getix
246 Perl_unlnk
247 Perl_watch
248 Perl_safexcalloc
249 Perl_safexmalloc
250 Perl_safexfree
251 Perl_safexrealloc
252 Perl_my_memcmp
253 Perl_my_memset
254 PL_cshlen
255 PL_cshname
256 PL_opsave
257 Perl_do_exec
258 Perl_getenv_len
259 Perl_my_pclose
260 Perl_my_popen
261 )];
262}
54725af6
GS
263else {
264 skip_symbols [qw(
265 Perl_do_spawn
266 Perl_do_spawn_nowait
267 Perl_do_aspawn
268 )];
269}
270if ($PLATFORM eq 'wince') {
18f68570
VK
271 skip_symbols [qw(
272 PL_statusvalue_vms
273 PL_archpat_auto
274 PL_cryptseen
275 PL_DBcv
276 PL_generation
277 PL_lastgotoprobe
278 PL_linestart
279 PL_modcount
280 PL_pending_ident
281 PL_sortcxix
282 PL_sublex_info
283 PL_timesbuf
284 PL_collation_ix
285 PL_collation_name
286 PL_collation_standard
287 PL_collxfrm_base
288 PL_collxfrm_mult
289 PL_numeric_compat1
290 PL_numeric_local
291 PL_numeric_name
292 PL_numeric_radix_sv
293 PL_numeric_standard
294 PL_vtbl_collxfrm
295 Perl_sv_collxfrm
296 setgid
297 setuid
298 win32_async_check
299 win32_free_childdir
300 win32_free_childenv
301 win32_get_childdir
302 win32_get_childenv
303 win32_spawnvp
304 main
305 Perl_ErrorNo
306 Perl_GetVars
307 Perl_do_exec3
308 Perl_do_ipcctl
309 Perl_do_ipcget
310 Perl_do_msgrcv
311 Perl_do_msgsnd
312 Perl_do_semop
313 Perl_do_shmio
314 Perl_dump_fds
315 Perl_init_thread_intern
316 Perl_my_bzero
317 Perl_my_bcopy
318 Perl_my_htonl
319 Perl_my_ntohl
320 Perl_my_swap
321 Perl_my_chsize
322 Perl_same_dirent
323 Perl_setenv_getix
324 Perl_unlnk
325 Perl_watch
326 Perl_safexcalloc
327 Perl_safexmalloc
328 Perl_safexfree
329 Perl_safexrealloc
330 Perl_my_memcmp
331 Perl_my_memset
332 PL_cshlen
333 PL_cshname
334 PL_opsave
335 Perl_do_exec
336 Perl_getenv_len
337 Perl_my_pclose
338 Perl_my_popen
339 )];
340}
7766f137 341elsif ($PLATFORM eq 'aix') {
549a6b10 342 skip_symbols([qw(
7766f137
GS
343 Perl_dump_fds
344 Perl_ErrorNo
345 Perl_GetVars
346 Perl_my_bcopy
347 Perl_my_bzero
348 Perl_my_chsize
349 Perl_my_htonl
350 Perl_my_memcmp
351 Perl_my_memset
352 Perl_my_ntohl
353 Perl_my_swap
354 Perl_safexcalloc
355 Perl_safexfree
356 Perl_safexmalloc
357 Perl_safexrealloc
358 Perl_same_dirent
359 Perl_unlnk
6c644e78 360 Perl_sys_intern_clear
95151ede 361 Perl_sys_intern_dup
52853b95 362 Perl_sys_intern_init
7766f137
GS
363 PL_cryptseen
364 PL_opsave
365 PL_statusvalue_vms
366 PL_sys_intern
367 )]);
368}
369elsif ($PLATFORM eq 'os2') {
3cfae81b 370 emit_symbols([qw(
7766f137
GS
371 ctermid
372 get_sysinfo
373 Perl_OS2_init
764df951
IZ
374 Perl_OS2_init3
375 Perl_OS2_term
7766f137
GS
376 OS2_Perl_data
377 dlopen
378 dlsym
379 dlerror
403d6f8e 380 dlclose
7766f137
GS
381 my_tmpfile
382 my_tmpnam
383 my_flock
9c130f5b
NIS
384 my_rmdir
385 my_mkdir
f72c975a
IZ
386 my_getpwuid
387 my_getpwnam
388 my_getpwent
389 my_setpwent
390 my_endpwent
622913ab
IZ
391 fork_with_resources
392 croak_with_os2error
f72c975a
IZ
393 setgrent
394 endgrent
395 getgrent
7766f137
GS
396 malloc_mutex
397 threads_mutex
398 nthreads
399 nthreads_cond
400 os2_cond_wait
401 os2_stat
402 pthread_join
403 pthread_create
404 pthread_detach
405 XS_Cwd_change_drive
406 XS_Cwd_current_drive
407 XS_Cwd_extLibpath
408 XS_Cwd_extLibpath_set
409 XS_Cwd_sys_abspath
410 XS_Cwd_sys_chdir
411 XS_Cwd_sys_cwd
412 XS_Cwd_sys_is_absolute
413 XS_Cwd_sys_is_relative
414 XS_Cwd_sys_is_rooted
415 XS_DynaLoader_mod2fname
416 XS_File__Copy_syscopy
417 Perl_Register_MQ
418 Perl_Deregister_MQ
419 Perl_Serve_Messages
420 Perl_Process_Messages
421 init_PMWIN_entries
422 PMWIN_entries
423 Perl_hab_GET
35bc1fdc
IZ
424 loadByOrdinal
425 pExtFCN
30500b05
IZ
426 os2error
427 ResetWinError
428 CroakWinError
5c728af0 429 PL_do_undump
7766f137 430 )]);
5c728af0
IZ
431 emit_symbols([qw(os2_cond_wait
432 pthread_join
433 pthread_create
434 pthread_detach
435 )])
436 if $define{'USE_5005THREADS'} or $define{'USE_ITHREADS'};
3cfae81b 437}
084592ab
CN
438elsif ($PLATFORM eq 'MacOS') {
439 skip_symbols [qw(
440 Perl_GetVars
441 PL_cryptseen
442 PL_cshlen
443 PL_cshname
444 PL_statusvalue_vms
445 PL_sys_intern
446 PL_opsave
447 PL_timesbuf
448 Perl_dump_fds
449 Perl_my_bcopy
450 Perl_my_bzero
451 Perl_my_chsize
452 Perl_my_htonl
453 Perl_my_memcmp
454 Perl_my_memset
455 Perl_my_ntohl
456 Perl_my_swap
457 Perl_safexcalloc
458 Perl_safexfree
459 Perl_safexmalloc
460 Perl_safexrealloc
461 Perl_unlnk
fe05f414
JH
462 Perl_sys_intern_clear
463 Perl_sys_intern_init
084592ab
CN
464 )];
465}
2986a63f
JH
466elsif ($PLATFORM eq 'netware') {
467 skip_symbols [qw(
468 PL_statusvalue_vms
469 PL_archpat_auto
470 PL_cryptseen
471 PL_DBcv
472 PL_generation
473 PL_lastgotoprobe
474 PL_linestart
475 PL_modcount
476 PL_pending_ident
477 PL_sortcxix
478 PL_sublex_info
479 PL_timesbuf
480 main
481 Perl_ErrorNo
482 Perl_GetVars
483 Perl_do_exec3
484 Perl_do_ipcctl
485 Perl_do_ipcget
486 Perl_do_msgrcv
487 Perl_do_msgsnd
488 Perl_do_semop
489 Perl_do_shmio
490 Perl_dump_fds
491 Perl_init_thread_intern
492 Perl_my_bzero
493 Perl_my_htonl
494 Perl_my_ntohl
495 Perl_my_swap
496 Perl_my_chsize
497 Perl_same_dirent
498 Perl_setenv_getix
499 Perl_unlnk
500 Perl_watch
501 Perl_safexcalloc
502 Perl_safexmalloc
503 Perl_safexfree
504 Perl_safexrealloc
505 Perl_my_memcmp
506 Perl_my_memset
507 PL_cshlen
508 PL_cshname
509 PL_opsave
510 Perl_do_exec
511 Perl_getenv_len
512 Perl_my_pclose
513 Perl_my_popen
011f1a1a
JH
514 Perl_sys_intern_init
515 Perl_sys_intern_dup
516 Perl_sys_intern_clear
517 Perl_my_bcopy
518 Perl_PerlIO_write
519 Perl_PerlIO_unread
520 Perl_PerlIO_tell
521 Perl_PerlIO_stdout
522 Perl_PerlIO_stdin
523 Perl_PerlIO_stderr
524 Perl_PerlIO_setlinebuf
525 Perl_PerlIO_set_ptrcnt
526 Perl_PerlIO_set_cnt
527 Perl_PerlIO_seek
528 Perl_PerlIO_read
529 Perl_PerlIO_get_ptr
530 Perl_PerlIO_get_cnt
531 Perl_PerlIO_get_bufsiz
532 Perl_PerlIO_get_base
533 Perl_PerlIO_flush
534 Perl_PerlIO_fill
535 Perl_PerlIO_fileno
536 Perl_PerlIO_error
537 Perl_PerlIO_eof
538 Perl_PerlIO_close
539 Perl_PerlIO_clearerr
540 PerlIO_perlio
2986a63f
JH
541 )];
542}
3cfae81b 543
7766f137
GS
544unless ($define{'DEBUGGING'}) {
545 skip_symbols [qw(
7766f137
GS
546 Perl_deb_growlevel
547 Perl_debop
548 Perl_debprofdump
549 Perl_debstack
550 Perl_debstackptrs
7766f137
GS
551 Perl_sv_peek
552 PL_block_type
553 PL_watchaddr
554 PL_watchok
555 )];
556}
557
558if ($define{'PERL_IMPLICIT_SYS'}) {
559 skip_symbols [qw(
560 Perl_getenv_len
561 Perl_my_popen
562 Perl_my_pclose
563 )];
564}
565else {
566 skip_symbols [qw(
567 PL_Mem
568 PL_MemShared
569 PL_MemParse
570 PL_Env
571 PL_StdIO
572 PL_LIO
573 PL_Dir
574 PL_Sock
575 PL_Proc
576 )];
577}
578
0190f6ec
AT
579unless ($define{'PERL_COPY_ON_WRITE'}) {
580 skip_symbols [qw(
581 Perl_sv_setsv_cow
2aa6a103 582 Perl_sv_release_IVX
0190f6ec
AT
583 )];
584}
585
7c128300
GS
586unless ($define{'PERL_FLEXIBLE_EXCEPTIONS'}) {
587 skip_symbols [qw(
588 PL_protect
589 Perl_default_protect
590 Perl_vdefault_protect
591 )];
592}
593
5bcb3f6c
NIS
594unless ($define{'USE_REENTRANT_API'}) {
595 skip_symbols [qw(
596 PL_reentrant_buffer
597 )];
598}
599
7766f137
GS
600if ($define{'MYMALLOC'}) {
601 emit_symbols [qw(
602 Perl_dump_mstats
827e134a 603 Perl_get_mstats
9c130f5b
NIS
604 Perl_strdup
605 Perl_putenv
7766f137 606 )];
3db8f154 607 if ($define{'USE_ITHREADS'}) {
1feb2720
GS
608 emit_symbols [qw(
609 PL_malloc_mutex
610 )];
611 }
80fc1a6e
GS
612 else {
613 skip_symbols [qw(
614 PL_malloc_mutex
615 )];
616 }
51371543
GS
617}
618else {
7766f137
GS
619 skip_symbols [qw(
620 PL_malloc_mutex
621 Perl_dump_mstats
6ecd3fcb 622 Perl_get_mstats
7766f137
GS
623 Perl_malloced_size
624 )];
625}
626
3db8f154 627unless ($define{'USE_ITHREADS'}) {
7766f137
GS
628 skip_symbols [qw(
629 PL_thr_key
f433d095
GS
630 )];
631}
632
3db8f154 633# USE_5005THREADS symbols. Kept as reference for easier removal
f433d095 634 skip_symbols [qw(
7766f137
GS
635 PL_sv_mutex
636 PL_strtab_mutex
637 PL_svref_mutex
7766f137
GS
638 PL_cred_mutex
639 PL_eval_mutex
6940069f
GS
640 PL_fdpid_mutex
641 PL_sv_lock_mutex
7766f137
GS
642 PL_eval_cond
643 PL_eval_owner
644 PL_threads_mutex
645 PL_nthreads
646 PL_nthreads_cond
647 PL_threadnum
648 PL_threadsv_names
649 PL_thrsv
650 PL_vtbl_mutex
7766f137
GS
651 Perl_condpair_magic
652 Perl_new_struct_thread
653 Perl_per_thread_magicals
654 Perl_thread_create
655 Perl_find_threadsv
656 Perl_unlock_condpair
657 Perl_magic_mutexfree
4755096e 658 Perl_sv_lock
7766f137 659 )];
7766f137
GS
660
661unless ($define{'USE_ITHREADS'}) {
662 skip_symbols [qw(
663 PL_ptr_table
534825c4 664 PL_op_mutex
7e95b20d
JH
665 PL_regex_pad
666 PL_regex_padav
f2f7cecd
MB
667 PL_sharedsv_space
668 PL_sharedsv_space_mutex
e2975953 669 PL_dollarzero_mutex
7766f137
GS
670 Perl_dirp_dup
671 Perl_cx_dup
672 Perl_si_dup
673 Perl_any_dup
674 Perl_ss_dup
675 Perl_fp_dup
676 Perl_gp_dup
677 Perl_he_dup
678 Perl_mg_dup
679 Perl_re_dup
680 Perl_sv_dup
681 Perl_sys_intern_dup
86593e8d 682 Perl_ptr_table_clear
7766f137 683 Perl_ptr_table_fetch
86593e8d 684 Perl_ptr_table_free
7766f137 685 Perl_ptr_table_new
4ac9195f
MS
686 Perl_ptr_table_clear
687 Perl_ptr_table_free
7766f137
GS
688 Perl_ptr_table_split
689 Perl_ptr_table_store
690 perl_clone
691 perl_clone_using
038f0558
JH
692 Perl_sharedsv_find
693 Perl_sharedsv_init
694 Perl_sharedsv_lock
695 Perl_sharedsv_new
696 Perl_sharedsv_thrcnt_dec
697 Perl_sharedsv_thrcnt_inc
698 Perl_sharedsv_unlock
7766f137
GS
699 )];
700}
701
702unless ($define{'PERL_IMPLICIT_CONTEXT'}) {
703 skip_symbols [qw(
704 Perl_croak_nocontext
705 Perl_die_nocontext
706 Perl_deb_nocontext
707 Perl_form_nocontext
e0f4245d 708 Perl_load_module_nocontext
7766f137
GS
709 Perl_mess_nocontext
710 Perl_warn_nocontext
711 Perl_warner_nocontext
712 Perl_newSVpvf_nocontext
713 Perl_sv_catpvf_nocontext
714 Perl_sv_setpvf_nocontext
715 Perl_sv_catpvf_mg_nocontext
716 Perl_sv_setpvf_mg_nocontext
717 )];
718}
719
720unless ($define{'PERL_IMPLICIT_SYS'}) {
721 skip_symbols [qw(
722 perl_alloc_using
014822e4 723 perl_clone_using
7766f137
GS
724 )];
725}
726
727unless ($define{'FAKE_THREADS'}) {
728 skip_symbols [qw(PL_curthr)];
729}
730
ac6bedea
JH
731unless ($define{'PL_OP_SLAB_ALLOC'}) {
732 skip_symbols [qw(
733 PL_OpPtr
734 PL_OpSlab
735 PL_OpSpace
736 )];
737}
738
d97afc04
AT
739unless ($define{'THREADS_HAVE_PIDS'}) {
740 skip_symbols [qw(PL_ppid)];
741}
742
7766f137
GS
743sub readvar {
744 my $file = shift;
745 my $proc = shift || sub { "PL_$_[2]" };
746 open(VARS,$file) || die "Cannot open $file: $!\n";
747 my @syms;
748 while (<VARS>) {
749 # All symbols have a Perl_ prefix because that's what embed.h
750 # sticks in front of them.
751 push(@syms, &$proc($1,$2,$3)) if (/\bPERLVAR(A?I?C?)\(([IGT])(\w+)/);
9df9a5cd
NIS
752 }
753 close(VARS);
7766f137
GS
754 return \@syms;
755}
756
7766f137
GS
757if ($define{'PERL_GLOBAL_STRUCT'}) {
758 my $global = readvar($perlvars_h);
759 skip_symbols $global;
760 emit_symbol('Perl_GetVars');
761 emit_symbols [qw(PL_Vars PL_VarsPtr)] unless $CCTYPE eq 'GCC';
762}
36c15d3f 763
22c35a8c
GS
764# functions from *.sym files
765
954c1994 766my @syms = ($global_sym, $globvar_sym); # $pp_sym is not part of the API
549a6b10 767
d892637e
NIS
768# Symbols that are the public face of the PerlIO layers implementation
769# These are in _addition to_ the public face of the abstraction
770# and need to be exported to allow XS modules to implement layers
9df9a5cd 771my @layer_syms = qw(
db76e01e
JH
772 PerlIOBase_binmode
773 PerlIOBase_clearerr
774 PerlIOBase_close
775 PerlIOBase_dup
776 PerlIOBase_eof
777 PerlIOBase_error
778 PerlIOBase_fileno
779 PerlIOBase_noop_fail
780 PerlIOBase_noop_ok
781 PerlIOBase_popped
782 PerlIOBase_read
783 PerlIOBase_setlinebuf
784 PerlIOBase_unread
785 PerlIOBuf_bufsiz
786 PerlIOBuf_close
787 PerlIOBuf_dup
788 PerlIOBuf_fill
789 PerlIOBuf_flush
790 PerlIOBuf_get_base
791 PerlIOBuf_get_cnt
792 PerlIOBuf_get_ptr
793 PerlIOBuf_open
794 PerlIOBuf_popped
795 PerlIOBuf_pushed
796 PerlIOBuf_read
797 PerlIOBuf_seek
798 PerlIOBuf_set_ptrcnt
799 PerlIOBuf_tell
800 PerlIOBuf_unread
801 PerlIOBuf_write
802 PerlIO_allocate
803 PerlIO_apply_layers
804 PerlIO_arg_fetch
805 PerlIO_debug
806 PerlIO_define_layer
807 PerlIO_layer_fetch
808 PerlIO_list_free
809 PerlIO_modestr
810 PerlIO_parse_layers
811 PerlIO_pending
812 PerlIO_perlio
813 PerlIO_pop
814 PerlIO_push
815 PerlIO_sv_dup
816 Perl_PerlIO_clearerr
817 Perl_PerlIO_close
818 Perl_PerlIO_eof
819 Perl_PerlIO_error
820 Perl_PerlIO_fileno
821 Perl_PerlIO_fill
822 Perl_PerlIO_flush
823 Perl_PerlIO_get_base
824 Perl_PerlIO_get_bufsiz
825 Perl_PerlIO_get_cnt
826 Perl_PerlIO_get_ptr
827 Perl_PerlIO_read
828 Perl_PerlIO_seek
829 Perl_PerlIO_set_cnt
830 Perl_PerlIO_set_ptrcnt
831 Perl_PerlIO_setlinebuf
832 Perl_PerlIO_stderr
833 Perl_PerlIO_stdin
834 Perl_PerlIO_stdout
835 Perl_PerlIO_tell
836 Perl_PerlIO_unread
837 Perl_PerlIO_write
9df9a5cd 838);
a5564b91
JH
839if ($PLATFORM eq 'netware') {
840 push(@layer_syms,'PL_def_layerlist','PL_known_layers','PL_perlio');
841}
d892637e 842
7766f137 843if ($define{'USE_PERLIO'}) {
d892637e
NIS
844 # Export the symols that make up the PerlIO abstraction, regardless
845 # of its implementation - read from a file
084592ab 846 push @syms, $perlio_sym;
d892637e
NIS
847
848 # This part is then dependent on how the abstraction is implemented
084592ab 849 if ($define{'USE_SFIO'}) {
d892637e 850 # Old legacy non-stdio "PerlIO"
9df9a5cd 851 skip_symbols \@layer_syms;
084592ab 852 # SFIO defines most of the PerlIO routines as macros
d892637e
NIS
853 # So undo most of what $perlio_sym has just done - d'oh !
854 # Perhaps it would be better to list the ones which do exist
855 # And emit them
084592ab
CN
856 skip_symbols [qw(
857 PerlIO_canset_cnt
858 PerlIO_clearerr
859 PerlIO_close
860 PerlIO_eof
861 PerlIO_error
862 PerlIO_exportFILE
863 PerlIO_fast_gets
864 PerlIO_fdopen
865 PerlIO_fileno
866 PerlIO_findFILE
867 PerlIO_flush
868 PerlIO_get_base
869 PerlIO_get_bufsiz
870 PerlIO_get_cnt
871 PerlIO_get_ptr
872 PerlIO_getc
873 PerlIO_getname
874 PerlIO_has_base
875 PerlIO_has_cntptr
876 PerlIO_importFILE
877 PerlIO_open
878 PerlIO_printf
879 PerlIO_putc
880 PerlIO_puts
881 PerlIO_read
882 PerlIO_releaseFILE
883 PerlIO_reopen
884 PerlIO_rewind
885 PerlIO_seek
886 PerlIO_set_cnt
887 PerlIO_set_ptrcnt
888 PerlIO_setlinebuf
889 PerlIO_sprintf
890 PerlIO_stderr
891 PerlIO_stdin
892 PerlIO_stdout
893 PerlIO_stdoutf
894 PerlIO_tell
895 PerlIO_ungetc
896 PerlIO_vprintf
897 PerlIO_write
bcdb689b
JH
898 PerlIO_perlio
899 Perl_PerlIO_clearerr
900 Perl_PerlIO_close
901 Perl_PerlIO_eof
902 Perl_PerlIO_error
903 Perl_PerlIO_fileno
904 Perl_PerlIO_fill
905 Perl_PerlIO_flush
906 Perl_PerlIO_get_base
907 Perl_PerlIO_get_bufsiz
908 Perl_PerlIO_get_cnt
909 Perl_PerlIO_get_ptr
910 Perl_PerlIO_read
911 Perl_PerlIO_seek
912 Perl_PerlIO_set_cnt
913 Perl_PerlIO_set_ptrcnt
914 Perl_PerlIO_setlinebuf
915 Perl_PerlIO_stderr
916 Perl_PerlIO_stdin
917 Perl_PerlIO_stdout
918 Perl_PerlIO_tell
919 Perl_PerlIO_unread
920 Perl_PerlIO_write
ffcf5686
JH
921 PL_def_layerlist
922 PL_known_layers
923 PL_perlio
084592ab
CN
924 )];
925 }
d892637e
NIS
926 else {
927 # PerlIO with layers - export implementation
928 emit_symbols \@layer_syms;
929 }
5138f914 930} else {
d892637e
NIS
931 # -Uuseperlio
932 # Skip the PerlIO layer symbols - although
933 # nothing should have exported them any way
9df9a5cd 934 skip_symbols \@layer_syms;
1e8a8f59
NIS
935 skip_symbols [qw(PL_def_layerlist PL_known_layers PL_perlio)];
936
d892637e
NIS
937 # Also do NOT add abstraction symbols from $perlio_sym
938 # abstraction is done as #define to stdio
939 # Remaining remnants that _may_ be functions
940 # are handled in <DATA>
9df9a5cd 941}
7766f137
GS
942
943for my $syms (@syms) {
944 open (GLOBAL, "<$syms") || die "failed to open $syms: $!\n";
945 while (<GLOBAL>) {
946 next if (!/^[A-Za-z]/);
947 # Functions have a Perl_ prefix
948 # Variables have a PL_ prefix
949 chomp($_);
950 my $symbol = ($syms =~ /var\.sym$/i ? "PL_" : "");
951 $symbol .= $_;
952 emit_symbol($symbol) unless exists $skip{$symbol};
953 }
954 close(GLOBAL);
955}
0a753a76 956
22c35a8c 957# variables
0a753a76 958
acfe0abc 959if ($define{'MULTIPLICITY'}) {
1acb48c9 960 for my $f ($perlvars_h, $intrpvar_h, $thrdvar_h) {
18c4b137
JH
961 my $glob = readvar($f, sub { "Perl_" . $_[1] . $_[2] . "_ptr" });
962 emit_symbols $glob;
18c4b137 963 }
1acb48c9 964 # XXX AIX seems to want the perlvars.h symbols, for some reason
5c728af0 965 if ($PLATFORM eq 'aix' or $PLATFORM eq 'os2') { # OS/2 needs PL_thr_key
1acb48c9 966 my $glob = readvar($perlvars_h);
51371543
GS
967 emit_symbols $glob;
968 }
969}
970else {
971 unless ($define{'PERL_GLOBAL_STRUCT'}) {
549a6b10 972 my $glob = readvar($perlvars_h);
51371543 973 emit_symbols $glob;
9df9a5cd 974 }
51371543 975 unless ($define{'MULTIPLICITY'}) {
549a6b10 976 my $glob = readvar($intrpvar_h);
51371543 977 emit_symbols $glob;
9df9a5cd 978 }
3db8f154 979 unless ($define{'MULTIPLICITY'}) {
549a6b10 980 my $glob = readvar($thrdvar_h);
51371543 981 emit_symbols $glob;
9df9a5cd 982 }
51371543 983}
0a753a76 984
549a6b10
JH
985sub try_symbol {
986 my $symbol = shift;
22239a37 987
4d6b4052 988 return if $symbol !~ /^[A-Za-z_]/;
549a6b10
JH
989 return if $symbol =~ /^\#/;
990 $symbol =~s/\r//g;
991 chomp($symbol);
43cd9f80 992 return if exists $skip{$symbol};
549a6b10 993 emit_symbol($symbol);
3e3baf6d 994}
0a753a76 995
549a6b10
JH
996while (<DATA>) {
997 try_symbol($_);
ac4c12e7
GS
998}
999
18f68570 1000if ($PLATFORM =~ /^win(?:32|ce)$/) {
549a6b10 1001 foreach my $symbol (qw(
00b02797
JH
1002 setuid
1003 setgid
7766f137 1004 boot_DynaLoader
7766f137 1005 Perl_init_os_extras
c44d3fdb 1006 Perl_thread_create
7766f137 1007 Perl_win32_init
23f519f0 1008 Perl_win32_term
7766f137 1009 RunPerl
5290524f 1010 win32_async_check
7766f137
GS
1011 win32_errno
1012 win32_environ
7766f137
GS
1013 win32_abort
1014 win32_fstat
1015 win32_stat
1016 win32_pipe
1017 win32_popen
1018 win32_pclose
1019 win32_rename
1020 win32_setmode
1021 win32_lseek
1022 win32_tell
1023 win32_dup
1024 win32_dup2
1025 win32_open
1026 win32_close
1027 win32_eof
1028 win32_read
1029 win32_write
1030 win32_spawnvp
1031 win32_mkdir
1032 win32_rmdir
1033 win32_chdir
1034 win32_flock
1035 win32_execv
1036 win32_execvp
1037 win32_htons
1038 win32_ntohs
1039 win32_htonl
1040 win32_ntohl
1041 win32_inet_addr
1042 win32_inet_ntoa
1043 win32_socket
1044 win32_bind
1045 win32_listen
1046 win32_accept
1047 win32_connect
1048 win32_send
1049 win32_sendto
1050 win32_recv
1051 win32_recvfrom
1052 win32_shutdown
1053 win32_closesocket
1054 win32_ioctlsocket
1055 win32_setsockopt
1056 win32_getsockopt
1057 win32_getpeername
1058 win32_getsockname
1059 win32_gethostname
1060 win32_gethostbyname
1061 win32_gethostbyaddr
1062 win32_getprotobyname
1063 win32_getprotobynumber
1064 win32_getservbyname
1065 win32_getservbyport
1066 win32_select
1067 win32_endhostent
1068 win32_endnetent
1069 win32_endprotoent
1070 win32_endservent
1071 win32_getnetent
1072 win32_getnetbyname
1073 win32_getnetbyaddr
1074 win32_getprotoent
1075 win32_getservent
1076 win32_sethostent
1077 win32_setnetent
1078 win32_setprotoent
1079 win32_setservent
1080 win32_getenv
1081 win32_putenv
1082 win32_perror
7766f137
GS
1083 win32_malloc
1084 win32_calloc
1085 win32_realloc
1086 win32_free
1087 win32_sleep
1088 win32_times
1089 win32_access
1090 win32_alarm
1091 win32_chmod
1092 win32_open_osfhandle
1093 win32_get_osfhandle
1094 win32_ioctl
1095 win32_link
1096 win32_unlink
1097 win32_utime
57ab3dfe 1098 win32_gettimeofday
7766f137
GS
1099 win32_uname
1100 win32_wait
1101 win32_waitpid
1102 win32_kill
1103 win32_str_os_error
1104 win32_opendir
1105 win32_readdir
1106 win32_telldir
1107 win32_seekdir
1108 win32_rewinddir
1109 win32_closedir
1110 win32_longpath
1111 win32_os_id
1112 win32_getpid
1113 win32_crypt
1114 win32_dynaload
df3728a2
JH
1115 win32_get_childenv
1116 win32_free_childenv
1117 win32_clearenv
1118 win32_get_childdir
1119 win32_free_childdir
00b02797
JH
1120 win32_stdin
1121 win32_stdout
1122 win32_stderr
1123 win32_ferror
1124 win32_feof
1125 win32_strerror
1126 win32_fprintf
1127 win32_printf
1128 win32_vfprintf
1129 win32_vprintf
1130 win32_fread
1131 win32_fwrite
1132 win32_fopen
1133 win32_fdopen
1134 win32_freopen
1135 win32_fclose
1136 win32_fputs
1137 win32_fputc
1138 win32_ungetc
1139 win32_getc
1140 win32_fileno
1141 win32_clearerr
1142 win32_fflush
1143 win32_ftell
1144 win32_fseek
1145 win32_fgetpos
1146 win32_fsetpos
1147 win32_rewind
1148 win32_tmpfile
1149 win32_setbuf
1150 win32_setvbuf
1151 win32_flushall
1152 win32_fcloseall
1153 win32_fgets
1154 win32_gets
1155 win32_fgetc
1156 win32_putc
1157 win32_puts
1158 win32_getchar
1159 win32_putchar
7766f137
GS
1160 ))
1161 {
549a6b10
JH
1162 try_symbol($symbol);
1163 }
1164}
3cfae81b 1165elsif ($PLATFORM eq 'os2') {
7766f137
GS
1166 open MAP, 'miniperl.map' or die 'Cannot read miniperl.map';
1167 /^\s*[\da-f:]+\s+(\w+)/i and $mapped{$1}++ foreach <MAP>;
1168 close MAP or die 'Cannot close miniperl.map';
1169
ad6971c8 1170 @missing = grep { !exists $mapped{$_} }
7766f137 1171 keys %export;
c6261f3b 1172 @missing = grep { !exists $exportperlmalloc{$_} } @missing;
7766f137 1173 delete $export{$_} foreach @missing;
3cfae81b 1174}
084592ab
CN
1175elsif ($PLATFORM eq 'MacOS') {
1176 open MACSYMS, 'macperl.sym' or die 'Cannot read macperl.sym';
1177
1178 while (<MACSYMS>) {
1179 try_symbol($_);
1180 }
1181
1182 close MACSYMS;
1183}
2986a63f
JH
1184elsif ($PLATFORM eq 'netware') {
1185foreach my $symbol (qw(
1186 boot_DynaLoader
1187 Perl_init_os_extras
1188 Perl_thread_create
1189 Perl_nw5_init
1190 RunPerl
1191 AllocStdPerl
1192 FreeStdPerl
1193 do_spawn2
1194 do_aspawn
1195 nw_uname
1196 nw_stdin
1197 nw_stdout
1198 nw_stderr
1199 nw_feof
1200 nw_ferror
1201 nw_fopen
1202 nw_fclose
1203 nw_clearerr
1204 nw_getc
1205 nw_fgets
1206 nw_fputc
1207 nw_fputs
1208 nw_fflush
1209 nw_ungetc
1210 nw_fileno
1211 nw_fdopen
1212 nw_freopen
1213 nw_fread
1214 nw_fwrite
1215 nw_setbuf
1216 nw_setvbuf
1217 nw_vfprintf
1218 nw_ftell
1219 nw_fseek
1220 nw_rewind
1221 nw_tmpfile
1222 nw_fgetpos
1223 nw_fsetpos
1224 nw_dup
1225 nw_access
1226 nw_chmod
1227 nw_chsize
1228 nw_close
1229 nw_dup2
1230 nw_flock
1231 nw_isatty
1232 nw_link
1233 nw_lseek
1234 nw_stat
1235 nw_mktemp
1236 nw_open
1237 nw_read
1238 nw_rename
1239 nw_setmode
1240 nw_unlink
1241 nw_utime
1242 nw_write
1243 nw_chdir
1244 nw_rmdir
1245 nw_closedir
1246 nw_opendir
1247 nw_readdir
1248 nw_rewinddir
1249 nw_seekdir
1250 nw_telldir
1251 nw_htonl
1252 nw_htons
1253 nw_ntohl
1254 nw_ntohs
1255 nw_accept
1256 nw_bind
1257 nw_connect
1258 nw_endhostent
1259 nw_endnetent
1260 nw_endprotoent
1261 nw_endservent
1262 nw_gethostbyaddr
1263 nw_gethostbyname
1264 nw_gethostent
1265 nw_gethostname
1266 nw_getnetbyaddr
1267 nw_getnetbyname
1268 nw_getnetent
1269 nw_getpeername
1270 nw_getprotobyname
1271 nw_getprotobynumber
1272 nw_getprotoent
1273 nw_getservbyname
1274 nw_getservbyport
1275 nw_getservent
1276 nw_getsockname
1277 nw_getsockopt
1278 nw_inet_addr
1279 nw_listen
1280 nw_socket
1281 nw_recv
1282 nw_recvfrom
1283 nw_select
1284 nw_send
1285 nw_sendto
1286 nw_sethostent
1287 nw_setnetent
1288 nw_setprotoent
1289 nw_setservent
3a0827a6 1290 nw_setsockopt
4d76e4b4 1291 nw_inet_ntoa
2986a63f
JH
1292 nw_shutdown
1293 nw_crypt
1294 nw_execvp
1295 nw_kill
1296 nw_Popen
1297 nw_Pclose
1298 nw_Pipe
1299 nw_times
1300 nw_waitpid
1301 nw_getpid
1302 nw_spawnvp
1303 nw_os_id
1304 nw_open_osfhandle
1305 nw_get_osfhandle
1306 nw_abort
1307 nw_sleep
1308 nw_wait
1309 nw_dynaload
1310 nw_strerror
1311 fnFpSetMode
1312 fnInsertHashListAddrs
1313 fnGetHashListAddrs
1314 Perl_deb
011f1a1a
JH
1315 Perl_sv_setsv
1316 Perl_sv_catsv
1317 Perl_sv_catpvn
1318 Perl_sv_2pv
f355267c
JH
1319 nw_freeenviron
1320 Remove_Thread_Ctx
2986a63f
JH
1321 ))
1322 {
1323 try_symbol($symbol);
1324 }
1325}
22239a37 1326
549a6b10
JH
1327# Now all symbols should be defined because
1328# next we are going to output them.
1329
7766f137
GS
1330foreach my $symbol (sort keys %export) {
1331 output_symbol($symbol);
1332}
549a6b10 1333
011f1a1a 1334if ($PLATFORM eq 'os2') {
52e4c282 1335 print "; LAST_ORDINAL=$sym_ord\n";
2986a63f
JH
1336}
1337
549a6b10 1338sub emit_symbol {
7766f137 1339 my $symbol = shift;
9df9a5cd 1340 chomp($symbol);
7766f137 1341 $export{$symbol} = 1;
549a6b10
JH
1342}
1343
1344sub output_symbol {
1345 my $symbol = shift;
18f68570 1346 if ($PLATFORM =~ /^win(?:32|ce)$/) {
549a6b10 1347 $symbol = "_$symbol" if $CCTYPE eq 'BORLAND';
520c758a 1348 print "\t$symbol\n";
549a6b10
JH
1349# XXX: binary compatibility between compilers is an exercise
1350# in frustration :-(
1351# if ($CCTYPE eq "BORLAND") {
1352# # workaround Borland quirk by exporting both the straight
1353# # name and a name with leading underscore. Note the
1354# # alias *must* come after the symbol itself, if both
1355# # are to be exported. (Linker bug?)
1356# print "\t_$symbol\n";
1357# print "\t$symbol = _$symbol\n";
1358# }
1359# elsif ($CCTYPE eq 'GCC') {
1360# # Symbols have leading _ whole process is $%@"% slow
1361# # so skip aliases for now
1362# nprint "\t$symbol\n";
1363# }
1364# else {
1365# # for binary coexistence, export both the symbol and
1366# # alias with leading underscore
1367# print "\t$symbol\n";
1368# print "\t_$symbol = $symbol\n";
1369# }
7766f137
GS
1370 }
1371 elsif ($PLATFORM eq 'os2') {
52e4c282
IZ
1372 printf qq( %-31s \@%s\n),
1373 qq("$symbol"), $ordinal{$symbol} || ++$sym_ord;
78232bc0
JH
1374 printf qq( %-31s \@%s\n),
1375 qq("$exportperlmalloc{$symbol}" = "$symbol"),
1376 $ordinal{$exportperlmalloc{$symbol}} || ++$sym_ord
1377 if $exportperlmalloc and exists $exportperlmalloc{$symbol};
7766f137 1378 }
084592ab 1379 elsif ($PLATFORM eq 'aix' || $PLATFORM eq 'MacOS') {
549a6b10
JH
1380 print "$symbol\n";
1381 }
2986a63f
JH
1382 elsif ($PLATFORM eq 'netware') {
1383 print "\t$symbol,\n";
1384 }
549a6b10
JH
1385}
1386
13871;
1388__DATA__
1389# extra globals not included above.
8437356b 1390Perl_cxinc
549a6b10 1391perl_alloc
7766f137 1392perl_alloc_using
014822e4
GS
1393perl_clone
1394perl_clone_using
549a6b10
JH
1395perl_construct
1396perl_destruct
1397perl_free
1398perl_parse
1399perl_run
44798d05 1400# Oddities from PerlIO
568ad336 1401PerlIO_binmode
8437356b 1402PerlIO_getpos
568ad336 1403PerlIO_init
568ad336 1404PerlIO_setpos
568ad336 1405PerlIO_sprintf
8437356b
MB
1406PerlIO_sv_dup
1407PerlIO_tmpfile
8437356b
MB
1408PerlIO_vsprintf
1409perlsio_binmode