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 -Dusershrplib is in effect,
7 # and by MacOS Classic.
9 # reads global.sym, pp.sym, perlvars.h, intrpvar.h, config.h
10 # On OS/2 reads miniperl.map and the previous version of perl5.def as well
12 BEGIN { unshift @INC, "lib" }
15 use vars qw($PLATFORM $CCTYPE $FILETYPE $CONFIG_ARGS $ARCHNAME $PATCHLEVEL);
17 my (%define, %ordinal);
21 if ($flag =~ s/^CC_FLAGS=/ /) {
22 for my $fflag ($flag =~ /(?:^|\s)-D(\S+)/g) {
23 $fflag .= '=1' unless $fflag =~ /^(\w+)=/;
24 $define{$1} = $2 if $fflag =~ /^(\w+)=(.+)$/;
28 $define{$1} = 1 if ($flag =~ /^-D(\w+)$/);
29 $define{$1} = $2 if ($flag =~ /^-D(\w+)=(.+)$/);
30 $CCTYPE = $1 if ($flag =~ /^CCTYPE=(\w+)$/);
31 $PLATFORM = $1 if ($flag =~ /^PLATFORM=(\w+)$/);
32 if ($PLATFORM eq 'netware') {
33 $FILETYPE = $1 if ($flag =~ /^FILETYPE=(\w+)$/);
37 my @PLATFORM = qw(aix win32 wince os2 MacOS netware);
39 @PLATFORM{@PLATFORM} = ();
41 defined $PLATFORM || die "PLATFORM undefined, must be one of: @PLATFORM\n";
42 exists $PLATFORM{$PLATFORM} || die "PLATFORM must be one of: @PLATFORM\n";
44 if ($PLATFORM eq 'win32' or $PLATFORM eq 'wince' or $PLATFORM eq "aix") {
45 # Add the compile-time options that miniperl was built with to %define.
46 # On Win32 these are not the same options as perl itself will be built
47 # with since miniperl is built with a canned config (one of the win32/
48 # config_H.*) and none of the BUILDOPT's that are set in the makefiles,
49 # but they do include some #define's that are hard-coded in various
50 # source files and header files and don't include any BUILDOPT's that
51 # the user might have chosen to disable because the canned configs are
52 # minimal configs that don't include any of those options.
53 my $opts = ($PLATFORM eq 'wince' ? '-MCross' : ''); # for wince need Cross.pm to get Config.pm
54 my $config = `$^X $opts -Ilib -V`;
55 my($options) = $config =~ /^ Compile-time options: (.*?)\n^ \S/ms;
56 $options =~ s/\s+/ /g;
57 print STDERR "Options: ($options)\n";
58 foreach (split /\s+/, $options) {
63 my %exportperlmalloc =
65 Perl_malloc => "malloc",
67 Perl_realloc => "realloc",
68 Perl_calloc => "calloc",
71 my $exportperlmalloc = $PLATFORM eq 'os2';
73 my $config_sh = "config.sh";
74 my $config_h = "config.h";
75 my $intrpvar_h = "intrpvar.h";
76 my $perlvars_h = "perlvars.h";
77 my $global_sym = "global.sym";
78 my $pp_sym = "pp.sym";
79 my $globvar_sym = "globvar.sym";
80 my $perlio_sym = "perlio.sym";
83 if ($PLATFORM eq 'aix') {
86 elsif ($PLATFORM =~ /^win(?:32|ce)$/ || $PLATFORM eq 'netware') {
87 $CCTYPE = "MSVC" unless defined $CCTYPE;
88 foreach ($intrpvar_h, $perlvars_h, $global_sym,
89 $pp_sym, $globvar_sym, $perlio_sym) {
93 elsif ($PLATFORM eq 'MacOS') {
94 foreach ($intrpvar_h, $perlvars_h, $global_sym,
95 $pp_sym, $globvar_sym, $perlio_sym) {
100 unless ($PLATFORM eq 'win32' || $PLATFORM eq 'wince' || $PLATFORM eq 'MacOS' || $PLATFORM eq 'netware') {
101 open(CFG,$config_sh) || die "Cannot open $config_sh: $!\n";
103 if (/^(?:ccflags|optimize)='(.+)'$/) {
105 $define{$1} = 1 while /-D(\w+)/g;
107 if (/^(d_(?:mmap|sigaction))='(.+)'$/) {
110 if ($PLATFORM eq 'os2') {
111 $CONFIG_ARGS = $1 if /^config_args='(.+)'$/;
112 $ARCHNAME = $1 if /^archname='(.+)'$/;
113 $PATCHLEVEL = $1 if /^perl_patchlevel='(.+)'$/;
118 if ($PLATFORM eq 'win32' || $PLATFORM eq 'wince') {
119 open(CFG,"<..\\$config_sh") || die "Cannot open ..\\$config_sh: $!\n";
120 if ((join '', <CFG>) =~ /^static_ext='(.*)'$/m) {
126 open(CFG,$config_h) || die "Cannot open $config_h: $!\n";
128 $define{$1} = 1 if /^\s*#\s*define\s+(MYMALLOC)\b/;
129 $define{$1} = 1 if /^\s*#\s*define\s+(MULTIPLICITY)\b/;
130 $define{$1} = 1 if /^\s*#\s*define\s+(PERL_\w+)\b/;
131 $define{$1} = 1 if /^\s*#\s*define\s+(USE_\w+)\b/;
135 # perl.h logic duplication begins
137 if ($define{PERL_IMPLICIT_SYS}) {
138 $define{PL_OP_SLAB_ALLOC} = 1;
141 if ($define{USE_ITHREADS}) {
142 if (!$define{MULTIPLICITY}) {
143 $define{MULTIPLICITY} = 1;
147 $define{PERL_IMPLICIT_CONTEXT} ||=
148 $define{USE_ITHREADS} ||
149 $define{MULTIPLICITY} ;
151 if ($define{USE_ITHREADS} && $PLATFORM ne 'win32' && $^O ne 'darwin') {
152 $define{USE_REENTRANT_API} = 1;
155 # perl.h logic duplication ends
159 print STDERR "Defines: (" . join(' ', sort keys %define) . ")\n";
161 if ($PLATFORM =~ /^win(?:32|ce)$/) {
162 (my $dll = ($define{PERL_DLL} || "perl59")) =~ s/\.dll$//i;
163 print "LIBRARY $dll\n";
164 print "DESCRIPTION 'Perl interpreter'\n";
166 if ($define{PERL_IMPLICIT_SYS}) {
167 output_symbol("perl_get_host_info");
168 output_symbol("perl_alloc_override");
170 if ($define{USE_ITHREADS} and $define{PERL_IMPLICIT_SYS}) {
171 output_symbol("perl_clone_host");
174 elsif ($PLATFORM eq 'os2') {
175 if (open my $fh, '<', 'perl5.def') {
177 last if /^\s*EXPORTS\b/;
180 $ordinal{$1} = $2 if /^\s*"(\w+)"\s*(?:=\s*"\w+"\s*)?\@(\d+)\s*$/;
181 # This allows skipping ordinals which were used in older versions
182 $sym_ord = $1 if /^\s*;\s*LAST_ORDINAL\s*=\s*(\d+)\s*$/;
184 $sym_ord < $_ and $sym_ord = $_ for values %ordinal; # Take the max
186 (my $v = $]) =~ s/(\d\.\d\d\d)(\d\d)$/$1_$2/;
187 $v .= '-thread' if $ARCHNAME =~ /-thread/;
188 (my $dll = $define{PERL_DLL}) =~ s/\.dll$//i;
189 $v .= "\@$PATCHLEVEL" if $PATCHLEVEL;
190 my $d = "DESCRIPTION '\@#perl5-porters\@perl.org:$v#\@ Perl interpreter, configured as $CONFIG_ARGS'";
191 $d = substr($d, 0, 249) . "...'" if length $d > 253;
193 LIBRARY '$dll' INITINSTANCE TERMINSTANCE
197 DATA LOADONCALL NONSHARED MULTIPLE
201 elsif ($PLATFORM eq 'aix') {
202 my $OSVER = `uname -v`;
204 my $OSREL = `uname -r`;
206 if ($OSVER > 4 || ($OSVER == 4 && $OSREL >= 3)) {
212 elsif ($PLATFORM eq 'netware') {
213 if ($FILETYPE eq 'def') {
214 print "LIBRARY perl59\n";
215 print "DESCRIPTION 'Perl interpreter for NetWare'\n";
218 if ($define{PERL_IMPLICIT_SYS}) {
219 output_symbol("perl_get_host_info");
220 output_symbol("perl_alloc_override");
221 output_symbol("perl_clone_host");
230 foreach my $symbol (@$list) {
237 foreach my $symbol (@$list) {
238 my $skipsym = $symbol;
240 if ($define{MULTIPLICITY}) {
241 $skipsym =~ s/^Perl_[GIT](\w+)_ptr$/PL_$1/;
243 emit_symbol($symbol) unless exists $skip{$skipsym};
247 if ($PLATFORM eq 'win32') {
271 Perl_init_thread_intern
305 if ($PLATFORM eq 'wince') {
320 PL_collation_standard
348 Perl_init_thread_intern
375 elsif ($PLATFORM eq 'aix') {
394 Perl_sys_intern_clear
404 elsif ($PLATFORM eq 'os2') {
449 XS_Cwd_extLibpath_set
453 XS_Cwd_sys_is_absolute
454 XS_Cwd_sys_is_relative
456 XS_DynaLoader_mod2fname
457 XS_File__Copy_syscopy
461 Perl_Process_Messages
472 emit_symbols([qw(os2_cond_wait
477 if $define{'USE_5005THREADS'} or $define{'USE_ITHREADS'};
479 elsif ($PLATFORM eq 'MacOS') {
503 Perl_sys_intern_clear
507 elsif ($PLATFORM eq 'netware') {
531 Perl_init_thread_intern
556 Perl_sys_intern_clear
564 Perl_PerlIO_setlinebuf
565 Perl_PerlIO_set_ptrcnt
571 Perl_PerlIO_get_bufsiz
584 unless ($define{'DEBUGGING'}) {
601 if ($define{'PERL_IMPLICIT_CONTEXT'}) {
607 if ($define{'PERL_IMPLICIT_SYS'}) {
628 unless ($define{'PERL_OLD_COPY_ON_WRITE'}) {
634 unless ($define{'USE_REENTRANT_API'}) {
640 if ($define{'MYMALLOC'}) {
649 if ($define{'USE_ITHREADS'}) {
671 if ($define{'PERL_USE_SAFE_PUTENV'}) {
677 unless ($define{'USE_ITHREADS'}) {
683 # USE_5005THREADS symbols. Kept as reference for easier removal
702 Perl_new_struct_thread
703 Perl_per_thread_magicals
711 unless ($define{'USE_ITHREADS'}) {
717 PL_sharedsv_space_mutex
744 Perl_sharedsv_thrcnt_dec
745 Perl_sharedsv_thrcnt_inc
747 Perl_stashpv_hvname_match
748 Perl_regdupe_internal
753 unless ($define{'PERL_IMPLICIT_CONTEXT'}) {
764 Perl_load_module_nocontext
767 Perl_warner_nocontext
768 Perl_newSVpvf_nocontext
769 Perl_sv_catpvf_nocontext
770 Perl_sv_setpvf_nocontext
771 Perl_sv_catpvf_mg_nocontext
772 Perl_sv_setpvf_mg_nocontext
778 unless ($define{'PERL_IMPLICIT_SYS'}) {
785 unless ($define{'FAKE_THREADS'}) {
786 skip_symbols [qw(PL_curthr)];
789 unless ($define{'PL_OP_SLAB_ALLOC'}) {
799 unless ($define{'PERL_DEBUG_READONLY_OPS'}) {
806 unless ($define{'THREADS_HAVE_PIDS'}) {
807 skip_symbols [qw(PL_ppid)];
810 unless ($define{'PERL_NEED_APPCTX'}) {
816 unless ($define{'PERL_NEED_TIMESBASE'}) {
822 unless ($define{'DEBUG_LEAKING_SCALARS_FORK_DUMP'}) {
827 unless ($define{'PERL_DONT_CREATE_GVSV'}) {
832 if ($define{'SPRINTF_RETURNS_STRLEN'}) {
837 unless ($define{'PERL_USES_PL_PIDSTATUS'}) {
844 unless ($define{'PERL_TRACK_MEMPOOL'}) {
846 PL_memory_debug_header
850 if ($define{'PERL_MAD'}) {
876 Perl_xmldump_packsubs
890 unless ($define{'PERL_GLOBAL_STRUCT_PRIVATE'}) {
897 unless ($define{'d_mmap'}) {
903 if ($define{'d_sigaction'}) {
910 # VMS does its own thing for these symbols.
911 skip_symbols [qw(PL_sig_handlers_initted
918 my $proc = shift || sub { "PL_$_[2]" };
919 open(VARS,$file) || die "Cannot open $file: $!\n";
922 # All symbols have a Perl_ prefix because that's what embed.h
923 # sticks in front of them. The A?I?S?C? is strictly speaking
925 push(@syms, &$proc($1,$2,$3)) if (/\bPERLVAR(A?I?S?C?)\(([IGT])(\w+)/);
931 if ($define{'PERL_GLOBAL_STRUCT'}) {
932 my $global = readvar($perlvars_h);
933 skip_symbols $global;
934 emit_symbol('Perl_GetVars');
935 emit_symbols [qw(PL_Vars PL_VarsPtr)] unless $CCTYPE eq 'GCC';
937 skip_symbols [qw(Perl_init_global_struct Perl_free_global_struct)];
940 # functions from *.sym files
942 my @syms = ($global_sym, $globvar_sym); # $pp_sym is not part of the API
944 # Symbols that are the public face of the PerlIO layers implementation
945 # These are in _addition to_ the public face of the abstraction
946 # and need to be exported to allow XS modules to implement layers
960 PerlIOBase_setlinebuf
997 Perl_PerlIO_context_layers
1003 Perl_PerlIO_get_base
1004 Perl_PerlIO_get_bufsiz
1010 Perl_PerlIO_set_ptrcnt
1011 Perl_PerlIO_setlinebuf
1019 if ($PLATFORM eq 'netware') {
1020 push(@layer_syms,'PL_def_layerlist','PL_known_layers','PL_perlio');
1023 if ($define{'USE_PERLIO'}) {
1024 # Export the symols that make up the PerlIO abstraction, regardless
1025 # of its implementation - read from a file
1026 push @syms, $perlio_sym;
1028 # This part is then dependent on how the abstraction is implemented
1029 if ($define{'USE_SFIO'}) {
1030 # Old legacy non-stdio "PerlIO"
1031 skip_symbols \@layer_syms;
1032 skip_symbols [qw(perlsio_binmode)];
1033 # SFIO defines most of the PerlIO routines as macros
1034 # So undo most of what $perlio_sym has just done - d'oh !
1035 # Perhaps it would be better to list the ones which do exist
1080 Perl_PerlIO_clearerr
1087 Perl_PerlIO_get_base
1088 Perl_PerlIO_get_bufsiz
1094 Perl_PerlIO_set_ptrcnt
1095 Perl_PerlIO_setlinebuf
1108 # PerlIO with layers - export implementation
1109 emit_symbols \@layer_syms;
1110 emit_symbols [qw(perlsio_binmode)];
1112 if ($define{'USE_ITHREADS'}) {
1124 # Skip the PerlIO layer symbols - although
1125 # nothing should have exported them anyway.
1126 skip_symbols \@layer_syms;
1134 PL_perlio_fd_refcnt_size
1137 # Also do NOT add abstraction symbols from $perlio_sym
1138 # abstraction is done as #define to stdio
1139 # Remaining remnants that _may_ be functions
1140 # are handled in <DATA>
1143 for my $syms (@syms) {
1144 open (GLOBAL, "<$syms") || die "failed to open $syms: $!\n";
1146 next if (!/^[A-Za-z]/);
1147 # Functions have a Perl_ prefix
1148 # Variables have a PL_ prefix
1150 my $symbol = ($syms =~ /var\.sym$/i ? "PL_" : "");
1152 emit_symbol($symbol) unless exists $skip{$symbol};
1159 if ($define{'MULTIPLICITY'}) {
1160 for my $f ($perlvars_h, $intrpvar_h) {
1161 my $glob = readvar($f, sub { "Perl_" . $_[1] . $_[2] . "_ptr" });
1164 # XXX AIX seems to want the perlvars.h symbols, for some reason
1165 if ($PLATFORM eq 'aix' or $PLATFORM eq 'os2') { # OS/2 needs PL_thr_key
1166 my $glob = readvar($perlvars_h);
1171 unless ($define{'PERL_GLOBAL_STRUCT'}) {
1172 my $glob = readvar($perlvars_h);
1175 unless ($define{'MULTIPLICITY'}) {
1176 my $glob = readvar($intrpvar_h);
1184 return if $symbol !~ /^[A-Za-z_]/;
1185 return if $symbol =~ /^\#/;
1188 return if exists $skip{$symbol};
1189 emit_symbol($symbol);
1196 if ($PLATFORM =~ /^win(?:32|ce)$/) {
1197 foreach my $symbol (qw(
1259 win32_getprotobyname
1260 win32_getprotobynumber
1289 win32_open_osfhandle
1360 try_symbol($symbol);
1362 if ($CCTYPE eq "BORLAND") {
1363 try_symbol('_matherr');
1366 elsif ($PLATFORM eq 'os2') {
1367 my (%mapped, @missing);
1368 open MAP, 'miniperl.map' or die 'Cannot read miniperl.map';
1369 /^\s*[\da-f:]+\s+(\w+)/i and $mapped{$1}++ foreach <MAP>;
1370 close MAP or die 'Cannot close miniperl.map';
1372 @missing = grep { !exists $mapped{$_} }
1374 @missing = grep { !exists $exportperlmalloc{$_} } @missing;
1375 delete $export{$_} foreach @missing;
1377 elsif ($PLATFORM eq 'MacOS') {
1378 open MACSYMS, 'macperl.sym' or die 'Cannot read macperl.sym';
1386 elsif ($PLATFORM eq 'netware') {
1387 foreach my $symbol (qw(
1514 fnInsertHashListAddrs
1525 try_symbol($symbol);
1529 # records of type boot_module for statically linked modules (except Dynaloader)
1530 $static_ext =~ s/\//__/g;
1531 $static_ext =~ s/\bDynaLoader\b//;
1532 my @stat_mods = map {"boot_$_"} grep {/\S/} split /\s+/, $static_ext;
1533 foreach my $symbol (@stat_mods)
1535 try_symbol($symbol);
1538 # Now all symbols should be defined because
1539 # next we are going to output them.
1541 foreach my $symbol (sort keys %export) {
1542 output_symbol($symbol);
1545 if ($PLATFORM eq 'os2') {
1550 Perl_OS2_handler_install
1552 ; LAST_ORDINAL=$sym_ord
1559 $export{$symbol} = 1;
1564 if ($PLATFORM =~ /^win(?:32|ce)$/) {
1565 $symbol = "_$symbol" if $CCTYPE eq 'BORLAND';
1566 print "\t$symbol\n";
1567 # XXX: binary compatibility between compilers is an exercise
1568 # in frustration :-(
1569 # if ($CCTYPE eq "BORLAND") {
1570 # # workaround Borland quirk by exporting both the straight
1571 # # name and a name with leading underscore. Note the
1572 # # alias *must* come after the symbol itself, if both
1573 # # are to be exported. (Linker bug?)
1574 # print "\t_$symbol\n";
1575 # print "\t$symbol = _$symbol\n";
1577 # elsif ($CCTYPE eq 'GCC') {
1578 # # Symbols have leading _ whole process is $%@"% slow
1579 # # so skip aliases for now
1580 # nprint "\t$symbol\n";
1583 # # for binary coexistence, export both the symbol and
1584 # # alias with leading underscore
1585 # print "\t$symbol\n";
1586 # print "\t_$symbol = $symbol\n";
1589 elsif ($PLATFORM eq 'os2') {
1590 printf qq( %-31s \@%s\n),
1591 qq("$symbol"), $ordinal{$symbol} || ++$sym_ord;
1592 printf qq( %-31s \@%s\n),
1593 qq("$exportperlmalloc{$symbol}" = "$symbol"),
1594 $ordinal{$exportperlmalloc{$symbol}} || ++$sym_ord
1595 if $exportperlmalloc and exists $exportperlmalloc{$symbol};
1597 elsif ($PLATFORM eq 'aix' || $PLATFORM eq 'MacOS') {
1600 elsif ($PLATFORM eq 'netware') {
1601 print "\t$symbol,\n";
1607 # Oddities from PerlIO