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 # The DESCRIPTION module definition file statement is not supported
166 if ($CCTYPE !~ /^MSVC7/ && $CCTYPE !~ /^MSVC8/) {
167 print "DESCRIPTION 'Perl interpreter'\n";
170 if ($define{PERL_IMPLICIT_SYS}) {
171 output_symbol("perl_get_host_info");
172 output_symbol("perl_alloc_override");
174 if ($define{USE_ITHREADS} and $define{PERL_IMPLICIT_SYS}) {
175 output_symbol("perl_clone_host");
178 elsif ($PLATFORM eq 'os2') {
179 if (open my $fh, '<', 'perl5.def') {
181 last if /^\s*EXPORTS\b/;
184 $ordinal{$1} = $2 if /^\s*"(\w+)"\s*(?:=\s*"\w+"\s*)?\@(\d+)\s*$/;
185 # This allows skipping ordinals which were used in older versions
186 $sym_ord = $1 if /^\s*;\s*LAST_ORDINAL\s*=\s*(\d+)\s*$/;
188 $sym_ord < $_ and $sym_ord = $_ for values %ordinal; # Take the max
190 (my $v = $]) =~ s/(\d\.\d\d\d)(\d\d)$/$1_$2/;
191 $v .= '-thread' if $ARCHNAME =~ /-thread/;
192 (my $dll = $define{PERL_DLL}) =~ s/\.dll$//i;
193 $v .= "\@$PATCHLEVEL" if $PATCHLEVEL;
194 my $d = "DESCRIPTION '\@#perl5-porters\@perl.org:$v#\@ Perl interpreter, configured as $CONFIG_ARGS'";
195 $d = substr($d, 0, 249) . "...'" if length $d > 253;
197 LIBRARY '$dll' INITINSTANCE TERMINSTANCE
201 DATA LOADONCALL NONSHARED MULTIPLE
205 elsif ($PLATFORM eq 'aix') {
206 my $OSVER = `uname -v`;
208 my $OSREL = `uname -r`;
210 if ($OSVER > 4 || ($OSVER == 4 && $OSREL >= 3)) {
216 elsif ($PLATFORM eq 'netware') {
217 if ($FILETYPE eq 'def') {
218 print "LIBRARY perl59\n";
219 print "DESCRIPTION 'Perl interpreter for NetWare'\n";
222 if ($define{PERL_IMPLICIT_SYS}) {
223 output_symbol("perl_get_host_info");
224 output_symbol("perl_alloc_override");
225 output_symbol("perl_clone_host");
234 foreach my $symbol (@$list) {
241 foreach my $symbol (@$list) {
242 my $skipsym = $symbol;
244 if ($define{MULTIPLICITY}) {
245 $skipsym =~ s/^Perl_[GIT](\w+)_ptr$/PL_$1/;
247 emit_symbol($symbol) unless exists $skip{$skipsym};
251 if ($PLATFORM eq 'win32') {
275 Perl_init_thread_intern
309 if ($PLATFORM eq 'wince') {
324 PL_collation_standard
352 Perl_init_thread_intern
379 elsif ($PLATFORM eq 'aix') {
398 Perl_sys_intern_clear
408 elsif ($PLATFORM eq 'os2') {
453 XS_Cwd_extLibpath_set
457 XS_Cwd_sys_is_absolute
458 XS_Cwd_sys_is_relative
460 XS_DynaLoader_mod2fname
461 XS_File__Copy_syscopy
465 Perl_Process_Messages
476 emit_symbols([qw(os2_cond_wait
481 if $define{'USE_5005THREADS'} or $define{'USE_ITHREADS'};
483 elsif ($PLATFORM eq 'MacOS') {
507 Perl_sys_intern_clear
511 elsif ($PLATFORM eq 'netware') {
535 Perl_init_thread_intern
560 Perl_sys_intern_clear
568 Perl_PerlIO_setlinebuf
569 Perl_PerlIO_set_ptrcnt
575 Perl_PerlIO_get_bufsiz
588 unless ($define{'DEBUGGING'}) {
605 if ($define{'PERL_IMPLICIT_CONTEXT'}) {
611 if ($define{'PERL_IMPLICIT_SYS'}) {
632 unless ($define{'PERL_OLD_COPY_ON_WRITE'}) {
638 unless ($define{'USE_REENTRANT_API'}) {
644 if ($define{'MYMALLOC'}) {
653 if ($define{'USE_ITHREADS'}) {
675 if ($define{'PERL_USE_SAFE_PUTENV'}) {
681 unless ($define{'USE_ITHREADS'}) {
687 # USE_5005THREADS symbols. Kept as reference for easier removal
706 Perl_new_struct_thread
707 Perl_per_thread_magicals
715 unless ($define{'USE_ITHREADS'}) {
721 PL_sharedsv_space_mutex
748 Perl_sharedsv_thrcnt_dec
749 Perl_sharedsv_thrcnt_inc
751 Perl_stashpv_hvname_match
752 Perl_regdupe_internal
757 unless ($define{'PERL_IMPLICIT_CONTEXT'}) {
768 Perl_load_module_nocontext
771 Perl_warner_nocontext
772 Perl_newSVpvf_nocontext
773 Perl_sv_catpvf_nocontext
774 Perl_sv_setpvf_nocontext
775 Perl_sv_catpvf_mg_nocontext
776 Perl_sv_setpvf_mg_nocontext
782 unless ($define{'PERL_IMPLICIT_SYS'}) {
789 unless ($define{'FAKE_THREADS'}) {
790 skip_symbols [qw(PL_curthr)];
793 unless ($define{'PL_OP_SLAB_ALLOC'}) {
803 unless ($define{'PERL_DEBUG_READONLY_OPS'}) {
810 unless ($define{'THREADS_HAVE_PIDS'}) {
811 skip_symbols [qw(PL_ppid)];
814 unless ($define{'PERL_NEED_APPCTX'}) {
820 unless ($define{'PERL_NEED_TIMESBASE'}) {
826 unless ($define{'DEBUG_LEAKING_SCALARS_FORK_DUMP'}) {
831 unless ($define{'PERL_DONT_CREATE_GVSV'}) {
836 if ($define{'SPRINTF_RETURNS_STRLEN'}) {
841 unless ($define{'PERL_USES_PL_PIDSTATUS'}) {
848 unless ($define{'PERL_TRACK_MEMPOOL'}) {
850 PL_memory_debug_header
854 if ($define{'PERL_MAD'}) {
880 Perl_xmldump_packsubs
894 unless ($define{'PERL_GLOBAL_STRUCT_PRIVATE'}) {
901 unless ($define{'d_mmap'}) {
907 if ($define{'d_sigaction'}) {
914 # VMS does its own thing for these symbols.
915 skip_symbols [qw(PL_sig_handlers_initted
922 my $proc = shift || sub { "PL_$_[2]" };
923 open(VARS,$file) || die "Cannot open $file: $!\n";
926 # All symbols have a Perl_ prefix because that's what embed.h
927 # sticks in front of them. The A?I?S?C? is strictly speaking
929 push(@syms, &$proc($1,$2,$3)) if (/\bPERLVAR(A?I?S?C?)\(([IGT])(\w+)/);
935 if ($define{'PERL_GLOBAL_STRUCT'}) {
936 my $global = readvar($perlvars_h);
937 skip_symbols $global;
938 emit_symbol('Perl_GetVars');
939 emit_symbols [qw(PL_Vars PL_VarsPtr)] unless $CCTYPE eq 'GCC';
941 skip_symbols [qw(Perl_init_global_struct Perl_free_global_struct)];
944 # functions from *.sym files
946 my @syms = ($global_sym, $globvar_sym); # $pp_sym is not part of the API
948 # Symbols that are the public face of the PerlIO layers implementation
949 # These are in _addition to_ the public face of the abstraction
950 # and need to be exported to allow XS modules to implement layers
964 PerlIOBase_setlinebuf
1001 Perl_PerlIO_context_layers
1007 Perl_PerlIO_get_base
1008 Perl_PerlIO_get_bufsiz
1014 Perl_PerlIO_set_ptrcnt
1015 Perl_PerlIO_setlinebuf
1023 if ($PLATFORM eq 'netware') {
1024 push(@layer_syms,'PL_def_layerlist','PL_known_layers','PL_perlio');
1027 if ($define{'USE_PERLIO'}) {
1028 # Export the symols that make up the PerlIO abstraction, regardless
1029 # of its implementation - read from a file
1030 push @syms, $perlio_sym;
1032 # This part is then dependent on how the abstraction is implemented
1033 if ($define{'USE_SFIO'}) {
1034 # Old legacy non-stdio "PerlIO"
1035 skip_symbols \@layer_syms;
1036 skip_symbols [qw(perlsio_binmode)];
1037 # SFIO defines most of the PerlIO routines as macros
1038 # So undo most of what $perlio_sym has just done - d'oh !
1039 # Perhaps it would be better to list the ones which do exist
1084 Perl_PerlIO_clearerr
1091 Perl_PerlIO_get_base
1092 Perl_PerlIO_get_bufsiz
1098 Perl_PerlIO_set_ptrcnt
1099 Perl_PerlIO_setlinebuf
1112 # PerlIO with layers - export implementation
1113 emit_symbols \@layer_syms;
1114 emit_symbols [qw(perlsio_binmode)];
1116 if ($define{'USE_ITHREADS'}) {
1128 # Skip the PerlIO layer symbols - although
1129 # nothing should have exported them anyway.
1130 skip_symbols \@layer_syms;
1138 PL_perlio_fd_refcnt_size
1141 # Also do NOT add abstraction symbols from $perlio_sym
1142 # abstraction is done as #define to stdio
1143 # Remaining remnants that _may_ be functions
1144 # are handled in <DATA>
1147 for my $syms (@syms) {
1148 open (GLOBAL, "<$syms") || die "failed to open $syms: $!\n";
1150 next if (!/^[A-Za-z]/);
1151 # Functions have a Perl_ prefix
1152 # Variables have a PL_ prefix
1154 my $symbol = ($syms =~ /var\.sym$/i ? "PL_" : "");
1156 emit_symbol($symbol) unless exists $skip{$symbol};
1163 if ($define{'MULTIPLICITY'}) {
1164 for my $f ($perlvars_h, $intrpvar_h) {
1165 my $glob = readvar($f, sub { "Perl_" . $_[1] . $_[2] . "_ptr" });
1168 # XXX AIX seems to want the perlvars.h symbols, for some reason
1169 if ($PLATFORM eq 'aix' or $PLATFORM eq 'os2') { # OS/2 needs PL_thr_key
1170 my $glob = readvar($perlvars_h);
1175 unless ($define{'PERL_GLOBAL_STRUCT'}) {
1176 my $glob = readvar($perlvars_h);
1179 unless ($define{'MULTIPLICITY'}) {
1180 my $glob = readvar($intrpvar_h);
1188 return if $symbol !~ /^[A-Za-z_]/;
1189 return if $symbol =~ /^\#/;
1192 return if exists $skip{$symbol};
1193 emit_symbol($symbol);
1200 if ($PLATFORM =~ /^win(?:32|ce)$/) {
1201 foreach my $symbol (qw(
1263 win32_getprotobyname
1264 win32_getprotobynumber
1293 win32_open_osfhandle
1364 try_symbol($symbol);
1366 if ($CCTYPE eq "BORLAND") {
1367 try_symbol('_matherr');
1370 elsif ($PLATFORM eq 'os2') {
1371 my (%mapped, @missing);
1372 open MAP, 'miniperl.map' or die 'Cannot read miniperl.map';
1373 /^\s*[\da-f:]+\s+(\w+)/i and $mapped{$1}++ foreach <MAP>;
1374 close MAP or die 'Cannot close miniperl.map';
1376 @missing = grep { !exists $mapped{$_} }
1378 @missing = grep { !exists $exportperlmalloc{$_} } @missing;
1379 delete $export{$_} foreach @missing;
1381 elsif ($PLATFORM eq 'MacOS') {
1382 open MACSYMS, 'macperl.sym' or die 'Cannot read macperl.sym';
1390 elsif ($PLATFORM eq 'netware') {
1391 foreach my $symbol (qw(
1518 fnInsertHashListAddrs
1529 try_symbol($symbol);
1533 # records of type boot_module for statically linked modules (except Dynaloader)
1534 $static_ext =~ s/\//__/g;
1535 $static_ext =~ s/\bDynaLoader\b//;
1536 my @stat_mods = map {"boot_$_"} grep {/\S/} split /\s+/, $static_ext;
1537 foreach my $symbol (@stat_mods)
1539 try_symbol($symbol);
1542 try_symbol("init_Win32CORE") if $static_ext =~ /\bWin32CORE\b/;
1544 # Now all symbols should be defined because
1545 # next we are going to output them.
1547 foreach my $symbol (sort keys %export) {
1548 output_symbol($symbol);
1551 if ($PLATFORM eq 'os2') {
1556 Perl_OS2_handler_install
1558 ; LAST_ORDINAL=$sym_ord
1565 $export{$symbol} = 1;
1570 if ($PLATFORM =~ /^win(?:32|ce)$/) {
1571 $symbol = "_$symbol" if $CCTYPE eq 'BORLAND';
1572 print "\t$symbol\n";
1573 # XXX: binary compatibility between compilers is an exercise
1574 # in frustration :-(
1575 # if ($CCTYPE eq "BORLAND") {
1576 # # workaround Borland quirk by exporting both the straight
1577 # # name and a name with leading underscore. Note the
1578 # # alias *must* come after the symbol itself, if both
1579 # # are to be exported. (Linker bug?)
1580 # print "\t_$symbol\n";
1581 # print "\t$symbol = _$symbol\n";
1583 # elsif ($CCTYPE eq 'GCC') {
1584 # # Symbols have leading _ whole process is $%@"% slow
1585 # # so skip aliases for now
1586 # nprint "\t$symbol\n";
1589 # # for binary coexistence, export both the symbol and
1590 # # alias with leading underscore
1591 # print "\t$symbol\n";
1592 # print "\t_$symbol = $symbol\n";
1595 elsif ($PLATFORM eq 'os2') {
1596 printf qq( %-31s \@%s\n),
1597 qq("$symbol"), $ordinal{$symbol} || ++$sym_ord;
1598 printf qq( %-31s \@%s\n),
1599 qq("$exportperlmalloc{$symbol}" = "$symbol"),
1600 $ordinal{$exportperlmalloc{$symbol}} || ++$sym_ord
1601 if $exportperlmalloc and exists $exportperlmalloc{$symbol};
1603 elsif ($PLATFORM eq 'aix' || $PLATFORM eq 'MacOS') {
1606 elsif ($PLATFORM eq 'netware') {
1607 print "\t$symbol,\n";
1613 # Oddities from PerlIO