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.
7 # reads global.sym, pp.sym, perlvars.h, intrpvar.h, thrdvar.h, config.h
8 # On OS/2 reads miniperl.map as well
14 (Perl_call_argv => "perl_call_argv",
15 Perl_call_method => "perl_call_method",
16 Perl_call_pv => "perl_call_pv",
17 Perl_call_sv => "perl_call_sv",
18 Perl_get_av => "perl_get_av",
19 Perl_get_cv => "perl_get_cv",
20 Perl_get_hv => "perl_get_hv",
21 Perl_get_sv => "perl_get_sv",
22 Perl_init_i18nl10n => "perl_init_i18nl10n",
23 Perl_init_i18nl14n => "perl_init_i18nl14n",
24 Perl_new_collate => "perl_new_collate",
25 Perl_new_ctype => "perl_new_ctype",
26 Perl_new_numeric => "perl_new_numeric",
27 Perl_require_pv => "perl_require_pv",
28 Perl_safesyscalloc => "Perl_safecalloc",
29 Perl_safesysfree => "Perl_safefree",
30 Perl_safesysmalloc => "Perl_safemalloc",
31 Perl_safesysrealloc => "Perl_saferealloc",
32 Perl_set_numeric_local => "perl_set_numeric_local",
33 Perl_set_numeric_standard => "perl_set_numeric_standard",
34 Perl_malloc => "malloc",
36 Perl_realloc => "realloc",
37 Perl_calloc => "calloc",);
39 my $bincompat5005 = join("|", keys %bincompat5005);
43 $define{$1} = 1 if ($flag =~ /^-D(\w+)$/);
44 $define{$1} = $2 if ($flag =~ /^-D(\w+)=(.+)$/);
45 $CCTYPE = $1 if ($flag =~ /^CCTYPE=(\w+)$/);
46 $PLATFORM = $1 if ($flag =~ /^PLATFORM=(\w+)$/);
49 my @PLATFORM = qw(aix win32 os2);
51 @PLATFORM{@PLATFORM} = ();
53 defined $PLATFORM || die "PLATFORM undefined, must be one of: @PLATFORM\n";
54 exists $PLATFORM{$PLATFORM} || die "PLATFORM must be one of: @PLATFORM\n";
56 my $config_sh = "config.sh";
57 my $config_h = "config.h";
58 my $thrdvar_h = "thrdvar.h";
59 my $intrpvar_h = "intrpvar.h";
60 my $perlvars_h = "perlvars.h";
61 my $global_sym = "global.sym";
62 my $pp_sym = "pp.sym";
63 my $globvar_sym = "globvar.sym";
64 my $perlio_sym = "perlio.sym";
66 if ($PLATFORM eq 'aix') {
69 elsif ($PLATFORM eq 'win32') {
70 $CCTYPE = "MSVC" unless defined $CCTYPE;
71 foreach ($thrdvar_h, $intrpvar_h, $perlvars_h, $global_sym, $pp_sym, $globvar_sym) {
76 unless ($PLATFORM eq 'win32') {
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)='(.+)'$/;
91 open(CFG,$config_h) || die "Cannot open $config_h: $!\n";
93 $define{$1} = 1 if /^\s*#\s*define\s+(MYMALLOC)\b/;
94 $define{$1} = 1 if /^\s*#\s*define\s+(USE_THREADS)\b/;
95 $define{$1} = 1 if /^\s*#\s*define\s+(USE_PERLIO)\b/;
96 $define{$1} = 1 if /^\s*#\s*define\s+(MULTIPLICITY)\b/;
97 $define{$1} = 1 if /^\s*#\s*define\s+(PERL_BINCOMPAT_5005)\b/;
101 if ($PLATFORM eq 'win32') {
102 warn join(' ',keys %define)."\n";
103 if ($define{PERL_OBJECT}) {
104 print "LIBRARY Perl56\n";
105 print "DESCRIPTION 'Perl interpreter'\n";
107 # output_symbol("perl_alloc");
108 output_symbol("perl_get_host_info");
109 output_symbol("perl_alloc_override");
110 # output_symbol("perl_construct");
111 # output_symbol("perl_destruct");
112 # output_symbol("perl_free");
113 # output_symbol("perl_parse");
114 # output_symbol("perl_run");
115 # output_symbol("RunPerl");
119 if ($CCTYPE ne 'GCC') {
120 print "LIBRARY Perl\n";
121 print "DESCRIPTION 'Perl interpreter, export autogenerated'\n";
124 $define{'PERL_GLOBAL_STRUCT'} = 1;
125 $define{'MULTIPLICITY'} = 1;
130 elsif ($PLATFORM eq 'os2') {
131 ($v = $]) =~ s/(\d\.\d\d\d)(\d\d)$/$1_$2/;
132 $v .= '-thread' if $ARCHNAME =~ /-thread/;
134 #for (split //, $v) {
135 # $sum = ($sum * 33) + ord;
140 #$sum = printf '%X', $sum;
141 ($dll = $define{PERL_DLL}) =~ s/\.dll$//i;
142 # print STDERR "'$dll' <= '$define{PERL_DLL}'\n";
144 LIBRARY '$dll' INITINSTANCE TERMINSTANCE
145 DESCRIPTION '\@#perl5-porters\@perl.org:$v#\@ Perl interpreter, configured as $CONFIG_ARGS'
148 DATA LOADONCALL NONSHARED MULTIPLE
152 elsif ($PLATFORM eq 'aix') {
161 foreach my $symbol (@$list) {
168 foreach my $symbol (@$list) {
169 my $skipsym = $symbol;
171 if ($define{PERL_OBJECT}) {
172 $skipsym =~ s/^Perl_[GIT](\w+)_ptr$/PL_$1/;
174 emit_symbol($symbol) unless exists $skip{$skipsym};
178 if ($PLATFORM eq 'win32') {
203 Perl_init_thread_intern
228 elsif ($PLATFORM eq 'aix') {
253 elsif ($PLATFORM eq 'os2') {
277 XS_Cwd_extLibpath_set
281 XS_Cwd_sys_is_absolute
282 XS_Cwd_sys_is_relative
284 XS_DynaLoader_mod2fname
285 XS_File__Copy_syscopy
289 Perl_Process_Messages
296 unless ($define{'DEBUGGING'}) {
312 if ($define{'PERL_IMPLICIT_SYS'}) {
333 if ($define{'MYMALLOC'}) {
341 if ($define{'USE_THREADS'} || $define{'USE_ITHREADS'}) {
359 unless ($define{'USE_THREADS'}) {
379 Perl_new_struct_thread
380 Perl_per_thread_magicals
388 unless ($define{'USE_ITHREADS'}) {
412 unless ($define{'PERL_IMPLICIT_CONTEXT'}) {
420 Perl_warner_nocontext
421 Perl_newSVpvf_nocontext
422 Perl_sv_catpvf_nocontext
423 Perl_sv_setpvf_nocontext
424 Perl_sv_catpvf_mg_nocontext
425 Perl_sv_setpvf_mg_nocontext
429 unless ($define{'PERL_IMPLICIT_SYS'}) {
436 unless ($define{'FAKE_THREADS'}) {
437 skip_symbols [qw(PL_curthr)];
442 my $proc = shift || sub { "PL_$_[2]" };
443 open(VARS,$file) || die "Cannot open $file: $!\n";
446 # All symbols have a Perl_ prefix because that's what embed.h
447 # sticks in front of them.
448 push(@syms, &$proc($1,$2,$3)) if (/\bPERLVAR(A?I?C?)\(([IGT])(\w+)/);
454 if ($define{'USE_THREADS'} || $define{'MULTIPLICITY'}) {
455 my $thrd = readvar($thrdvar_h);
459 if ($define{'MULTIPLICITY'}) {
460 my $interp = readvar($intrpvar_h);
461 skip_symbols $interp;
464 if ($define{'PERL_GLOBAL_STRUCT'}) {
465 my $global = readvar($perlvars_h);
466 skip_symbols $global;
467 emit_symbol('Perl_GetVars');
468 emit_symbols [qw(PL_Vars PL_VarsPtr)] unless $CCTYPE eq 'GCC';
471 # functions from *.sym files
473 my @syms = ($global_sym, $pp_sym, $globvar_sym);
475 if ($define{'USE_PERLIO'}) {
476 push @syms, $perlio_sym;
479 for my $syms (@syms) {
480 open (GLOBAL, "<$syms") || die "failed to open $syms: $!\n";
482 next if (!/^[A-Za-z]/);
483 # Functions have a Perl_ prefix
484 # Variables have a PL_ prefix
486 my $symbol = ($syms =~ /var\.sym$/i ? "PL_" : "");
488 emit_symbol($symbol) unless exists $skip{$symbol};
495 if ($define{'PERL_OBJECT'}) {
496 for my $f ($perlvars_h, $intrpvar_h, $thrdvar_h) {
497 my $glob = readvar($f, sub { "Perl_" . $_[1] . $_[2] . "_ptr" });
502 unless ($define{'PERL_GLOBAL_STRUCT'}) {
503 my $glob = readvar($perlvars_h);
506 unless ($define{'MULTIPLICITY'}) {
507 my $glob = readvar($intrpvar_h);
510 unless ($define{'MULTIPLICITY'} || $define{'USE_THREADS'}) {
511 my $glob = readvar($thrdvar_h);
519 return if $symbol !~ /^[A-Za-z]/;
520 return if $symbol =~ /^\#/;
523 return if exists $skip{$symbol};
524 emit_symbol($symbol);
531 if ($PLATFORM eq 'win32') {
532 foreach my $symbol (qw(
623 win32_getprotobynumber
690 elsif ($PLATFORM eq 'os2') {
691 open MAP, 'miniperl.map' or die 'Cannot read miniperl.map';
692 /^\s*[\da-f:]+\s+(\w+)/i and $mapped{$1}++ foreach <MAP>;
693 close MAP or die 'Cannot close miniperl.map';
695 @missing = grep { !exists $mapped{$_} and !exists $bincompat5005{$_} }
697 delete $export{$_} foreach @missing;
700 # Now all symbols should be defined because
701 # next we are going to output them.
703 foreach my $symbol (sort keys %export) {
704 output_symbol($symbol);
710 $export{$symbol} = 1;
715 $symbol = $bincompat5005{$symbol}
716 if $define{PERL_BINCOMPAT_5005} and $symbol =~ /^($bincompat5005)$/;
717 if ($PLATFORM eq 'win32') {
718 $symbol = "_$symbol" if $CCTYPE eq 'BORLAND';
720 # XXX: binary compatibility between compilers is an exercise
722 # if ($CCTYPE eq "BORLAND") {
723 # # workaround Borland quirk by exporting both the straight
724 # # name and a name with leading underscore. Note the
725 # # alias *must* come after the symbol itself, if both
726 # # are to be exported. (Linker bug?)
727 # print "\t_$symbol\n";
728 # print "\t$symbol = _$symbol\n";
730 # elsif ($CCTYPE eq 'GCC') {
731 # # Symbols have leading _ whole process is $%@"% slow
732 # # so skip aliases for now
733 # nprint "\t$symbol\n";
736 # # for binary coexistence, export both the symbol and
737 # # alias with leading underscore
738 # print "\t$symbol\n";
739 # print "\t_$symbol = $symbol\n";
742 elsif ($PLATFORM eq 'os2') {
743 print qq( "$symbol"\n);
745 elsif ($PLATFORM eq 'aix') {
752 # extra globals not included above.