3 # Regenerate (overwriting only if changed):
11 # from information stored in
18 # Accepts the standard regen_lib -q and -v args.
20 # This script is normally invoked from regen.pl.
22 require 5.004; # keep this compatible, an old perl is all we may have before
23 # we build the new one
28 # Get function prototypes
29 require 'regen/regen_lib.pl';
30 require 'regen/embed_lib.pl';
33 my $SPLINT = 0; # Turn true for experimental splint support http://www.splint.org
34 my $unflagged_pointers;
37 # See database of global and static function prototypes in embed.fnc
38 # This is used to generate prototype headers under various configurations,
39 # export symbols lists for different platforms, and macros to provide an
40 # implicit interpreter context argument.
43 sub full_name ($$) { # Returns the function name with potentially the
44 # prefixes 'S_' or 'Perl_'
45 my ($func, $flags) = @_;
47 return "S_$func" if $flags =~ /[si]/;
48 return "Perl_$func" if $flags =~ /p/;
52 sub open_print_header {
53 my ($file, $quote) = @_;
55 return open_new($file, '>',
56 { file => $file, style => '*', by => 'regen/embed.pl',
57 from => ['data in embed.fnc', 'regen/embed.pl',
58 'regen/opcodes', 'intrpvar.h', 'perlvars.h'],
59 final => "\nEdit those files and run 'make regen_headers' to effect changes.\n",
60 copyright => [1993 .. 2009], quote => $quote });
63 my ($embed, $core, $ext, $api) = setup_embed();
67 my $pr = open_print_header("proto.h");
68 print $pr "START_EXTERN_C\n";
73 print $pr "$_->[0]\n";
77 my ($flags,$retval,$plain_func,@args) = @$_;
78 if ($flags =~ / ( [^AabDdEfiMmnOoPpRrsUXx] ) /x) {
79 warn "flag $1 is not legal (for function $plain_func)";
82 my $has_context = ( $flags !~ /n/ );
83 my $never_returns = ( $flags =~ /r/ );
84 my $commented_out = ( $flags =~ /m/ );
85 my $binarycompat = ( $flags =~ /b/ );
86 my $is_malloc = ( $flags =~ /a/ );
87 my $can_ignore = ( $flags !~ /R/ ) && !$is_malloc;
91 if (! $can_ignore && $retval eq 'void') {
92 warn "It is nonsensical to require the return value of a void function ($plain_func) to be checked";
95 my $scope_type_flag_count = 0;
96 $scope_type_flag_count++ if $flags =~ /s/;
97 $scope_type_flag_count++ if $flags =~ /i/;
98 $scope_type_flag_count++ if $flags =~ /p/;
99 warn "$plain_func: i, p, and s flags are all mutually exclusive"
100 if $scope_type_flag_count > 1;
101 my $splint_flags = "";
102 if ( $SPLINT && !$commented_out ) {
103 $splint_flags .= '/*@noreturn@*/ ' if $never_returns;
104 if ($can_ignore && ($retval ne 'void') && ($retval !~ /\*/)) {
105 $retval .= " /*\@alt void\@*/";
109 if ($flags =~ /([si])/) {
111 if ($never_returns) {
112 $type = $1 eq 's' ? "PERL_STATIC_NO_RET" : "PERL_STATIC_INLINE_NO_RET";
115 $type = $1 eq 's' ? "STATIC" : "PERL_STATIC_INLINE";
117 $retval = "$type $splint_flags$retval";
120 if ($never_returns) {
121 $retval = "PERL_CALLCONV_NO_RET $splint_flags$retval";
124 $retval = "PERL_CALLCONV $splint_flags$retval";
127 $func = full_name($plain_func, $flags);
128 $ret = "$retval\t$func(";
129 if ( $has_context ) {
130 $ret .= @args ? "pTHX_ " : "pTHX";
134 for my $arg ( @args ) {
136 if ( $arg =~ /\*/ && $arg !~ /\b(NN|NULLOK)\b/ ) {
137 warn "$func: $arg needs NN or NULLOK\n";
138 ++$unflagged_pointers;
140 my $nn = ( $arg =~ s/\s*\bNN\b\s+// );
141 push( @nonnull, $n ) if $nn;
143 my $nullok = ( $arg =~ s/\s*\bNULLOK\b\s+// ); # strip NULLOK with no effect
145 # Make sure each arg has at least a type and a var name.
146 # An arg of "int" is valid C, but want it to be "int foo".
148 $temp_arg =~ s/\*//g;
149 $temp_arg =~ s/\s*\bstruct\b\s*/ /g;
150 if ( ($temp_arg ne "...")
151 && ($temp_arg !~ /\w+\s+(\w+)(?:\[\d+\])?\s*$/) ) {
152 warn "$func: $arg ($n) doesn't have a name\n";
154 if ( $SPLINT && $nullok && !$commented_out ) {
155 $arg = '/*@null@*/ ' . $arg;
157 if (defined $1 && $nn && !($commented_out && !$binarycompat)) {
158 push @names_of_nn, $1;
161 $ret .= join ", ", @args;
164 $ret .= "void" if !$has_context;
168 if ( $flags =~ /r/ ) {
169 push @attrs, "__attribute__noreturn__";
171 if ( $flags =~ /D/ ) {
172 push @attrs, "__attribute__deprecated__";
175 push @attrs, "__attribute__malloc__";
177 if ( !$can_ignore ) {
178 push @attrs, "__attribute__warn_unused_result__";
180 if ( $flags =~ /P/ ) {
181 push @attrs, "__attribute__pure__";
183 if( $flags =~ /f/ ) {
184 my $prefix = $has_context ? 'pTHX_' : '';
186 if ($args[-1] eq '...') {
187 $args = scalar @args;
189 $args = $prefix . $args;
192 # don't check args, and guess which arg is the pattern
193 # (one of 'fmt', 'pat', 'f'),
195 my @fmts = grep $args[$_] =~ /\b(f|pat|fmt)$/, 0..$#args;
197 die "embed.pl: '$plain_func': can't determine pattern arg\n";
201 my $macro = grep($_ == $pat, @nonnull)
202 ? '__attribute__format__'
203 : '__attribute__format__null_ok__';
204 if ($plain_func =~ /strftime/) {
205 push @attrs, sprintf "%s(__strftime__,%s1,0)", $macro, $prefix;
208 push @attrs, sprintf "%s(__printf__,%s%d,%s)", $macro,
209 $prefix, $pat, $args;
214 $ret .= join( "\n", map { "\t\t\t$_" } @attrs );
217 $ret = "/* $ret */" if $commented_out;
219 $ret .= "\n#define PERL_ARGS_ASSERT_\U$plain_func\E\t\\\n\t"
220 . join '; ', map "assert($_)", @names_of_nn;
222 $ret .= @attrs ? "\n\n" : "\n";
229 # include "pp_proto.h"
234 read_only_bottom_close_and_rename($pr);
237 warn "$unflagged_pointers pointer arguments to clean up\n" if $unflagged_pointers;
240 my ($file, $pre) = @_;
243 open(FILE, "< $file")
244 or die "embed.pl: Can't open $file: $!\n";
246 s/[ \t]*#.*//; # Delete comments.
247 if (/PERLVARA?I?C?\($pre,\s*(\w+)/) {
248 warn "duplicate symbol $1 while processing $file line $.\n"
253 return sort keys %seen;
256 my @intrp = readvars 'intrpvar.h','I';
257 my @globvar = readvars 'perlvars.h','G';
260 my ($from, $to, $indent) = @_;
261 $indent = '' unless defined $indent;
262 my $t = int(length("$indent$from") / 8);
263 "#${indent}define $from" . "\t" x ($t < 3 ? 3 - $t : 1) . "$to\n";
267 my ($sym,$pre,$ptr) = @_;
268 hide("PL_$sym", "($ptr$pre$sym)");
271 my $em = open_print_header('embed.h');
274 /* (Doing namespace management portably in C is really gross.) */
276 /* By defining PERL_NO_SHORT_NAMES (not done by default) the short forms
277 * (like warn instead of Perl_warn) for the API are not defined.
278 * Not defining the short forms is a good thing for cleaner embedding. */
280 #ifndef PERL_NO_SHORT_NAMES
282 /* Hide global symbols */
289 my ($guard, $funcs) = @_;
290 print $em "$guard\n" if $guard;
296 # Indent the conditionals if we are wrapped in an #if/#endif pair.
297 $cond =~ s/#(.*)/# $1/ if $guard;
302 my ($flags,$retval,$func,@args) = @$_;
303 unless ($flags =~ /[om]/) {
304 my $args = scalar @args;
306 $ret = hide($func, full_name($func, $flags));
308 elsif ($args and $args[$args-1] =~ /\.\.\./) {
310 # we're out of luck for varargs functions under CPP
311 # So we can only do these macros for no implicit context:
312 $ret = "#ifndef PERL_IMPLICIT_CONTEXT\n"
313 . hide($func, full_name($func, $flags)) . "#endif\n";
317 my $alist = join(",", @az[0..$args-1]);
318 $ret = "#define $func($alist)";
319 my $t = int(length($ret) / 8);
320 $ret .= "\t" x ($t < 4 ? 4 - $t : 1);
321 $ret .= full_name($func, $flags) . "(aTHX";
322 $ret .= "_ " if $alist;
323 $ret .= $alist . ")\n";
328 # Prune empty #if/#endif pairs.
329 while ($lines =~ s/#\s*if[^\n]+\n#\s*endif\n//) {
331 # Merge adjacent blocks.
332 while ($lines =~ s/(#ifndef PERL_IMPLICIT_CONTEXT
335 #ifndef PERL_IMPLICIT_CONTEXT
340 print $em "#endif\n" if $guard;
344 embed_h('#if defined(PERL_CORE) || defined(PERL_EXT)', $ext);
345 embed_h('#ifdef PERL_CORE', $core);
349 #endif /* #ifndef PERL_NO_SHORT_NAMES */
351 /* Compatibility stubs. Compile extensions with -DPERL_NOCOMPAT to
355 #if !defined(PERL_CORE)
356 # define sv_setptrobj(rv,ptr,name) sv_setref_iv(rv,name,PTR2IV(ptr))
357 # define sv_setptrref(rv,ptr) sv_setref_iv(rv,NULL,PTR2IV(ptr))
360 #if !defined(PERL_CORE) && !defined(PERL_NOCOMPAT)
362 /* Compatibility for various misnamed functions. All functions
363 in the API that begin with "perl_" (not "Perl_") take an explicit
364 interpreter context pointer.
365 The following are not like that, but since they had a "perl_"
366 prefix in previous versions, we provide compatibility macros.
368 # define perl_atexit(a,b) call_atexit(a,b)
372 my ($flags, $retval, $func, @args) = @$_;
374 next unless $flags =~ /O/;
376 my $alist = join ",", @az[0..$#args];
377 my $ret = "# define perl_$func($alist)";
378 my $t = (length $ret) >> 3;
379 $ret .= "\t" x ($t < 5 ? 5 - $t : 1);
380 print $em "$ret$func($alist)\n";
385 my (%has_va, %has_nocontext);
388 ++$has_va{$_->[2]} if $_->[-1] =~ /\.\.\./;
389 ++$has_nocontext{$1} if $_->[2] =~ /(.*)_nocontext/;
392 @nocontext = sort grep {
394 && !/printf/ # Not clear to me why these are skipped but they are.
400 /* varargs functions can't be handled with CPP macros. :-(
401 This provides a set of compatibility functions that don't take
402 an extra argument but grab the context pointer using the macro
405 #if defined(PERL_IMPLICIT_CONTEXT) && !defined(PERL_NO_SHORT_NAMES)
408 foreach (@nocontext) {
409 print $em hide($_, "Perl_${_}_nocontext", " ");
415 #endif /* !defined(PERL_CORE) && !defined(PERL_NOCOMPAT) */
417 #if !defined(PERL_IMPLICIT_CONTEXT)
418 /* undefined symbols, point them back at the usual ones */
421 foreach (@nocontext) {
422 print $em hide("Perl_${_}_nocontext", "Perl_$_", " ");
429 read_only_bottom_close_and_rename($em);
431 $em = open_print_header('embedvar.h');
434 /* (Doing namespace management portably in C is really gross.) */
437 The following combinations of MULTIPLICITY and PERL_IMPLICIT_CONTEXT
440 2) MULTIPLICITY # supported for compatibility
441 3) MULTIPLICITY && PERL_IMPLICIT_CONTEXT
443 All other combinations of these flags are errors.
445 only #3 is supported directly, while #2 is a special
446 case of #3 (supported by redefining vTHX appropriately).
449 #if defined(MULTIPLICITY)
450 /* cases 2 and 3 above */
452 # if defined(PERL_IMPLICIT_CONTEXT)
455 # define vTHX PERL_GET_INTERP
463 if ($sym eq 'sawampersand') {
464 print $em "#ifndef PL_sawampersand\n";
466 print $em multon($sym,'I','vTHX->');
467 if ($sym eq 'sawampersand') {
468 print $em "#endif\n";
474 #endif /* MULTIPLICITY */
476 #if defined(PERL_GLOBAL_STRUCT)
480 for $sym (@globvar) {
481 print $em "#ifdef OS2\n" if $sym eq 'sh_path';
482 print $em multon($sym, 'G','my_vars->');
483 print $em multon("G$sym",'', 'my_vars->');
484 print $em "#endif\n" if $sym eq 'sh_path';
489 #endif /* PERL_GLOBAL_STRUCT */
492 read_only_bottom_close_and_rename($em);
494 my $capih = open_print_header('perlapi.h');
496 print $capih <<'EOT';
497 /* declare accessor functions for Perl variables */
498 #ifndef __perlapi_h__
499 #define __perlapi_h__
501 #if defined (MULTIPLICITY) && defined (PERL_GLOBAL_STRUCT)
509 #define PERLVAR(p,v,t) EXTERN_C t* Perl_##p##v##_ptr(pTHX);
510 #define PERLVARA(p,v,n,t) typedef t PL_##v##_t[n]; \
511 EXTERN_C PL_##v##_t* Perl_##p##v##_ptr(pTHX);
512 #define PERLVARI(p,v,t,i) PERLVAR(p,v,t)
513 #define PERLVARIC(p,v,t,i) PERLVAR(p,v, const t)
515 #include "perlvars.h"
524 #if defined(PERL_CORE)
526 /* accessor functions for Perl "global" variables */
528 /* these need to be mentioned here, or most linkers won't put them in
529 the perl executable */
531 #ifndef PERL_NO_FORCE_LINK
536 EXTCONST void * const PL_force_link_funcs[];
538 EXTCONST void * const PL_force_link_funcs[] = {
543 #define PERLVAR(p,v,t) (void*)Perl_##p##v##_ptr,
544 #define PERLVARA(p,v,n,t) PERLVAR(p,v,t)
545 #define PERLVARI(p,v,t,i) PERLVAR(p,v,t)
546 #define PERLVARIC(p,v,t,i) PERLVAR(p,v,t)
548 /* In Tru64 (__DEC && __osf__) the cc option -std1 causes that one
549 * cannot cast between void pointers and function pointers without
550 * info level warnings. The PL_force_link_funcs[] would cause a few
551 * hundred of those warnings. In code one can circumnavigate this by using
552 * unions that overlay the different pointers, but in declarations one
553 * cannot use this trick. Therefore we just disable the warning here
554 * for the duration of the PL_force_link_funcs[] declaration. */
556 #if defined(__DECC) && defined(__osf__)
558 #pragma message disable (nonstandcast)
561 #include "perlvars.h"
563 #if defined(__DECC) && defined(__osf__)
564 #pragma message restore
576 #endif /* PERL_NO_FORCE_LINK */
578 #else /* !PERL_CORE */
582 foreach $sym (@globvar) {
584 "#undef PL_$sym\n" . hide("PL_$sym", "(*Perl_G${sym}_ptr(NULL))");
587 print $capih <<'EOT';
589 #endif /* !PERL_CORE */
590 #endif /* MULTIPLICITY && PERL_GLOBAL_STRUCT */
592 #endif /* __perlapi_h__ */
595 read_only_bottom_close_and_rename($capih);
597 my $capi = open_print_header('perlapi.c', <<'EOQ');
600 * Up to the threshold of the door there mounted a flight of twenty-seven
601 * broad stairs, hewn by some unknown art of the same black stone. This
602 * was the only entrance to the tower; ...
604 * [p.577 of _The Lord of the Rings_, III/x: "The Voice of Saruman"]
614 #if defined (MULTIPLICITY) && defined (PERL_GLOBAL_STRUCT)
616 /* accessor functions for Perl "global" variables */
620 #define PERLVARI(p,v,t,i) PERLVAR(p,v,t)
624 #define PERLVAR(p,v,t) t* Perl_##p##v##_ptr(pTHX) \
625 { dVAR; PERL_UNUSED_CONTEXT; return &(PL_##v); }
626 #define PERLVARA(p,v,n,t) PL_##v##_t* Perl_##p##v##_ptr(pTHX) \
627 { dVAR; PERL_UNUSED_CONTEXT; return &(PL_##v); }
629 #define PERLVARIC(p,v,t,i) \
630 const t* Perl_##p##v##_ptr(pTHX) \
631 { PERL_UNUSED_CONTEXT; return (const t *)&(PL_##v); }
632 #include "perlvars.h"
641 #endif /* MULTIPLICITY && PERL_GLOBAL_STRUCT */
644 read_only_bottom_close_and_rename($capi);
646 # ex: set ts=8 sts=4 sw=4 noet: