This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[perl #79914] documentation bug in perldoc perlvar $|
[perl5.git] / regnodes.h
CommitLineData
37442d52
RGS
1/* -*- buffer-read-only: t -*-
2 !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
eb2624c9 3 This file is built by regen/regcomp.pl from regcomp.sym.
d09b2d29
IZ
4 Any changes made here will be lost!
5*/
6
6bda09f9
YO
7/* Regops and State definitions */
8
35f7ba49
KW
9#define REGNODE_MAX 91
10#define REGMATCH_STATE_MAX 131
03363afd 11
f9f4320a
YO
12#define END 0 /* 0000 End of program. */
13#define SUCCEED 1 /* 0x01 Return from a subroutine, basically. */
14#define BOL 2 /* 0x02 Match "" at beginning of line. */
15#define MBOL 3 /* 0x03 Same, assuming multiline. */
16#define SBOL 4 /* 0x04 Same, assuming singleline. */
17#define EOS 5 /* 0x05 Match "" at end of string. */
18#define EOL 6 /* 0x06 Match "" at end of line. */
19#define MEOL 7 /* 0x07 Same, assuming multiline. */
20#define SEOL 8 /* 0x08 Same, assuming singleline. */
21#define BOUND 9 /* 0x09 Match "" at any word boundary */
22#define BOUNDL 10 /* 0x0a Match "" at any word boundary */
23#define NBOUND 11 /* 0x0b Match "" at any word non-boundary */
24#define NBOUNDL 12 /* 0x0c Match "" at any word non-boundary */
25#define GPOS 13 /* 0x0d Matches where last m//g left off. */
26#define REG_ANY 14 /* 0x0e Match any one character (except newline). */
27#define SANY 15 /* 0x0f Match any one character. */
28#define CANY 16 /* 0x10 Match any one byte. */
617b7ae7 29#define ANYOF 17 /* 0x11 Match character in (or not in) this class, folding is native charset for non-utf8. */
f9f4320a
YO
30#define ALNUM 18 /* 0x12 Match any alphanumeric character */
31#define ALNUML 19 /* 0x13 Match any alphanumeric char in locale */
32#define NALNUM 20 /* 0x14 Match any non-alphanumeric character */
33#define NALNUML 21 /* 0x15 Match any non-alphanumeric char in locale */
34#define SPACE 22 /* 0x16 Match any whitespace character */
35#define SPACEL 23 /* 0x17 Match any whitespace char in locale */
36#define NSPACE 24 /* 0x18 Match any non-whitespace character */
37#define NSPACEL 25 /* 0x19 Match any non-whitespace char in locale */
38#define DIGIT 26 /* 0x1a Match any numeric character */
39#define DIGITL 27 /* 0x1b Match any numeric character in locale */
40#define NDIGIT 28 /* 0x1c Match any non-numeric character */
41#define NDIGITL 29 /* 0x1d Match any non-numeric character in locale */
2448cf39 42#define CLUMP 30 /* 0x1e Match any extended grapheme cluster sequence */
f9f4320a
YO
43#define BRANCH 31 /* 0x1f Match this alternative, or the next... */
44#define BACK 32 /* 0x20 Match "", "next" ptr points backward. */
45#define EXACT 33 /* 0x21 Match this string (preceded by length). */
2448cf39 46#define EXACTF 34 /* 0x22 Match this string, folded, native charset semantics for non-utf8 (prec. by length). */
f9f4320a
YO
47#define EXACTFL 35 /* 0x23 Match this string, folded in locale (w/len). */
48#define NOTHING 36 /* 0x24 Match empty string. */
49#define TAIL 37 /* 0x25 Match empty string. Can jump here from outside. */
50#define STAR 38 /* 0x26 Match this (simple) thing 0 or more times. */
51#define PLUS 39 /* 0x27 Match this (simple) thing 1 or more times. */
52#define CURLY 40 /* 0x28 Match this simple thing {n,m} times. */
40d049e4
YO
53#define CURLYN 41 /* 0x29 Capture next-after-this simple thing */
54#define CURLYM 42 /* 0x2a Capture this medium-complex thing {n,m} times. */
f9f4320a
YO
55#define CURLYX 43 /* 0x2b Match this complex thing {n,m} times. */
56#define WHILEM 44 /* 0x2c Do curly processing and see if rest matches. */
57#define OPEN 45 /* 0x2d Mark this point in input as start of */
58#define CLOSE 46 /* 0x2e Analogous to OPEN. */
59#define REF 47 /* 0x2f Match some already matched string */
2448cf39 60#define REFF 48 /* 0x30 Match already matched string, folded using native charset semantics for non-utf8 */
f9f4320a
YO
61#define REFFL 49 /* 0x31 Match already matched string, folded in loc. */
62#define IFMATCH 50 /* 0x32 Succeeds if the following matches. */
63#define UNLESSM 51 /* 0x33 Fails if the following matches. */
64#define SUSPEND 52 /* 0x34 "Independent" sub-RE. */
65#define IFTHEN 53 /* 0x35 Switch, should be preceeded by switcher . */
66#define GROUPP 54 /* 0x36 Whether the group matched. */
67#define LONGJMP 55 /* 0x37 Jump far away. */
68#define BRANCHJ 56 /* 0x38 BRANCH with long offset. */
69#define EVAL 57 /* 0x39 Execute some Perl code. */
70#define MINMOD 58 /* 0x3a Next operator is not greedy. */
71#define LOGICAL 59 /* 0x3b Next opcode should set the flag only. */
72#define RENUM 60 /* 0x3c Group with independently numbered parens. */
73#define TRIE 61 /* 0x3d Match many EXACT(FL?)? at once. flags==type */
74#define TRIEC 62 /* 0x3e Same as TRIE, but with embedded charclass data */
75#define AHOCORASICK 63 /* 0x3f Aho Corasick stclass. flags==type */
76#define AHOCORASICKC 64 /* 0x40 Same as AHOCORASICK, but with embedded charclass data */
1a147d38
YO
77#define GOSUB 65 /* 0x41 recurse to paren arg1 at (signed) ofs arg2 */
78#define GOSTART 66 /* 0x42 recurse to start of pattern */
81714fb9 79#define NREF 67 /* 0x43 Match some already matched string */
2448cf39 80#define NREFF 68 /* 0x44 Match already matched string, folded using native charset semantics for non-utf8 */
81714fb9 81#define NREFFL 69 /* 0x45 Match already matched string, folded in loc. */
0a4db386 82#define NGROUPP 70 /* 0x46 Whether the group matched. */
1a147d38 83#define INSUBP 71 /* 0x47 Whether we are in a specific recurse. */
0a4db386 84#define DEFINEP 72 /* 0x48 Never execute directly. */
e2e6a0f1
YO
85#define ENDLIKE 73 /* 0x49 Used only for the type field of verbs */
86#define OPFAIL 74 /* 0x4a Same as (?!) */
87#define ACCEPT 75 /* 0x4b Accepts the current matched string. */
20832bc5 88#define VERB 76 /* 0x4c Used only for the type field of verbs */
5d458dd8 89#define PRUNE 77 /* 0x4d Pattern fails at this startpoint if no-backtracking through this */
e2e6a0f1 90#define MARKPOINT 78 /* 0x4e Push the current location for rollback by cut. */
5d458dd8 91#define SKIP 79 /* 0x4f On failure skip forward (to the mark) before retrying */
e2e6a0f1 92#define COMMIT 80 /* 0x50 Pattern fails outright if backtracking through this */
5d458dd8 93#define CUTGROUP 81 /* 0x51 On failure go to the next alternation in the group */
ee9b8eae 94#define KEEPS 82 /* 0x52 $& begins here. */
e1d1eefb
YO
95#define LNBREAK 83 /* 0x53 generic newline pattern */
96#define VERTWS 84 /* 0x54 vertical whitespace (Perl 6) */
97#define NVERTWS 85 /* 0x55 not vertical whitespace (Perl 6) */
98#define HORIZWS 86 /* 0x56 horizontal whitespace (Perl 6) */
99#define NHORIZWS 87 /* 0x57 not horizontal whitespace (Perl 6) */
32e6a07c 100#define FOLDCHAR 88 /* 0x58 codepoint with tricky case folding properties. */
35f7ba49
KW
101#define EXACTFU 89 /* 0x59 Match this string, folded, Unicode semantics for non-utf8 (prec. by length). */
102#define OPTIMIZED 90 /* 0x5a Placeholder for dump. */
103#define PSEUDO 91 /* 0x5b Pseudo opcode for internal use. */
03363afd 104 /* ------------ States ------------- */
24b23f37
YO
105#define TRIE_next (REGNODE_MAX + 1) /* state for TRIE */
106#define TRIE_next_fail (REGNODE_MAX + 2) /* state for TRIE */
107#define EVAL_AB (REGNODE_MAX + 3) /* state for EVAL */
108#define EVAL_AB_fail (REGNODE_MAX + 4) /* state for EVAL */
109#define CURLYX_end (REGNODE_MAX + 5) /* state for CURLYX */
110#define CURLYX_end_fail (REGNODE_MAX + 6) /* state for CURLYX */
111#define WHILEM_A_pre (REGNODE_MAX + 7) /* state for WHILEM */
112#define WHILEM_A_pre_fail (REGNODE_MAX + 8) /* state for WHILEM */
113#define WHILEM_A_min (REGNODE_MAX + 9) /* state for WHILEM */
114#define WHILEM_A_min_fail (REGNODE_MAX + 10) /* state for WHILEM */
115#define WHILEM_A_max (REGNODE_MAX + 11) /* state for WHILEM */
116#define WHILEM_A_max_fail (REGNODE_MAX + 12) /* state for WHILEM */
117#define WHILEM_B_min (REGNODE_MAX + 13) /* state for WHILEM */
118#define WHILEM_B_min_fail (REGNODE_MAX + 14) /* state for WHILEM */
119#define WHILEM_B_max (REGNODE_MAX + 15) /* state for WHILEM */
120#define WHILEM_B_max_fail (REGNODE_MAX + 16) /* state for WHILEM */
121#define BRANCH_next (REGNODE_MAX + 17) /* state for BRANCH */
122#define BRANCH_next_fail (REGNODE_MAX + 18) /* state for BRANCH */
123#define CURLYM_A (REGNODE_MAX + 19) /* state for CURLYM */
124#define CURLYM_A_fail (REGNODE_MAX + 20) /* state for CURLYM */
125#define CURLYM_B (REGNODE_MAX + 21) /* state for CURLYM */
126#define CURLYM_B_fail (REGNODE_MAX + 22) /* state for CURLYM */
127#define IFMATCH_A (REGNODE_MAX + 23) /* state for IFMATCH */
128#define IFMATCH_A_fail (REGNODE_MAX + 24) /* state for IFMATCH */
129#define CURLY_B_min_known (REGNODE_MAX + 25) /* state for CURLY */
130#define CURLY_B_min_known_fail (REGNODE_MAX + 26) /* state for CURLY */
131#define CURLY_B_min (REGNODE_MAX + 27) /* state for CURLY */
132#define CURLY_B_min_fail (REGNODE_MAX + 28) /* state for CURLY */
133#define CURLY_B_max (REGNODE_MAX + 29) /* state for CURLY */
134#define CURLY_B_max_fail (REGNODE_MAX + 30) /* state for CURLY */
135#define COMMIT_next (REGNODE_MAX + 31) /* state for COMMIT */
136#define COMMIT_next_fail (REGNODE_MAX + 32) /* state for COMMIT */
e2e6a0f1
YO
137#define MARKPOINT_next (REGNODE_MAX + 33) /* state for MARKPOINT */
138#define MARKPOINT_next_fail (REGNODE_MAX + 34) /* state for MARKPOINT */
5d458dd8
YO
139#define SKIP_next (REGNODE_MAX + 35) /* state for SKIP */
140#define SKIP_next_fail (REGNODE_MAX + 36) /* state for SKIP */
141#define CUTGROUP_next (REGNODE_MAX + 37) /* state for CUTGROUP */
142#define CUTGROUP_next_fail (REGNODE_MAX + 38) /* state for CUTGROUP */
ee9b8eae
YO
143#define KEEPS_next (REGNODE_MAX + 39) /* state for KEEPS */
144#define KEEPS_next_fail (REGNODE_MAX + 40) /* state for KEEPS */
03363afd 145
6bda09f9 146/* PL_regkind[] What type of regop or state is this. */
d09b2d29
IZ
147
148#ifndef DOINIT
22c35a8c 149EXTCONST U8 PL_regkind[];
d09b2d29 150#else
22c35a8c 151EXTCONST U8 PL_regkind[] = {
e2e6a0f1
YO
152 END, /* END */
153 END, /* SUCCEED */
154 BOL, /* BOL */
155 BOL, /* MBOL */
156 BOL, /* SBOL */
157 EOL, /* EOS */
158 EOL, /* EOL */
159 EOL, /* MEOL */
160 EOL, /* SEOL */
161 BOUND, /* BOUND */
162 BOUND, /* BOUNDL */
163 NBOUND, /* NBOUND */
164 NBOUND, /* NBOUNDL */
165 GPOS, /* GPOS */
166 REG_ANY, /* REG_ANY */
167 REG_ANY, /* SANY */
168 REG_ANY, /* CANY */
169 ANYOF, /* ANYOF */
170 ALNUM, /* ALNUM */
171 ALNUM, /* ALNUML */
172 NALNUM, /* NALNUM */
173 NALNUM, /* NALNUML */
174 SPACE, /* SPACE */
175 SPACE, /* SPACEL */
176 NSPACE, /* NSPACE */
177 NSPACE, /* NSPACEL */
178 DIGIT, /* DIGIT */
179 DIGIT, /* DIGITL */
180 NDIGIT, /* NDIGIT */
181 NDIGIT, /* NDIGITL */
182 CLUMP, /* CLUMP */
183 BRANCH, /* BRANCH */
184 BACK, /* BACK */
185 EXACT, /* EXACT */
186 EXACT, /* EXACTF */
187 EXACT, /* EXACTFL */
188 NOTHING, /* NOTHING */
189 NOTHING, /* TAIL */
190 STAR, /* STAR */
191 PLUS, /* PLUS */
192 CURLY, /* CURLY */
193 CURLY, /* CURLYN */
194 CURLY, /* CURLYM */
195 CURLY, /* CURLYX */
196 WHILEM, /* WHILEM */
197 OPEN, /* OPEN */
198 CLOSE, /* CLOSE */
199 REF, /* REF */
200 REF, /* REFF */
201 REF, /* REFFL */
202 BRANCHJ, /* IFMATCH */
203 BRANCHJ, /* UNLESSM */
204 BRANCHJ, /* SUSPEND */
205 BRANCHJ, /* IFTHEN */
206 GROUPP, /* GROUPP */
207 LONGJMP, /* LONGJMP */
208 BRANCHJ, /* BRANCHJ */
209 EVAL, /* EVAL */
210 MINMOD, /* MINMOD */
211 LOGICAL, /* LOGICAL */
212 BRANCHJ, /* RENUM */
213 TRIE, /* TRIE */
214 TRIE, /* TRIEC */
215 TRIE, /* AHOCORASICK */
216 TRIE, /* AHOCORASICKC */
217 GOSUB, /* GOSUB */
218 GOSTART, /* GOSTART */
ee9b8eae
YO
219 REF, /* NREF */
220 REF, /* NREFF */
221 REF, /* NREFFL */
e2e6a0f1
YO
222 NGROUPP, /* NGROUPP */
223 INSUBP, /* INSUBP */
224 DEFINEP, /* DEFINEP */
225 ENDLIKE, /* ENDLIKE */
226 ENDLIKE, /* OPFAIL */
227 ENDLIKE, /* ACCEPT */
228 VERB, /* VERB */
5d458dd8 229 VERB, /* PRUNE */
e2e6a0f1 230 VERB, /* MARKPOINT */
5d458dd8 231 VERB, /* SKIP */
e2e6a0f1 232 VERB, /* COMMIT */
5d458dd8 233 VERB, /* CUTGROUP */
ee9b8eae 234 KEEPS, /* KEEPS */
e1d1eefb
YO
235 LNBREAK, /* LNBREAK */
236 VERTWS, /* VERTWS */
237 NVERTWS, /* NVERTWS */
238 HORIZWS, /* HORIZWS */
239 NHORIZWS, /* NHORIZWS */
32e6a07c 240 FOLDCHAR, /* FOLDCHAR */
35f7ba49 241 EXACT, /* EXACTFU */
e2e6a0f1
YO
242 NOTHING, /* OPTIMIZED */
243 PSEUDO, /* PSEUDO */
03363afd 244 /* ------------ States ------------- */
e2e6a0f1
YO
245 TRIE, /* TRIE_next */
246 TRIE, /* TRIE_next_fail */
247 EVAL, /* EVAL_AB */
248 EVAL, /* EVAL_AB_fail */
249 CURLYX, /* CURLYX_end */
250 CURLYX, /* CURLYX_end_fail */
251 WHILEM, /* WHILEM_A_pre */
252 WHILEM, /* WHILEM_A_pre_fail */
253 WHILEM, /* WHILEM_A_min */
254 WHILEM, /* WHILEM_A_min_fail */
255 WHILEM, /* WHILEM_A_max */
256 WHILEM, /* WHILEM_A_max_fail */
257 WHILEM, /* WHILEM_B_min */
258 WHILEM, /* WHILEM_B_min_fail */
259 WHILEM, /* WHILEM_B_max */
260 WHILEM, /* WHILEM_B_max_fail */
261 BRANCH, /* BRANCH_next */
262 BRANCH, /* BRANCH_next_fail */
263 CURLYM, /* CURLYM_A */
264 CURLYM, /* CURLYM_A_fail */
265 CURLYM, /* CURLYM_B */
266 CURLYM, /* CURLYM_B_fail */
267 IFMATCH, /* IFMATCH_A */
268 IFMATCH, /* IFMATCH_A_fail */
269 CURLY, /* CURLY_B_min_known */
270 CURLY, /* CURLY_B_min_known_fail */
271 CURLY, /* CURLY_B_min */
272 CURLY, /* CURLY_B_min_fail */
273 CURLY, /* CURLY_B_max */
274 CURLY, /* CURLY_B_max_fail */
275 COMMIT, /* COMMIT_next */
276 COMMIT, /* COMMIT_next_fail */
277 MARKPOINT, /* MARKPOINT_next */
278 MARKPOINT, /* MARKPOINT_next_fail */
5d458dd8
YO
279 SKIP, /* SKIP_next */
280 SKIP, /* SKIP_next_fail */
281 CUTGROUP, /* CUTGROUP_next */
282 CUTGROUP, /* CUTGROUP_next_fail */
ee9b8eae
YO
283 KEEPS, /* KEEPS_next */
284 KEEPS, /* KEEPS_next_fail */
d09b2d29
IZ
285};
286#endif
287
6bda09f9 288/* regarglen[] - How large is the argument part of the node (in regnodes) */
d09b2d29
IZ
289
290#ifdef REG_COMP_C
29de9391 291static const U8 regarglen[] = {
03363afd
YO
292 0, /* END */
293 0, /* SUCCEED */
294 0, /* BOL */
295 0, /* MBOL */
296 0, /* SBOL */
297 0, /* EOS */
298 0, /* EOL */
299 0, /* MEOL */
300 0, /* SEOL */
301 0, /* BOUND */
302 0, /* BOUNDL */
303 0, /* NBOUND */
304 0, /* NBOUNDL */
305 0, /* GPOS */
306 0, /* REG_ANY */
307 0, /* SANY */
308 0, /* CANY */
309 0, /* ANYOF */
310 0, /* ALNUM */
311 0, /* ALNUML */
312 0, /* NALNUM */
313 0, /* NALNUML */
314 0, /* SPACE */
315 0, /* SPACEL */
316 0, /* NSPACE */
317 0, /* NSPACEL */
318 0, /* DIGIT */
319 0, /* DIGITL */
320 0, /* NDIGIT */
321 0, /* NDIGITL */
322 0, /* CLUMP */
323 0, /* BRANCH */
324 0, /* BACK */
325 0, /* EXACT */
326 0, /* EXACTF */
327 0, /* EXACTFL */
328 0, /* NOTHING */
329 0, /* TAIL */
330 0, /* STAR */
331 0, /* PLUS */
332 EXTRA_SIZE(struct regnode_2), /* CURLY */
333 EXTRA_SIZE(struct regnode_2), /* CURLYN */
334 EXTRA_SIZE(struct regnode_2), /* CURLYM */
335 EXTRA_SIZE(struct regnode_2), /* CURLYX */
336 0, /* WHILEM */
337 EXTRA_SIZE(struct regnode_1), /* OPEN */
338 EXTRA_SIZE(struct regnode_1), /* CLOSE */
339 EXTRA_SIZE(struct regnode_1), /* REF */
340 EXTRA_SIZE(struct regnode_1), /* REFF */
341 EXTRA_SIZE(struct regnode_1), /* REFFL */
342 EXTRA_SIZE(struct regnode_1), /* IFMATCH */
343 EXTRA_SIZE(struct regnode_1), /* UNLESSM */
344 EXTRA_SIZE(struct regnode_1), /* SUSPEND */
345 EXTRA_SIZE(struct regnode_1), /* IFTHEN */
346 EXTRA_SIZE(struct regnode_1), /* GROUPP */
347 EXTRA_SIZE(struct regnode_1), /* LONGJMP */
348 EXTRA_SIZE(struct regnode_1), /* BRANCHJ */
349 EXTRA_SIZE(struct regnode_1), /* EVAL */
350 0, /* MINMOD */
351 0, /* LOGICAL */
352 EXTRA_SIZE(struct regnode_1), /* RENUM */
353 EXTRA_SIZE(struct regnode_1), /* TRIE */
354 EXTRA_SIZE(struct regnode_charclass), /* TRIEC */
355 EXTRA_SIZE(struct regnode_1), /* AHOCORASICK */
356 EXTRA_SIZE(struct regnode_charclass), /* AHOCORASICKC */
1a147d38
YO
357 EXTRA_SIZE(struct regnode_2L), /* GOSUB */
358 0, /* GOSTART */
81714fb9
YO
359 EXTRA_SIZE(struct regnode_1), /* NREF */
360 EXTRA_SIZE(struct regnode_1), /* NREFF */
361 EXTRA_SIZE(struct regnode_1), /* NREFFL */
0a4db386 362 EXTRA_SIZE(struct regnode_1), /* NGROUPP */
1a147d38 363 EXTRA_SIZE(struct regnode_1), /* INSUBP */
0a4db386 364 EXTRA_SIZE(struct regnode_1), /* DEFINEP */
e2e6a0f1 365 0, /* ENDLIKE */
7f69552c 366 0, /* OPFAIL */
e2e6a0f1 367 EXTRA_SIZE(struct regnode_1), /* ACCEPT */
20832bc5 368 EXTRA_SIZE(struct regnode_1), /* VERB */
5d458dd8 369 EXTRA_SIZE(struct regnode_1), /* PRUNE */
e2e6a0f1 370 EXTRA_SIZE(struct regnode_1), /* MARKPOINT */
5d458dd8 371 EXTRA_SIZE(struct regnode_1), /* SKIP */
e2e6a0f1 372 EXTRA_SIZE(struct regnode_1), /* COMMIT */
5d458dd8 373 EXTRA_SIZE(struct regnode_1), /* CUTGROUP */
ee9b8eae 374 0, /* KEEPS */
e1d1eefb
YO
375 0, /* LNBREAK */
376 0, /* VERTWS */
377 0, /* NVERTWS */
378 0, /* HORIZWS */
379 0, /* NHORIZWS */
32e6a07c 380 EXTRA_SIZE(struct regnode_1), /* FOLDCHAR */
35f7ba49 381 0, /* EXACTFU */
03363afd
YO
382 0, /* OPTIMIZED */
383 0, /* PSEUDO */
d09b2d29
IZ
384};
385
6bda09f9
YO
386/* reg_off_by_arg[] - Which argument holds the offset to the next node */
387
29de9391 388static const char reg_off_by_arg[] = {
03363afd
YO
389 0, /* END */
390 0, /* SUCCEED */
391 0, /* BOL */
392 0, /* MBOL */
393 0, /* SBOL */
394 0, /* EOS */
395 0, /* EOL */
396 0, /* MEOL */
397 0, /* SEOL */
398 0, /* BOUND */
399 0, /* BOUNDL */
400 0, /* NBOUND */
401 0, /* NBOUNDL */
402 0, /* GPOS */
403 0, /* REG_ANY */
404 0, /* SANY */
405 0, /* CANY */
406 0, /* ANYOF */
407 0, /* ALNUM */
408 0, /* ALNUML */
409 0, /* NALNUM */
410 0, /* NALNUML */
411 0, /* SPACE */
412 0, /* SPACEL */
413 0, /* NSPACE */
414 0, /* NSPACEL */
415 0, /* DIGIT */
416 0, /* DIGITL */
417 0, /* NDIGIT */
418 0, /* NDIGITL */
419 0, /* CLUMP */
420 0, /* BRANCH */
421 0, /* BACK */
422 0, /* EXACT */
423 0, /* EXACTF */
424 0, /* EXACTFL */
425 0, /* NOTHING */
426 0, /* TAIL */
427 0, /* STAR */
428 0, /* PLUS */
429 0, /* CURLY */
430 0, /* CURLYN */
431 0, /* CURLYM */
432 0, /* CURLYX */
433 0, /* WHILEM */
434 0, /* OPEN */
435 0, /* CLOSE */
436 0, /* REF */
437 0, /* REFF */
438 0, /* REFFL */
439 2, /* IFMATCH */
440 2, /* UNLESSM */
441 1, /* SUSPEND */
442 1, /* IFTHEN */
443 0, /* GROUPP */
444 1, /* LONGJMP */
445 1, /* BRANCHJ */
446 0, /* EVAL */
447 0, /* MINMOD */
448 0, /* LOGICAL */
449 1, /* RENUM */
450 0, /* TRIE */
451 0, /* TRIEC */
452 0, /* AHOCORASICK */
453 0, /* AHOCORASICKC */
1a147d38
YO
454 0, /* GOSUB */
455 0, /* GOSTART */
81714fb9
YO
456 0, /* NREF */
457 0, /* NREFF */
458 0, /* NREFFL */
0a4db386 459 0, /* NGROUPP */
1a147d38 460 0, /* INSUBP */
0a4db386 461 0, /* DEFINEP */
e2e6a0f1 462 0, /* ENDLIKE */
7f69552c 463 0, /* OPFAIL */
e2e6a0f1
YO
464 0, /* ACCEPT */
465 0, /* VERB */
5d458dd8 466 0, /* PRUNE */
e2e6a0f1 467 0, /* MARKPOINT */
5d458dd8 468 0, /* SKIP */
e2e6a0f1 469 0, /* COMMIT */
5d458dd8 470 0, /* CUTGROUP */
ee9b8eae 471 0, /* KEEPS */
e1d1eefb
YO
472 0, /* LNBREAK */
473 0, /* VERTWS */
474 0, /* NVERTWS */
475 0, /* HORIZWS */
476 0, /* NHORIZWS */
32e6a07c 477 0, /* FOLDCHAR */
35f7ba49 478 0, /* EXACTFU */
03363afd
YO
479 0, /* OPTIMIZED */
480 0, /* PSEUDO */
d09b2d29 481};
885f9e59 482
13d6edb4
NC
483#endif /* REG_COMP_C */
484
6bda09f9
YO
485/* reg_name[] - Opcode/state names in string form, for debugging */
486
22429478 487#ifndef DOINIT
13d6edb4 488EXTCONST char * PL_reg_name[];
22429478 489#else
4764e399 490EXTCONST char * const PL_reg_name[] = {
03363afd
YO
491 "END", /* 0000 */
492 "SUCCEED", /* 0x01 */
493 "BOL", /* 0x02 */
494 "MBOL", /* 0x03 */
495 "SBOL", /* 0x04 */
496 "EOS", /* 0x05 */
497 "EOL", /* 0x06 */
498 "MEOL", /* 0x07 */
499 "SEOL", /* 0x08 */
500 "BOUND", /* 0x09 */
501 "BOUNDL", /* 0x0a */
502 "NBOUND", /* 0x0b */
503 "NBOUNDL", /* 0x0c */
504 "GPOS", /* 0x0d */
505 "REG_ANY", /* 0x0e */
506 "SANY", /* 0x0f */
507 "CANY", /* 0x10 */
508 "ANYOF", /* 0x11 */
509 "ALNUM", /* 0x12 */
510 "ALNUML", /* 0x13 */
511 "NALNUM", /* 0x14 */
512 "NALNUML", /* 0x15 */
513 "SPACE", /* 0x16 */
514 "SPACEL", /* 0x17 */
515 "NSPACE", /* 0x18 */
516 "NSPACEL", /* 0x19 */
517 "DIGIT", /* 0x1a */
518 "DIGITL", /* 0x1b */
519 "NDIGIT", /* 0x1c */
520 "NDIGITL", /* 0x1d */
521 "CLUMP", /* 0x1e */
522 "BRANCH", /* 0x1f */
523 "BACK", /* 0x20 */
524 "EXACT", /* 0x21 */
525 "EXACTF", /* 0x22 */
526 "EXACTFL", /* 0x23 */
527 "NOTHING", /* 0x24 */
528 "TAIL", /* 0x25 */
529 "STAR", /* 0x26 */
530 "PLUS", /* 0x27 */
531 "CURLY", /* 0x28 */
532 "CURLYN", /* 0x29 */
533 "CURLYM", /* 0x2a */
534 "CURLYX", /* 0x2b */
535 "WHILEM", /* 0x2c */
536 "OPEN", /* 0x2d */
537 "CLOSE", /* 0x2e */
538 "REF", /* 0x2f */
539 "REFF", /* 0x30 */
540 "REFFL", /* 0x31 */
541 "IFMATCH", /* 0x32 */
542 "UNLESSM", /* 0x33 */
543 "SUSPEND", /* 0x34 */
544 "IFTHEN", /* 0x35 */
545 "GROUPP", /* 0x36 */
546 "LONGJMP", /* 0x37 */
547 "BRANCHJ", /* 0x38 */
548 "EVAL", /* 0x39 */
549 "MINMOD", /* 0x3a */
550 "LOGICAL", /* 0x3b */
551 "RENUM", /* 0x3c */
552 "TRIE", /* 0x3d */
553 "TRIEC", /* 0x3e */
554 "AHOCORASICK", /* 0x3f */
555 "AHOCORASICKC", /* 0x40 */
1a147d38
YO
556 "GOSUB", /* 0x41 */
557 "GOSTART", /* 0x42 */
81714fb9
YO
558 "NREF", /* 0x43 */
559 "NREFF", /* 0x44 */
560 "NREFFL", /* 0x45 */
0a4db386 561 "NGROUPP", /* 0x46 */
1a147d38 562 "INSUBP", /* 0x47 */
0a4db386 563 "DEFINEP", /* 0x48 */
e2e6a0f1
YO
564 "ENDLIKE", /* 0x49 */
565 "OPFAIL", /* 0x4a */
566 "ACCEPT", /* 0x4b */
567 "VERB", /* 0x4c */
5d458dd8 568 "PRUNE", /* 0x4d */
e2e6a0f1 569 "MARKPOINT", /* 0x4e */
5d458dd8 570 "SKIP", /* 0x4f */
e2e6a0f1 571 "COMMIT", /* 0x50 */
5d458dd8 572 "CUTGROUP", /* 0x51 */
ee9b8eae 573 "KEEPS", /* 0x52 */
e1d1eefb
YO
574 "LNBREAK", /* 0x53 */
575 "VERTWS", /* 0x54 */
576 "NVERTWS", /* 0x55 */
577 "HORIZWS", /* 0x56 */
578 "NHORIZWS", /* 0x57 */
32e6a07c 579 "FOLDCHAR", /* 0x58 */
35f7ba49
KW
580 "EXACTFU", /* 0x59 */
581 "OPTIMIZED", /* 0x5a */
582 "PSEUDO", /* 0x5b */
03363afd 583 /* ------------ States ------------- */
24b23f37
YO
584 "TRIE_next", /* REGNODE_MAX +0x01 */
585 "TRIE_next_fail", /* REGNODE_MAX +0x02 */
586 "EVAL_AB", /* REGNODE_MAX +0x03 */
587 "EVAL_AB_fail", /* REGNODE_MAX +0x04 */
588 "CURLYX_end", /* REGNODE_MAX +0x05 */
589 "CURLYX_end_fail", /* REGNODE_MAX +0x06 */
590 "WHILEM_A_pre", /* REGNODE_MAX +0x07 */
591 "WHILEM_A_pre_fail", /* REGNODE_MAX +0x08 */
592 "WHILEM_A_min", /* REGNODE_MAX +0x09 */
593 "WHILEM_A_min_fail", /* REGNODE_MAX +0x0a */
594 "WHILEM_A_max", /* REGNODE_MAX +0x0b */
595 "WHILEM_A_max_fail", /* REGNODE_MAX +0x0c */
596 "WHILEM_B_min", /* REGNODE_MAX +0x0d */
597 "WHILEM_B_min_fail", /* REGNODE_MAX +0x0e */
598 "WHILEM_B_max", /* REGNODE_MAX +0x0f */
599 "WHILEM_B_max_fail", /* REGNODE_MAX +0x10 */
600 "BRANCH_next", /* REGNODE_MAX +0x11 */
601 "BRANCH_next_fail", /* REGNODE_MAX +0x12 */
602 "CURLYM_A", /* REGNODE_MAX +0x13 */
603 "CURLYM_A_fail", /* REGNODE_MAX +0x14 */
604 "CURLYM_B", /* REGNODE_MAX +0x15 */
605 "CURLYM_B_fail", /* REGNODE_MAX +0x16 */
606 "IFMATCH_A", /* REGNODE_MAX +0x17 */
607 "IFMATCH_A_fail", /* REGNODE_MAX +0x18 */
608 "CURLY_B_min_known", /* REGNODE_MAX +0x19 */
609 "CURLY_B_min_known_fail", /* REGNODE_MAX +0x1a */
610 "CURLY_B_min", /* REGNODE_MAX +0x1b */
611 "CURLY_B_min_fail", /* REGNODE_MAX +0x1c */
612 "CURLY_B_max", /* REGNODE_MAX +0x1d */
613 "CURLY_B_max_fail", /* REGNODE_MAX +0x1e */
614 "COMMIT_next", /* REGNODE_MAX +0x1f */
615 "COMMIT_next_fail", /* REGNODE_MAX +0x20 */
e2e6a0f1
YO
616 "MARKPOINT_next", /* REGNODE_MAX +0x21 */
617 "MARKPOINT_next_fail", /* REGNODE_MAX +0x22 */
5d458dd8
YO
618 "SKIP_next", /* REGNODE_MAX +0x23 */
619 "SKIP_next_fail", /* REGNODE_MAX +0x24 */
620 "CUTGROUP_next", /* REGNODE_MAX +0x25 */
621 "CUTGROUP_next_fail", /* REGNODE_MAX +0x26 */
ee9b8eae
YO
622 "KEEPS_next", /* REGNODE_MAX +0x27 */
623 "KEEPS_next_fail", /* REGNODE_MAX +0x28 */
885f9e59 624};
22429478 625#endif /* DOINIT */
d09b2d29 626
f7819f85
A
627/* PL_reg_extflags_name[] - Opcode/state names in string form, for debugging */
628
629#ifndef DOINIT
630EXTCONST char * PL_reg_extflags_name[];
631#else
632EXTCONST char * const PL_reg_extflags_name[] = {
9de15fec 633 /* Bits in extflags defined: 11111111111111111111111001111111 */
52d81aa8
NC
634 "MULTILINE", /* 0x00000001 */
635 "SINGLELINE", /* 0x00000002 */
636 "FOLD", /* 0x00000004 */
637 "EXTENDED", /* 0x00000008 */
638 "KEEPCOPY", /* 0x00000010 */
639 "LOCALE", /* 0x00000020 */
9de15fec 640 "UNICODE", /* 0x00000040 */
f7819f85 641 "UNUSED_BIT_7", /* 0x00000080 */
e795e964
KW
642 "UNUSED_BIT_8", /* 0x00000100 */
643 "ANCH_BOL", /* 0x00000200 */
644 "ANCH_MBOL", /* 0x00000400 */
645 "ANCH_SBOL", /* 0x00000800 */
646 "ANCH_GPOS", /* 0x00001000 */
647 "GPOS_SEEN", /* 0x00002000 */
648 "GPOS_FLOAT", /* 0x00004000 */
649 "LOOKBEHIND_SEEN", /* 0x00008000 */
650 "EVAL_SEEN", /* 0x00010000 */
651 "CANY_SEEN", /* 0x00020000 */
652 "NOSCAN", /* 0x00040000 */
653 "CHECK_ALL", /* 0x00080000 */
52d81aa8
NC
654 "MATCH_UTF8", /* 0x00100000 */
655 "USE_INTUIT_NOML", /* 0x00200000 */
656 "USE_INTUIT_ML", /* 0x00400000 */
657 "INTUIT_TAIL", /* 0x00800000 */
658 "SPLIT", /* 0x01000000 */
659 "COPY_DONE", /* 0x02000000 */
660 "TAINTED_SEEN", /* 0x04000000 */
661 "TAINTED", /* 0x08000000 */
662 "START_ONLY", /* 0x10000000 */
663 "SKIPWHITE", /* 0x20000000 */
664 "WHITE", /* 0x40000000 */
665 "NULL", /* 0x80000000 */
f7819f85
A
666};
667#endif /* DOINIT */
668
f9ef50a7 669/* The following have no fixed length. U8 so we can do strchr() on it. */
ded4dd2a 670#define REGNODE_VARIES(node) (PL_varies_bitmask[(node) >> 3] & (1 << ((node) & 7)))
e52fc539 671
f9ef50a7 672#ifndef DOINIT
ded4dd2a 673EXTCONST U8 PL_varies[] __attribute__deprecated__;
f9ef50a7 674#else
ded4dd2a 675EXTCONST U8 PL_varies[] __attribute__deprecated__ = {
f9ef50a7
NC
676 CLUMP, BRANCH, BACK, STAR, PLUS, CURLY, CURLYN, CURLYM, CURLYX, WHILEM,
677 REF, REFF, REFFL, SUSPEND, IFTHEN, BRANCHJ, NREF, NREFF, NREFFL,
678 0
679};
680#endif /* DOINIT */
681
ded4dd2a
NC
682#ifndef DOINIT
683EXTCONST U8 PL_varies_bitmask[];
684#else
685EXTCONST U8 PL_varies_bitmask[] = {
686 0x00, 0x00, 0x00, 0xC0, 0xC1, 0x9F, 0x33, 0x01, 0x38, 0x00, 0x00, 0x00
687};
688#endif /* DOINIT */
689
f9ef50a7
NC
690/* The following always have a length of 1. U8 we can do strchr() on it. */
691/* (Note that length 1 means "one character" under UTF8, not "one octet".) */
ded4dd2a 692#define REGNODE_SIMPLE(node) (PL_simple_bitmask[(node) >> 3] & (1 << ((node) & 7)))
e52fc539 693
f9ef50a7 694#ifndef DOINIT
ded4dd2a 695EXTCONST U8 PL_simple[] __attribute__deprecated__;
f9ef50a7 696#else
ded4dd2a 697EXTCONST U8 PL_simple[] __attribute__deprecated__ = {
f9ef50a7
NC
698 REG_ANY, SANY, CANY, ANYOF, ALNUM, ALNUML, NALNUM, NALNUML, SPACE,
699 SPACEL, NSPACE, NSPACEL, DIGIT, NDIGIT, VERTWS, NVERTWS, HORIZWS,
700 NHORIZWS,
701 0
702};
703#endif /* DOINIT */
704
ded4dd2a
NC
705#ifndef DOINIT
706EXTCONST U8 PL_simple_bitmask[];
707#else
708EXTCONST U8 PL_simple_bitmask[] = {
709 0x00, 0xC0, 0xFF, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00
710};
711#endif /* DOINIT */
712
37442d52 713/* ex: set ro: */