3 * Copyright (C) 1993, 1994, 1996, 1997, 1999, 2000, 2001, 2003,
4 * by Larry Wall and others
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.
12 * Definitions etc. for regexp(3) routines.
14 * Caveat: this is V8 regexp(3) [actually, a reimplementation thereof],
15 * not the System V one.
17 #ifndef PLUGGABLE_RE_EXTENSION
18 /* we don't want to include this stuff if we are inside Nicholas'
19 * pluggable regex engine code */
27 typedef struct regnode regnode;
29 struct reg_substr_data;
33 typedef struct regexp {
37 struct reg_substr_data *substrs;
38 char *precomp; /* pre-compilation regular expression */
39 struct reg_data *data; /* Additional data. */
40 char *subbeg; /* saved or original string
41 so \digit works forever. */
42 #ifdef PERL_OLD_COPY_ON_WRITE
43 SV *saved_copy; /* If non-NULL, SV which is COW from original */
45 U32 *offsets; /* offset annotations 20001228 MJD */
46 I32 sublen; /* Length of string pointed by subbeg */
48 I32 minlen; /* mininum possible length of $& */
49 I32 prelen; /* length of precomp */
50 U32 nparens; /* number of parentheses */
51 U32 lastparen; /* last paren matched */
52 U32 lastcloseparen; /* last paren matched */
53 U32 reganch; /* Internal use only +
54 Tainted information used by regexec? */
55 regnode program[1]; /* Unwarranted chumminess with compiler. */
58 #define ROPT_ANCH (ROPT_ANCH_BOL|ROPT_ANCH_MBOL|ROPT_ANCH_GPOS|ROPT_ANCH_SBOL)
59 #define ROPT_ANCH_SINGLE (ROPT_ANCH_SBOL|ROPT_ANCH_GPOS)
60 #define ROPT_ANCH_BOL 0x00000001
61 #define ROPT_ANCH_MBOL 0x00000002
62 #define ROPT_ANCH_SBOL 0x00000004
63 #define ROPT_ANCH_GPOS 0x00000008
64 #define ROPT_SKIP 0x00000010
65 #define ROPT_IMPLICIT 0x00000020 /* Converted .* to ^.* */
66 #define ROPT_NOSCAN 0x00000040 /* Check-string always at start. */
67 #define ROPT_GPOS_SEEN 0x00000080
68 #define ROPT_CHECK_ALL 0x00000100
69 #define ROPT_LOOKBEHIND_SEEN 0x00000200
70 #define ROPT_EVAL_SEEN 0x00000400
71 #define ROPT_CANY_SEEN 0x00000800
72 #define ROPT_SANY_SEEN ROPT_CANY_SEEN /* src bckwrd cmpt */
74 /* 0xf800 of reganch is used by PMf_COMPILETIME */
76 #define ROPT_UTF8 0x00010000
77 #define ROPT_NAUGHTY 0x00020000 /* how exponential is this pattern? */
78 #define ROPT_COPY_DONE 0x00040000 /* subbeg is a copy of the string */
79 #define ROPT_TAINTED_SEEN 0x00080000
80 #define ROPT_MATCH_UTF8 0x10000000 /* subbeg is utf-8 */
82 #define RE_USE_INTUIT_NOML 0x00100000 /* Best to intuit before matching */
83 #define RE_USE_INTUIT_ML 0x00200000
84 #define REINT_AUTORITATIVE_NOML 0x00400000 /* Can trust a positive answer */
85 #define REINT_AUTORITATIVE_ML 0x00800000
86 #define REINT_ONCE_NOML 0x01000000 /* Intuit can succed once only. */
87 #define REINT_ONCE_ML 0x02000000
88 #define RE_INTUIT_ONECHAR 0x04000000
89 #define RE_INTUIT_TAIL 0x08000000
92 #define RE_USE_INTUIT (RE_USE_INTUIT_NOML|RE_USE_INTUIT_ML)
93 #define REINT_AUTORITATIVE (REINT_AUTORITATIVE_NOML|REINT_AUTORITATIVE_ML)
94 #define REINT_ONCE (REINT_ONCE_NOML|REINT_ONCE_ML)
96 #define RX_MATCH_TAINTED(prog) ((prog)->reganch & ROPT_TAINTED_SEEN)
97 #define RX_MATCH_TAINTED_on(prog) ((prog)->reganch |= ROPT_TAINTED_SEEN)
98 #define RX_MATCH_TAINTED_off(prog) ((prog)->reganch &= ~ROPT_TAINTED_SEEN)
99 #define RX_MATCH_TAINTED_set(prog, t) ((t) \
100 ? RX_MATCH_TAINTED_on(prog) \
101 : RX_MATCH_TAINTED_off(prog))
103 #define RX_MATCH_COPIED(prog) ((prog)->reganch & ROPT_COPY_DONE)
104 #define RX_MATCH_COPIED_on(prog) ((prog)->reganch |= ROPT_COPY_DONE)
105 #define RX_MATCH_COPIED_off(prog) ((prog)->reganch &= ~ROPT_COPY_DONE)
106 #define RX_MATCH_COPIED_set(prog,t) ((t) \
107 ? RX_MATCH_COPIED_on(prog) \
108 : RX_MATCH_COPIED_off(prog))
109 #endif /* PLUGGABLE_RE_EXTENSION */
111 /* Stuff that needs to be included in the plugable extension goes below here */
113 #define RE_DEBUG_BIT 0x20000000
114 #define RX_DEBUG(prog) ((prog)->reganch & RE_DEBUG_BIT)
115 #define RX_DEBUG_on(prog) ((prog)->reganch |= RE_DEBUG_BIT)
117 #ifdef PERL_OLD_COPY_ON_WRITE
118 #define RX_MATCH_COPY_FREE(rx) \
119 STMT_START {if (rx->saved_copy) { \
120 SV_CHECK_THINKFIRST_COW_DROP(rx->saved_copy); \
122 if (RX_MATCH_COPIED(rx)) { \
123 Safefree(rx->subbeg); \
124 RX_MATCH_COPIED_off(rx); \
127 #define RX_MATCH_COPY_FREE(rx) \
128 STMT_START {if (RX_MATCH_COPIED(rx)) { \
129 Safefree(rx->subbeg); \
130 RX_MATCH_COPIED_off(rx); \
134 #define RX_MATCH_UTF8(prog) ((prog)->reganch & ROPT_MATCH_UTF8)
135 #define RX_MATCH_UTF8_on(prog) ((prog)->reganch |= ROPT_MATCH_UTF8)
136 #define RX_MATCH_UTF8_off(prog) ((prog)->reganch &= ~ROPT_MATCH_UTF8)
137 #define RX_MATCH_UTF8_set(prog, t) ((t) \
138 ? (RX_MATCH_UTF8_on(prog), (PL_reg_match_utf8 = 1)) \
139 : (RX_MATCH_UTF8_off(prog), (PL_reg_match_utf8 = 0)))
141 #define REXEC_COPY_STR 0x01 /* Need to copy the string. */
142 #define REXEC_CHECKED 0x02 /* check_substr already checked. */
143 #define REXEC_SCREAM 0x04 /* use scream table. */
144 #define REXEC_IGNOREPOS 0x08 /* \G matches at start. */
145 #define REXEC_NOT_FIRST 0x10 /* This is another iteration of //g. */
147 #define ReREFCNT_inc(re) ((void)(re && re->refcnt++), re)
148 #define ReREFCNT_dec(re) CALLREGFREE(aTHX_ re)
150 #define FBMcf_TAIL_DOLLAR 1
151 #define FBMcf_TAIL_DOLLARM 2
152 #define FBMcf_TAIL_Z 4
153 #define FBMcf_TAIL_z 8
154 #define FBMcf_TAIL (FBMcf_TAIL_DOLLAR|FBMcf_TAIL_DOLLARM|FBMcf_TAIL_Z|FBMcf_TAIL_z)
156 #define FBMrf_MULTILINE 1
158 struct re_scream_pos_data_s;
160 /* an accepting state/position*/
161 struct _reg_trie_accepted {
165 typedef struct _reg_trie_accepted reg_trie_accepted;
167 /* some basic information about the current match that is created by
168 * Perl_regexec_flags and then passed to regtry(), regmatch() etc */
179 /* structures for holding and saving the state maintained by regmatch() */
181 typedef I32 CHECKPOINT;
202 } regmatch_resume_states;
205 typedef struct regmatch_state {
207 /* these vars contain state that needs to be maintained
208 * across the main while loop ... */
210 regmatch_resume_states resume_state; /* where to jump to on return */
211 regnode *scan; /* Current node. */
212 regnode *next; /* Next node. */
213 bool minmod; /* the next "{n,m}" is a "{n,m}?" */
214 bool sw; /* the condition value in (?(cond)a|b) */
216 I32 unwind; /* savestack index of current unwind block */
217 struct regmatch_state *cc; /* current innermost curly state */
220 /* ... while the rest of these are local to an individual branch */
222 I32 n; /* no or next */
223 I32 ln; /* len or last */
227 /* this is a fake union member that matches the first element
228 * of each member that needs to store positive backtrack
231 struct regmatch_state *prev_yes_state;
235 reg_trie_accepted *accept_buff;
236 U32 accepted; /* how many accepting states we have seen */
240 /* this first element must match u.yes */
241 struct regmatch_state *prev_yes_state;
244 CHECKPOINT cp; /* remember current savestack indexes */
249 CHECKPOINT cp; /* remember current savestack indexes */
250 struct regmatch_state *outercc; /* outer CURLYX state if any */
252 /* these contain the current curly state, and are accessed
253 * by subsequent WHILEMs */
254 int parenfloor;/* how far back to strip paren data */
255 int cur; /* how many instances of scan we've matched */
256 int min; /* the minimal number of scans to match */
257 int max; /* the maximal number of scans to match */
258 regnode * scan; /* the thing to match */
259 char * lastloc;/* where we started matching this scan */
263 CHECKPOINT cp; /* remember current savestack indexes */
265 struct regmatch_state *savecc;
266 char *lastloc; /* Detection of 0-len. */
272 /* this first element must match u.yes */
273 struct regmatch_state *prev_yes_state;
275 I32 c1, c2; /* case fold search */
286 I32 c1, c2; /* case fold search */
290 } plus; /* and CURLYN/CURLY/STAR */
293 /* this first element must match u.yes */
294 struct regmatch_state *prev_yes_state;
296 } ifmatch; /* and SUSPEND/UNLESSM */
300 /* how many regmatch_state structs to allocate as a single slab.
301 * We do it in 4K blocks for efficiency. The "3" is 2 for the next/prev
302 * pointers, plus 1 for any mythical malloc overhead. */
304 #define PERL_REGMATCH_SLAB_SLOTS \
305 ((4096 - 3 * sizeof (void*)) / sizeof(regmatch_state))
307 typedef struct regmatch_slab {
308 regmatch_state states[PERL_REGMATCH_SLAB_SLOTS];
309 struct regmatch_slab *prev, *next;
312 #define PL_reg_flags PL_reg_state.re_state_reg_flags
313 #define PL_bostr PL_reg_state.re_state_bostr
314 #define PL_reginput PL_reg_state.re_state_reginput
315 #define PL_regeol PL_reg_state.re_state_regeol
316 #define PL_regstartp PL_reg_state.re_state_regstartp
317 #define PL_regendp PL_reg_state.re_state_regendp
318 #define PL_reglastparen PL_reg_state.re_state_reglastparen
319 #define PL_reglastcloseparen PL_reg_state.re_state_reglastcloseparen
320 #define PL_reg_start_tmp PL_reg_state.re_state_reg_start_tmp
321 #define PL_reg_start_tmpl PL_reg_state.re_state_reg_start_tmpl
322 #define PL_reg_eval_set PL_reg_state.re_state_reg_eval_set
323 #define PL_regindent PL_reg_state.re_state_regindent
324 #define PL_reg_match_utf8 PL_reg_state.re_state_reg_match_utf8
325 #define PL_reg_magic PL_reg_state.re_state_reg_magic
326 #define PL_reg_oldpos PL_reg_state.re_state_reg_oldpos
327 #define PL_reg_oldcurpm PL_reg_state.re_state_reg_oldcurpm
328 #define PL_reg_curpm PL_reg_state.re_state_reg_curpm
329 #define PL_reg_oldsaved PL_reg_state.re_state_reg_oldsaved
330 #define PL_reg_oldsavedlen PL_reg_state.re_state_reg_oldsavedlen
331 #define PL_reg_maxiter PL_reg_state.re_state_reg_maxiter
332 #define PL_reg_leftiter PL_reg_state.re_state_reg_leftiter
333 #define PL_reg_poscache PL_reg_state.re_state_reg_poscache
334 #define PL_reg_poscache_size PL_reg_state.re_state_reg_poscache_size
335 #define PL_regsize PL_reg_state.re_state_regsize
336 #define PL_reg_starttry PL_reg_state.re_state_reg_starttry
337 #define PL_nrs PL_reg_state.re_state_nrs
339 struct re_save_state {
340 U32 re_state_reg_flags; /* from regexec.c */
341 char *re_state_bostr;
342 char *re_state_reginput; /* String-input pointer. */
343 char *re_state_regeol; /* End of input, for $ check. */
344 I32 *re_state_regstartp; /* Pointer to startp array. */
345 I32 *re_state_regendp; /* Ditto for endp. */
346 U32 *re_state_reglastparen; /* Similarly for lastparen. */
347 U32 *re_state_reglastcloseparen; /* Similarly for lastcloseparen. */
348 char **re_state_reg_start_tmp; /* from regexec.c */
349 U32 re_state_reg_start_tmpl; /* from regexec.c */
350 I32 re_state_reg_eval_set; /* from regexec.c */
351 int re_state_regindent; /* from regexec.c */
352 bool re_state_reg_match_utf8; /* from regexec.c */
353 MAGIC *re_state_reg_magic; /* from regexec.c */
354 I32 re_state_reg_oldpos; /* from regexec.c */
355 PMOP *re_state_reg_oldcurpm; /* from regexec.c */
356 PMOP *re_state_reg_curpm; /* from regexec.c */
357 char *re_state_reg_oldsaved; /* old saved substr during match */
358 STRLEN re_state_reg_oldsavedlen; /* old length of saved substr during match */
359 I32 re_state_reg_maxiter; /* max wait until caching pos */
360 I32 re_state_reg_leftiter; /* wait until caching pos */
361 char *re_state_reg_poscache; /* cache of pos of WHILEM */
362 STRLEN re_state_reg_poscache_size; /* size of pos cache of WHILEM */
363 I32 re_state_regsize; /* from regexec.c */
364 char *re_state_reg_starttry; /* from regexec.c */
365 #ifdef PERL_OLD_COPY_ON_WRITE
366 SV *re_state_nrs; /* was placeholder: unused since 5.8.0 (5.7.2 patch #12027 for bug ID 20010815.012). Used to save rx->saved_copy */
370 #define SAVESTACK_ALLOC_FOR_RE_SAVE_STATE \
371 (1 + ((sizeof(struct re_save_state) - 1) / sizeof(*PL_savestack)))
374 * c-indentation-style: bsd
376 * indent-tabs-mode: t
379 * ex: set ts=8 sts=4 sw=4 noet: