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 if ($PLATFORM eq 'win32' or $PLATFORM eq 'wince' or $PLATFORM eq "aix") {
40 # Add the compile-time options that miniperl was built with to %define.
41 # On Win32 these are not the same options as perl itself will be built
42 # with since miniperl is built with a canned config (one of the win32/
43 # config_H.*) and none of the BUILDOPT's that are set in the makefiles,
44 # but they do include some #define's that are hard-coded in various
45 # source files and header files and don't include any BUILDOPT's that
46 # the user might have chosen to disable because the canned configs are
47 # minimal configs that don't include any of those options.
48 my $opts = ($PLATFORM eq 'wince' ? '-MCross' : ''); # for wince need Cross.pm to get Config.pm
49 my $config = `$^X $opts -Ilib -V`;
50 my($options) = $config =~ /^ Compile-time options: (.*?)\n^ \S/ms;
51 $options =~ s/\s+/ /g;
52 print STDERR "Options: ($options)\n";
53 foreach (split /\s+/, $options) {
58 my %exportperlmalloc =
60 Perl_malloc => "malloc",
62 Perl_realloc => "realloc",
63 Perl_calloc => "calloc",
66 my $exportperlmalloc = $PLATFORM eq 'os2';
68 my $config_sh = "config.sh";
69 my $config_h = "config.h";
70 my $thrdvar_h = "thrdvar.h";
71 my $intrpvar_h = "intrpvar.h";
72 my $perlvars_h = "perlvars.h";
73 my $global_sym = "global.sym";
74 my $pp_sym = "pp.sym";
75 my $globvar_sym = "globvar.sym";
76 my $perlio_sym = "perlio.sym";
79 if ($PLATFORM eq 'aix') {
82 elsif ($PLATFORM =~ /^win(?:32|ce)$/ || $PLATFORM eq 'netware') {
83 $CCTYPE = "MSVC" unless defined $CCTYPE;
84 foreach ($thrdvar_h, $intrpvar_h, $perlvars_h, $global_sym,
85 $pp_sym, $globvar_sym, $perlio_sym) {
89 elsif ($PLATFORM eq 'MacOS') {
90 foreach ($thrdvar_h, $intrpvar_h, $perlvars_h, $global_sym,
91 $pp_sym, $globvar_sym, $perlio_sym) {
96 unless ($PLATFORM eq 'win32' || $PLATFORM eq 'wince' || $PLATFORM eq 'MacOS' || $PLATFORM eq 'netware') {
97 open(CFG,$config_sh) || die "Cannot open $config_sh: $!\n";
99 if (/^(?:ccflags|optimize)='(.+)'$/) {
101 $define{$1} = 1 while /-D(\w+)/g;
103 if (/^(d_(?:mmap|sigaction))='(.+)'$/) {
106 if ($PLATFORM eq 'os2') {
107 $CONFIG_ARGS = $1 if /^config_args='(.+)'$/;
108 $ARCHNAME = $1 if /^archname='(.+)'$/;
109 $PATCHLEVEL = $1 if /^perl_patchlevel='(.+)'$/;
114 if ($PLATFORM eq 'win32' || $PLATFORM eq 'wince') {
115 open(CFG,"<..\\$config_sh") || die "Cannot open ..\\$config_sh: $!\n";
116 if ((join '', <CFG>) =~ /^static_ext='(.*)'$/m) {
122 open(CFG,$config_h) || die "Cannot open $config_h: $!\n";
124 $define{$1} = 1 if /^\s*#\s*define\s+(MYMALLOC)\b/;
125 $define{$1} = 1 if /^\s*#\s*define\s+(MULTIPLICITY)\b/;
126 $define{$1} = 1 if /^\s*#\s*define\s+(PERL_\w+)\b/;
127 $define{$1} = 1 if /^\s*#\s*define\s+(USE_\w+)\b/;
131 # perl.h logic duplication begins
133 if ($define{PERL_IMPLICIT_SYS}) {
134 $define{PL_OP_SLAB_ALLOC} = 1;
137 if ($define{USE_ITHREADS}) {
138 if (!$define{MULTIPLICITY}) {
139 $define{MULTIPLICITY} = 1;
143 $define{PERL_IMPLICIT_CONTEXT} ||=
144 $define{USE_ITHREADS} ||
145 $define{MULTIPLICITY} ;
147 if ($define{USE_ITHREADS} && $PLATFORM ne 'win32' && $^O ne 'darwin') {
148 $define{USE_REENTRANT_API} = 1;
151 # perl.h logic duplication ends
155 print STDERR "Defines: (" . join(' ', sort keys %define) . ")\n";
157 if ($PLATFORM =~ /^win(?:32|ce)$/) {
158 ($dll = ($define{PERL_DLL} || "perl59")) =~ s/\.dll$//i;
159 print "LIBRARY $dll\n";
160 print "DESCRIPTION 'Perl interpreter'\n";
162 if ($define{PERL_IMPLICIT_SYS}) {
163 output_symbol("perl_get_host_info");
164 output_symbol("perl_alloc_override");
166 if ($define{USE_ITHREADS} and $define{PERL_IMPLICIT_SYS}) {
167 output_symbol("perl_clone_host");
170 elsif ($PLATFORM eq 'os2') {
171 if (open my $fh, '<', 'perl5.def') {
173 last if /^\s*EXPORTS\b/;
176 $ordinal{$1} = $2 if /^\s*"(\w+)"\s*(?:=\s*"\w+"\s*)?\@(\d+)\s*$/;
177 # This allows skipping ordinals which were used in older versions
178 $sym_ord = $1 if /^\s*;\s*LAST_ORDINAL\s*=\s*(\d+)\s*$/;
180 $sym_ord < $_ and $sym_ord = $_ for values %ordinal; # Take the max
182 ($v = $]) =~ s/(\d\.\d\d\d)(\d\d)$/$1_$2/;
183 $v .= '-thread' if $ARCHNAME =~ /-thread/;
184 ($dll = $define{PERL_DLL}) =~ s/\.dll$//i;
185 $v .= "\@$PATCHLEVEL" if $PATCHLEVEL;
186 $d = "DESCRIPTION '\@#perl5-porters\@perl.org:$v#\@ Perl interpreter, configured as $CONFIG_ARGS'";
187 $d = substr($d, 0, 249) . "...'" if length $d > 253;
189 LIBRARY '$dll' INITINSTANCE TERMINSTANCE
193 DATA LOADONCALL NONSHARED MULTIPLE
197 elsif ($PLATFORM eq 'aix') {
202 if ($OSVER > 4 || ($OSVER == 4 && $OSREL >= 3)) {
208 elsif ($PLATFORM eq 'netware') {
209 if ($FILETYPE eq 'def') {
210 print "LIBRARY perl59\n";
211 print "DESCRIPTION 'Perl interpreter for NetWare'\n";
214 if ($define{PERL_IMPLICIT_SYS}) {
215 output_symbol("perl_get_host_info");
216 output_symbol("perl_alloc_override");
217 output_symbol("perl_clone_host");
226 foreach my $symbol (@$list) {
233 foreach my $symbol (@$list) {
234 my $skipsym = $symbol;
236 if ($define{MULTIPLICITY}) {
237 $skipsym =~ s/^Perl_[GIT](\w+)_ptr$/PL_$1/;
239 emit_symbol($symbol) unless exists $skip{$skipsym};
243 if ($PLATFORM eq 'win32') {
267 Perl_init_thread_intern
300 if ($PLATFORM eq 'wince') {
315 PL_collation_standard
343 Perl_init_thread_intern
369 elsif ($PLATFORM eq 'aix') {
388 Perl_sys_intern_clear
397 elsif ($PLATFORM eq 'os2') {
442 XS_Cwd_extLibpath_set
446 XS_Cwd_sys_is_absolute
447 XS_Cwd_sys_is_relative
449 XS_DynaLoader_mod2fname
450 XS_File__Copy_syscopy
454 Perl_Process_Messages
465 emit_symbols([qw(os2_cond_wait
470 if $define{'USE_5005THREADS'} or $define{'USE_ITHREADS'};
472 elsif ($PLATFORM eq 'MacOS') {
496 Perl_sys_intern_clear
500 elsif ($PLATFORM eq 'netware') {
524 Perl_init_thread_intern
549 Perl_sys_intern_clear
557 Perl_PerlIO_setlinebuf
558 Perl_PerlIO_set_ptrcnt
564 Perl_PerlIO_get_bufsiz
577 unless ($define{'DEBUGGING'}) {
593 if ($define{'PERL_IMPLICIT_CONTEXT'}) {
599 if ($define{'PERL_IMPLICIT_SYS'}) {
620 unless ($define{'PERL_OLD_COPY_ON_WRITE'}) {
627 unless ($define{'USE_REENTRANT_API'}) {
633 if ($define{'MYMALLOC'}) {
642 if ($define{'USE_ITHREADS'}) {
664 if ($define{'PERL_USE_SAFE_PUTENV'}) {
670 unless ($define{'USE_ITHREADS'}) {
676 # USE_5005THREADS symbols. Kept as reference for easier removal
695 Perl_new_struct_thread
696 Perl_per_thread_magicals
704 unless ($define{'USE_ITHREADS'}) {
713 PL_sharedsv_space_mutex
743 Perl_sharedsv_thrcnt_dec
744 Perl_sharedsv_thrcnt_inc
746 Perl_stashpv_hvname_match
750 unless ($define{'PERL_IMPLICIT_CONTEXT'}) {
756 Perl_load_module_nocontext
759 Perl_warner_nocontext
760 Perl_newSVpvf_nocontext
761 Perl_sv_catpvf_nocontext
762 Perl_sv_setpvf_nocontext
763 Perl_sv_catpvf_mg_nocontext
764 Perl_sv_setpvf_mg_nocontext
768 unless ($define{'PERL_IMPLICIT_SYS'}) {
775 unless ($define{'FAKE_THREADS'}) {
776 skip_symbols [qw(PL_curthr)];
779 unless ($define{'PL_OP_SLAB_ALLOC'}) {
789 unless ($define{'THREADS_HAVE_PIDS'}) {
790 skip_symbols [qw(PL_ppid)];
793 unless ($define{'PERL_NEED_APPCTX'}) {
799 unless ($define{'PERL_NEED_TIMESBASE'}) {
805 unless ($define{'DEBUG_LEAKING_SCALARS_FORK_DUMP'}) {
810 unless ($define{'PERL_DONT_CREATE_GVSV'}) {
815 if ($define{'SPRINTF_RETURNS_STRLEN'}) {
820 unless ($define{'PERL_USES_PL_PIDSTATUS'}) {
827 unless ($define{'d_mmap'}) {
833 if ($define{'d_sigaction'}) {
840 # VMS does its own thing for these symbols.
841 skip_symbols [qw(PL_sig_handlers_initted
848 my $proc = shift || sub { "PL_$_[2]" };
849 open(VARS,$file) || die "Cannot open $file: $!\n";
852 # All symbols have a Perl_ prefix because that's what embed.h
853 # sticks in front of them. The A?I?S?C? is strictly speaking
855 push(@syms, &$proc($1,$2,$3)) if (/\bPERLVAR(A?I?S?C?)\(([IGT])(\w+)/);
861 if ($define{'PERL_GLOBAL_STRUCT'}) {
862 my $global = readvar($perlvars_h);
863 skip_symbols $global;
864 emit_symbol('Perl_GetVars');
865 emit_symbols [qw(PL_Vars PL_VarsPtr)] unless $CCTYPE eq 'GCC';
867 skip_symbols [qw(Perl_init_global_struct Perl_free_global_struct)];
870 # functions from *.sym files
872 my @syms = ($global_sym, $globvar_sym); # $pp_sym is not part of the API
874 # Symbols that are the public face of the PerlIO layers implementation
875 # These are in _addition to_ the public face of the abstraction
876 # and need to be exported to allow XS modules to implement layers
890 PerlIOBase_setlinebuf
933 Perl_PerlIO_get_bufsiz
939 Perl_PerlIO_set_ptrcnt
940 Perl_PerlIO_setlinebuf
948 if ($PLATFORM eq 'netware') {
949 push(@layer_syms,'PL_def_layerlist','PL_known_layers','PL_perlio');
952 if ($define{'USE_PERLIO'}) {
953 # Export the symols that make up the PerlIO abstraction, regardless
954 # of its implementation - read from a file
955 push @syms, $perlio_sym;
957 # This part is then dependent on how the abstraction is implemented
958 if ($define{'USE_SFIO'}) {
959 # Old legacy non-stdio "PerlIO"
960 skip_symbols \@layer_syms;
961 skip_symbols [qw(perlsio_binmode)];
962 # SFIO defines most of the PerlIO routines as macros
963 # So undo most of what $perlio_sym has just done - d'oh !
964 # Perhaps it would be better to list the ones which do exist
1009 Perl_PerlIO_clearerr
1016 Perl_PerlIO_get_base
1017 Perl_PerlIO_get_bufsiz
1023 Perl_PerlIO_set_ptrcnt
1024 Perl_PerlIO_setlinebuf
1037 # PerlIO with layers - export implementation
1038 emit_symbols \@layer_syms;
1039 emit_symbols [qw(perlsio_binmode)];
1043 # Skip the PerlIO layer symbols - although
1044 # nothing should have exported them anyway.
1045 skip_symbols \@layer_syms;
1046 skip_symbols [qw(perlsio_binmode)];
1047 skip_symbols [qw(PL_def_layerlist PL_known_layers PL_perlio)];
1049 # Also do NOT add abstraction symbols from $perlio_sym
1050 # abstraction is done as #define to stdio
1051 # Remaining remnants that _may_ be functions
1052 # are handled in <DATA>
1055 for my $syms (@syms) {
1056 open (GLOBAL, "<$syms") || die "failed to open $syms: $!\n";
1058 next if (!/^[A-Za-z]/);
1059 # Functions have a Perl_ prefix
1060 # Variables have a PL_ prefix
1062 my $symbol = ($syms =~ /var\.sym$/i ? "PL_" : "");
1064 emit_symbol($symbol) unless exists $skip{$symbol};
1071 if ($define{'MULTIPLICITY'}) {
1072 for my $f ($perlvars_h, $intrpvar_h, $thrdvar_h) {
1073 my $glob = readvar($f, sub { "Perl_" . $_[1] . $_[2] . "_ptr" });
1076 # XXX AIX seems to want the perlvars.h symbols, for some reason
1077 if ($PLATFORM eq 'aix' or $PLATFORM eq 'os2') { # OS/2 needs PL_thr_key
1078 my $glob = readvar($perlvars_h);
1083 unless ($define{'PERL_GLOBAL_STRUCT'}) {
1084 my $glob = readvar($perlvars_h);
1087 unless ($define{'MULTIPLICITY'}) {
1088 my $glob = readvar($intrpvar_h);
1091 unless ($define{'MULTIPLICITY'}) {
1092 my $glob = readvar($thrdvar_h);
1100 return if $symbol !~ /^[A-Za-z_]/;
1101 return if $symbol =~ /^\#/;
1104 return if exists $skip{$symbol};
1105 emit_symbol($symbol);
1112 if ($PLATFORM =~ /^win(?:32|ce)$/) {
1113 foreach my $symbol (qw(
1175 win32_getprotobyname
1176 win32_getprotobynumber
1205 win32_open_osfhandle
1275 try_symbol($symbol);
1277 if ($CCTYPE eq "BORLAND") {
1278 try_symbol('_matherr');
1281 elsif ($PLATFORM eq 'os2') {
1282 open MAP, 'miniperl.map' or die 'Cannot read miniperl.map';
1283 /^\s*[\da-f:]+\s+(\w+)/i and $mapped{$1}++ foreach <MAP>;
1284 close MAP or die 'Cannot close miniperl.map';
1286 @missing = grep { !exists $mapped{$_} }
1288 @missing = grep { !exists $exportperlmalloc{$_} } @missing;
1289 delete $export{$_} foreach @missing;
1291 elsif ($PLATFORM eq 'MacOS') {
1292 open MACSYMS, 'macperl.sym' or die 'Cannot read macperl.sym';
1300 elsif ($PLATFORM eq 'netware') {
1301 foreach my $symbol (qw(
1428 fnInsertHashListAddrs
1439 try_symbol($symbol);
1443 # records of type boot_module for statically linked modules (except Dynaloader)
1444 $static_ext =~ s/\//__/g;
1445 $static_ext =~ s/\bDynaLoader\b//;
1446 my @stat_mods = map {"boot_$_"} grep {/\S/} split /\s+/, $static_ext;
1447 foreach my $symbol (@stat_mods)
1449 try_symbol($symbol);
1452 # Now all symbols should be defined because
1453 # next we are going to output them.
1455 foreach my $symbol (sort keys %export) {
1456 output_symbol($symbol);
1459 if ($PLATFORM eq 'os2') {
1464 Perl_OS2_handler_install
1466 ; LAST_ORDINAL=$sym_ord
1473 $export{$symbol} = 1;
1478 if ($PLATFORM =~ /^win(?:32|ce)$/) {
1479 $symbol = "_$symbol" if $CCTYPE eq 'BORLAND';
1480 print "\t$symbol\n";
1481 # XXX: binary compatibility between compilers is an exercise
1482 # in frustration :-(
1483 # if ($CCTYPE eq "BORLAND") {
1484 # # workaround Borland quirk by exporting both the straight
1485 # # name and a name with leading underscore. Note the
1486 # # alias *must* come after the symbol itself, if both
1487 # # are to be exported. (Linker bug?)
1488 # print "\t_$symbol\n";
1489 # print "\t$symbol = _$symbol\n";
1491 # elsif ($CCTYPE eq 'GCC') {
1492 # # Symbols have leading _ whole process is $%@"% slow
1493 # # so skip aliases for now
1494 # nprint "\t$symbol\n";
1497 # # for binary coexistence, export both the symbol and
1498 # # alias with leading underscore
1499 # print "\t$symbol\n";
1500 # print "\t_$symbol = $symbol\n";
1503 elsif ($PLATFORM eq 'os2') {
1504 printf qq( %-31s \@%s\n),
1505 qq("$symbol"), $ordinal{$symbol} || ++$sym_ord;
1506 printf qq( %-31s \@%s\n),
1507 qq("$exportperlmalloc{$symbol}" = "$symbol"),
1508 $ordinal{$exportperlmalloc{$symbol}} || ++$sym_ord
1509 if $exportperlmalloc and exists $exportperlmalloc{$symbol};
1511 elsif ($PLATFORM eq 'aix' || $PLATFORM eq 'MacOS') {
1514 elsif ($PLATFORM eq 'netware') {
1515 print "\t$symbol,\n";
1521 # extra globals not included above.
1532 # Oddities from PerlIO