This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade Tie::RefHash from version 1.38 to 1.39
[perl5.git] / regen_perly.pl
CommitLineData
0de566d7
DM
1#!/usr/bin/perl
2#
3# regen_perly.pl, DAPM 12-Feb-04
4#
1d325971 5# Copyright (c) 2004, 2005 Larry Wall
0de566d7
DM
6#
7# Given an input file perly.y, run bison on it and produce
8# the following output files:
9#
10# perly.h standard bison header file with minor doctoring of
11# #line directives plus adding a #ifdef PERL_CORE
12#
13# perly.tab the parser table C definitions extracted from the bison output
0539ab63 14# plus an extra table generated by this script.
0de566d7
DM
15#
16# perly.act the action case statements extracted from the bison output
17#
18# Note that perly.c is *not* regenerated - this is now a static file which
19# is not dependent on perly.y any more.
20#
21# If a filename of the form foo.y is given on the command line, then
22# this is used instead as the basename for all the files mentioned
23# above.
24#
25# Note that temporary files of the form perlytmp.h and perlytmp.c are
26# created and then deleted during this process
27#
28# Note also that this script is intended to be run on a UNIX system;
29# it may work elsewhere but no specific attempt has been made to make it
30# portable.
31
e8fb9efb 32use 5.006;
0de566d7
DM
33sub usage { die "usage: $0 [ -b bison_executable ] [ file.y ]\n" }
34
35use warnings;
36use strict;
37
2bd4012d 38BEGIN { require 'regen/regen_lib.pl'; }
a9718e07 39
0de566d7
DM
40my $bison = 'bison';
41
42if (@ARGV >= 2 and $ARGV[0] eq '-b') {
43 shift;
44 $bison = shift;
45}
46
47my $y_file = shift || 'perly.y';
48
49usage unless @ARGV==0 && $y_file =~ /\.y$/;
50
51(my $h_file = $y_file) =~ s/\.y$/.h/;
52(my $act_file = $y_file) =~ s/\.y$/.act/;
53(my $tab_file = $y_file) =~ s/\.y$/.tab/;
54(my $tmpc_file = $y_file) =~ s/\.y$/tmp.c/;
55(my $tmph_file = $y_file) =~ s/\.y$/tmp.h/;
56
57# the yytranslate[] table generated by bison is ASCII/EBCDIC sensitive
58
59die "$0: must be run on an ASCII system\n" unless ord 'A' == 65;
60
61# check for correct version number. The constraints are:
62# * must be >= 1.24 to avoid licensing issues.
63# * it must generate the yystos[] table. Version 1.28 doesn't generate
64# this; 1.35+ does
65# * Must produce output which is extractable by the regexes below
66# * Must produce the right values.
8abc1060 67# These last two constraints may well be met by earlier versions, but
0de566d7
DM
68# I simply haven't tested them yet. If it works for you, then modify
69# the test below to allow that version too. DAPM Feb 04.
70
71my $version = `$bison -V`;
7b931d50
LB
72unless ($version) { die <<EOF; }
73Could not find a version of bison in your path. Please install bison.
74EOF
75
ce1534ab 76unless ($version =~ /\b(1\.875[a-z]?|2\.[0134])\b/) { die <<EOF; }
0de566d7 77
2080282f 78You have the wrong version of bison in your path; currently 1.875
aae7e7b3
VP
792.0, 2.1, 2.3 or 2.4 is required. Try installing
80 http://ftp.gnu.org/gnu/bison/bison-2.4.1.tar.gz
0de566d7
DM
81or similar. Your bison identifies itself as:
82
83$version
84EOF
85
86# creates $tmpc_file and $tmph_file
87my_system("$bison -d -o $tmpc_file $y_file");
88
e8fb9efb 89open my $ctmp_fh, '<', $tmpc_file or die "Can't open $tmpc_file: $!\n";
0de566d7 90my $clines;
e8fb9efb 91{ local $/; $clines = <$ctmp_fh>; }
0de566d7
DM
92die "failed to read $tmpc_file: length mismatch\n"
93 unless length $clines == -s $tmpc_file;
e8fb9efb 94close $ctmp_fh;
0de566d7
DM
95
96my ($actlines, $tablines) = extract($clines);
97
d5c6462e 98$tablines .= make_type_tab($y_file, $tablines);
0539ab63 99
e8fb9efb 100my $read_only = read_only_top(lang => 'C', by => $0, from => $y_file);
0de566d7 101
e8fb9efb
NC
102my $act_fh = safer_open("$act_file-new", $act_file);
103print $act_fh $read_only, $actlines;
e8fb9efb
NC
104
105my $tab_fh = safer_open("$tab_file-new", $tab_file);
106print $tab_fh $read_only, $tablines;
0de566d7
DM
107
108unlink $tmpc_file;
109
110# Wrap PERL_CORE round the symbol definitions. Also, the
96f4e226
SH
111# C<#line 30 "perly.y"> confuses the Win32 resource compiler and the
112# C<#line 188 "perlytmp.h"> gets picked up by make depend, so remove them.
0de566d7 113
e8fb9efb
NC
114open my $tmph_fh, '<', $tmph_file or die "Can't open $tmph_file: $!\n";
115my $h_fh = safer_open("$h_file-new", $h_file);
116
117print $h_fh $read_only;
118
0de566d7 119my $endcore_done = 0;
ce1534ab
VP
120# Token macros need to be generated manually on bison 2.4
121my $gather_tokens = ($version =~ /\b2\.4\b/ ? undef : 0);
122my $tokens;
e8fb9efb
NC
123while (<$tmph_fh>) {
124 print $h_fh "#ifdef PERL_CORE\n" if $. == 1;
0de566d7 125 if (!$endcore_done and /YYSTYPE_IS_DECLARED/) {
e8fb9efb 126 print $h_fh "#endif /* PERL_CORE */\n";
0de566d7
DM
127 $endcore_done = 1;
128 }
96f4e226 129 next if /^#line \d+ ".*"/;
ce1534ab
VP
130 if (not defined $gather_tokens) {
131 $gather_tokens = 1 if /^\s* enum \s* yytokentype \s* \{/x;
132 }
133 elsif ($gather_tokens) {
134 if (/^\# \s* endif/x) { # The #endif just after the end of the token enum
135 $gather_tokens = 0;
136 $_ .= "\n/* Tokens. */\n$tokens";
137 }
138 else {
139 my ($tok, $val) = /(\w+) \s* = \s* (\d+)/x;
140 $tokens .= "#define $tok $val\n" if $tok;
141 }
142 }
e8fb9efb 143 print $h_fh $_;
0de566d7 144}
e8fb9efb 145close $tmph_fh;
0de566d7
DM
146unlink $tmph_file;
147
c24c946d
NC
148foreach ($act_fh, $tab_fh, $h_fh) {
149 read_only_bottom_close_and_rename($_, ['regen_perly.pl', $y_file]);
150}
0de566d7
DM
151
152exit 0;
153
154
155sub extract {
156 my $clines = shift;
157 my $tablines;
158 my $actlines;
159
160 $clines =~ m@
161 (?:
162 ^/* YYFINAL[^\n]+\n #optional comment
163 )?
164 \# \s* define \s* YYFINAL # first #define
165 .*? # other defines + most tables
166 yystos\[\]\s*= # start of last table
167 .*?
168 }\s*; # end of last table
169 @xms
170 or die "Can't extract tables from $tmpc_file\n";
171 $tablines = $&;
172
173
174 $clines =~ m@
175 switch \s* \( \s* \w+ \s* \) \s* { \s*
176 (
ce1534ab
VP
177 case \s* \d+ \s* :
178 \s*
179 (?: \s* /\* .*? \*/ \s* )* # optional C-comments
180 \s*
2ade6388 181 \#line [^\n]+"\Q$y_file\E"
0de566d7
DM
182 .*?
183 )
184 }
185 \s*
ce1534ab 186 (?: \s* /\* .*? \*/ \s* )* # optional C-comments
0de566d7
DM
187 \s*
188 (
189 \#line[^\n]+\.c"
190 |
191 \#line[^\n]+\.simple"
3797f23d
DM
192 |
193 YY_SYMBOL_PRINT
0de566d7
DM
194 )
195 @xms
196 or die "Can't extract actions from $tmpc_file\n";
197 $actlines = $1;
198
ce1534ab
VP
199 # Remove extraneous comments from bison 2.4
200 $actlines =~ s!\s* /\* \s* Line \s* \d+ \s* of \s* yacc\.c \s* \*/!!gx;
201
0d6f9730
DM
202 # C<#line 188 "perlytmp.c"> gets picked up by make depend, so remove them.
203 $actlines =~ s/^#line \d+ "\Q$tmpc_file\E".*$//gm;
204
1654d593
DM
205 # convert yyvsp[nnn] into ps[nnn].val
206
207 $actlines =~ s/yyvsp\[(.*?)\]/ps[$1].val/g
208 or die "Can't convert value stack name\n";
209
0de566d7
DM
210 return $actlines. "\n", $tablines. "\n";
211}
212
d5c6462e
DM
213# Generate a table, yy_type_tab[], that specifies for each token, what
214# type of value it holds.
0539ab63 215#
d5c6462e
DM
216# Read the .y file and extract a list of all the token names and
217# non-terminal names; then scan the string $tablines for the table yytname,
218# which gives the token index of each token/non-terminal; then use this to
219# create yy_type_tab.
0539ab63 220#
d5c6462e
DM
221# ie given (in perly.y),
222#
223# %token <opval> A
224# %token <ival> B
225# %type <pval> C
226# %type <opval> D
227#
228# and (in $tablines),
229#
230# yytname[] = { "A" "B", "C", "D", "E" };
0539ab63
DM
231#
232# then return
d5c6462e
DM
233#
234# typedef enum { toketype_ival, toketype_opval, toketype_pval } toketypes;
235#
236# static const toketypes yy_type_tab[]
237# = { toketype_opval, toketype_ival, toketype_pval,
238# toketype_opval, toketype_ival }
239#
240# where "E" has the default type. The default type is determined
241# by the __DEFAULT__ comment next to the appropriate union member in
242# perly.y
0539ab63 243
d5c6462e 244sub make_type_tab {
0539ab63
DM
245 my ($y_file, $tablines) = @_;
246 my %tokens;
d5c6462e
DM
247 my %types;
248 my $default_token;
0539ab63
DM
249 open my $fh, '<', $y_file or die "Can't open $y_file: $!\n";
250 while (<$fh>) {
29522234
DM
251 if (/(\$\d+)\s*=/) {
252 warn "$y_file:$.: dangerous assignment to $1: $_";
253 }
254
d5c6462e
DM
255 if (/__DEFAULT__/) {
256 m{(\w+) \s* ; \s* /\* \s* __DEFAULT__}x
257 or die "$y_file: can't parse __DEFAULT__ line: $_";
258 die "$y_file: duplicate __DEFAULT__ line: $_"
259 if defined $default_token;
260 $default_token = $1;
261 next;
262 }
263
264 next unless /^%(token|type)/;
265 s/^%(token|type)\s+<(\w+)>\s+//
266 or die "$y_file: unparseable token/type line: $_";
267 $tokens{$_} = $2 for (split ' ', $_);
268 $types{$2} = 1;
0539ab63 269 }
d5c6462e
DM
270 die "$y_file: no __DEFAULT__ token defined\n" unless $default_token;
271 $types{$default_token} = 1;
0539ab63
DM
272
273 $tablines =~ /^\Qstatic const char *const yytname[] =\E\n
274 {\n
275 (.*?)
276 ^};
277 /xsm
278 or die "Can't extract yytname[] from table string\n";
279 my $fields = $1;
d5c6462e
DM
280 $fields =~ s{"([^"]+)"}
281 { "toketype_" .
282 (defined $tokens{$1} ? $tokens{$1} : $default_token)
283 }ge;
284 $fields =~ s/, \s* 0 \s* $//x
285 or die "make_type_tab: couldn't delete trailing ',0'\n";
286
0539ab63 287 return
d5c6462e
DM
288 "\ntypedef enum {\n\t"
289 . join(", ", map "toketype_$_", sort keys %types)
290 . "\n} toketypes;\n\n"
291 . "/* type of each token/terminal */\n"
d5c6462e
DM
292 . "static const toketypes yy_type_tab[] =\n{\n"
293 . $fields
294 . "\n};\n";
0539ab63
DM
295}
296
297
0de566d7
DM
298sub my_system {
299 system(@_);
300 if ($? == -1) {
d5c6462e 301 die "failed to execute command '@_': $!\n";
0de566d7
DM
302 }
303 elsif ($? & 127) {
304 die sprintf "command '@_' died with signal %d\n",
305 ($? & 127);
306 }
307 elsif ($? >> 8) {
308 die sprintf "command '@_' exited with value %d\n", $? >> 8;
309 }
310}