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'}) {
433 if ($define{'PERL_IMPLICIT_SYS'}) {
454 unless ($define{'PERL_FLEXIBLE_EXCEPTIONS'}) {
458 Perl_vdefault_protect
462 unless ($define{'USE_REENTRANT_API'}) {
468 if ($define{'MYMALLOC'}) {
475 if ($define{'USE_5005THREADS'} || $define{'USE_ITHREADS'}) {
495 unless ($define{'USE_5005THREADS'} || $define{'USE_ITHREADS'}) {
501 unless ($define{'USE_5005THREADS'}) {
520 Perl_new_struct_thread
521 Perl_per_thread_magicals
530 unless ($define{'USE_ITHREADS'}) {
537 PL_sharedsv_space_mutex
564 Perl_sharedsv_thrcnt_dec
565 Perl_sharedsv_thrcnt_inc
570 unless ($define{'PERL_IMPLICIT_CONTEXT'}) {
576 Perl_load_module_nocontext
579 Perl_warner_nocontext
580 Perl_newSVpvf_nocontext
581 Perl_sv_catpvf_nocontext
582 Perl_sv_setpvf_nocontext
583 Perl_sv_catpvf_mg_nocontext
584 Perl_sv_setpvf_mg_nocontext
588 unless ($define{'PERL_IMPLICIT_SYS'}) {
595 unless ($define{'FAKE_THREADS'}) {
596 skip_symbols [qw(PL_curthr)];
601 my $proc = shift || sub { "PL_$_[2]" };
602 open(VARS,$file) || die "Cannot open $file: $!\n";
605 # All symbols have a Perl_ prefix because that's what embed.h
606 # sticks in front of them.
607 push(@syms, &$proc($1,$2,$3)) if (/\bPERLVAR(A?I?C?)\(([IGT])(\w+)/);
613 if ($define{'USE_5005THREADS'}) {
614 my $thrd = readvar($thrdvar_h);
618 if ($define{'PERL_GLOBAL_STRUCT'}) {
619 my $global = readvar($perlvars_h);
620 skip_symbols $global;
621 emit_symbol('Perl_GetVars');
622 emit_symbols [qw(PL_Vars PL_VarsPtr)] unless $CCTYPE eq 'GCC';
625 # functions from *.sym files
627 my @syms = ($global_sym, $globvar_sym); # $pp_sym is not part of the API
638 PerlIOBase_setlinebuf
665 if ($define{'USE_PERLIO'}) {
666 push @syms, $perlio_sym;
667 if ($define{'USE_SFIO'}) {
668 skip_symbols \@layer_syms;
669 # SFIO defines most of the PerlIO routines as macros
715 # Skip the PerlIO New Generation symbols.
716 skip_symbols \@layer_syms;
719 for my $syms (@syms) {
720 open (GLOBAL, "<$syms") || die "failed to open $syms: $!\n";
722 next if (!/^[A-Za-z]/);
723 # Functions have a Perl_ prefix
724 # Variables have a PL_ prefix
726 my $symbol = ($syms =~ /var\.sym$/i ? "PL_" : "");
728 emit_symbol($symbol) unless exists $skip{$symbol};
735 if ($define{'MULTIPLICITY'}) {
736 for my $f ($perlvars_h, $intrpvar_h, $thrdvar_h) {
737 my $glob = readvar($f, sub { "Perl_" . $_[1] . $_[2] . "_ptr" });
740 # XXX AIX seems to want the perlvars.h symbols, for some reason
741 if ($PLATFORM eq 'aix') {
742 my $glob = readvar($perlvars_h);
747 unless ($define{'PERL_GLOBAL_STRUCT'}) {
748 my $glob = readvar($perlvars_h);
751 unless ($define{'MULTIPLICITY'}) {
752 my $glob = readvar($intrpvar_h);
755 unless ($define{'MULTIPLICITY'} || $define{'USE_5005THREADS'}) {
756 my $glob = readvar($thrdvar_h);
764 return if $symbol !~ /^[A-Za-z_]/;
765 return if $symbol =~ /^\#/;
768 return if exists $skip{$symbol};
769 emit_symbol($symbol);
776 if ($PLATFORM eq 'win32') {
777 foreach my $symbol (qw(
837 win32_getprotobynumber
938 elsif ($PLATFORM eq 'os2') {
939 open MAP, 'miniperl.map' or die 'Cannot read miniperl.map';
940 /^\s*[\da-f:]+\s+(\w+)/i and $mapped{$1}++ foreach <MAP>;
941 close MAP or die 'Cannot close miniperl.map';
943 @missing = grep { !exists $mapped{$_} and !exists $bincompat5005{$_} }
945 delete $export{$_} foreach @missing;
947 elsif ($PLATFORM eq 'MacOS') {
948 open MACSYMS, 'macperl.sym' or die 'Cannot read macperl.sym';
956 elsif ($PLATFORM eq 'netware') {
957 foreach my $symbol (qw(
1083 fnInsertHashListAddrs
1088 try_symbol($symbol);
1092 # Now all symbols should be defined because
1093 # next we are going to output them.
1095 foreach my $symbol (sort keys %export) {
1096 output_symbol($symbol);
1099 if ($PLATFORM eq 'netware') {
1100 # This may not be the right way to do. This is to make sure
1101 # that the last symbol will not contain a comma else
1102 # Watcom linker cribs
1109 $export{$symbol} = 1;
1116 $symbol = $bincompat5005{$symbol}
1117 if $define{PERL_BINCOMPAT_5005} and $symbol =~ /^($bincompat5005)$/;
1118 if ($PLATFORM eq 'win32') {
1119 $symbol = "_$symbol" if $CCTYPE eq 'BORLAND';
1120 print "\t$symbol\n";
1121 # XXX: binary compatibility between compilers is an exercise
1122 # in frustration :-(
1123 # if ($CCTYPE eq "BORLAND") {
1124 # # workaround Borland quirk by exporting both the straight
1125 # # name and a name with leading underscore. Note the
1126 # # alias *must* come after the symbol itself, if both
1127 # # are to be exported. (Linker bug?)
1128 # print "\t_$symbol\n";
1129 # print "\t$symbol = _$symbol\n";
1131 # elsif ($CCTYPE eq 'GCC') {
1132 # # Symbols have leading _ whole process is $%@"% slow
1133 # # so skip aliases for now
1134 # nprint "\t$symbol\n";
1137 # # for binary coexistence, export both the symbol and
1138 # # alias with leading underscore
1139 # print "\t$symbol\n";
1140 # print "\t_$symbol = $symbol\n";
1143 elsif ($PLATFORM eq 'os2') {
1144 printf qq( %-31s \@%s\n), qq("$symbol"), ++$sym_ord;
1146 elsif ($PLATFORM eq 'aix' || $PLATFORM eq 'MacOS') {
1149 elsif ($PLATFORM eq 'netware') {
1150 print "\t$symbol,\n";
1156 # extra globals not included above.
1175 PerlIOBase_setlinebuf
1186 PerlIOBuf_set_ptrcnt