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};
204 if ($PLATFORM eq 'win32') {
229 Perl_init_thread_intern
256 elsif ($PLATFORM eq 'aix') {
275 Perl_sys_intern_clear
284 elsif ($PLATFORM eq 'os2') {
321 XS_Cwd_extLibpath_set
325 XS_Cwd_sys_is_absolute
326 XS_Cwd_sys_is_relative
328 XS_DynaLoader_mod2fname
329 XS_File__Copy_syscopy
333 Perl_Process_Messages
341 elsif ($PLATFORM eq 'MacOS') {
365 Perl_sys_intern_clear
369 elsif ($PLATFORM eq 'netware') {
394 Perl_init_thread_intern
420 unless ($define{'DEBUGGING'}) {
435 if ($define{'PERL_IMPLICIT_SYS'}) {
456 unless ($define{'PERL_FLEXIBLE_EXCEPTIONS'}) {
460 Perl_vdefault_protect
464 unless ($define{'USE_REENTRANT_API'}) {
470 if ($define{'MYMALLOC'}) {
477 if ($define{'USE_5005THREADS'} || $define{'USE_ITHREADS'}) {
497 unless ($define{'USE_5005THREADS'} || $define{'USE_ITHREADS'}) {
503 unless ($define{'USE_5005THREADS'}) {
522 Perl_new_struct_thread
523 Perl_per_thread_magicals
532 unless ($define{'USE_ITHREADS'}) {
539 PL_sharedsv_space_mutex
566 Perl_sharedsv_thrcnt_dec
567 Perl_sharedsv_thrcnt_inc
572 unless ($define{'PERL_IMPLICIT_CONTEXT'}) {
578 Perl_load_module_nocontext
581 Perl_warner_nocontext
582 Perl_newSVpvf_nocontext
583 Perl_sv_catpvf_nocontext
584 Perl_sv_setpvf_nocontext
585 Perl_sv_catpvf_mg_nocontext
586 Perl_sv_setpvf_mg_nocontext
590 unless ($define{'PERL_IMPLICIT_SYS'}) {
597 unless ($define{'FAKE_THREADS'}) {
598 skip_symbols [qw(PL_curthr)];
603 my $proc = shift || sub { "PL_$_[2]" };
604 open(VARS,$file) || die "Cannot open $file: $!\n";
607 # All symbols have a Perl_ prefix because that's what embed.h
608 # sticks in front of them.
609 push(@syms, &$proc($1,$2,$3)) if (/\bPERLVAR(A?I?C?)\(([IGT])(\w+)/);
615 if ($define{'USE_5005THREADS'}) {
616 my $thrd = readvar($thrdvar_h);
620 if ($define{'PERL_GLOBAL_STRUCT'}) {
621 my $global = readvar($perlvars_h);
622 skip_symbols $global;
623 emit_symbol('Perl_GetVars');
624 emit_symbols [qw(PL_Vars PL_VarsPtr)] unless $CCTYPE eq 'GCC';
627 # functions from *.sym files
629 my @syms = ($global_sym, $globvar_sym); # $pp_sym is not part of the API
637 PerlIOBase_setlinebuf
662 if ($define{'USE_PERLIO'}) {
663 push @syms, $perlio_sym;
664 if ($define{'USE_SFIO'}) {
665 skip_symbols \@layer_syms;
666 # SFIO defines most of the PerlIO routines as macros
712 # Skip the PerlIO New Generation symbols.
713 skip_symbols \@layer_syms;
716 for my $syms (@syms) {
717 open (GLOBAL, "<$syms") || die "failed to open $syms: $!\n";
719 next if (!/^[A-Za-z]/);
720 # Functions have a Perl_ prefix
721 # Variables have a PL_ prefix
723 my $symbol = ($syms =~ /var\.sym$/i ? "PL_" : "");
725 emit_symbol($symbol) unless exists $skip{$symbol};
732 if ($define{'MULTIPLICITY'}) {
733 for my $f ($perlvars_h, $intrpvar_h, $thrdvar_h) {
734 my $glob = readvar($f, sub { "Perl_" . $_[1] . $_[2] . "_ptr" });
737 # XXX AIX seems to want the perlvars.h symbols, for some reason
738 if ($PLATFORM eq 'aix') {
739 my $glob = readvar($perlvars_h);
744 unless ($define{'PERL_GLOBAL_STRUCT'}) {
745 my $glob = readvar($perlvars_h);
748 unless ($define{'MULTIPLICITY'}) {
749 my $glob = readvar($intrpvar_h);
752 unless ($define{'MULTIPLICITY'} || $define{'USE_5005THREADS'}) {
753 my $glob = readvar($thrdvar_h);
761 return if $symbol !~ /^[A-Za-z_]/;
762 return if $symbol =~ /^\#/;
765 return if exists $skip{$symbol};
766 emit_symbol($symbol);
773 if ($PLATFORM eq 'win32') {
774 foreach my $symbol (qw(
834 win32_getprotobynumber
931 elsif ($PLATFORM eq 'os2') {
932 open MAP, 'miniperl.map' or die 'Cannot read miniperl.map';
933 /^\s*[\da-f:]+\s+(\w+)/i and $mapped{$1}++ foreach <MAP>;
934 close MAP or die 'Cannot close miniperl.map';
936 @missing = grep { !exists $mapped{$_} and !exists $bincompat5005{$_} }
938 delete $export{$_} foreach @missing;
940 elsif ($PLATFORM eq 'MacOS') {
941 open MACSYMS, 'macperl.sym' or die 'Cannot read macperl.sym';
949 elsif ($PLATFORM eq 'netware') {
950 foreach my $symbol (qw(
1075 fnInsertHashListAddrs
1080 try_symbol($symbol);
1084 # Now all symbols should be defined because
1085 # next we are going to output them.
1087 foreach my $symbol (sort keys %export) {
1088 output_symbol($symbol);
1091 if ($PLATFORM eq 'netware') {
1092 # This may not be the right way to do. This is to make sure
1093 # that the last symbol will not contain a comma else
1094 # Watcom linker cribs
1101 $export{$symbol} = 1;
1108 $symbol = $bincompat5005{$symbol}
1109 if $define{PERL_BINCOMPAT_5005} and $symbol =~ /^($bincompat5005)$/;
1110 if ($PLATFORM eq 'win32') {
1111 $symbol = "_$symbol" if $CCTYPE eq 'BORLAND';
1112 print "\t$symbol\n";
1113 # XXX: binary compatibility between compilers is an exercise
1114 # in frustration :-(
1115 # if ($CCTYPE eq "BORLAND") {
1116 # # workaround Borland quirk by exporting both the straight
1117 # # name and a name with leading underscore. Note the
1118 # # alias *must* come after the symbol itself, if both
1119 # # are to be exported. (Linker bug?)
1120 # print "\t_$symbol\n";
1121 # print "\t$symbol = _$symbol\n";
1123 # elsif ($CCTYPE eq 'GCC') {
1124 # # Symbols have leading _ whole process is $%@"% slow
1125 # # so skip aliases for now
1126 # nprint "\t$symbol\n";
1129 # # for binary coexistence, export both the symbol and
1130 # # alias with leading underscore
1131 # print "\t$symbol\n";
1132 # print "\t_$symbol = $symbol\n";
1135 elsif ($PLATFORM eq 'os2') {
1136 printf qq( %-31s \@%s\n), qq("$symbol"), ++$sym_ord;
1138 elsif ($PLATFORM eq 'aix' || $PLATFORM eq 'MacOS') {
1141 elsif ($PLATFORM eq 'netware') {
1142 print "\t$symbol,\n";
1148 # extra globals not included above.
1160 PerlIOBuf_set_ptrcnt
1165 PerlIOBase_setlinebuf