This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perl_clone_host() n/a when PERL_IMPLICIT_SYS isn't
[perl5.git] / makedef.pl
1 #
2 # Create the export list for perl.
3 #
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.
7 #
8 # reads global.sym, pp.sym, perlvars.h, intrpvar.h, thrdvar.h, config.h
9 # On OS/2 reads miniperl.map as well
10
11 my $PLATFORM;
12 my $CCTYPE;
13
14 while (@ARGV) {
15     my $flag = shift;
16     $define{$1} = 1 if ($flag =~ /^-D(\w+)$/);
17     $define{$1} = $2 if ($flag =~ /^-D(\w+)=(.+)$/);
18     $CCTYPE   = $1 if ($flag =~ /^CCTYPE=(\w+)$/);
19     $PLATFORM = $1 if ($flag =~ /^PLATFORM=(\w+)$/);
20     if ($PLATFORM eq 'netware') {
21         $FILETYPE = $1 if ($flag =~ /^FILETYPE=(\w+)$/);
22     }
23 }
24
25 my @PLATFORM = qw(aix win32 wince os2 MacOS netware);
26 my %PLATFORM;
27 @PLATFORM{@PLATFORM} = ();
28
29 defined $PLATFORM || die "PLATFORM undefined, must be one of: @PLATFORM\n";
30 exists $PLATFORM{$PLATFORM} || die "PLATFORM must be one of: @PLATFORM\n";
31
32 my $config_sh   = "config.sh";
33 my $config_h    = "config.h";
34 my $thrdvar_h   = "thrdvar.h";
35 my $intrpvar_h  = "intrpvar.h";
36 my $perlvars_h  = "perlvars.h";
37 my $global_sym  = "global.sym";
38 my $pp_sym      = "pp.sym";
39 my $globvar_sym = "globvar.sym";
40 my $perlio_sym  = "perlio.sym";
41
42 if ($PLATFORM eq 'aix') {
43     # Nothing for now.
44 }
45 elsif ($PLATFORM =~ /^win(?:32|ce)$/ || $PLATFORM eq 'netware') {
46     $CCTYPE = "MSVC" unless defined $CCTYPE;
47     foreach ($thrdvar_h, $intrpvar_h, $perlvars_h, $global_sym,
48                 $pp_sym, $globvar_sym, $perlio_sym) {
49         s!^!..\\!;
50     }
51 }
52 elsif ($PLATFORM eq 'MacOS') {
53     foreach ($thrdvar_h, $intrpvar_h, $perlvars_h, $global_sym,
54                 $pp_sym, $globvar_sym, $perlio_sym) {
55         s!^!::!;
56     }
57 }
58
59 unless ($PLATFORM eq 'win32' || $PLATFORM eq 'wince' || $PLATFORM eq 'MacOS' || $PLATFORM eq 'netware') {
60     open(CFG,$config_sh) || die "Cannot open $config_sh: $!\n";
61     while (<CFG>) {
62         if (/^(?:ccflags|optimize)='(.+)'$/) {
63             $_ = $1;
64             $define{$1} = 1 while /-D(\w+)/g;
65         }
66         if ($PLATFORM eq 'os2') {
67             $CONFIG_ARGS = $1 if /^config_args='(.+)'$/;
68             $ARCHNAME =    $1 if /^archname='(.+)'$/;
69             $PATCHLEVEL =  $1 if /^perl_patchlevel='(.+)'$/;
70         }
71     }
72     close(CFG);
73 }
74
75 open(CFG,$config_h) || die "Cannot open $config_h: $!\n";
76 while (<CFG>) {
77     $define{$1} = 1 if /^\s*#\s*define\s+(MYMALLOC)\b/;
78     $define{$1} = 1 if /^\s*#\s*define\s+(MULTIPLICITY)\b/;
79     $define{$1} = 1 if /^\s*#\s*define\s+(PERL_\w+)\b/;
80     $define{$1} = 1 if /^\s*#\s*define\s+(USE_\w+)\b/;
81 }
82 close(CFG);
83
84 # perl.h logic duplication begins
85
86 if ($define{PERL_IMPLICIT_SYS}) {
87     $define{PL_OP_SLAB_ALLOC} = 1;
88 }
89
90 if ($define{USE_ITHREADS}) {
91     if (!$define{MULTIPLICITY}) {
92         $define{MULTIPLICITY} = 1;
93     }
94 }
95
96 $define{PERL_IMPLICIT_CONTEXT} ||=
97     $define{USE_ITHREADS} ||
98     $define{USE_5005THREADS}  ||
99     $define{MULTIPLICITY} ;
100
101 if ($define{USE_ITHREADS} && $PLATFORM ne 'win32' && $^O ne 'darwin') {
102     $define{USE_REENTRANT_API} = 1;
103 }
104
105 # perl.h logic duplication ends
106
107 my $sym_ord = 0;
108
109 if ($PLATFORM =~ /^win(?:32|ce)$/) {
110     warn join(' ',keys %define)."\n";
111     ($dll = ($define{PERL_DLL} || "perl58")) =~ s/\.dll$//i;
112     print "LIBRARY $dll\n";
113     print "DESCRIPTION 'Perl interpreter'\n";
114     print "EXPORTS\n";
115     if ($define{PERL_IMPLICIT_SYS}) {
116         output_symbol("perl_get_host_info");
117         output_symbol("perl_alloc_override");
118     }
119     if ($define{USE_ITHREADS} and $define{PERL_IMPLICIT_SYS}) {
120         output_symbol("perl_clone_host");
121     }
122 }
123 elsif ($PLATFORM eq 'os2') {
124     if (open my $fh, '<', 'perl5.def') {
125       while (<$fh>) {
126         last if /^\s*EXPORTS\b/;
127       }
128       while (<$fh>) {
129         $ordinal{$1} = $2 if /^\s*"(\w+)"\s*\@(\d+)\s*$/;
130         # This allows skipping ordinals which were used in older versions
131         $sym_ord = $1 if /^\s*;\s*LAST_ORDINAL\s*=\s*(\d+)\s*$/;
132       }
133       $sym_ord < $_ and $sym_ord = $_ for values %ordinal; # Take the max
134     }
135     ($v = $]) =~ s/(\d\.\d\d\d)(\d\d)$/$1_$2/;
136     $v .= '-thread' if $ARCHNAME =~ /-thread/;
137     ($dll = $define{PERL_DLL}) =~ s/\.dll$//i;
138     $v .= "\@$PATCHLEVEL" if $PATCHLEVEL;
139     $d = "DESCRIPTION '\@#perl5-porters\@perl.org:$v#\@ Perl interpreter, configured as $CONFIG_ARGS'";
140     $d = substr($d, 0, 249) . "...'" if length $d > 253;
141     print <<"---EOP---";
142 LIBRARY '$dll' INITINSTANCE TERMINSTANCE
143 $d
144 STACKSIZE 32768
145 CODE LOADONCALL
146 DATA LOADONCALL NONSHARED MULTIPLE
147 EXPORTS
148 ---EOP---
149 }
150 elsif ($PLATFORM eq 'aix') {
151     $OSVER = `uname -v`;
152     chop $OSVER;
153     $OSREL = `uname -r`;
154     chop $OSREL;
155     if ($OSVER > 4 || ($OSVER == 4 && $OSREL >= 3)) {
156         print "#! ..\n";
157     } else {
158         print "#!\n";
159     }
160 }
161 elsif ($PLATFORM eq 'netware') {
162         if ($FILETYPE eq 'def') {
163         print "LIBRARY perl58\n";
164         print "DESCRIPTION 'Perl interpreter for NetWare'\n";
165         print "EXPORTS\n";
166         }
167         if ($define{PERL_IMPLICIT_SYS}) {
168             output_symbol("perl_get_host_info");
169             output_symbol("perl_alloc_override");
170             output_symbol("perl_clone_host");
171         }
172 }
173
174 my %skip;
175 my %export;
176
177 sub skip_symbols {
178     my $list = shift;
179     foreach my $symbol (@$list) {
180         $skip{$symbol} = 1;
181     }
182 }
183
184 sub emit_symbols {
185     my $list = shift;
186     foreach my $symbol (@$list) {
187         my $skipsym = $symbol;
188         # XXX hack
189         if ($define{MULTIPLICITY}) {
190             $skipsym =~ s/^Perl_[GIT](\w+)_ptr$/PL_$1/;
191         }
192         emit_symbol($symbol) unless exists $skip{$skipsym};
193     }
194 }
195
196 if ($PLATFORM eq 'win32') {
197     skip_symbols [qw(
198                      PL_statusvalue_vms
199                      PL_archpat_auto
200                      PL_cryptseen
201                      PL_DBcv
202                      PL_generation
203                      PL_lastgotoprobe
204                      PL_linestart
205                      PL_modcount
206                      PL_pending_ident
207                      PL_sortcxix
208                      PL_sublex_info
209                      PL_timesbuf
210                      main
211                      Perl_ErrorNo
212                      Perl_GetVars
213                      Perl_do_exec3
214                      Perl_do_ipcctl
215                      Perl_do_ipcget
216                      Perl_do_msgrcv
217                      Perl_do_msgsnd
218                      Perl_do_semop
219                      Perl_do_shmio
220                      Perl_dump_fds
221                      Perl_init_thread_intern
222                      Perl_my_bzero
223                      Perl_my_bcopy
224                      Perl_my_htonl
225                      Perl_my_ntohl
226                      Perl_my_swap
227                      Perl_my_chsize
228                      Perl_same_dirent
229                      Perl_setenv_getix
230                      Perl_unlnk
231                      Perl_watch
232                      Perl_safexcalloc
233                      Perl_safexmalloc
234                      Perl_safexfree
235                      Perl_safexrealloc
236                      Perl_my_memcmp
237                      Perl_my_memset
238                      PL_cshlen
239                      PL_cshname
240                      PL_opsave
241                      Perl_do_exec
242                      Perl_getenv_len
243                      Perl_my_pclose
244                      Perl_my_popen
245                      )];
246 }
247 elsif ($PLATFORM eq 'wince') {
248     skip_symbols [qw(
249                      PL_statusvalue_vms
250                      PL_archpat_auto
251                      PL_cryptseen
252                      PL_DBcv
253                      PL_generation
254                      PL_lastgotoprobe
255                      PL_linestart
256                      PL_modcount
257                      PL_pending_ident
258                      PL_sortcxix
259                      PL_sublex_info
260                      PL_timesbuf
261                      PL_collation_ix
262                      PL_collation_name
263                      PL_collation_standard
264                      PL_collxfrm_base
265                      PL_collxfrm_mult
266                      PL_numeric_compat1
267                      PL_numeric_local
268                      PL_numeric_name
269                      PL_numeric_radix_sv
270                      PL_numeric_standard
271                      PL_vtbl_collxfrm
272                      Perl_sv_collxfrm
273                      setgid
274                      setuid
275                      win32_async_check
276                      win32_free_childdir
277                      win32_free_childenv
278                      win32_get_childdir
279                      win32_get_childenv
280                      win32_spawnvp
281                      main
282                      Perl_ErrorNo
283                      Perl_GetVars
284                      Perl_do_exec3
285                      Perl_do_ipcctl
286                      Perl_do_ipcget
287                      Perl_do_msgrcv
288                      Perl_do_msgsnd
289                      Perl_do_semop
290                      Perl_do_shmio
291                      Perl_dump_fds
292                      Perl_init_thread_intern
293                      Perl_my_bzero
294                      Perl_my_bcopy
295                      Perl_my_htonl
296                      Perl_my_ntohl
297                      Perl_my_swap
298                      Perl_my_chsize
299                      Perl_same_dirent
300                      Perl_setenv_getix
301                      Perl_unlnk
302                      Perl_watch
303                      Perl_safexcalloc
304                      Perl_safexmalloc
305                      Perl_safexfree
306                      Perl_safexrealloc
307                      Perl_my_memcmp
308                      Perl_my_memset
309                      PL_cshlen
310                      PL_cshname
311                      PL_opsave
312                      Perl_do_exec
313                      Perl_getenv_len
314                      Perl_my_pclose
315                      Perl_my_popen
316                      )];
317 }
318 elsif ($PLATFORM eq 'aix') {
319     skip_symbols([qw(
320                      Perl_dump_fds
321                      Perl_ErrorNo
322                      Perl_GetVars
323                      Perl_my_bcopy
324                      Perl_my_bzero
325                      Perl_my_chsize
326                      Perl_my_htonl
327                      Perl_my_memcmp
328                      Perl_my_memset
329                      Perl_my_ntohl
330                      Perl_my_swap
331                      Perl_safexcalloc
332                      Perl_safexfree
333                      Perl_safexmalloc
334                      Perl_safexrealloc
335                      Perl_same_dirent
336                      Perl_unlnk
337                      Perl_sys_intern_clear
338                      Perl_sys_intern_dup
339                      Perl_sys_intern_init
340                      PL_cryptseen
341                      PL_opsave
342                      PL_statusvalue_vms
343                      PL_sys_intern
344                      )]);
345 }
346 elsif ($PLATFORM eq 'os2') {
347     emit_symbols([qw(
348                     ctermid
349                     get_sysinfo
350                     Perl_OS2_init
351                     Perl_OS2_init3
352                     Perl_OS2_term
353                     OS2_Perl_data
354                     dlopen
355                     dlsym
356                     dlerror
357                     dlclose
358                     my_tmpfile
359                     my_tmpnam
360                     my_flock
361                     my_rmdir
362                     my_mkdir
363                     my_getpwuid
364                     my_getpwnam
365                     my_getpwent
366                     my_setpwent
367                     my_endpwent
368                     setgrent
369                     endgrent
370                     getgrent
371                     malloc_mutex
372                     threads_mutex
373                     nthreads
374                     nthreads_cond
375                     os2_cond_wait
376                     os2_stat
377                     pthread_join
378                     pthread_create
379                     pthread_detach
380                     XS_Cwd_change_drive
381                     XS_Cwd_current_drive
382                     XS_Cwd_extLibpath
383                     XS_Cwd_extLibpath_set
384                     XS_Cwd_sys_abspath
385                     XS_Cwd_sys_chdir
386                     XS_Cwd_sys_cwd
387                     XS_Cwd_sys_is_absolute
388                     XS_Cwd_sys_is_relative
389                     XS_Cwd_sys_is_rooted
390                     XS_DynaLoader_mod2fname
391                     XS_File__Copy_syscopy
392                     Perl_Register_MQ
393                     Perl_Deregister_MQ
394                     Perl_Serve_Messages
395                     Perl_Process_Messages
396                     init_PMWIN_entries
397                     PMWIN_entries
398                     Perl_hab_GET
399                     loadByOrdinal
400                     pExtFCN
401                     os2error
402                     ResetWinError
403                     CroakWinError
404                     )]);
405 }
406 elsif ($PLATFORM eq 'MacOS') {
407     skip_symbols [qw(
408                     Perl_GetVars
409                     PL_cryptseen
410                     PL_cshlen
411                     PL_cshname
412                     PL_statusvalue_vms
413                     PL_sys_intern
414                     PL_opsave
415                     PL_timesbuf
416                     Perl_dump_fds
417                     Perl_my_bcopy
418                     Perl_my_bzero
419                     Perl_my_chsize
420                     Perl_my_htonl
421                     Perl_my_memcmp
422                     Perl_my_memset
423                     Perl_my_ntohl
424                     Perl_my_swap
425                     Perl_safexcalloc
426                     Perl_safexfree
427                     Perl_safexmalloc
428                     Perl_safexrealloc
429                     Perl_unlnk
430                     Perl_sys_intern_clear
431                     Perl_sys_intern_init
432                     )];
433 }
434 elsif ($PLATFORM eq 'netware') {
435         skip_symbols [qw(
436                         PL_statusvalue_vms
437                         PL_archpat_auto
438                         PL_cryptseen
439                         PL_DBcv
440                         PL_generation
441                         PL_lastgotoprobe
442                         PL_linestart
443                         PL_modcount
444                         PL_pending_ident
445                         PL_sortcxix
446                         PL_sublex_info
447                         PL_timesbuf
448                         main
449                         Perl_ErrorNo
450                         Perl_GetVars
451                         Perl_do_exec3
452                         Perl_do_ipcctl
453                         Perl_do_ipcget
454                         Perl_do_msgrcv
455                         Perl_do_msgsnd
456                         Perl_do_semop
457                         Perl_do_shmio
458                         Perl_dump_fds
459                         Perl_init_thread_intern
460                         Perl_my_bzero
461                         Perl_my_htonl
462                         Perl_my_ntohl
463                         Perl_my_swap
464                         Perl_my_chsize
465                         Perl_same_dirent
466                         Perl_setenv_getix
467                         Perl_unlnk
468                         Perl_watch
469                         Perl_safexcalloc
470                         Perl_safexmalloc
471                         Perl_safexfree
472                         Perl_safexrealloc
473                         Perl_my_memcmp
474                         Perl_my_memset
475                         PL_cshlen
476                         PL_cshname
477                         PL_opsave
478                         Perl_do_exec
479                         Perl_getenv_len
480                         Perl_my_pclose
481                         Perl_my_popen
482                         Perl_sys_intern_init
483                         Perl_sys_intern_dup
484                         Perl_sys_intern_clear
485                         Perl_my_bcopy
486                         Perl_PerlIO_write
487                         Perl_PerlIO_unread
488                         Perl_PerlIO_tell
489                         Perl_PerlIO_stdout
490                         Perl_PerlIO_stdin
491                         Perl_PerlIO_stderr
492                         Perl_PerlIO_setlinebuf
493                         Perl_PerlIO_set_ptrcnt
494                         Perl_PerlIO_set_cnt
495                         Perl_PerlIO_seek
496                         Perl_PerlIO_read
497                         Perl_PerlIO_get_ptr
498                         Perl_PerlIO_get_cnt
499                         Perl_PerlIO_get_bufsiz
500                         Perl_PerlIO_get_base
501                         Perl_PerlIO_flush
502                         Perl_PerlIO_fill
503                         Perl_PerlIO_fileno
504                         Perl_PerlIO_error
505                         Perl_PerlIO_eof
506                         Perl_PerlIO_close
507                         Perl_PerlIO_clearerr
508                         PerlIO_perlio
509                         )];
510 }
511
512 unless ($define{'DEBUGGING'}) {
513     skip_symbols [qw(
514                     Perl_deb_growlevel
515                     Perl_debop
516                     Perl_debprofdump
517                     Perl_debstack
518                     Perl_debstackptrs
519                     Perl_sv_peek
520                     PL_block_type
521                     PL_watchaddr
522                     PL_watchok
523                     )];
524 }
525
526 if ($define{'PERL_IMPLICIT_SYS'}) {
527     skip_symbols [qw(
528                     Perl_getenv_len
529                     Perl_my_popen
530                     Perl_my_pclose
531                     )];
532 }
533 else {
534     skip_symbols [qw(
535                     PL_Mem
536                     PL_MemShared
537                     PL_MemParse
538                     PL_Env
539                     PL_StdIO
540                     PL_LIO
541                     PL_Dir
542                     PL_Sock
543                     PL_Proc
544                     )];
545 }
546
547 unless ($define{'PERL_FLEXIBLE_EXCEPTIONS'}) {
548     skip_symbols [qw(
549                     PL_protect
550                     Perl_default_protect
551                     Perl_vdefault_protect
552                     )];
553 }
554
555 unless ($define{'USE_REENTRANT_API'}) {
556     skip_symbols [qw(
557                     PL_reentrant_buffer
558                     )];
559 }
560
561 if ($define{'MYMALLOC'}) {
562     emit_symbols [qw(
563                     Perl_dump_mstats
564                     Perl_get_mstats
565                     Perl_strdup
566                     Perl_putenv
567                     )];
568     if ($define{'USE_5005THREADS'} || $define{'USE_ITHREADS'}) {
569         emit_symbols [qw(
570                         PL_malloc_mutex
571                         )];
572     }
573     else {
574         skip_symbols [qw(
575                         PL_malloc_mutex
576                         )];
577     }
578 }
579 else {
580     skip_symbols [qw(
581                     PL_malloc_mutex
582                     Perl_dump_mstats
583                     Perl_get_mstats
584                     Perl_malloced_size
585                     )];
586 }
587
588 unless ($define{'USE_5005THREADS'} || $define{'USE_ITHREADS'}) {
589     skip_symbols [qw(
590                     PL_thr_key
591                     )];
592 }
593
594 unless ($define{'USE_5005THREADS'}) {
595     skip_symbols [qw(
596                     PL_sv_mutex
597                     PL_strtab_mutex
598                     PL_svref_mutex
599                     PL_cred_mutex
600                     PL_eval_mutex
601                     PL_fdpid_mutex
602                     PL_sv_lock_mutex
603                     PL_eval_cond
604                     PL_eval_owner
605                     PL_threads_mutex
606                     PL_nthreads
607                     PL_nthreads_cond
608                     PL_threadnum
609                     PL_threadsv_names
610                     PL_thrsv
611                     PL_vtbl_mutex
612                     Perl_condpair_magic
613                     Perl_new_struct_thread
614                     Perl_per_thread_magicals
615                     Perl_thread_create
616                     Perl_find_threadsv
617                     Perl_unlock_condpair
618                     Perl_magic_mutexfree
619                     Perl_sv_lock
620                     )];
621 }
622
623 unless ($define{'USE_ITHREADS'}) {
624     skip_symbols [qw(
625                     PL_ptr_table
626                     PL_op_mutex
627                     PL_regex_pad
628                     PL_regex_padav
629                     PL_sharedsv_space
630                     PL_sharedsv_space_mutex
631                     Perl_dirp_dup
632                     Perl_cx_dup
633                     Perl_si_dup
634                     Perl_any_dup
635                     Perl_ss_dup
636                     Perl_fp_dup
637                     Perl_gp_dup
638                     Perl_he_dup
639                     Perl_mg_dup
640                     Perl_re_dup
641                     Perl_sv_dup
642                     Perl_sys_intern_dup
643                     Perl_ptr_table_clear
644                     Perl_ptr_table_fetch
645                     Perl_ptr_table_free
646                     Perl_ptr_table_new
647                     Perl_ptr_table_clear
648                     Perl_ptr_table_free
649                     Perl_ptr_table_split
650                     Perl_ptr_table_store
651                     perl_clone
652                     perl_clone_using
653                     Perl_sharedsv_find
654                     Perl_sharedsv_init
655                     Perl_sharedsv_lock
656                     Perl_sharedsv_new
657                     Perl_sharedsv_thrcnt_dec
658                     Perl_sharedsv_thrcnt_inc
659                     Perl_sharedsv_unlock
660                     )];
661 }
662
663 unless ($define{'PERL_IMPLICIT_CONTEXT'}) {
664     skip_symbols [qw(
665                     Perl_croak_nocontext
666                     Perl_die_nocontext
667                     Perl_deb_nocontext
668                     Perl_form_nocontext
669                     Perl_load_module_nocontext
670                     Perl_mess_nocontext
671                     Perl_warn_nocontext
672                     Perl_warner_nocontext
673                     Perl_newSVpvf_nocontext
674                     Perl_sv_catpvf_nocontext
675                     Perl_sv_setpvf_nocontext
676                     Perl_sv_catpvf_mg_nocontext
677                     Perl_sv_setpvf_mg_nocontext
678                     )];
679 }
680
681 unless ($define{'PERL_IMPLICIT_SYS'}) {
682     skip_symbols [qw(
683                     perl_alloc_using
684                     perl_clone_using
685                     )];
686 }
687
688 unless ($define{'FAKE_THREADS'}) {
689     skip_symbols [qw(PL_curthr)];
690 }
691
692 unless ($define{'PL_OP_SLAB_ALLOC'}) {
693     skip_symbols [qw(
694                      PL_OpPtr
695                      PL_OpSlab
696                      PL_OpSpace
697                     )];
698 }
699
700 sub readvar {
701     my $file = shift;
702     my $proc = shift || sub { "PL_$_[2]" };
703     open(VARS,$file) || die "Cannot open $file: $!\n";
704     my @syms;
705     while (<VARS>) {
706         # All symbols have a Perl_ prefix because that's what embed.h
707         # sticks in front of them.
708         push(@syms, &$proc($1,$2,$3)) if (/\bPERLVAR(A?I?C?)\(([IGT])(\w+)/);
709     }
710     close(VARS);
711     return \@syms;
712 }
713
714 if ($define{'USE_5005THREADS'}) {
715     my $thrd = readvar($thrdvar_h);
716     skip_symbols $thrd;
717 }
718
719 if ($define{'PERL_GLOBAL_STRUCT'}) {
720     my $global = readvar($perlvars_h);
721     skip_symbols $global;
722     emit_symbol('Perl_GetVars');
723     emit_symbols [qw(PL_Vars PL_VarsPtr)] unless $CCTYPE eq 'GCC';
724 }
725
726 # functions from *.sym files
727
728 my @syms = ($global_sym, $globvar_sym); # $pp_sym is not part of the API
729
730 # Symbols that are the public face of the PerlIO layers implementation
731 # These are in _addition to_ the public face of the abstraction
732 # and need to be exported to allow XS modules to implement layers
733 my @layer_syms = qw(
734                          PerlIOBase_clearerr
735                          PerlIOBase_close
736                          PerlIOBase_dup
737                          PerlIOBase_eof
738                          PerlIOBase_error
739                          PerlIOBase_fileno
740                          PerlIOBase_pushed
741                          PerlIOBase_read
742                          PerlIOBase_setlinebuf
743                          PerlIOBase_unread
744                          PerlIOBuf_bufsiz
745                          PerlIOBuf_fill
746                          PerlIOBuf_flush
747                          PerlIOBuf_get_cnt
748                          PerlIOBuf_get_ptr
749                          PerlIOBuf_open
750                          PerlIOBuf_pushed
751                          PerlIOBuf_read
752                          PerlIOBuf_seek
753                          PerlIOBuf_set_ptrcnt
754                          PerlIOBuf_tell
755                          PerlIOBuf_unread
756                          PerlIOBuf_write
757                          PerlIO_debug
758                          PerlIO_allocate
759                          PerlIO_apply_layera
760                          PerlIO_apply_layers
761                          PerlIO_arg_fetch
762                          PerlIO_define_layer
763                          PerlIO_modestr
764                          PerlIO_parse_layers
765                          PerlIO_layer_fetch
766                          PerlIO_list_free
767                          PerlIO_apply_layera
768                          PerlIO_pending
769                          PerlIO_push
770                          PerlIO_sv_dup
771                          PerlIO_perlio
772
773 Perl_PerlIO_clearerr
774 Perl_PerlIO_close
775 Perl_PerlIO_eof
776 Perl_PerlIO_error
777 Perl_PerlIO_fileno
778 Perl_PerlIO_fill
779 Perl_PerlIO_flush
780 Perl_PerlIO_get_base
781 Perl_PerlIO_get_bufsiz
782 Perl_PerlIO_get_cnt
783 Perl_PerlIO_get_ptr
784 Perl_PerlIO_read
785 Perl_PerlIO_seek
786 Perl_PerlIO_set_cnt
787 Perl_PerlIO_set_ptrcnt
788 Perl_PerlIO_setlinebuf
789 Perl_PerlIO_stderr
790 Perl_PerlIO_stdin
791 Perl_PerlIO_stdout
792 Perl_PerlIO_tell
793 Perl_PerlIO_unread
794 Perl_PerlIO_write
795
796 );
797 if ($PLATFORM eq 'netware') {
798     push(@layer_syms,'PL_def_layerlist','PL_known_layers','PL_perlio');
799 }
800
801 if ($define{'USE_PERLIO'}) {
802     # Export the symols that make up the PerlIO abstraction, regardless
803     # of its implementation - read from a file
804     push @syms, $perlio_sym;
805
806     # This part is then dependent on how the abstraction is implemented
807     if ($define{'USE_SFIO'}) {
808         # Old legacy non-stdio "PerlIO"
809         skip_symbols \@layer_syms;
810         # SFIO defines most of the PerlIO routines as macros
811         # So undo most of what $perlio_sym has just done - d'oh !
812         # Perhaps it would be better to list the ones which do exist
813         # And emit them
814         skip_symbols [qw(
815                          PerlIO_canset_cnt
816                          PerlIO_clearerr
817                          PerlIO_close
818                          PerlIO_eof
819                          PerlIO_error
820                          PerlIO_exportFILE
821                          PerlIO_fast_gets
822                          PerlIO_fdopen
823                          PerlIO_fileno
824                          PerlIO_findFILE
825                          PerlIO_flush
826                          PerlIO_get_base
827                          PerlIO_get_bufsiz
828                          PerlIO_get_cnt
829                          PerlIO_get_ptr
830                          PerlIO_getc
831                          PerlIO_getname
832                          PerlIO_has_base
833                          PerlIO_has_cntptr
834                          PerlIO_importFILE
835                          PerlIO_open
836                          PerlIO_printf
837                          PerlIO_putc
838                          PerlIO_puts
839                          PerlIO_read
840                          PerlIO_releaseFILE
841                          PerlIO_reopen
842                          PerlIO_rewind
843                          PerlIO_seek
844                          PerlIO_set_cnt
845                          PerlIO_set_ptrcnt
846                          PerlIO_setlinebuf
847                          PerlIO_sprintf
848                          PerlIO_stderr
849                          PerlIO_stdin
850                          PerlIO_stdout
851                          PerlIO_stdoutf
852                          PerlIO_tell
853                          PerlIO_ungetc
854                          PerlIO_vprintf
855                          PerlIO_write
856                          PerlIO_perlio
857                          Perl_PerlIO_clearerr
858                          Perl_PerlIO_close
859                          Perl_PerlIO_eof
860                          Perl_PerlIO_error
861                          Perl_PerlIO_fileno
862                          Perl_PerlIO_fill
863                          Perl_PerlIO_flush
864                          Perl_PerlIO_get_base
865                          Perl_PerlIO_get_bufsiz
866                          Perl_PerlIO_get_cnt
867                          Perl_PerlIO_get_ptr
868                          Perl_PerlIO_read
869                          Perl_PerlIO_seek
870                          Perl_PerlIO_set_cnt
871                          Perl_PerlIO_set_ptrcnt
872                          Perl_PerlIO_setlinebuf
873                          Perl_PerlIO_stderr
874                          Perl_PerlIO_stdin
875                          Perl_PerlIO_stdout
876                          Perl_PerlIO_tell
877                          Perl_PerlIO_unread
878                          Perl_PerlIO_write
879                          )];
880     }
881     else {
882         # PerlIO with layers - export implementation
883         emit_symbols \@layer_syms;
884     }
885 } else {
886         # -Uuseperlio
887         # Skip the PerlIO layer symbols - although
888         # nothing should have exported them any way
889         skip_symbols \@layer_syms;
890         skip_symbols [qw(PL_def_layerlist PL_known_layers PL_perlio)];
891
892         # Also do NOT add abstraction symbols from $perlio_sym
893         # abstraction is done as #define to stdio
894         # Remaining remnants that _may_ be functions
895         # are handled in <DATA>
896 }
897
898 for my $syms (@syms) {
899     open (GLOBAL, "<$syms") || die "failed to open $syms: $!\n";
900     while (<GLOBAL>) {
901         next if (!/^[A-Za-z]/);
902         # Functions have a Perl_ prefix
903         # Variables have a PL_ prefix
904         chomp($_);
905         my $symbol = ($syms =~ /var\.sym$/i ? "PL_" : "");
906         $symbol .= $_;
907         emit_symbol($symbol) unless exists $skip{$symbol};
908     }
909     close(GLOBAL);
910 }
911
912 # variables
913
914 if ($define{'MULTIPLICITY'}) {
915     for my $f ($perlvars_h, $intrpvar_h, $thrdvar_h) {
916         my $glob = readvar($f, sub { "Perl_" . $_[1] . $_[2] . "_ptr" });
917         emit_symbols $glob;
918     }
919     # XXX AIX seems to want the perlvars.h symbols, for some reason
920     if ($PLATFORM eq 'aix') {
921         my $glob = readvar($perlvars_h);
922         emit_symbols $glob;
923     }
924 }
925 else {
926     unless ($define{'PERL_GLOBAL_STRUCT'}) {
927         my $glob = readvar($perlvars_h);
928         emit_symbols $glob;
929     }
930     unless ($define{'MULTIPLICITY'}) {
931         my $glob = readvar($intrpvar_h);
932         emit_symbols $glob;
933     }
934     unless ($define{'MULTIPLICITY'} || $define{'USE_5005THREADS'}) {
935         my $glob = readvar($thrdvar_h);
936         emit_symbols $glob;
937     }
938 }
939
940 sub try_symbol {
941     my $symbol = shift;
942
943     return if $symbol !~ /^[A-Za-z_]/;
944     return if $symbol =~ /^\#/;
945     $symbol =~s/\r//g;
946     chomp($symbol);
947     return if exists $skip{$symbol};
948     emit_symbol($symbol);
949 }
950
951 while (<DATA>) {
952     try_symbol($_);
953 }
954
955 if ($PLATFORM =~ /^win(?:32|ce)$/) {
956     foreach my $symbol (qw(
957                             setuid
958                             setgid
959                             boot_DynaLoader
960                             Perl_init_os_extras
961                             Perl_thread_create
962                             Perl_win32_init
963                             RunPerl
964                             win32_async_check
965                             win32_errno
966                             win32_environ
967                             win32_abort
968                             win32_fstat
969                             win32_stat
970                             win32_pipe
971                             win32_popen
972                             win32_pclose
973                             win32_rename
974                             win32_setmode
975                             win32_lseek
976                             win32_tell
977                             win32_dup
978                             win32_dup2
979                             win32_open
980                             win32_close
981                             win32_eof
982                             win32_read
983                             win32_write
984                             win32_spawnvp
985                             win32_mkdir
986                             win32_rmdir
987                             win32_chdir
988                             win32_flock
989                             win32_execv
990                             win32_execvp
991                             win32_htons
992                             win32_ntohs
993                             win32_htonl
994                             win32_ntohl
995                             win32_inet_addr
996                             win32_inet_ntoa
997                             win32_socket
998                             win32_bind
999                             win32_listen
1000                             win32_accept
1001                             win32_connect
1002                             win32_send
1003                             win32_sendto
1004                             win32_recv
1005                             win32_recvfrom
1006                             win32_shutdown
1007                             win32_closesocket
1008                             win32_ioctlsocket
1009                             win32_setsockopt
1010                             win32_getsockopt
1011                             win32_getpeername
1012                             win32_getsockname
1013                             win32_gethostname
1014                             win32_gethostbyname
1015                             win32_gethostbyaddr
1016                             win32_getprotobyname
1017                             win32_getprotobynumber
1018                             win32_getservbyname
1019                             win32_getservbyport
1020                             win32_select
1021                             win32_endhostent
1022                             win32_endnetent
1023                             win32_endprotoent
1024                             win32_endservent
1025                             win32_getnetent
1026                             win32_getnetbyname
1027                             win32_getnetbyaddr
1028                             win32_getprotoent
1029                             win32_getservent
1030                             win32_sethostent
1031                             win32_setnetent
1032                             win32_setprotoent
1033                             win32_setservent
1034                             win32_getenv
1035                             win32_putenv
1036                             win32_perror
1037                             win32_malloc
1038                             win32_calloc
1039                             win32_realloc
1040                             win32_free
1041                             win32_sleep
1042                             win32_times
1043                             win32_access
1044                             win32_alarm
1045                             win32_chmod
1046                             win32_open_osfhandle
1047                             win32_get_osfhandle
1048                             win32_ioctl
1049                             win32_link
1050                             win32_unlink
1051                             win32_utime
1052                             win32_uname
1053                             win32_wait
1054                             win32_waitpid
1055                             win32_kill
1056                             win32_str_os_error
1057                             win32_opendir
1058                             win32_readdir
1059                             win32_telldir
1060                             win32_seekdir
1061                             win32_rewinddir
1062                             win32_closedir
1063                             win32_longpath
1064                             win32_os_id
1065                             win32_getpid
1066                             win32_crypt
1067                             win32_dynaload
1068                             win32_get_childenv
1069                             win32_free_childenv
1070                             win32_clearenv
1071                             win32_get_childdir
1072                             win32_free_childdir
1073                             win32_stdin
1074                             win32_stdout
1075                             win32_stderr
1076                             win32_ferror
1077                             win32_feof
1078                             win32_strerror
1079                             win32_fprintf
1080                             win32_printf
1081                             win32_vfprintf
1082                             win32_vprintf
1083                             win32_fread
1084                             win32_fwrite
1085                             win32_fopen
1086                             win32_fdopen
1087                             win32_freopen
1088                             win32_fclose
1089                             win32_fputs
1090                             win32_fputc
1091                             win32_ungetc
1092                             win32_getc
1093                             win32_fileno
1094                             win32_clearerr
1095                             win32_fflush
1096                             win32_ftell
1097                             win32_fseek
1098                             win32_fgetpos
1099                             win32_fsetpos
1100                             win32_rewind
1101                             win32_tmpfile
1102                             win32_setbuf
1103                             win32_setvbuf
1104                             win32_flushall
1105                             win32_fcloseall
1106                             win32_fgets
1107                             win32_gets
1108                             win32_fgetc
1109                             win32_putc
1110                             win32_puts
1111                             win32_getchar
1112                             win32_putchar
1113                            ))
1114     {
1115         try_symbol($symbol);
1116     }
1117 }
1118 elsif ($PLATFORM eq 'os2') {
1119     open MAP, 'miniperl.map' or die 'Cannot read miniperl.map';
1120     /^\s*[\da-f:]+\s+(\w+)/i and $mapped{$1}++ foreach <MAP>;
1121     close MAP or die 'Cannot close miniperl.map';
1122
1123     @missing = grep { !exists $mapped{$_} }
1124                     keys %export;
1125     delete $export{$_} foreach @missing;
1126 }
1127 elsif ($PLATFORM eq 'MacOS') {
1128     open MACSYMS, 'macperl.sym' or die 'Cannot read macperl.sym';
1129
1130     while (<MACSYMS>) {
1131         try_symbol($_);
1132     }
1133
1134     close MACSYMS;
1135 }
1136 elsif ($PLATFORM eq 'netware') {
1137 foreach my $symbol (qw(
1138                         boot_DynaLoader
1139                         Perl_init_os_extras
1140                         Perl_thread_create
1141                         Perl_nw5_init
1142                         RunPerl
1143                         AllocStdPerl
1144                         FreeStdPerl
1145                         do_spawn2
1146                         do_aspawn
1147                         nw_uname
1148                         nw_stdin
1149                         nw_stdout
1150                         nw_stderr
1151                         nw_feof
1152                         nw_ferror
1153                         nw_fopen
1154                         nw_fclose
1155                         nw_clearerr
1156                         nw_getc
1157                         nw_fgets
1158                         nw_fputc
1159                         nw_fputs
1160                         nw_fflush
1161                         nw_ungetc
1162                         nw_fileno
1163                         nw_fdopen
1164                         nw_freopen
1165                         nw_fread
1166                         nw_fwrite
1167                         nw_setbuf
1168                         nw_setvbuf
1169                         nw_vfprintf
1170                         nw_ftell
1171                         nw_fseek
1172                         nw_rewind
1173                         nw_tmpfile
1174                         nw_fgetpos
1175                         nw_fsetpos
1176                         nw_dup
1177                         nw_access
1178                         nw_chmod
1179                         nw_chsize
1180                         nw_close
1181                         nw_dup2
1182                         nw_flock
1183                         nw_isatty
1184                         nw_link
1185                         nw_lseek
1186                         nw_stat
1187                         nw_mktemp
1188                         nw_open
1189                         nw_read
1190                         nw_rename
1191                         nw_setmode
1192                         nw_unlink
1193                         nw_utime
1194                         nw_write
1195                         nw_chdir
1196                         nw_rmdir
1197                         nw_closedir
1198                         nw_opendir
1199                         nw_readdir
1200                         nw_rewinddir
1201                         nw_seekdir
1202                         nw_telldir
1203                         nw_htonl
1204                         nw_htons
1205                         nw_ntohl
1206                         nw_ntohs
1207                         nw_accept
1208                         nw_bind
1209                         nw_connect
1210                         nw_endhostent
1211                         nw_endnetent
1212                         nw_endprotoent
1213                         nw_endservent
1214                         nw_gethostbyaddr
1215                         nw_gethostbyname
1216                         nw_gethostent
1217                         nw_gethostname
1218                         nw_getnetbyaddr
1219                         nw_getnetbyname
1220                         nw_getnetent
1221                         nw_getpeername
1222                         nw_getprotobyname
1223                         nw_getprotobynumber
1224                         nw_getprotoent
1225                         nw_getservbyname
1226                         nw_getservbyport
1227                         nw_getservent
1228                         nw_getsockname
1229                         nw_getsockopt
1230                         nw_inet_addr
1231                         nw_listen
1232                         nw_socket
1233                         nw_recv
1234                         nw_recvfrom
1235                         nw_select
1236                         nw_send
1237                         nw_sendto
1238                         nw_sethostent
1239                         nw_setnetent
1240                         nw_setprotoent
1241                         nw_setservent
1242                         nw_setsockopt
1243                         nw_inet_ntoa
1244                         nw_shutdown
1245                         nw_crypt
1246                         nw_execvp
1247                         nw_kill
1248                         nw_Popen
1249                         nw_Pclose
1250                         nw_Pipe
1251                         nw_times
1252                         nw_waitpid
1253                         nw_getpid
1254                         nw_spawnvp
1255                         nw_os_id
1256                         nw_open_osfhandle
1257                         nw_get_osfhandle
1258                         nw_abort
1259                         nw_sleep
1260                         nw_wait
1261                         nw_dynaload
1262                         nw_strerror
1263                         fnFpSetMode
1264                         fnInsertHashListAddrs
1265                         fnGetHashListAddrs
1266                         Perl_deb
1267                         Perl_sv_setsv
1268                         Perl_sv_catsv
1269                         Perl_sv_catpvn
1270                         Perl_sv_2pv
1271                            ))
1272     {
1273         try_symbol($symbol);
1274     }
1275 }
1276
1277 # Now all symbols should be defined because
1278 # next we are going to output them.
1279
1280 foreach my $symbol (sort keys %export) {
1281     output_symbol($symbol);
1282 }
1283
1284 if ($PLATFORM eq 'os2') {
1285         print "; LAST_ORDINAL=$sym_ord\n";
1286 }
1287
1288 sub emit_symbol {
1289     my $symbol = shift;
1290     chomp($symbol);
1291     $export{$symbol} = 1;
1292 }
1293
1294 sub output_symbol {
1295     my $symbol = shift;
1296     if ($PLATFORM =~ /^win(?:32|ce)$/) {
1297         $symbol = "_$symbol" if $CCTYPE eq 'BORLAND';
1298         print "\t$symbol\n";
1299 # XXX: binary compatibility between compilers is an exercise
1300 # in frustration :-(
1301 #        if ($CCTYPE eq "BORLAND") {
1302 #           # workaround Borland quirk by exporting both the straight
1303 #           # name and a name with leading underscore.  Note the
1304 #           # alias *must* come after the symbol itself, if both
1305 #           # are to be exported. (Linker bug?)
1306 #           print "\t_$symbol\n";
1307 #           print "\t$symbol = _$symbol\n";
1308 #       }
1309 #       elsif ($CCTYPE eq 'GCC') {
1310 #           # Symbols have leading _ whole process is $%@"% slow
1311 #           # so skip aliases for now
1312 #           nprint "\t$symbol\n";
1313 #       }
1314 #       else {
1315 #           # for binary coexistence, export both the symbol and
1316 #           # alias with leading underscore
1317 #           print "\t$symbol\n";
1318 #           print "\t_$symbol = $symbol\n";
1319 #       }
1320     }
1321     elsif ($PLATFORM eq 'os2') {
1322         printf qq(    %-31s \@%s\n),
1323           qq("$symbol"), $ordinal{$symbol} || ++$sym_ord;
1324     }
1325     elsif ($PLATFORM eq 'aix' || $PLATFORM eq 'MacOS') {
1326         print "$symbol\n";
1327     }
1328         elsif ($PLATFORM eq 'netware') {
1329         print "\t$symbol,\n";
1330         }
1331 }
1332
1333 1;
1334 __DATA__
1335 # extra globals not included above.
1336 Perl_cxinc
1337 perl_alloc
1338 perl_alloc_using
1339 perl_clone
1340 perl_clone_using
1341 perl_construct
1342 perl_destruct
1343 perl_free
1344 perl_parse
1345 perl_run
1346 # Oddities from PerlIO 
1347 PerlIO_binmode
1348 PerlIO_getpos
1349 PerlIO_init
1350 PerlIO_setpos
1351 PerlIO_sprintf
1352 PerlIO_sv_dup
1353 PerlIO_tmpfile
1354 PerlIO_vsprintf
1355 perlsio_binmode