This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
mg.c: #ifdef only the different bits
[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
32sub usage { die "usage: $0 [ -b bison_executable ] [ file.y ]\n" }
33
34use warnings;
35use strict;
36
37my $bison = 'bison';
38
39if (@ARGV >= 2 and $ARGV[0] eq '-b') {
40 shift;
41 $bison = shift;
42}
43
44my $y_file = shift || 'perly.y';
45
46usage unless @ARGV==0 && $y_file =~ /\.y$/;
47
48(my $h_file = $y_file) =~ s/\.y$/.h/;
49(my $act_file = $y_file) =~ s/\.y$/.act/;
50(my $tab_file = $y_file) =~ s/\.y$/.tab/;
51(my $tmpc_file = $y_file) =~ s/\.y$/tmp.c/;
52(my $tmph_file = $y_file) =~ s/\.y$/tmp.h/;
53
54# the yytranslate[] table generated by bison is ASCII/EBCDIC sensitive
55
56die "$0: must be run on an ASCII system\n" unless ord 'A' == 65;
57
58# check for correct version number. The constraints are:
59# * must be >= 1.24 to avoid licensing issues.
60# * it must generate the yystos[] table. Version 1.28 doesn't generate
61# this; 1.35+ does
62# * Must produce output which is extractable by the regexes below
63# * Must produce the right values.
64# These last two contstraints may well be met by earlier versions, but
65# I simply haven't tested them yet. If it works for you, then modify
66# the test below to allow that version too. DAPM Feb 04.
67
68my $version = `$bison -V`;
3797f23d 69unless ($version =~ /\b(1\.875[a-z]?|2\.[013])\b/) { die <<EOF; }
0de566d7 70
2080282f 71You have the wrong version of bison in your path; currently 1.875
3797f23d 722.0, 2.1 or 2.3 is required. Try installing
20515881 73 http://ftp.gnu.org/gnu/bison/bison-2.1.tar.gz
0de566d7
DM
74or similar. Your bison identifies itself as:
75
76$version
77EOF
78
79# creates $tmpc_file and $tmph_file
80my_system("$bison -d -o $tmpc_file $y_file");
81
82open CTMPFILE, $tmpc_file or die "Can't open $tmpc_file: $!\n";
83my $clines;
84{ local $/; $clines = <CTMPFILE>; }
85die "failed to read $tmpc_file: length mismatch\n"
86 unless length $clines == -s $tmpc_file;
87close CTMPFILE;
88
89my ($actlines, $tablines) = extract($clines);
90
d5c6462e 91$tablines .= make_type_tab($y_file, $tablines);
0539ab63 92
0de566d7
DM
93chmod 0644, $act_file;
94open ACTFILE, ">$act_file" or die "can't open $act_file: $!\n";
95print ACTFILE $actlines;
96close ACTFILE;
97chmod 0444, $act_file;
98
99chmod 0644, $tab_file;
100open TABFILE, ">$tab_file" or die "can't open $tab_file: $!\n";
101print TABFILE $tablines;
102close TABFILE;
103chmod 0444, $tab_file;
104
105unlink $tmpc_file;
106
107# Wrap PERL_CORE round the symbol definitions. Also, the
96f4e226
SH
108# C<#line 30 "perly.y"> confuses the Win32 resource compiler and the
109# C<#line 188 "perlytmp.h"> gets picked up by make depend, so remove them.
0de566d7
DM
110
111open TMPH_FILE, $tmph_file or die "Can't open $tmph_file: $!\n";
112chmod 0644, $h_file;
113open H_FILE, ">$h_file" or die "Can't open $h_file: $!\n";
114my $endcore_done = 0;
115while (<TMPH_FILE>) {
116 print H_FILE "#ifdef PERL_CORE\n" if $. == 1;
117 if (!$endcore_done and /YYSTYPE_IS_DECLARED/) {
118 print H_FILE "#endif /* PERL_CORE */\n";
119 $endcore_done = 1;
120 }
96f4e226 121 next if /^#line \d+ ".*"/;
0de566d7
DM
122 print H_FILE $_;
123}
124close TMPH_FILE;
125close H_FILE;
126chmod 0444, $h_file;
127unlink $tmph_file;
128
129print "rebuilt: $h_file $tab_file $act_file\n";
130
131exit 0;
132
133
134sub extract {
135 my $clines = shift;
136 my $tablines;
137 my $actlines;
138
139 $clines =~ m@
140 (?:
141 ^/* YYFINAL[^\n]+\n #optional comment
142 )?
143 \# \s* define \s* YYFINAL # first #define
144 .*? # other defines + most tables
145 yystos\[\]\s*= # start of last table
146 .*?
147 }\s*; # end of last table
148 @xms
149 or die "Can't extract tables from $tmpc_file\n";
150 $tablines = $&;
151
152
153 $clines =~ m@
154 switch \s* \( \s* \w+ \s* \) \s* { \s*
155 (
156 case \s* \d+ \s* : \s*
2ade6388 157 \#line [^\n]+"\Q$y_file\E"
0de566d7
DM
158 .*?
159 )
160 }
161 \s*
162 ( \s* /\* .*? \*/ \s* )* # optional C-comments
163 \s*
164 (
165 \#line[^\n]+\.c"
166 |
167 \#line[^\n]+\.simple"
3797f23d
DM
168 |
169 YY_SYMBOL_PRINT
0de566d7
DM
170 )
171 @xms
172 or die "Can't extract actions from $tmpc_file\n";
173 $actlines = $1;
174
0d6f9730
DM
175 # C<#line 188 "perlytmp.c"> gets picked up by make depend, so remove them.
176 $actlines =~ s/^#line \d+ "\Q$tmpc_file\E".*$//gm;
177
0de566d7
DM
178 return $actlines. "\n", $tablines. "\n";
179}
180
d5c6462e
DM
181# Generate a table, yy_type_tab[], that specifies for each token, what
182# type of value it holds.
0539ab63 183#
d5c6462e
DM
184# Read the .y file and extract a list of all the token names and
185# non-terminal names; then scan the string $tablines for the table yytname,
186# which gives the token index of each token/non-terminal; then use this to
187# create yy_type_tab.
0539ab63 188#
d5c6462e
DM
189# ie given (in perly.y),
190#
191# %token <opval> A
192# %token <ival> B
193# %type <pval> C
194# %type <opval> D
195#
196# and (in $tablines),
197#
198# yytname[] = { "A" "B", "C", "D", "E" };
0539ab63
DM
199#
200# then return
d5c6462e
DM
201#
202# typedef enum { toketype_ival, toketype_opval, toketype_pval } toketypes;
203#
204# static const toketypes yy_type_tab[]
205# = { toketype_opval, toketype_ival, toketype_pval,
206# toketype_opval, toketype_ival }
207#
208# where "E" has the default type. The default type is determined
209# by the __DEFAULT__ comment next to the appropriate union member in
210# perly.y
0539ab63 211
d5c6462e 212sub make_type_tab {
0539ab63
DM
213 my ($y_file, $tablines) = @_;
214 my %tokens;
d5c6462e
DM
215 my %types;
216 my $default_token;
0539ab63
DM
217 open my $fh, '<', $y_file or die "Can't open $y_file: $!\n";
218 while (<$fh>) {
d5c6462e
DM
219 if (/__DEFAULT__/) {
220 m{(\w+) \s* ; \s* /\* \s* __DEFAULT__}x
221 or die "$y_file: can't parse __DEFAULT__ line: $_";
222 die "$y_file: duplicate __DEFAULT__ line: $_"
223 if defined $default_token;
224 $default_token = $1;
225 next;
226 }
227
228 next unless /^%(token|type)/;
229 s/^%(token|type)\s+<(\w+)>\s+//
230 or die "$y_file: unparseable token/type line: $_";
231 $tokens{$_} = $2 for (split ' ', $_);
232 $types{$2} = 1;
0539ab63 233 }
d5c6462e
DM
234 die "$y_file: no __DEFAULT__ token defined\n" unless $default_token;
235 $types{$default_token} = 1;
0539ab63
DM
236
237 $tablines =~ /^\Qstatic const char *const yytname[] =\E\n
238 {\n
239 (.*?)
240 ^};
241 /xsm
242 or die "Can't extract yytname[] from table string\n";
243 my $fields = $1;
d5c6462e
DM
244 $fields =~ s{"([^"]+)"}
245 { "toketype_" .
246 (defined $tokens{$1} ? $tokens{$1} : $default_token)
247 }ge;
248 $fields =~ s/, \s* 0 \s* $//x
249 or die "make_type_tab: couldn't delete trailing ',0'\n";
250
0539ab63 251 return
d5c6462e
DM
252 "\ntypedef enum {\n\t"
253 . join(", ", map "toketype_$_", sort keys %types)
254 . "\n} toketypes;\n\n"
255 . "/* type of each token/terminal */\n"
256 . "static const toketypes XXX;\n"
257 . "static const toketypes yy_type_tab[] =\n{\n"
258 . $fields
259 . "\n};\n";
0539ab63
DM
260}
261
262
0de566d7
DM
263sub my_system {
264 system(@_);
265 if ($? == -1) {
d5c6462e 266 die "failed to execute command '@_': $!\n";
0de566d7
DM
267 }
268 elsif ($? & 127) {
269 die sprintf "command '@_' died with signal %d\n",
270 ($? & 127);
271 }
272 elsif ($? >> 8) {
273 die sprintf "command '@_' exited with value %d\n", $? >> 8;
274 }
275}