This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
basic.t: Provide descriptions for all unit tests
[perl5.git] / regen / embed.pl
CommitLineData
5f05dabc 1#!/usr/bin/perl -w
6294c161
DM
2#
3# Regenerate (overwriting only if changed):
4#
5# embed.h
6# embedvar.h
6294c161
DM
7# perlapi.c
8# perlapi.h
9# proto.h
10#
11# from information stored in
12#
13# embed.fnc
14# intrpvar.h
15# perlvars.h
897d3989 16# regen/opcodes
6294c161 17#
6294c161
DM
18# Accepts the standard regen_lib -q and -v args.
19#
20# This script is normally invoked from regen.pl.
e50aee73 21
916e4025 22require 5.004; # keep this compatible, an old perl is all we may have before
954c1994 23 # we build the new one
5f05dabc 24
88e01c9d
AL
25use strict;
26
36bb303b
NC
27BEGIN {
28 # Get function prototypes
3d7c117d
MB
29 require './regen/regen_lib.pl';
30 require './regen/embed_lib.pl';
36bb303b
NC
31}
32
916e4025 33my $unflagged_pointers;
88e01c9d 34
cea2e8a9 35#
346f75ff 36# See database of global and static function prototypes in embed.fnc
cea2e8a9
GS
37# This is used to generate prototype headers under various configurations,
38# export symbols lists for different platforms, and macros to provide an
39# implicit interpreter context argument.
40#
41
eeec122d
KW
42my $error_count = 0;
43sub die_at_end ($) { # Keeps going for now, but makes sure the regen doesn't
44 # succeed.
45 warn shift;
46 $error_count++;
47}
48
03b6588a
KW
49sub full_name ($$) { # Returns the function name with potentially the
50 # prefixes 'S_' or 'Perl_'
51 my ($func, $flags) = @_;
52
5ff52e3c 53 return "Perl_$func" if $flags =~ /p/;
4d2e4fbc 54 return "S_$func" if $flags =~ /[si]/;
03b6588a
KW
55 return $func;
56}
57
5f8dc073 58sub open_print_header {
56fd1190 59 my ($file, $quote) = @_;
4373e329 60
5f8dc073
NC
61 return open_new($file, '>',
62 { file => $file, style => '*', by => 'regen/embed.pl',
63 from => ['data in embed.fnc', 'regen/embed.pl',
64 'regen/opcodes', 'intrpvar.h', 'perlvars.h'],
65 final => "\nEdit those files and run 'make regen_headers' to effect changes.\n",
66 copyright => [1993 .. 2009], quote => $quote });
67}
7f1be197 68
5ccbf88e
NC
69my ($embed, $core, $ext, $api) = setup_embed();
70
cea2e8a9 71# generate proto.h
9516dc40 72{
5f8dc073
NC
73 my $pr = open_print_header("proto.h");
74 print $pr "START_EXTERN_C\n";
f8394530 75 my $ret;
9516dc40 76
5ccbf88e 77 foreach (@$embed) {
9516dc40
NC
78 if (@$_ == 1) {
79 print $pr "$_->[0]\n";
80 next;
81 }
82
83 my ($flags,$retval,$plain_func,@args) = @$_;
21553840 84 if ($flags =~ / ( [^AabDdEfiMmnOoPpRrsUWXx] ) /x) {
eeec122d 85 die_at_end "flag $1 is not legal (for function $plain_func)";
556343f1 86 }
4373e329 87 my @nonnull;
21553840 88 my $has_depth = ( $flags =~ /W/ );
4373e329 89 my $has_context = ( $flags !~ /n/ );
88e01c9d 90 my $never_returns = ( $flags =~ /r/ );
aa4ca557 91 my $binarycompat = ( $flags =~ /b/ );
3f1866a8 92 my $commented_out = ( ! $binarycompat && $flags =~ /m/ );
88e01c9d 93 my $is_malloc = ( $flags =~ /a/ );
b289a0bd 94 my $can_ignore = ( $flags !~ /R/ ) && ( $flags !~ /P/ ) && !$is_malloc;
7918f24d
NC
95 my @names_of_nn;
96 my $func;
88e01c9d 97
9f68b0f7
KW
98 if (! $can_ignore && $retval eq 'void') {
99 warn "It is nonsensical to require the return value of a void function ($plain_func) to be checked";
100 }
82728c33 101
eeec122d 102 die_at_end "$plain_func: s flag is mutually exclusive from the i and p plags"
4d2e4fbc 103 if $flags =~ /s/ && $flags =~ /[ip]/;
88e01c9d 104
a5d565cd 105 my $static_inline = 0;
71556506 106 if ($flags =~ /([si])/) {
98c015b7
DD
107 my $type;
108 if ($never_returns) {
109 $type = $1 eq 's' ? "PERL_STATIC_NO_RET" : "PERL_STATIC_INLINE_NO_RET";
110 }
111 else {
112 $type = $1 eq 's' ? "STATIC" : "PERL_STATIC_INLINE";
113 }
c707756e 114 $retval = "$type $retval";
2391bfdf 115 die_at_end "Don't declare static function '$plain_func' pure" if $flags =~ /P/;
a5d565cd 116 $static_inline = $type eq 'PERL_STATIC_INLINE';
cea2e8a9 117 }
0cb96387 118 else {
718fae11 119 if ($never_returns) {
c707756e 120 $retval = "PERL_CALLCONV_NO_RET $retval";
718fae11
JD
121 }
122 else {
c707756e 123 $retval = "PERL_CALLCONV $retval";
718fae11 124 }
cea2e8a9 125 }
03b6588a 126 $func = full_name($plain_func, $flags);
3f1866a8
KW
127 $ret = "";
128 $ret .= "#ifndef NO_MATHOMS\n" if $binarycompat;
a5d565cd 129 $ret .= "#ifndef PERL_NO_INLINE_FUNCTIONS\n" if $static_inline;
3f1866a8 130 $ret .= "$retval\t$func(";
4373e329
AL
131 if ( $has_context ) {
132 $ret .= @args ? "pTHX_ " : "pTHX";
cea2e8a9
GS
133 }
134 if (@args) {
4373e329
AL
135 my $n;
136 for my $arg ( @args ) {
137 ++$n;
7827dc65
AL
138 if ( $arg =~ /\*/ && $arg !~ /\b(NN|NULLOK)\b/ ) {
139 warn "$func: $arg needs NN or NULLOK\n";
7827dc65
AL
140 ++$unflagged_pointers;
141 }
88e01c9d
AL
142 my $nn = ( $arg =~ s/\s*\bNN\b\s+// );
143 push( @nonnull, $n ) if $nn;
144
145 my $nullok = ( $arg =~ s/\s*\bNULLOK\b\s+// ); # strip NULLOK with no effect
c48640ec
AL
146
147 # Make sure each arg has at least a type and a var name.
148 # An arg of "int" is valid C, but want it to be "int foo".
149 my $temp_arg = $arg;
150 $temp_arg =~ s/\*//g;
151 $temp_arg =~ s/\s*\bstruct\b\s*/ /g;
7918f24d
NC
152 if ( ($temp_arg ne "...")
153 && ($temp_arg !~ /\w+\s+(\w+)(?:\[\d+\])?\s*$/) ) {
eeec122d 154 die_at_end "$func: $arg ($n) doesn't have a name\n";
c48640ec 155 }
aa4ca557 156 if (defined $1 && $nn && !($commented_out && !$binarycompat)) {
7918f24d
NC
157 push @names_of_nn, $1;
158 }
4373e329 159 }
cea2e8a9
GS
160 $ret .= join ", ", @args;
161 }
162 else {
4373e329 163 $ret .= "void" if !$has_context;
cea2e8a9 164 }
21553840 165 $ret .= " _pDEPTH" if $has_depth;
cea2e8a9 166 $ret .= ")";
f54cb97a
AL
167 my @attrs;
168 if ( $flags =~ /r/ ) {
abb2c242 169 push @attrs, "__attribute__noreturn__";
f54cb97a 170 }
a5c26493
RGS
171 if ( $flags =~ /D/ ) {
172 push @attrs, "__attribute__deprecated__";
173 }
88e01c9d 174 if ( $is_malloc ) {
abb2c242 175 push @attrs, "__attribute__malloc__";
f54cb97a 176 }
88e01c9d 177 if ( !$can_ignore ) {
abb2c242 178 push @attrs, "__attribute__warn_unused_result__";
f54cb97a
AL
179 }
180 if ( $flags =~ /P/ ) {
abb2c242 181 push @attrs, "__attribute__pure__";
f54cb97a 182 }
1c846c1f 183 if( $flags =~ /f/ ) {
cdfeb707 184 my $prefix = $has_context ? 'pTHX_' : '';
5d37acd6
DM
185 my ($args, $pat);
186 if ($args[-1] eq '...') {
187 $args = scalar @args;
188 $pat = $args - 1;
189 $args = $prefix . $args;
190 }
191 else {
192 # don't check args, and guess which arg is the pattern
193 # (one of 'fmt', 'pat', 'f'),
194 $args = 0;
195 my @fmts = grep $args[$_] =~ /\b(f|pat|fmt)$/, 0..$#args;
196 if (@fmts != 1) {
197 die "embed.pl: '$plain_func': can't determine pattern arg\n";
198 }
199 $pat = $fmts[0] + 1;
200 }
201 my $macro = grep($_ == $pat, @nonnull)
cdfeb707
RB
202 ? '__attribute__format__'
203 : '__attribute__format__null_ok__';
531b2663
DM
204 if ($plain_func =~ /strftime/) {
205 push @attrs, sprintf "%s(__strftime__,%s1,0)", $macro, $prefix;
206 }
207 else {
5d37acd6
DM
208 push @attrs, sprintf "%s(__printf__,%s%d,%s)", $macro,
209 $prefix, $pat, $args;
531b2663 210 }
894356b3 211 }
f54cb97a
AL
212 if ( @attrs ) {
213 $ret .= "\n";
214 $ret .= join( "\n", map { "\t\t\t$_" } @attrs );
4373e329 215 }
af3c7592 216 $ret .= ";";
88e01c9d 217 $ret = "/* $ret */" if $commented_out;
7918f24d
NC
218 if (@names_of_nn) {
219 $ret .= "\n#define PERL_ARGS_ASSERT_\U$plain_func\E\t\\\n\t"
220 . join '; ', map "assert($_)", @names_of_nn;
221 }
a5d565cd 222 $ret .= "\n#endif" if $static_inline;
3f1866a8 223 $ret .= "\n#endif" if $binarycompat;
f54cb97a 224 $ret .= @attrs ? "\n\n" : "\n";
9516dc40
NC
225
226 print $pr $ret;
cea2e8a9 227 }
9516dc40 228
897d3989
NC
229 print $pr <<'EOF';
230#ifdef PERL_CORE
231# include "pp_proto.h"
232#endif
233END_EXTERN_C
897d3989 234EOF
9516dc40 235
eeec122d 236 read_only_bottom_close_and_rename($pr) if ! $error_count;
cea2e8a9
GS
237}
238
eeec122d 239die_at_end "$unflagged_pointers pointer arguments to clean up\n" if $unflagged_pointers;
cea2e8a9 240
adf34b4b
NC
241sub readvars {
242 my ($file, $pre) = @_;
d4cce5f1 243 local (*FILE, $_);
adf34b4b 244 my %seen;
1ae6ead9 245 open(FILE, '<', $file)
d4cce5f1
NIS
246 or die "embed.pl: Can't open $file: $!\n";
247 while (<FILE>) {
248 s/[ \t]*#.*//; # Delete comments.
115ff745 249 if (/PERLVARA?I?C?\($pre,\s*(\w+)/) {
eeec122d 250 die_at_end "duplicate symbol $1 while processing $file line $.\n"
adf34b4b 251 if $seen{$1}++;
d4cce5f1
NIS
252 }
253 }
254 close(FILE);
adf34b4b 255 return sort keys %seen;
d4cce5f1
NIS
256}
257
adf34b4b
NC
258my @intrp = readvars 'intrpvar.h','I';
259my @globvar = readvars 'perlvars.h','G';
d4cce5f1 260
125218eb
NC
261sub hide {
262 my ($from, $to, $indent) = @_;
263 $indent = '' unless defined $indent;
264 my $t = int(length("$indent$from") / 8);
265 "#${indent}define $from" . "\t" x ($t < 3 ? 3 - $t : 1) . "$to\n";
5f05dabc 266}
c6af7a1a 267
d4cce5f1
NIS
268sub multon ($$$) {
269 my ($sym,$pre,$ptr) = @_;
3280af22 270 hide("PL_$sym", "($ptr$pre$sym)");
5f05dabc 271}
54aff467 272
5f8dc073 273my $em = open_print_header('embed.h');
e50aee73 274
5f8dc073 275print $em <<'END';
e50aee73
AD
276/* (Doing namespace management portably in C is really gross.) */
277
d51482e4
JH
278/* By defining PERL_NO_SHORT_NAMES (not done by default) the short forms
279 * (like warn instead of Perl_warn) for the API are not defined.
280 * Not defining the short forms is a good thing for cleaner embedding. */
281
282#ifndef PERL_NO_SHORT_NAMES
820c3be9 283
22c35a8c 284/* Hide global symbols */
5f05dabc 285
e50aee73
AD
286END
287
cea2e8a9
GS
288my @az = ('a'..'z');
289
e8a67806
NC
290sub embed_h {
291 my ($guard, $funcs) = @_;
292 print $em "$guard\n" if $guard;
293
2a4d8072 294 my $lines;
e8a67806
NC
295 foreach (@$funcs) {
296 if (@$_ == 1) {
297 my $cond = $_->[0];
298 # Indent the conditionals if we are wrapped in an #if/#endif pair.
299 $cond =~ s/#(.*)/# $1/ if $guard;
2a4d8072 300 $lines .= "$cond\n";
e8a67806
NC
301 next;
302 }
303 my $ret = "";
304 my ($flags,$retval,$func,@args) = @$_;
af3c7592 305 unless ($flags =~ /[om]/) {
cea2e8a9 306 my $args = scalar @args;
7a5a24f7 307 if ($flags =~ /n/) {
da8a4494
KW
308 my $full_name = full_name($func, $flags);
309 next if $full_name eq $func; # Don't output a no-op.
310 $ret = hide($func, $full_name);
cea2e8a9 311 }
7a5a24f7 312 elsif ($args and $args[$args-1] =~ /\.\.\./) {
e64ca59f
NC
313 if ($flags =~ /p/) {
314 # we're out of luck for varargs functions under CPP
315 # So we can only do these macros for no implicit context:
316 $ret = "#ifndef PERL_IMPLICIT_CONTEXT\n"
03b6588a 317 . hide($func, full_name($func, $flags)) . "#endif\n";
e64ca59f 318 }
7a5a24f7 319 }
cea2e8a9
GS
320 else {
321 my $alist = join(",", @az[0..$args-1]);
322 $ret = "#define $func($alist)";
323 my $t = int(length($ret) / 8);
324 $ret .= "\t" x ($t < 4 ? 4 - $t : 1);
03b6588a 325 $ret .= full_name($func, $flags) . "(aTHX";
cea2e8a9 326 $ret .= "_ " if $alist;
21553840
YO
327 $ret .= $alist;
328 if ($flags =~ /W/) {
329 if ($alist) {
330 $ret .= " _aDEPTH";
331 } else {
332 die "Can't use W without other args (currently)";
333 }
334 }
335 $ret .= ")\n";
cea2e8a9 336 }
3f1866a8 337 $ret = "#ifndef NO_MATHOMS\n$ret#endif\n" if $flags =~ /b/;
cea2e8a9 338 }
2a4d8072 339 $lines .= $ret;
cea2e8a9 340 }
2a4d8072
NC
341 # Prune empty #if/#endif pairs.
342 while ($lines =~ s/#\s*if[^\n]+\n#\s*endif\n//) {
343 }
b2e549c0
NC
344 # Merge adjacent blocks.
345 while ($lines =~ s/(#ifndef PERL_IMPLICIT_CONTEXT
346[^\n]+
347)#endif
348#ifndef PERL_IMPLICIT_CONTEXT
349/$1/) {
350 }
351
2a4d8072 352 print $em $lines;
e8a67806 353 print $em "#endif\n" if $guard;
da4ddda1
NC
354}
355
5ccbf88e
NC
356embed_h('', $api);
357embed_h('#if defined(PERL_CORE) || defined(PERL_EXT)', $ext);
358embed_h('#ifdef PERL_CORE', $core);
e8a67806 359
424a4936 360print $em <<'END';
e50aee73 361
d51482e4 362#endif /* #ifndef PERL_NO_SHORT_NAMES */
35209cc8 363
cea2e8a9
GS
364/* Compatibility stubs. Compile extensions with -DPERL_NOCOMPAT to
365 disable them.
366 */
367
538feb02 368#if !defined(PERL_CORE)
5bc28da9 369# define sv_setptrobj(rv,ptr,name) sv_setref_iv(rv,name,PTR2IV(ptr))
a0714e2c 370# define sv_setptrref(rv,ptr) sv_setref_iv(rv,NULL,PTR2IV(ptr))
538feb02 371#endif
cea2e8a9 372
08e5223a 373#if !defined(PERL_CORE) && !defined(PERL_NOCOMPAT)
cea2e8a9
GS
374
375/* Compatibility for various misnamed functions. All functions
376 in the API that begin with "perl_" (not "Perl_") take an explicit
377 interpreter context pointer.
378 The following are not like that, but since they had a "perl_"
379 prefix in previous versions, we provide compatibility macros.
380 */
65cec589 381# define perl_atexit(a,b) call_atexit(a,b)
7b53c8ee
NC
382END
383
3a54c8e7
NC
384foreach (@$embed) {
385 my ($flags, $retval, $func, @args) = @$_;
386 next unless $func;
387 next unless $flags =~ /O/;
7b53c8ee
NC
388
389 my $alist = join ",", @az[0..$#args];
390 my $ret = "# define perl_$func($alist)";
391 my $t = (length $ret) >> 3;
392 $ret .= "\t" x ($t < 5 ? 5 - $t : 1);
3a54c8e7
NC
393 print $em "$ret$func($alist)\n";
394}
7b53c8ee 395
eacd26c2
NC
396my @nocontext;
397{
398 my (%has_va, %has_nocontext);
5ccbf88e 399 foreach (@$embed) {
eacd26c2
NC
400 next unless @$_ > 1;
401 ++$has_va{$_->[2]} if $_->[-1] =~ /\.\.\./;
402 ++$has_nocontext{$1} if $_->[2] =~ /(.*)_nocontext/;
403 }
404
405 @nocontext = sort grep {
406 $has_nocontext{$_}
407 && !/printf/ # Not clear to me why these are skipped but they are.
408 } keys %has_va;
409}
410
7b53c8ee 411print $em <<'END';
cea2e8a9
GS
412
413/* varargs functions can't be handled with CPP macros. :-(
414 This provides a set of compatibility functions that don't take
415 an extra argument but grab the context pointer using the macro
416 dTHX.
417 */
d51482e4 418#if defined(PERL_IMPLICIT_CONTEXT) && !defined(PERL_NO_SHORT_NAMES)
125218eb
NC
419END
420
eacd26c2 421foreach (@nocontext) {
125218eb
NC
422 print $em hide($_, "Perl_${_}_nocontext", " ");
423}
424
425print $em <<'END';
cea2e8a9
GS
426#endif
427
428#endif /* !defined(PERL_CORE) && !defined(PERL_NOCOMPAT) */
429
430#if !defined(PERL_IMPLICIT_CONTEXT)
431/* undefined symbols, point them back at the usual ones */
125218eb
NC
432END
433
eacd26c2 434foreach (@nocontext) {
125218eb
NC
435 print $em hide("Perl_${_}_nocontext", "Perl_$_", " ");
436}
437
438print $em <<'END';
cea2e8a9 439#endif
d4cce5f1
NIS
440END
441
eeec122d 442read_only_bottom_close_and_rename($em) if ! $error_count;
d4cce5f1 443
5f8dc073 444$em = open_print_header('embedvar.h');
d4cce5f1 445
5f8dc073 446print $em <<'END';
d4cce5f1
NIS
447/* (Doing namespace management portably in C is really gross.) */
448
54aff467 449/*
3db8f154
MB
450 The following combinations of MULTIPLICITY and PERL_IMPLICIT_CONTEXT
451 are supported:
54aff467
GS
452 1) none
453 2) MULTIPLICITY # supported for compatibility
454 3) MULTIPLICITY && PERL_IMPLICIT_CONTEXT
54aff467
GS
455
456 All other combinations of these flags are errors.
457
3db8f154 458 only #3 is supported directly, while #2 is a special
54aff467
GS
459 case of #3 (supported by redefining vTHX appropriately).
460*/
cea2e8a9 461
54aff467 462#if defined(MULTIPLICITY)
3db8f154 463/* cases 2 and 3 above */
cea2e8a9 464
54aff467
GS
465# if defined(PERL_IMPLICIT_CONTEXT)
466# define vTHX aTHX
467# else
468# define vTHX PERL_GET_INTERP
469# endif
cea2e8a9 470
e50aee73
AD
471END
472
adf34b4b
NC
473my $sym;
474
475for $sym (@intrp) {
1a904fc8
FC
476 if ($sym eq 'sawampersand') {
477 print $em "#ifndef PL_sawampersand\n";
478 }
424a4936 479 print $em multon($sym,'I','vTHX->');
1a904fc8
FC
480 if ($sym eq 'sawampersand') {
481 print $em "#endif\n";
482 }
d4cce5f1
NIS
483}
484
424a4936 485print $em <<'END';
d4cce5f1 486
54aff467 487#endif /* MULTIPLICITY */
d4cce5f1 488
54aff467 489#if defined(PERL_GLOBAL_STRUCT)
22239a37
NIS
490
491END
492
adf34b4b 493for $sym (@globvar) {
0447859b 494 print $em "#ifdef OS2\n" if $sym eq 'sh_path';
483efd0a 495 print $em "#ifdef __VMS\n" if $sym eq 'perllib_sep';
424a4936
NC
496 print $em multon($sym, 'G','my_vars->');
497 print $em multon("G$sym",'', 'my_vars->');
0447859b 498 print $em "#endif\n" if $sym eq 'sh_path';
483efd0a 499 print $em "#endif\n" if $sym eq 'perllib_sep';
22239a37
NIS
500}
501
424a4936 502print $em <<'END';
22239a37 503
22239a37 504#endif /* PERL_GLOBAL_STRUCT */
84fee439
NIS
505END
506
eeec122d 507read_only_bottom_close_and_rename($em) if ! $error_count;
c6af7a1a 508
5f8dc073 509my $capih = open_print_header('perlapi.h');
51371543 510
5f8dc073 511print $capih <<'EOT';
51371543 512/* declare accessor functions for Perl variables */
6f4183fe
GS
513#ifndef __perlapi_h__
514#define __perlapi_h__
51371543 515
87b9e160 516#if defined (MULTIPLICITY) && defined (PERL_GLOBAL_STRUCT)
c5be433b 517
51371543
GS
518START_EXTERN_C
519
520#undef PERLVAR
521#undef PERLVARA
522#undef PERLVARI
523#undef PERLVARIC
115ff745
NC
524#define PERLVAR(p,v,t) EXTERN_C t* Perl_##p##v##_ptr(pTHX);
525#define PERLVARA(p,v,n,t) typedef t PL_##v##_t[n]; \
526 EXTERN_C PL_##v##_t* Perl_##p##v##_ptr(pTHX);
527#define PERLVARI(p,v,t,i) PERLVAR(p,v,t)
528#define PERLVARIC(p,v,t,i) PERLVAR(p,v, const t)
51371543 529
51371543
GS
530#include "perlvars.h"
531
532#undef PERLVAR
533#undef PERLVARA
534#undef PERLVARI
535#undef PERLVARIC
27da23d5 536
51371543
GS
537END_EXTERN_C
538
682fc664 539#if defined(PERL_CORE)
6f4183fe 540
87b9e160 541/* accessor functions for Perl "global" variables */
682fc664
GS
542
543/* these need to be mentioned here, or most linkers won't put them in
544 the perl executable */
545
546#ifndef PERL_NO_FORCE_LINK
547
548START_EXTERN_C
549
550#ifndef DOINIT
27da23d5 551EXTCONST void * const PL_force_link_funcs[];
682fc664 552#else
27da23d5 553EXTCONST void * const PL_force_link_funcs[] = {
682fc664
GS
554#undef PERLVAR
555#undef PERLVARA
556#undef PERLVARI
557#undef PERLVARIC
115ff745
NC
558#define PERLVAR(p,v,t) (void*)Perl_##p##v##_ptr,
559#define PERLVARA(p,v,n,t) PERLVAR(p,v,t)
560#define PERLVARI(p,v,t,i) PERLVAR(p,v,t)
561#define PERLVARIC(p,v,t,i) PERLVAR(p,v,t)
682fc664 562
3c0f78ca
JH
563/* In Tru64 (__DEC && __osf__) the cc option -std1 causes that one
564 * cannot cast between void pointers and function pointers without
565 * info level warnings. The PL_force_link_funcs[] would cause a few
566 * hundred of those warnings. In code one can circumnavigate this by using
567 * unions that overlay the different pointers, but in declarations one
568 * cannot use this trick. Therefore we just disable the warning here
569 * for the duration of the PL_force_link_funcs[] declaration. */
570
571#if defined(__DECC) && defined(__osf__)
572#pragma message save
573#pragma message disable (nonstandcast)
574#endif
575
682fc664
GS
576#include "perlvars.h"
577
3c0f78ca
JH
578#if defined(__DECC) && defined(__osf__)
579#pragma message restore
580#endif
581
682fc664
GS
582#undef PERLVAR
583#undef PERLVARA
584#undef PERLVARI
585#undef PERLVARIC
586};
587#endif /* DOINIT */
588
acfe0abc 589END_EXTERN_C
682fc664
GS
590
591#endif /* PERL_NO_FORCE_LINK */
592
593#else /* !PERL_CORE */
51371543
GS
594
595EOT
596
adf34b4b 597foreach $sym (@globvar) {
5f9c6535
NC
598 print $capih
599 "#undef PL_$sym\n" . hide("PL_$sym", "(*Perl_G${sym}_ptr(NULL))");
6f4183fe
GS
600}
601
424a4936 602print $capih <<'EOT';
6f4183fe
GS
603
604#endif /* !PERL_CORE */
87b9e160 605#endif /* MULTIPLICITY && PERL_GLOBAL_STRUCT */
6f4183fe
GS
606
607#endif /* __perlapi_h__ */
6f4183fe 608EOT
ce716c52 609
eeec122d 610read_only_bottom_close_and_rename($capih) if ! $error_count;
51371543 611
5f8dc073 612my $capi = open_print_header('perlapi.c', <<'EOQ');
56fd1190 613 *
892eaa71
NC
614 *
615 * Up to the threshold of the door there mounted a flight of twenty-seven
616 * broad stairs, hewn by some unknown art of the same black stone. This
617 * was the only entrance to the tower; ...
618 *
619 * [p.577 of _The Lord of the Rings_, III/x: "The Voice of Saruman"]
620 *
621 */
56fd1190 622EOQ
892eaa71 623
5f8dc073 624print $capi <<'EOT';
51371543
GS
625#include "EXTERN.h"
626#include "perl.h"
627#include "perlapi.h"
628
87b9e160 629#if defined (MULTIPLICITY) && defined (PERL_GLOBAL_STRUCT)
51371543 630
87b9e160 631/* accessor functions for Perl "global" variables */
51371543
GS
632START_EXTERN_C
633
51371543 634#undef PERLVARI
115ff745 635#define PERLVARI(p,v,t,i) PERLVAR(p,v,t)
c5be433b
GS
636
637#undef PERLVAR
638#undef PERLVARA
115ff745 639#define PERLVAR(p,v,t) t* Perl_##p##v##_ptr(pTHX) \
96a5add6 640 { dVAR; PERL_UNUSED_CONTEXT; return &(PL_##v); }
115ff745 641#define PERLVARA(p,v,n,t) PL_##v##_t* Perl_##p##v##_ptr(pTHX) \
96a5add6 642 { dVAR; PERL_UNUSED_CONTEXT; return &(PL_##v); }
34f7a5fe 643#undef PERLVARIC
115ff745
NC
644#define PERLVARIC(p,v,t,i) \
645 const t* Perl_##p##v##_ptr(pTHX) \
96a5add6 646 { PERL_UNUSED_CONTEXT; return (const t *)&(PL_##v); }
51371543
GS
647#include "perlvars.h"
648
649#undef PERLVAR
650#undef PERLVARA
651#undef PERLVARI
652#undef PERLVARIC
27da23d5 653
acfe0abc 654END_EXTERN_C
6f4183fe 655
87b9e160 656#endif /* MULTIPLICITY && PERL_GLOBAL_STRUCT */
51371543
GS
657EOT
658
eeec122d
KW
659read_only_bottom_close_and_rename($capi) if ! $error_count;
660
661die "$error_count errors found" if $error_count;
acfe0abc 662
1b6737cc 663# ex: set ts=8 sts=4 sw=4 noet: