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