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