2 # Create the export list for perl.
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.
8 # reads global.sym, pp.sym, perlvars.h, intrpvar.h, thrdvar.h, config.h
9 # On OS/2 reads miniperl.map and the previous version of perl5.def as well
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+)=(.+)$/;
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+)$/);
27 if ($PLATFORM eq 'netware') {
28 $FILETYPE = $1 if ($flag =~ /^FILETYPE=(\w+)$/);
32 my @PLATFORM = qw(aix win32 wince os2 MacOS netware);
34 @PLATFORM{@PLATFORM} = ();
36 defined $PLATFORM || die "PLATFORM undefined, must be one of: @PLATFORM\n";
37 exists $PLATFORM{$PLATFORM} || die "PLATFORM must be one of: @PLATFORM\n";
39 my %exportperlmalloc =
41 Perl_malloc => "malloc",
43 Perl_realloc => "realloc",
44 Perl_calloc => "calloc",
47 my $exportperlmalloc = $PLATFORM eq 'os2';
49 my $config_sh = "config.sh";
50 my $config_h = "config.h";
51 my $thrdvar_h = "thrdvar.h";
52 my $intrpvar_h = "intrpvar.h";
53 my $perlvars_h = "perlvars.h";
54 my $global_sym = "global.sym";
55 my $pp_sym = "pp.sym";
56 my $globvar_sym = "globvar.sym";
57 my $perlio_sym = "perlio.sym";
59 if ($PLATFORM eq 'aix') {
62 elsif ($PLATFORM =~ /^win(?:32|ce)$/ || $PLATFORM eq 'netware') {
63 $CCTYPE = "MSVC" unless defined $CCTYPE;
64 foreach ($thrdvar_h, $intrpvar_h, $perlvars_h, $global_sym,
65 $pp_sym, $globvar_sym, $perlio_sym) {
69 elsif ($PLATFORM eq 'MacOS') {
70 foreach ($thrdvar_h, $intrpvar_h, $perlvars_h, $global_sym,
71 $pp_sym, $globvar_sym, $perlio_sym) {
76 unless ($PLATFORM eq 'win32' || $PLATFORM eq 'wince' || $PLATFORM eq 'MacOS' || $PLATFORM eq 'netware') {
77 open(CFG,$config_sh) || die "Cannot open $config_sh: $!\n";
79 if (/^(?:ccflags|optimize)='(.+)'$/) {
81 $define{$1} = 1 while /-D(\w+)/g;
83 if ($PLATFORM eq 'os2') {
84 $CONFIG_ARGS = $1 if /^config_args='(.+)'$/;
85 $ARCHNAME = $1 if /^archname='(.+)'$/;
86 $PATCHLEVEL = $1 if /^perl_patchlevel='(.+)'$/;
92 open(CFG,$config_h) || die "Cannot open $config_h: $!\n";
94 $define{$1} = 1 if /^\s*#\s*define\s+(MYMALLOC)\b/;
95 $define{$1} = 1 if /^\s*#\s*define\s+(MULTIPLICITY)\b/;
96 $define{$1} = 1 if /^\s*#\s*define\s+(PERL_\w+)\b/;
97 $define{$1} = 1 if /^\s*#\s*define\s+(USE_\w+)\b/;
101 # perl.h logic duplication begins
103 if ($define{PERL_IMPLICIT_SYS}) {
104 $define{PL_OP_SLAB_ALLOC} = 1;
107 if ($define{USE_ITHREADS}) {
108 if (!$define{MULTIPLICITY}) {
109 $define{MULTIPLICITY} = 1;
113 $define{PERL_IMPLICIT_CONTEXT} ||=
114 $define{USE_ITHREADS} ||
115 $define{MULTIPLICITY} ;
117 if ($define{USE_ITHREADS} && $PLATFORM ne 'win32' && $^O ne 'darwin') {
118 $define{USE_REENTRANT_API} = 1;
121 # perl.h logic duplication ends
125 if ($PLATFORM =~ /^win(?:32|ce)$/) {
126 warn join(' ',keys %define)."\n";
127 ($dll = ($define{PERL_DLL} || "perl59")) =~ s/\.dll$//i;
128 print "LIBRARY $dll\n";
129 print "DESCRIPTION 'Perl interpreter'\n";
131 if ($define{PERL_IMPLICIT_SYS}) {
132 output_symbol("perl_get_host_info");
133 output_symbol("perl_alloc_override");
135 if ($define{USE_ITHREADS} and $define{PERL_IMPLICIT_SYS}) {
136 output_symbol("perl_clone_host");
139 elsif ($PLATFORM eq 'os2') {
140 if (open my $fh, '<', 'perl5.def') {
142 last if /^\s*EXPORTS\b/;
145 $ordinal{$1} = $2 if /^\s*"(\w+)"\s*(?:=\s*"\w+"\s*)?\@(\d+)\s*$/;
146 # This allows skipping ordinals which were used in older versions
147 $sym_ord = $1 if /^\s*;\s*LAST_ORDINAL\s*=\s*(\d+)\s*$/;
149 $sym_ord < $_ and $sym_ord = $_ for values %ordinal; # Take the max
151 ($v = $]) =~ s/(\d\.\d\d\d)(\d\d)$/$1_$2/;
152 $v .= '-thread' if $ARCHNAME =~ /-thread/;
153 ($dll = $define{PERL_DLL}) =~ s/\.dll$//i;
154 $v .= "\@$PATCHLEVEL" if $PATCHLEVEL;
155 $d = "DESCRIPTION '\@#perl5-porters\@perl.org:$v#\@ Perl interpreter, configured as $CONFIG_ARGS'";
156 $d = substr($d, 0, 249) . "...'" if length $d > 253;
158 LIBRARY '$dll' INITINSTANCE TERMINSTANCE
162 DATA LOADONCALL NONSHARED MULTIPLE
166 elsif ($PLATFORM eq 'aix') {
171 if ($OSVER > 4 || ($OSVER == 4 && $OSREL >= 3)) {
177 elsif ($PLATFORM eq 'netware') {
178 if ($FILETYPE eq 'def') {
179 print "LIBRARY perl59\n";
180 print "DESCRIPTION 'Perl interpreter for NetWare'\n";
183 if ($define{PERL_IMPLICIT_SYS}) {
184 output_symbol("perl_get_host_info");
185 output_symbol("perl_alloc_override");
186 output_symbol("perl_clone_host");
195 foreach my $symbol (@$list) {
202 foreach my $symbol (@$list) {
203 my $skipsym = $symbol;
205 if ($define{MULTIPLICITY}) {
206 $skipsym =~ s/^Perl_[GIT](\w+)_ptr$/PL_$1/;
208 emit_symbol($symbol) unless exists $skip{$skipsym};
212 if ($PLATFORM eq 'win32') {
237 Perl_init_thread_intern
270 if ($PLATFORM eq 'wince') {
286 PL_collation_standard
314 Perl_init_thread_intern
340 elsif ($PLATFORM eq 'aix') {
359 Perl_sys_intern_clear
368 elsif ($PLATFORM eq 'os2') {
407 XS_Cwd_extLibpath_set
411 XS_Cwd_sys_is_absolute
412 XS_Cwd_sys_is_relative
414 XS_DynaLoader_mod2fname
415 XS_File__Copy_syscopy
419 Perl_Process_Messages
430 emit_symbols([qw(os2_cond_wait
435 if $define{'USE_5005THREADS'} or $define{'USE_ITHREADS'};
437 elsif ($PLATFORM eq 'MacOS') {
461 Perl_sys_intern_clear
465 elsif ($PLATFORM eq 'netware') {
490 Perl_init_thread_intern
515 Perl_sys_intern_clear
523 Perl_PerlIO_setlinebuf
524 Perl_PerlIO_set_ptrcnt
530 Perl_PerlIO_get_bufsiz
543 unless ($define{'DEBUGGING'}) {
557 if ($define{'PERL_IMPLICIT_SYS'}) {
578 unless ($define{'PERL_COPY_ON_WRITE'}) {
585 unless ($define{'PERL_FLEXIBLE_EXCEPTIONS'}) {
589 Perl_vdefault_protect
593 unless ($define{'USE_REENTRANT_API'}) {
599 if ($define{'MYMALLOC'}) {
606 if ($define{'USE_ITHREADS'}) {
626 unless ($define{'USE_ITHREADS'}) {
632 # USE_5005THREADS symbols. Kept as reference for easier removal
651 Perl_new_struct_thread
652 Perl_per_thread_magicals
660 unless ($define{'USE_ITHREADS'}) {
667 PL_sharedsv_space_mutex
695 Perl_sharedsv_thrcnt_dec
696 Perl_sharedsv_thrcnt_inc
701 unless ($define{'PERL_IMPLICIT_CONTEXT'}) {
707 Perl_load_module_nocontext
710 Perl_warner_nocontext
711 Perl_newSVpvf_nocontext
712 Perl_sv_catpvf_nocontext
713 Perl_sv_setpvf_nocontext
714 Perl_sv_catpvf_mg_nocontext
715 Perl_sv_setpvf_mg_nocontext
719 unless ($define{'PERL_IMPLICIT_SYS'}) {
726 unless ($define{'FAKE_THREADS'}) {
727 skip_symbols [qw(PL_curthr)];
730 unless ($define{'PL_OP_SLAB_ALLOC'}) {
738 unless ($define{'THREADS_HAVE_PIDS'}) {
739 skip_symbols [qw(PL_ppid)];
744 my $proc = shift || sub { "PL_$_[2]" };
745 open(VARS,$file) || die "Cannot open $file: $!\n";
748 # All symbols have a Perl_ prefix because that's what embed.h
749 # sticks in front of them.
750 push(@syms, &$proc($1,$2,$3)) if (/\bPERLVAR(A?I?C?)\(([IGT])(\w+)/);
756 if ($define{'PERL_GLOBAL_STRUCT'}) {
757 my $global = readvar($perlvars_h);
758 skip_symbols $global;
759 emit_symbol('Perl_GetVars');
760 emit_symbols [qw(PL_Vars PL_VarsPtr)] unless $CCTYPE eq 'GCC';
763 # functions from *.sym files
765 my @syms = ($global_sym, $globvar_sym); # $pp_sym is not part of the API
767 # Symbols that are the public face of the PerlIO layers implementation
768 # These are in _addition to_ the public face of the abstraction
769 # and need to be exported to allow XS modules to implement layers
783 PerlIOBase_setlinebuf
825 Perl_PerlIO_get_bufsiz
831 Perl_PerlIO_set_ptrcnt
832 Perl_PerlIO_setlinebuf
840 if ($PLATFORM eq 'netware') {
841 push(@layer_syms,'PL_def_layerlist','PL_known_layers','PL_perlio');
844 if ($define{'USE_PERLIO'}) {
845 # Export the symols that make up the PerlIO abstraction, regardless
846 # of its implementation - read from a file
847 push @syms, $perlio_sym;
849 # This part is then dependent on how the abstraction is implemented
850 if ($define{'USE_SFIO'}) {
851 # Old legacy non-stdio "PerlIO"
852 skip_symbols \@layer_syms;
853 # SFIO defines most of the PerlIO routines as macros
854 # So undo most of what $perlio_sym has just done - d'oh !
855 # Perhaps it would be better to list the ones which do exist
908 Perl_PerlIO_get_bufsiz
914 Perl_PerlIO_set_ptrcnt
915 Perl_PerlIO_setlinebuf
928 # PerlIO with layers - export implementation
929 emit_symbols \@layer_syms;
933 # Skip the PerlIO layer symbols - although
934 # nothing should have exported them any way
935 skip_symbols \@layer_syms;
936 skip_symbols [qw(PL_def_layerlist PL_known_layers PL_perlio)];
938 # Also do NOT add abstraction symbols from $perlio_sym
939 # abstraction is done as #define to stdio
940 # Remaining remnants that _may_ be functions
941 # are handled in <DATA>
944 for my $syms (@syms) {
945 open (GLOBAL, "<$syms") || die "failed to open $syms: $!\n";
947 next if (!/^[A-Za-z]/);
948 # Functions have a Perl_ prefix
949 # Variables have a PL_ prefix
951 my $symbol = ($syms =~ /var\.sym$/i ? "PL_" : "");
953 emit_symbol($symbol) unless exists $skip{$symbol};
960 if ($define{'MULTIPLICITY'}) {
961 for my $f ($perlvars_h, $intrpvar_h, $thrdvar_h) {
962 my $glob = readvar($f, sub { "Perl_" . $_[1] . $_[2] . "_ptr" });
965 # XXX AIX seems to want the perlvars.h symbols, for some reason
966 if ($PLATFORM eq 'aix' or $PLATFORM eq 'os2') { # OS/2 needs PL_thr_key
967 my $glob = readvar($perlvars_h);
972 unless ($define{'PERL_GLOBAL_STRUCT'}) {
973 my $glob = readvar($perlvars_h);
976 unless ($define{'MULTIPLICITY'}) {
977 my $glob = readvar($intrpvar_h);
980 unless ($define{'MULTIPLICITY'}) {
981 my $glob = readvar($thrdvar_h);
989 return if $symbol !~ /^[A-Za-z_]/;
990 return if $symbol =~ /^\#/;
993 return if exists $skip{$symbol};
994 emit_symbol($symbol);
1001 if ($PLATFORM =~ /^win(?:32|ce)$/) {
1002 foreach my $symbol (qw(
1063 win32_getprotobyname
1064 win32_getprotobynumber
1093 win32_open_osfhandle
1163 try_symbol($symbol);
1166 elsif ($PLATFORM eq 'os2') {
1167 open MAP, 'miniperl.map' or die 'Cannot read miniperl.map';
1168 /^\s*[\da-f:]+\s+(\w+)/i and $mapped{$1}++ foreach <MAP>;
1169 close MAP or die 'Cannot close miniperl.map';
1171 @missing = grep { !exists $mapped{$_} }
1173 @missing = grep { !exists $exportperlmalloc{$_} } @missing;
1174 delete $export{$_} foreach @missing;
1176 elsif ($PLATFORM eq 'MacOS') {
1177 open MACSYMS, 'macperl.sym' or die 'Cannot read macperl.sym';
1185 elsif ($PLATFORM eq 'netware') {
1186 foreach my $symbol (qw(
1313 fnInsertHashListAddrs
1324 try_symbol($symbol);
1328 # Now all symbols should be defined because
1329 # next we are going to output them.
1331 foreach my $symbol (sort keys %export) {
1332 output_symbol($symbol);
1335 if ($PLATFORM eq 'os2') {
1336 print "; LAST_ORDINAL=$sym_ord\n";
1342 $export{$symbol} = 1;
1347 if ($PLATFORM =~ /^win(?:32|ce)$/) {
1348 $symbol = "_$symbol" if $CCTYPE eq 'BORLAND';
1349 print "\t$symbol\n";
1350 # XXX: binary compatibility between compilers is an exercise
1351 # in frustration :-(
1352 # if ($CCTYPE eq "BORLAND") {
1353 # # workaround Borland quirk by exporting both the straight
1354 # # name and a name with leading underscore. Note the
1355 # # alias *must* come after the symbol itself, if both
1356 # # are to be exported. (Linker bug?)
1357 # print "\t_$symbol\n";
1358 # print "\t$symbol = _$symbol\n";
1360 # elsif ($CCTYPE eq 'GCC') {
1361 # # Symbols have leading _ whole process is $%@"% slow
1362 # # so skip aliases for now
1363 # nprint "\t$symbol\n";
1366 # # for binary coexistence, export both the symbol and
1367 # # alias with leading underscore
1368 # print "\t$symbol\n";
1369 # print "\t_$symbol = $symbol\n";
1372 elsif ($PLATFORM eq 'os2') {
1373 printf qq( %-31s \@%s\n),
1374 qq("$symbol"), $ordinal{$symbol} || ++$sym_ord;
1375 printf qq( %-31s \@%s\n),
1376 qq("$exportperlmalloc{$symbol}" = "$symbol"),
1377 $ordinal{$exportperlmalloc{$symbol}} || ++$sym_ord
1378 if $exportperlmalloc and exists $exportperlmalloc{$symbol};
1380 elsif ($PLATFORM eq 'aix' || $PLATFORM eq 'MacOS') {
1383 elsif ($PLATFORM eq 'netware') {
1384 print "\t$symbol,\n";
1390 # extra globals not included above.
1401 # Oddities from PerlIO