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') {
413 XS_Cwd_extLibpath_set
417 XS_Cwd_sys_is_absolute
418 XS_Cwd_sys_is_relative
420 XS_DynaLoader_mod2fname
421 XS_File__Copy_syscopy
425 Perl_Process_Messages
436 emit_symbols([qw(os2_cond_wait
441 if $define{'USE_5005THREADS'} or $define{'USE_ITHREADS'};
443 elsif ($PLATFORM eq 'MacOS') {
467 Perl_sys_intern_clear
471 elsif ($PLATFORM eq 'netware') {
496 Perl_init_thread_intern
521 Perl_sys_intern_clear
529 Perl_PerlIO_setlinebuf
530 Perl_PerlIO_set_ptrcnt
536 Perl_PerlIO_get_bufsiz
549 unless ($define{'DEBUGGING'}) {
563 if ($define{'PERL_IMPLICIT_SYS'}) {
584 unless ($define{'PERL_COPY_ON_WRITE'}) {
591 unless ($define{'PERL_FLEXIBLE_EXCEPTIONS'}) {
595 Perl_vdefault_protect
599 unless ($define{'USE_REENTRANT_API'}) {
605 if ($define{'MYMALLOC'}) {
614 if ($define{'USE_ITHREADS'}) {
636 if ($define{'PERL_MALLOC_WRAP'}) {
642 unless ($define{'USE_ITHREADS'}) {
648 # USE_5005THREADS symbols. Kept as reference for easier removal
667 Perl_new_struct_thread
668 Perl_per_thread_magicals
676 unless ($define{'USE_ITHREADS'}) {
683 PL_sharedsv_space_mutex
711 Perl_sharedsv_thrcnt_dec
712 Perl_sharedsv_thrcnt_inc
717 unless ($define{'PERL_IMPLICIT_CONTEXT'}) {
723 Perl_load_module_nocontext
726 Perl_warner_nocontext
727 Perl_newSVpvf_nocontext
728 Perl_sv_catpvf_nocontext
729 Perl_sv_setpvf_nocontext
730 Perl_sv_catpvf_mg_nocontext
731 Perl_sv_setpvf_mg_nocontext
735 unless ($define{'PERL_IMPLICIT_SYS'}) {
742 unless ($define{'FAKE_THREADS'}) {
743 skip_symbols [qw(PL_curthr)];
746 unless ($define{'PL_OP_SLAB_ALLOC'}) {
756 unless ($define{'THREADS_HAVE_PIDS'}) {
757 skip_symbols [qw(PL_ppid)];
762 my $proc = shift || sub { "PL_$_[2]" };
763 open(VARS,$file) || die "Cannot open $file: $!\n";
766 # All symbols have a Perl_ prefix because that's what embed.h
767 # sticks in front of them.
768 push(@syms, &$proc($1,$2,$3)) if (/\bPERLVAR(A?I?C?)\(([IGT])(\w+)/);
774 if ($define{'PERL_GLOBAL_STRUCT'}) {
775 my $global = readvar($perlvars_h);
776 skip_symbols $global;
777 emit_symbol('Perl_GetVars');
778 emit_symbols [qw(PL_Vars PL_VarsPtr)] unless $CCTYPE eq 'GCC';
781 # functions from *.sym files
783 my @syms = ($global_sym, $globvar_sym); # $pp_sym is not part of the API
785 # Symbols that are the public face of the PerlIO layers implementation
786 # These are in _addition to_ the public face of the abstraction
787 # and need to be exported to allow XS modules to implement layers
801 PerlIOBase_setlinebuf
844 Perl_PerlIO_get_bufsiz
850 Perl_PerlIO_set_ptrcnt
851 Perl_PerlIO_setlinebuf
859 if ($PLATFORM eq 'netware') {
860 push(@layer_syms,'PL_def_layerlist','PL_known_layers','PL_perlio');
863 if ($define{'USE_PERLIO'}) {
864 # Export the symols that make up the PerlIO abstraction, regardless
865 # of its implementation - read from a file
866 push @syms, $perlio_sym;
868 # This part is then dependent on how the abstraction is implemented
869 if ($define{'USE_SFIO'}) {
870 # Old legacy non-stdio "PerlIO"
871 skip_symbols \@layer_syms;
872 # SFIO defines most of the PerlIO routines as macros
873 # So undo most of what $perlio_sym has just done - d'oh !
874 # Perhaps it would be better to list the ones which do exist
927 Perl_PerlIO_get_bufsiz
933 Perl_PerlIO_set_ptrcnt
934 Perl_PerlIO_setlinebuf
947 # PerlIO with layers - export implementation
948 emit_symbols \@layer_syms;
952 # Skip the PerlIO layer symbols - although
953 # nothing should have exported them any way
954 skip_symbols \@layer_syms;
955 skip_symbols [qw(PL_def_layerlist PL_known_layers PL_perlio)];
957 # Also do NOT add abstraction symbols from $perlio_sym
958 # abstraction is done as #define to stdio
959 # Remaining remnants that _may_ be functions
960 # are handled in <DATA>
963 for my $syms (@syms) {
964 open (GLOBAL, "<$syms") || die "failed to open $syms: $!\n";
966 next if (!/^[A-Za-z]/);
967 # Functions have a Perl_ prefix
968 # Variables have a PL_ prefix
970 my $symbol = ($syms =~ /var\.sym$/i ? "PL_" : "");
972 emit_symbol($symbol) unless exists $skip{$symbol};
979 if ($define{'MULTIPLICITY'}) {
980 for my $f ($perlvars_h, $intrpvar_h, $thrdvar_h) {
981 my $glob = readvar($f, sub { "Perl_" . $_[1] . $_[2] . "_ptr" });
984 # XXX AIX seems to want the perlvars.h symbols, for some reason
985 if ($PLATFORM eq 'aix' or $PLATFORM eq 'os2') { # OS/2 needs PL_thr_key
986 my $glob = readvar($perlvars_h);
991 unless ($define{'PERL_GLOBAL_STRUCT'}) {
992 my $glob = readvar($perlvars_h);
995 unless ($define{'MULTIPLICITY'}) {
996 my $glob = readvar($intrpvar_h);
999 unless ($define{'MULTIPLICITY'}) {
1000 my $glob = readvar($thrdvar_h);
1008 return if $symbol !~ /^[A-Za-z_]/;
1009 return if $symbol =~ /^\#/;
1012 return if exists $skip{$symbol};
1013 emit_symbol($symbol);
1020 if ($PLATFORM =~ /^win(?:32|ce)$/) {
1021 foreach my $symbol (qw(
1082 win32_getprotobyname
1083 win32_getprotobynumber
1112 win32_open_osfhandle
1182 try_symbol($symbol);
1185 elsif ($PLATFORM eq 'os2') {
1186 open MAP, 'miniperl.map' or die 'Cannot read miniperl.map';
1187 /^\s*[\da-f:]+\s+(\w+)/i and $mapped{$1}++ foreach <MAP>;
1188 close MAP or die 'Cannot close miniperl.map';
1190 @missing = grep { !exists $mapped{$_} }
1192 @missing = grep { !exists $exportperlmalloc{$_} } @missing;
1193 delete $export{$_} foreach @missing;
1195 elsif ($PLATFORM eq 'MacOS') {
1196 open MACSYMS, 'macperl.sym' or die 'Cannot read macperl.sym';
1204 elsif ($PLATFORM eq 'netware') {
1205 foreach my $symbol (qw(
1332 fnInsertHashListAddrs
1343 try_symbol($symbol);
1347 # Now all symbols should be defined because
1348 # next we are going to output them.
1350 foreach my $symbol (sort keys %export) {
1351 output_symbol($symbol);
1354 if ($PLATFORM eq 'os2') {
1359 Perl_OS2_handler_install
1361 ; LAST_ORDINAL=$sym_ord
1368 $export{$symbol} = 1;
1373 if ($PLATFORM =~ /^win(?:32|ce)$/) {
1374 $symbol = "_$symbol" if $CCTYPE eq 'BORLAND';
1375 print "\t$symbol\n";
1376 # XXX: binary compatibility between compilers is an exercise
1377 # in frustration :-(
1378 # if ($CCTYPE eq "BORLAND") {
1379 # # workaround Borland quirk by exporting both the straight
1380 # # name and a name with leading underscore. Note the
1381 # # alias *must* come after the symbol itself, if both
1382 # # are to be exported. (Linker bug?)
1383 # print "\t_$symbol\n";
1384 # print "\t$symbol = _$symbol\n";
1386 # elsif ($CCTYPE eq 'GCC') {
1387 # # Symbols have leading _ whole process is $%@"% slow
1388 # # so skip aliases for now
1389 # nprint "\t$symbol\n";
1392 # # for binary coexistence, export both the symbol and
1393 # # alias with leading underscore
1394 # print "\t$symbol\n";
1395 # print "\t_$symbol = $symbol\n";
1398 elsif ($PLATFORM eq 'os2') {
1399 printf qq( %-31s \@%s\n),
1400 qq("$symbol"), $ordinal{$symbol} || ++$sym_ord;
1401 printf qq( %-31s \@%s\n),
1402 qq("$exportperlmalloc{$symbol}" = "$symbol"),
1403 $ordinal{$exportperlmalloc{$symbol}} || ++$sym_ord
1404 if $exportperlmalloc and exists $exportperlmalloc{$symbol};
1406 elsif ($PLATFORM eq 'aix' || $PLATFORM eq 'MacOS') {
1409 elsif ($PLATFORM eq 'netware') {
1410 print "\t$symbol,\n";
1416 # extra globals not included above.
1427 # Oddities from PerlIO