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 as well
16 Perl_call_atexit => "perl_atexit",
17 Perl_eval_sv => "perl_eval_sv",
18 Perl_eval_pv => "perl_eval_pv",
19 Perl_call_argv => "perl_call_argv",
20 Perl_call_method => "perl_call_method",
21 Perl_call_pv => "perl_call_pv",
22 Perl_call_sv => "perl_call_sv",
23 Perl_get_av => "perl_get_av",
24 Perl_get_cv => "perl_get_cv",
25 Perl_get_hv => "perl_get_hv",
26 Perl_get_sv => "perl_get_sv",
27 Perl_init_i18nl10n => "perl_init_i18nl10n",
28 Perl_init_i18nl14n => "perl_init_i18nl14n",
29 Perl_new_collate => "perl_new_collate",
30 Perl_new_ctype => "perl_new_ctype",
31 Perl_new_numeric => "perl_new_numeric",
32 Perl_require_pv => "perl_require_pv",
33 Perl_safesyscalloc => "Perl_safecalloc",
34 Perl_safesysfree => "Perl_safefree",
35 Perl_safesysmalloc => "Perl_safemalloc",
36 Perl_safesysrealloc => "Perl_saferealloc",
37 Perl_set_numeric_local => "perl_set_numeric_local",
38 Perl_set_numeric_standard => "perl_set_numeric_standard",
39 Perl_malloc => "malloc",
41 Perl_realloc => "realloc",
42 Perl_calloc => "calloc",
45 my $bincompat5005 = join("|", keys %bincompat5005);
49 $define{$1} = 1 if ($flag =~ /^-D(\w+)$/);
50 $define{$1} = $2 if ($flag =~ /^-D(\w+)=(.+)$/);
51 $CCTYPE = $1 if ($flag =~ /^CCTYPE=(\w+)$/);
52 $PLATFORM = $1 if ($flag =~ /^PLATFORM=(\w+)$/);
53 if ($PLATFORM eq 'netware') {
54 $FILETYPE = $1 if ($flag =~ /^FILETYPE=(\w+)$/);
58 my @PLATFORM = qw(aix win32 os2 MacOS netware);
60 @PLATFORM{@PLATFORM} = ();
62 defined $PLATFORM || die "PLATFORM undefined, must be one of: @PLATFORM\n";
63 exists $PLATFORM{$PLATFORM} || die "PLATFORM must be one of: @PLATFORM\n";
65 my $config_sh = "config.sh";
66 my $config_h = "config.h";
67 my $thrdvar_h = "thrdvar.h";
68 my $intrpvar_h = "intrpvar.h";
69 my $perlvars_h = "perlvars.h";
70 my $global_sym = "global.sym";
71 my $pp_sym = "pp.sym";
72 my $globvar_sym = "globvar.sym";
73 my $perlio_sym = "perlio.sym";
75 if ($PLATFORM eq 'aix') {
78 elsif ($PLATFORM eq 'win32' || $PLATFORM eq 'netware') {
79 $CCTYPE = "MSVC" unless defined $CCTYPE;
80 foreach ($thrdvar_h, $intrpvar_h, $perlvars_h, $global_sym,
81 $pp_sym, $globvar_sym, $perlio_sym) {
85 elsif ($PLATFORM eq 'MacOS') {
86 foreach ($thrdvar_h, $intrpvar_h, $perlvars_h, $global_sym,
87 $pp_sym, $globvar_sym, $perlio_sym) {
92 unless ($PLATFORM eq 'win32' || $PLATFORM eq 'MacOS' || $PLATFORM eq 'netware') {
93 open(CFG,$config_sh) || die "Cannot open $config_sh: $!\n";
95 if (/^(?:ccflags|optimize)='(.+)'$/) {
97 $define{$1} = 1 while /-D(\w+)/g;
99 if ($PLATFORM eq 'os2') {
100 $CONFIG_ARGS = $1 if /^(?:config_args)='(.+)'$/;
101 $ARCHNAME = $1 if /^(?:archname)='(.+)'$/;
107 open(CFG,$config_h) || die "Cannot open $config_h: $!\n";
109 $define{$1} = 1 if /^\s*#\s*define\s+(MYMALLOC)\b/;
110 $define{$1} = 1 if /^\s*#\s*define\s+(MULTIPLICITY)\b/;
111 $define{$1} = 1 if /^\s*#\s*define\s+(PERL_\w+)\b/;
112 $define{$1} = 1 if /^\s*#\s*define\s+(USE_\w+)\b/;
116 # perl.h logic duplication begins
118 if ($define{USE_ITHREADS}) {
119 if (!$define{MULTIPLICITY}) {
120 $define{MULTIPLICITY} = 1;
124 $define{PERL_IMPLICIT_CONTEXT} ||=
125 $define{USE_ITHREADS} ||
126 $define{USE_5005THREADS} ||
127 $define{MULTIPLICITY} ;
129 # perl.h logic duplication ends
131 if ($PLATFORM eq 'win32') {
132 warn join(' ',keys %define)."\n";
133 print "LIBRARY Perl57\n";
134 print "DESCRIPTION 'Perl interpreter'\n";
136 if ($define{PERL_IMPLICIT_SYS}) {
137 output_symbol("perl_get_host_info");
138 output_symbol("perl_alloc_override");
139 output_symbol("perl_clone_host");
142 elsif ($PLATFORM eq 'os2') {
143 ($v = $]) =~ s/(\d\.\d\d\d)(\d\d)$/$1_$2/;
144 $v .= '-thread' if $ARCHNAME =~ /-thread/;
145 ($dll = $define{PERL_DLL}) =~ s/\.dll$//i;
146 $d = "DESCRIPTION '\@#perl5-porters\@perl.org:$v#\@ Perl interpreter, configured as $CONFIG_ARGS'";
147 $d = substr($d, 0, 249) . "...'" if length $d > 253;
149 LIBRARY '$dll' INITINSTANCE TERMINSTANCE
153 DATA LOADONCALL NONSHARED MULTIPLE
157 elsif ($PLATFORM eq 'aix') {
162 if ($OSVER > 4 || ($OSVER == 4 && $OSREL >= 3)) {
168 elsif ($PLATFORM eq 'netware') {
169 if ($FILETYPE eq 'def') {
170 print "LIBRARY Perl57\n";
171 print "DESCRIPTION 'Perl interpreter for NetWare'\n";
174 if ($define{PERL_IMPLICIT_SYS}) {
175 output_symbol("perl_get_host_info");
176 output_symbol("perl_alloc_override");
177 output_symbol("perl_clone_host");
186 foreach my $symbol (@$list) {
193 foreach my $symbol (@$list) {
194 my $skipsym = $symbol;
196 if ($define{MULTIPLICITY}) {
197 $skipsym =~ s/^Perl_[GIT](\w+)_ptr$/PL_$1/;
199 emit_symbol($symbol) unless exists $skip{$skipsym};
203 if ($PLATFORM eq 'win32') {
228 Perl_init_thread_intern
254 elsif ($PLATFORM eq 'aix') {
273 Perl_sys_intern_clear
282 elsif ($PLATFORM eq 'os2') {
319 XS_Cwd_extLibpath_set
323 XS_Cwd_sys_is_absolute
324 XS_Cwd_sys_is_relative
326 XS_DynaLoader_mod2fname
327 XS_File__Copy_syscopy
331 Perl_Process_Messages
339 elsif ($PLATFORM eq 'MacOS') {
363 Perl_sys_intern_clear
367 elsif ($PLATFORM eq 'netware') {
392 Perl_init_thread_intern
418 unless ($define{'DEBUGGING'}) {
432 if ($define{'PERL_IMPLICIT_SYS'}) {
453 unless ($define{'PERL_FLEXIBLE_EXCEPTIONS'}) {
457 Perl_vdefault_protect
461 unless ($define{'USE_REENTRANT_API'}) {
467 if ($define{'MYMALLOC'}) {
474 if ($define{'USE_5005THREADS'} || $define{'USE_ITHREADS'}) {
494 unless ($define{'USE_5005THREADS'} || $define{'USE_ITHREADS'}) {
500 unless ($define{'USE_5005THREADS'}) {
519 Perl_new_struct_thread
520 Perl_per_thread_magicals
529 unless ($define{'USE_ITHREADS'}) {
536 PL_sharedsv_space_mutex
563 Perl_sharedsv_thrcnt_dec
564 Perl_sharedsv_thrcnt_inc
569 unless ($define{'PERL_IMPLICIT_CONTEXT'}) {
575 Perl_load_module_nocontext
578 Perl_warner_nocontext
579 Perl_newSVpvf_nocontext
580 Perl_sv_catpvf_nocontext
581 Perl_sv_setpvf_nocontext
582 Perl_sv_catpvf_mg_nocontext
583 Perl_sv_setpvf_mg_nocontext
587 unless ($define{'PERL_IMPLICIT_SYS'}) {
594 unless ($define{'FAKE_THREADS'}) {
595 skip_symbols [qw(PL_curthr)];
600 my $proc = shift || sub { "PL_$_[2]" };
601 open(VARS,$file) || die "Cannot open $file: $!\n";
604 # All symbols have a Perl_ prefix because that's what embed.h
605 # sticks in front of them.
606 push(@syms, &$proc($1,$2,$3)) if (/\bPERLVAR(A?I?C?)\(([IGT])(\w+)/);
612 if ($define{'USE_5005THREADS'}) {
613 my $thrd = readvar($thrdvar_h);
617 if ($define{'PERL_GLOBAL_STRUCT'}) {
618 my $global = readvar($perlvars_h);
619 skip_symbols $global;
620 emit_symbol('Perl_GetVars');
621 emit_symbols [qw(PL_Vars PL_VarsPtr)] unless $CCTYPE eq 'GCC';
624 # functions from *.sym files
626 my @syms = ($global_sym, $globvar_sym); # $pp_sym is not part of the API
637 PerlIOBase_setlinebuf
664 if ($define{'USE_PERLIO'}) {
665 push @syms, $perlio_sym;
666 if ($define{'USE_SFIO'}) {
667 skip_symbols \@layer_syms;
668 # SFIO defines most of the PerlIO routines as macros
714 # Skip the PerlIO New Generation symbols.
715 skip_symbols \@layer_syms;
718 for my $syms (@syms) {
719 open (GLOBAL, "<$syms") || die "failed to open $syms: $!\n";
721 next if (!/^[A-Za-z]/);
722 # Functions have a Perl_ prefix
723 # Variables have a PL_ prefix
725 my $symbol = ($syms =~ /var\.sym$/i ? "PL_" : "");
727 emit_symbol($symbol) unless exists $skip{$symbol};
734 if ($define{'MULTIPLICITY'}) {
735 for my $f ($perlvars_h, $intrpvar_h, $thrdvar_h) {
736 my $glob = readvar($f, sub { "Perl_" . $_[1] . $_[2] . "_ptr" });
739 # XXX AIX seems to want the perlvars.h symbols, for some reason
740 if ($PLATFORM eq 'aix') {
741 my $glob = readvar($perlvars_h);
746 unless ($define{'PERL_GLOBAL_STRUCT'}) {
747 my $glob = readvar($perlvars_h);
750 unless ($define{'MULTIPLICITY'}) {
751 my $glob = readvar($intrpvar_h);
754 unless ($define{'MULTIPLICITY'} || $define{'USE_5005THREADS'}) {
755 my $glob = readvar($thrdvar_h);
763 return if $symbol !~ /^[A-Za-z_]/;
764 return if $symbol =~ /^\#/;
767 return if exists $skip{$symbol};
768 emit_symbol($symbol);
775 if ($PLATFORM eq 'win32') {
776 foreach my $symbol (qw(
836 win32_getprotobynumber
937 elsif ($PLATFORM eq 'os2') {
938 open MAP, 'miniperl.map' or die 'Cannot read miniperl.map';
939 /^\s*[\da-f:]+\s+(\w+)/i and $mapped{$1}++ foreach <MAP>;
940 close MAP or die 'Cannot close miniperl.map';
942 @missing = grep { !exists $mapped{$_} and !exists $bincompat5005{$_} }
944 delete $export{$_} foreach @missing;
946 elsif ($PLATFORM eq 'MacOS') {
947 open MACSYMS, 'macperl.sym' or die 'Cannot read macperl.sym';
955 elsif ($PLATFORM eq 'netware') {
956 foreach my $symbol (qw(
1082 fnInsertHashListAddrs
1087 try_symbol($symbol);
1091 # Now all symbols should be defined because
1092 # next we are going to output them.
1094 foreach my $symbol (sort keys %export) {
1095 output_symbol($symbol);
1098 if ($PLATFORM eq 'netware') {
1099 # This may not be the right way to do. This is to make sure
1100 # that the last symbol will not contain a comma else
1101 # Watcom linker cribs
1108 $export{$symbol} = 1;
1115 $symbol = $bincompat5005{$symbol}
1116 if $define{PERL_BINCOMPAT_5005} and $symbol =~ /^($bincompat5005)$/;
1117 if ($PLATFORM eq 'win32') {
1118 $symbol = "_$symbol" if $CCTYPE eq 'BORLAND';
1119 print "\t$symbol\n";
1120 # XXX: binary compatibility between compilers is an exercise
1121 # in frustration :-(
1122 # if ($CCTYPE eq "BORLAND") {
1123 # # workaround Borland quirk by exporting both the straight
1124 # # name and a name with leading underscore. Note the
1125 # # alias *must* come after the symbol itself, if both
1126 # # are to be exported. (Linker bug?)
1127 # print "\t_$symbol\n";
1128 # print "\t$symbol = _$symbol\n";
1130 # elsif ($CCTYPE eq 'GCC') {
1131 # # Symbols have leading _ whole process is $%@"% slow
1132 # # so skip aliases for now
1133 # nprint "\t$symbol\n";
1136 # # for binary coexistence, export both the symbol and
1137 # # alias with leading underscore
1138 # print "\t$symbol\n";
1139 # print "\t_$symbol = $symbol\n";
1142 elsif ($PLATFORM eq 'os2') {
1143 printf qq( %-31s \@%s\n), qq("$symbol"), ++$sym_ord;
1145 elsif ($PLATFORM eq 'aix' || $PLATFORM eq 'MacOS') {
1148 elsif ($PLATFORM eq 'netware') {
1149 print "\t$symbol,\n";
1155 # extra globals not included above.
1174 PerlIOBase_setlinebuf
1185 PerlIOBuf_set_ptrcnt