3 # Create the export list for perl.
5 # Needed by WIN32 and OS/2 for creating perl.dll,
6 # and by AIX for creating libperl.a when -Duseshrplib is in effect,
7 # and by VMS for creating perlshr.exe.
9 # Reads from information stored in
11 # %Config::Config (ie config.sh)
16 # miniperl.map (on OS/2)
17 # perl5.def (on OS/2; this is the old version of the file being made)
22 # plus long lists of function names hard-coded directly in this script.
24 # Writes the result to STDOUT.
26 # Normally this script is invoked from a makefile (e.g. win32/Makefile),
27 # which redirects STDOUT to a suitable file, such as:
35 BEGIN { unshift @INC, "lib" }
39 my %ARGS = (CCTYPE => 'MSVC', TARG_DIR => '');
45 sub process_cc_flags {
46 foreach (map {split /\s+/, $_} @_) {
47 $define{$1} = $2 // 1 if /^-D(\w+)(?:=(.+))?/;
53 if ($flag =~ /^(?:CC_FLAGS=)?(-D\w.*)/) {
55 } elsif ($flag =~ /^(CCTYPE|FILETYPE|PLATFORM|TARG_DIR)=(.+)$/) {
57 } elsif ($flag eq '--sort-fold') {
62 require "$ARGS{TARG_DIR}regen/embed_lib.pl";
65 my @PLATFORM = qw(aix win32 wince os2 netware vms test);
67 @PLATFORM{@PLATFORM} = ();
69 die "PLATFORM undefined, must be one of: @PLATFORM\n"
70 unless defined $ARGS{PLATFORM};
71 die "PLATFORM must be one of: @PLATFORM\n"
72 unless exists $PLATFORM{$ARGS{PLATFORM}};
75 # Is the following guard strictly necessary? Added during refactoring
76 # to keep the same behaviour when merging other code into here.
77 process_cc_flags(@Config{qw(ccflags optimize)})
78 if $ARGS{PLATFORM} ne 'win32' && $ARGS{PLATFORM} ne 'wince'
79 && $ARGS{PLATFORM} ne 'netware';
81 # Add the compile-time options that miniperl was built with to %define.
82 # On Win32 these are not the same options as perl itself will be built
83 # with since miniperl is built with a canned config (one of the win32/
84 # config_H.*) and none of the BUILDOPT's that are set in the makefiles,
85 # but they do include some #define's that are hard-coded in various
86 # source files and header files and don't include any BUILDOPT's that
87 # the user might have chosen to disable because the canned configs are
88 # minimal configs that don't include any of those options.
90 my @options = sort(Config::bincompat_options(), Config::non_bincompat_options());
91 print STDERR "Options: (@options)\n" unless $ARGS{PLATFORM} eq 'test';
92 $define{$_} = 1 foreach @options;
94 my %exportperlmalloc =
96 Perl_malloc => "malloc",
98 Perl_realloc => "realloc",
99 Perl_calloc => "calloc",
102 my $exportperlmalloc = $ARGS{PLATFORM} eq 'os2';
104 open(CFG, '<', 'config.h') || die "Cannot open config.h: $!\n";
106 $define{$1} = 1 if /^\s*\#\s*define\s+(MYMALLOC|MULTIPLICITY
107 |SPRINTF_RETURNS_STRLEN
109 |(?:PERL|USE|HAS)_\w+)\b/x;
113 # perl.h logic duplication begins
115 if ($define{USE_ITHREADS}) {
116 if (!$define{MULTIPLICITY}) {
117 $define{MULTIPLICITY} = 1;
121 $define{PERL_IMPLICIT_CONTEXT} ||=
122 $define{USE_ITHREADS} ||
123 $define{MULTIPLICITY} ;
125 if ($define{USE_ITHREADS} && $ARGS{PLATFORM} ne 'win32' && $^O ne 'darwin') {
126 $define{USE_REENTRANT_API} = 1;
129 # perl.h logic duplication ends
131 print STDERR "Defines: (" . join(' ', sort keys %define) . ")\n"
132 unless $ARGS{PLATFORM} eq 'test';
137 if ($ARGS{PLATFORM} eq 'os2') {
138 if (open my $fh, '<', 'perl5.def') {
140 last if /^\s*EXPORTS\b/;
143 $ordinal{$1} = $2 if /^\s*"(\w+)"\s*(?:=\s*"\w+"\s*)?\@(\d+)\s*$/;
144 # This allows skipping ordinals which were used in older versions
145 $sym_ord = $1 if /^\s*;\s*LAST_ORDINAL\s*=\s*(\d+)\s*$/;
147 $sym_ord < $_ and $sym_ord = $_ for values %ordinal; # Take the max
152 # All platforms export boot_DynaLoader unconditionally.
153 my %export = ( boot_DynaLoader => 1 );
156 foreach my $symbol (@_) {
157 ++$export{$symbol} unless exists $skip{$symbol};
162 # $hash is the hash that we're adding to. For one of our callers, it will
163 # actually be the skip hash but that doesn't affect the intent of what
164 # we're doing, as in that case we skip adding something to the skip hash
165 # for the second time.
167 my $file = $ARGS{TARG_DIR} . shift;
170 open my $vars, '<', $file or die die "Cannot open $file: $!\n";
173 # All symbols have a Perl_ prefix because that's what embed.h sticks
174 # in front of them. The A?I?S?C? is strictly speaking wrong.
175 next unless /\bPERLVAR(A?I?S?C?)\(([IGT]),\s*(\w+)/;
178 my $symbol = $proc ? &$proc($1,$2,$3) : $var;
179 ++$hash->{$symbol} unless exists $skip{$var};
183 if ($ARGS{PLATFORM} ne 'os2') {
184 ++$skip{$_} foreach qw(
198 if ($ARGS{PLATFORM} eq 'vms') {
199 ++$skip{PL_statusvalue_posix};
200 # This is a wrapper if we have symlink, not a replacement
202 ++$skip{Perl_my_symlink} unless $Config{d_symlink};
204 ++$skip{PL_statusvalue_vms};
205 if ($ARGS{PLATFORM} ne 'aix') {
206 ++$skip{$_} foreach qw(
218 if ($ARGS{PLATFORM} ne 'vms') {
219 # VMS does its own thing for these symbols.
220 ++$skip{$_} foreach qw(
221 PL_sig_handlers_initted
225 if ($ARGS{PLATFORM} ne 'win32') {
226 ++$skip{$_} foreach qw(
234 unless ($define{UNLINK_ALL_VERSIONS}) {
238 unless ($define{'DEBUGGING'}) {
239 ++$skip{$_} foreach qw(
253 if ($define{'PERL_IMPLICIT_SYS'}) {
254 ++$skip{$_} foreach qw(
258 ++$export{$_} foreach qw(perl_get_host_info perl_alloc_override);
259 ++$export{perl_clone_host} if $define{USE_ITHREADS};
262 ++$skip{$_} foreach qw(
277 unless ($define{'PERL_OLD_COPY_ON_WRITE'}
278 || $define{'PERL_NEW_COPY_ON_WRITE'}) {
279 ++$skip{Perl_sv_setsv_cow};
282 unless ($define{'USE_REENTRANT_API'}) {
283 ++$skip{PL_reentrant_buffer};
286 if ($define{'MYMALLOC'}) {
295 unless ($define{USE_ITHREADS}) {
296 ++$skip{PL_malloc_mutex}
300 ++$skip{$_} foreach qw(
309 if ($define{'PERL_USE_SAFE_PUTENV'}) {
310 ++$skip{PL_use_safe_putenv};
313 unless ($define{'USE_ITHREADS'}) {
317 # USE_5005THREADS symbols. Kept as reference for easier removal
318 ++$skip{$_} foreach qw(
336 Perl_new_struct_thread
337 Perl_per_thread_magicals
345 unless ($define{'USE_ITHREADS'}) {
346 ++$skip{$_} foreach qw(
359 Perl_clone_params_del
360 Perl_clone_params_new
379 Perl_stashpv_hvname_match
380 Perl_regdupe_internal
385 unless ($define{'PERL_IMPLICIT_CONTEXT'}) {
386 ++$skip{$_} foreach qw(
395 Perl_load_module_nocontext
398 Perl_warner_nocontext
399 Perl_newSVpvf_nocontext
400 Perl_sv_catpvf_nocontext
401 Perl_sv_setpvf_nocontext
402 Perl_sv_catpvf_mg_nocontext
403 Perl_sv_setpvf_mg_nocontext
409 unless ($define{'PERL_NEED_APPCTX'}) {
413 unless ($define{'PERL_NEED_TIMESBASE'}) {
414 ++$skip{PL_timesbase};
417 unless ($define{'DEBUG_LEAKING_SCALARS'}) {
418 ++$skip{PL_sv_serial};
421 unless ($define{'DEBUG_LEAKING_SCALARS_FORK_DUMP'}) {
422 ++$skip{PL_dumper_fd};
425 unless ($define{'PERL_DONT_CREATE_GVSV'}) {
426 ++$skip{Perl_gv_SVadd};
429 if ($define{'SPRINTF_RETURNS_STRLEN'}) {
430 ++$skip{Perl_my_sprintf};
433 unless ($define{'PERL_USES_PL_PIDSTATUS'}) {
434 ++$skip{PL_pidstatus};
437 unless ($define{'PERL_TRACK_MEMPOOL'}) {
438 ++$skip{PL_memory_debug_header};
441 unless ($define{PERL_MAD}) {
442 ++$skip{$_} foreach qw(
448 unless ($define{'MULTIPLICITY'}) {
449 ++$skip{$_} foreach qw(
451 PL_interp_size_5_16_0
455 unless ($define{'PERL_GLOBAL_STRUCT'}) {
456 ++$skip{PL_global_struct_size};
459 unless ($define{'PERL_GLOBAL_STRUCT_PRIVATE'}) {
460 ++$skip{$_} foreach qw(
466 unless ($define{HAS_MMAP}) {
467 ++$skip{PL_mmap_page_size};
470 if ($define{HAS_SIGACTION}) {
471 ++$skip{PL_sig_trapped};
473 if ($ARGS{PLATFORM} eq 'vms') {
474 # FAKE_PERSISTENT_SIGNAL_HANDLERS defined as !defined(HAS_SIGACTION)
475 ++$skip{PL_sig_ignoring};
476 ++$skip{PL_sig_handlers_initted} unless $define{KILL_BY_SIGPRC};
480 if ($ARGS{PLATFORM} eq 'vms' && !$define{KILL_BY_SIGPRC}) {
481 # FAKE_DEFAULT_SIGNAL_HANDLERS defined as KILL_BY_SIGPRC
482 ++$skip{Perl_csighandler_init};
483 ++$skip{Perl_my_kill};
484 ++$skip{Perl_sig_to_vmscondition};
485 ++$skip{PL_sig_defaulting};
486 ++$skip{PL_sig_handlers_initted} unless !$define{HAS_SIGACTION};
489 unless ($define{USE_LOCALE_COLLATE}) {
490 ++$skip{$_} foreach qw(
493 PL_collation_standard
497 Perl_sv_collxfrm_flags
501 unless ($define{USE_LOCALE_NUMERIC}) {
502 ++$skip{$_} foreach qw(
510 unless ($define{HAVE_INTERP_INTERN}) {
511 ++$skip{$_} foreach qw(
512 Perl_sys_intern_clear
519 if ($define{HAS_SIGNBIT}) {
520 ++$skip{Perl_signbit};
523 if ($define{'PERL_GLOBAL_STRUCT'}) {
524 readvar('perlvars.h', \%skip);
525 # This seems like the least ugly way to cope with the fact that PL_sh_path
526 # is mentioned in perlvar.h and globvar.sym, and always exported.
527 delete $skip{PL_sh_path};
528 ++$export{Perl_GetVars};
529 try_symbols(qw(PL_Vars PL_VarsPtr)) unless $ARGS{CCTYPE} eq 'GCC';
531 ++$skip{$_} foreach qw(Perl_init_global_struct Perl_free_global_struct);
534 # functions from *.sym files
536 my @syms = qw(globvar.sym);
538 # Symbols that are the public face of the PerlIO layers implementation
539 # These are in _addition to_ the public face of the abstraction
540 # and need to be exported to allow XS modules to implement layers
555 PerlIOBase_setlinebuf
594 Perl_PerlIO_context_layers
601 Perl_PerlIO_get_bufsiz
607 Perl_PerlIO_set_ptrcnt
608 Perl_PerlIO_setlinebuf
616 if ($ARGS{PLATFORM} eq 'netware') {
617 push(@layer_syms,'PL_def_layerlist','PL_known_layers','PL_perlio');
620 if ($define{'USE_PERLIO'}) {
621 # Export the symols that make up the PerlIO abstraction, regardless
622 # of its implementation - read from a file
623 push @syms, 'perlio.sym';
625 # This part is then dependent on how the abstraction is implemented
626 if ($define{'USE_SFIO'}) {
627 # Old legacy non-stdio "PerlIO"
628 ++$skip{$_} foreach @layer_syms;
629 ++$skip{perlsio_binmode};
630 # SFIO defines most of the PerlIO routines as macros
631 # So undo most of what $perlio_sym has just done - d'oh !
632 # Perhaps it would be better to list the ones which do exist
634 ++$skip{$_} foreach qw(
685 Perl_PerlIO_get_bufsiz
691 Perl_PerlIO_set_ptrcnt
692 Perl_PerlIO_setlinebuf
705 # PerlIO with layers - export implementation
706 try_symbols(@layer_syms, 'perlsio_binmode');
710 # Skip the PerlIO layer symbols - although
711 # nothing should have exported them anyway.
712 ++$skip{$_} foreach @layer_syms;
713 ++$skip{$_} foreach qw(
720 PL_perlio_fd_refcnt_size
724 # Also do NOT add abstraction symbols from $perlio_sym
725 # abstraction is done as #define to stdio
726 # Remaining remnants that _may_ be functions are handled below.
729 ###############################################################################
731 # At this point all skip lists should be completed, as we are about to test
732 # many symbols against them.
736 my ($embed) = setup_embed($ARGS{TARG_DIR});
739 my ($flags, $retval, $func, @args) = @$_;
741 if ($flags =~ /[AX]/ && $flags !~ /[xm]/ || $flags =~ /b/) {
742 # public API, so export
744 # If a function is defined twice, for example before and after
745 # an #else, only export its name once. Important to do this test
746 # within the block, as the *first* definition may have flags which
747 # mean "don't export"
748 next if $seen{$func}++;
749 $func = "Perl_$func" if $flags =~ /[pbX]/;
750 ++$export{$func} unless exists $skip{$func};
756 my $syms = $ARGS{TARG_DIR} . $_;
757 open my $global, '<', $syms or die "failed to open $syms: $!\n";
758 # Functions already have a Perl_ prefix
759 # Variables need a PL_ prefix
760 my $prefix = $syms =~ /var\.sym$/i ? 'PL_' : '';
762 next unless /^([A-Za-z].*)/;
763 my $symbol = "$prefix$1";
764 ++$export{$symbol} unless exists $skip{$symbol};
770 if ($define{'MULTIPLICITY'} && $define{PERL_GLOBAL_STRUCT}) {
771 readvar('perlvars.h', \%export, sub { "Perl_" . $_[1] . $_[2] . "_ptr" });
772 # XXX AIX seems to want the perlvars.h symbols, for some reason
773 if ($ARGS{PLATFORM} eq 'aix' or $ARGS{PLATFORM} eq 'os2') { # OS/2 needs PL_thr_key
774 readvar('perlvars.h', \%export);
778 unless ($define{'PERL_GLOBAL_STRUCT'}) {
779 readvar('perlvars.h', \%export);
781 unless ($define{MULTIPLICITY}) {
782 readvar('intrpvar.h', \%export);
786 # Oddities from PerlIO
787 # All have alternate implementations in perlio.c, so always exist.
788 # Should they be considered to be part of the API?
799 if ($ARGS{PLATFORM} eq 'win32') {
809 if ($ARGS{PLATFORM} =~ /^win(?:32|ce)$/) {
870 win32_getprotobynumber
966 elsif ($ARGS{PLATFORM} eq 'vms') {
971 Perl_csighandler_init
974 Perl_fileify_dirspec_ts
975 Perl_fileify_dirspec_utf8
976 Perl_fileify_dirspec_utf8_ts
1008 Perl_pathify_dirspec
1009 Perl_pathify_dirspec_ts
1010 Perl_pathify_dirspec_utf8
1011 Perl_pathify_dirspec_utf8_ts
1019 Perl_rmsexpand_utf8_ts
1021 Perl_sig_to_vmscondition
1025 Perl_tounixpath_utf8
1026 Perl_tounixpath_utf8_ts
1029 Perl_tounixspec_utf8
1030 Perl_tounixspec_utf8_ts
1034 Perl_tovmspath_utf8_ts
1038 Perl_tovmsspec_utf8_ts
1040 Perl_vms_case_tolerant
1051 elsif ($ARGS{PLATFORM} eq 'os2') {
1094 XS_Cwd_current_drive
1096 XS_Cwd_extLibpath_set
1100 XS_Cwd_sys_is_absolute
1101 XS_Cwd_sys_is_relative
1102 XS_Cwd_sys_is_rooted
1103 XS_DynaLoader_mod2fname
1104 XS_File__Copy_syscopy
1108 Perl_Process_Messages
1120 elsif ($ARGS{PLATFORM} eq 'netware') {
1247 fnInsertHashListAddrs
1259 # When added this code was only run for Win32 and WinCE
1260 # Currently only Win32 links static extensions into the shared library.
1261 # The WinCE makefile doesn't appear to support static extensions, so this code
1262 # can't have any effect there.
1263 # The NetWare Makefile doesn't support static extensions (and hardcodes the
1264 # list of dynamic extensions, and the rules to build them)
1265 # For *nix (and presumably OS/2) with a shared libperl, Makefile.SH compiles
1266 # static extensions with -fPIC, but links them to perl, not libperl.so
1267 # The VMS build scripts don't yet implement static extensions at all.
1269 if ($ARGS{PLATFORM} =~ /^win(?:32|ce)$/) {
1270 # records of type boot_module for statically linked modules (except Dynaloader)
1271 my $static_ext = $Config{static_ext} // "";
1272 $static_ext =~ s/\//__/g;
1273 $static_ext =~ s/\bDynaLoader\b//;
1274 try_symbols(map {"boot_$_"} grep {/\S/} split /\s+/, $static_ext);
1275 try_symbols("init_Win32CORE") if $static_ext =~ /\bWin32CORE\b/;
1278 if ($ARGS{PLATFORM} eq 'os2') {
1279 my (%mapped, @missing);
1280 open MAP, 'miniperl.map' or die 'Cannot read miniperl.map';
1281 /^\s*[\da-f:]+\s+(\w+)/i and $mapped{$1}++ foreach <MAP>;
1282 close MAP or die 'Cannot close miniperl.map';
1284 @missing = grep { !exists $mapped{$_} }
1286 @missing = grep { !exists $exportperlmalloc{$_} } @missing;
1287 delete $export{$_} foreach @missing;
1290 ###############################################################################
1292 # Now all symbols should be defined because next we are going to output them.
1294 # Start with platform specific headers:
1296 if ($ARGS{PLATFORM} =~ /^win(?:32|ce)$/) {
1297 my $dll = $define{PERL_DLL} ? $define{PERL_DLL} =~ s/\.dll$//ir
1298 : "perl$Config{api_revision}$Config{api_version}";
1299 print "LIBRARY $dll\n";
1300 # The DESCRIPTION module definition file statement is not supported
1302 if ($ARGS{CCTYPE} =~ /^(?:MSVC60|GCC)$/) {
1303 print "DESCRIPTION 'Perl interpreter'\n";
1307 elsif ($ARGS{PLATFORM} eq 'os2') {
1308 (my $v = $]) =~ s/(\d\.\d\d\d)(\d\d)$/$1_$2/;
1309 $v .= '-thread' if $Config{archname} =~ /-thread/;
1310 (my $dll = $define{PERL_DLL}) =~ s/\.dll$//i;
1311 $v .= "\@$Config{perl_patchlevel}" if $Config{perl_patchlevel};
1312 my $d = "DESCRIPTION '\@#perl5-porters\@perl.org:$v#\@ Perl interpreter, configured as $Config{config_args}'";
1313 $d = substr($d, 0, 249) . "...'" if length $d > 253;
1314 print <<"---EOP---";
1315 LIBRARY '$dll' INITINSTANCE TERMINSTANCE
1319 DATA LOADONCALL NONSHARED MULTIPLE
1323 elsif ($ARGS{PLATFORM} eq 'aix') {
1324 my $OSVER = `uname -v`;
1326 my $OSREL = `uname -r`;
1328 if ($OSVER > 4 || ($OSVER == 4 && $OSREL >= 3)) {
1334 elsif ($ARGS{PLATFORM} eq 'netware') {
1335 if ($ARGS{FILETYPE} eq 'def') {
1336 print "LIBRARY perl$Config{api_revision}$Config{api_version}\n";
1337 print "DESCRIPTION 'Perl interpreter for NetWare'\n";
1344 my @symbols = $fold ? sort {lc $a cmp lc $b} keys %export : sort keys %export;
1345 foreach my $symbol (@symbols) {
1346 if ($ARGS{PLATFORM} =~ /^win(?:32|ce)$/) {
1347 print "\t$symbol\n";
1349 elsif ($ARGS{PLATFORM} eq 'os2') {
1350 printf qq( %-31s \@%s\n),
1351 qq("$symbol"), $ordinal{$symbol} || ++$sym_ord;
1352 printf qq( %-31s \@%s\n),
1353 qq("$exportperlmalloc{$symbol}" = "$symbol"),
1354 $ordinal{$exportperlmalloc{$symbol}} || ++$sym_ord
1355 if $exportperlmalloc and exists $exportperlmalloc{$symbol};
1357 elsif ($ARGS{PLATFORM} eq 'netware') {
1358 print "\t$symbol,\n";
1364 # Then platform specific footers.
1366 if ($ARGS{PLATFORM} eq 'os2') {
1371 Perl_OS2_handler_install
1373 ; LAST_ORDINAL=$sym_ord