This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: [perl #27053] /^/m doesn't match after a newline at the end of the string
[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 my ($width,$rwidth,$twidth)=(0,0,0);
59 for (1..@name) {
60     $width=length($name[$_]) if $name[$_] and $width<length($name[$_]);
61     $twidth=length($type[$_]) if $type[$_] and $twidth<length($type[$_]);
62     $rwidth=$width if $_ == $lastregop;
63 }
64 $lastregop ||= $ind;
65 my $tot = $ind;
66 close DESC;
67 die "Too many regexp/state opcodes! Maximum is 256, but there are $lastregop in file!"
68     if $lastregop>256;
69
70 my $tmp_h = 'tmp_reg.h';
71
72 unlink $tmp_h if -f $tmp_h;
73
74 open OUT, ">$tmp_h";
75 #*OUT=\*STDOUT;
76 binmode OUT;
77
78 printf OUT <<EOP,
79 /* -*- buffer-read-only: t -*-
80    !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!!
81    This file is built by regcomp.pl from regcomp.sym.
82    Any changes made here will be lost!
83 */
84
85 /* Regops and State definitions */
86
87 #define %*s\t%d
88 #define %*s\t%d
89
90 EOP
91     -$width, REGNODE_MAX        => $lastregop - 1,
92     -$width, REGMATCH_STATE_MAX => $tot - 1
93 ;
94
95
96 for ($ind=1; $ind <= $lastregop ; $ind++) {
97   my $oind = $ind - 1;
98   printf OUT "#define\t%*s\t%d\t/* %#04x %s */\n",
99     -$width, $name[$ind], $ind-1, $ind-1, $rest[$ind];
100 }
101 print OUT "\t/* ------------ States ------------- */\n";
102 for ( ; $ind <= $tot ; $ind++) {
103   printf OUT "#define\t%*s\t(REGNODE_MAX + %d)\t/* %s */\n",
104     -$width, $name[$ind], $ind - $lastregop, $rest[$ind];
105 }
106
107 print OUT <<EOP;
108
109 /* PL_regkind[] What type of regop or state is this. */
110
111 #ifndef DOINIT
112 EXTCONST U8 PL_regkind[];
113 #else
114 EXTCONST U8 PL_regkind[] = {
115 EOP
116
117 $ind = 0;
118 while (++$ind <= $tot) {
119   printf OUT "\t%*s\t/* %*s */\n",
120              -1-$twidth, "$type[$ind],", -$width, $name[$ind];
121   print OUT "\t/* ------------ States ------------- */\n"
122     if $ind == $lastregop and $lastregop != $tot;
123 }
124
125 print OUT <<EOP;
126 };
127 #endif
128
129 /* regarglen[] - How large is the argument part of the node (in regnodes) */
130
131 #ifdef REG_COMP_C
132 static const U8 regarglen[] = {
133 EOP
134
135 $ind = 0;
136 while (++$ind <= $lastregop) {
137   my $size = 0;
138   $size = "EXTRA_SIZE(struct regnode_$args[$ind])" if $args[$ind];
139   
140   printf OUT "\t%*s\t/* %*s */\n",
141         -37, "$size,",-$rwidth,$name[$ind];
142 }
143
144 print OUT <<EOP;
145 };
146
147 /* reg_off_by_arg[] - Which argument holds the offset to the next node */
148
149 static const char reg_off_by_arg[] = {
150 EOP
151
152 $ind = 0;
153 while (++$ind <= $lastregop) {
154   my $size = $longj[$ind] || 0;
155
156   printf OUT "\t%d,\t/* %*s */\n",
157         $size, -$rwidth, $name[$ind]
158 }
159
160 print OUT <<EOP;
161 };
162
163 /* reg_name[] - Opcode/state names in string form, for debugging */
164
165 #ifdef DEBUGGING
166 const char * reg_name[] = {
167 EOP
168
169 $ind = 0;
170 my $ofs = 1;
171 my $sym = "";
172 while (++$ind <= $tot) {
173   my $size = $longj[$ind] || 0;
174
175   printf OUT "\t%*s\t/* $sym%#04x */\n",
176         -3-$width,qq("$name[$ind]",), $ind - $ofs;
177   if ($ind == $lastregop and $lastregop != $tot) {
178     print OUT "\t/* ------------ States ------------- */\n";
179     $ofs = $lastregop;
180     $sym = 'REGNODE_MAX +';
181   }
182     
183 }
184
185 print OUT <<EOP;
186 };
187 #endif /* DEBUGGING */
188 #else
189 #ifdef DEBUGGING
190 extern const char * reg_name[];
191 #endif
192 #endif /* REG_COMP_C */
193
194 /* ex: set ro: */
195 EOP
196
197 close OUT or die "close $tmp_h: $!";
198
199 safer_rename $tmp_h, 'regnodes.h';