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