This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade to File::Path 2.06_06. (a diff from David via http)
[perl5.git] / regcomp.pl
1 BEGIN {
2     # Get function prototypes
3     require 'regen_lib.pl';
4 }
5 #use Fatal qw(open close rename chmod unlink);
6 use strict;
7 use warnings;
8
9 open DESC, 'regcomp.sym';
10
11 my $ind = 0;
12 my (@name,@rest,@type,@code,@args,@longj);
13 my ($desc,$lastregop);
14 while (<DESC>) {
15     s/#.*$//;
16     next if /^\s*$/;
17     s/\s*\z//;
18     if (/^-+\s*$/) {
19         $lastregop= $ind;
20         next;
21     }
22     unless ($lastregop) {
23         $ind++;
24         ($name[$ind], $desc, $rest[$ind]) = split /\t+/, $_, 3;  
25         ($type[$ind], $code[$ind], $args[$ind], $longj[$ind]) 
26           = split /[,\s]\s*/, $desc, 4;
27     } else {
28         my ($type,@lists)=split /\s*\t+\s*/, $_;
29         die "No list? $type" if !@lists;
30         foreach my $list (@lists) {
31             my ($names,$special)=split /:/, $list , 2;
32             $special ||= "";
33             foreach my $name (split /,/,$names) {
34                 my $real= $name eq 'resume' 
35                         ? "resume_$type" 
36                         : "${type}_$name";
37                 my @suffix;
38                 if (!$special) {
39                    @suffix=("");
40                 } elsif ($special=~/\d/) {
41                     @suffix=(1..$special);
42                 } elsif ($special eq 'FAIL') {
43                     @suffix=("","_fail");
44                 } else {
45                     die "unknown :type ':$special'";
46                 }
47                 foreach my $suffix (@suffix) {
48                     $ind++;
49                     $name[$ind]="$real$suffix";
50                     $type[$ind]=$type;
51                     $rest[$ind]="state for $type";
52                 }
53             }
54         }
55         
56     }
57 }
58 # use fixed width to keep the diffs between regcomp.pl recompiles
59 # as small as possible.
60 my ($width,$rwidth,$twidth)=(22,12,9);
61 $lastregop ||= $ind;
62 my $tot = $ind;
63 close DESC;
64 die "Too many regexp/state opcodes! Maximum is 256, but there are $lastregop in file!"
65     if $lastregop>256;
66
67 my $tmp_h = 'tmp_reg.h';
68
69 unlink $tmp_h if -f $tmp_h;
70
71 my $out = safer_open($tmp_h);
72
73 printf $out <<EOP,
74 /* -*- buffer-read-only: t -*-
75    !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!!
76    This file is built by regcomp.pl from regcomp.sym.
77    Any changes made here will be lost!
78 */
79
80 /* Regops and State definitions */
81
82 #define %*s\t%d
83 #define %*s\t%d
84
85 EOP
86     -$width, REGNODE_MAX        => $lastregop - 1,
87     -$width, REGMATCH_STATE_MAX => $tot - 1
88 ;
89
90
91 for ($ind=1; $ind <= $lastregop ; $ind++) {
92   my $oind = $ind - 1;
93   printf $out "#define\t%*s\t%d\t/* %#04x %s */\n",
94     -$width, $name[$ind], $ind-1, $ind-1, $rest[$ind];
95 }
96 print $out "\t/* ------------ States ------------- */\n";
97 for ( ; $ind <= $tot ; $ind++) {
98   printf $out "#define\t%*s\t(REGNODE_MAX + %d)\t/* %s */\n",
99     -$width, $name[$ind], $ind - $lastregop, $rest[$ind];
100 }
101
102 print $out <<EOP;
103
104 /* PL_regkind[] What type of regop or state is this. */
105
106 #ifndef DOINIT
107 EXTCONST U8 PL_regkind[];
108 #else
109 EXTCONST U8 PL_regkind[] = {
110 EOP
111
112 $ind = 0;
113 while (++$ind <= $tot) {
114   printf $out "\t%*s\t/* %*s */\n",
115              -1-$twidth, "$type[$ind],", -$width, $name[$ind];
116   print $out "\t/* ------------ States ------------- */\n"
117     if $ind == $lastregop and $lastregop != $tot;
118 }
119
120 print $out <<EOP;
121 };
122 #endif
123
124 /* regarglen[] - How large is the argument part of the node (in regnodes) */
125
126 #ifdef REG_COMP_C
127 static const U8 regarglen[] = {
128 EOP
129
130 $ind = 0;
131 while (++$ind <= $lastregop) {
132   my $size = 0;
133   $size = "EXTRA_SIZE(struct regnode_$args[$ind])" if $args[$ind];
134   
135   printf $out "\t%*s\t/* %*s */\n",
136         -37, "$size,",-$rwidth,$name[$ind];
137 }
138
139 print $out <<EOP;
140 };
141
142 /* reg_off_by_arg[] - Which argument holds the offset to the next node */
143
144 static const char reg_off_by_arg[] = {
145 EOP
146
147 $ind = 0;
148 while (++$ind <= $lastregop) {
149   my $size = $longj[$ind] || 0;
150
151   printf $out "\t%d,\t/* %*s */\n",
152         $size, -$rwidth, $name[$ind]
153 }
154
155 print $out <<EOP;
156 };
157
158 #endif /* REG_COMP_C */
159
160 /* reg_name[] - Opcode/state names in string form, for debugging */
161
162 #ifndef DOINIT
163 EXTCONST char * PL_reg_name[];
164 #else
165 EXTCONST char * const PL_reg_name[] = {
166 EOP
167
168 $ind = 0;
169 my $ofs = 1;
170 my $sym = "";
171 while (++$ind <= $tot) {
172   my $size = $longj[$ind] || 0;
173
174   printf $out "\t%*s\t/* $sym%#04x */\n",
175         -3-$width,qq("$name[$ind]",), $ind - $ofs;
176   if ($ind == $lastregop and $lastregop != $tot) {
177     print $out "\t/* ------------ States ------------- */\n";
178     $ofs = $lastregop;
179     $sym = 'REGNODE_MAX +';
180   }
181     
182 }
183
184 print $out <<EOP;
185 };
186 #endif /* DOINIT */
187
188 /* PL_reg_extflags_name[] - Opcode/state names in string form, for debugging */
189
190 #ifndef DOINIT
191 EXTCONST char * PL_reg_extflags_name[];
192 #else
193 EXTCONST char * const PL_reg_extflags_name[] = {
194 EOP
195
196 open my $fh,"<","regexp.h" or die "Can't read regexp.h: $!";
197 my %rxfv;
198 my $val = 0;
199 my %reverse;
200 while (<$fh>) {
201     if (/#define\s+(RXf_\w+)\s+(0x[A-F\d]+)/i) {
202         my $newval = eval $2;
203         if($val & $newval) {
204             die sprintf "Both $1 and $reverse{$newval} use %08X", $newval;
205         }
206         $val|=$newval;
207         $rxfv{$1}= $newval;
208         $reverse{$newval} = $1;
209     }
210 }    
211 my %vrxf=reverse %rxfv;
212 printf $out "\t/* Bits in extflags defined: %032b */\n",$val;
213 for (0..31) {
214     my $n=$vrxf{2**$_}||"UNUSED_BIT_$_";
215     $n=~s/^RXf_(PMf_)?//;
216     printf $out qq(\t%-20s/* 0x%08x */\n), 
217         qq("$n",),2**$_;
218 }  
219  
220 print $out <<EOP;
221 };
222 #endif /* DOINIT */
223
224 /* ex: set ro: */
225 EOP
226 safer_close($out);
227
228 rename_if_different $tmp_h, 'regnodes.h';