8ec55bdd35fd3e226a06a6daa3c7b0d603ff4146
[p5sagit/p5-mst-13.2.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 #
7 # reads global.sym, pp.sym, perlvars.h, intrpvar.h, thrdvar.h, config.h
8 # On OS/2 reads miniperl.map as well
9
10 my $PLATFORM;
11 my $CCTYPE;
12
13 my %bincompat5005 =
14       (Perl_call_argv           =>      "perl_call_argv",
15        Perl_call_method         =>      "perl_call_method",
16        Perl_call_pv             =>      "perl_call_pv",
17        Perl_call_sv             =>      "perl_call_sv",
18        Perl_get_av              =>      "perl_get_av",
19        Perl_get_cv              =>      "perl_get_cv",
20        Perl_get_hv              =>      "perl_get_hv",
21        Perl_get_sv              =>      "perl_get_sv",
22        Perl_init_i18nl10n       =>      "perl_init_i18nl10n",
23        Perl_init_i18nl14n       =>      "perl_init_i18nl14n",
24        Perl_new_collate         =>      "perl_new_collate",
25        Perl_new_ctype           =>      "perl_new_ctype",
26        Perl_new_numeric         =>      "perl_new_numeric",
27        Perl_require_pv          =>      "perl_require_pv",
28        Perl_safesyscalloc       =>      "Perl_safecalloc",
29        Perl_safesysfree         =>      "Perl_safefree",
30        Perl_safesysmalloc       =>      "Perl_safemalloc",
31        Perl_safesysrealloc      =>      "Perl_saferealloc",
32        Perl_set_numeric_local   =>      "perl_set_numeric_local",
33        Perl_set_numeric_standard  =>    "perl_set_numeric_standard");
34
35 my $bincompat5005 = join("|", keys %bincompat5005);
36
37 while (@ARGV)
38  {
39   my $flag = shift;
40   $define{$1} = 1 if ($flag =~ /^-D(\w+)$/);
41   $define{$1} = $2 if ($flag =~ /^-D(\w+)=(.+)$/);
42   $CCTYPE   = $1 if ($flag =~ /^CCTYPE=(\w+)$/);
43   $PLATFORM = $1 if ($flag =~ /^PLATFORM=(\w+)$/);
44  } 
45
46 my @PLATFORM = qw(aix win32 os2);
47 my %PLATFORM;
48 @PLATFORM{@PLATFORM} = ();
49
50 defined $PLATFORM || die "PLATFORM undefined, must be one of: @PLATFORM\n";
51 exists $PLATFORM{$PLATFORM} || die "PLATFORM must be one of: @PLATFORM\n"; 
52
53 my $config_sh   = "config.sh";
54 my $config_h    = "config.h";
55 my $thrdvar_h   = "thrdvar.h";
56 my $intrpvar_h  = "intrpvar.h";
57 my $perlvars_h  = "perlvars.h";
58 my $global_sym  = "global.sym";
59 my $pp_sym      = "pp.sym";
60 my $globvar_sym = "globvar.sym";
61 my $perlio_sym  = "perlio.sym";
62
63 if ($PLATFORM eq 'aix') { 
64     # Nothing for now.
65 } elsif ($PLATFORM eq 'win32') {
66     $CCTYPE = "MSVC" unless defined $CCTYPE;
67     foreach ($thrdvar_h, $intrpvar_h, $perlvars_h, $global_sym, $pp_sym, $globvar_sym) {
68         s!^!..\\!;
69     }
70 }
71
72 unless ($PLATFORM eq 'win32') {
73     open(CFG,$config_sh) || die "Cannot open $config_sh: $!\n";
74     while (<CFG>)
75     {
76         if (/^(?:ccflags|optimize)='(.+)'$/) {
77             $_ = $1;
78             $define{$1} = 1 while /-D(\w+)/g;
79         }
80         if ($PLATFORM eq 'os2') {
81             $CONFIG_ARGS = $1 if /^(?:config_args)='(.+)'$/;
82             $ARCHNAME = $1 if /^(?:archname)='(.+)'$/;
83         }
84     }
85     close(CFG);
86 }
87
88 open(CFG,$config_h) || die "Cannot open $config_h: $!\n";
89 while (<CFG>)
90  {
91   $define{$1} = 1 if /^\s*#\s*define\s+(MYMALLOC)\b/;
92   $define{$1} = 1 if /^\s*#\s*define\s+(USE_THREADS)\b/;
93   $define{$1} = 1 if /^\s*#\s*define\s+(USE_PERLIO)\b/;
94   $define{$1} = 1 if /^\s*#\s*define\s+(MULTIPLICITY)\b/;
95   $define{$1} = 1 if /^\s*#\s*define\s+(PERL_BINCOMPAT_5005)\b/;
96  }
97 close(CFG);
98
99 if ($PLATFORM eq 'win32') {
100     warn join(' ',keys %define)."\n";
101     if ($define{PERL_OBJECT}) {
102         print "LIBRARY Perl56\n";
103         print "DESCRIPTION 'Perl interpreter'\n";
104         print "EXPORTS\n";
105 #    output_symbol("perl_alloc");
106         output_symbol("perl_get_host_info");
107         output_symbol("perl_alloc_using");
108 #    output_symbol("perl_construct");
109 #    output_symbol("perl_destruct");
110 #    output_symbol("perl_free");
111 #    output_symbol("perl_parse");
112 #    output_symbol("perl_run");
113 #    output_symbol("RunPerl");
114 #    exit(0);
115     }
116     else {
117         if ($CCTYPE ne 'GCC') {
118             print "LIBRARY Perl\n";
119             print "DESCRIPTION 'Perl interpreter, export autogenerated'\n";
120         }
121         else {
122             $define{'PERL_GLOBAL_STRUCT'} = 1;
123             $define{'MULTIPLICITY'} = 1;
124         }
125         print "EXPORTS\n";
126     } 
127 } elsif ($PLATFORM eq 'os2') {
128     ($v = $]) =~ s/(\d\.\d\d\d)(\d\d)$/$1_$2/;
129     $v .= '-thread' if $ARCHNAME =~ /-thread/;
130     #$sum = 0;
131     #for (split //, $v) {
132     #   $sum = ($sum * 33) + ord;
133     #   $sum &= 0xffffff;
134     #}
135     #$sum += $sum >> 5;
136     #$sum &= 0xffff;
137     #$sum = printf '%X', $sum;
138     ($dll = $define{PERL_DLL}) =~ s/\.dll$//i;
139     # print STDERR "'$dll' <= '$define{PERL_DLL}'\n";
140     print <<"---EOP---";
141 LIBRARY '$dll' INITINSTANCE TERMINSTANCE
142 DESCRIPTION '\@#perl5-porters\@perl.org:$v#\@ Perl interpreter, configured as $CONFIG_ARGS'
143 STACKSIZE 32768
144 CODE LOADONCALL
145 DATA LOADONCALL NONSHARED MULTIPLE
146 EXPORTS
147 ---EOP---
148 } elsif ($PLATFORM eq 'aix') {
149     print "#!\n";
150 }
151
152 my %skip;
153 my %export;
154
155 sub skip_symbols {
156     my $list = shift;
157     foreach my $symbol (@$list) {
158         $skip{$symbol} = 1;
159     }
160 }
161
162 sub emit_symbols {
163     my $list = shift;
164     foreach my $symbol (@$list) {
165         my $skipsym = $symbol;
166         # XXX hack
167         if ($define{PERL_OBJECT}) {
168             $skipsym =~ s/^Perl_[GIT](\w+)_ptr$/PL_$1/;
169         }
170         emit_symbol($symbol) unless exists $skip{$skipsym};
171     }
172 }
173
174 if ($PLATFORM eq 'win32') {
175 skip_symbols [qw(
176 PL_statusvalue_vms
177 PL_archpat_auto
178 PL_cryptseen
179 PL_DBcv
180 PL_generation
181 PL_lastgotoprobe
182 PL_linestart
183 PL_modcount
184 PL_pending_ident
185 PL_sortcxix
186 PL_sublex_info
187 PL_timesbuf
188 main
189 Perl_ErrorNo
190 Perl_GetVars
191 Perl_do_exec3
192 Perl_do_ipcctl
193 Perl_do_ipcget
194 Perl_do_msgrcv
195 Perl_do_msgsnd
196 Perl_do_semop
197 Perl_do_shmio
198 Perl_dump_fds
199 Perl_init_thread_intern
200 Perl_my_bzero
201 Perl_my_htonl
202 Perl_my_ntohl
203 Perl_my_swap
204 Perl_my_chsize
205 Perl_same_dirent
206 Perl_setenv_getix
207 Perl_unlnk
208 Perl_watch
209 Perl_safexcalloc
210 Perl_safexmalloc
211 Perl_safexfree
212 Perl_safexrealloc
213 Perl_my_memcmp
214 Perl_my_memset
215 PL_cshlen
216 PL_cshname
217 PL_opsave
218
219 Perl_do_exec
220 Perl_getenv_len
221 Perl_my_pclose
222 Perl_my_popen
223 )];
224 } elsif ($PLATFORM eq 'aix') {
225     skip_symbols([qw(
226 Perl_dump_fds
227 Perl_ErrorNo
228 Perl_GetVars
229 Perl_my_bcopy
230 Perl_my_bzero
231 Perl_my_chsize
232 Perl_my_htonl
233 Perl_my_memcmp
234 Perl_my_memset
235 Perl_my_ntohl
236 Perl_my_swap
237 Perl_safexcalloc
238 Perl_safexfree
239 Perl_safexmalloc
240 Perl_safexrealloc
241 Perl_same_dirent
242 Perl_unlnk
243 PL_cryptseen
244 PL_opsave
245 PL_statusvalue_vms
246 PL_sys_intern
247 )]);
248 }
249
250 if ($PLATFORM eq 'os2') {
251     emit_symbols([qw(
252 ctermid
253 get_sysinfo
254 Perl_OS2_init
255 OS2_Perl_data
256 dlopen
257 dlsym
258 dlerror
259 my_tmpfile
260 my_tmpnam
261 my_flock
262 malloc_mutex
263 threads_mutex
264 nthreads
265 nthreads_cond
266 os2_cond_wait
267 os2_stat
268 pthread_join
269 pthread_create
270 pthread_detach
271 XS_Cwd_change_drive
272 XS_Cwd_current_drive
273 XS_Cwd_extLibpath
274 XS_Cwd_extLibpath_set
275 XS_Cwd_sys_abspath
276 XS_Cwd_sys_chdir
277 XS_Cwd_sys_cwd
278 XS_Cwd_sys_is_absolute
279 XS_Cwd_sys_is_relative
280 XS_Cwd_sys_is_rooted
281 XS_DynaLoader_mod2fname
282 XS_File__Copy_syscopy
283 Perl_Register_MQ
284 Perl_Deregister_MQ
285 Perl_Serve_Messages
286 Perl_Process_Messages
287 init_PMWIN_entries
288 PMWIN_entries
289 Perl_hab_GET
290 )]);
291 }
292
293 if ($define{'PERL_OBJECT'}) {
294   skip_symbols [qw(
295     Perl_getenv_len
296     Perl_my_popen
297     Perl_my_pclose
298     )];
299 }
300 else {
301   skip_symbols [qw(
302     PL_Dir
303     PL_Env
304     PL_LIO
305     PL_Mem
306     PL_Proc
307     PL_Sock
308     PL_StdIO
309     )];
310 }
311
312 if ($define{'MYMALLOC'})
313  {
314   emit_symbols [qw(
315     Perl_dump_mstats
316     Perl_malloc
317     Perl_mfree
318     Perl_realloc
319     Perl_calloc)];
320  }
321 else
322  {
323   skip_symbols [qw(
324     Perl_dump_mstats
325     Perl_malloc
326     Perl_mfree
327     Perl_realloc
328     Perl_calloc
329     Perl_malloced_size)];
330  }
331
332 unless ($define{'USE_THREADS'})
333  {
334   skip_symbols [qw(
335 PL_thr_key
336 PL_sv_mutex
337 PL_strtab_mutex
338 PL_svref_mutex
339 PL_malloc_mutex
340 PL_cred_mutex
341 PL_eval_mutex
342 PL_eval_cond
343 PL_eval_owner
344 PL_threads_mutex
345 PL_nthreads
346 PL_nthreads_cond
347 PL_threadnum
348 PL_threadsv_names
349 PL_thrsv
350 PL_vtbl_mutex
351 Perl_getTHR
352 Perl_setTHR
353 Perl_condpair_magic
354 Perl_new_struct_thread
355 Perl_per_thread_magicals
356 Perl_thread_create
357 Perl_find_threadsv
358 Perl_unlock_condpair
359 Perl_magic_mutexfree
360 )];
361  }
362
363 unless ($define{'USE_ITHREADS'})
364  {
365   skip_symbols [qw(
366 PL_sv_table
367 Perl_dirp_dup
368 Perl_fp_dup
369 Perl_gp_dup
370 Perl_he_dup
371 Perl_mg_dup
372 Perl_re_dup
373 Perl_sv_dup
374 Perl_sys_intern_dup
375 Perl_sv_table_fetch
376 Perl_sv_table_new
377 Perl_sv_table_split
378 Perl_sv_table_store
379 )];
380  }
381
382 unless ($define{'USE_THREADS'} or $define{'PERL_IMPLICIT_CONTEXT'}
383         or $define{'PERL_OBJECT'})
384 {
385   skip_symbols [qw(
386                    Perl_croak_nocontext
387                    Perl_die_nocontext
388                    Perl_deb_nocontext
389                    Perl_form_nocontext
390                    Perl_mess_nocontext
391                    Perl_warn_nocontext
392                    Perl_warner_nocontext
393                    Perl_newSVpvf_nocontext
394                    Perl_sv_catpvf_nocontext
395                    Perl_sv_setpvf_nocontext
396                    Perl_sv_catpvf_mg_nocontext
397                    Perl_sv_setpvf_mg_nocontext
398                    )];
399  }
400
401 unless ($define{'FAKE_THREADS'})
402  {
403   skip_symbols [qw(PL_curthr)];
404  }
405
406 sub readvar
407 {
408  my $file = shift;
409  my $proc = shift || sub { "PL_$_[2]" };
410  open(VARS,$file) || die "Cannot open $file: $!\n";
411  my @syms;
412  while (<VARS>)
413   {
414    # All symbols have a Perl_ prefix because that's what embed.h
415    # sticks in front of them.
416    push(@syms, &$proc($1,$2,$3)) if (/\bPERLVAR(A?I?C?)\(([IGT])(\w+)/);
417   } 
418  close(VARS); 
419  return \@syms;
420 }
421
422 if ($define{'USE_THREADS'} || $define{'MULTIPLICITY'})
423  {
424   my $thrd = readvar($thrdvar_h);
425   skip_symbols $thrd;
426  } 
427
428 if ($define{'MULTIPLICITY'})
429  {
430   my $interp = readvar($intrpvar_h);
431   skip_symbols $interp;
432  } 
433
434 if ($define{'PERL_GLOBAL_STRUCT'})
435  {
436   my $global = readvar($perlvars_h);
437   skip_symbols $global;
438   emit_symbol('Perl_GetVars');
439   emit_symbols [qw(PL_Vars PL_VarsPtr)] unless $CCTYPE eq 'GCC';
440  } 
441
442 unless ($define{'DEBUGGING'})
443  {
444   skip_symbols [qw(
445     Perl_deb
446     Perl_deb_growlevel
447     Perl_debop
448     Perl_debprofdump
449     Perl_debstack
450     Perl_debstackptrs
451     Perl_runops_debug
452     Perl_sv_peek
453     PL_block_type
454     PL_watchaddr
455     PL_watchok)];
456  }
457
458 if ($PLATFORM eq 'win32' && $define{'HAVE_DES_FCRYPT'})
459  {
460   emit_symbols [qw(win32_crypt)];
461  }
462
463 # functions from *.sym files
464
465 my @syms = ($global_sym, $pp_sym, $globvar_sym);
466
467 if ($define{'USE_PERLIO'})
468  {
469      push @syms, $perlio_sym;
470  }
471
472 for my $syms (@syms)
473  {
474   open (GLOBAL, "<$syms") || die "failed to open $syms: $!\n";
475   while (<GLOBAL>) 
476    {
477     next if (!/^[A-Za-z]/);
478     # Functions have a Perl_ prefix
479     # Variables have a PL_ prefix
480     chomp($_);
481     my $symbol = ($syms =~ /var\.sym$/i ? "PL_" : "");
482     $symbol .= $_;
483     emit_symbol($symbol) unless exists $skip{$symbol};
484    }
485   close(GLOBAL);
486  }
487
488 # variables
489
490 if ($define{'PERL_OBJECT'}) {
491     for my $f ($perlvars_h, $intrpvar_h, $thrdvar_h) {
492         my $glob = readvar($f, sub { "Perl_" . $_[1] . $_[2] . "_ptr" });
493         emit_symbols $glob;
494     }
495 }
496 else {
497     unless ($define{'PERL_GLOBAL_STRUCT'}) {
498         my $glob = readvar($perlvars_h);
499         emit_symbols $glob;
500     } 
501     unless ($define{'MULTIPLICITY'}) {
502         my $glob = readvar($intrpvar_h);
503         emit_symbols $glob;
504     } 
505
506     unless ($define{'MULTIPLICITY'} || $define{'USE_THREADS'}) {
507         my $glob = readvar($thrdvar_h);
508         emit_symbols $glob;
509     } 
510 }
511
512 sub try_symbol {
513     my $symbol = shift;
514
515     return if $symbol !~ /^[A-Za-z]/;
516     return if $symbol =~ /^\#/;
517     $symbol =~s/\r//g;
518     chomp($symbol);
519     return if exists $skip{$symbol};
520     emit_symbol($symbol);
521 }
522
523 while (<DATA>) {
524     try_symbol($_);
525 }
526
527 if ($PLATFORM eq 'win32') {
528     foreach my $symbol (qw(
529 boot_DynaLoader
530 Perl_getTHR
531 Perl_init_os_extras
532 Perl_setTHR
533 Perl_thread_create
534 Perl_win32_init
535 RunPerl
536 GetPerlInterpreter
537 SetPerlInterpreter
538 win32_errno
539 win32_environ
540 win32_stdin
541 win32_stdout
542 win32_stderr
543 win32_ferror
544 win32_feof
545 win32_strerror
546 win32_fprintf
547 win32_printf
548 win32_vfprintf
549 win32_vprintf
550 win32_fread
551 win32_fwrite
552 win32_fopen
553 win32_fdopen
554 win32_freopen
555 win32_fclose
556 win32_fputs
557 win32_fputc
558 win32_ungetc
559 win32_getc
560 win32_fileno
561 win32_clearerr
562 win32_fflush
563 win32_ftell
564 win32_fseek
565 win32_fgetpos
566 win32_fsetpos
567 win32_rewind
568 win32_tmpfile
569 win32_abort
570 win32_fstat
571 win32_stat
572 win32_pipe
573 win32_popen
574 win32_pclose
575 win32_rename
576 win32_setmode
577 win32_lseek
578 win32_tell
579 win32_dup
580 win32_dup2
581 win32_open
582 win32_close
583 win32_eof
584 win32_read
585 win32_write
586 win32_spawnvp
587 win32_mkdir
588 win32_rmdir
589 win32_chdir
590 win32_flock
591 win32_execv
592 win32_execvp
593 win32_htons
594 win32_ntohs
595 win32_htonl
596 win32_ntohl
597 win32_inet_addr
598 win32_inet_ntoa
599 win32_socket
600 win32_bind
601 win32_listen
602 win32_accept
603 win32_connect
604 win32_send
605 win32_sendto
606 win32_recv
607 win32_recvfrom
608 win32_shutdown
609 win32_closesocket
610 win32_ioctlsocket
611 win32_setsockopt
612 win32_getsockopt
613 win32_getpeername
614 win32_getsockname
615 win32_gethostname
616 win32_gethostbyname
617 win32_gethostbyaddr
618 win32_getprotobyname
619 win32_getprotobynumber
620 win32_getservbyname
621 win32_getservbyport
622 win32_select
623 win32_endhostent
624 win32_endnetent
625 win32_endprotoent
626 win32_endservent
627 win32_getnetent
628 win32_getnetbyname
629 win32_getnetbyaddr
630 win32_getprotoent
631 win32_getservent
632 win32_sethostent
633 win32_setnetent
634 win32_setprotoent
635 win32_setservent
636 win32_getenv
637 win32_putenv
638 win32_perror
639 win32_setbuf
640 win32_setvbuf
641 win32_flushall
642 win32_fcloseall
643 win32_fgets
644 win32_gets
645 win32_fgetc
646 win32_putc
647 win32_puts
648 win32_getchar
649 win32_putchar
650 win32_malloc
651 win32_calloc
652 win32_realloc
653 win32_free
654 win32_sleep
655 win32_times
656 win32_alarm
657 win32_open_osfhandle
658 win32_get_osfhandle
659 win32_ioctl
660 win32_utime
661 win32_uname
662 win32_wait
663 win32_waitpid
664 win32_kill
665 win32_str_os_error
666 win32_opendir
667 win32_readdir
668 win32_telldir
669 win32_seekdir
670 win32_rewinddir
671 win32_closedir
672 win32_longpath
673 win32_os_id
674                            )) {
675         try_symbol($symbol);
676     }
677 }
678 elsif ($PLATFORM eq 'os2') {
679   open MAP, 'miniperl.map' or die 'Cannot read miniperl.map';
680   /^\s*[\da-f:]+\s+(\w+)/i and $mapped{$1}++ foreach <MAP>;
681   close MAP or die 'Cannot close miniperl.map';
682   
683   @missing = grep { !exists $mapped{$_} and !exists $bincompat5005{$_} }
684     keys %export;
685   delete $export{$_} foreach @missing;
686 }
687
688 # Now all symbols should be defined because
689 # next we are going to output them.
690
691 foreach my $symbol (sort keys %export)
692  {
693    output_symbol($symbol);
694  }
695
696 sub emit_symbol {
697         my $symbol = shift;
698         chomp($symbol); 
699         $export{$symbol} = 1;
700 }
701
702 sub output_symbol {
703     my $symbol = shift;
704     $symbol = $bincompat5005{$symbol}
705         if $define{PERL_BINCOMPAT_5005} and $symbol =~ /^($bincompat5005)$/;
706     if ($PLATFORM eq 'win32') {
707         $symbol = "_$symbol" if $CCTYPE eq 'BORLAND';
708         print "\t$symbol\n";
709 # XXX: binary compatibility between compilers is an exercise
710 # in frustration :-(
711 #        if ($CCTYPE eq "BORLAND") {
712 #           # workaround Borland quirk by exporting both the straight
713 #           # name and a name with leading underscore.  Note the
714 #           # alias *must* come after the symbol itself, if both
715 #           # are to be exported. (Linker bug?)
716 #           print "\t_$symbol\n";
717 #           print "\t$symbol = _$symbol\n";
718 #       }
719 #       elsif ($CCTYPE eq 'GCC') {
720 #           # Symbols have leading _ whole process is $%@"% slow
721 #           # so skip aliases for now
722 #           nprint "\t$symbol\n";
723 #       }
724 #       else {
725 #           # for binary coexistence, export both the symbol and
726 #           # alias with leading underscore
727 #           print "\t$symbol\n";
728 #           print "\t_$symbol = $symbol\n";
729 #       }
730     } elsif ($PLATFORM eq 'os2') {
731         print qq(    "$symbol"\n);
732     } elsif ($PLATFORM eq 'aix') {
733         print "$symbol\n";
734     }
735 }
736
737 1;
738 __DATA__
739 # extra globals not included above.
740 perl_alloc
741 perl_construct
742 perl_destruct
743 perl_free
744 perl_parse
745 perl_run