This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
5.26.2 today
[perl5.git] / regexp.h
CommitLineData
a0d0e21e 1/* regexp.h
d6376244 2 *
4bb101f2 3 * Copyright (C) 1993, 1994, 1996, 1997, 1999, 2000, 2001, 2003,
1129b882 4 * 2005, 2006, 2007, 2008 by Larry Wall and others
d6376244
JH
5 *
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
8 *
a0d0e21e
LW
9 */
10
378cc40b
LW
11/*
12 * Definitions etc. for regexp(3) routines.
13 *
14 * Caveat: this is V8 regexp(3) [actually, a reimplementation thereof],
15 * not the System V one.
16 */
be8e71aa 17#ifndef PLUGGABLE_RE_EXTENSION
785a26d5
YO
18/* we don't want to include this stuff if we are inside of
19 an external regex engine based on the core one - like re 'debug'*/
378cc40b 20
79a2a0e8
KW
21#include "utf8.h"
22
c277df42
IZ
23struct regnode {
24 U8 flags;
25 U8 type;
26 U16 next_off;
27};
28
29typedef struct regnode regnode;
30
cad2e5aa 31struct reg_substr_data;
2779dcf1 32
0ee3c8d0
JH
33struct reg_data;
34
f9f4320a 35struct regexp_engine;
28d8d7f4 36struct regexp;
bbe252da 37
785a26d5 38struct reg_substr_datum {
c4828ca0
DM
39 SSize_t min_offset; /* min pos (in chars) that substr must appear */
40 SSize_t max_offset /* max pos (in chars) that substr must appear */;
785a26d5
YO
41 SV *substr; /* non-utf8 variant */
42 SV *utf8_substr; /* utf8 variant */
c4828ca0 43 SSize_t end_shift; /* how many fixed chars must end the string */
785a26d5
YO
44};
45struct reg_substr_data {
6480a6c4 46 U8 check_ix; /* index into data[] of check substr */
785a26d5
YO
47 struct reg_substr_datum data[3]; /* Actual array */
48};
f9f4320a 49
db2c6cb3 50#ifdef PERL_ANY_COW
bbe252da
YO
51#define SV_SAVED_COPY SV *saved_copy; /* If non-NULL, SV which is COW from original */
52#else
53#define SV_SAVED_COPY
ed252734 54#endif
28d8d7f4 55
b3fd53f3
DM
56/* offsets within a string of a particular /(.)/ capture */
57
f0ab9afb 58typedef struct regexp_paren_pair {
99a90e59
FC
59 SSize_t start;
60 SSize_t end;
b3fd53f3
DM
61 /* 'start_tmp' records a new opening position before the matching end
62 * has been found, so that the old start and end values are still
63 * valid, e.g.
64 * "abc" =~ /(.(?{print "[$1]"}))+/
65 *outputs [][a][b]
66 * This field is not part of the API. */
ea3daa5d 67 SSize_t start_tmp;
f0ab9afb 68} regexp_paren_pair;
28d8d7f4 69
52ae8f7e 70#if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_UTF8_C)
164173a2 71#define _invlist_union(a, b, output) _invlist_union_maybe_complement_2nd(a, b, FALSE, output)
52ae8f7e 72#define _invlist_intersection(a, b, output) _invlist_intersection_maybe_complement_2nd(a, b, FALSE, output)
3f80b571
KW
73
74/* Subtracting b from a leaves in a everything that was there that isn't in b,
75 * that is the intersection of a with b's complement */
76#define _invlist_subtract(a, b, output) _invlist_intersection_maybe_complement_2nd(a, b, TRUE, output)
52ae8f7e
KW
77#endif
78
3d2bd50a
DM
79/* record the position of a (?{...}) within a pattern */
80
81struct reg_code_block {
82 STRLEN start;
83 STRLEN end;
84 OP *block;
b30fcab9 85 REGEXP *src_regex;
3d2bd50a
DM
86};
87
1acab4c5
DM
88/* array of reg_code_block's plus header info */
89
90struct reg_code_blocks {
f8def6c7 91 int refcnt; /* we may be pointed to from a regex and from the savestack */
1acab4c5
DM
92 int count; /* how many code blocks */
93 struct reg_code_block *cb; /* array of reg_code_block's */
94};
95
3d2bd50a 96
882227b7
AB
97/*
98 The regexp/REGEXP struct, see L<perlreapi> for further documentation
99 on the individual fields. The struct is ordered so that the most
100 commonly used fields are placed at the start.
101
102 Any patch that adds items to this struct will need to include
103 changes to F<sv.c> (C<Perl_re_dup()>) and F<regcomp.c>
104 (C<pregfree()>). This involves freeing or cloning items in the
105 regexp's data array based on the data item's type.
106*/
107
bbe252da 108typedef struct regexp {
e1168c11
DM
109 _XPV_HEAD;
110 const struct regexp_engine* engine; /* what engine created this regexp? */
111 REGEXP *mother_re; /* what re is this a lightweight copy of? */
112 HV *paren_names; /* Optional hash of paren names */
113
114 /*----------------------------------------------------------------------
115 * Information about the match that the perl core uses to manage things
116 */
117
118 U32 extflags; /* Flags used both externally and internally */
119 SSize_t minlen; /* minimum possible number of chars in string to match */
120 SSize_t minlenret; /* mininum possible number of chars in $& */
121 STRLEN gofs; /* chars left of pos that we search from */
122 /* substring data about strings that must appear in
123 * the final match, used for optimisations */
124 struct reg_substr_data *substrs;
125 U32 nparens; /* number of capture buffers */
126
127 /* private engine specific data */
128
129 U32 intflags; /* Engine Specific Internal flags */
130 void *pprivate; /* Data private to the regex engine which
131 * created this object. */
132
133 /*----------------------------------------------------------------------
134 * Data about the last/current match. These are modified during matching
135 */
136
137 U32 lastparen; /* last open paren matched */
138 U32 lastcloseparen; /* last close paren matched */
139 regexp_paren_pair *offs; /* Array of offsets for (@-) and (@+) */
140 char **recurse_locinput; /* used to detect infinite recursion, XXX: move to internal */
141
142 /*---------------------------------------------------------------------- */
143
144 char *subbeg; /* saved or original string so \digit works forever. */
145 SV_SAVED_COPY /* If non-NULL, SV which is COW from original */
146 SSize_t sublen; /* Length of string pointed by subbeg */
147 SSize_t suboffset; /* byte offset of subbeg from logical start of str */
148 SSize_t subcoffset; /* suboffset equiv, but in chars (for @-/@+) */
149
150 /* Information about the match that isn't often used */
151
152 SSize_t maxlen; /* minimum possible number of chars in string to match */
153
154 /*---------------------------------------------------------------------- */
155
156 /* offset from wrapped to the start of precomp */
157 PERL_BITFIELD32 pre_prefix:4;
158
159 /* original flags used to compile the pattern, may differ from
160 * extflags in various ways */
161 PERL_BITFIELD32 compflags:9;
162
163 /*---------------------------------------------------------------------- */
164
165 CV *qr_anoncv; /* the anon sub wrapped round qr/(?{..})/ */
f8fc2ecf
YO
166} regexp;
167
e1168c11 168
89f6f287 169#define RXp_PAREN_NAMES(rx) ((rx)->paren_names)
5daac39c 170
785a26d5 171/* used for high speed searches */
f9f4320a
YO
172typedef struct re_scream_pos_data_s
173{
174 char **scream_olds; /* match pos */
ea3daa5d 175 SSize_t *scream_pos; /* Internal iterator of scream. */
f9f4320a
YO
176} re_scream_pos_data;
177
785a26d5
YO
178/* regexp_engine structure. This is the dispatch table for regexes.
179 * Any regex engine implementation must be able to build one of these.
180 */
f9f4320a 181typedef struct regexp_engine {
1593ad57 182 REGEXP* (*comp) (pTHX_ SV * const pattern, U32 flags);
49d7dfbc 183 I32 (*exec) (pTHX_ REGEXP * const rx, char* stringarg, char* strend,
ea3daa5d 184 char* strbeg, SSize_t minend, SV* sv,
49d7dfbc 185 void* data, U32 flags);
52a21eb3
DM
186 char* (*intuit) (pTHX_
187 REGEXP * const rx,
188 SV *sv,
189 const char * const strbeg,
190 char *strpos,
191 char *strend,
192 const U32 flags,
9f61653a 193 re_scream_pos_data *data);
49d7dfbc 194 SV* (*checkstr) (pTHX_ REGEXP * const rx);
fc6bde6f 195 void (*rxfree) (pTHX_ REGEXP * const rx);
2fdbfb4d 196 void (*numbered_buff_FETCH) (pTHX_ REGEXP * const rx, const I32 paren,
192b9cd1 197 SV * const sv);
2fdbfb4d
AB
198 void (*numbered_buff_STORE) (pTHX_ REGEXP * const rx, const I32 paren,
199 SV const * const value);
200 I32 (*numbered_buff_LENGTH) (pTHX_ REGEXP * const rx, const SV * const sv,
201 const I32 paren);
192b9cd1
AB
202 SV* (*named_buff) (pTHX_ REGEXP * const rx, SV * const key,
203 SV * const value, const U32 flags);
204 SV* (*named_buff_iter) (pTHX_ REGEXP * const rx, const SV * const lastkey,
205 const U32 flags);
49d7dfbc 206 SV* (*qr_package)(pTHX_ REGEXP * const rx);
f2f78491 207#ifdef USE_ITHREADS
49d7dfbc 208 void* (*dupe) (pTHX_ REGEXP * const rx, CLONE_PARAMS *param);
2fdbfb4d 209#endif
3c13cae6
DM
210 REGEXP* (*op_comp) (pTHX_ SV ** const patternp, int pat_count,
211 OP *expr, const struct regexp_engine* eng,
7984ae89 212 REGEXP *old_re,
76ac488f 213 bool *is_bare_re, U32 orig_rx_flags, U32 pm_flags);
f9f4320a
YO
214} regexp_engine;
215
192b9cd1
AB
216/*
217 These are passed to the numbered capture variable callbacks as the
218 paren name. >= 1 is reserved for actual numbered captures, i.e. $1,
219 $2 etc.
220*/
2c7b5d76
DM
221#define RX_BUFF_IDX_CARET_PREMATCH -5 /* ${^PREMATCH} */
222#define RX_BUFF_IDX_CARET_POSTMATCH -4 /* ${^POSTMATCH} */
223#define RX_BUFF_IDX_CARET_FULLMATCH -3 /* ${^MATCH} */
224#define RX_BUFF_IDX_PREMATCH -2 /* $` */
225#define RX_BUFF_IDX_POSTMATCH -1 /* $' */
226#define RX_BUFF_IDX_FULLMATCH 0 /* $& */
192b9cd1
AB
227
228/*
229 Flags that are passed to the named_buff and named_buff_iter
230 callbacks above. Those routines are called from universal.c via the
231 Tie::Hash::NamedCapture interface for %+ and %- and the re::
232 functions in the same file.
233*/
234
235/* The Tie::Hash::NamedCapture operation this is part of, if any */
f1b875a0
YO
236#define RXapif_FETCH 0x0001
237#define RXapif_STORE 0x0002
238#define RXapif_DELETE 0x0004
239#define RXapif_CLEAR 0x0008
240#define RXapif_EXISTS 0x0010
241#define RXapif_SCALAR 0x0020
242#define RXapif_FIRSTKEY 0x0040
243#define RXapif_NEXTKEY 0x0080
192b9cd1
AB
244
245/* Whether %+ or %- is being operated on */
f1b875a0
YO
246#define RXapif_ONE 0x0100 /* %+ */
247#define RXapif_ALL 0x0200 /* %- */
192b9cd1
AB
248
249/* Whether this is being called from a re:: function */
f1b875a0
YO
250#define RXapif_REGNAME 0x0400
251#define RXapif_REGNAMES 0x0800
7948fc08 252#define RXapif_REGNAMES_COUNT 0x1000
192b9cd1 253
f7e71195
AB
254/*
255=head1 REGEXP Functions
256
257=for apidoc Am|REGEXP *|SvRX|SV *sv
258
72d33970 259Convenience macro to get the REGEXP from a SV. This is approximately
f7e71195
AB
260equivalent to the following snippet:
261
262 if (SvMAGICAL(sv))
263 mg_get(sv);
1af910ea
DL
264 if (SvROK(sv))
265 sv = MUTABLE_SV(SvRV(sv));
266 if (SvTYPE(sv) == SVt_REGEXP)
267 return (REGEXP*) sv;
f7e71195 268
796b6530 269C<NULL> will be returned if a REGEXP* is not found.
f7e71195
AB
270
271=for apidoc Am|bool|SvRXOK|SV* sv
272
1af910ea
DL
273Returns a boolean indicating whether the SV (or the one it references)
274is a REGEXP.
f7e71195
AB
275
276If you want to do something with the REGEXP* later use SvRX instead
277and check for NULL.
278
279=cut
280*/
281
282#define SvRX(sv) (Perl_get_re_arg(aTHX_ sv))
8298454c 283#define SvRXOK(sv) cBOOL(Perl_get_re_arg(aTHX_ sv))
f7e71195
AB
284
285
7948fc08 286/* Flags stored in regexp->extflags
bbe252da 287 * These are used by code external to the regexp engine
e357fc67 288 *
5b126c84
KW
289 * Note that the flags whose names start with RXf_PMf_ are defined in
290 * op_reg_common.h, being copied from the parallel flags of op_pmflags
cb5027f2 291 *
eb2624c9
FC
292 * NOTE: if you modify any RXf flags you should run regen.pl or
293 * regen/regcomp.pl so that regnodes.h is updated with the changes.
cb5027f2 294 *
bbe252da
YO
295 */
296
5b126c84
KW
297#include "op_reg_common.h"
298
77c8f263 299#define RXf_PMf_STD_PMMOD (RXf_PMf_MULTILINE|RXf_PMf_SINGLELINE|RXf_PMf_FOLD|RXf_PMf_EXTENDED|RXf_PMf_EXTENDED_MORE|RXf_PMf_NOCAPTURE)
cde0cee5 300
cc4d09e1
KW
301#define CASE_STD_PMMOD_FLAGS_PARSE_SET(pmfl, x_count) \
302 case IGNORE_PAT_MOD: *(pmfl) |= RXf_PMf_FOLD; break; \
303 case MULTILINE_PAT_MOD: *(pmfl) |= RXf_PMf_MULTILINE; break; \
304 case SINGLE_PAT_MOD: *(pmfl) |= RXf_PMf_SINGLELINE; break; \
77c8f263
KW
305 case XTENDED_PAT_MOD: if (x_count == 0) { \
306 *(pmfl) |= RXf_PMf_EXTENDED; \
307 *(pmfl) &= ~RXf_PMf_EXTENDED_MORE; \
308 } \
309 else { \
310 *(pmfl) |= RXf_PMf_EXTENDED \
311 |RXf_PMf_EXTENDED_MORE; \
312 } \
313 (x_count)++; break; \
41d7c59e 314 case NOCAPTURE_PAT_MOD: *(pmfl) |= RXf_PMf_NOCAPTURE; break;
cc4d09e1 315
94b03d7d 316/* Note, includes charset ones, assumes 0 is the default for them */
fb85c044 317#define STD_PMMOD_FLAGS_CLEAR(pmfl) \
77c8f263 318 *(pmfl) &= ~(RXf_PMf_FOLD|RXf_PMf_MULTILINE|RXf_PMf_SINGLELINE|RXf_PMf_EXTENDED|RXf_PMf_EXTENDED_MORE|RXf_PMf_CHARSET|RXf_PMf_NOCAPTURE)
fb85c044 319
bcdf7404 320/* chars and strings used as regex pattern modifiers
486ec47a 321 * Singular is a 'c'har, plural is a "string"
87e95b7f
YO
322 *
323 * NOTE, KEEPCOPY was originally 'k', but was changed to 'p' for preserve
324 * for compatibility reasons with Regexp::Common which highjacked (?k:...)
325 * for its own uses. So 'k' is out as well.
bcdf7404 326 */
85508812 327#define DEFAULT_PAT_MOD '^' /* Short for all the default modifiers */
bcdf7404 328#define EXEC_PAT_MOD 'e'
87e95b7f 329#define KEEPCOPY_PAT_MOD 'p'
41d7c59e 330#define NOCAPTURE_PAT_MOD 'n'
bcdf7404
YO
331#define ONCE_PAT_MOD 'o'
332#define GLOBAL_PAT_MOD 'g'
333#define CONTINUE_PAT_MOD 'c'
334#define MULTILINE_PAT_MOD 'm'
335#define SINGLE_PAT_MOD 's'
336#define IGNORE_PAT_MOD 'i'
337#define XTENDED_PAT_MOD 'x'
4f4d7508 338#define NONDESTRUCT_PAT_MOD 'r'
9de15fec
KW
339#define LOCALE_PAT_MOD 'l'
340#define UNICODE_PAT_MOD 'u'
50e91148 341#define DEPENDS_PAT_MOD 'd'
cfaf538b 342#define ASCII_RESTRICT_PAT_MOD 'a'
bcdf7404
YO
343
344#define ONCE_PAT_MODS "o"
87e95b7f 345#define KEEPCOPY_PAT_MODS "p"
41d7c59e 346#define NOCAPTURE_PAT_MODS "n"
bcdf7404
YO
347#define EXEC_PAT_MODS "e"
348#define LOOP_PAT_MODS "gc"
4f4d7508 349#define NONDESTRUCT_PAT_MODS "r"
9de15fec
KW
350#define LOCALE_PAT_MODS "l"
351#define UNICODE_PAT_MODS "u"
50e91148 352#define DEPENDS_PAT_MODS "d"
cfaf538b 353#define ASCII_RESTRICT_PAT_MODS "a"
df7a8460 354#define ASCII_MORE_RESTRICT_PAT_MODS "aa"
bcdf7404 355
78fecfc8 356/* This string is expected by regcomp.c to be ordered so that the first
c18d5d15
KW
357 * character is the flag in bit RXf_PMf_STD_PMMOD_SHIFT of extflags; the next
358 * character is bit +1, etc. */
41d7c59e 359#define STD_PAT_MODS "msixxn"
bcdf7404 360
94b03d7d
KW
361#define CHARSET_PAT_MODS ASCII_RESTRICT_PAT_MODS DEPENDS_PAT_MODS LOCALE_PAT_MODS UNICODE_PAT_MODS
362
78fecfc8 363/* This string is expected by XS_re_regexp_pattern() in universal.c to be ordered
c18d5d15
KW
364 * so that the first character is the flag in bit RXf_PMf_STD_PMMOD_SHIFT of
365 * extflags; the next character is in bit +1, etc. */
bcdf7404
YO
366#define INT_PAT_MODS STD_PAT_MODS KEEPCOPY_PAT_MODS
367
41d7c59e 368#define EXT_PAT_MODS ONCE_PAT_MODS KEEPCOPY_PAT_MODS NOCAPTURE_PAT_MODS
94b03d7d 369#define QR_PAT_MODS STD_PAT_MODS EXT_PAT_MODS CHARSET_PAT_MODS
bcdf7404 370#define M_PAT_MODS QR_PAT_MODS LOOP_PAT_MODS
4f4d7508 371#define S_PAT_MODS M_PAT_MODS EXEC_PAT_MODS NONDESTRUCT_PAT_MODS
bcdf7404 372
cb5027f2 373/*
eb2624c9
FC
374 * NOTE: if you modify any RXf flags you should run regen.pl or
375 * regen/regcomp.pl so that regnodes.h is updated with the changes.
cb5027f2
YO
376 *
377 */
bcdf7404 378
dbc200c5 379/*
5012eebe
DM
380 Set in Perl_pmruntime for a split. Will be used by regex engines to
381 check whether they should set RXf_SKIPWHITE
dbc200c5 382*/
32f62247
KW
383#define RXf_SPLIT RXf_PMf_SPLIT
384
0bd51918
KW
385/* Currently the regex flags occupy a single 32-bit word. Not all bits are
386 * currently used. The lower bits are shared with their corresponding PMf flag
387 * bits, up to but not including _RXf_PMf_SHIFT_NEXT. The unused bits
388 * immediately follow; finally the used RXf-only (unshared) bits, so that the
389 * highest bit in the word is used. This gathers all the unused bits as a pool
390 * in the middle, like so: 11111111111111110000001111111111
391 * where the '1's represent used bits, and the '0's unused. This design allows
392 * us to allocate off one end of the pool if we need to add a shared bit, and
393 * off the other end if we need a non-shared bit, without disturbing the other
394 * bits. This maximizes the likelihood of being able to change things without
395 * breaking binary compatibility.
396 *
397 * To add shared bits, do so in op_reg_common.h. This should change
398 * _RXf_PMf_SHIFT_NEXT so that things won't compile. Then come to regexp.h and
399 * op.h and adjust the constant adders in the definitions of RXf_BASE_SHIFT and
400 * Pmf_BASE_SHIFT down by the number of shared bits you added. That's it.
401 * Things should be binary compatible. But if either of these gets to having
402 * to subtract rather than add, leave at 0 and instead adjust all the entries
403 * that are in terms of it. But if the first one of those is already
404 * RXf_BASE_SHIFT+0, there are no bits left, and a redesign is in order.
405 *
406 * To remove unshared bits, just delete its entry. If you're where breaking
407 * binary compatibility is ok to do, you might want to adjust things to move
408 * the newly opened space so that it gets absorbed into the common pool.
409 *
410 * To add unshared bits, first use up any gaps in the middle. Otherwise,
411 * allocate off the low end until you get to RXf_BASE_SHIFT+0. If that isn't
412 * enough, move RXf_BASE_SHIFT down (if possible) and add the new bit at the
413 * other end instead; this preserves binary compatibility.
414 *
415 * For the regexp bits, PL_reg_extflags_name[] in regnodes.h has a comment
416 * giving which bits are used/unused */
417
d262c0c7 418#define RXf_BASE_SHIFT (_RXf_PMf_SHIFT_NEXT + 2)
52d81aa8 419
bbe252da 420/* What we have seen */
9cba692b
KW
421#define RXf_NO_INPLACE_SUBST (1U<<(RXf_BASE_SHIFT+2))
422#define RXf_EVAL_SEEN (1U<<(RXf_BASE_SHIFT+3))
bbe252da
YO
423
424/* Special */
9cba692b
KW
425#define RXf_UNBOUNDED_QUANTIFIER_SEEN (1U<<(RXf_BASE_SHIFT+4))
426#define RXf_CHECK_ALL (1U<<(RXf_BASE_SHIFT+5))
bbe252da
YO
427
428/* UTF8 related */
9cba692b 429#define RXf_MATCH_UTF8 (1U<<(RXf_BASE_SHIFT+6)) /* $1 etc are utf8 */
bbe252da
YO
430
431/* Intuit related */
9cba692b
KW
432#define RXf_USE_INTUIT_NOML (1U<<(RXf_BASE_SHIFT+7))
433#define RXf_USE_INTUIT_ML (1U<<(RXf_BASE_SHIFT+8))
434#define RXf_INTUIT_TAIL (1U<<(RXf_BASE_SHIFT+9))
bbe252da
YO
435#define RXf_USE_INTUIT (RXf_USE_INTUIT_NOML|RXf_USE_INTUIT_ML)
436
a3b51d37 437/* Do we have some sort of anchor? */
9cba692b 438#define RXf_IS_ANCHORED (1U<<(RXf_BASE_SHIFT+10))
a3b51d37 439
bbe252da 440/* Copy and tainted info */
9cba692b 441#define RXf_COPY_DONE (1U<<(RXf_BASE_SHIFT+11))
ef07e810 442
1738e041 443/* post-execution: $1 et al are tainted */
9cba692b 444#define RXf_TAINTED_SEEN (1U<<(RXf_BASE_SHIFT+12))
ef07e810 445/* this pattern was tainted during compilation */
9cba692b 446#define RXf_TAINTED (1U<<(RXf_BASE_SHIFT+13))
52d81aa8
NC
447
448/* Flags indicating special patterns */
9cba692b
KW
449#define RXf_START_ONLY (1U<<(RXf_BASE_SHIFT+14)) /* Pattern is /^/ */
450#define RXf_SKIPWHITE (1U<<(RXf_BASE_SHIFT+15)) /* Pattern is for a */
451 /* split " " */
452#define RXf_WHITE (1U<<(RXf_BASE_SHIFT+16)) /* Pattern is /\s+/ */
3f6e6b29 453#define RXf_NULL (1U<<(RXf_BASE_SHIFT+17)) /* Pattern is // */
0bd51918
KW
454
455/* See comments at the beginning of these defines about adding bits. The
456 * highest bit position should be used, so that if RXf_BASE_SHIFT gets
457 * increased, the #error below will be triggered so that you will be reminded
458 * to adjust things at the other end to keep the bit positions unchanged */
3f6e6b29 459#if RXf_BASE_SHIFT+17 > 31
0bd51918 460# error Too many RXf_PMf bits used. See comments at beginning of these for what to do
1850c8f9 461#endif
c737faaf 462
cb5027f2 463/*
eb2624c9
FC
464 * NOTE: if you modify any RXf flags you should run regen.pl or
465 * regen/regcomp.pl so that regnodes.h is updated with the changes.
cb5027f2
YO
466 *
467 */
bbe252da 468
dc6d7f5c 469#ifdef NO_TAINT_SUPPORT
a885a8e0 470# define RX_ISTAINTED(rx_sv) 0
196a02af 471# define RXp_ISTAINTED(prog) 0
a885a8e0
DM
472# define RX_TAINT_on(rx_sv) NOOP
473# define RXp_MATCH_TAINTED(prog) 0
474# define RX_MATCH_TAINTED(rx_sv) 0
475# define RXp_MATCH_TAINTED_on(prog) NOOP
476# define RX_MATCH_TAINTED_on(rx_sv) NOOP
477# define RX_MATCH_TAINTED_off(rx_sv) NOOP
284167a5 478#else
a885a8e0 479# define RX_ISTAINTED(rx_sv) (RX_EXTFLAGS(rx_sv) & RXf_TAINTED)
196a02af 480# define RXp_ISTAINTED(prog) (RXp_EXTFLAGS(prog) & RXf_TAINTED)
a885a8e0
DM
481# define RX_TAINT_on(rx_sv) (RX_EXTFLAGS(rx_sv) |= RXf_TAINTED)
482# define RXp_MATCH_TAINTED(prog) (RXp_EXTFLAGS(prog) & RXf_TAINTED_SEEN)
483# define RX_MATCH_TAINTED(rx_sv) (RX_EXTFLAGS(rx_sv) & RXf_TAINTED_SEEN)
484# define RXp_MATCH_TAINTED_on(prog) (RXp_EXTFLAGS(prog) |= RXf_TAINTED_SEEN)
485# define RX_MATCH_TAINTED_on(rx_sv) (RX_EXTFLAGS(rx_sv) |= RXf_TAINTED_SEEN)
196a02af 486# define RXp_MATCH_TAINTED_off(prog) (RXp_EXTFLAGS(prog) &= ~RXf_TAINTED_SEEN)
a885a8e0 487# define RX_MATCH_TAINTED_off(rx_sv) (RX_EXTFLAGS(rx_sv) &= ~RXf_TAINTED_SEEN)
284167a5
S
488#endif
489
ea0673ee 490#define RXp_HAS_CUTGROUP(prog) ((prog)->intflags & PREGf_CUTGROUP_SEEN)
a885a8e0
DM
491
492#define RX_MATCH_TAINTED_set(rx_sv, t) ((t) \
493 ? RX_MATCH_TAINTED_on(rx_sv) \
494 : RX_MATCH_TAINTED_off(rx_sv))
495
496#define RXp_MATCH_COPIED(prog) (RXp_EXTFLAGS(prog) & RXf_COPY_DONE)
497#define RX_MATCH_COPIED(rx_sv) (RX_EXTFLAGS(rx_sv) & RXf_COPY_DONE)
498#define RXp_MATCH_COPIED_on(prog) (RXp_EXTFLAGS(prog) |= RXf_COPY_DONE)
499#define RX_MATCH_COPIED_on(rx_sv) (RX_EXTFLAGS(rx_sv) |= RXf_COPY_DONE)
500#define RXp_MATCH_COPIED_off(prog) (RXp_EXTFLAGS(prog) &= ~RXf_COPY_DONE)
501#define RX_MATCH_COPIED_off(rx_sv) (RX_EXTFLAGS(rx_sv) &= ~RXf_COPY_DONE)
502#define RX_MATCH_COPIED_set(rx_sv,t) ((t) \
503 ? RX_MATCH_COPIED_on(rx_sv) \
504 : RX_MATCH_COPIED_off(rx_sv))
505
506#define RXp_EXTFLAGS(rx) ((rx)->extflags)
507#define RXp_COMPFLAGS(rx) ((rx)->compflags)
866c78d1 508
07bc277f 509/* For source compatibility. We used to store these explicitly. */
a885a8e0
DM
510#define RX_PRECOMP(rx_sv) (RX_WRAPPED(rx_sv) \
511 + ReANY(rx_sv)->pre_prefix)
512#define RX_PRECOMP_const(rx_sv) (RX_WRAPPED_const(rx_sv) \
513 + ReANY(rx_sv)->pre_prefix)
5509d87a
NC
514/* FIXME? Are we hardcoding too much here and constraining plugin extension
515 writers? Specifically, the value 1 assumes that the wrapped version always
516 has exactly one character at the end, a ')'. Will that always be true? */
a885a8e0
DM
517#define RX_PRELEN(rx_sv) (RX_WRAPLEN(rx_sv) \
518 - ReANY(rx_sv)->pre_prefix - 1)
519
520#define RX_WRAPPED(rx_sv) SvPVX(rx_sv)
521#define RX_WRAPPED_const(rx_sv) SvPVX_const(rx_sv)
522#define RX_WRAPLEN(rx_sv) SvCUR(rx_sv)
523#define RX_CHECK_SUBSTR(rx_sv) (ReANY(rx_sv)->check_substr)
524#define RX_REFCNT(rx_sv) SvREFCNT(rx_sv)
525#define RX_EXTFLAGS(rx_sv) RXp_EXTFLAGS(ReANY(rx_sv))
526#define RX_COMPFLAGS(rx_sv) RXp_COMPFLAGS(ReANY(rx_sv))
196a02af
DM
527#define RXp_ENGINE(prog) ((prog)->engine)
528#define RX_ENGINE(rx_sv) (RXp_ENGINE(ReANY(rx_sv)))
529#define RXp_SUBBEG(prog) (prog->subbeg)
530#define RX_SUBBEG(rx_sv) (RXp_SUBBEG(ReANY(rx_sv)))
531#define RXp_SUBOFFSET(prog) (prog->suboffset)
532#define RX_SUBOFFSET(rx_sv) (RXp_SUBOFFSET(ReANY(rx_sv)))
a885a8e0 533#define RX_SUBCOFFSET(rx_sv) (ReANY(rx_sv)->subcoffset)
196a02af
DM
534#define RXp_OFFS(prog) (prog->offs)
535#define RX_OFFS(rx_sv) (RXp_OFFS(ReANY(rx_sv)))
536#define RXp_NPARENS(prog) (prog->nparens)
537#define RX_NPARENS(rx_sv) (RXp_NPARENS(ReANY(rx_sv)))
a885a8e0 538#define RX_SUBLEN(rx_sv) (ReANY(rx_sv)->sublen)
196a02af
DM
539#define RXp_MINLEN(prog) (prog->minlen)
540#define RX_MINLEN(rx_sv) (RXp_MINLEN(ReANY(rx_sv)))
541#define RXp_MINLENRET(prog) (prog->minlenret)
542#define RX_MINLENRET(rx_sv) (RXp_MINLENRET(ReANY(rx_sv)))
543#define RXp_GOFS(prog) (prog->gofs)
544#define RX_GOFS(rx_sv) (RXp_GOFS(ReANY(rx_sv)))
a885a8e0
DM
545#define RX_LASTPAREN(rx_sv) (ReANY(rx_sv)->lastparen)
546#define RX_LASTCLOSEPAREN(rx_sv) (ReANY(rx_sv)->lastcloseparen)
196a02af
DM
547#define RXp_SAVED_COPY(prog) (prog->saved_copy)
548#define RX_SAVED_COPY(rx_sv) (RXp_SAVED_COPY(ReANY(rx_sv)))
03c83e26 549/* last match was zero-length */
196a02af
DM
550#define RXp_ZERO_LEN(prog) \
551 (RXp_OFFS(prog)[0].start + (SSize_t)RXp_GOFS(prog) \
552 == RXp_OFFS(prog)[0].end)
553#define RX_ZERO_LEN(rx_sv) (RXp_ZERO_LEN(ReANY(rx_sv)))
220fc49f 554
be8e71aa
YO
555#endif /* PLUGGABLE_RE_EXTENSION */
556
486ec47a 557/* Stuff that needs to be included in the pluggable extension goes below here */
be8e71aa 558
db2c6cb3 559#ifdef PERL_ANY_COW
196a02af
DM
560#define RXp_MATCH_COPY_FREE(prog) \
561 STMT_START {if (RXp_SAVED_COPY(prog)) { \
562 SV_CHECK_THINKFIRST_COW_DROP(RXp_SAVED_COPY(prog)); \
ed252734 563 } \
196a02af
DM
564 if (RXp_MATCH_COPIED(prog)) { \
565 Safefree(RXp_SUBBEG(prog)); \
566 RXp_MATCH_COPIED_off(prog); \
ed252734
NC
567 }} STMT_END
568#else
196a02af
DM
569#define RXp_MATCH_COPY_FREE(prog) \
570 STMT_START {if (RXp_MATCH_COPIED(prog)) { \
571 Safefree(RXp_SUBBEG(prog)); \
572 RXp_MATCH_COPIED_off(prog); \
ed252734
NC
573 }} STMT_END
574#endif
a8cb1947 575#define RX_MATCH_COPY_FREE(rx_sv) RXp_MATCH_COPY_FREE(ReANY(rx_sv))
ed252734 576
a885a8e0
DM
577#define RXp_MATCH_UTF8(prog) (RXp_EXTFLAGS(prog) & RXf_MATCH_UTF8)
578#define RX_MATCH_UTF8(rx_sv) (RX_EXTFLAGS(rx_sv) & RXf_MATCH_UTF8)
196a02af 579#define RXp_MATCH_UTF8_on(prog) (RXp_EXTFLAGS(prog) |= RXf_MATCH_UTF8)
97f6857b 580#define RX_MATCH_UTF8_on(rx_sv) (RXp_MATCH_UTF8_on(ReANY(rx_sv)))
196a02af
DM
581#define RXp_MATCH_UTF8_off(prog) (RXp_EXTFLAGS(prog) &= ~RXf_MATCH_UTF8)
582#define RX_MATCH_UTF8_off(rx_sv) (RXp_MATCH_UTF8_off(ReANY(rx_sv))
583#define RXp_MATCH_UTF8_set(prog, t) ((t) \
584 ? RXp_MATCH_UTF8_on(prog) \
585 : RXp_MATCH_UTF8_off(prog))
586#define RX_MATCH_UTF8_set(rx_sv, t) (RXp_MATCH_UTF8_set(ReANY(rx_sv), t))
efd26800
NC
587
588/* Whether the pattern stored at RX_WRAPPED is in UTF-8 */
a885a8e0 589#define RX_UTF8(rx_sv) SvUTF8(rx_sv)
7948fc08 590
a340edde
DM
591
592/* bits in flags arg of Perl_regexec_flags() */
593
594#define REXEC_COPY_STR 0x01 /* Need to copy the string for captures. */
595#define REXEC_CHECKED 0x02 /* re_intuit_start() already called. */
596#define REXEC_SCREAM 0x04 /* currently unused. */
597#define REXEC_IGNOREPOS 0x08 /* use stringarg, not pos(), for \G match */
598#define REXEC_NOT_FIRST 0x10 /* This is another iteration of //g:
599 no need to copy string again */
600
601 /* under REXEC_COPY_STR, it's ok for the
602 engine (modulo PL_sawamperand etc)
603 to skip copying: ... */
604#define REXEC_COPY_SKIP_PRE 0x20 /* ...the $` part of the string, or */
605#define REXEC_COPY_SKIP_POST 0x40 /* ...the $' part of the string */
d5e7783a
DM
606#define REXEC_FAIL_ON_UNDERFLOW 0x80 /* fail the match if $& would start before
607 the start pos (so s/.\G// would fail
608 on second iteration */
c277df42 609
7fe44985 610#if defined(__GNUC__) && !defined(PERL_GCC_BRACE_GROUPS_FORBIDDEN)
288b8c02
NC
611# define ReREFCNT_inc(re) \
612 ({ \
613 /* This is here to generate a casting warning if incorrect. */ \
7948fc08
RU
614 REGEXP *const _rerefcnt_inc = (re); \
615 assert(SvTYPE(_rerefcnt_inc) == SVt_REGEXP); \
616 SvREFCNT_inc(_rerefcnt_inc); \
617 _rerefcnt_inc; \
288b8c02
NC
618 })
619# define ReREFCNT_dec(re) \
620 ({ \
621 /* This is here to generate a casting warning if incorrect. */ \
7948fc08
RU
622 REGEXP *const _rerefcnt_dec = (re); \
623 SvREFCNT_dec(_rerefcnt_dec); \
288b8c02
NC
624 })
625#else
626# define ReREFCNT_dec(re) SvREFCNT_dec(re)
b7e0bd9e 627# define ReREFCNT_inc(re) ((REGEXP *) SvREFCNT_inc(re))
288b8c02 628#endif
8d919b0a 629#define ReANY(re) S_ReANY((const REGEXP *)(re))
288b8c02
NC
630
631/* FIXME for plugins. */
cf93c79d
IZ
632
633#define FBMcf_TAIL_DOLLAR 1
cad2e5aa
JH
634#define FBMcf_TAIL_DOLLARM 2
635#define FBMcf_TAIL_Z 4
636#define FBMcf_TAIL_z 8
637#define FBMcf_TAIL (FBMcf_TAIL_DOLLAR|FBMcf_TAIL_DOLLARM|FBMcf_TAIL_Z|FBMcf_TAIL_z)
cf93c79d
IZ
638
639#define FBMrf_MULTILINE 1
cad2e5aa 640
331b2dcc
DM
641struct regmatch_state;
642struct regmatch_slab;
8adc0f72 643
bf2039a9
DM
644/* like regmatch_info_aux, but contains extra fields only needed if the
645 * pattern contains (?{}). If used, is snuck into the second slot in the
646 * regmatch_state stack at the start of execution */
8adc0f72
DM
647
648typedef struct {
649 regexp *rex;
650 PMOP *curpm; /* saved PL_curpm */
651#ifdef PERL_ANY_COW
652 SV *saved_copy; /* saved saved_copy field from rex */
653#endif
654 char *subbeg; /* saved subbeg field from rex */
655 STRLEN sublen; /* saved sublen field from rex */
656 STRLEN suboffset; /* saved suboffset field from rex */
657 STRLEN subcoffset; /* saved subcoffset field from rex */
658 MAGIC *pos_magic; /* pos() magic attached to $_ */
ea3daa5d 659 SSize_t pos; /* the original value of pos() in pos_magic */
25fdce4a 660 U8 pos_flags; /* flags to be restored; currently only MGf_BYTES*/
bf2039a9
DM
661} regmatch_info_aux_eval;
662
663
664/* fields that logically live in regmatch_info, but which need cleaning
665 * up on croak(), and so are instead are snuck into the first slot in
666 * the regmatch_state stack at the start of execution */
667
668typedef struct {
669 regmatch_info_aux_eval *info_aux_eval;
331b2dcc
DM
670 struct regmatch_state *old_regmatch_state; /* saved PL_regmatch_state */
671 struct regmatch_slab *old_regmatch_slab; /* saved PL_regmatch_slab */
2ac8ff4b 672 char *poscache; /* S-L cache of fail positions of WHILEMs */
bf2039a9
DM
673} regmatch_info_aux;
674
8adc0f72 675
3b0527fe 676/* some basic information about the current match that is created by
bf2039a9
DM
677 * Perl_regexec_flags and then passed to regtry(), regmatch() etc.
678 * It is allocated as a local var on the stack, so nothing should be
679 * stored in it that needs preserving or clearing up on croak().
680 * For that, see the aux_info and aux_info_eval members of the
681 * regmatch_state union. */
3b0527fe
DM
682
683typedef struct {
28d03b21 684 REGEXP *prog; /* the regex being executed */
9d9163fb 685 const char * strbeg; /* real start of string */
28d03b21
DM
686 char *strend; /* one byte beyond last char of match string */
687 char *till; /* matches shorter than this fail (see minlen arg) */
688 SV *sv; /* the SV string currently being matched */
689 char *ganch; /* position of \G anchor */
690 char *cutpoint; /* (*COMMIT) position (if any) */
bf2039a9
DM
691 regmatch_info_aux *info_aux; /* extra fields that need cleanup */
692 regmatch_info_aux_eval *info_aux_eval; /* extra saved state for (?{}) */
1cb48e53
DM
693 I32 poscache_maxiter; /* how many whilems todo before S-L cache kicks in */
694 I32 poscache_iter; /* current countdown from _maxiter to zero */
2ac8ff4b 695 STRLEN poscache_size; /* size of regmatch_info_aux.poscache */
02d5137b 696 bool intuit; /* re_intuit_start() is the top-level caller */
ba44c216
DM
697 bool is_utf8_pat; /* regex is utf8 */
698 bool is_utf8_target; /* string being matched is utf8 */
39819bd9 699 bool warned; /* we have issued a recursion warning; no need for more */
3b0527fe
DM
700} regmatch_info;
701
5d9a96ca
DM
702
703/* structures for holding and saving the state maintained by regmatch() */
704
d56b3014 705#ifndef MAX_RECURSE_EVAL_NOCHANGE_DEPTH
ba6840fb 706#define MAX_RECURSE_EVAL_NOCHANGE_DEPTH 10
d56b3014 707#endif
6bda09f9 708
5d9a96ca
DM
709typedef I32 CHECKPOINT;
710
a0374537 711typedef struct regmatch_state {
40a82448 712 int resume_state; /* where to jump to on return */
24d3c4a9 713 char *locinput; /* where to backtrack in string on failure */
e822a8b4
DM
714
715 union {
77cb431f 716
bf2039a9
DM
717 /* the 'info_aux' and 'info_aux_eval' union members are cuckoos in
718 * the nest. They aren't saved backtrack state; rather they
719 * represent one or two extra chunks of data that need allocating
720 * at the start of a match. These fields would logically live in
721 * the regmatch_info struct, except that is allocated on the
722 * C stack, and these fields are all things that require cleanup
723 * after a croak(), when the stack is lost.
724 * As a convenience, we just use the first 1 or 2 regmatch_state
725 * slots to store this info, as we will be allocating a slab of
726 * these anyway. Otherwise we'd have to malloc and then free them,
727 * or allocate them on the save stack (where they will get
728 * realloced if the save stack grows).
729 * info_aux contains the extra fields that are always needed;
730 * info_aux_eval contains extra fields that only needed if
731 * the pattern contains code blocks
732 * We split them into two separate structs to avoid increasing
733 * the size of the union.
734 */
735
736 regmatch_info_aux info_aux;
737
738 regmatch_info_aux_eval info_aux_eval;
739
77cb431f
DM
740 /* this is a fake union member that matches the first element
741 * of each member that needs to store positive backtrack
742 * information */
743 struct {
744 struct regmatch_state *prev_yes_state;
745 } yes;
746
fae667d5
YO
747 /* branchlike members */
748 /* this is a fake union member that matches the first elements
749 * of each member that needs to behave like a branch */
750 struct {
5d458dd8
YO
751 /* this first element must match u.yes */
752 struct regmatch_state *prev_yes_state;
fae667d5 753 U32 lastparen;
f6033a9d 754 U32 lastcloseparen;
fae667d5
YO
755 CHECKPOINT cp;
756
757 } branchlike;
758
759 struct {
760 /* the first elements must match u.branchlike */
761 struct regmatch_state *prev_yes_state;
762 U32 lastparen;
f6033a9d 763 U32 lastcloseparen;
fae667d5
YO
764 CHECKPOINT cp;
765
766 regnode *next_branch; /* next branch node */
767 } branch;
768
769 struct {
770 /* the first elements must match u.branchlike */
771 struct regmatch_state *prev_yes_state;
772 U32 lastparen;
f6033a9d 773 U32 lastcloseparen;
fae667d5
YO
774 CHECKPOINT cp;
775
2e64971a 776 U32 accepted; /* how many accepting states left */
6603fe3e 777 bool longfold;/* saw a fold with a 1->n char mapping */
7f69552c 778 U16 *jump; /* positive offsets from me */
7f69552c 779 regnode *me; /* Which node am I - needed for jump tries*/
2e64971a
DM
780 U8 *firstpos;/* pos in string of first trie match */
781 U32 firstchars;/* len in chars of firstpos from start */
782 U16 nextword;/* next word to try */
783 U16 topword; /* longest accepted word */
e822a8b4
DM
784 } trie;
785
fae667d5
YO
786 /* special types - these members are used to store state for special
787 regops like eval, if/then, lookaround and the markpoint state */
e822a8b4 788 struct {
77cb431f
DM
789 /* this first element must match u.yes */
790 struct regmatch_state *prev_yes_state;
faec1544 791 struct regmatch_state *prev_curlyx;
d1c49ad5 792 struct regmatch_state *prev_eval;
288b8c02 793 REGEXP *prev_rex;
aa283a38
DM
794 CHECKPOINT cp; /* remember current savestack indexes */
795 CHECKPOINT lastcp;
24be3102 796 U32 close_paren; /* which close bracket is our end (+1) */
1b5c067c 797 regnode *B; /* the node following us */
ba6840fb 798 char *prev_recurse_locinput;
e822a8b4
DM
799 } eval;
800
801 struct {
c476f425 802 /* this first element must match u.yes */
262b90c4 803 struct regmatch_state *prev_yes_state;
fae667d5
YO
804 I32 wanted;
805 I32 logical; /* saved copy of 'logical' var */
806 regnode *me; /* the IFMATCH/SUSPEND/UNLESSM node */
807 } ifmatch; /* and SUSPEND/UNLESSM */
808
809 struct {
810 /* this first element must match u.yes */
811 struct regmatch_state *prev_yes_state;
812 struct regmatch_state *prev_mark;
813 SV* mark_name;
814 char *mark_loc;
815 } mark;
816
817 struct {
818 int val;
819 } keeper;
820
821 /* quantifiers - these members are used for storing state for
822 for the regops used to implement quantifiers */
823 struct {
824 /* this first element must match u.yes */
825 struct regmatch_state *prev_yes_state;
c476f425 826 struct regmatch_state *prev_curlyx; /* previous cur_curlyx */
d02d6d97
DM
827 regnode *me; /* the CURLYX node */
828 regnode *B; /* the B node in /A*B/ */
c476f425
DM
829 CHECKPOINT cp; /* remember current savestack index */
830 bool minmod;
a0374537 831 int parenfloor;/* how far back to strip paren data */
c476f425
DM
832
833 /* these two are modified by WHILEM */
834 int count; /* how many instances of A we've matched */
835 char *lastloc;/* where previous A matched (0-len detect) */
e822a8b4
DM
836 } curlyx;
837
838 struct {
c476f425 839 /* this first element must match u.yes */
262b90c4 840 struct regmatch_state *prev_yes_state;
c476f425
DM
841 struct regmatch_state *save_curlyx;
842 CHECKPOINT cp; /* remember current savestack indexes */
843 CHECKPOINT lastcp;
844 char *save_lastloc; /* previous curlyx.lastloc */
845 I32 cache_offset;
846 I32 cache_mask;
e822a8b4
DM
847 } whilem;
848
849 struct {
5d458dd8
YO
850 /* this first element must match u.yes */
851 struct regmatch_state *prev_yes_state;
79a2a0e8 852 int c1, c2; /* case fold search */
40a82448 853 CHECKPOINT cp;
f6033a9d
DM
854 U32 lastparen;
855 U32 lastcloseparen;
40a82448
DM
856 I32 alen; /* length of first-matched A string */
857 I32 count;
0cadcf80 858 bool minmod;
40a82448
DM
859 regnode *A, *B; /* the nodes corresponding to /A*B/ */
860 regnode *me; /* the curlym node */
79a2a0e8
KW
861 U8 c1_utf8[UTF8_MAXBYTES+1]; /* */
862 U8 c2_utf8[UTF8_MAXBYTES+1];
e822a8b4
DM
863 } curlym;
864
865 struct {
3b6647e0 866 U32 paren;
c255a977 867 CHECKPOINT cp;
f6033a9d
DM
868 U32 lastparen;
869 U32 lastcloseparen;
79a2a0e8 870 int c1, c2; /* case fold search */
c255a977
DM
871 char *maxpos; /* highest possible point in string to match */
872 char *oldloc; /* the previous locinput */
e822a8b4 873 int count;
c255a977
DM
874 int min, max; /* {m,n} */
875 regnode *A, *B; /* the nodes corresponding to /A*B/ */
79a2a0e8
KW
876 U8 c1_utf8[UTF8_MAXBYTES+1]; /* */
877 U8 c2_utf8[UTF8_MAXBYTES+1];
c255a977 878 } curly; /* and CURLYN/PLUS/STAR */
dad79028 879
d8319b27 880 } u;
5d9a96ca
DM
881} regmatch_state;
882
ce12e254 883
d5a00e4a 884
5d9a96ca
DM
885/* how many regmatch_state structs to allocate as a single slab.
886 * We do it in 4K blocks for efficiency. The "3" is 2 for the next/prev
887 * pointers, plus 1 for any mythical malloc overhead. */
888
889#define PERL_REGMATCH_SLAB_SLOTS \
890 ((4096 - 3 * sizeof (void*)) / sizeof(regmatch_state))
891
892typedef struct regmatch_slab {
893 regmatch_state states[PERL_REGMATCH_SLAB_SLOTS];
894 struct regmatch_slab *prev, *next;
895} regmatch_slab;
1ade1aa1 896
46ab3289 897
cde0cee5 898
1ade1aa1 899/*
14d04a33 900 * ex: set ts=8 sts=4 sw=4 et:
1ade1aa1 901 */