This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Remove BEGIN{}, use '..', part deux
[perl5.git] / regexec.c
1 /*    regexec.c
2  */
3
4 /*
5  *      One Ring to rule them all, One Ring to find them
6  &
7  *     [p.v of _The Lord of the Rings_, opening poem]
8  *     [p.50 of _The Lord of the Rings_, I/iii: "The Shadow of the Past"]
9  *     [p.254 of _The Lord of the Rings_, II/ii: "The Council of Elrond"]
10  */
11
12 /* This file contains functions for executing a regular expression.  See
13  * also regcomp.c which funnily enough, contains functions for compiling
14  * a regular expression.
15  *
16  * This file is also copied at build time to ext/re/re_exec.c, where
17  * it's built with -DPERL_EXT_RE_BUILD -DPERL_EXT_RE_DEBUG -DPERL_EXT.
18  * This causes the main functions to be compiled under new names and with
19  * debugging support added, which makes "use re 'debug'" work.
20  */
21
22 /* NOTE: this is derived from Henry Spencer's regexp code, and should not
23  * confused with the original package (see point 3 below).  Thanks, Henry!
24  */
25
26 /* Additional note: this code is very heavily munged from Henry's version
27  * in places.  In some spots I've traded clarity for efficiency, so don't
28  * blame Henry for some of the lack of readability.
29  */
30
31 /* The names of the functions have been changed from regcomp and
32  * regexec to  pregcomp and pregexec in order to avoid conflicts
33  * with the POSIX routines of the same names.
34 */
35
36 #ifdef PERL_EXT_RE_BUILD
37 #include "re_top.h"
38 #endif
39
40 /*
41  * pregcomp and pregexec -- regsub and regerror are not used in perl
42  *
43  *      Copyright (c) 1986 by University of Toronto.
44  *      Written by Henry Spencer.  Not derived from licensed software.
45  *
46  *      Permission is granted to anyone to use this software for any
47  *      purpose on any computer system, and to redistribute it freely,
48  *      subject to the following restrictions:
49  *
50  *      1. The author is not responsible for the consequences of use of
51  *              this software, no matter how awful, even if they arise
52  *              from defects in it.
53  *
54  *      2. The origin of this software must not be misrepresented, either
55  *              by explicit claim or by omission.
56  *
57  *      3. Altered versions must be plainly marked as such, and must not
58  *              be misrepresented as being the original software.
59  *
60  ****    Alterations to Henry's code are...
61  ****
62  ****    Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
63  ****    2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
64  ****    by Larry Wall and others
65  ****
66  ****    You may distribute under the terms of either the GNU General Public
67  ****    License or the Artistic License, as specified in the README file.
68  *
69  * Beware that some of this code is subtly aware of the way operator
70  * precedence is structured in regular expressions.  Serious changes in
71  * regular-expression syntax might require a total rethink.
72  */
73 #include "EXTERN.h"
74 #define PERL_IN_REGEXEC_C
75 #include "perl.h"
76
77 #ifdef PERL_IN_XSUB_RE
78 #  include "re_comp.h"
79 #else
80 #  include "regcomp.h"
81 #endif
82
83 #define RF_tainted      1               /* tainted information used? */
84 #define RF_warned       2               /* warned about big count? */
85
86 #define RF_utf8         8               /* Pattern contains multibyte chars? */
87
88 #define UTF ((PL_reg_flags & RF_utf8) != 0)
89
90 #define RS_init         1               /* eval environment created */
91 #define RS_set          2               /* replsv value is set */
92
93 #ifndef STATIC
94 #define STATIC  static
95 #endif
96
97 #define REGINCLASS(prog,p,c)  (ANYOF_FLAGS(p) ? reginclass(prog,p,c,0,0) : ANYOF_BITMAP_TEST(p,*(c)))
98
99 /*
100  * Forwards.
101  */
102
103 #define CHR_SVLEN(sv) (do_utf8 ? sv_len_utf8(sv) : SvCUR(sv))
104 #define CHR_DIST(a,b) (PL_reg_match_utf8 ? utf8_distance(a,b) : a - b)
105
106 #define HOPc(pos,off) \
107         (char *)(PL_reg_match_utf8 \
108             ? reghop3((U8*)pos, off, (U8*)(off >= 0 ? PL_regeol : PL_bostr)) \
109             : (U8*)(pos + off))
110 #define HOPBACKc(pos, off) \
111         (char*)(PL_reg_match_utf8\
112             ? reghopmaybe3((U8*)pos, -off, (U8*)PL_bostr) \
113             : (pos - off >= PL_bostr)           \
114                 ? (U8*)pos - off                \
115                 : NULL)
116
117 #define HOP3(pos,off,lim) (PL_reg_match_utf8 ? reghop3((U8*)(pos), off, (U8*)(lim)) : (U8*)(pos + off))
118 #define HOP3c(pos,off,lim) ((char*)HOP3(pos,off,lim))
119
120 #define LOAD_UTF8_CHARCLASS(class,str) STMT_START { \
121     if (!CAT2(PL_utf8_,class)) { bool ok; ENTER; save_re_context(); ok=CAT2(is_utf8_,class)((const U8*)str); assert(ok); LEAVE; } } STMT_END
122 #define LOAD_UTF8_CHARCLASS_ALNUM() LOAD_UTF8_CHARCLASS(alnum,"a")
123 #define LOAD_UTF8_CHARCLASS_DIGIT() LOAD_UTF8_CHARCLASS(digit,"0")
124 #define LOAD_UTF8_CHARCLASS_SPACE() LOAD_UTF8_CHARCLASS(space," ")
125 #define LOAD_UTF8_CHARCLASS_MARK()  LOAD_UTF8_CHARCLASS(mark, "\xcd\x86")
126
127 /* TODO: Combine JUMPABLE and HAS_TEXT to cache OP(rn) */
128
129 /* for use after a quantifier and before an EXACT-like node -- japhy */
130 /* it would be nice to rework regcomp.sym to generate this stuff. sigh */
131 #define JUMPABLE(rn) (      \
132     OP(rn) == OPEN ||       \
133     (OP(rn) == CLOSE && (!cur_eval || cur_eval->u.eval.close_paren != ARG(rn))) || \
134     OP(rn) == EVAL ||   \
135     OP(rn) == SUSPEND || OP(rn) == IFMATCH || \
136     OP(rn) == PLUS || OP(rn) == MINMOD || \
137     OP(rn) == KEEPS || (PL_regkind[OP(rn)] == VERB) || \
138     (PL_regkind[OP(rn)] == CURLY && ARG1(rn) > 0) \
139 )
140 #define IS_EXACT(rn) (PL_regkind[OP(rn)] == EXACT)
141
142 #define HAS_TEXT(rn) ( IS_EXACT(rn) || PL_regkind[OP(rn)] == REF )
143
144 #if 0 
145 /* Currently these are only used when PL_regkind[OP(rn)] == EXACT so
146    we don't need this definition. */
147 #define IS_TEXT(rn)   ( OP(rn)==EXACT   || OP(rn)==REF   || OP(rn)==NREF   )
148 #define IS_TEXTF(rn)  ( OP(rn)==EXACTF  || OP(rn)==REFF  || OP(rn)==NREFF  )
149 #define IS_TEXTFL(rn) ( OP(rn)==EXACTFL || OP(rn)==REFFL || OP(rn)==NREFFL )
150
151 #else
152 /* ... so we use this as its faster. */
153 #define IS_TEXT(rn)   ( OP(rn)==EXACT   )
154 #define IS_TEXTF(rn)  ( OP(rn)==EXACTF  )
155 #define IS_TEXTFL(rn) ( OP(rn)==EXACTFL )
156
157 #endif
158
159 /*
160   Search for mandatory following text node; for lookahead, the text must
161   follow but for lookbehind (rn->flags != 0) we skip to the next step.
162 */
163 #define FIND_NEXT_IMPT(rn) STMT_START { \
164     while (JUMPABLE(rn)) { \
165         const OPCODE type = OP(rn); \
166         if (type == SUSPEND || PL_regkind[type] == CURLY) \
167             rn = NEXTOPER(NEXTOPER(rn)); \
168         else if (type == PLUS) \
169             rn = NEXTOPER(rn); \
170         else if (type == IFMATCH) \
171             rn = (rn->flags == 0) ? NEXTOPER(NEXTOPER(rn)) : rn + ARG(rn); \
172         else rn += NEXT_OFF(rn); \
173     } \
174 } STMT_END 
175
176
177 static void restore_pos(pTHX_ void *arg);
178
179 STATIC CHECKPOINT
180 S_regcppush(pTHX_ I32 parenfloor)
181 {
182     dVAR;
183     const int retval = PL_savestack_ix;
184 #define REGCP_PAREN_ELEMS 4
185     const int paren_elems_to_push = (PL_regsize - parenfloor) * REGCP_PAREN_ELEMS;
186     int p;
187     GET_RE_DEBUG_FLAGS_DECL;
188
189     if (paren_elems_to_push < 0)
190         Perl_croak(aTHX_ "panic: paren_elems_to_push < 0");
191
192 #define REGCP_OTHER_ELEMS 7
193     SSGROW(paren_elems_to_push + REGCP_OTHER_ELEMS);
194     
195     for (p = PL_regsize; p > parenfloor; p--) {
196 /* REGCP_PARENS_ELEMS are pushed per pairs of parentheses. */
197         SSPUSHINT(PL_regoffs[p].end);
198         SSPUSHINT(PL_regoffs[p].start);
199         SSPUSHPTR(PL_reg_start_tmp[p]);
200         SSPUSHINT(p);
201         DEBUG_BUFFERS_r(PerlIO_printf(Perl_debug_log,
202           "     saving \\%"UVuf" %"IVdf"(%"IVdf")..%"IVdf"\n",
203                       (UV)p, (IV)PL_regoffs[p].start,
204                       (IV)(PL_reg_start_tmp[p] - PL_bostr),
205                       (IV)PL_regoffs[p].end
206         ));
207     }
208 /* REGCP_OTHER_ELEMS are pushed in any case, parentheses or no. */
209     SSPUSHPTR(PL_regoffs);
210     SSPUSHINT(PL_regsize);
211     SSPUSHINT(*PL_reglastparen);
212     SSPUSHINT(*PL_reglastcloseparen);
213     SSPUSHPTR(PL_reginput);
214 #define REGCP_FRAME_ELEMS 2
215 /* REGCP_FRAME_ELEMS are part of the REGCP_OTHER_ELEMS and
216  * are needed for the regexp context stack bookkeeping. */
217     SSPUSHINT(paren_elems_to_push + REGCP_OTHER_ELEMS - REGCP_FRAME_ELEMS);
218     SSPUSHINT(SAVEt_REGCONTEXT); /* Magic cookie. */
219
220     return retval;
221 }
222
223 /* These are needed since we do not localize EVAL nodes: */
224 #define REGCP_SET(cp)                                           \
225     DEBUG_STATE_r(                                              \
226             PerlIO_printf(Perl_debug_log,                       \
227                 "  Setting an EVAL scope, savestack=%"IVdf"\n", \
228                 (IV)PL_savestack_ix));                          \
229     cp = PL_savestack_ix
230
231 #define REGCP_UNWIND(cp)                                        \
232     DEBUG_STATE_r(                                              \
233         if (cp != PL_savestack_ix)                              \
234             PerlIO_printf(Perl_debug_log,                       \
235                 "  Clearing an EVAL scope, savestack=%"IVdf"..%"IVdf"\n", \
236                 (IV)(cp), (IV)PL_savestack_ix));                \
237     regcpblow(cp)
238
239 STATIC char *
240 S_regcppop(pTHX_ const regexp *rex)
241 {
242     dVAR;
243     U32 i;
244     char *input;
245     GET_RE_DEBUG_FLAGS_DECL;
246
247     PERL_ARGS_ASSERT_REGCPPOP;
248
249     /* Pop REGCP_OTHER_ELEMS before the parentheses loop starts. */
250     i = SSPOPINT;
251     assert(i == SAVEt_REGCONTEXT); /* Check that the magic cookie is there. */
252     i = SSPOPINT; /* Parentheses elements to pop. */
253     input = (char *) SSPOPPTR;
254     *PL_reglastcloseparen = SSPOPINT;
255     *PL_reglastparen = SSPOPINT;
256     PL_regsize = SSPOPINT;
257     PL_regoffs=(regexp_paren_pair *) SSPOPPTR;
258
259     
260     /* Now restore the parentheses context. */
261     for (i -= (REGCP_OTHER_ELEMS - REGCP_FRAME_ELEMS);
262          i > 0; i -= REGCP_PAREN_ELEMS) {
263         I32 tmps;
264         U32 paren = (U32)SSPOPINT;
265         PL_reg_start_tmp[paren] = (char *) SSPOPPTR;
266         PL_regoffs[paren].start = SSPOPINT;
267         tmps = SSPOPINT;
268         if (paren <= *PL_reglastparen)
269             PL_regoffs[paren].end = tmps;
270         DEBUG_BUFFERS_r(
271             PerlIO_printf(Perl_debug_log,
272                           "     restoring \\%"UVuf" to %"IVdf"(%"IVdf")..%"IVdf"%s\n",
273                           (UV)paren, (IV)PL_regoffs[paren].start,
274                           (IV)(PL_reg_start_tmp[paren] - PL_bostr),
275                           (IV)PL_regoffs[paren].end,
276                           (paren > *PL_reglastparen ? "(no)" : ""));
277         );
278     }
279     DEBUG_BUFFERS_r(
280         if (*PL_reglastparen + 1 <= rex->nparens) {
281             PerlIO_printf(Perl_debug_log,
282                           "     restoring \\%"IVdf"..\\%"IVdf" to undef\n",
283                           (IV)(*PL_reglastparen + 1), (IV)rex->nparens);
284         }
285     );
286 #if 1
287     /* It would seem that the similar code in regtry()
288      * already takes care of this, and in fact it is in
289      * a better location to since this code can #if 0-ed out
290      * but the code in regtry() is needed or otherwise tests
291      * requiring null fields (pat.t#187 and split.t#{13,14}
292      * (as of patchlevel 7877)  will fail.  Then again,
293      * this code seems to be necessary or otherwise
294      * this erroneously leaves $1 defined: "1" =~ /^(?:(\d)x)?\d$/
295      * --jhi updated by dapm */
296     for (i = *PL_reglastparen + 1; i <= rex->nparens; i++) {
297         if (i > PL_regsize)
298             PL_regoffs[i].start = -1;
299         PL_regoffs[i].end = -1;
300     }
301 #endif
302     return input;
303 }
304
305 #define regcpblow(cp) LEAVE_SCOPE(cp)   /* Ignores regcppush()ed data. */
306
307 /*
308  * pregexec and friends
309  */
310
311 #ifndef PERL_IN_XSUB_RE
312 /*
313  - pregexec - match a regexp against a string
314  */
315 I32
316 Perl_pregexec(pTHX_ REGEXP * const prog, char* stringarg, register char *strend,
317          char *strbeg, I32 minend, SV *screamer, U32 nosave)
318 /* strend: pointer to null at end of string */
319 /* strbeg: real beginning of string */
320 /* minend: end of match must be >=minend after stringarg. */
321 /* nosave: For optimizations. */
322 {
323     PERL_ARGS_ASSERT_PREGEXEC;
324
325     return
326         regexec_flags(prog, stringarg, strend, strbeg, minend, screamer, NULL,
327                       nosave ? 0 : REXEC_COPY_STR);
328 }
329 #endif
330
331 /*
332  * Need to implement the following flags for reg_anch:
333  *
334  * USE_INTUIT_NOML              - Useful to call re_intuit_start() first
335  * USE_INTUIT_ML
336  * INTUIT_AUTORITATIVE_NOML     - Can trust a positive answer
337  * INTUIT_AUTORITATIVE_ML
338  * INTUIT_ONCE_NOML             - Intuit can match in one location only.
339  * INTUIT_ONCE_ML
340  *
341  * Another flag for this function: SECOND_TIME (so that float substrs
342  * with giant delta may be not rechecked).
343  */
344
345 /* Assumptions: if ANCH_GPOS, then strpos is anchored. XXXX Check GPOS logic */
346
347 /* If SCREAM, then SvPVX_const(sv) should be compatible with strpos and strend.
348    Otherwise, only SvCUR(sv) is used to get strbeg. */
349
350 /* XXXX We assume that strpos is strbeg unless sv. */
351
352 /* XXXX Some places assume that there is a fixed substring.
353         An update may be needed if optimizer marks as "INTUITable"
354         RExen without fixed substrings.  Similarly, it is assumed that
355         lengths of all the strings are no more than minlen, thus they
356         cannot come from lookahead.
357         (Or minlen should take into account lookahead.) 
358   NOTE: Some of this comment is not correct. minlen does now take account
359   of lookahead/behind. Further research is required. -- demerphq
360
361 */
362
363 /* A failure to find a constant substring means that there is no need to make
364    an expensive call to REx engine, thus we celebrate a failure.  Similarly,
365    finding a substring too deep into the string means that less calls to
366    regtry() should be needed.
367
368    REx compiler's optimizer found 4 possible hints:
369         a) Anchored substring;
370         b) Fixed substring;
371         c) Whether we are anchored (beginning-of-line or \G);
372         d) First node (of those at offset 0) which may distingush positions;
373    We use a)b)d) and multiline-part of c), and try to find a position in the
374    string which does not contradict any of them.
375  */
376
377 /* Most of decisions we do here should have been done at compile time.
378    The nodes of the REx which we used for the search should have been
379    deleted from the finite automaton. */
380
381 char *
382 Perl_re_intuit_start(pTHX_ REGEXP * const rx, SV *sv, char *strpos,
383                      char *strend, const U32 flags, re_scream_pos_data *data)
384 {
385     dVAR;
386     struct regexp *const prog = (struct regexp *)SvANY(rx);
387     register I32 start_shift = 0;
388     /* Should be nonnegative! */
389     register I32 end_shift   = 0;
390     register char *s;
391     register SV *check;
392     char *strbeg;
393     char *t;
394     const bool do_utf8 = (sv && SvUTF8(sv)) ? 1 : 0; /* if no sv we have to assume bytes */
395     I32 ml_anch;
396     register char *other_last = NULL;   /* other substr checked before this */
397     char *check_at = NULL;              /* check substr found at this pos */
398     const I32 multiline = prog->extflags & RXf_PMf_MULTILINE;
399     RXi_GET_DECL(prog,progi);
400 #ifdef DEBUGGING
401     const char * const i_strpos = strpos;
402 #endif
403     GET_RE_DEBUG_FLAGS_DECL;
404
405     PERL_ARGS_ASSERT_RE_INTUIT_START;
406
407     RX_MATCH_UTF8_set(rx,do_utf8);
408
409     if (RX_UTF8(rx)) {
410         PL_reg_flags |= RF_utf8;
411     }
412     DEBUG_EXECUTE_r( 
413         debug_start_match(rx, do_utf8, strpos, strend, 
414             sv ? "Guessing start of match in sv for"
415                : "Guessing start of match in string for");
416               );
417
418     /* CHR_DIST() would be more correct here but it makes things slow. */
419     if (prog->minlen > strend - strpos) {
420         DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
421                               "String too short... [re_intuit_start]\n"));
422         goto fail;
423     }
424                 
425     strbeg = (sv && SvPOK(sv)) ? strend - SvCUR(sv) : strpos;
426     PL_regeol = strend;
427     if (do_utf8) {
428         if (!prog->check_utf8 && prog->check_substr)
429             to_utf8_substr(prog);
430         check = prog->check_utf8;
431     } else {
432         if (!prog->check_substr && prog->check_utf8)
433             to_byte_substr(prog);
434         check = prog->check_substr;
435     }
436     if (check == &PL_sv_undef) {
437         DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
438                 "Non-utf8 string cannot match utf8 check string\n"));
439         goto fail;
440     }
441     if (prog->extflags & RXf_ANCH) {    /* Match at beg-of-str or after \n */
442         ml_anch = !( (prog->extflags & RXf_ANCH_SINGLE)
443                      || ( (prog->extflags & RXf_ANCH_BOL)
444                           && !multiline ) );    /* Check after \n? */
445
446         if (!ml_anch) {
447           if ( !(prog->extflags & RXf_ANCH_GPOS) /* Checked by the caller */
448                 && !(prog->intflags & PREGf_IMPLICIT) /* not a real BOL */
449                /* SvCUR is not set on references: SvRV and SvPVX_const overlap */
450                && sv && !SvROK(sv)
451                && (strpos != strbeg)) {
452               DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Not at start...\n"));
453               goto fail;
454           }
455           if (prog->check_offset_min == prog->check_offset_max &&
456               !(prog->extflags & RXf_CANY_SEEN)) {
457             /* Substring at constant offset from beg-of-str... */
458             I32 slen;
459
460             s = HOP3c(strpos, prog->check_offset_min, strend);
461             
462             if (SvTAIL(check)) {
463                 slen = SvCUR(check);    /* >= 1 */
464
465                 if ( strend - s > slen || strend - s < slen - 1
466                      || (strend - s == slen && strend[-1] != '\n')) {
467                     DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "String too long...\n"));
468                     goto fail_finish;
469                 }
470                 /* Now should match s[0..slen-2] */
471                 slen--;
472                 if (slen && (*SvPVX_const(check) != *s
473                              || (slen > 1
474                                  && memNE(SvPVX_const(check), s, slen)))) {
475                   report_neq:
476                     DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "String not equal...\n"));
477                     goto fail_finish;
478                 }
479             }
480             else if (*SvPVX_const(check) != *s
481                      || ((slen = SvCUR(check)) > 1
482                          && memNE(SvPVX_const(check), s, slen)))
483                 goto report_neq;
484             check_at = s;
485             goto success_at_start;
486           }
487         }
488         /* Match is anchored, but substr is not anchored wrt beg-of-str. */
489         s = strpos;
490         start_shift = prog->check_offset_min; /* okay to underestimate on CC */
491         end_shift = prog->check_end_shift;
492         
493         if (!ml_anch) {
494             const I32 end = prog->check_offset_max + CHR_SVLEN(check)
495                                          - (SvTAIL(check) != 0);
496             const I32 eshift = CHR_DIST((U8*)strend, (U8*)s) - end;
497
498             if (end_shift < eshift)
499                 end_shift = eshift;
500         }
501     }
502     else {                              /* Can match at random position */
503         ml_anch = 0;
504         s = strpos;
505         start_shift = prog->check_offset_min;  /* okay to underestimate on CC */
506         end_shift = prog->check_end_shift;
507         
508         /* end shift should be non negative here */
509     }
510
511 #ifdef QDEBUGGING       /* 7/99: reports of failure (with the older version) */
512     if (end_shift < 0)
513         Perl_croak(aTHX_ "panic: end_shift: %"IVdf" pattern:\n%s\n ",
514                    (IV)end_shift, RX_PRECOMP(prog));
515 #endif
516
517   restart:
518     /* Find a possible match in the region s..strend by looking for
519        the "check" substring in the region corrected by start/end_shift. */
520     
521     {
522         I32 srch_start_shift = start_shift;
523         I32 srch_end_shift = end_shift;
524         if (srch_start_shift < 0 && strbeg - s > srch_start_shift) {
525             srch_end_shift -= ((strbeg - s) - srch_start_shift); 
526             srch_start_shift = strbeg - s;
527         }
528     DEBUG_OPTIMISE_MORE_r({
529         PerlIO_printf(Perl_debug_log, "Check offset min: %"IVdf" Start shift: %"IVdf" End shift %"IVdf" Real End Shift: %"IVdf"\n",
530             (IV)prog->check_offset_min,
531             (IV)srch_start_shift,
532             (IV)srch_end_shift, 
533             (IV)prog->check_end_shift);
534     });       
535         
536     if (flags & REXEC_SCREAM) {
537         I32 p = -1;                     /* Internal iterator of scream. */
538         I32 * const pp = data ? data->scream_pos : &p;
539
540         if (PL_screamfirst[BmRARE(check)] >= 0
541             || ( BmRARE(check) == '\n'
542                  && (BmPREVIOUS(check) == SvCUR(check) - 1)
543                  && SvTAIL(check) ))
544             s = screaminstr(sv, check,
545                             srch_start_shift + (s - strbeg), srch_end_shift, pp, 0);
546         else
547             goto fail_finish;
548         /* we may be pointing at the wrong string */
549         if (s && RXp_MATCH_COPIED(prog))
550             s = strbeg + (s - SvPVX_const(sv));
551         if (data)
552             *data->scream_olds = s;
553     }
554     else {
555         U8* start_point;
556         U8* end_point;
557         if (prog->extflags & RXf_CANY_SEEN) {
558             start_point= (U8*)(s + srch_start_shift);
559             end_point= (U8*)(strend - srch_end_shift);
560         } else {
561             start_point= HOP3(s, srch_start_shift, srch_start_shift < 0 ? strbeg : strend);
562             end_point= HOP3(strend, -srch_end_shift, strbeg);
563         }
564         DEBUG_OPTIMISE_MORE_r({
565             PerlIO_printf(Perl_debug_log, "fbm_instr len=%d str=<%.*s>\n", 
566                 (int)(end_point - start_point),
567                 (int)(end_point - start_point) > 20 ? 20 : (int)(end_point - start_point), 
568                 start_point);
569         });
570
571         s = fbm_instr( start_point, end_point,
572                       check, multiline ? FBMrf_MULTILINE : 0);
573     }
574     }
575     /* Update the count-of-usability, remove useless subpatterns,
576         unshift s.  */
577
578     DEBUG_EXECUTE_r({
579         RE_PV_QUOTED_DECL(quoted, do_utf8, PERL_DEBUG_PAD_ZERO(0), 
580             SvPVX_const(check), RE_SV_DUMPLEN(check), 30);
581         PerlIO_printf(Perl_debug_log, "%s %s substr %s%s%s",
582                           (s ? "Found" : "Did not find"),
583             (check == (do_utf8 ? prog->anchored_utf8 : prog->anchored_substr) 
584                 ? "anchored" : "floating"),
585             quoted,
586             RE_SV_TAIL(check),
587             (s ? " at offset " : "...\n") ); 
588     });
589
590     if (!s)
591         goto fail_finish;
592     /* Finish the diagnostic message */
593     DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%ld...\n", (long)(s - i_strpos)) );
594
595     /* XXX dmq: first branch is for positive lookbehind...
596        Our check string is offset from the beginning of the pattern.
597        So we need to do any stclass tests offset forward from that 
598        point. I think. :-(
599      */
600     
601         
602     
603     check_at=s;
604      
605
606     /* Got a candidate.  Check MBOL anchoring, and the *other* substr.
607        Start with the other substr.
608        XXXX no SCREAM optimization yet - and a very coarse implementation
609        XXXX /ttx+/ results in anchored="ttx", floating="x".  floating will
610                 *always* match.  Probably should be marked during compile...
611        Probably it is right to do no SCREAM here...
612      */
613
614     if (do_utf8 ? (prog->float_utf8 && prog->anchored_utf8) 
615                 : (prog->float_substr && prog->anchored_substr)) 
616     {
617         /* Take into account the "other" substring. */
618         /* XXXX May be hopelessly wrong for UTF... */
619         if (!other_last)
620             other_last = strpos;
621         if (check == (do_utf8 ? prog->float_utf8 : prog->float_substr)) {
622           do_other_anchored:
623             {
624                 char * const last = HOP3c(s, -start_shift, strbeg);
625                 char *last1, *last2;
626                 char * const saved_s = s;
627                 SV* must;
628
629                 t = s - prog->check_offset_max;
630                 if (s - strpos > prog->check_offset_max  /* signed-corrected t > strpos */
631                     && (!do_utf8
632                         || ((t = (char*)reghopmaybe3((U8*)s, -(prog->check_offset_max), (U8*)strpos))
633                             && t > strpos)))
634                     NOOP;
635                 else
636                     t = strpos;
637                 t = HOP3c(t, prog->anchored_offset, strend);
638                 if (t < other_last)     /* These positions already checked */
639                     t = other_last;
640                 last2 = last1 = HOP3c(strend, -prog->minlen, strbeg);
641                 if (last < last1)
642                     last1 = last;
643                 /* XXXX It is not documented what units *_offsets are in.  
644                    We assume bytes, but this is clearly wrong. 
645                    Meaning this code needs to be carefully reviewed for errors.
646                    dmq.
647                   */
648  
649                 /* On end-of-str: see comment below. */
650                 must = do_utf8 ? prog->anchored_utf8 : prog->anchored_substr;
651                 if (must == &PL_sv_undef) {
652                     s = (char*)NULL;
653                     DEBUG_r(must = prog->anchored_utf8);        /* for debug */
654                 }
655                 else
656                     s = fbm_instr(
657                         (unsigned char*)t,
658                         HOP3(HOP3(last1, prog->anchored_offset, strend)
659                                 + SvCUR(must), -(SvTAIL(must)!=0), strbeg),
660                         must,
661                         multiline ? FBMrf_MULTILINE : 0
662                     );
663                 DEBUG_EXECUTE_r({
664                     RE_PV_QUOTED_DECL(quoted, do_utf8, PERL_DEBUG_PAD_ZERO(0), 
665                         SvPVX_const(must), RE_SV_DUMPLEN(must), 30);
666                     PerlIO_printf(Perl_debug_log, "%s anchored substr %s%s",
667                         (s ? "Found" : "Contradicts"),
668                         quoted, RE_SV_TAIL(must));
669                 });                 
670                 
671                             
672                 if (!s) {
673                     if (last1 >= last2) {
674                         DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
675                                                 ", giving up...\n"));
676                         goto fail_finish;
677                     }
678                     DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
679                         ", trying floating at offset %ld...\n",
680                         (long)(HOP3c(saved_s, 1, strend) - i_strpos)));
681                     other_last = HOP3c(last1, prog->anchored_offset+1, strend);
682                     s = HOP3c(last, 1, strend);
683                     goto restart;
684                 }
685                 else {
686                     DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, " at offset %ld...\n",
687                           (long)(s - i_strpos)));
688                     t = HOP3c(s, -prog->anchored_offset, strbeg);
689                     other_last = HOP3c(s, 1, strend);
690                     s = saved_s;
691                     if (t == strpos)
692                         goto try_at_start;
693                     goto try_at_offset;
694                 }
695             }
696         }
697         else {          /* Take into account the floating substring. */
698             char *last, *last1;
699             char * const saved_s = s;
700             SV* must;
701
702             t = HOP3c(s, -start_shift, strbeg);
703             last1 = last =
704                 HOP3c(strend, -prog->minlen + prog->float_min_offset, strbeg);
705             if (CHR_DIST((U8*)last, (U8*)t) > prog->float_max_offset)
706                 last = HOP3c(t, prog->float_max_offset, strend);
707             s = HOP3c(t, prog->float_min_offset, strend);
708             if (s < other_last)
709                 s = other_last;
710  /* XXXX It is not documented what units *_offsets are in.  Assume bytes.  */
711             must = do_utf8 ? prog->float_utf8 : prog->float_substr;
712             /* fbm_instr() takes into account exact value of end-of-str
713                if the check is SvTAIL(ed).  Since false positives are OK,
714                and end-of-str is not later than strend we are OK. */
715             if (must == &PL_sv_undef) {
716                 s = (char*)NULL;
717                 DEBUG_r(must = prog->float_utf8);       /* for debug message */
718             }
719             else
720                 s = fbm_instr((unsigned char*)s,
721                               (unsigned char*)last + SvCUR(must)
722                                   - (SvTAIL(must)!=0),
723                               must, multiline ? FBMrf_MULTILINE : 0);
724             DEBUG_EXECUTE_r({
725                 RE_PV_QUOTED_DECL(quoted, do_utf8, PERL_DEBUG_PAD_ZERO(0), 
726                     SvPVX_const(must), RE_SV_DUMPLEN(must), 30);
727                 PerlIO_printf(Perl_debug_log, "%s floating substr %s%s",
728                     (s ? "Found" : "Contradicts"),
729                     quoted, RE_SV_TAIL(must));
730             });
731             if (!s) {
732                 if (last1 == last) {
733                     DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
734                                             ", giving up...\n"));
735                     goto fail_finish;
736                 }
737                 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
738                     ", trying anchored starting at offset %ld...\n",
739                     (long)(saved_s + 1 - i_strpos)));
740                 other_last = last;
741                 s = HOP3c(t, 1, strend);
742                 goto restart;
743             }
744             else {
745                 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, " at offset %ld...\n",
746                       (long)(s - i_strpos)));
747                 other_last = s; /* Fix this later. --Hugo */
748                 s = saved_s;
749                 if (t == strpos)
750                     goto try_at_start;
751                 goto try_at_offset;
752             }
753         }
754     }
755
756     
757     t= (char*)HOP3( s, -prog->check_offset_max, (prog->check_offset_max<0) ? strend : strpos);
758         
759     DEBUG_OPTIMISE_MORE_r(
760         PerlIO_printf(Perl_debug_log, 
761             "Check offset min:%"IVdf" max:%"IVdf" S:%"IVdf" t:%"IVdf" D:%"IVdf" end:%"IVdf"\n",
762             (IV)prog->check_offset_min,
763             (IV)prog->check_offset_max,
764             (IV)(s-strpos),
765             (IV)(t-strpos),
766             (IV)(t-s),
767             (IV)(strend-strpos)
768         )
769     );
770
771     if (s - strpos > prog->check_offset_max  /* signed-corrected t > strpos */
772         && (!do_utf8
773             || ((t = (char*)reghopmaybe3((U8*)s, -prog->check_offset_max, (U8*) ((prog->check_offset_max<0) ? strend : strpos)))
774                  && t > strpos))) 
775     {
776         /* Fixed substring is found far enough so that the match
777            cannot start at strpos. */
778       try_at_offset:
779         if (ml_anch && t[-1] != '\n') {
780             /* Eventually fbm_*() should handle this, but often
781                anchored_offset is not 0, so this check will not be wasted. */
782             /* XXXX In the code below we prefer to look for "^" even in
783                presence of anchored substrings.  And we search even
784                beyond the found float position.  These pessimizations
785                are historical artefacts only.  */
786           find_anchor:
787             while (t < strend - prog->minlen) {
788                 if (*t == '\n') {
789                     if (t < check_at - prog->check_offset_min) {
790                         if (do_utf8 ? prog->anchored_utf8 : prog->anchored_substr) {
791                             /* Since we moved from the found position,
792                                we definitely contradict the found anchored
793                                substr.  Due to the above check we do not
794                                contradict "check" substr.
795                                Thus we can arrive here only if check substr
796                                is float.  Redo checking for "other"=="fixed".
797                              */
798                             strpos = t + 1;                     
799                             DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Found /%s^%s/m at offset %ld, rescanning for anchored from offset %ld...\n",
800                                 PL_colors[0], PL_colors[1], (long)(strpos - i_strpos), (long)(strpos - i_strpos + prog->anchored_offset)));
801                             goto do_other_anchored;
802                         }
803                         /* We don't contradict the found floating substring. */
804                         /* XXXX Why not check for STCLASS? */
805                         s = t + 1;
806                         DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Found /%s^%s/m at offset %ld...\n",
807                             PL_colors[0], PL_colors[1], (long)(s - i_strpos)));
808                         goto set_useful;
809                     }
810                     /* Position contradicts check-string */
811                     /* XXXX probably better to look for check-string
812                        than for "\n", so one should lower the limit for t? */
813                     DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Found /%s^%s/m, restarting lookup for check-string at offset %ld...\n",
814                         PL_colors[0], PL_colors[1], (long)(t + 1 - i_strpos)));
815                     other_last = strpos = s = t + 1;
816                     goto restart;
817                 }
818                 t++;
819             }
820             DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Did not find /%s^%s/m...\n",
821                         PL_colors[0], PL_colors[1]));
822             goto fail_finish;
823         }
824         else {
825             DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Starting position does not contradict /%s^%s/m...\n",
826                         PL_colors[0], PL_colors[1]));
827         }
828         s = t;
829       set_useful:
830         ++BmUSEFUL(do_utf8 ? prog->check_utf8 : prog->check_substr);    /* hooray/5 */
831     }
832     else {
833         /* The found string does not prohibit matching at strpos,
834            - no optimization of calling REx engine can be performed,
835            unless it was an MBOL and we are not after MBOL,
836            or a future STCLASS check will fail this. */
837       try_at_start:
838         /* Even in this situation we may use MBOL flag if strpos is offset
839            wrt the start of the string. */
840         if (ml_anch && sv && !SvROK(sv) /* See prev comment on SvROK */
841             && (strpos != strbeg) && strpos[-1] != '\n'
842             /* May be due to an implicit anchor of m{.*foo}  */
843             && !(prog->intflags & PREGf_IMPLICIT))
844         {
845             t = strpos;
846             goto find_anchor;
847         }
848         DEBUG_EXECUTE_r( if (ml_anch)
849             PerlIO_printf(Perl_debug_log, "Position at offset %ld does not contradict /%s^%s/m...\n",
850                           (long)(strpos - i_strpos), PL_colors[0], PL_colors[1]);
851         );
852       success_at_start:
853         if (!(prog->intflags & PREGf_NAUGHTY)   /* XXXX If strpos moved? */
854             && (do_utf8 ? (
855                 prog->check_utf8                /* Could be deleted already */
856                 && --BmUSEFUL(prog->check_utf8) < 0
857                 && (prog->check_utf8 == prog->float_utf8)
858             ) : (
859                 prog->check_substr              /* Could be deleted already */
860                 && --BmUSEFUL(prog->check_substr) < 0
861                 && (prog->check_substr == prog->float_substr)
862             )))
863         {
864             /* If flags & SOMETHING - do not do it many times on the same match */
865             DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "... Disabling check substring...\n"));
866             SvREFCNT_dec(do_utf8 ? prog->check_utf8 : prog->check_substr);
867             if (do_utf8 ? prog->check_substr : prog->check_utf8)
868                 SvREFCNT_dec(do_utf8 ? prog->check_substr : prog->check_utf8);
869             prog->check_substr = prog->check_utf8 = NULL;       /* disable */
870             prog->float_substr = prog->float_utf8 = NULL;       /* clear */
871             check = NULL;                       /* abort */
872             s = strpos;
873             /* XXXX This is a remnant of the old implementation.  It
874                     looks wasteful, since now INTUIT can use many
875                     other heuristics. */
876             prog->extflags &= ~RXf_USE_INTUIT;
877         }
878         else
879             s = strpos;
880     }
881
882     /* Last resort... */
883     /* XXXX BmUSEFUL already changed, maybe multiple change is meaningful... */
884     /* trie stclasses are too expensive to use here, we are better off to
885        leave it to regmatch itself */
886     if (progi->regstclass && PL_regkind[OP(progi->regstclass)]!=TRIE) {
887         /* minlen == 0 is possible if regstclass is \b or \B,
888            and the fixed substr is ''$.
889            Since minlen is already taken into account, s+1 is before strend;
890            accidentally, minlen >= 1 guaranties no false positives at s + 1
891            even for \b or \B.  But (minlen? 1 : 0) below assumes that
892            regstclass does not come from lookahead...  */
893         /* If regstclass takes bytelength more than 1: If charlength==1, OK.
894            This leaves EXACTF only, which is dealt with in find_byclass().  */
895         const U8* const str = (U8*)STRING(progi->regstclass);
896         const int cl_l = (PL_regkind[OP(progi->regstclass)] == EXACT
897                     ? CHR_DIST(str+STR_LEN(progi->regstclass), str)
898                     : 1);
899         char * endpos;
900         if (prog->anchored_substr || prog->anchored_utf8 || ml_anch)
901             endpos= HOP3c(s, (prog->minlen ? cl_l : 0), strend);
902         else if (prog->float_substr || prog->float_utf8)
903             endpos= HOP3c(HOP3c(check_at, -start_shift, strbeg), cl_l, strend);
904         else 
905             endpos= strend;
906                     
907         DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "start_shift: %"IVdf" check_at: %"IVdf" s: %"IVdf" endpos: %"IVdf"\n",
908                                       (IV)start_shift, (IV)(check_at - strbeg), (IV)(s - strbeg), (IV)(endpos - strbeg)));
909         
910         t = s;
911         s = find_byclass(prog, progi->regstclass, s, endpos, NULL);
912         if (!s) {
913 #ifdef DEBUGGING
914             const char *what = NULL;
915 #endif
916             if (endpos == strend) {
917                 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
918                                 "Could not match STCLASS...\n") );
919                 goto fail;
920             }
921             DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
922                                    "This position contradicts STCLASS...\n") );
923             if ((prog->extflags & RXf_ANCH) && !ml_anch)
924                 goto fail;
925             /* Contradict one of substrings */
926             if (prog->anchored_substr || prog->anchored_utf8) {
927                 if ((do_utf8 ? prog->anchored_utf8 : prog->anchored_substr) == check) {
928                     DEBUG_EXECUTE_r( what = "anchored" );
929                   hop_and_restart:
930                     s = HOP3c(t, 1, strend);
931                     if (s + start_shift + end_shift > strend) {
932                         /* XXXX Should be taken into account earlier? */
933                         DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
934                                                "Could not match STCLASS...\n") );
935                         goto fail;
936                     }
937                     if (!check)
938                         goto giveup;
939                     DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
940                                 "Looking for %s substr starting at offset %ld...\n",
941                                  what, (long)(s + start_shift - i_strpos)) );
942                     goto restart;
943                 }
944                 /* Have both, check_string is floating */
945                 if (t + start_shift >= check_at) /* Contradicts floating=check */
946                     goto retry_floating_check;
947                 /* Recheck anchored substring, but not floating... */
948                 s = check_at;
949                 if (!check)
950                     goto giveup;
951                 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
952                           "Looking for anchored substr starting at offset %ld...\n",
953                           (long)(other_last - i_strpos)) );
954                 goto do_other_anchored;
955             }
956             /* Another way we could have checked stclass at the
957                current position only: */
958             if (ml_anch) {
959                 s = t = t + 1;
960                 if (!check)
961                     goto giveup;
962                 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
963                           "Looking for /%s^%s/m starting at offset %ld...\n",
964                           PL_colors[0], PL_colors[1], (long)(t - i_strpos)) );
965                 goto try_at_offset;
966             }
967             if (!(do_utf8 ? prog->float_utf8 : prog->float_substr))     /* Could have been deleted */
968                 goto fail;
969             /* Check is floating subtring. */
970           retry_floating_check:
971             t = check_at - start_shift;
972             DEBUG_EXECUTE_r( what = "floating" );
973             goto hop_and_restart;
974         }
975         if (t != s) {
976             DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
977                         "By STCLASS: moving %ld --> %ld\n",
978                                   (long)(t - i_strpos), (long)(s - i_strpos))
979                    );
980         }
981         else {
982             DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
983                                   "Does not contradict STCLASS...\n"); 
984                    );
985         }
986     }
987   giveup:
988     DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%s%s:%s match at offset %ld\n",
989                           PL_colors[4], (check ? "Guessed" : "Giving up"),
990                           PL_colors[5], (long)(s - i_strpos)) );
991     return s;
992
993   fail_finish:                          /* Substring not found */
994     if (prog->check_substr || prog->check_utf8)         /* could be removed already */
995         BmUSEFUL(do_utf8 ? prog->check_utf8 : prog->check_substr) += 5; /* hooray */
996   fail:
997     DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%sMatch rejected by optimizer%s\n",
998                           PL_colors[4], PL_colors[5]));
999     return NULL;
1000 }
1001
1002 #define DECL_TRIE_TYPE(scan) \
1003     const enum { trie_plain, trie_utf8, trie_utf8_fold, trie_latin_utf8_fold } \
1004                     trie_type = (scan->flags != EXACT) \
1005                               ? (do_utf8 ? trie_utf8_fold : (UTF ? trie_latin_utf8_fold : trie_plain)) \
1006                               : (do_utf8 ? trie_utf8 : trie_plain)
1007
1008 #define REXEC_TRIE_READ_CHAR(trie_type, trie, widecharmap, uc, uscan, len,  \
1009 uvc, charid, foldlen, foldbuf, uniflags) STMT_START {                       \
1010     UV uvc_unfolded = 0;                                                    \
1011     switch (trie_type) {                                                    \
1012     case trie_utf8_fold:                                                    \
1013         if ( foldlen>0 ) {                                                  \
1014             uvc_unfolded = uvc = utf8n_to_uvuni( uscan, UTF8_MAXLEN, &len, uniflags ); \
1015             foldlen -= len;                                                 \
1016             uscan += len;                                                   \
1017             len=0;                                                          \
1018         } else {                                                            \
1019             uvc_unfolded = uvc = utf8n_to_uvuni( (U8*)uc, UTF8_MAXLEN, &len, uniflags ); \
1020             uvc = to_uni_fold( uvc, foldbuf, &foldlen );                    \
1021             foldlen -= UNISKIP( uvc );                                      \
1022             uscan = foldbuf + UNISKIP( uvc );                               \
1023         }                                                                   \
1024         break;                                                              \
1025     case trie_latin_utf8_fold:                                              \
1026         if ( foldlen>0 ) {                                                  \
1027             uvc = utf8n_to_uvuni( uscan, UTF8_MAXLEN, &len, uniflags );     \
1028             foldlen -= len;                                                 \
1029             uscan += len;                                                   \
1030             len=0;                                                          \
1031         } else {                                                            \
1032             len = 1;                                                        \
1033             uvc = to_uni_fold( *(U8*)uc, foldbuf, &foldlen );               \
1034             foldlen -= UNISKIP( uvc );                                      \
1035             uscan = foldbuf + UNISKIP( uvc );                               \
1036         }                                                                   \
1037         break;                                                              \
1038     case trie_utf8:                                                         \
1039         uvc = utf8n_to_uvuni( (U8*)uc, UTF8_MAXLEN, &len, uniflags );       \
1040         break;                                                              \
1041     case trie_plain:                                                        \
1042         uvc = (UV)*uc;                                                      \
1043         len = 1;                                                            \
1044     }                                                                       \
1045                                                                             \
1046     if (uvc < 256) {                                                        \
1047         charid = trie->charmap[ uvc ];                                      \
1048     }                                                                       \
1049     else {                                                                  \
1050         charid = 0;                                                         \
1051         if (widecharmap) {                                                  \
1052             SV** const svpp = hv_fetch(widecharmap,                         \
1053                         (char*)&uvc, sizeof(UV), 0);                        \
1054             if (svpp)                                                       \
1055                 charid = (U16)SvIV(*svpp);                                  \
1056         }                                                                   \
1057     }                                                                       \
1058     if (!charid && trie_type == trie_utf8_fold && !UTF) {                   \
1059         charid = trie->charmap[uvc_unfolded];                               \
1060     }                                                                       \
1061 } STMT_END
1062
1063 #define REXEC_FBC_EXACTISH_CHECK(CoNd)                 \
1064 {                                                      \
1065     char *my_strend= (char *)strend;                   \
1066     if ( (CoNd)                                        \
1067          && (ln == len ||                              \
1068              !ibcmp_utf8(s, &my_strend, 0,  do_utf8,   \
1069                         m, NULL, ln, (bool)UTF))       \
1070          && (!reginfo || regtry(reginfo, &s)) )        \
1071         goto got_it;                                   \
1072     else {                                             \
1073          U8 foldbuf[UTF8_MAXBYTES_CASE+1];             \
1074          uvchr_to_utf8(tmpbuf, c);                     \
1075          f = to_utf8_fold(tmpbuf, foldbuf, &foldlen);  \
1076          if ( f != c                                   \
1077               && (f == c1 || f == c2)                  \
1078               && (ln == len ||                         \
1079                 !ibcmp_utf8(s, &my_strend, 0,  do_utf8,\
1080                               m, NULL, ln, (bool)UTF)) \
1081               && (!reginfo || regtry(reginfo, &s)) )   \
1082               goto got_it;                             \
1083     }                                                  \
1084 }                                                      \
1085 s += len
1086
1087 #define REXEC_FBC_EXACTISH_SCAN(CoNd)                     \
1088 STMT_START {                                              \
1089     while (s <= e) {                                      \
1090         if ( (CoNd)                                       \
1091              && (ln == 1 || !(OP(c) == EXACTF             \
1092                               ? ibcmp(s, m, ln)           \
1093                               : ibcmp_locale(s, m, ln)))  \
1094              && (!reginfo || regtry(reginfo, &s)) )        \
1095             goto got_it;                                  \
1096         s++;                                              \
1097     }                                                     \
1098 } STMT_END
1099
1100 #define REXEC_FBC_UTF8_SCAN(CoDe)                     \
1101 STMT_START {                                          \
1102     while (s + (uskip = UTF8SKIP(s)) <= strend) {     \
1103         CoDe                                          \
1104         s += uskip;                                   \
1105     }                                                 \
1106 } STMT_END
1107
1108 #define REXEC_FBC_SCAN(CoDe)                          \
1109 STMT_START {                                          \
1110     while (s < strend) {                              \
1111         CoDe                                          \
1112         s++;                                          \
1113     }                                                 \
1114 } STMT_END
1115
1116 #define REXEC_FBC_UTF8_CLASS_SCAN(CoNd)               \
1117 REXEC_FBC_UTF8_SCAN(                                  \
1118     if (CoNd) {                                       \
1119         if (tmp && (!reginfo || regtry(reginfo, &s)))  \
1120             goto got_it;                              \
1121         else                                          \
1122             tmp = doevery;                            \
1123     }                                                 \
1124     else                                              \
1125         tmp = 1;                                      \
1126 )
1127
1128 #define REXEC_FBC_CLASS_SCAN(CoNd)                    \
1129 REXEC_FBC_SCAN(                                       \
1130     if (CoNd) {                                       \
1131         if (tmp && (!reginfo || regtry(reginfo, &s)))  \
1132             goto got_it;                              \
1133         else                                          \
1134             tmp = doevery;                            \
1135     }                                                 \
1136     else                                              \
1137         tmp = 1;                                      \
1138 )
1139
1140 #define REXEC_FBC_TRYIT               \
1141 if ((!reginfo || regtry(reginfo, &s))) \
1142     goto got_it
1143
1144 #define REXEC_FBC_CSCAN(CoNdUtF8,CoNd)                         \
1145     if (do_utf8) {                                             \
1146         REXEC_FBC_UTF8_CLASS_SCAN(CoNdUtF8);                   \
1147     }                                                          \
1148     else {                                                     \
1149         REXEC_FBC_CLASS_SCAN(CoNd);                            \
1150     }                                                          \
1151     break
1152     
1153 #define REXEC_FBC_CSCAN_PRELOAD(UtFpReLoAd,CoNdUtF8,CoNd)      \
1154     if (do_utf8) {                                             \
1155         UtFpReLoAd;                                            \
1156         REXEC_FBC_UTF8_CLASS_SCAN(CoNdUtF8);                   \
1157     }                                                          \
1158     else {                                                     \
1159         REXEC_FBC_CLASS_SCAN(CoNd);                            \
1160     }                                                          \
1161     break
1162
1163 #define REXEC_FBC_CSCAN_TAINT(CoNdUtF8,CoNd)                   \
1164     PL_reg_flags |= RF_tainted;                                \
1165     if (do_utf8) {                                             \
1166         REXEC_FBC_UTF8_CLASS_SCAN(CoNdUtF8);                   \
1167     }                                                          \
1168     else {                                                     \
1169         REXEC_FBC_CLASS_SCAN(CoNd);                            \
1170     }                                                          \
1171     break
1172
1173 #define DUMP_EXEC_POS(li,s,doutf8) \
1174     dump_exec_pos(li,s,(PL_regeol),(PL_bostr),(PL_reg_starttry),doutf8)
1175
1176 /* We know what class REx starts with.  Try to find this position... */
1177 /* if reginfo is NULL, its a dryrun */
1178 /* annoyingly all the vars in this routine have different names from their counterparts
1179    in regmatch. /grrr */
1180
1181 STATIC char *
1182 S_find_byclass(pTHX_ regexp * prog, const regnode *c, char *s, 
1183     const char *strend, regmatch_info *reginfo)
1184 {
1185         dVAR;
1186         const I32 doevery = (prog->intflags & PREGf_SKIP) == 0;
1187         char *m;
1188         STRLEN ln;
1189         STRLEN lnc;
1190         register STRLEN uskip;
1191         unsigned int c1;
1192         unsigned int c2;
1193         char *e;
1194         register I32 tmp = 1;   /* Scratch variable? */
1195         register const bool do_utf8 = PL_reg_match_utf8;
1196         RXi_GET_DECL(prog,progi);
1197
1198         PERL_ARGS_ASSERT_FIND_BYCLASS;
1199         
1200         /* We know what class it must start with. */
1201         switch (OP(c)) {
1202         case ANYOF:
1203             if (do_utf8) {
1204                  REXEC_FBC_UTF8_CLASS_SCAN((ANYOF_FLAGS(c) & ANYOF_UNICODE) ||
1205                           !UTF8_IS_INVARIANT((U8)s[0]) ?
1206                           reginclass(prog, c, (U8*)s, 0, do_utf8) :
1207                           REGINCLASS(prog, c, (U8*)s));
1208             }
1209             else {
1210                  while (s < strend) {
1211                       STRLEN skip = 1;
1212
1213                       if (REGINCLASS(prog, c, (U8*)s) ||
1214                           (ANYOF_FOLD_SHARP_S(c, s, strend) &&
1215                            /* The assignment of 2 is intentional:
1216                             * for the folded sharp s, the skip is 2. */
1217                            (skip = SHARP_S_SKIP))) {
1218                            if (tmp && (!reginfo || regtry(reginfo, &s)))
1219                                 goto got_it;
1220                            else
1221                                 tmp = doevery;
1222                       }
1223                       else 
1224                            tmp = 1;
1225                       s += skip;
1226                  }
1227             }
1228             break;
1229         case CANY:
1230             REXEC_FBC_SCAN(
1231                 if (tmp && (!reginfo || regtry(reginfo, &s)))
1232                     goto got_it;
1233                 else
1234                     tmp = doevery;
1235             );
1236             break;
1237         case EXACTF:
1238             m   = STRING(c);
1239             ln  = STR_LEN(c);   /* length to match in octets/bytes */
1240             lnc = (I32) ln;     /* length to match in characters */
1241             if (UTF) {
1242                 STRLEN ulen1, ulen2;
1243                 U8 *sm = (U8 *) m;
1244                 U8 tmpbuf1[UTF8_MAXBYTES_CASE+1];
1245                 U8 tmpbuf2[UTF8_MAXBYTES_CASE+1];
1246                 /* used by commented-out code below */
1247                 /*const U32 uniflags = UTF8_ALLOW_DEFAULT;*/
1248                 
1249                 /* XXX: Since the node will be case folded at compile
1250                    time this logic is a little odd, although im not 
1251                    sure that its actually wrong. --dmq */
1252                    
1253                 c1 = to_utf8_lower((U8*)m, tmpbuf1, &ulen1);
1254                 c2 = to_utf8_upper((U8*)m, tmpbuf2, &ulen2);
1255
1256                 /* XXX: This is kinda strange. to_utf8_XYZ returns the 
1257                    codepoint of the first character in the converted
1258                    form, yet originally we did the extra step. 
1259                    No tests fail by commenting this code out however
1260                    so Ive left it out. -- dmq.
1261                    
1262                 c1 = utf8n_to_uvchr(tmpbuf1, UTF8_MAXBYTES_CASE, 
1263                                     0, uniflags);
1264                 c2 = utf8n_to_uvchr(tmpbuf2, UTF8_MAXBYTES_CASE,
1265                                     0, uniflags);
1266                 */
1267                 
1268                 lnc = 0;
1269                 while (sm < ((U8 *) m + ln)) {
1270                     lnc++;
1271                     sm += UTF8SKIP(sm);
1272                 }
1273             }
1274             else {
1275                 c1 = *(U8*)m;
1276                 c2 = PL_fold[c1];
1277             }
1278             goto do_exactf;
1279         case EXACTFL:
1280             m   = STRING(c);
1281             ln  = STR_LEN(c);
1282             lnc = (I32) ln;
1283             c1 = *(U8*)m;
1284             c2 = PL_fold_locale[c1];
1285           do_exactf:
1286             e = HOP3c(strend, -((I32)lnc), s);
1287
1288             if (!reginfo && e < s)
1289                 e = s;                  /* Due to minlen logic of intuit() */
1290
1291             /* The idea in the EXACTF* cases is to first find the
1292              * first character of the EXACTF* node and then, if
1293              * necessary, case-insensitively compare the full
1294              * text of the node.  The c1 and c2 are the first
1295              * characters (though in Unicode it gets a bit
1296              * more complicated because there are more cases
1297              * than just upper and lower: one needs to use
1298              * the so-called folding case for case-insensitive
1299              * matching (called "loose matching" in Unicode).
1300              * ibcmp_utf8() will do just that. */
1301
1302             if (do_utf8 || UTF) {
1303                 UV c, f;
1304                 U8 tmpbuf [UTF8_MAXBYTES+1];
1305                 STRLEN len = 1;
1306                 STRLEN foldlen;
1307                 const U32 uniflags = UTF8_ALLOW_DEFAULT;
1308                 if (c1 == c2) {
1309                     /* Upper and lower of 1st char are equal -
1310                      * probably not a "letter". */
1311                     while (s <= e) {
1312                         if (do_utf8) {
1313                             c = utf8n_to_uvchr((U8*)s, UTF8_MAXBYTES, &len,
1314                                            uniflags);
1315                         } else {
1316                             c = *((U8*)s);
1317                         }                                         
1318                         REXEC_FBC_EXACTISH_CHECK(c == c1);
1319                     }
1320                 }
1321                 else {
1322                     while (s <= e) {
1323                         if (do_utf8) {
1324                             c = utf8n_to_uvchr((U8*)s, UTF8_MAXBYTES, &len,
1325                                            uniflags);
1326                         } else {
1327                             c = *((U8*)s);
1328                         }
1329
1330                         /* Handle some of the three Greek sigmas cases.
1331                          * Note that not all the possible combinations
1332                          * are handled here: some of them are handled
1333                          * by the standard folding rules, and some of
1334                          * them (the character class or ANYOF cases)
1335                          * are handled during compiletime in
1336                          * regexec.c:S_regclass(). */
1337                         if (c == (UV)UNICODE_GREEK_CAPITAL_LETTER_SIGMA ||
1338                             c == (UV)UNICODE_GREEK_SMALL_LETTER_FINAL_SIGMA)
1339                             c = (UV)UNICODE_GREEK_SMALL_LETTER_SIGMA;
1340
1341                         REXEC_FBC_EXACTISH_CHECK(c == c1 || c == c2);
1342                     }
1343                 }
1344             }
1345             else {
1346                 /* Neither pattern nor string are UTF8 */
1347                 if (c1 == c2)
1348                     REXEC_FBC_EXACTISH_SCAN(*(U8*)s == c1);
1349                 else
1350                     REXEC_FBC_EXACTISH_SCAN(*(U8*)s == c1 || *(U8*)s == c2);
1351             }
1352             break;
1353         case BOUNDL:
1354             PL_reg_flags |= RF_tainted;
1355             /* FALL THROUGH */
1356         case BOUND:
1357             if (do_utf8) {
1358                 if (s == PL_bostr)
1359                     tmp = '\n';
1360                 else {
1361                     U8 * const r = reghop3((U8*)s, -1, (U8*)PL_bostr);
1362                     tmp = utf8n_to_uvchr(r, UTF8SKIP(r), 0, UTF8_ALLOW_DEFAULT);
1363                 }
1364                 tmp = ((OP(c) == BOUND ?
1365                         isALNUM_uni(tmp) : isALNUM_LC_uvchr(UNI_TO_NATIVE(tmp))) != 0);
1366                 LOAD_UTF8_CHARCLASS_ALNUM();
1367                 REXEC_FBC_UTF8_SCAN(
1368                     if (tmp == !(OP(c) == BOUND ?
1369                                  (bool)swash_fetch(PL_utf8_alnum, (U8*)s, do_utf8) :
1370                                  isALNUM_LC_utf8((U8*)s)))
1371                     {
1372                         tmp = !tmp;
1373                         REXEC_FBC_TRYIT;
1374                 }
1375                 );
1376             }
1377             else {
1378                 tmp = (s != PL_bostr) ? UCHARAT(s - 1) : '\n';
1379                 tmp = ((OP(c) == BOUND ? isALNUM(tmp) : isALNUM_LC(tmp)) != 0);
1380                 REXEC_FBC_SCAN(
1381                     if (tmp ==
1382                         !(OP(c) == BOUND ? isALNUM(*s) : isALNUM_LC(*s))) {
1383                         tmp = !tmp;
1384                         REXEC_FBC_TRYIT;
1385                 }
1386                 );
1387             }
1388             if ((!prog->minlen && tmp) && (!reginfo || regtry(reginfo, &s)))
1389                 goto got_it;
1390             break;
1391         case NBOUNDL:
1392             PL_reg_flags |= RF_tainted;
1393             /* FALL THROUGH */
1394         case NBOUND:
1395             if (do_utf8) {
1396                 if (s == PL_bostr)
1397                     tmp = '\n';
1398                 else {
1399                     U8 * const r = reghop3((U8*)s, -1, (U8*)PL_bostr);
1400                     tmp = utf8n_to_uvchr(r, UTF8SKIP(r), 0, UTF8_ALLOW_DEFAULT);
1401                 }
1402                 tmp = ((OP(c) == NBOUND ?
1403                         isALNUM_uni(tmp) : isALNUM_LC_uvchr(UNI_TO_NATIVE(tmp))) != 0);
1404                 LOAD_UTF8_CHARCLASS_ALNUM();
1405                 REXEC_FBC_UTF8_SCAN(
1406                     if (tmp == !(OP(c) == NBOUND ?
1407                                  (bool)swash_fetch(PL_utf8_alnum, (U8*)s, do_utf8) :
1408                                  isALNUM_LC_utf8((U8*)s)))
1409                         tmp = !tmp;
1410                     else REXEC_FBC_TRYIT;
1411                 );
1412             }
1413             else {
1414                 tmp = (s != PL_bostr) ? UCHARAT(s - 1) : '\n';
1415                 tmp = ((OP(c) == NBOUND ?
1416                         isALNUM(tmp) : isALNUM_LC(tmp)) != 0);
1417                 REXEC_FBC_SCAN(
1418                     if (tmp ==
1419                         !(OP(c) == NBOUND ? isALNUM(*s) : isALNUM_LC(*s)))
1420                         tmp = !tmp;
1421                     else REXEC_FBC_TRYIT;
1422                 );
1423             }
1424             if ((!prog->minlen && !tmp) && (!reginfo || regtry(reginfo, &s)))
1425                 goto got_it;
1426             break;
1427         case ALNUM:
1428             REXEC_FBC_CSCAN_PRELOAD(
1429                 LOAD_UTF8_CHARCLASS_ALNUM(),
1430                 swash_fetch(PL_utf8_alnum, (U8*)s, do_utf8),
1431                 isALNUM(*s)
1432             );
1433         case ALNUML:
1434             REXEC_FBC_CSCAN_TAINT(
1435                 isALNUM_LC_utf8((U8*)s),
1436                 isALNUM_LC(*s)
1437             );
1438         case NALNUM:
1439             REXEC_FBC_CSCAN_PRELOAD(
1440                 LOAD_UTF8_CHARCLASS_ALNUM(),
1441                 !swash_fetch(PL_utf8_alnum, (U8*)s, do_utf8),
1442                 !isALNUM(*s)
1443             );
1444         case NALNUML:
1445             REXEC_FBC_CSCAN_TAINT(
1446                 !isALNUM_LC_utf8((U8*)s),
1447                 !isALNUM_LC(*s)
1448             );
1449         case SPACE:
1450             REXEC_FBC_CSCAN_PRELOAD(
1451                 LOAD_UTF8_CHARCLASS_SPACE(),
1452                 *s == ' ' || swash_fetch(PL_utf8_space,(U8*)s, do_utf8),
1453                 isSPACE(*s)
1454             );
1455         case SPACEL:
1456             REXEC_FBC_CSCAN_TAINT(
1457                 *s == ' ' || isSPACE_LC_utf8((U8*)s),
1458                 isSPACE_LC(*s)
1459             );
1460         case NSPACE:
1461             REXEC_FBC_CSCAN_PRELOAD(
1462                 LOAD_UTF8_CHARCLASS_SPACE(),
1463                 !(*s == ' ' || swash_fetch(PL_utf8_space,(U8*)s, do_utf8)),
1464                 !isSPACE(*s)
1465             );
1466         case NSPACEL:
1467             REXEC_FBC_CSCAN_TAINT(
1468                 !(*s == ' ' || isSPACE_LC_utf8((U8*)s)),
1469                 !isSPACE_LC(*s)
1470             );
1471         case DIGIT:
1472             REXEC_FBC_CSCAN_PRELOAD(
1473                 LOAD_UTF8_CHARCLASS_DIGIT(),
1474                 swash_fetch(PL_utf8_digit,(U8*)s, do_utf8),
1475                 isDIGIT(*s)
1476             );
1477         case DIGITL:
1478             REXEC_FBC_CSCAN_TAINT(
1479                 isDIGIT_LC_utf8((U8*)s),
1480                 isDIGIT_LC(*s)
1481             );
1482         case NDIGIT:
1483             REXEC_FBC_CSCAN_PRELOAD(
1484                 LOAD_UTF8_CHARCLASS_DIGIT(),
1485                 !swash_fetch(PL_utf8_digit,(U8*)s, do_utf8),
1486                 !isDIGIT(*s)
1487             );
1488         case NDIGITL:
1489             REXEC_FBC_CSCAN_TAINT(
1490                 !isDIGIT_LC_utf8((U8*)s),
1491                 !isDIGIT_LC(*s)
1492             );
1493         case LNBREAK:
1494             REXEC_FBC_CSCAN(
1495                 is_LNBREAK_utf8(s),
1496                 is_LNBREAK_latin1(s)
1497             );
1498         case VERTWS:
1499             REXEC_FBC_CSCAN(
1500                 is_VERTWS_utf8(s),
1501                 is_VERTWS_latin1(s)
1502             );
1503         case NVERTWS:
1504             REXEC_FBC_CSCAN(
1505                 !is_VERTWS_utf8(s),
1506                 !is_VERTWS_latin1(s)
1507             );
1508         case HORIZWS:
1509             REXEC_FBC_CSCAN(
1510                 is_HORIZWS_utf8(s),
1511                 is_HORIZWS_latin1(s)
1512             );
1513         case NHORIZWS:
1514             REXEC_FBC_CSCAN(
1515                 !is_HORIZWS_utf8(s),
1516                 !is_HORIZWS_latin1(s)
1517             );      
1518         case AHOCORASICKC:
1519         case AHOCORASICK: 
1520             {
1521                 DECL_TRIE_TYPE(c);
1522                 /* what trie are we using right now */
1523                 reg_ac_data *aho
1524                     = (reg_ac_data*)progi->data->data[ ARG( c ) ];
1525                 reg_trie_data *trie
1526                     = (reg_trie_data*)progi->data->data[ aho->trie ];
1527                 HV *widecharmap = MUTABLE_HV(progi->data->data[ aho->trie + 1 ]);
1528
1529                 const char *last_start = strend - trie->minlen;
1530 #ifdef DEBUGGING
1531                 const char *real_start = s;
1532 #endif
1533                 STRLEN maxlen = trie->maxlen;
1534                 SV *sv_points;
1535                 U8 **points; /* map of where we were in the input string
1536                                 when reading a given char. For ASCII this
1537                                 is unnecessary overhead as the relationship
1538                                 is always 1:1, but for Unicode, especially
1539                                 case folded Unicode this is not true. */
1540                 U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
1541                 U8 *bitmap=NULL;
1542
1543
1544                 GET_RE_DEBUG_FLAGS_DECL;
1545
1546                 /* We can't just allocate points here. We need to wrap it in
1547                  * an SV so it gets freed properly if there is a croak while
1548                  * running the match */
1549                 ENTER;
1550                 SAVETMPS;
1551                 sv_points=newSV(maxlen * sizeof(U8 *));
1552                 SvCUR_set(sv_points,
1553                     maxlen * sizeof(U8 *));
1554                 SvPOK_on(sv_points);
1555                 sv_2mortal(sv_points);
1556                 points=(U8**)SvPV_nolen(sv_points );
1557                 if ( trie_type != trie_utf8_fold 
1558                      && (trie->bitmap || OP(c)==AHOCORASICKC) ) 
1559                 {
1560                     if (trie->bitmap) 
1561                         bitmap=(U8*)trie->bitmap;
1562                     else
1563                         bitmap=(U8*)ANYOF_BITMAP(c);
1564                 }
1565                 /* this is the Aho-Corasick algorithm modified a touch
1566                    to include special handling for long "unknown char" 
1567                    sequences. The basic idea being that we use AC as long
1568                    as we are dealing with a possible matching char, when
1569                    we encounter an unknown char (and we have not encountered
1570                    an accepting state) we scan forward until we find a legal 
1571                    starting char. 
1572                    AC matching is basically that of trie matching, except
1573                    that when we encounter a failing transition, we fall back
1574                    to the current states "fail state", and try the current char 
1575                    again, a process we repeat until we reach the root state, 
1576                    state 1, or a legal transition. If we fail on the root state 
1577                    then we can either terminate if we have reached an accepting 
1578                    state previously, or restart the entire process from the beginning 
1579                    if we have not.
1580
1581                  */
1582                 while (s <= last_start) {
1583                     const U32 uniflags = UTF8_ALLOW_DEFAULT;
1584                     U8 *uc = (U8*)s;
1585                     U16 charid = 0;
1586                     U32 base = 1;
1587                     U32 state = 1;
1588                     UV uvc = 0;
1589                     STRLEN len = 0;
1590                     STRLEN foldlen = 0;
1591                     U8 *uscan = (U8*)NULL;
1592                     U8 *leftmost = NULL;
1593 #ifdef DEBUGGING                    
1594                     U32 accepted_word= 0;
1595 #endif
1596                     U32 pointpos = 0;
1597
1598                     while ( state && uc <= (U8*)strend ) {
1599                         int failed=0;
1600                         U32 word = aho->states[ state ].wordnum;
1601
1602                         if( state==1 ) {
1603                             if ( bitmap ) {
1604                                 DEBUG_TRIE_EXECUTE_r(
1605                                     if ( uc <= (U8*)last_start && !BITMAP_TEST(bitmap,*uc) ) {
1606                                         dump_exec_pos( (char *)uc, c, strend, real_start, 
1607                                             (char *)uc, do_utf8 );
1608                                         PerlIO_printf( Perl_debug_log,
1609                                             " Scanning for legal start char...\n");
1610                                     }
1611                                 );            
1612                                 while ( uc <= (U8*)last_start  && !BITMAP_TEST(bitmap,*uc) ) {
1613                                     uc++;
1614                                 }
1615                                 s= (char *)uc;
1616                             }
1617                             if (uc >(U8*)last_start) break;
1618                         }
1619                                             
1620                         if ( word ) {
1621                             U8 *lpos= points[ (pointpos - trie->wordlen[word-1] ) % maxlen ];
1622                             if (!leftmost || lpos < leftmost) {
1623                                 DEBUG_r(accepted_word=word);
1624                                 leftmost= lpos;
1625                             }
1626                             if (base==0) break;
1627                             
1628                         }
1629                         points[pointpos++ % maxlen]= uc;
1630                         REXEC_TRIE_READ_CHAR(trie_type, trie, widecharmap, uc,
1631                                              uscan, len, uvc, charid, foldlen,
1632                                              foldbuf, uniflags);
1633                         DEBUG_TRIE_EXECUTE_r({
1634                             dump_exec_pos( (char *)uc, c, strend, real_start, 
1635                                 s,   do_utf8 );
1636                             PerlIO_printf(Perl_debug_log,
1637                                 " Charid:%3u CP:%4"UVxf" ",
1638                                  charid, uvc);
1639                         });
1640
1641                         do {
1642 #ifdef DEBUGGING
1643                             word = aho->states[ state ].wordnum;
1644 #endif
1645                             base = aho->states[ state ].trans.base;
1646
1647                             DEBUG_TRIE_EXECUTE_r({
1648                                 if (failed) 
1649                                     dump_exec_pos( (char *)uc, c, strend, real_start, 
1650                                         s,   do_utf8 );
1651                                 PerlIO_printf( Perl_debug_log,
1652                                     "%sState: %4"UVxf", word=%"UVxf,
1653                                     failed ? " Fail transition to " : "",
1654                                     (UV)state, (UV)word);
1655                             });
1656                             if ( base ) {
1657                                 U32 tmp;
1658                                 if (charid &&
1659                                      (base + charid > trie->uniquecharcount )
1660                                      && (base + charid - 1 - trie->uniquecharcount
1661                                             < trie->lasttrans)
1662                                      && trie->trans[base + charid - 1 -
1663                                             trie->uniquecharcount].check == state
1664                                      && (tmp=trie->trans[base + charid - 1 -
1665                                         trie->uniquecharcount ].next))
1666                                 {
1667                                     DEBUG_TRIE_EXECUTE_r(
1668                                         PerlIO_printf( Perl_debug_log," - legal\n"));
1669                                     state = tmp;
1670                                     break;
1671                                 }
1672                                 else {
1673                                     DEBUG_TRIE_EXECUTE_r(
1674                                         PerlIO_printf( Perl_debug_log," - fail\n"));
1675                                     failed = 1;
1676                                     state = aho->fail[state];
1677                                 }
1678                             }
1679                             else {
1680                                 /* we must be accepting here */
1681                                 DEBUG_TRIE_EXECUTE_r(
1682                                         PerlIO_printf( Perl_debug_log," - accepting\n"));
1683                                 failed = 1;
1684                                 break;
1685                             }
1686                         } while(state);
1687                         uc += len;
1688                         if (failed) {
1689                             if (leftmost)
1690                                 break;
1691                             if (!state) state = 1;
1692                         }
1693                     }
1694                     if ( aho->states[ state ].wordnum ) {
1695                         U8 *lpos = points[ (pointpos - trie->wordlen[aho->states[ state ].wordnum-1]) % maxlen ];
1696                         if (!leftmost || lpos < leftmost) {
1697                             DEBUG_r(accepted_word=aho->states[ state ].wordnum);
1698                             leftmost = lpos;
1699                         }
1700                     }
1701                     if (leftmost) {
1702                         s = (char*)leftmost;
1703                         DEBUG_TRIE_EXECUTE_r({
1704                             PerlIO_printf( 
1705                                 Perl_debug_log,"Matches word #%"UVxf" at position %"IVdf". Trying full pattern...\n",
1706                                 (UV)accepted_word, (IV)(s - real_start)
1707                             );
1708                         });
1709                         if (!reginfo || regtry(reginfo, &s)) {
1710                             FREETMPS;
1711                             LEAVE;
1712                             goto got_it;
1713                         }
1714                         s = HOPc(s,1);
1715                         DEBUG_TRIE_EXECUTE_r({
1716                             PerlIO_printf( Perl_debug_log,"Pattern failed. Looking for new start point...\n");
1717                         });
1718                     } else {
1719                         DEBUG_TRIE_EXECUTE_r(
1720                             PerlIO_printf( Perl_debug_log,"No match.\n"));
1721                         break;
1722                     }
1723                 }
1724                 FREETMPS;
1725                 LEAVE;
1726             }
1727             break;
1728         default:
1729             Perl_croak(aTHX_ "panic: unknown regstclass %d", (int)OP(c));
1730             break;
1731         }
1732         return 0;
1733       got_it:
1734         return s;
1735 }
1736
1737
1738 /*
1739  - regexec_flags - match a regexp against a string
1740  */
1741 I32
1742 Perl_regexec_flags(pTHX_ REGEXP * const rx, char *stringarg, register char *strend,
1743               char *strbeg, I32 minend, SV *sv, void *data, U32 flags)
1744 /* strend: pointer to null at end of string */
1745 /* strbeg: real beginning of string */
1746 /* minend: end of match must be >=minend after stringarg. */
1747 /* data: May be used for some additional optimizations. 
1748          Currently its only used, with a U32 cast, for transmitting 
1749          the ganch offset when doing a /g match. This will change */
1750 /* nosave: For optimizations. */
1751 {
1752     dVAR;
1753     struct regexp *const prog = (struct regexp *)SvANY(rx);
1754     /*register*/ char *s;
1755     register regnode *c;
1756     /*register*/ char *startpos = stringarg;
1757     I32 minlen;         /* must match at least this many chars */
1758     I32 dontbother = 0; /* how many characters not to try at end */
1759     I32 end_shift = 0;                  /* Same for the end. */         /* CC */
1760     I32 scream_pos = -1;                /* Internal iterator of scream. */
1761     char *scream_olds = NULL;
1762     const bool do_utf8 = (bool)DO_UTF8(sv);
1763     I32 multiline;
1764     RXi_GET_DECL(prog,progi);
1765     regmatch_info reginfo;  /* create some info to pass to regtry etc */
1766     regexp_paren_pair *swap = NULL;
1767     GET_RE_DEBUG_FLAGS_DECL;
1768
1769     PERL_ARGS_ASSERT_REGEXEC_FLAGS;
1770     PERL_UNUSED_ARG(data);
1771
1772     /* Be paranoid... */
1773     if (prog == NULL || startpos == NULL) {
1774         Perl_croak(aTHX_ "NULL regexp parameter");
1775         return 0;
1776     }
1777
1778     multiline = prog->extflags & RXf_PMf_MULTILINE;
1779     reginfo.prog = rx;   /* Yes, sorry that this is confusing.  */
1780
1781     RX_MATCH_UTF8_set(rx, do_utf8);
1782     DEBUG_EXECUTE_r( 
1783         debug_start_match(rx, do_utf8, startpos, strend, 
1784         "Matching");
1785     );
1786
1787     minlen = prog->minlen;
1788     
1789     if (strend - startpos < (minlen+(prog->check_offset_min<0?prog->check_offset_min:0))) {
1790         DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
1791                               "String too short [regexec_flags]...\n"));
1792         goto phooey;
1793     }
1794
1795     
1796     /* Check validity of program. */
1797     if (UCHARAT(progi->program) != REG_MAGIC) {
1798         Perl_croak(aTHX_ "corrupted regexp program");
1799     }
1800
1801     PL_reg_flags = 0;
1802     PL_reg_eval_set = 0;
1803     PL_reg_maxiter = 0;
1804
1805     if (RX_UTF8(rx))
1806         PL_reg_flags |= RF_utf8;
1807
1808     /* Mark beginning of line for ^ and lookbehind. */
1809     reginfo.bol = startpos; /* XXX not used ??? */
1810     PL_bostr  = strbeg;
1811     reginfo.sv = sv;
1812
1813     /* Mark end of line for $ (and such) */
1814     PL_regeol = strend;
1815
1816     /* see how far we have to get to not match where we matched before */
1817     reginfo.till = startpos+minend;
1818
1819     /* If there is a "must appear" string, look for it. */
1820     s = startpos;
1821
1822     if (prog->extflags & RXf_GPOS_SEEN) { /* Need to set reginfo->ganch */
1823         MAGIC *mg;
1824         if (flags & REXEC_IGNOREPOS){   /* Means: check only at start */
1825             reginfo.ganch = startpos + prog->gofs;
1826             DEBUG_GPOS_r(PerlIO_printf(Perl_debug_log,
1827               "GPOS IGNOREPOS: reginfo.ganch = startpos + %"UVxf"\n",(UV)prog->gofs));
1828         } else if (sv && SvTYPE(sv) >= SVt_PVMG
1829                   && SvMAGIC(sv)
1830                   && (mg = mg_find(sv, PERL_MAGIC_regex_global))
1831                   && mg->mg_len >= 0) {
1832             reginfo.ganch = strbeg + mg->mg_len;        /* Defined pos() */
1833             DEBUG_GPOS_r(PerlIO_printf(Perl_debug_log,
1834                 "GPOS MAGIC: reginfo.ganch = strbeg + %"IVdf"\n",(IV)mg->mg_len));
1835
1836             if (prog->extflags & RXf_ANCH_GPOS) {
1837                 if (s > reginfo.ganch)
1838                     goto phooey;
1839                 s = reginfo.ganch - prog->gofs;
1840                 DEBUG_GPOS_r(PerlIO_printf(Perl_debug_log,
1841                      "GPOS ANCH_GPOS: s = ganch - %"UVxf"\n",(UV)prog->gofs));
1842                 if (s < strbeg)
1843                     goto phooey;
1844             }
1845         }
1846         else if (data) {
1847             reginfo.ganch = strbeg + PTR2UV(data);
1848             DEBUG_GPOS_r(PerlIO_printf(Perl_debug_log,
1849                  "GPOS DATA: reginfo.ganch= strbeg + %"UVxf"\n",PTR2UV(data)));
1850
1851         } else {                                /* pos() not defined */
1852             reginfo.ganch = strbeg;
1853             DEBUG_GPOS_r(PerlIO_printf(Perl_debug_log,
1854                  "GPOS: reginfo.ganch = strbeg\n"));
1855         }
1856     }
1857     if (PL_curpm && (PM_GETRE(PL_curpm) == rx)) {
1858         /* We have to be careful. If the previous successful match
1859            was from this regex we don't want a subsequent partially
1860            successful match to clobber the old results.
1861            So when we detect this possibility we add a swap buffer
1862            to the re, and switch the buffer each match. If we fail
1863            we switch it back, otherwise we leave it swapped.
1864         */
1865         swap = prog->offs;
1866         /* do we need a save destructor here for eval dies? */
1867         Newxz(prog->offs, (prog->nparens + 1), regexp_paren_pair);
1868     }
1869     if (!(flags & REXEC_CHECKED) && (prog->check_substr != NULL || prog->check_utf8 != NULL)) {
1870         re_scream_pos_data d;
1871
1872         d.scream_olds = &scream_olds;
1873         d.scream_pos = &scream_pos;
1874         s = re_intuit_start(rx, sv, s, strend, flags, &d);
1875         if (!s) {
1876             DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Not present...\n"));
1877             goto phooey;        /* not present */
1878         }
1879     }
1880
1881
1882
1883     /* Simplest case:  anchored match need be tried only once. */
1884     /*  [unless only anchor is BOL and multiline is set] */
1885     if (prog->extflags & (RXf_ANCH & ~RXf_ANCH_GPOS)) {
1886         if (s == startpos && regtry(&reginfo, &startpos))
1887             goto got_it;
1888         else if (multiline || (prog->intflags & PREGf_IMPLICIT)
1889                  || (prog->extflags & RXf_ANCH_MBOL)) /* XXXX SBOL? */
1890         {
1891             char *end;
1892
1893             if (minlen)
1894                 dontbother = minlen - 1;
1895             end = HOP3c(strend, -dontbother, strbeg) - 1;
1896             /* for multiline we only have to try after newlines */
1897             if (prog->check_substr || prog->check_utf8) {
1898                 if (s == startpos)
1899                     goto after_try;
1900                 while (1) {
1901                     if (regtry(&reginfo, &s))
1902                         goto got_it;
1903                   after_try:
1904                     if (s > end)
1905                         goto phooey;
1906                     if (prog->extflags & RXf_USE_INTUIT) {
1907                         s = re_intuit_start(rx, sv, s + 1, strend, flags, NULL);
1908                         if (!s)
1909                             goto phooey;
1910                     }
1911                     else
1912                         s++;
1913                 }               
1914             } else {
1915                 if (s > startpos)
1916                     s--;
1917                 while (s < end) {
1918                     if (*s++ == '\n') { /* don't need PL_utf8skip here */
1919                         if (regtry(&reginfo, &s))
1920                             goto got_it;
1921                     }
1922                 }               
1923             }
1924         }
1925         goto phooey;
1926     } else if (RXf_GPOS_CHECK == (prog->extflags & RXf_GPOS_CHECK)) 
1927     {
1928         /* the warning about reginfo.ganch being used without intialization
1929            is bogus -- we set it above, when prog->extflags & RXf_GPOS_SEEN 
1930            and we only enter this block when the same bit is set. */
1931         char *tmp_s = reginfo.ganch - prog->gofs;
1932
1933         if (tmp_s >= strbeg && regtry(&reginfo, &tmp_s))
1934             goto got_it;
1935         goto phooey;
1936     }
1937
1938     /* Messy cases:  unanchored match. */
1939     if ((prog->anchored_substr || prog->anchored_utf8) && prog->intflags & PREGf_SKIP) {
1940         /* we have /x+whatever/ */
1941         /* it must be a one character string (XXXX Except UTF?) */
1942         char ch;
1943 #ifdef DEBUGGING
1944         int did_match = 0;
1945 #endif
1946         if (!(do_utf8 ? prog->anchored_utf8 : prog->anchored_substr))
1947             do_utf8 ? to_utf8_substr(prog) : to_byte_substr(prog);
1948         ch = SvPVX_const(do_utf8 ? prog->anchored_utf8 : prog->anchored_substr)[0];
1949
1950         if (do_utf8) {
1951             REXEC_FBC_SCAN(
1952                 if (*s == ch) {
1953                     DEBUG_EXECUTE_r( did_match = 1 );
1954                     if (regtry(&reginfo, &s)) goto got_it;
1955                     s += UTF8SKIP(s);
1956                     while (s < strend && *s == ch)
1957                         s += UTF8SKIP(s);
1958                 }
1959             );
1960         }
1961         else {
1962             REXEC_FBC_SCAN(
1963                 if (*s == ch) {
1964                     DEBUG_EXECUTE_r( did_match = 1 );
1965                     if (regtry(&reginfo, &s)) goto got_it;
1966                     s++;
1967                     while (s < strend && *s == ch)
1968                         s++;
1969                 }
1970             );
1971         }
1972         DEBUG_EXECUTE_r(if (!did_match)
1973                 PerlIO_printf(Perl_debug_log,
1974                                   "Did not find anchored character...\n")
1975                );
1976     }
1977     else if (prog->anchored_substr != NULL
1978               || prog->anchored_utf8 != NULL
1979               || ((prog->float_substr != NULL || prog->float_utf8 != NULL)
1980                   && prog->float_max_offset < strend - s)) {
1981         SV *must;
1982         I32 back_max;
1983         I32 back_min;
1984         char *last;
1985         char *last1;            /* Last position checked before */
1986 #ifdef DEBUGGING
1987         int did_match = 0;
1988 #endif
1989         if (prog->anchored_substr || prog->anchored_utf8) {
1990             if (!(do_utf8 ? prog->anchored_utf8 : prog->anchored_substr))
1991                 do_utf8 ? to_utf8_substr(prog) : to_byte_substr(prog);
1992             must = do_utf8 ? prog->anchored_utf8 : prog->anchored_substr;
1993             back_max = back_min = prog->anchored_offset;
1994         } else {
1995             if (!(do_utf8 ? prog->float_utf8 : prog->float_substr))
1996                 do_utf8 ? to_utf8_substr(prog) : to_byte_substr(prog);
1997             must = do_utf8 ? prog->float_utf8 : prog->float_substr;
1998             back_max = prog->float_max_offset;
1999             back_min = prog->float_min_offset;
2000         }
2001         
2002             
2003         if (must == &PL_sv_undef)
2004             /* could not downgrade utf8 check substring, so must fail */
2005             goto phooey;
2006
2007         if (back_min<0) {
2008             last = strend;
2009         } else {
2010             last = HOP3c(strend,        /* Cannot start after this */
2011                   -(I32)(CHR_SVLEN(must)
2012                          - (SvTAIL(must) != 0) + back_min), strbeg);
2013         }
2014         if (s > PL_bostr)
2015             last1 = HOPc(s, -1);
2016         else
2017             last1 = s - 1;      /* bogus */
2018
2019         /* XXXX check_substr already used to find "s", can optimize if
2020            check_substr==must. */
2021         scream_pos = -1;
2022         dontbother = end_shift;
2023         strend = HOPc(strend, -dontbother);
2024         while ( (s <= last) &&
2025                 ((flags & REXEC_SCREAM)
2026                  ? (s = screaminstr(sv, must, HOP3c(s, back_min, (back_min<0 ? strbeg : strend)) - strbeg,
2027                                     end_shift, &scream_pos, 0))
2028                  : (s = fbm_instr((unsigned char*)HOP3(s, back_min, (back_min<0 ? strbeg : strend)),
2029                                   (unsigned char*)strend, must,
2030                                   multiline ? FBMrf_MULTILINE : 0))) ) {
2031             /* we may be pointing at the wrong string */
2032             if ((flags & REXEC_SCREAM) && RXp_MATCH_COPIED(prog))
2033                 s = strbeg + (s - SvPVX_const(sv));
2034             DEBUG_EXECUTE_r( did_match = 1 );
2035             if (HOPc(s, -back_max) > last1) {
2036                 last1 = HOPc(s, -back_min);
2037                 s = HOPc(s, -back_max);
2038             }
2039             else {
2040                 char * const t = (last1 >= PL_bostr) ? HOPc(last1, 1) : last1 + 1;
2041
2042                 last1 = HOPc(s, -back_min);
2043                 s = t;
2044             }
2045             if (do_utf8) {
2046                 while (s <= last1) {
2047                     if (regtry(&reginfo, &s))
2048                         goto got_it;
2049                     s += UTF8SKIP(s);
2050                 }
2051             }
2052             else {
2053                 while (s <= last1) {
2054                     if (regtry(&reginfo, &s))
2055                         goto got_it;
2056                     s++;
2057                 }
2058             }
2059         }
2060         DEBUG_EXECUTE_r(if (!did_match) {
2061             RE_PV_QUOTED_DECL(quoted, do_utf8, PERL_DEBUG_PAD_ZERO(0), 
2062                 SvPVX_const(must), RE_SV_DUMPLEN(must), 30);
2063             PerlIO_printf(Perl_debug_log, "Did not find %s substr %s%s...\n",
2064                               ((must == prog->anchored_substr || must == prog->anchored_utf8)
2065                                ? "anchored" : "floating"),
2066                 quoted, RE_SV_TAIL(must));
2067         });                 
2068         goto phooey;
2069     }
2070     else if ( (c = progi->regstclass) ) {
2071         if (minlen) {
2072             const OPCODE op = OP(progi->regstclass);
2073             /* don't bother with what can't match */
2074             if (PL_regkind[op] != EXACT && op != CANY && PL_regkind[op] != TRIE)
2075                 strend = HOPc(strend, -(minlen - 1));
2076         }
2077         DEBUG_EXECUTE_r({
2078             SV * const prop = sv_newmortal();
2079             regprop(prog, prop, c);
2080             {
2081                 RE_PV_QUOTED_DECL(quoted,do_utf8,PERL_DEBUG_PAD_ZERO(1),
2082                     s,strend-s,60);
2083                 PerlIO_printf(Perl_debug_log,
2084                     "Matching stclass %.*s against %s (%d chars)\n",
2085                     (int)SvCUR(prop), SvPVX_const(prop),
2086                      quoted, (int)(strend - s));
2087             }
2088         });
2089         if (find_byclass(prog, c, s, strend, &reginfo))
2090             goto got_it;
2091         DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "Contradicts stclass... [regexec_flags]\n"));
2092     }
2093     else {
2094         dontbother = 0;
2095         if (prog->float_substr != NULL || prog->float_utf8 != NULL) {
2096             /* Trim the end. */
2097             char *last;
2098             SV* float_real;
2099
2100             if (!(do_utf8 ? prog->float_utf8 : prog->float_substr))
2101                 do_utf8 ? to_utf8_substr(prog) : to_byte_substr(prog);
2102             float_real = do_utf8 ? prog->float_utf8 : prog->float_substr;
2103
2104             if (flags & REXEC_SCREAM) {
2105                 last = screaminstr(sv, float_real, s - strbeg,
2106                                    end_shift, &scream_pos, 1); /* last one */
2107                 if (!last)
2108                     last = scream_olds; /* Only one occurrence. */
2109                 /* we may be pointing at the wrong string */
2110                 else if (RXp_MATCH_COPIED(prog))
2111                     s = strbeg + (s - SvPVX_const(sv));
2112             }
2113             else {
2114                 STRLEN len;
2115                 const char * const little = SvPV_const(float_real, len);
2116
2117                 if (SvTAIL(float_real)) {
2118                     if (memEQ(strend - len + 1, little, len - 1))
2119                         last = strend - len + 1;
2120                     else if (!multiline)
2121                         last = memEQ(strend - len, little, len)
2122                             ? strend - len : NULL;
2123                     else
2124                         goto find_last;
2125                 } else {
2126                   find_last:
2127                     if (len)
2128                         last = rninstr(s, strend, little, little + len);
2129                     else
2130                         last = strend;  /* matching "$" */
2131                 }
2132             }
2133             if (last == NULL) {
2134                 DEBUG_EXECUTE_r(
2135                     PerlIO_printf(Perl_debug_log,
2136                         "%sCan't trim the tail, match fails (should not happen)%s\n",
2137                         PL_colors[4], PL_colors[5]));
2138                 goto phooey; /* Should not happen! */
2139             }
2140             dontbother = strend - last + prog->float_min_offset;
2141         }
2142         if (minlen && (dontbother < minlen))
2143             dontbother = minlen - 1;
2144         strend -= dontbother;              /* this one's always in bytes! */
2145         /* We don't know much -- general case. */
2146         if (do_utf8) {
2147             for (;;) {
2148                 if (regtry(&reginfo, &s))
2149                     goto got_it;
2150                 if (s >= strend)
2151                     break;
2152                 s += UTF8SKIP(s);
2153             };
2154         }
2155         else {
2156             do {
2157                 if (regtry(&reginfo, &s))
2158                     goto got_it;
2159             } while (s++ < strend);
2160         }
2161     }
2162
2163     /* Failure. */
2164     goto phooey;
2165
2166 got_it:
2167     Safefree(swap);
2168     RX_MATCH_TAINTED_set(rx, PL_reg_flags & RF_tainted);
2169
2170     if (PL_reg_eval_set)
2171         restore_pos(aTHX_ prog);
2172     if (RXp_PAREN_NAMES(prog)) 
2173         (void)hv_iterinit(RXp_PAREN_NAMES(prog));
2174
2175     /* make sure $`, $&, $', and $digit will work later */
2176     if ( !(flags & REXEC_NOT_FIRST) ) {
2177         RX_MATCH_COPY_FREE(rx);
2178         if (flags & REXEC_COPY_STR) {
2179             const I32 i = PL_regeol - startpos + (stringarg - strbeg);
2180 #ifdef PERL_OLD_COPY_ON_WRITE
2181             if ((SvIsCOW(sv)
2182                  || (SvFLAGS(sv) & CAN_COW_MASK) == CAN_COW_FLAGS)) {
2183                 if (DEBUG_C_TEST) {
2184                     PerlIO_printf(Perl_debug_log,
2185                                   "Copy on write: regexp capture, type %d\n",
2186                                   (int) SvTYPE(sv));
2187                 }
2188                 prog->saved_copy = sv_setsv_cow(prog->saved_copy, sv);
2189                 prog->subbeg = (char *)SvPVX_const(prog->saved_copy);
2190                 assert (SvPOKp(prog->saved_copy));
2191             } else
2192 #endif
2193             {
2194                 RX_MATCH_COPIED_on(rx);
2195                 s = savepvn(strbeg, i);
2196                 prog->subbeg = s;
2197             }
2198             prog->sublen = i;
2199         }
2200         else {
2201             prog->subbeg = strbeg;
2202             prog->sublen = PL_regeol - strbeg;  /* strend may have been modified */
2203         }
2204     }
2205
2206     return 1;
2207
2208 phooey:
2209     DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%sMatch failed%s\n",
2210                           PL_colors[4], PL_colors[5]));
2211     if (PL_reg_eval_set)
2212         restore_pos(aTHX_ prog);
2213     if (swap) {
2214         /* we failed :-( roll it back */
2215         Safefree(prog->offs);
2216         prog->offs = swap;
2217     }
2218
2219     return 0;
2220 }
2221
2222
2223 /*
2224  - regtry - try match at specific point
2225  */
2226 STATIC I32                      /* 0 failure, 1 success */
2227 S_regtry(pTHX_ regmatch_info *reginfo, char **startpos)
2228 {
2229     dVAR;
2230     CHECKPOINT lastcp;
2231     REGEXP *const rx = reginfo->prog;
2232     regexp *const prog = (struct regexp *)SvANY(rx);
2233     RXi_GET_DECL(prog,progi);
2234     GET_RE_DEBUG_FLAGS_DECL;
2235
2236     PERL_ARGS_ASSERT_REGTRY;
2237
2238     reginfo->cutpoint=NULL;
2239
2240     if ((prog->extflags & RXf_EVAL_SEEN) && !PL_reg_eval_set) {
2241         MAGIC *mg;
2242
2243         PL_reg_eval_set = RS_init;
2244         DEBUG_EXECUTE_r(DEBUG_s(
2245             PerlIO_printf(Perl_debug_log, "  setting stack tmpbase at %"IVdf"\n",
2246                           (IV)(PL_stack_sp - PL_stack_base));
2247             ));
2248         SAVESTACK_CXPOS();
2249         cxstack[cxstack_ix].blk_oldsp = PL_stack_sp - PL_stack_base;
2250         /* Otherwise OP_NEXTSTATE will free whatever on stack now.  */
2251         SAVETMPS;
2252         /* Apparently this is not needed, judging by wantarray. */
2253         /* SAVEI8(cxstack[cxstack_ix].blk_gimme);
2254            cxstack[cxstack_ix].blk_gimme = G_SCALAR; */
2255
2256         if (reginfo->sv) {
2257             /* Make $_ available to executed code. */
2258             if (reginfo->sv != DEFSV) {
2259                 SAVE_DEFSV;
2260                 DEFSV_set(reginfo->sv);
2261             }
2262         
2263             if (!(SvTYPE(reginfo->sv) >= SVt_PVMG && SvMAGIC(reginfo->sv)
2264                   && (mg = mg_find(reginfo->sv, PERL_MAGIC_regex_global)))) {
2265                 /* prepare for quick setting of pos */
2266 #ifdef PERL_OLD_COPY_ON_WRITE
2267                 if (SvIsCOW(reginfo->sv))
2268                     sv_force_normal_flags(reginfo->sv, 0);
2269 #endif
2270                 mg = sv_magicext(reginfo->sv, NULL, PERL_MAGIC_regex_global,
2271                                  &PL_vtbl_mglob, NULL, 0);
2272                 mg->mg_len = -1;
2273             }
2274             PL_reg_magic    = mg;
2275             PL_reg_oldpos   = mg->mg_len;
2276             SAVEDESTRUCTOR_X(restore_pos, prog);
2277         }
2278         if (!PL_reg_curpm) {
2279             Newxz(PL_reg_curpm, 1, PMOP);
2280 #ifdef USE_ITHREADS
2281             {
2282                 SV* const repointer = &PL_sv_undef;
2283                 /* this regexp is also owned by the new PL_reg_curpm, which
2284                    will try to free it.  */
2285                 av_push(PL_regex_padav, repointer);
2286                 PL_reg_curpm->op_pmoffset = av_len(PL_regex_padav);
2287                 PL_regex_pad = AvARRAY(PL_regex_padav);
2288             }
2289 #endif      
2290         }
2291 #ifdef USE_ITHREADS
2292         /* It seems that non-ithreads works both with and without this code.
2293            So for efficiency reasons it seems best not to have the code
2294            compiled when it is not needed.  */
2295         /* This is safe against NULLs: */
2296         ReREFCNT_dec(PM_GETRE(PL_reg_curpm));
2297         /* PM_reg_curpm owns a reference to this regexp.  */
2298         ReREFCNT_inc(rx);
2299 #endif
2300         PM_SETRE(PL_reg_curpm, rx);
2301         PL_reg_oldcurpm = PL_curpm;
2302         PL_curpm = PL_reg_curpm;
2303         if (RXp_MATCH_COPIED(prog)) {
2304             /*  Here is a serious problem: we cannot rewrite subbeg,
2305                 since it may be needed if this match fails.  Thus
2306                 $` inside (?{}) could fail... */
2307             PL_reg_oldsaved = prog->subbeg;
2308             PL_reg_oldsavedlen = prog->sublen;
2309 #ifdef PERL_OLD_COPY_ON_WRITE
2310             PL_nrs = prog->saved_copy;
2311 #endif
2312             RXp_MATCH_COPIED_off(prog);
2313         }
2314         else
2315             PL_reg_oldsaved = NULL;
2316         prog->subbeg = PL_bostr;
2317         prog->sublen = PL_regeol - PL_bostr; /* strend may have been modified */
2318     }
2319     DEBUG_EXECUTE_r(PL_reg_starttry = *startpos);
2320     prog->offs[0].start = *startpos - PL_bostr;
2321     PL_reginput = *startpos;
2322     PL_reglastparen = &prog->lastparen;
2323     PL_reglastcloseparen = &prog->lastcloseparen;
2324     prog->lastparen = 0;
2325     prog->lastcloseparen = 0;
2326     PL_regsize = 0;
2327     PL_regoffs = prog->offs;
2328     if (PL_reg_start_tmpl <= prog->nparens) {
2329         PL_reg_start_tmpl = prog->nparens*3/2 + 3;
2330         if(PL_reg_start_tmp)
2331             Renew(PL_reg_start_tmp, PL_reg_start_tmpl, char*);
2332         else
2333             Newx(PL_reg_start_tmp, PL_reg_start_tmpl, char*);
2334     }
2335
2336     /* XXXX What this code is doing here?!!!  There should be no need
2337        to do this again and again, PL_reglastparen should take care of
2338        this!  --ilya*/
2339
2340     /* Tests pat.t#187 and split.t#{13,14} seem to depend on this code.
2341      * Actually, the code in regcppop() (which Ilya may be meaning by
2342      * PL_reglastparen), is not needed at all by the test suite
2343      * (op/regexp, op/pat, op/split), but that code is needed otherwise
2344      * this erroneously leaves $1 defined: "1" =~ /^(?:(\d)x)?\d$/
2345      * Meanwhile, this code *is* needed for the
2346      * above-mentioned test suite tests to succeed.  The common theme
2347      * on those tests seems to be returning null fields from matches.
2348      * --jhi updated by dapm */
2349 #if 1
2350     if (prog->nparens) {
2351         regexp_paren_pair *pp = PL_regoffs;
2352         register I32 i;
2353         for (i = prog->nparens; i > (I32)*PL_reglastparen; i--) {
2354             ++pp;
2355             pp->start = -1;
2356             pp->end = -1;
2357         }
2358     }
2359 #endif
2360     REGCP_SET(lastcp);
2361     if (regmatch(reginfo, progi->program + 1)) {
2362         PL_regoffs[0].end = PL_reginput - PL_bostr;
2363         return 1;
2364     }
2365     if (reginfo->cutpoint)
2366         *startpos= reginfo->cutpoint;
2367     REGCP_UNWIND(lastcp);
2368     return 0;
2369 }
2370
2371
2372 #define sayYES goto yes
2373 #define sayNO goto no
2374 #define sayNO_SILENT goto no_silent
2375
2376 /* we dont use STMT_START/END here because it leads to 
2377    "unreachable code" warnings, which are bogus, but distracting. */
2378 #define CACHEsayNO \
2379     if (ST.cache_mask) \
2380        PL_reg_poscache[ST.cache_offset] |= ST.cache_mask; \
2381     sayNO
2382
2383 /* this is used to determine how far from the left messages like
2384    'failed...' are printed. It should be set such that messages 
2385    are inline with the regop output that created them.
2386 */
2387 #define REPORT_CODE_OFF 32
2388
2389
2390 /* Make sure there is a test for this +1 options in re_tests */
2391 #define TRIE_INITAL_ACCEPT_BUFFLEN 4;
2392
2393 #define CHRTEST_UNINIT -1001 /* c1/c2 haven't been calculated yet */
2394 #define CHRTEST_VOID   -1000 /* the c1/c2 "next char" test should be skipped */
2395
2396 #define SLAB_FIRST(s) (&(s)->states[0])
2397 #define SLAB_LAST(s)  (&(s)->states[PERL_REGMATCH_SLAB_SLOTS-1])
2398
2399 /* grab a new slab and return the first slot in it */
2400
2401 STATIC regmatch_state *
2402 S_push_slab(pTHX)
2403 {
2404 #if PERL_VERSION < 9 && !defined(PERL_CORE)
2405     dMY_CXT;
2406 #endif
2407     regmatch_slab *s = PL_regmatch_slab->next;
2408     if (!s) {
2409         Newx(s, 1, regmatch_slab);
2410         s->prev = PL_regmatch_slab;
2411         s->next = NULL;
2412         PL_regmatch_slab->next = s;
2413     }
2414     PL_regmatch_slab = s;
2415     return SLAB_FIRST(s);
2416 }
2417
2418
2419 /* push a new state then goto it */
2420
2421 #define PUSH_STATE_GOTO(state, node) \
2422     scan = node; \
2423     st->resume_state = state; \
2424     goto push_state;
2425
2426 /* push a new state with success backtracking, then goto it */
2427
2428 #define PUSH_YES_STATE_GOTO(state, node) \
2429     scan = node; \
2430     st->resume_state = state; \
2431     goto push_yes_state;
2432
2433
2434
2435 /*
2436
2437 regmatch() - main matching routine
2438
2439 This is basically one big switch statement in a loop. We execute an op,
2440 set 'next' to point the next op, and continue. If we come to a point which
2441 we may need to backtrack to on failure such as (A|B|C), we push a
2442 backtrack state onto the backtrack stack. On failure, we pop the top
2443 state, and re-enter the loop at the state indicated. If there are no more
2444 states to pop, we return failure.
2445
2446 Sometimes we also need to backtrack on success; for example /A+/, where
2447 after successfully matching one A, we need to go back and try to
2448 match another one; similarly for lookahead assertions: if the assertion
2449 completes successfully, we backtrack to the state just before the assertion
2450 and then carry on.  In these cases, the pushed state is marked as
2451 'backtrack on success too'. This marking is in fact done by a chain of
2452 pointers, each pointing to the previous 'yes' state. On success, we pop to
2453 the nearest yes state, discarding any intermediate failure-only states.
2454 Sometimes a yes state is pushed just to force some cleanup code to be
2455 called at the end of a successful match or submatch; e.g. (??{$re}) uses
2456 it to free the inner regex.
2457
2458 Note that failure backtracking rewinds the cursor position, while
2459 success backtracking leaves it alone.
2460
2461 A pattern is complete when the END op is executed, while a subpattern
2462 such as (?=foo) is complete when the SUCCESS op is executed. Both of these
2463 ops trigger the "pop to last yes state if any, otherwise return true"
2464 behaviour.
2465
2466 A common convention in this function is to use A and B to refer to the two
2467 subpatterns (or to the first nodes thereof) in patterns like /A*B/: so A is
2468 the subpattern to be matched possibly multiple times, while B is the entire
2469 rest of the pattern. Variable and state names reflect this convention.
2470
2471 The states in the main switch are the union of ops and failure/success of
2472 substates associated with with that op.  For example, IFMATCH is the op
2473 that does lookahead assertions /(?=A)B/ and so the IFMATCH state means
2474 'execute IFMATCH'; while IFMATCH_A is a state saying that we have just
2475 successfully matched A and IFMATCH_A_fail is a state saying that we have
2476 just failed to match A. Resume states always come in pairs. The backtrack
2477 state we push is marked as 'IFMATCH_A', but when that is popped, we resume
2478 at IFMATCH_A or IFMATCH_A_fail, depending on whether we are backtracking
2479 on success or failure.
2480
2481 The struct that holds a backtracking state is actually a big union, with
2482 one variant for each major type of op. The variable st points to the
2483 top-most backtrack struct. To make the code clearer, within each
2484 block of code we #define ST to alias the relevant union.
2485
2486 Here's a concrete example of a (vastly oversimplified) IFMATCH
2487 implementation:
2488
2489     switch (state) {
2490     ....
2491
2492 #define ST st->u.ifmatch
2493
2494     case IFMATCH: // we are executing the IFMATCH op, (?=A)B
2495         ST.foo = ...; // some state we wish to save
2496         ...
2497         // push a yes backtrack state with a resume value of
2498         // IFMATCH_A/IFMATCH_A_fail, then continue execution at the
2499         // first node of A:
2500         PUSH_YES_STATE_GOTO(IFMATCH_A, A);
2501         // NOTREACHED
2502
2503     case IFMATCH_A: // we have successfully executed A; now continue with B
2504         next = B;
2505         bar = ST.foo; // do something with the preserved value
2506         break;
2507
2508     case IFMATCH_A_fail: // A failed, so the assertion failed
2509         ...;   // do some housekeeping, then ...
2510         sayNO; // propagate the failure
2511
2512 #undef ST
2513
2514     ...
2515     }
2516
2517 For any old-timers reading this who are familiar with the old recursive
2518 approach, the code above is equivalent to:
2519
2520     case IFMATCH: // we are executing the IFMATCH op, (?=A)B
2521     {
2522         int foo = ...
2523         ...
2524         if (regmatch(A)) {
2525             next = B;
2526             bar = foo;
2527             break;
2528         }
2529         ...;   // do some housekeeping, then ...
2530         sayNO; // propagate the failure
2531     }
2532
2533 The topmost backtrack state, pointed to by st, is usually free. If you
2534 want to claim it, populate any ST.foo fields in it with values you wish to
2535 save, then do one of
2536
2537         PUSH_STATE_GOTO(resume_state, node);
2538         PUSH_YES_STATE_GOTO(resume_state, node);
2539
2540 which sets that backtrack state's resume value to 'resume_state', pushes a
2541 new free entry to the top of the backtrack stack, then goes to 'node'.
2542 On backtracking, the free slot is popped, and the saved state becomes the
2543 new free state. An ST.foo field in this new top state can be temporarily
2544 accessed to retrieve values, but once the main loop is re-entered, it
2545 becomes available for reuse.
2546
2547 Note that the depth of the backtrack stack constantly increases during the
2548 left-to-right execution of the pattern, rather than going up and down with
2549 the pattern nesting. For example the stack is at its maximum at Z at the
2550 end of the pattern, rather than at X in the following:
2551
2552     /(((X)+)+)+....(Y)+....Z/
2553
2554 The only exceptions to this are lookahead/behind assertions and the cut,
2555 (?>A), which pop all the backtrack states associated with A before
2556 continuing.
2557  
2558 Bascktrack state structs are allocated in slabs of about 4K in size.
2559 PL_regmatch_state and st always point to the currently active state,
2560 and PL_regmatch_slab points to the slab currently containing
2561 PL_regmatch_state.  The first time regmatch() is called, the first slab is
2562 allocated, and is never freed until interpreter destruction. When the slab
2563 is full, a new one is allocated and chained to the end. At exit from
2564 regmatch(), slabs allocated since entry are freed.
2565
2566 */
2567  
2568
2569 #define DEBUG_STATE_pp(pp)                                  \
2570     DEBUG_STATE_r({                                         \
2571         DUMP_EXEC_POS(locinput, scan, do_utf8);             \
2572         PerlIO_printf(Perl_debug_log,                       \
2573             "    %*s"pp" %s%s%s%s%s\n",                     \
2574             depth*2, "",                                    \
2575             PL_reg_name[st->resume_state],                     \
2576             ((st==yes_state||st==mark_state) ? "[" : ""),   \
2577             ((st==yes_state) ? "Y" : ""),                   \
2578             ((st==mark_state) ? "M" : ""),                  \
2579             ((st==yes_state||st==mark_state) ? "]" : "")    \
2580         );                                                  \
2581     });
2582
2583
2584 #define REG_NODE_NUM(x) ((x) ? (int)((x)-prog) : -1)
2585
2586 #ifdef DEBUGGING
2587
2588 STATIC void
2589 S_debug_start_match(pTHX_ const REGEXP *prog, const bool do_utf8, 
2590     const char *start, const char *end, const char *blurb)
2591 {
2592     const bool utf8_pat = RX_UTF8(prog) ? 1 : 0;
2593
2594     PERL_ARGS_ASSERT_DEBUG_START_MATCH;
2595
2596     if (!PL_colorset)   
2597             reginitcolors();    
2598     {
2599         RE_PV_QUOTED_DECL(s0, utf8_pat, PERL_DEBUG_PAD_ZERO(0), 
2600             RX_PRECOMP_const(prog), RX_PRELEN(prog), 60);   
2601         
2602         RE_PV_QUOTED_DECL(s1, do_utf8, PERL_DEBUG_PAD_ZERO(1), 
2603             start, end - start, 60); 
2604         
2605         PerlIO_printf(Perl_debug_log, 
2606             "%s%s REx%s %s against %s\n", 
2607                        PL_colors[4], blurb, PL_colors[5], s0, s1); 
2608         
2609         if (do_utf8||utf8_pat) 
2610             PerlIO_printf(Perl_debug_log, "UTF-8 %s%s%s...\n",
2611                 utf8_pat ? "pattern" : "",
2612                 utf8_pat && do_utf8 ? " and " : "",
2613                 do_utf8 ? "string" : ""
2614             ); 
2615     }
2616 }
2617
2618 STATIC void
2619 S_dump_exec_pos(pTHX_ const char *locinput, 
2620                       const regnode *scan, 
2621                       const char *loc_regeol, 
2622                       const char *loc_bostr, 
2623                       const char *loc_reg_starttry,
2624                       const bool do_utf8)
2625 {
2626     const int docolor = *PL_colors[0] || *PL_colors[2] || *PL_colors[4];
2627     const int taill = (docolor ? 10 : 7); /* 3 chars for "> <" */
2628     int l = (loc_regeol - locinput) > taill ? taill : (loc_regeol - locinput);
2629     /* The part of the string before starttry has one color
2630        (pref0_len chars), between starttry and current
2631        position another one (pref_len - pref0_len chars),
2632        after the current position the third one.
2633        We assume that pref0_len <= pref_len, otherwise we
2634        decrease pref0_len.  */
2635     int pref_len = (locinput - loc_bostr) > (5 + taill) - l
2636         ? (5 + taill) - l : locinput - loc_bostr;
2637     int pref0_len;
2638
2639     PERL_ARGS_ASSERT_DUMP_EXEC_POS;
2640
2641     while (do_utf8 && UTF8_IS_CONTINUATION(*(U8*)(locinput - pref_len)))
2642         pref_len++;
2643     pref0_len = pref_len  - (locinput - loc_reg_starttry);
2644     if (l + pref_len < (5 + taill) && l < loc_regeol - locinput)
2645         l = ( loc_regeol - locinput > (5 + taill) - pref_len
2646               ? (5 + taill) - pref_len : loc_regeol - locinput);
2647     while (do_utf8 && UTF8_IS_CONTINUATION(*(U8*)(locinput + l)))
2648         l--;
2649     if (pref0_len < 0)
2650         pref0_len = 0;
2651     if (pref0_len > pref_len)
2652         pref0_len = pref_len;
2653     {
2654         const int is_uni = (do_utf8 && OP(scan) != CANY) ? 1 : 0;
2655
2656         RE_PV_COLOR_DECL(s0,len0,is_uni,PERL_DEBUG_PAD(0),
2657             (locinput - pref_len),pref0_len, 60, 4, 5);
2658         
2659         RE_PV_COLOR_DECL(s1,len1,is_uni,PERL_DEBUG_PAD(1),
2660                     (locinput - pref_len + pref0_len),
2661                     pref_len - pref0_len, 60, 2, 3);
2662         
2663         RE_PV_COLOR_DECL(s2,len2,is_uni,PERL_DEBUG_PAD(2),
2664                     locinput, loc_regeol - locinput, 10, 0, 1);
2665
2666         const STRLEN tlen=len0+len1+len2;
2667         PerlIO_printf(Perl_debug_log,
2668                     "%4"IVdf" <%.*s%.*s%s%.*s>%*s|",
2669                     (IV)(locinput - loc_bostr),
2670                     len0, s0,
2671                     len1, s1,
2672                     (docolor ? "" : "> <"),
2673                     len2, s2,
2674                     (int)(tlen > 19 ? 0 :  19 - tlen),
2675                     "");
2676     }
2677 }
2678
2679 #endif
2680
2681 /* reg_check_named_buff_matched()
2682  * Checks to see if a named buffer has matched. The data array of 
2683  * buffer numbers corresponding to the buffer is expected to reside
2684  * in the regexp->data->data array in the slot stored in the ARG() of
2685  * node involved. Note that this routine doesn't actually care about the
2686  * name, that information is not preserved from compilation to execution.
2687  * Returns the index of the leftmost defined buffer with the given name
2688  * or 0 if non of the buffers matched.
2689  */
2690 STATIC I32
2691 S_reg_check_named_buff_matched(pTHX_ const regexp *rex, const regnode *scan)
2692 {
2693     I32 n;
2694     RXi_GET_DECL(rex,rexi);
2695     SV *sv_dat= MUTABLE_SV(rexi->data->data[ ARG( scan ) ]);
2696     I32 *nums=(I32*)SvPVX(sv_dat);
2697
2698     PERL_ARGS_ASSERT_REG_CHECK_NAMED_BUFF_MATCHED;
2699
2700     for ( n=0; n<SvIVX(sv_dat); n++ ) {
2701         if ((I32)*PL_reglastparen >= nums[n] &&
2702             PL_regoffs[nums[n]].end != -1)
2703         {
2704             return nums[n];
2705         }
2706     }
2707     return 0;
2708 }
2709
2710
2711 /* free all slabs above current one  - called during LEAVE_SCOPE */
2712
2713 STATIC void
2714 S_clear_backtrack_stack(pTHX_ void *p)
2715 {
2716     regmatch_slab *s = PL_regmatch_slab->next;
2717     PERL_UNUSED_ARG(p);
2718
2719     if (!s)
2720         return;
2721     PL_regmatch_slab->next = NULL;
2722     while (s) {
2723         regmatch_slab * const osl = s;
2724         s = s->next;
2725         Safefree(osl);
2726     }
2727 }
2728
2729
2730 #define SETREX(Re1,Re2) \
2731     if (PL_reg_eval_set) PM_SETRE((PL_reg_curpm), (Re2)); \
2732     Re1 = (Re2)
2733
2734 STATIC I32                      /* 0 failure, 1 success */
2735 S_regmatch(pTHX_ regmatch_info *reginfo, regnode *prog)
2736 {
2737 #if PERL_VERSION < 9 && !defined(PERL_CORE)
2738     dMY_CXT;
2739 #endif
2740     dVAR;
2741     register const bool do_utf8 = PL_reg_match_utf8;
2742     const U32 uniflags = UTF8_ALLOW_DEFAULT;
2743     REGEXP *rex_sv = reginfo->prog;
2744     regexp *rex = (struct regexp *)SvANY(rex_sv);
2745     RXi_GET_DECL(rex,rexi);
2746     I32 oldsave;
2747     /* the current state. This is a cached copy of PL_regmatch_state */
2748     register regmatch_state *st;
2749     /* cache heavy used fields of st in registers */
2750     register regnode *scan;
2751     register regnode *next;
2752     register U32 n = 0; /* general value; init to avoid compiler warning */
2753     register I32 ln = 0; /* len or last;  init to avoid compiler warning */
2754     register char *locinput = PL_reginput;
2755     register I32 nextchr;   /* is always set to UCHARAT(locinput) */
2756
2757     bool result = 0;        /* return value of S_regmatch */
2758     int depth = 0;          /* depth of backtrack stack */
2759     U32 nochange_depth = 0; /* depth of GOSUB recursion with nochange */
2760     const U32 max_nochange_depth =
2761         (3 * rex->nparens > MAX_RECURSE_EVAL_NOCHANGE_DEPTH) ?
2762         3 * rex->nparens : MAX_RECURSE_EVAL_NOCHANGE_DEPTH;
2763     regmatch_state *yes_state = NULL; /* state to pop to on success of
2764                                                             subpattern */
2765     /* mark_state piggy backs on the yes_state logic so that when we unwind 
2766        the stack on success we can update the mark_state as we go */
2767     regmatch_state *mark_state = NULL; /* last mark state we have seen */
2768     regmatch_state *cur_eval = NULL; /* most recent EVAL_AB state */
2769     struct regmatch_state  *cur_curlyx = NULL; /* most recent curlyx */
2770     U32 state_num;
2771     bool no_final = 0;      /* prevent failure from backtracking? */
2772     bool do_cutgroup = 0;   /* no_final only until next branch/trie entry */
2773     char *startpoint = PL_reginput;
2774     SV *popmark = NULL;     /* are we looking for a mark? */
2775     SV *sv_commit = NULL;   /* last mark name seen in failure */
2776     SV *sv_yes_mark = NULL; /* last mark name we have seen 
2777                                during a successfull match */
2778     U32 lastopen = 0;       /* last open we saw */
2779     bool has_cutgroup = RX_HAS_CUTGROUP(rex) ? 1 : 0;   
2780     SV* const oreplsv = GvSV(PL_replgv);
2781     /* these three flags are set by various ops to signal information to
2782      * the very next op. They have a useful lifetime of exactly one loop
2783      * iteration, and are not preserved or restored by state pushes/pops
2784      */
2785     bool sw = 0;            /* the condition value in (?(cond)a|b) */
2786     bool minmod = 0;        /* the next "{n,m}" is a "{n,m}?" */
2787     int logical = 0;        /* the following EVAL is:
2788                                 0: (?{...})
2789                                 1: (?(?{...})X|Y)
2790                                 2: (??{...})
2791                                or the following IFMATCH/UNLESSM is:
2792                                 false: plain (?=foo)
2793                                 true:  used as a condition: (?(?=foo))
2794                             */
2795 #ifdef DEBUGGING
2796     GET_RE_DEBUG_FLAGS_DECL;
2797 #endif
2798
2799     PERL_ARGS_ASSERT_REGMATCH;
2800
2801     DEBUG_OPTIMISE_r( DEBUG_EXECUTE_r({
2802             PerlIO_printf(Perl_debug_log,"regmatch start\n");
2803     }));
2804     /* on first ever call to regmatch, allocate first slab */
2805     if (!PL_regmatch_slab) {
2806         Newx(PL_regmatch_slab, 1, regmatch_slab);
2807         PL_regmatch_slab->prev = NULL;
2808         PL_regmatch_slab->next = NULL;
2809         PL_regmatch_state = SLAB_FIRST(PL_regmatch_slab);
2810     }
2811
2812     oldsave = PL_savestack_ix;
2813     SAVEDESTRUCTOR_X(S_clear_backtrack_stack, NULL);
2814     SAVEVPTR(PL_regmatch_slab);
2815     SAVEVPTR(PL_regmatch_state);
2816
2817     /* grab next free state slot */
2818     st = ++PL_regmatch_state;
2819     if (st >  SLAB_LAST(PL_regmatch_slab))
2820         st = PL_regmatch_state = S_push_slab(aTHX);
2821
2822     /* Note that nextchr is a byte even in UTF */
2823     nextchr = UCHARAT(locinput);
2824     scan = prog;
2825     while (scan != NULL) {
2826
2827         DEBUG_EXECUTE_r( {
2828             SV * const prop = sv_newmortal();
2829             regnode *rnext=regnext(scan);
2830             DUMP_EXEC_POS( locinput, scan, do_utf8 );
2831             regprop(rex, prop, scan);
2832             
2833             PerlIO_printf(Perl_debug_log,
2834                     "%3"IVdf":%*s%s(%"IVdf")\n",
2835                     (IV)(scan - rexi->program), depth*2, "",
2836                     SvPVX_const(prop),
2837                     (PL_regkind[OP(scan)] == END || !rnext) ? 
2838                         0 : (IV)(rnext - rexi->program));
2839         });
2840
2841         next = scan + NEXT_OFF(scan);
2842         if (next == scan)
2843             next = NULL;
2844         state_num = OP(scan);
2845
2846       reenter_switch:
2847
2848         assert(PL_reglastparen == &rex->lastparen);
2849         assert(PL_reglastcloseparen == &rex->lastcloseparen);
2850         assert(PL_regoffs == rex->offs);
2851
2852         switch (state_num) {
2853         case BOL:
2854             if (locinput == PL_bostr)
2855             {
2856                 /* reginfo->till = reginfo->bol; */
2857                 break;
2858             }
2859             sayNO;
2860         case MBOL:
2861             if (locinput == PL_bostr ||
2862                 ((nextchr || locinput < PL_regeol) && locinput[-1] == '\n'))
2863             {
2864                 break;
2865             }
2866             sayNO;
2867         case SBOL:
2868             if (locinput == PL_bostr)
2869                 break;
2870             sayNO;
2871         case GPOS:
2872             if (locinput == reginfo->ganch)
2873                 break;
2874             sayNO;
2875
2876         case KEEPS:
2877             /* update the startpoint */
2878             st->u.keeper.val = PL_regoffs[0].start;
2879             PL_reginput = locinput;
2880             PL_regoffs[0].start = locinput - PL_bostr;
2881             PUSH_STATE_GOTO(KEEPS_next, next);
2882             /*NOT-REACHED*/
2883         case KEEPS_next_fail:
2884             /* rollback the start point change */
2885             PL_regoffs[0].start = st->u.keeper.val;
2886             sayNO_SILENT;
2887             /*NOT-REACHED*/
2888         case EOL:
2889                 goto seol;
2890         case MEOL:
2891             if ((nextchr || locinput < PL_regeol) && nextchr != '\n')
2892                 sayNO;
2893             break;
2894         case SEOL:
2895           seol:
2896             if ((nextchr || locinput < PL_regeol) && nextchr != '\n')
2897                 sayNO;
2898             if (PL_regeol - locinput > 1)
2899                 sayNO;
2900             break;
2901         case EOS:
2902             if (PL_regeol != locinput)
2903                 sayNO;
2904             break;
2905         case SANY:
2906             if (!nextchr && locinput >= PL_regeol)
2907                 sayNO;
2908             if (do_utf8) {
2909                 locinput += PL_utf8skip[nextchr];
2910                 if (locinput > PL_regeol)
2911                     sayNO;
2912                 nextchr = UCHARAT(locinput);
2913             }
2914             else
2915                 nextchr = UCHARAT(++locinput);
2916             break;
2917         case CANY:
2918             if (!nextchr && locinput >= PL_regeol)
2919                 sayNO;
2920             nextchr = UCHARAT(++locinput);
2921             break;
2922         case REG_ANY:
2923             if ((!nextchr && locinput >= PL_regeol) || nextchr == '\n')
2924                 sayNO;
2925             if (do_utf8) {
2926                 locinput += PL_utf8skip[nextchr];
2927                 if (locinput > PL_regeol)
2928                     sayNO;
2929                 nextchr = UCHARAT(locinput);
2930             }
2931             else
2932                 nextchr = UCHARAT(++locinput);
2933             break;
2934
2935 #undef  ST
2936 #define ST st->u.trie
2937         case TRIEC:
2938             /* In this case the charclass data is available inline so
2939                we can fail fast without a lot of extra overhead. 
2940              */
2941             if (scan->flags == EXACT || !do_utf8) {
2942                 if(!ANYOF_BITMAP_TEST(scan, *locinput)) {
2943                     DEBUG_EXECUTE_r(
2944                         PerlIO_printf(Perl_debug_log,
2945                                   "%*s  %sfailed to match trie start class...%s\n",
2946                                   REPORT_CODE_OFF+depth*2, "", PL_colors[4], PL_colors[5])
2947                     );
2948                     sayNO_SILENT;
2949                     /* NOTREACHED */
2950                 }                       
2951             }
2952             /* FALL THROUGH */
2953         case TRIE:
2954             {
2955                 /* what type of TRIE am I? (utf8 makes this contextual) */
2956                 DECL_TRIE_TYPE(scan);
2957
2958                 /* what trie are we using right now */
2959                 reg_trie_data * const trie
2960                     = (reg_trie_data*)rexi->data->data[ ARG( scan ) ];
2961                 HV * widecharmap = MUTABLE_HV(rexi->data->data[ ARG( scan ) + 1 ]);
2962                 U32 state = trie->startstate;
2963
2964                 if (trie->bitmap && trie_type != trie_utf8_fold &&
2965                     !TRIE_BITMAP_TEST(trie,*locinput)
2966                 ) {
2967                     if (trie->states[ state ].wordnum) {
2968                          DEBUG_EXECUTE_r(
2969                             PerlIO_printf(Perl_debug_log,
2970                                           "%*s  %smatched empty string...%s\n",
2971                                           REPORT_CODE_OFF+depth*2, "", PL_colors[4], PL_colors[5])
2972                         );
2973                         break;
2974                     } else {
2975                         DEBUG_EXECUTE_r(
2976                             PerlIO_printf(Perl_debug_log,
2977                                           "%*s  %sfailed to match trie start class...%s\n",
2978                                           REPORT_CODE_OFF+depth*2, "", PL_colors[4], PL_colors[5])
2979                         );
2980                         sayNO_SILENT;
2981                    }
2982                 }
2983
2984             { 
2985                 U8 *uc = ( U8* )locinput;
2986
2987                 STRLEN len = 0;
2988                 STRLEN foldlen = 0;
2989                 U8 *uscan = (U8*)NULL;
2990                 STRLEN bufflen=0;
2991                 SV *sv_accept_buff = NULL;
2992                 U8 foldbuf[ UTF8_MAXBYTES_CASE + 1 ];
2993
2994                 ST.accepted = 0; /* how many accepting states we have seen */
2995                 ST.B = next;
2996                 ST.jump = trie->jump;
2997                 ST.me = scan;
2998                 /*
2999                    traverse the TRIE keeping track of all accepting states
3000                    we transition through until we get to a failing node.
3001                 */
3002
3003                 while ( state && uc <= (U8*)PL_regeol ) {
3004                     U32 base = trie->states[ state ].trans.base;
3005                     UV uvc = 0;
3006                     U16 charid;
3007                     /* We use charid to hold the wordnum as we don't use it
3008                        for charid until after we have done the wordnum logic. 
3009                        We define an alias just so that the wordnum logic reads
3010                        more naturally. */
3011
3012 #define got_wordnum charid
3013                     got_wordnum = trie->states[ state ].wordnum;
3014
3015                     if ( got_wordnum ) {
3016                         if ( ! ST.accepted ) {
3017                             ENTER;
3018                             SAVETMPS; /* XXX is this necessary? dmq */
3019                             bufflen = TRIE_INITAL_ACCEPT_BUFFLEN;
3020                             sv_accept_buff=newSV(bufflen *
3021                                             sizeof(reg_trie_accepted) - 1);
3022                             SvCUR_set(sv_accept_buff, 0);
3023                             SvPOK_on(sv_accept_buff);
3024                             sv_2mortal(sv_accept_buff);
3025                             SAVETMPS;
3026                             ST.accept_buff =
3027                                 (reg_trie_accepted*)SvPV_nolen(sv_accept_buff );
3028                         }
3029                         do {
3030                             if (ST.accepted >= bufflen) {
3031                                 bufflen *= 2;
3032                                 ST.accept_buff =(reg_trie_accepted*)
3033                                     SvGROW(sv_accept_buff,
3034                                         bufflen * sizeof(reg_trie_accepted));
3035                             }
3036                             SvCUR_set(sv_accept_buff,SvCUR(sv_accept_buff)
3037                                 + sizeof(reg_trie_accepted));
3038
3039
3040                             ST.accept_buff[ST.accepted].wordnum = got_wordnum;
3041                             ST.accept_buff[ST.accepted].endpos = uc;
3042                             ++ST.accepted;
3043                         } while (trie->nextword && (got_wordnum= trie->nextword[got_wordnum]));
3044                     }
3045 #undef got_wordnum 
3046
3047                     DEBUG_TRIE_EXECUTE_r({
3048                                 DUMP_EXEC_POS( (char *)uc, scan, do_utf8 );
3049                                 PerlIO_printf( Perl_debug_log,
3050                                     "%*s  %sState: %4"UVxf" Accepted: %4"UVxf" ",
3051                                     2+depth * 2, "", PL_colors[4],
3052                                     (UV)state, (UV)ST.accepted );
3053                     });
3054
3055                     if ( base ) {
3056                         REXEC_TRIE_READ_CHAR(trie_type, trie, widecharmap, uc,
3057                                              uscan, len, uvc, charid, foldlen,
3058                                              foldbuf, uniflags);
3059
3060                         if (charid &&
3061                              (base + charid > trie->uniquecharcount )
3062                              && (base + charid - 1 - trie->uniquecharcount
3063                                     < trie->lasttrans)
3064                              && trie->trans[base + charid - 1 -
3065                                     trie->uniquecharcount].check == state)
3066                         {
3067                             state = trie->trans[base + charid - 1 -
3068                                 trie->uniquecharcount ].next;
3069                         }
3070                         else {
3071                             state = 0;
3072                         }
3073                         uc += len;
3074
3075                     }
3076                     else {
3077                         state = 0;
3078                     }
3079                     DEBUG_TRIE_EXECUTE_r(
3080                         PerlIO_printf( Perl_debug_log,
3081                             "Charid:%3x CP:%4"UVxf" After State: %4"UVxf"%s\n",
3082                             charid, uvc, (UV)state, PL_colors[5] );
3083                     );
3084                 }
3085                 if (!ST.accepted )
3086                    sayNO;
3087
3088                 DEBUG_EXECUTE_r(
3089                     PerlIO_printf( Perl_debug_log,
3090                         "%*s  %sgot %"IVdf" possible matches%s\n",
3091                         REPORT_CODE_OFF + depth * 2, "",
3092                         PL_colors[4], (IV)ST.accepted, PL_colors[5] );
3093                 );
3094             }}
3095             goto trie_first_try; /* jump into the fail handler */
3096             /* NOTREACHED */
3097         case TRIE_next_fail: /* we failed - try next alterative */
3098             if ( ST.jump) {
3099                 REGCP_UNWIND(ST.cp);
3100                 for (n = *PL_reglastparen; n > ST.lastparen; n--)
3101                     PL_regoffs[n].end = -1;
3102                 *PL_reglastparen = n;
3103             }
3104           trie_first_try:
3105             if (do_cutgroup) {
3106                 do_cutgroup = 0;
3107                 no_final = 0;
3108             }
3109
3110             if ( ST.jump) {
3111                 ST.lastparen = *PL_reglastparen;
3112                 REGCP_SET(ST.cp);
3113             }           
3114             if ( ST.accepted == 1 ) {
3115                 /* only one choice left - just continue */
3116                 DEBUG_EXECUTE_r({
3117                     AV *const trie_words
3118                         = MUTABLE_AV(rexi->data->data[ARG(ST.me)+TRIE_WORDS_OFFSET]);
3119                     SV ** const tmp = av_fetch( trie_words, 
3120                         ST.accept_buff[ 0 ].wordnum-1, 0 );
3121                     SV *sv= tmp ? sv_newmortal() : NULL;
3122                     
3123                     PerlIO_printf( Perl_debug_log,
3124                         "%*s  %sonly one match left: #%d <%s>%s\n",
3125                         REPORT_CODE_OFF+depth*2, "", PL_colors[4],
3126                         ST.accept_buff[ 0 ].wordnum,
3127                         tmp ? pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), 0, 
3128                                 PL_colors[0], PL_colors[1],
3129                                 (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0)
3130                             ) 
3131                         : "not compiled under -Dr",
3132                         PL_colors[5] );
3133                 });
3134                 PL_reginput = (char *)ST.accept_buff[ 0 ].endpos;
3135                 /* in this case we free tmps/leave before we call regmatch
3136                    as we wont be using accept_buff again. */
3137                 
3138                 locinput = PL_reginput;
3139                 nextchr = UCHARAT(locinput);
3140                 if ( !ST.jump || !ST.jump[ST.accept_buff[0].wordnum]) 
3141                     scan = ST.B;
3142                 else
3143                     scan = ST.me + ST.jump[ST.accept_buff[0].wordnum];
3144                 if (!has_cutgroup) {
3145                     FREETMPS;
3146                     LEAVE;
3147                 } else {
3148                     ST.accepted--;
3149                     PUSH_YES_STATE_GOTO(TRIE_next, scan);
3150                 }
3151                 
3152                 continue; /* execute rest of RE */
3153             }
3154             
3155             if ( !ST.accepted-- ) {
3156                 DEBUG_EXECUTE_r({
3157                     PerlIO_printf( Perl_debug_log,
3158                         "%*s  %sTRIE failed...%s\n",
3159                         REPORT_CODE_OFF+depth*2, "", 
3160                         PL_colors[4],
3161                         PL_colors[5] );
3162                 });
3163                 FREETMPS;
3164                 LEAVE;
3165                 sayNO_SILENT;
3166                 /*NOTREACHED*/
3167             } 
3168
3169             /*
3170                There are at least two accepting states left.  Presumably
3171                the number of accepting states is going to be low,
3172                typically two. So we simply scan through to find the one
3173                with lowest wordnum.  Once we find it, we swap the last
3174                state into its place and decrement the size. We then try to
3175                match the rest of the pattern at the point where the word
3176                ends. If we succeed, control just continues along the
3177                regex; if we fail we return here to try the next accepting
3178                state
3179              */
3180
3181             {
3182                 U32 best = 0;
3183                 U32 cur;
3184                 for( cur = 1 ; cur <= ST.accepted ; cur++ ) {
3185                     DEBUG_TRIE_EXECUTE_r(
3186                         PerlIO_printf( Perl_debug_log,
3187                             "%*s  %sgot %"IVdf" (%d) as best, looking at %"IVdf" (%d)%s\n",
3188                             REPORT_CODE_OFF + depth * 2, "", PL_colors[4],
3189                             (IV)best, ST.accept_buff[ best ].wordnum, (IV)cur,
3190                             ST.accept_buff[ cur ].wordnum, PL_colors[5] );
3191                     );
3192
3193                     if (ST.accept_buff[cur].wordnum <
3194                             ST.accept_buff[best].wordnum)
3195                         best = cur;
3196                 }
3197
3198                 DEBUG_EXECUTE_r({
3199                     AV *const trie_words
3200                         = MUTABLE_AV(rexi->data->data[ARG(ST.me)+TRIE_WORDS_OFFSET]);
3201                     SV ** const tmp = av_fetch( trie_words, 
3202                         ST.accept_buff[ best ].wordnum - 1, 0 );
3203                     regnode *nextop=(!ST.jump || !ST.jump[ST.accept_buff[best].wordnum]) ? 
3204                                     ST.B : 
3205                                     ST.me + ST.jump[ST.accept_buff[best].wordnum];    
3206                     SV *sv= tmp ? sv_newmortal() : NULL;
3207                     
3208                     PerlIO_printf( Perl_debug_log, 
3209                         "%*s  %strying alternation #%d <%s> at node #%d %s\n",
3210                         REPORT_CODE_OFF+depth*2, "", PL_colors[4],
3211                         ST.accept_buff[best].wordnum,
3212                         tmp ? pv_pretty(sv, SvPV_nolen_const(*tmp), SvCUR(*tmp), 0, 
3213                                 PL_colors[0], PL_colors[1],
3214                                 (SvUTF8(*tmp) ? PERL_PV_ESCAPE_UNI : 0)
3215                             ) : "not compiled under -Dr", 
3216                             REG_NODE_NUM(nextop),
3217                         PL_colors[5] );
3218                 });
3219
3220                 if ( best<ST.accepted ) {
3221                     reg_trie_accepted tmp = ST.accept_buff[ best ];
3222                     ST.accept_buff[ best ] = ST.accept_buff[ ST.accepted ];
3223                     ST.accept_buff[ ST.accepted ] = tmp;
3224                     best = ST.accepted;
3225                 }
3226                 PL_reginput = (char *)ST.accept_buff[ best ].endpos;
3227                 if ( !ST.jump || !ST.jump[ST.accept_buff[best].wordnum]) {
3228                     scan = ST.B;
3229                 } else {
3230                     scan = ST.me + ST.jump[ST.accept_buff[best].wordnum];
3231                 }
3232                 PUSH_YES_STATE_GOTO(TRIE_next, scan);    
3233                 /* NOTREACHED */
3234             }
3235             /* NOTREACHED */
3236         case TRIE_next:
3237             /* we dont want to throw this away, see bug 57042*/
3238             if (oreplsv != GvSV(PL_replgv))
3239                 sv_setsv(oreplsv, GvSV(PL_replgv));
3240             FREETMPS;
3241             LEAVE;
3242             sayYES;
3243 #undef  ST
3244
3245         case EXACT: {
3246             char *s = STRING(scan);
3247             ln = STR_LEN(scan);
3248             if (do_utf8 != UTF) {
3249                 /* The target and the pattern have differing utf8ness. */
3250                 char *l = locinput;
3251                 const char * const e = s + ln;
3252
3253                 if (do_utf8) {
3254                     /* The target is utf8, the pattern is not utf8. */
3255                     while (s < e) {
3256                         STRLEN ulen;
3257                         if (l >= PL_regeol)
3258                              sayNO;
3259                         if (NATIVE_TO_UNI(*(U8*)s) !=
3260                             utf8n_to_uvuni((U8*)l, UTF8_MAXBYTES, &ulen,
3261                                             uniflags))
3262                              sayNO;
3263                         l += ulen;
3264                         s ++;
3265                     }
3266                 }
3267                 else {
3268                     /* The target is not utf8, the pattern is utf8. */
3269                     while (s < e) {
3270                         STRLEN ulen;
3271                         if (l >= PL_regeol)
3272                             sayNO;
3273                         if (NATIVE_TO_UNI(*((U8*)l)) !=
3274                             utf8n_to_uvuni((U8*)s, UTF8_MAXBYTES, &ulen,
3275                                            uniflags))
3276                             sayNO;
3277                         s += ulen;
3278                         l ++;
3279                     }
3280                 }
3281                 locinput = l;
3282                 nextchr = UCHARAT(locinput);
3283                 break;
3284             }
3285             /* The target and the pattern have the same utf8ness. */
3286             /* Inline the first character, for speed. */
3287             if (UCHARAT(s) != nextchr)
3288                 sayNO;
3289             if (PL_regeol - locinput < ln)
3290                 sayNO;
3291             if (ln > 1 && memNE(s, locinput, ln))
3292                 sayNO;
3293             locinput += ln;
3294             nextchr = UCHARAT(locinput);
3295             break;
3296             }
3297         case EXACTFL:
3298             PL_reg_flags |= RF_tainted;
3299             /* FALL THROUGH */
3300         case EXACTF: {
3301             char * const s = STRING(scan);
3302             ln = STR_LEN(scan);
3303
3304             if (do_utf8 || UTF) {
3305               /* Either target or the pattern are utf8. */
3306                 const char * const l = locinput;
3307                 char *e = PL_regeol;
3308
3309                 if (ibcmp_utf8(s, 0,  ln, (bool)UTF,
3310                                l, &e, 0,  do_utf8)) {
3311                      /* One more case for the sharp s:
3312                       * pack("U0U*", 0xDF) =~ /ss/i,
3313                       * the 0xC3 0x9F are the UTF-8
3314                       * byte sequence for the U+00DF. */
3315
3316                      if (!(do_utf8 &&
3317                            toLOWER(s[0]) == 's' &&
3318                            ln >= 2 &&
3319                            toLOWER(s[1]) == 's' &&
3320                            (U8)l[0] == 0xC3 &&
3321                            e - l >= 2 &&
3322                            (U8)l[1] == 0x9F))
3323                           sayNO;
3324                 }
3325                 locinput = e;
3326                 nextchr = UCHARAT(locinput);
3327                 break;
3328             }
3329
3330             /* Neither the target and the pattern are utf8. */
3331
3332             /* Inline the first character, for speed. */
3333             if (UCHARAT(s) != nextchr &&
3334                 UCHARAT(s) != ((OP(scan) == EXACTF)
3335                                ? PL_fold : PL_fold_locale)[nextchr])
3336                 sayNO;
3337             if (PL_regeol - locinput < ln)
3338                 sayNO;
3339             if (ln > 1 && (OP(scan) == EXACTF
3340                            ? ibcmp(s, locinput, ln)
3341                            : ibcmp_locale(s, locinput, ln)))
3342                 sayNO;
3343             locinput += ln;
3344             nextchr = UCHARAT(locinput);
3345             break;
3346             }
3347         case BOUNDL:
3348         case NBOUNDL:
3349             PL_reg_flags |= RF_tainted;
3350             /* FALL THROUGH */
3351         case BOUND:
3352         case NBOUND:
3353             /* was last char in word? */
3354             if (do_utf8) {
3355                 if (locinput == PL_bostr)
3356                     ln = '\n';
3357                 else {
3358                     const U8 * const r = reghop3((U8*)locinput, -1, (U8*)PL_bostr);
3359
3360                     ln = utf8n_to_uvchr(r, UTF8SKIP(r), 0, uniflags);
3361                 }
3362                 if (OP(scan) == BOUND || OP(scan) == NBOUND) {
3363                     ln = isALNUM_uni(ln);
3364                     LOAD_UTF8_CHARCLASS_ALNUM();
3365                     n = swash_fetch(PL_utf8_alnum, (U8*)locinput, do_utf8);
3366                 }
3367                 else {
3368                     ln = isALNUM_LC_uvchr(UNI_TO_NATIVE(ln));
3369                     n = isALNUM_LC_utf8((U8*)locinput);
3370                 }
3371             }
3372             else {
3373                 ln = (locinput != PL_bostr) ?
3374                     UCHARAT(locinput - 1) : '\n';
3375                 if (OP(scan) == BOUND || OP(scan) == NBOUND) {
3376                     ln = isALNUM(ln);
3377                     n = isALNUM(nextchr);
3378                 }
3379                 else {
3380                     ln = isALNUM_LC(ln);
3381                     n = isALNUM_LC(nextchr);
3382                 }
3383             }
3384             if (((!ln) == (!n)) == (OP(scan) == BOUND ||
3385                                     OP(scan) == BOUNDL))
3386                     sayNO;
3387             break;
3388         case ANYOF:
3389             if (do_utf8) {
3390                 STRLEN inclasslen = PL_regeol - locinput;
3391
3392                 if (!reginclass(rex, scan, (U8*)locinput, &inclasslen, do_utf8))
3393                     goto anyof_fail;
3394                 if (locinput >= PL_regeol)
3395                     sayNO;
3396                 locinput += inclasslen ? inclasslen : UTF8SKIP(locinput);
3397                 nextchr = UCHARAT(locinput);
3398                 break;
3399             }
3400             else {
3401                 if (nextchr < 0)
3402                     nextchr = UCHARAT(locinput);
3403                 if (!REGINCLASS(rex, scan, (U8*)locinput))
3404                     goto anyof_fail;
3405                 if (!nextchr && locinput >= PL_regeol)
3406                     sayNO;
3407                 nextchr = UCHARAT(++locinput);
3408                 break;
3409             }
3410         anyof_fail:
3411             /* If we might have the case of the German sharp s
3412              * in a casefolding Unicode character class. */
3413
3414             if (ANYOF_FOLD_SHARP_S(scan, locinput, PL_regeol)) {
3415                  locinput += SHARP_S_SKIP;
3416                  nextchr = UCHARAT(locinput);
3417             }
3418             else
3419                  sayNO;
3420             break;
3421         case ALNUML:
3422             PL_reg_flags |= RF_tainted;
3423             /* FALL THROUGH */
3424         case ALNUM:
3425             if (!nextchr)
3426                 sayNO;
3427             if (do_utf8) {
3428                 LOAD_UTF8_CHARCLASS_ALNUM();
3429                 if (!(OP(scan) == ALNUM
3430                       ? (bool)swash_fetch(PL_utf8_alnum, (U8*)locinput, do_utf8)
3431                       : isALNUM_LC_utf8((U8*)locinput)))
3432                 {
3433                     sayNO;
3434                 }
3435                 locinput += PL_utf8skip[nextchr];
3436                 nextchr = UCHARAT(locinput);
3437                 break;
3438             }
3439             if (!(OP(scan) == ALNUM
3440                   ? isALNUM(nextchr) : isALNUM_LC(nextchr)))
3441                 sayNO;
3442             nextchr = UCHARAT(++locinput);
3443             break;
3444         case NALNUML:
3445             PL_reg_flags |= RF_tainted;
3446             /* FALL THROUGH */
3447         case NALNUM:
3448             if (!nextchr && locinput >= PL_regeol)
3449                 sayNO;
3450             if (do_utf8) {
3451                 LOAD_UTF8_CHARCLASS_ALNUM();
3452                 if (OP(scan) == NALNUM
3453                     ? (bool)swash_fetch(PL_utf8_alnum, (U8*)locinput, do_utf8)
3454                     : isALNUM_LC_utf8((U8*)locinput))
3455                 {
3456                     sayNO;
3457                 }
3458                 locinput += PL_utf8skip[nextchr];
3459                 nextchr = UCHARAT(locinput);
3460                 break;
3461             }
3462             if (OP(scan) == NALNUM
3463                 ? isALNUM(nextchr) : isALNUM_LC(nextchr))
3464                 sayNO;
3465             nextchr = UCHARAT(++locinput);
3466             break;
3467         case SPACEL:
3468             PL_reg_flags |= RF_tainted;
3469             /* FALL THROUGH */
3470         case SPACE:
3471             if (!nextchr)
3472                 sayNO;
3473             if (do_utf8) {
3474                 if (UTF8_IS_CONTINUED(nextchr)) {
3475                     LOAD_UTF8_CHARCLASS_SPACE();
3476                     if (!(OP(scan) == SPACE
3477                           ? (bool)swash_fetch(PL_utf8_space, (U8*)locinput, do_utf8)
3478                           : isSPACE_LC_utf8((U8*)locinput)))
3479                     {
3480                         sayNO;
3481                     }
3482                     locinput += PL_utf8skip[nextchr];
3483                     nextchr = UCHARAT(locinput);
3484                     break;
3485                 }
3486             }
3487             if (!(OP(scan) == SPACE
3488                   ? isSPACE(nextchr) : isSPACE_LC(nextchr)))
3489                 sayNO;
3490             nextchr = UCHARAT(++locinput);
3491             break;
3492         case NSPACEL:
3493             PL_reg_flags |= RF_tainted;
3494             /* FALL THROUGH */
3495         case NSPACE:
3496             if (!nextchr && locinput >= PL_regeol)
3497                 sayNO;
3498             if (do_utf8) {
3499                 LOAD_UTF8_CHARCLASS_SPACE();
3500                 if (OP(scan) == NSPACE
3501                     ? (bool)swash_fetch(PL_utf8_space, (U8*)locinput, do_utf8)
3502                     : isSPACE_LC_utf8((U8*)locinput))
3503                 {
3504                     sayNO;
3505                 }
3506                 locinput += PL_utf8skip[nextchr];
3507                 nextchr = UCHARAT(locinput);
3508                 break;
3509             }
3510             if (OP(scan) == NSPACE
3511                 ? isSPACE(nextchr) : isSPACE_LC(nextchr))
3512                 sayNO;
3513             nextchr = UCHARAT(++locinput);
3514             break;
3515         case DIGITL:
3516             PL_reg_flags |= RF_tainted;
3517             /* FALL THROUGH */
3518         case DIGIT:
3519             if (!nextchr)
3520                 sayNO;
3521             if (do_utf8) {
3522                 LOAD_UTF8_CHARCLASS_DIGIT();
3523                 if (!(OP(scan) == DIGIT
3524                       ? (bool)swash_fetch(PL_utf8_digit, (U8*)locinput, do_utf8)
3525                       : isDIGIT_LC_utf8((U8*)locinput)))
3526                 {
3527                     sayNO;
3528                 }
3529                 locinput += PL_utf8skip[nextchr];
3530                 nextchr = UCHARAT(locinput);
3531                 break;
3532             }
3533             if (!(OP(scan) == DIGIT
3534                   ? isDIGIT(nextchr) : isDIGIT_LC(nextchr)))
3535                 sayNO;
3536             nextchr = UCHARAT(++locinput);
3537             break;
3538         case NDIGITL:
3539             PL_reg_flags |= RF_tainted;
3540             /* FALL THROUGH */
3541         case NDIGIT:
3542             if (!nextchr && locinput >= PL_regeol)
3543                 sayNO;
3544             if (do_utf8) {
3545                 LOAD_UTF8_CHARCLASS_DIGIT();
3546                 if (OP(scan) == NDIGIT
3547                     ? (bool)swash_fetch(PL_utf8_digit, (U8*)locinput, do_utf8)
3548                     : isDIGIT_LC_utf8((U8*)locinput))
3549                 {
3550                     sayNO;
3551                 }
3552                 locinput += PL_utf8skip[nextchr];
3553                 nextchr = UCHARAT(locinput);
3554                 break;
3555             }
3556             if (OP(scan) == NDIGIT
3557                 ? isDIGIT(nextchr) : isDIGIT_LC(nextchr))
3558                 sayNO;
3559             nextchr = UCHARAT(++locinput);
3560             break;
3561         case CLUMP:
3562             if (locinput >= PL_regeol)
3563                 sayNO;
3564             if  (do_utf8) {
3565                 LOAD_UTF8_CHARCLASS_MARK();
3566                 if (swash_fetch(PL_utf8_mark,(U8*)locinput, do_utf8))
3567                     sayNO;
3568                 locinput += PL_utf8skip[nextchr];
3569                 while (locinput < PL_regeol &&
3570                        swash_fetch(PL_utf8_mark,(U8*)locinput, do_utf8))
3571                     locinput += UTF8SKIP(locinput);
3572                 if (locinput > PL_regeol)
3573                     sayNO;
3574             } 
3575             else
3576                locinput++;
3577             nextchr = UCHARAT(locinput);
3578             break;
3579             
3580         case NREFFL:
3581         {
3582             char *s;
3583             char type;
3584             PL_reg_flags |= RF_tainted;
3585             /* FALL THROUGH */
3586         case NREF:
3587         case NREFF:
3588             type = OP(scan);
3589             n = reg_check_named_buff_matched(rex,scan);
3590
3591             if ( n ) {
3592                 type = REF + ( type - NREF );
3593                 goto do_ref;
3594             } else {
3595                 sayNO;
3596             }
3597             /* unreached */
3598         case REFFL:
3599             PL_reg_flags |= RF_tainted;
3600             /* FALL THROUGH */
3601         case REF:
3602         case REFF: 
3603             n = ARG(scan);  /* which paren pair */
3604             type = OP(scan);
3605           do_ref:  
3606             ln = PL_regoffs[n].start;
3607             PL_reg_leftiter = PL_reg_maxiter;           /* Void cache */
3608             if (*PL_reglastparen < n || ln == -1)
3609                 sayNO;                  /* Do not match unless seen CLOSEn. */
3610             if (ln == PL_regoffs[n].end)
3611                 break;
3612
3613             s = PL_bostr + ln;
3614             if (do_utf8 && type != REF) {       /* REF can do byte comparison */
3615                 char *l = locinput;
3616                 const char *e = PL_bostr + PL_regoffs[n].end;
3617                 /*
3618                  * Note that we can't do the "other character" lookup trick as
3619                  * in the 8-bit case (no pun intended) because in Unicode we
3620                  * have to map both upper and title case to lower case.
3621                  */
3622                 if (type == REFF) {
3623                     while (s < e) {
3624                         STRLEN ulen1, ulen2;
3625                         U8 tmpbuf1[UTF8_MAXBYTES_CASE+1];
3626                         U8 tmpbuf2[UTF8_MAXBYTES_CASE+1];
3627
3628                         if (l >= PL_regeol)
3629                             sayNO;
3630                         toLOWER_utf8((U8*)s, tmpbuf1, &ulen1);
3631                         toLOWER_utf8((U8*)l, tmpbuf2, &ulen2);
3632                         if (ulen1 != ulen2 || memNE((char *)tmpbuf1, (char *)tmpbuf2, ulen1))
3633                             sayNO;
3634                         s += ulen1;
3635                         l += ulen2;
3636                     }
3637                 }
3638                 locinput = l;
3639                 nextchr = UCHARAT(locinput);
3640                 break;
3641             }
3642
3643             /* Inline the first character, for speed. */
3644             if (UCHARAT(s) != nextchr &&
3645                 (type == REF ||
3646                  (UCHARAT(s) != (type == REFF
3647                                   ? PL_fold : PL_fold_locale)[nextchr])))
3648                 sayNO;
3649             ln = PL_regoffs[n].end - ln;
3650             if (locinput + ln > PL_regeol)
3651                 sayNO;
3652             if (ln > 1 && (type == REF
3653                            ? memNE(s, locinput, ln)
3654                            : (type == REFF
3655                               ? ibcmp(s, locinput, ln)
3656                               : ibcmp_locale(s, locinput, ln))))
3657                 sayNO;
3658             locinput += ln;
3659             nextchr = UCHARAT(locinput);
3660             break;
3661         }
3662         case NOTHING:
3663         case TAIL:
3664             break;
3665         case BACK:
3666             break;
3667
3668 #undef  ST
3669 #define ST st->u.eval
3670         {
3671             SV *ret;
3672             REGEXP *re_sv;
3673             regexp *re;
3674             regexp_internal *rei;
3675             regnode *startpoint;
3676
3677         case GOSTART:
3678         case GOSUB: /*    /(...(?1))/   /(...(?&foo))/   */
3679             if (cur_eval && cur_eval->locinput==locinput) {
3680                 if (cur_eval->u.eval.close_paren == (U32)ARG(scan)) 
3681                     Perl_croak(aTHX_ "Infinite recursion in regex");
3682                 if ( ++nochange_depth > max_nochange_depth )
3683                     Perl_croak(aTHX_ 
3684                         "Pattern subroutine nesting without pos change"
3685                         " exceeded limit in regex");
3686             } else {
3687                 nochange_depth = 0;
3688             }
3689             re_sv = rex_sv;
3690             re = rex;
3691             rei = rexi;
3692             (void)ReREFCNT_inc(rex_sv);
3693             if (OP(scan)==GOSUB) {
3694                 startpoint = scan + ARG2L(scan);
3695                 ST.close_paren = ARG(scan);
3696             } else {
3697                 startpoint = rei->program+1;
3698                 ST.close_paren = 0;
3699             }
3700             goto eval_recurse_doit;
3701             /* NOTREACHED */
3702         case EVAL:  /*   /(?{A})B/   /(??{A})B/  and /(?(?{A})X|Y)B/   */        
3703             if (cur_eval && cur_eval->locinput==locinput) {
3704                 if ( ++nochange_depth > max_nochange_depth )
3705                     Perl_croak(aTHX_ "EVAL without pos change exceeded limit in regex");
3706             } else {
3707                 nochange_depth = 0;
3708             }    
3709             {
3710                 /* execute the code in the {...} */
3711                 dSP;
3712                 SV ** const before = SP;
3713                 OP_4tree * const oop = PL_op;
3714                 COP * const ocurcop = PL_curcop;
3715                 PAD *old_comppad;
3716                 char *saved_regeol = PL_regeol;
3717             
3718                 n = ARG(scan);
3719                 PL_op = (OP_4tree*)rexi->data->data[n];
3720                 DEBUG_STATE_r( PerlIO_printf(Perl_debug_log, 
3721                     "  re_eval 0x%"UVxf"\n", PTR2UV(PL_op)) );
3722                 PAD_SAVE_LOCAL(old_comppad, (PAD*)rexi->data->data[n + 2]);
3723                 PL_regoffs[0].end = PL_reg_magic->mg_len = locinput - PL_bostr;
3724
3725                 if (sv_yes_mark) {
3726                     SV *sv_mrk = get_sv("REGMARK", 1);
3727                     sv_setsv(sv_mrk, sv_yes_mark);
3728                 }
3729
3730                 CALLRUNOPS(aTHX);                       /* Scalar context. */
3731                 SPAGAIN;
3732                 if (SP == before)
3733                     ret = &PL_sv_undef;   /* protect against empty (?{}) blocks. */
3734                 else {
3735                     ret = POPs;
3736                     PUTBACK;
3737                 }
3738
3739                 PL_op = oop;
3740                 PAD_RESTORE_LOCAL(old_comppad);
3741                 PL_curcop = ocurcop;
3742                 PL_regeol = saved_regeol;
3743                 if (!logical) {
3744                     /* /(?{...})/ */
3745                     sv_setsv(save_scalar(PL_replgv), ret);
3746                     break;
3747                 }
3748             }
3749             if (logical == 2) { /* Postponed subexpression: /(??{...})/ */
3750                 logical = 0;
3751                 {
3752                     /* extract RE object from returned value; compiling if
3753                      * necessary */
3754                     MAGIC *mg = NULL;
3755                     REGEXP *rx = NULL;
3756
3757                     if (SvROK(ret)) {
3758                         SV *const sv = SvRV(ret);
3759
3760                         if (SvTYPE(sv) == SVt_REGEXP) {
3761                             rx = (REGEXP*) sv;
3762                         } else if (SvSMAGICAL(sv)) {
3763                             mg = mg_find(sv, PERL_MAGIC_qr);
3764                             assert(mg);
3765                         }
3766                     } else if (SvTYPE(ret) == SVt_REGEXP) {
3767                         rx = (REGEXP*) ret;
3768                     } else if (SvSMAGICAL(ret)) {
3769                         if (SvGMAGICAL(ret)) {
3770                             /* I don't believe that there is ever qr magic
3771                                here.  */
3772                             assert(!mg_find(ret, PERL_MAGIC_qr));
3773                             sv_unmagic(ret, PERL_MAGIC_qr);
3774                         }
3775                         else {
3776                             mg = mg_find(ret, PERL_MAGIC_qr);
3777                             /* testing suggests mg only ends up non-NULL for
3778                                scalars who were upgraded and compiled in the
3779                                else block below. In turn, this is only
3780                                triggered in the "postponed utf8 string" tests
3781                                in t/op/pat.t  */
3782                         }
3783                     }
3784
3785                     if (mg) {
3786                         rx = (REGEXP *) mg->mg_obj; /*XXX:dmq*/
3787                         assert(rx);
3788                     }
3789                     if (rx) {
3790                         rx = reg_temp_copy(rx);
3791                     }
3792                     else {
3793                         U32 pm_flags = 0;
3794                         const I32 osize = PL_regsize;
3795
3796                         if (DO_UTF8(ret)) {
3797                             assert (SvUTF8(ret));
3798                         } else if (SvUTF8(ret)) {
3799                             /* Not doing UTF-8, despite what the SV says. Is
3800                                this only if we're trapped in use 'bytes'?  */
3801                             /* Make a copy of the octet sequence, but without
3802                                the flag on, as the compiler now honours the
3803                                SvUTF8 flag on ret.  */
3804                             STRLEN len;
3805                             const char *const p = SvPV(ret, len);
3806                             ret = newSVpvn_flags(p, len, SVs_TEMP);
3807                         }
3808                         rx = CALLREGCOMP(ret, pm_flags);
3809                         if (!(SvFLAGS(ret)
3810                               & (SVs_TEMP | SVs_PADTMP | SVf_READONLY
3811                                  | SVs_GMG))) {
3812                             /* This isn't a first class regexp. Instead, it's
3813                                caching a regexp onto an existing, Perl visible
3814                                scalar.  */
3815                             sv_magic(ret, MUTABLE_SV(rx), PERL_MAGIC_qr, 0, 0);
3816                         }
3817                         PL_regsize = osize;
3818                     }
3819                     re_sv = rx;
3820                     re = (struct regexp *)SvANY(rx);
3821                 }
3822                 RXp_MATCH_COPIED_off(re);
3823                 re->subbeg = rex->subbeg;
3824                 re->sublen = rex->sublen;
3825                 rei = RXi_GET(re);
3826                 DEBUG_EXECUTE_r(
3827                     debug_start_match(re_sv, do_utf8, locinput, PL_regeol, 
3828                         "Matching embedded");
3829                 );              
3830                 startpoint = rei->program + 1;
3831                 ST.close_paren = 0; /* only used for GOSUB */
3832                 /* borrowed from regtry */
3833                 if (PL_reg_start_tmpl <= re->nparens) {
3834                     PL_reg_start_tmpl = re->nparens*3/2 + 3;
3835                     if(PL_reg_start_tmp)
3836                         Renew(PL_reg_start_tmp, PL_reg_start_tmpl, char*);
3837                     else
3838                         Newx(PL_reg_start_tmp, PL_reg_start_tmpl, char*);
3839                 }                       
3840
3841         eval_recurse_doit: /* Share code with GOSUB below this line */                          
3842                 /* run the pattern returned from (??{...}) */
3843                 ST.cp = regcppush(0);   /* Save *all* the positions. */
3844                 REGCP_SET(ST.lastcp);
3845                 
3846                 PL_regoffs = re->offs; /* essentially NOOP on GOSUB */
3847                 
3848                 /* see regtry, specifically PL_reglast(?:close)?paren is a pointer! (i dont know why) :dmq */
3849                 PL_reglastparen = &re->lastparen;
3850                 PL_reglastcloseparen = &re->lastcloseparen;
3851                 re->lastparen = 0;
3852                 re->lastcloseparen = 0;
3853
3854                 PL_reginput = locinput;
3855                 PL_regsize = 0;
3856
3857                 /* XXXX This is too dramatic a measure... */
3858                 PL_reg_maxiter = 0;
3859
3860                 ST.toggle_reg_flags = PL_reg_flags;
3861                 if (RX_UTF8(re_sv))
3862                     PL_reg_flags |= RF_utf8;
3863                 else
3864                     PL_reg_flags &= ~RF_utf8;
3865                 ST.toggle_reg_flags ^= PL_reg_flags; /* diff of old and new */
3866
3867                 ST.prev_rex = rex_sv;
3868                 ST.prev_curlyx = cur_curlyx;
3869                 SETREX(rex_sv,re_sv);
3870                 rex = re;
3871                 rexi = rei;
3872                 cur_curlyx = NULL;
3873                 ST.B = next;
3874                 ST.prev_eval = cur_eval;
3875                 cur_eval = st;
3876                 /* now continue from first node in postoned RE */
3877                 PUSH_YES_STATE_GOTO(EVAL_AB, startpoint);
3878                 /* NOTREACHED */
3879             }
3880             /* logical is 1,   /(?(?{...})X|Y)/ */
3881             sw = (bool)SvTRUE(ret);
3882             logical = 0;
3883             break;
3884         }
3885
3886         case EVAL_AB: /* cleanup after a successful (??{A})B */
3887             /* note: this is called twice; first after popping B, then A */
3888             PL_reg_flags ^= ST.toggle_reg_flags; 
3889             ReREFCNT_dec(rex_sv);
3890             SETREX(rex_sv,ST.prev_rex);
3891             rex = (struct regexp *)SvANY(rex_sv);
3892             rexi = RXi_GET(rex);
3893             regcpblow(ST.cp);
3894             cur_eval = ST.prev_eval;
3895             cur_curlyx = ST.prev_curlyx;
3896
3897             /* rex was changed so update the pointer in PL_reglastparen and PL_reglastcloseparen */
3898             PL_reglastparen = &rex->lastparen;
3899             PL_reglastcloseparen = &rex->lastcloseparen;
3900             /* also update PL_regoffs */
3901             PL_regoffs = rex->offs;
3902             
3903             /* XXXX This is too dramatic a measure... */
3904             PL_reg_maxiter = 0;
3905             if ( nochange_depth )
3906                 nochange_depth--;
3907             sayYES;
3908
3909
3910         case EVAL_AB_fail: /* unsuccessfully ran A or B in (??{A})B */
3911             /* note: this is called twice; first after popping B, then A */
3912             PL_reg_flags ^= ST.toggle_reg_flags; 
3913             ReREFCNT_dec(rex_sv);
3914             SETREX(rex_sv,ST.prev_rex);
3915             rex = (struct regexp *)SvANY(rex_sv);
3916             rexi = RXi_GET(rex); 
3917             /* rex was changed so update the pointer in PL_reglastparen and PL_reglastcloseparen */
3918             PL_reglastparen = &rex->lastparen;
3919             PL_reglastcloseparen = &rex->lastcloseparen;
3920
3921             PL_reginput = locinput;
3922             REGCP_UNWIND(ST.lastcp);
3923             regcppop(rex);
3924             cur_eval = ST.prev_eval;
3925             cur_curlyx = ST.prev_curlyx;
3926             /* XXXX This is too dramatic a measure... */
3927             PL_reg_maxiter = 0;
3928             if ( nochange_depth )
3929                 nochange_depth--;
3930             sayNO_SILENT;
3931 #undef ST
3932
3933         case OPEN:
3934             n = ARG(scan);  /* which paren pair */
3935             PL_reg_start_tmp[n] = locinput;
3936             if (n > PL_regsize)
3937                 PL_regsize = n;
3938             lastopen = n;
3939             break;
3940         case CLOSE:
3941             n = ARG(scan);  /* which paren pair */
3942             PL_regoffs[n].start = PL_reg_start_tmp[n] - PL_bostr;
3943             PL_regoffs[n].end = locinput - PL_bostr;
3944             /*if (n > PL_regsize)
3945                 PL_regsize = n;*/
3946             if (n > *PL_reglastparen)
3947                 *PL_reglastparen = n;
3948             *PL_reglastcloseparen = n;
3949             if (cur_eval && cur_eval->u.eval.close_paren == n) {
3950                 goto fake_end;
3951             }    
3952             break;
3953         case ACCEPT:
3954             if (ARG(scan)){
3955                 regnode *cursor;
3956                 for (cursor=scan;
3957                      cursor && OP(cursor)!=END; 
3958                      cursor=regnext(cursor)) 
3959                 {
3960                     if ( OP(cursor)==CLOSE ){
3961                         n = ARG(cursor);
3962                         if ( n <= lastopen ) {
3963                             PL_regoffs[n].start
3964                                 = PL_reg_start_tmp[n] - PL_bostr;
3965                             PL_regoffs[n].end = locinput - PL_bostr;
3966                             /*if (n > PL_regsize)
3967                             PL_regsize = n;*/
3968                             if (n > *PL_reglastparen)
3969                                 *PL_reglastparen = n;
3970                             *PL_reglastcloseparen = n;
3971                             if ( n == ARG(scan) || (cur_eval &&
3972                                 cur_eval->u.eval.close_paren == n))
3973                                 break;
3974                         }
3975                     }
3976                 }
3977             }
3978             goto fake_end;
3979             /*NOTREACHED*/          
3980         case GROUPP:
3981             n = ARG(scan);  /* which paren pair */
3982             sw = (bool)(*PL_reglastparen >= n && PL_regoffs[n].end != -1);
3983             break;
3984         case NGROUPP:
3985             /* reg_check_named_buff_matched returns 0 for no match */
3986             sw = (bool)(0 < reg_check_named_buff_matched(rex,scan));
3987             break;
3988         case INSUBP:
3989             n = ARG(scan);
3990             sw = (cur_eval && (!n || cur_eval->u.eval.close_paren == n));
3991             break;
3992         case DEFINEP:
3993             sw = 0;
3994             break;
3995         case IFTHEN:
3996             PL_reg_leftiter = PL_reg_maxiter;           /* Void cache */
3997             if (sw)
3998                 next = NEXTOPER(NEXTOPER(scan));
3999             else {
4000                 next = scan + ARG(scan);
4001                 if (OP(next) == IFTHEN) /* Fake one. */
4002                     next = NEXTOPER(NEXTOPER(next));
4003             }
4004             break;
4005         case LOGICAL:
4006             logical = scan->flags;
4007             break;
4008
4009 /*******************************************************************
4010
4011 The CURLYX/WHILEM pair of ops handle the most generic case of the /A*B/
4012 pattern, where A and B are subpatterns. (For simple A, CURLYM or
4013 STAR/PLUS/CURLY/CURLYN are used instead.)
4014
4015 A*B is compiled as <CURLYX><A><WHILEM><B>
4016
4017 On entry to the subpattern, CURLYX is called. This pushes a CURLYX
4018 state, which contains the current count, initialised to -1. It also sets
4019 cur_curlyx to point to this state, with any previous value saved in the
4020 state block.
4021
4022 CURLYX then jumps straight to the WHILEM op, rather than executing A,
4023 since the pattern may possibly match zero times (i.e. it's a while {} loop
4024 rather than a do {} while loop).
4025
4026 Each entry to WHILEM represents a successful match of A. The count in the
4027 CURLYX block is incremented, another WHILEM state is pushed, and execution
4028 passes to A or B depending on greediness and the current count.
4029
4030 For example, if matching against the string a1a2a3b (where the aN are
4031 substrings that match /A/), then the match progresses as follows: (the
4032 pushed states are interspersed with the bits of strings matched so far):
4033
4034     <CURLYX cnt=-1>
4035     <CURLYX cnt=0><WHILEM>
4036     <CURLYX cnt=1><WHILEM> a1 <WHILEM>
4037     <CURLYX cnt=2><WHILEM> a1 <WHILEM> a2 <WHILEM>
4038     <CURLYX cnt=3><WHILEM> a1 <WHILEM> a2 <WHILEM> a3 <WHILEM>
4039     <CURLYX cnt=3><WHILEM> a1 <WHILEM> a2 <WHILEM> a3 <WHILEM> b
4040
4041 (Contrast this with something like CURLYM, which maintains only a single
4042 backtrack state:
4043
4044     <CURLYM cnt=0> a1
4045     a1 <CURLYM cnt=1> a2
4046     a1 a2 <CURLYM cnt=2> a3
4047     a1 a2 a3 <CURLYM cnt=3> b
4048 )
4049
4050 Each WHILEM state block marks a point to backtrack to upon partial failure
4051 of A or B, and also contains some minor state data related to that
4052 iteration.  The CURLYX block, pointed to by cur_curlyx, contains the
4053 overall state, such as the count, and pointers to the A and B ops.
4054
4055 This is complicated slightly by nested CURLYX/WHILEM's. Since cur_curlyx
4056 must always point to the *current* CURLYX block, the rules are:
4057
4058 When executing CURLYX, save the old cur_curlyx in the CURLYX state block,
4059 and set cur_curlyx to point the new block.
4060
4061 When popping the CURLYX block after a successful or unsuccessful match,
4062 restore the previous cur_curlyx.
4063
4064 When WHILEM is about to execute B, save the current cur_curlyx, and set it
4065 to the outer one saved in the CURLYX block.
4066
4067 When popping the WHILEM block after a successful or unsuccessful B match,
4068 restore the previous cur_curlyx.
4069
4070 Here's an example for the pattern (AI* BI)*BO
4071 I and O refer to inner and outer, C and W refer to CURLYX and WHILEM:
4072
4073 cur_
4074 curlyx backtrack stack
4075 ------ ---------------
4076 NULL   
4077 CO     <CO prev=NULL> <WO>
4078 CI     <CO prev=NULL> <WO> <CI prev=CO> <WI> ai 
4079 CO     <CO prev=NULL> <WO> <CI prev=CO> <WI> ai <WI prev=CI> bi 
4080 NULL   <CO prev=NULL> <WO> <CI prev=CO> <WI> ai <WI prev=CI> bi <WO prev=CO> bo
4081
4082 At this point the pattern succeeds, and we work back down the stack to
4083 clean up, restoring as we go:
4084
4085 CO     <CO prev=NULL> <WO> <CI prev=CO> <WI> ai <WI prev=CI> bi 
4086 CI     <CO prev=NULL> <WO> <CI prev=CO> <WI> ai 
4087 CO     <CO prev=NULL> <WO>
4088 NULL   
4089
4090 *******************************************************************/
4091
4092 #define ST st->u.curlyx
4093
4094         case CURLYX:    /* start of /A*B/  (for complex A) */
4095         {
4096             /* No need to save/restore up to this paren */
4097             I32 parenfloor = scan->flags;
4098             
4099             assert(next); /* keep Coverity happy */
4100             if (OP(PREVOPER(next)) == NOTHING) /* LONGJMP */
4101                 next += ARG(next);
4102
4103             /* XXXX Probably it is better to teach regpush to support
4104                parenfloor > PL_regsize... */
4105             if (parenfloor > (I32)*PL_reglastparen)
4106                 parenfloor = *PL_reglastparen; /* Pessimization... */
4107
4108             ST.prev_curlyx= cur_curlyx;
4109             cur_curlyx = st;
4110             ST.cp = PL_savestack_ix;
4111
4112             /* these fields contain the state of the current curly.
4113              * they are accessed by subsequent WHILEMs */
4114             ST.parenfloor = parenfloor;
4115             ST.min = ARG1(scan);
4116             ST.max = ARG2(scan);
4117             ST.A = NEXTOPER(scan) + EXTRA_STEP_2ARGS;
4118             ST.B = next;
4119             ST.minmod = minmod;
4120             minmod = 0;
4121             ST.count = -1;      /* this will be updated by WHILEM */
4122             ST.lastloc = NULL;  /* this will be updated by WHILEM */
4123
4124             PL_reginput = locinput;
4125             PUSH_YES_STATE_GOTO(CURLYX_end, PREVOPER(next));
4126             /* NOTREACHED */
4127         }
4128
4129         case CURLYX_end: /* just finished matching all of A*B */
4130             cur_curlyx = ST.prev_curlyx;
4131             sayYES;
4132             /* NOTREACHED */
4133
4134         case CURLYX_end_fail: /* just failed to match all of A*B */
4135             regcpblow(ST.cp);
4136             cur_curlyx = ST.prev_curlyx;
4137             sayNO;
4138             /* NOTREACHED */
4139
4140
4141 #undef ST
4142 #define ST st->u.whilem
4143
4144         case WHILEM:     /* just matched an A in /A*B/  (for complex A) */
4145         {
4146             /* see the discussion above about CURLYX/WHILEM */
4147             I32 n;
4148             assert(cur_curlyx); /* keep Coverity happy */
4149             n = ++cur_curlyx->u.curlyx.count; /* how many A's matched */
4150             ST.save_lastloc = cur_curlyx->u.curlyx.lastloc;
4151             ST.cache_offset = 0;
4152             ST.cache_mask = 0;
4153             
4154             PL_reginput = locinput;
4155
4156             DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
4157                   "%*s  whilem: matched %ld out of %ld..%ld\n",
4158                   REPORT_CODE_OFF+depth*2, "", (long)n,
4159                   (long)cur_curlyx->u.curlyx.min,
4160                   (long)cur_curlyx->u.curlyx.max)
4161             );
4162
4163             /* First just match a string of min A's. */
4164
4165             if (n < cur_curlyx->u.curlyx.min) {
4166                 cur_curlyx->u.curlyx.lastloc = locinput;
4167                 PUSH_STATE_GOTO(WHILEM_A_pre, cur_curlyx->u.curlyx.A);
4168                 /* NOTREACHED */
4169             }
4170
4171             /* If degenerate A matches "", assume A done. */
4172
4173             if (locinput == cur_curlyx->u.curlyx.lastloc) {
4174                 DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
4175                    "%*s  whilem: empty match detected, trying continuation...\n",
4176                    REPORT_CODE_OFF+depth*2, "")
4177                 );
4178                 goto do_whilem_B_max;
4179             }
4180
4181             /* super-linear cache processing */
4182
4183             if (scan->flags) {
4184
4185                 if (!PL_reg_maxiter) {
4186                     /* start the countdown: Postpone detection until we
4187                      * know the match is not *that* much linear. */
4188                     PL_reg_maxiter = (PL_regeol - PL_bostr + 1) * (scan->flags>>4);
4189                     /* possible overflow for long strings and many CURLYX's */
4190                     if (PL_reg_maxiter < 0)
4191                         PL_reg_maxiter = I32_MAX;
4192                     PL_reg_leftiter = PL_reg_maxiter;
4193                 }
4194
4195                 if (PL_reg_leftiter-- == 0) {
4196                     /* initialise cache */
4197                     const I32 size = (PL_reg_maxiter + 7)/8;
4198                     if (PL_reg_poscache) {
4199                         if ((I32)PL_reg_poscache_size < size) {
4200                             Renew(PL_reg_poscache, size, char);
4201                             PL_reg_poscache_size = size;
4202                         }
4203                         Zero(PL_reg_poscache, size, char);
4204                     }
4205                     else {
4206                         PL_reg_poscache_size = size;
4207                         Newxz(PL_reg_poscache, size, char);
4208                     }
4209                     DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
4210       "%swhilem: Detected a super-linear match, switching on caching%s...\n",
4211                               PL_colors[4], PL_colors[5])
4212                     );
4213                 }
4214
4215                 if (PL_reg_leftiter < 0) {
4216                     /* have we already failed at this position? */
4217                     I32 offset, mask;
4218                     offset  = (scan->flags & 0xf) - 1
4219                                 + (locinput - PL_bostr)  * (scan->flags>>4);
4220                     mask    = 1 << (offset % 8);
4221                     offset /= 8;
4222                     if (PL_reg_poscache[offset] & mask) {
4223                         DEBUG_EXECUTE_r( PerlIO_printf(Perl_debug_log,
4224                             "%*s  whilem: (cache) already tried at this position...\n",
4225                             REPORT_CODE_OFF+depth*2, "")
4226                         );
4227                         sayNO; /* cache records failure */
4228                     }
4229                     ST.cache_offset = offset;
4230                     ST.cache_mask   = mask;
4231                 }
4232             }
4233
4234             /* Prefer B over A for minimal matching. */
4235
4236             if (cur_curlyx->u.curlyx.minmod) {
4237                 ST.save_curlyx = cur_curlyx;
4238                 cur_curlyx = cur_curlyx->u.curlyx.prev_curlyx;
4239                 ST.cp = regcppush(ST.save_curlyx->u.curlyx.parenfloor);
4240                 REGCP_SET(ST.lastcp);
4241                 PUSH_YES_STATE_GOTO(WHILEM_B_min, ST.save_curlyx->u.curlyx.B);
4242                 /* NOTREACHED */
4243             }
4244
4245             /* Prefer A over B for maximal matching. */
4246
4247             if (n < cur_curlyx->u.curlyx.max) { /* More greed allowed? */
4248                 ST.cp = regcppush(cur_curlyx->u.curlyx.parenfloor);
4249                 cur_curlyx->u.curlyx.lastloc = locinput;
4250                 REGCP_SET(ST.lastcp);
4251                 PUSH_STATE_GOTO(WHILEM_A_max, cur_curlyx->u.curlyx.A);
4252                 /* NOTREACHED */
4253             }
4254             goto do_whilem_B_max;
4255         }
4256         /* NOTREACHED */
4257
4258         case WHILEM_B_min: /* just matched B in a minimal match */
4259         case WHILEM_B_max: /* just matched B in a maximal match */
4260             cur_curlyx = ST.save_curlyx;
4261             sayYES;
4262             /* NOTREACHED */
4263
4264         case WHILEM_B_max_fail: /* just failed to match B in a maximal match */
4265             cur_curlyx = ST.save_curlyx;
4266             cur_curlyx->u.curlyx.lastloc = ST.save_lastloc;
4267             cur_curlyx->u.curlyx.count--;
4268             CACHEsayNO;
4269             /* NOTREACHED */
4270
4271         case WHILEM_A_min_fail: /* just failed to match A in a minimal match */
4272             REGCP_UNWIND(ST.lastcp);
4273             regcppop(rex);
4274             /* FALL THROUGH */
4275         case WHILEM_A_pre_fail: /* just failed to match even minimal A */
4276             cur_curlyx->u.curlyx.lastloc = ST.save_lastloc;
4277             cur_curlyx->u.curlyx.count--;
4278             CACHEsayNO;
4279             /* NOTREACHED */
4280
4281         case WHILEM_A_max_fail: /* just failed to match A in a maximal match */
4282             REGCP_UNWIND(ST.lastcp);
4283             regcppop(rex);      /* Restore some previous $<digit>s? */
4284             PL_reginput = locinput;
4285             DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
4286                 "%*s  whilem: failed, trying continuation...\n",
4287                 REPORT_CODE_OFF+depth*2, "")
4288             );
4289           do_whilem_B_max:
4290             if (cur_curlyx->u.curlyx.count >= REG_INFTY
4291                 && ckWARN(WARN_REGEXP)
4292                 && !(PL_reg_flags & RF_warned))
4293             {
4294                 PL_reg_flags |= RF_warned;
4295                 Perl_warner(aTHX_ packWARN(WARN_REGEXP), "%s limit (%d) exceeded",
4296                      "Complex regular subexpression recursion",
4297                      REG_INFTY - 1);
4298             }
4299
4300             /* now try B */
4301             ST.save_curlyx = cur_curlyx;
4302             cur_curlyx = cur_curlyx->u.curlyx.prev_curlyx;
4303             PUSH_YES_STATE_GOTO(WHILEM_B_max, ST.save_curlyx->u.curlyx.B);
4304             /* NOTREACHED */
4305
4306         case WHILEM_B_min_fail: /* just failed to match B in a minimal match */
4307             cur_curlyx = ST.save_curlyx;
4308             REGCP_UNWIND(ST.lastcp);
4309             regcppop(rex);
4310
4311             if (cur_curlyx->u.curlyx.count >= cur_curlyx->u.curlyx.max) {
4312                 /* Maximum greed exceeded */
4313                 if (cur_curlyx->u.curlyx.count >= REG_INFTY
4314                     && ckWARN(WARN_REGEXP)
4315                     && !(PL_reg_flags & RF_warned))
4316                 {
4317                     PL_reg_flags |= RF_warned;
4318                     Perl_warner(aTHX_ packWARN(WARN_REGEXP),
4319                         "%s limit (%d) exceeded",
4320                         "Complex regular subexpression recursion",
4321                         REG_INFTY - 1);
4322                 }
4323                 cur_curlyx->u.curlyx.count--;
4324                 CACHEsayNO;
4325             }
4326
4327             DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
4328                 "%*s  trying longer...\n", REPORT_CODE_OFF+depth*2, "")
4329             );
4330             /* Try grabbing another A and see if it helps. */
4331             PL_reginput = locinput;
4332             cur_curlyx->u.curlyx.lastloc = locinput;
4333             ST.cp = regcppush(cur_curlyx->u.curlyx.parenfloor);
4334             REGCP_SET(ST.lastcp);
4335             PUSH_STATE_GOTO(WHILEM_A_min, ST.save_curlyx->u.curlyx.A);
4336             /* NOTREACHED */
4337
4338 #undef  ST
4339 #define ST st->u.branch
4340
4341         case BRANCHJ:       /*  /(...|A|...)/ with long next pointer */
4342             next = scan + ARG(scan);
4343             if (next == scan)
4344                 next = NULL;
4345             scan = NEXTOPER(scan);
4346             /* FALL THROUGH */
4347
4348         case BRANCH:        /*  /(...|A|...)/ */
4349             scan = NEXTOPER(scan); /* scan now points to inner node */
4350             ST.lastparen = *PL_reglastparen;
4351             ST.next_branch = next;
4352             REGCP_SET(ST.cp);
4353             PL_reginput = locinput;
4354
4355             /* Now go into the branch */
4356             if (has_cutgroup) {
4357                 PUSH_YES_STATE_GOTO(BRANCH_next, scan);    
4358             } else {
4359                 PUSH_STATE_GOTO(BRANCH_next, scan);
4360             }
4361             /* NOTREACHED */
4362         case CUTGROUP:
4363             PL_reginput = locinput;
4364             sv_yes_mark = st->u.mark.mark_name = scan->flags ? NULL :
4365                 MUTABLE_SV(rexi->data->data[ ARG( scan ) ]);
4366             PUSH_STATE_GOTO(CUTGROUP_next,next);
4367             /* NOTREACHED */
4368         case CUTGROUP_next_fail:
4369             do_cutgroup = 1;
4370             no_final = 1;
4371             if (st->u.mark.mark_name)
4372                 sv_commit = st->u.mark.mark_name;
4373             sayNO;          
4374             /* NOTREACHED */
4375         case BRANCH_next:
4376             sayYES;
4377             /* NOTREACHED */
4378         case BRANCH_next_fail: /* that branch failed; try the next, if any */
4379             if (do_cutgroup) {
4380                 do_cutgroup = 0;
4381                 no_final = 0;
4382             }
4383             REGCP_UNWIND(ST.cp);
4384             for (n = *PL_reglastparen; n > ST.lastparen; n--)
4385                 PL_regoffs[n].end = -1;
4386             *PL_reglastparen = n;
4387             /*dmq: *PL_reglastcloseparen = n; */
4388             scan = ST.next_branch;
4389             /* no more branches? */
4390             if (!scan || (OP(scan) != BRANCH && OP(scan) != BRANCHJ)) {
4391                 DEBUG_EXECUTE_r({
4392                     PerlIO_printf( Perl_debug_log,
4393                         "%*s  %sBRANCH failed...%s\n",
4394                         REPORT_CODE_OFF+depth*2, "", 
4395                         PL_colors[4],
4396                         PL_colors[5] );
4397                 });
4398                 sayNO_SILENT;
4399             }
4400             continue; /* execute next BRANCH[J] op */
4401             /* NOTREACHED */
4402     
4403         case MINMOD:
4404             minmod = 1;
4405             break;
4406
4407 #undef  ST
4408 #define ST st->u.curlym
4409
4410         case CURLYM:    /* /A{m,n}B/ where A is fixed-length */
4411
4412             /* This is an optimisation of CURLYX that enables us to push
4413              * only a single backtracking state, no matter how many matches
4414              * there are in {m,n}. It relies on the pattern being constant
4415              * length, with no parens to influence future backrefs
4416              */
4417
4418             ST.me = scan;
4419             scan = NEXTOPER(scan) + NODE_STEP_REGNODE;
4420
4421             /* if paren positive, emulate an OPEN/CLOSE around A */
4422             if (ST.me->flags) {
4423                 U32 paren = ST.me->flags;
4424                 if (paren > PL_regsize)
4425                     PL_regsize = paren;
4426                 if (paren > *PL_reglastparen)
4427                     *PL_reglastparen = paren;
4428                 scan += NEXT_OFF(scan); /* Skip former OPEN. */
4429             }
4430             ST.A = scan;
4431             ST.B = next;
4432             ST.alen = 0;
4433             ST.count = 0;
4434             ST.minmod = minmod;
4435             minmod = 0;
4436             ST.c1 = CHRTEST_UNINIT;
4437             REGCP_SET(ST.cp);
4438
4439             if (!(ST.minmod ? ARG1(ST.me) : ARG2(ST.me))) /* min/max */
4440                 goto curlym_do_B;
4441
4442           curlym_do_A: /* execute the A in /A{m,n}B/  */
4443             PL_reginput = locinput;
4444             PUSH_YES_STATE_GOTO(CURLYM_A, ST.A); /* match A */
4445             /* NOTREACHED */
4446
4447         case CURLYM_A: /* we've just matched an A */
4448             locinput = st->locinput;
4449             nextchr = UCHARAT(locinput);
4450
4451             ST.count++;
4452             /* after first match, determine A's length: u.curlym.alen */
4453             if (ST.count == 1) {
4454                 if (PL_reg_match_utf8) {
4455                     char *s = locinput;
4456                     while (s < PL_reginput) {
4457                         ST.alen++;
4458                         s += UTF8SKIP(s);
4459                     }
4460                 }
4461                 else {
4462                     ST.alen = PL_reginput - locinput;
4463                 }
4464                 if (ST.alen == 0)
4465                     ST.count = ST.minmod ? ARG1(ST.me) : ARG2(ST.me);
4466             }
4467             DEBUG_EXECUTE_r(
4468                 PerlIO_printf(Perl_debug_log,
4469                           "%*s  CURLYM now matched %"IVdf" times, len=%"IVdf"...\n",
4470                           (int)(REPORT_CODE_OFF+(depth*2)), "",
4471                           (IV) ST.count, (IV)ST.alen)
4472             );
4473
4474             locinput = PL_reginput;
4475                         
4476             if (cur_eval && cur_eval->u.eval.close_paren && 
4477                 cur_eval->u.eval.close_paren == (U32)ST.me->flags) 
4478                 goto fake_end;
4479                 
4480             {
4481                 I32 max = (ST.minmod ? ARG1(ST.me) : ARG2(ST.me));
4482                 if ( max == REG_INFTY || ST.count < max )
4483                     goto curlym_do_A; /* try to match another A */
4484             }
4485             goto curlym_do_B; /* try to match B */
4486
4487         case CURLYM_A_fail: /* just failed to match an A */
4488             REGCP_UNWIND(ST.cp);
4489
4490             if (ST.minmod || ST.count < ARG1(ST.me) /* min*/ 
4491                 || (cur_eval && cur_eval->u.eval.close_paren &&
4492                     cur_eval->u.eval.close_paren == (U32)ST.me->flags))
4493                 sayNO;
4494
4495           curlym_do_B: /* execute the B in /A{m,n}B/  */
4496             PL_reginput = locinput;
4497             if (ST.c1 == CHRTEST_UNINIT) {
4498                 /* calculate c1 and c2 for possible match of 1st char
4499                  * following curly */
4500                 ST.c1 = ST.c2 = CHRTEST_VOID;
4501                 if (HAS_TEXT(ST.B) || JUMPABLE(ST.B)) {
4502                     regnode *text_node = ST.B;
4503                     if (! HAS_TEXT(text_node))
4504                         FIND_NEXT_IMPT(text_node);
4505                     /* this used to be 
4506                         
4507                         (HAS_TEXT(text_node) && PL_regkind[OP(text_node)] == EXACT)
4508                         
4509                         But the former is redundant in light of the latter.
4510                         
4511                         if this changes back then the macro for 
4512                         IS_TEXT and friends need to change.
4513                      */
4514                     if (PL_regkind[OP(text_node)] == EXACT)
4515                     {
4516                         
4517                         ST.c1 = (U8)*STRING(text_node);
4518                         ST.c2 =
4519                             (IS_TEXTF(text_node))
4520                             ? PL_fold[ST.c1]
4521                             : (IS_TEXTFL(text_node))
4522                                 ? PL_fold_locale[ST.c1]
4523                                 : ST.c1;
4524                     }
4525                 }
4526             }
4527
4528             DEBUG_EXECUTE_r(
4529                 PerlIO_printf(Perl_debug_log,
4530                     "%*s  CURLYM trying tail with matches=%"IVdf"...\n",
4531                     (int)(REPORT_CODE_OFF+(depth*2)),
4532                     "", (IV)ST.count)
4533                 );
4534             if (ST.c1 != CHRTEST_VOID
4535                     && UCHARAT(PL_reginput) != ST.c1
4536                     && UCHARAT(PL_reginput) != ST.c2)
4537             {
4538                 /* simulate B failing */
4539                 DEBUG_OPTIMISE_r(
4540                     PerlIO_printf(Perl_debug_log,
4541                         "%*s  CURLYM Fast bail c1=%"IVdf" c2=%"IVdf"\n",
4542                         (int)(REPORT_CODE_OFF+(depth*2)),"",
4543                         (IV)ST.c1,(IV)ST.c2
4544                 ));
4545                 state_num = CURLYM_B_fail;
4546                 goto reenter_switch;
4547             }
4548
4549             if (ST.me->flags) {
4550                 /* mark current A as captured */
4551                 I32 paren = ST.me->flags;
4552                 if (ST.count) {
4553                     PL_regoffs[paren].start
4554                         = HOPc(PL_reginput, -ST.alen) - PL_bostr;
4555                     PL_regoffs[paren].end = PL_reginput - PL_bostr;
4556                     /*dmq: *PL_reglastcloseparen = paren; */
4557                 }
4558                 else
4559                     PL_regoffs[paren].end = -1;
4560                 if (cur_eval && cur_eval->u.eval.close_paren &&
4561                     cur_eval->u.eval.close_paren == (U32)ST.me->flags) 
4562                 {
4563                     if (ST.count) 
4564                         goto fake_end;
4565                     else
4566                         sayNO;
4567                 }
4568             }
4569             
4570             PUSH_STATE_GOTO(CURLYM_B, ST.B); /* match B */
4571             /* NOTREACHED */
4572
4573         case CURLYM_B_fail: /* just failed to match a B */
4574             REGCP_UNWIND(ST.cp);
4575             if (ST.minmod) {
4576                 I32 max = ARG2(ST.me);
4577                 if (max != REG_INFTY && ST.count == max)
4578                     sayNO;
4579                 goto curlym_do_A; /* try to match a further A */
4580             }
4581             /* backtrack one A */
4582             if (ST.count == ARG1(ST.me) /* min */)
4583                 sayNO;
4584             ST.count--;
4585             locinput = HOPc(locinput, -ST.alen);
4586             goto curlym_do_B; /* try to match B */
4587
4588 #undef ST
4589 #define ST st->u.curly
4590
4591 #define CURLY_SETPAREN(paren, success) \
4592     if (paren) { \
4593         if (success) { \
4594             PL_regoffs[paren].start = HOPc(locinput, -1) - PL_bostr; \
4595             PL_regoffs[paren].end = locinput - PL_bostr; \
4596             *PL_reglastcloseparen = paren; \
4597         } \
4598         else \
4599             PL_regoffs[paren].end = -1; \
4600     }
4601
4602         case STAR:              /*  /A*B/ where A is width 1 */
4603             ST.paren = 0;
4604             ST.min = 0;
4605             ST.max = REG_INFTY;
4606             scan = NEXTOPER(scan);
4607             goto repeat;
4608         case PLUS:              /*  /A+B/ where A is width 1 */
4609             ST.paren = 0;
4610             ST.min = 1;
4611             ST.max = REG_INFTY;
4612             scan = NEXTOPER(scan);
4613             goto repeat;
4614         case CURLYN:            /*  /(A){m,n}B/ where A is width 1 */
4615             ST.paren = scan->flags;     /* Which paren to set */
4616             if (ST.paren > PL_regsize)
4617                 PL_regsize = ST.paren;
4618             if (ST.paren > *PL_reglastparen)
4619                 *PL_reglastparen = ST.paren;
4620             ST.min = ARG1(scan);  /* min to match */
4621             ST.max = ARG2(scan);  /* max to match */
4622             if (cur_eval && cur_eval->u.eval.close_paren &&
4623                 cur_eval->u.eval.close_paren == (U32)ST.paren) {
4624                 ST.min=1;
4625                 ST.max=1;
4626             }
4627             scan = regnext(NEXTOPER(scan) + NODE_STEP_REGNODE);
4628             goto repeat;
4629         case CURLY:             /*  /A{m,n}B/ where A is width 1 */
4630             ST.paren = 0;
4631             ST.min = ARG1(scan);  /* min to match */
4632             ST.max = ARG2(scan);  /* max to match */
4633             scan = NEXTOPER(scan) + NODE_STEP_REGNODE;
4634           repeat:
4635             /*
4636             * Lookahead to avoid useless match attempts
4637             * when we know what character comes next.
4638             *
4639             * Used to only do .*x and .*?x, but now it allows
4640             * for )'s, ('s and (?{ ... })'s to be in the way
4641             * of the quantifier and the EXACT-like node.  -- japhy
4642             */
4643
4644             if (ST.min > ST.max) /* XXX make this a compile-time check? */
4645                 sayNO;
4646             if (HAS_TEXT(next) || JUMPABLE(next)) {
4647                 U8 *s;
4648                 regnode *text_node = next;
4649
4650                 if (! HAS_TEXT(text_node)) 
4651                     FIND_NEXT_IMPT(text_node);
4652
4653                 if (! HAS_TEXT(text_node))
4654                     ST.c1 = ST.c2 = CHRTEST_VOID;
4655                 else {
4656                     if ( PL_regkind[OP(text_node)] != EXACT ) {
4657                         ST.c1 = ST.c2 = CHRTEST_VOID;
4658                         goto assume_ok_easy;
4659                     }
4660                     else
4661                         s = (U8*)STRING(text_node);
4662                     
4663                     /*  Currently we only get here when 
4664                         
4665                         PL_rekind[OP(text_node)] == EXACT
4666                     
4667                         if this changes back then the macro for IS_TEXT and 
4668                         friends need to change. */
4669                     if (!UTF) {
4670                         ST.c2 = ST.c1 = *s;
4671                         if (IS_TEXTF(text_node))
4672                             ST.c2 = PL_fold[ST.c1];
4673                         else if (IS_TEXTFL(text_node))
4674                             ST.c2 = PL_fold_locale[ST.c1];
4675                     }
4676                     else { /* UTF */
4677                         if (IS_TEXTF(text_node)) {
4678                              STRLEN ulen1, ulen2;
4679                              U8 tmpbuf1[UTF8_MAXBYTES_CASE+1];
4680                              U8 tmpbuf2[UTF8_MAXBYTES_CASE+1];
4681
4682                              to_utf8_lower((U8*)s, tmpbuf1, &ulen1);
4683                              to_utf8_upper((U8*)s, tmpbuf2, &ulen2);
4684 #ifdef EBCDIC
4685                              ST.c1 = utf8n_to_uvchr(tmpbuf1, UTF8_MAXLEN, 0,
4686                                                     ckWARN(WARN_UTF8) ?
4687                                                     0 : UTF8_ALLOW_ANY);
4688                              ST.c2 = utf8n_to_uvchr(tmpbuf2, UTF8_MAXLEN, 0,
4689                                                     ckWARN(WARN_UTF8) ?
4690                                                     0 : UTF8_ALLOW_ANY);
4691 #else
4692                              ST.c1 = utf8n_to_uvuni(tmpbuf1, UTF8_MAXBYTES, 0,
4693                                                     uniflags);
4694                              ST.c2 = utf8n_to_uvuni(tmpbuf2, UTF8_MAXBYTES, 0,
4695                                                     uniflags);
4696 #endif
4697                         }
4698                         else {
4699                             ST.c2 = ST.c1 = utf8n_to_uvchr(s, UTF8_MAXBYTES, 0,
4700                                                      uniflags);
4701                         }
4702                     }
4703                 }
4704             }
4705             else
4706                 ST.c1 = ST.c2 = CHRTEST_VOID;
4707         assume_ok_easy:
4708
4709             ST.A = scan;
4710             ST.B = next;
4711             PL_reginput = locinput;
4712             if (minmod) {
4713                 minmod = 0;
4714                 if (ST.min && regrepeat(rex, ST.A, ST.min, depth) < ST.min)
4715                     sayNO;
4716                 ST.count = ST.min;
4717                 locinput = PL_reginput;
4718                 REGCP_SET(ST.cp);
4719                 if (ST.c1 == CHRTEST_VOID)
4720                     goto curly_try_B_min;
4721
4722                 ST.oldloc = locinput;
4723
4724                 /* set ST.maxpos to the furthest point along the
4725                  * string that could possibly match */
4726                 if  (ST.max == REG_INFTY) {
4727                     ST.maxpos = PL_regeol - 1;
4728                     if (do_utf8)
4729                         while (UTF8_IS_CONTINUATION(*(U8*)ST.maxpos))
4730                             ST.maxpos--;
4731                 }
4732                 else if (do_utf8) {
4733                     int m = ST.max - ST.min;
4734                     for (ST.maxpos = locinput;
4735                          m >0 && ST.maxpos + UTF8SKIP(ST.maxpos) <= PL_regeol; m--)
4736                         ST.maxpos += UTF8SKIP(ST.maxpos);
4737                 }
4738                 else {
4739                     ST.maxpos = locinput + ST.max - ST.min;
4740                     if (ST.maxpos >= PL_regeol)
4741                         ST.maxpos = PL_regeol - 1;
4742                 }
4743                 goto curly_try_B_min_known;
4744
4745             }
4746             else {
4747                 ST.count = regrepeat(rex, ST.A, ST.max, depth);
4748                 locinput = PL_reginput;
4749                 if (ST.count < ST.min)
4750                     sayNO;
4751                 if ((ST.count > ST.min)
4752                     && (PL_regkind[OP(ST.B)] == EOL) && (OP(ST.B) != MEOL))
4753                 {
4754                     /* A{m,n} must come at the end of the string, there's
4755                      * no point in backing off ... */
4756                     ST.min = ST.count;
4757                     /* ...except that $ and \Z can match before *and* after
4758                        newline at the end.  Consider "\n\n" =~ /\n+\Z\n/.
4759                        We may back off by one in this case. */
4760                     if (UCHARAT(PL_reginput - 1) == '\n' && OP(ST.B) != EOS)
4761                         ST.min--;
4762                 }
4763                 REGCP_SET(ST.cp);
4764                 goto curly_try_B_max;
4765             }
4766             /* NOTREACHED */
4767
4768
4769         case CURLY_B_min_known_fail:
4770             /* failed to find B in a non-greedy match where c1,c2 valid */
4771             if (ST.paren && ST.count)
4772                 PL_regoffs[ST.paren].end = -1;
4773
4774             PL_reginput = locinput;     /* Could be reset... */
4775             REGCP_UNWIND(ST.cp);
4776             /* Couldn't or didn't -- move forward. */
4777             ST.oldloc = locinput;
4778             if (do_utf8)
4779                 locinput += UTF8SKIP(locinput);
4780             else
4781                 locinput++;
4782             ST.count++;
4783           curly_try_B_min_known:
4784              /* find the next place where 'B' could work, then call B */
4785             {
4786                 int n;
4787                 if (do_utf8) {
4788                     n = (ST.oldloc == locinput) ? 0 : 1;
4789                     if (ST.c1 == ST.c2) {
4790                         STRLEN len;
4791                         /* set n to utf8_distance(oldloc, locinput) */
4792                         while (locinput <= ST.maxpos &&
4793                                utf8n_to_uvchr((U8*)locinput,
4794                                               UTF8_MAXBYTES, &len,
4795                                               uniflags) != (UV)ST.c1) {
4796                             locinput += len;
4797                             n++;
4798                         }
4799                     }
4800                     else {
4801                         /* set n to utf8_distance(oldloc, locinput) */
4802                         while (locinput <= ST.maxpos) {
4803                             STRLEN len;
4804                             const UV c = utf8n_to_uvchr((U8*)locinput,
4805                                                   UTF8_MAXBYTES, &len,
4806                                                   uniflags);
4807                             if (c == (UV)ST.c1 || c == (UV)ST.c2)
4808                                 break;
4809                             locinput += len;
4810                             n++;
4811                         }
4812                     }
4813                 }
4814                 else {
4815                     if (ST.c1 == ST.c2) {
4816                         while (locinput <= ST.maxpos &&
4817                                UCHARAT(locinput) != ST.c1)
4818                             locinput++;
4819                     }
4820                     else {
4821                         while (locinput <= ST.maxpos
4822                                && UCHARAT(locinput) != ST.c1
4823                                && UCHARAT(locinput) != ST.c2)
4824                             locinput++;
4825                     }
4826                     n = locinput - ST.oldloc;
4827                 }
4828                 if (locinput > ST.maxpos)
4829                     sayNO;
4830                 /* PL_reginput == oldloc now */
4831                 if (n) {
4832                     ST.count += n;
4833                     if (regrepeat(rex, ST.A, n, depth) < n)
4834                         sayNO;
4835                 }
4836                 PL_reginput = locinput;
4837                 CURLY_SETPAREN(ST.paren, ST.count);
4838                 if (cur_eval && cur_eval->u.eval.close_paren && 
4839                     cur_eval->u.eval.close_paren == (U32)ST.paren) {
4840                     goto fake_end;
4841                 }
4842                 PUSH_STATE_GOTO(CURLY_B_min_known, ST.B);
4843             }
4844             /* NOTREACHED */
4845
4846
4847         case CURLY_B_min_fail:
4848             /* failed to find B in a non-greedy match where c1,c2 invalid */
4849             if (ST.paren && ST.count)
4850                 PL_regoffs[ST.paren].end = -1;
4851
4852             REGCP_UNWIND(ST.cp);
4853             /* failed -- move forward one */
4854             PL_reginput = locinput;
4855             if (regrepeat(rex, ST.A, 1, depth)) {
4856                 ST.count++;
4857                 locinput = PL_reginput;
4858                 if (ST.count <= ST.max || (ST.max == REG_INFTY &&
4859                         ST.count > 0)) /* count overflow ? */
4860                 {
4861                   curly_try_B_min:
4862                     CURLY_SETPAREN(ST.paren, ST.count);
4863                     if (cur_eval && cur_eval->u.eval.close_paren &&
4864                         cur_eval->u.eval.close_paren == (U32)ST.paren) {
4865                         goto fake_end;
4866                     }
4867                     PUSH_STATE_GOTO(CURLY_B_min, ST.B);
4868                 }
4869             }
4870             sayNO;
4871             /* NOTREACHED */
4872
4873
4874         curly_try_B_max:
4875             /* a successful greedy match: now try to match B */
4876             if (cur_eval && cur_eval->u.eval.close_paren &&
4877                 cur_eval->u.eval.close_paren == (U32)ST.paren) {
4878                 goto fake_end;
4879             }
4880             {
4881                 UV c = 0;
4882                 if (ST.c1 != CHRTEST_VOID)
4883                     c = do_utf8 ? utf8n_to_uvchr((U8*)PL_reginput,
4884                                            UTF8_MAXBYTES, 0, uniflags)
4885                                 : (UV) UCHARAT(PL_reginput);
4886                 /* If it could work, try it. */
4887                 if (ST.c1 == CHRTEST_VOID || c == (UV)ST.c1 || c == (UV)ST.c2) {
4888                     CURLY_SETPAREN(ST.paren, ST.count);
4889                     PUSH_STATE_GOTO(CURLY_B_max, ST.B);
4890                     /* NOTREACHED */
4891                 }
4892             }
4893             /* FALL THROUGH */
4894         case CURLY_B_max_fail:
4895             /* failed to find B in a greedy match */
4896             if (ST.paren && ST.count)
4897                 PL_regoffs[ST.paren].end = -1;
4898
4899             REGCP_UNWIND(ST.cp);
4900             /*  back up. */
4901             if (--ST.count < ST.min)
4902                 sayNO;
4903             PL_reginput = locinput = HOPc(locinput, -1);
4904             goto curly_try_B_max;
4905
4906 #undef ST
4907
4908         case END:
4909             fake_end:
4910             if (cur_eval) {
4911                 /* we've just finished A in /(??{A})B/; now continue with B */
4912                 I32 tmpix;
4913                 st->u.eval.toggle_reg_flags
4914                             = cur_eval->u.eval.toggle_reg_flags;
4915                 PL_reg_flags ^= st->u.eval.toggle_reg_flags; 
4916
4917                 st->u.eval.prev_rex = rex_sv;           /* inner */
4918                 SETREX(rex_sv,cur_eval->u.eval.prev_rex);
4919                 rex = (struct regexp *)SvANY(rex_sv);
4920                 rexi = RXi_GET(rex);
4921                 cur_curlyx = cur_eval->u.eval.prev_curlyx;
4922                 ReREFCNT_inc(rex_sv);
4923                 st->u.eval.cp = regcppush(0);   /* Save *all* the positions. */
4924
4925                 /* rex was changed so update the pointer in PL_reglastparen and PL_reglastcloseparen */
4926                 PL_reglastparen = &rex->lastparen;
4927                 PL_reglastcloseparen = &rex->lastcloseparen;
4928
4929                 REGCP_SET(st->u.eval.lastcp);
4930                 PL_reginput = locinput;
4931
4932                 /* Restore parens of the outer rex without popping the
4933                  * savestack */
4934                 tmpix = PL_savestack_ix;
4935                 PL_savestack_ix = cur_eval->u.eval.lastcp;
4936                 regcppop(rex);
4937                 PL_savestack_ix = tmpix;
4938
4939                 st->u.eval.prev_eval = cur_eval;
4940                 cur_eval = cur_eval->u.eval.prev_eval;
4941                 DEBUG_EXECUTE_r(
4942                     PerlIO_printf(Perl_debug_log, "%*s  EVAL trying tail ... %"UVxf"\n",
4943                                       REPORT_CODE_OFF+depth*2, "",PTR2UV(cur_eval)););
4944                 if ( nochange_depth )
4945                     nochange_depth--;
4946
4947                 PUSH_YES_STATE_GOTO(EVAL_AB,
4948                         st->u.eval.prev_eval->u.eval.B); /* match B */
4949             }
4950
4951             if (locinput < reginfo->till) {
4952                 DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log,
4953                                       "%sMatch possible, but length=%ld is smaller than requested=%ld, failing!%s\n",
4954                                       PL_colors[4],
4955                                       (long)(locinput - PL_reg_starttry),
4956                                       (long)(reginfo->till - PL_reg_starttry),
4957                                       PL_colors[5]));
4958                                               
4959                 sayNO_SILENT;           /* Cannot match: too short. */
4960             }
4961             PL_reginput = locinput;     /* put where regtry can find it */
4962             sayYES;                     /* Success! */
4963
4964         case SUCCEED: /* successful SUSPEND/UNLESSM/IFMATCH/CURLYM */
4965             DEBUG_EXECUTE_r(
4966             PerlIO_printf(Perl_debug_log,
4967                 "%*s  %ssubpattern success...%s\n",
4968                 REPORT_CODE_OFF+depth*2, "", PL_colors[4], PL_colors[5]));
4969             PL_reginput = locinput;     /* put where regtry can find it */
4970             sayYES;                     /* Success! */
4971
4972 #undef  ST
4973 #define ST st->u.ifmatch
4974
4975         case SUSPEND:   /* (?>A) */
4976             ST.wanted = 1;
4977             PL_reginput = locinput;
4978             goto do_ifmatch;    
4979
4980         case UNLESSM:   /* -ve lookaround: (?!A), or with flags, (?<!A) */
4981             ST.wanted = 0;
4982             goto ifmatch_trivial_fail_test;
4983
4984         case IFMATCH:   /* +ve lookaround: (?=A), or with flags, (?<=A) */
4985             ST.wanted = 1;
4986           ifmatch_trivial_fail_test:
4987             if (scan->flags) {
4988                 char * const s = HOPBACKc(locinput, scan->flags);
4989                 if (!s) {
4990                     /* trivial fail */
4991                     if (logical) {
4992                         logical = 0;
4993                         sw = 1 - (bool)ST.wanted;
4994                     }
4995                     else if (ST.wanted)
4996                         sayNO;
4997                     next = scan + ARG(scan);
4998                     if (next == scan)
4999                         next = NULL;
5000                     break;
5001                 }
5002                 PL_reginput = s;
5003             }
5004             else
5005                 PL_reginput = locinput;
5006
5007           do_ifmatch:
5008             ST.me = scan;
5009             ST.logical = logical;
5010             logical = 0; /* XXX: reset state of logical once it has been saved into ST */
5011             
5012             /* execute body of (?...A) */
5013             PUSH_YES_STATE_GOTO(IFMATCH_A, NEXTOPER(NEXTOPER(scan)));
5014             /* NOTREACHED */
5015
5016         case IFMATCH_A_fail: /* body of (?...A) failed */
5017             ST.wanted = !ST.wanted;
5018             /* FALL THROUGH */
5019
5020         case IFMATCH_A: /* body of (?...A) succeeded */
5021             if (ST.logical) {
5022                 sw = (bool)ST.wanted;
5023             }
5024             else if (!ST.wanted)
5025                 sayNO;
5026
5027             if (OP(ST.me) == SUSPEND)
5028                 locinput = PL_reginput;
5029             else {
5030                 locinput = PL_reginput = st->locinput;
5031                 nextchr = UCHARAT(locinput);
5032             }
5033             scan = ST.me + ARG(ST.me);
5034             if (scan == ST.me)
5035                 scan = NULL;
5036             continue; /* execute B */
5037
5038 #undef ST
5039
5040         case LONGJMP:
5041             next = scan + ARG(scan);
5042             if (next == scan)
5043                 next = NULL;
5044             break;
5045         case COMMIT:
5046             reginfo->cutpoint = PL_regeol;
5047             /* FALLTHROUGH */
5048         case PRUNE:
5049             PL_reginput = locinput;
5050             if (!scan->flags)
5051                 sv_yes_mark = sv_commit = MUTABLE_SV(rexi->data->data[ ARG( scan ) ]);
5052             PUSH_STATE_GOTO(COMMIT_next,next);
5053             /* NOTREACHED */
5054         case COMMIT_next_fail:
5055             no_final = 1;    
5056             /* FALLTHROUGH */       
5057         case OPFAIL:
5058             sayNO;
5059             /* NOTREACHED */
5060
5061 #define ST st->u.mark
5062         case MARKPOINT:
5063             ST.prev_mark = mark_state;
5064             ST.mark_name = sv_commit = sv_yes_mark 
5065                 = MUTABLE_SV(rexi->data->data[ ARG( scan ) ]);
5066             mark_state = st;
5067             ST.mark_loc = PL_reginput = locinput;
5068             PUSH_YES_STATE_GOTO(MARKPOINT_next,next);
5069             /* NOTREACHED */
5070         case MARKPOINT_next:
5071             mark_state = ST.prev_mark;
5072             sayYES;
5073             /* NOTREACHED */
5074         case MARKPOINT_next_fail:
5075             if (popmark && sv_eq(ST.mark_name,popmark)) 
5076             {
5077                 if (ST.mark_loc > startpoint)
5078                     reginfo->cutpoint = HOPBACKc(ST.mark_loc, 1);
5079                 popmark = NULL; /* we found our mark */
5080                 sv_commit = ST.mark_name;
5081
5082                 DEBUG_EXECUTE_r({
5083                         PerlIO_printf(Perl_debug_log,
5084                             "%*s  %ssetting cutpoint to mark:%"SVf"...%s\n",
5085                             REPORT_CODE_OFF+depth*2, "", 
5086                             PL_colors[4], SVfARG(sv_commit), PL_colors[5]);
5087                 });
5088             }
5089             mark_state = ST.prev_mark;
5090             sv_yes_mark = mark_state ? 
5091                 mark_state->u.mark.mark_name : NULL;
5092             sayNO;
5093             /* NOTREACHED */
5094         case SKIP:
5095             PL_reginput = locinput;
5096             if (scan->flags) {
5097                 /* (*SKIP) : if we fail we cut here*/
5098                 ST.mark_name = NULL;
5099                 ST.mark_loc = locinput;
5100                 PUSH_STATE_GOTO(SKIP_next,next);    
5101             } else {
5102                 /* (*SKIP:NAME) : if there is a (*MARK:NAME) fail where it was, 
5103                    otherwise do nothing.  Meaning we need to scan 
5104                  */
5105                 regmatch_state *cur = mark_state;
5106                 SV *find = MUTABLE_SV(rexi->data->data[ ARG( scan ) ]);
5107                 
5108                 while (cur) {
5109                     if ( sv_eq( cur->u.mark.mark_name, 
5110                                 find ) ) 
5111                     {
5112                         ST.mark_name = find;
5113                         PUSH_STATE_GOTO( SKIP_next, next );
5114                     }
5115                     cur = cur->u.mark.prev_mark;
5116                 }
5117             }    
5118             /* Didn't find our (*MARK:NAME) so ignore this (*SKIP:NAME) */
5119             break;    
5120         case SKIP_next_fail:
5121             if (ST.mark_name) {
5122                 /* (*CUT:NAME) - Set up to search for the name as we 
5123                    collapse the stack*/
5124                 popmark = ST.mark_name;    
5125             } else {
5126                 /* (*CUT) - No name, we cut here.*/
5127                 if (ST.mark_loc > startpoint)
5128                     reginfo->cutpoint = HOPBACKc(ST.mark_loc, 1);
5129                 /* but we set sv_commit to latest mark_name if there
5130                    is one so they can test to see how things lead to this
5131                    cut */    
5132                 if (mark_state) 
5133                     sv_commit=mark_state->u.mark.mark_name;                 
5134             } 
5135             no_final = 1; 
5136             sayNO;
5137             /* NOTREACHED */
5138 #undef ST
5139         case FOLDCHAR:
5140             n = ARG(scan);
5141             if ( n == (U32)what_len_TRICKYFOLD(locinput,do_utf8,ln) ) {
5142                 locinput += ln;
5143             } else if ( 0xDF == n && !do_utf8 && !UTF ) {
5144                 sayNO;
5145             } else  {
5146                 U8 folded[UTF8_MAXBYTES_CASE+1];
5147                 STRLEN foldlen;
5148                 const char * const l = locinput;
5149                 char *e = PL_regeol;
5150                 to_uni_fold(n, folded, &foldlen);
5151
5152                 if (ibcmp_utf8((const char*) folded, 0,  foldlen, 1,
5153                                l, &e, 0,  do_utf8)) {
5154                         sayNO;
5155                 }
5156                 locinput = e;
5157             } 
5158             nextchr = UCHARAT(locinput);  
5159             break;
5160         case LNBREAK:
5161             if ((n=is_LNBREAK(locinput,do_utf8))) {
5162                 locinput += n;
5163                 nextchr = UCHARAT(locinput);
5164             } else
5165                 sayNO;
5166             break;
5167
5168 #define CASE_CLASS(nAmE)                              \
5169         case nAmE:                                    \
5170             if ((n=is_##nAmE(locinput,do_utf8))) {    \
5171                 locinput += n;                        \
5172                 nextchr = UCHARAT(locinput);          \
5173             } else                                    \
5174                 sayNO;                                \
5175             break;                                    \
5176         case N##nAmE:                                 \
5177             if ((n=is_##nAmE(locinput,do_utf8))) {    \
5178                 sayNO;                                \
5179             } else {                                  \
5180                 locinput += UTF8SKIP(locinput);       \
5181                 nextchr = UCHARAT(locinput);          \
5182             }                                         \
5183             break
5184
5185         CASE_CLASS(VERTWS);
5186         CASE_CLASS(HORIZWS);
5187 #undef CASE_CLASS
5188
5189         default:
5190             PerlIO_printf(Perl_error_log, "%"UVxf" %d\n",
5191                           PTR2UV(scan), OP(scan));
5192             Perl_croak(aTHX_ "regexp memory corruption");
5193             
5194         } /* end switch */ 
5195
5196         /* switch break jumps here */
5197         scan = next; /* prepare to execute the next op and ... */
5198         continue;    /* ... jump back to the top, reusing st */
5199         /* NOTREACHED */
5200
5201       push_yes_state:
5202         /* push a state that backtracks on success */
5203         st->u.yes.prev_yes_state = yes_state;
5204         yes_state = st;
5205         /* FALL THROUGH */
5206       push_state:
5207         /* push a new regex state, then continue at scan  */
5208         {
5209             regmatch_state *newst;
5210
5211             DEBUG_STACK_r({
5212                 regmatch_state *cur = st;
5213                 regmatch_state *curyes = yes_state;
5214                 int curd = depth;
5215                 regmatch_slab *slab = PL_regmatch_slab;
5216                 for (;curd > -1;cur--,curd--) {
5217                     if (cur < SLAB_FIRST(slab)) {
5218                         slab = slab->prev;
5219                         cur = SLAB_LAST(slab);
5220                     }
5221                     PerlIO_printf(Perl_error_log, "%*s#%-3d %-10s %s\n",
5222                         REPORT_CODE_OFF + 2 + depth * 2,"",
5223                         curd, PL_reg_name[cur->resume_state],
5224                         (curyes == cur) ? "yes" : ""
5225                     );
5226                     if (curyes == cur)
5227                         curyes = cur->u.yes.prev_yes_state;
5228                 }
5229             } else 
5230                 DEBUG_STATE_pp("push")
5231             );
5232             depth++;
5233             st->locinput = locinput;
5234             newst = st+1; 
5235             if (newst >  SLAB_LAST(PL_regmatch_slab))
5236                 newst = S_push_slab(aTHX);
5237             PL_regmatch_state = newst;
5238
5239             locinput = PL_reginput;
5240             nextchr = UCHARAT(locinput);
5241             st = newst;
5242             continue;
5243             /* NOTREACHED */
5244         }
5245     }
5246
5247     /*
5248     * We get here only if there's trouble -- normally "case END" is
5249     * the terminating point.
5250     */
5251     Perl_croak(aTHX_ "corrupted regexp pointers");
5252     /*NOTREACHED*/
5253     sayNO;
5254
5255 yes:
5256     if (yes_state) {
5257         /* we have successfully completed a subexpression, but we must now
5258          * pop to the state marked by yes_state and continue from there */
5259         assert(st != yes_state);
5260 #ifdef DEBUGGING
5261         while (st != yes_state) {
5262             st--;
5263             if (st < SLAB_FIRST(PL_regmatch_slab)) {
5264                 PL_regmatch_slab = PL_regmatch_slab->prev;
5265                 st = SLAB_LAST(PL_regmatch_slab);
5266             }
5267             DEBUG_STATE_r({
5268                 if (no_final) {
5269                     DEBUG_STATE_pp("pop (no final)");        
5270                 } else {
5271                     DEBUG_STATE_pp("pop (yes)");
5272                 }
5273             });
5274             depth--;
5275         }
5276 #else
5277         while (yes_state < SLAB_FIRST(PL_regmatch_slab)
5278             || yes_state > SLAB_LAST(PL_regmatch_slab))
5279         {
5280             /* not in this slab, pop slab */
5281             depth -= (st - SLAB_FIRST(PL_regmatch_slab) + 1);
5282             PL_regmatch_slab = PL_regmatch_slab->prev;
5283             st = SLAB_LAST(PL_regmatch_slab);
5284         }
5285         depth -= (st - yes_state);
5286 #endif
5287         st = yes_state;
5288         yes_state = st->u.yes.prev_yes_state;
5289         PL_regmatch_state = st;
5290         
5291         if (no_final) {
5292             locinput= st->locinput;
5293             nextchr = UCHARAT(locinput);
5294         }
5295         state_num = st->resume_state + no_final;
5296         goto reenter_switch;
5297     }
5298
5299     DEBUG_EXECUTE_r(PerlIO_printf(Perl_debug_log, "%sMatch successful!%s\n",
5300                           PL_colors[4], PL_colors[5]));
5301
5302     if (PL_reg_eval_set) {
5303         /* each successfully executed (?{...}) block does the equivalent of
5304          *   local $^R = do {...}
5305          * When popping the save stack, all these locals would be undone;
5306          * bypass this by setting the outermost saved $^R to the latest
5307          * value */
5308         if (oreplsv != GvSV(PL_replgv))
5309             sv_setsv(oreplsv, GvSV(PL_replgv));
5310     }
5311     result = 1;
5312     goto final_exit;
5313
5314 no:
5315     DEBUG_EXECUTE_r(
5316         PerlIO_printf(Perl_debug_log,
5317             "%*s  %sfailed...%s\n",
5318             REPORT_CODE_OFF+depth*2, "", 
5319             PL_colors[4], PL_colors[5])
5320         );
5321
5322 no_silent:
5323     if (no_final) {
5324         if (yes_state) {
5325             goto yes;
5326         } else {
5327             goto final_exit;
5328         }
5329     }    
5330     if (depth) {
5331         /* there's a previous state to backtrack to */
5332         st--;
5333         if (st < SLAB_FIRST(PL_regmatch_slab)) {
5334             PL_regmatch_slab = PL_regmatch_slab->prev;
5335             st = SLAB_LAST(PL_regmatch_slab);
5336         }
5337         PL_regmatch_state = st;
5338         locinput= st->locinput;
5339         nextchr = UCHARAT(locinput);
5340
5341         DEBUG_STATE_pp("pop");
5342         depth--;
5343         if (yes_state == st)
5344             yes_state = st->u.yes.prev_yes_state;
5345
5346         state_num = st->resume_state + 1; /* failure = success + 1 */
5347         goto reenter_switch;
5348     }
5349     result = 0;
5350
5351   final_exit:
5352     if (rex->intflags & PREGf_VERBARG_SEEN) {
5353         SV *sv_err = get_sv("REGERROR", 1);
5354         SV *sv_mrk = get_sv("REGMARK", 1);
5355         if (result) {
5356             sv_commit = &PL_sv_no;
5357             if (!sv_yes_mark) 
5358                 sv_yes_mark = &PL_sv_yes;
5359         } else {
5360             if (!sv_commit) 
5361                 sv_commit = &PL_sv_yes;
5362             sv_yes_mark = &PL_sv_no;
5363         }
5364         sv_setsv(sv_err, sv_commit);
5365         sv_setsv(sv_mrk, sv_yes_mark);
5366     }
5367
5368     /* clean up; in particular, free all slabs above current one */
5369     LEAVE_SCOPE(oldsave);
5370
5371     return result;
5372 }
5373
5374 /*
5375  - regrepeat - repeatedly match something simple, report how many
5376  */
5377 /*
5378  * [This routine now assumes that it will only match on things of length 1.
5379  * That was true before, but now we assume scan - reginput is the count,
5380  * rather than incrementing count on every character.  [Er, except utf8.]]
5381  */
5382 STATIC I32
5383 S_regrepeat(pTHX_ const regexp *prog, const regnode *p, I32 max, int depth)
5384 {
5385     dVAR;
5386     register char *scan;
5387     register I32 c;
5388     register char *loceol = PL_regeol;
5389     register I32 hardcount = 0;
5390     register bool do_utf8 = PL_reg_match_utf8;
5391 #ifndef DEBUGGING
5392     PERL_UNUSED_ARG(depth);
5393 #endif
5394
5395     PERL_ARGS_ASSERT_REGREPEAT;
5396
5397     scan = PL_reginput;
5398     if (max == REG_INFTY)
5399         max = I32_MAX;
5400     else if (max < loceol - scan)
5401         loceol = scan + max;
5402     switch (OP(p)) {
5403     case REG_ANY:
5404         if (do_utf8) {
5405             loceol = PL_regeol;
5406             while (scan < loceol && hardcount < max && *scan != '\n') {
5407                 scan += UTF8SKIP(scan);
5408                 hardcount++;
5409             }
5410         } else {
5411             while (scan < loceol && *scan != '\n')
5412                 scan++;
5413         }
5414         break;
5415     case SANY:
5416         if (do_utf8) {
5417             loceol = PL_regeol;
5418             while (scan < loceol && hardcount < max) {
5419                 scan += UTF8SKIP(scan);
5420                 hardcount++;
5421             }
5422         }
5423         else
5424             scan = loceol;
5425         break;
5426     case CANY:
5427         scan = loceol;
5428         break;
5429     case EXACT:         /* length of string is 1 */
5430         c = (U8)*STRING(p);
5431         while (scan < loceol && UCHARAT(scan) == c)
5432             scan++;
5433         break;
5434     case EXACTF:        /* length of string is 1 */
5435         c = (U8)*STRING(p);
5436         while (scan < loceol &&
5437                (UCHARAT(scan) == c || UCHARAT(scan) == PL_fold[c]))
5438             scan++;
5439         break;
5440     case EXACTFL:       /* length of string is 1 */
5441         PL_reg_flags |= RF_tainted;
5442         c = (U8)*STRING(p);
5443         while (scan < loceol &&
5444                (UCHARAT(scan) == c || UCHARAT(scan) == PL_fold_locale[c]))
5445             scan++;
5446         break;
5447     case ANYOF:
5448         if (do_utf8) {
5449             loceol = PL_regeol;
5450             while (hardcount < max && scan < loceol &&
5451                    reginclass(prog, p, (U8*)scan, 0, do_utf8)) {
5452                 scan += UTF8SKIP(scan);
5453                 hardcount++;
5454             }
5455         } else {
5456             while (scan < loceol && REGINCLASS(prog, p, (U8*)scan))
5457                 scan++;
5458         }
5459         break;
5460     case ALNUM:
5461         if (do_utf8) {
5462             loceol = PL_regeol;
5463             LOAD_UTF8_CHARCLASS_ALNUM();
5464             while (hardcount < max && scan < loceol &&
5465                    swash_fetch(PL_utf8_alnum, (U8*)scan, do_utf8)) {
5466                 scan += UTF8SKIP(scan);
5467                 hardcount++;
5468             }
5469         } else {
5470             while (scan < loceol && isALNUM(*scan))
5471                 scan++;
5472         }
5473         break;
5474     case ALNUML:
5475         PL_reg_flags |= RF_tainted;
5476         if (do_utf8) {
5477             loceol = PL_regeol;
5478             while (hardcount < max && scan < loceol &&
5479                    isALNUM_LC_utf8((U8*)scan)) {
5480                 scan += UTF8SKIP(scan);
5481                 hardcount++;
5482             }
5483         } else {
5484             while (scan < loceol && isALNUM_LC(*scan))
5485                 scan++;
5486         }
5487         break;
5488     case NALNUM:
5489         if (do_utf8) {
5490             loceol = PL_regeol;
5491             LOAD_UTF8_CHARCLASS_ALNUM();
5492             while (hardcount < max && scan < loceol &&
5493                    !swash_fetch(PL_utf8_alnum, (U8*)scan, do_utf8)) {
5494                 scan += UTF8SKIP(scan);
5495                 hardcount++;
5496             }
5497         } else {
5498             while (scan < loceol && !isALNUM(*scan))
5499                 scan++;
5500         }
5501         break;
5502     case NALNUML:
5503         PL_reg_flags |= RF_tainted;
5504         if (do_utf8) {
5505             loceol = PL_regeol;
5506             while (hardcount < max && scan < loceol &&
5507                    !isALNUM_LC_utf8((U8*)scan)) {
5508                 scan += UTF8SKIP(scan);
5509                 hardcount++;
5510             }
5511         } else {
5512             while (scan < loceol && !isALNUM_LC(*scan))
5513                 scan++;
5514         }
5515         break;
5516     case SPACE:
5517         if (do_utf8) {
5518             loceol = PL_regeol;
5519             LOAD_UTF8_CHARCLASS_SPACE();
5520             while (hardcount < max && scan < loceol &&
5521                    (*scan == ' ' ||
5522                     swash_fetch(PL_utf8_space,(U8*)scan, do_utf8))) {
5523                 scan += UTF8SKIP(scan);
5524                 hardcount++;
5525             }
5526         } else {
5527             while (scan < loceol && isSPACE(*scan))
5528                 scan++;
5529         }
5530         break;
5531     case SPACEL:
5532         PL_reg_flags |= RF_tainted;
5533         if (do_utf8) {
5534             loceol = PL_regeol;
5535             while (hardcount < max && scan < loceol &&
5536                    (*scan == ' ' || isSPACE_LC_utf8((U8*)scan))) {
5537                 scan += UTF8SKIP(scan);
5538                 hardcount++;
5539             }
5540         } else {
5541             while (scan < loceol && isSPACE_LC(*scan))
5542                 scan++;
5543         }
5544         break;
5545     case NSPACE:
5546         if (do_utf8) {
5547             loceol = PL_regeol;
5548             LOAD_UTF8_CHARCLASS_SPACE();
5549             while (hardcount < max && scan < loceol &&
5550                    !(*scan == ' ' ||
5551                      swash_fetch(PL_utf8_space,(U8*)scan, do_utf8))) {
5552                 scan += UTF8SKIP(scan);
5553                 hardcount++;
5554             }
5555         } else {
5556             while (scan < loceol && !isSPACE(*scan))
5557                 scan++;
5558         }
5559         break;
5560     case NSPACEL:
5561         PL_reg_flags |= RF_tainted;
5562         if (do_utf8) {
5563             loceol = PL_regeol;
5564             while (hardcount < max && scan < loceol &&
5565                    !(*scan == ' ' || isSPACE_LC_utf8((U8*)scan))) {
5566                 scan += UTF8SKIP(scan);
5567                 hardcount++;
5568             }
5569         } else {
5570             while (scan < loceol && !isSPACE_LC(*scan))
5571                 scan++;
5572         }
5573         break;
5574     case DIGIT:
5575         if (do_utf8) {
5576             loceol = PL_regeol;
5577             LOAD_UTF8_CHARCLASS_DIGIT();
5578             while (hardcount < max && scan < loceol &&
5579                    swash_fetch(PL_utf8_digit, (U8*)scan, do_utf8)) {
5580                 scan += UTF8SKIP(scan);
5581                 hardcount++;
5582             }
5583         } else {
5584             while (scan < loceol && isDIGIT(*scan))
5585                 scan++;
5586         }
5587         break;
5588     case NDIGIT:
5589         if (do_utf8) {
5590             loceol = PL_regeol;
5591             LOAD_UTF8_CHARCLASS_DIGIT();
5592             while (hardcount < max && scan < loceol &&
5593                    !swash_fetch(PL_utf8_digit, (U8*)scan, do_utf8)) {
5594                 scan += UTF8SKIP(scan);
5595                 hardcount++;
5596             }
5597         } else {
5598             while (scan < loceol && !isDIGIT(*scan))
5599                 scan++;
5600         }
5601     case LNBREAK:
5602         if (do_utf8) {
5603             loceol = PL_regeol;
5604             while (hardcount < max && scan < loceol && (c=is_LNBREAK_utf8(scan))) {
5605                 scan += c;
5606                 hardcount++;
5607             }
5608         } else {
5609             /*
5610               LNBREAK can match two latin chars, which is ok,
5611               because we have a null terminated string, but we
5612               have to use hardcount in this situation
5613             */
5614             while (scan < loceol && (c=is_LNBREAK_latin1(scan)))  {
5615                 scan+=c;
5616                 hardcount++;
5617             }
5618         }       
5619         break;
5620     case HORIZWS:
5621         if (do_utf8) {
5622             loceol = PL_regeol;
5623             while (hardcount < max && scan < loceol && (c=is_HORIZWS_utf8(scan))) {
5624                 scan += c;
5625                 hardcount++;
5626             }
5627         } else {
5628             while (scan < loceol && is_HORIZWS_latin1(scan)) 
5629                 scan++;         
5630         }       
5631         break;
5632     case NHORIZWS:
5633         if (do_utf8) {
5634             loceol = PL_regeol;
5635             while (hardcount < max && scan < loceol && !is_HORIZWS_utf8(scan)) {
5636                 scan += UTF8SKIP(scan);
5637                 hardcount++;
5638             }
5639         } else {
5640             while (scan < loceol && !is_HORIZWS_latin1(scan))
5641                 scan++;
5642
5643         }       
5644         break;
5645     case VERTWS:
5646         if (do_utf8) {
5647             loceol = PL_regeol;
5648             while (hardcount < max && scan < loceol && (c=is_VERTWS_utf8(scan))) {
5649                 scan += c;
5650                 hardcount++;
5651             }
5652         } else {
5653             while (scan < loceol && is_VERTWS_latin1(scan)) 
5654                 scan++;
5655
5656         }       
5657         break;
5658     case NVERTWS:
5659         if (do_utf8) {
5660             loceol = PL_regeol;
5661             while (hardcount < max && scan < loceol && !is_VERTWS_utf8(scan)) {
5662                 scan += UTF8SKIP(scan);
5663                 hardcount++;
5664             }
5665         } else {
5666             while (scan < loceol && !is_VERTWS_latin1(scan)) 
5667                 scan++;
5668           
5669         }       
5670         break;
5671
5672     default:            /* Called on something of 0 width. */
5673         break;          /* So match right here or not at all. */
5674     }
5675
5676     if (hardcount)
5677         c = hardcount;
5678     else
5679         c = scan - PL_reginput;
5680     PL_reginput = scan;
5681
5682     DEBUG_r({
5683         GET_RE_DEBUG_FLAGS_DECL;
5684         DEBUG_EXECUTE_r({
5685             SV * const prop = sv_newmortal();
5686             regprop(prog, prop, p);
5687             PerlIO_printf(Perl_debug_log,
5688                         "%*s  %s can match %"IVdf" times out of %"IVdf"...\n",
5689                         REPORT_CODE_OFF + depth*2, "", SvPVX_const(prop),(IV)c,(IV)max);
5690         });
5691     });
5692
5693     return(c);
5694 }
5695
5696
5697 #if !defined(PERL_IN_XSUB_RE) || defined(PLUGGABLE_RE_EXTENSION)
5698 /*
5699 - regclass_swash - prepare the utf8 swash
5700 */
5701
5702 SV *
5703 Perl_regclass_swash(pTHX_ const regexp *prog, register const regnode* node, bool doinit, SV** listsvp, SV **altsvp)
5704 {
5705     dVAR;
5706     SV *sw  = NULL;
5707     SV *si  = NULL;
5708     SV *alt = NULL;
5709     RXi_GET_DECL(prog,progi);
5710     const struct reg_data * const data = prog ? progi->data : NULL;
5711
5712     PERL_ARGS_ASSERT_REGCLASS_SWASH;
5713
5714     if (data && data->count) {
5715         const U32 n = ARG(node);
5716
5717         if (data->what[n] == 's') {
5718             SV * const rv = MUTABLE_SV(data->data[n]);
5719             AV * const av = MUTABLE_AV(SvRV(rv));
5720             SV **const ary = AvARRAY(av);
5721             SV **a, **b;
5722         
5723             /* See the end of regcomp.c:S_regclass() for
5724              * documentation of these array elements. */
5725
5726             si = *ary;
5727             a  = SvROK(ary[1]) ? &ary[1] : NULL;
5728             b  = SvTYPE(ary[2]) == SVt_PVAV ? &ary[2] : NULL;
5729
5730             if (a)
5731                 sw = *a;
5732             else if (si && doinit) {
5733                 sw = swash_init("utf8", "", si, 1, 0);
5734                 (void)av_store(av, 1, sw);
5735             }
5736             if (b)
5737                 alt = *b;
5738         }
5739     }
5740         
5741     if (listsvp)
5742         *listsvp = si;
5743     if (altsvp)
5744         *altsvp  = alt;
5745
5746     return sw;
5747 }
5748 #endif
5749
5750 /*
5751  - reginclass - determine if a character falls into a character class
5752  
5753   The n is the ANYOF regnode, the p is the target string, lenp
5754   is pointer to the maximum length of how far to go in the p
5755   (if the lenp is zero, UTF8SKIP(p) is used),
5756   do_utf8 tells whether the target string is in UTF-8.
5757
5758  */
5759
5760 STATIC bool
5761 S_reginclass(pTHX_ const regexp *prog, register const regnode *n, register const U8* p, STRLEN* lenp, register bool do_utf8)
5762 {
5763     dVAR;
5764     const char flags = ANYOF_FLAGS(n);
5765     bool match = FALSE;
5766     UV c = *p;
5767     STRLEN len = 0;
5768     STRLEN plen;
5769
5770     PERL_ARGS_ASSERT_REGINCLASS;
5771
5772     if (do_utf8 && !UTF8_IS_INVARIANT(c)) {
5773         c = utf8n_to_uvchr(p, UTF8_MAXBYTES, &len,
5774                 (UTF8_ALLOW_DEFAULT & UTF8_ALLOW_ANYUV) | UTF8_CHECK_ONLY);
5775                 /* see [perl #37836] for UTF8_ALLOW_ANYUV */
5776         if (len == (STRLEN)-1) 
5777             Perl_croak(aTHX_ "Malformed UTF-8 character (fatal)");
5778     }
5779
5780     plen = lenp ? *lenp : UNISKIP(NATIVE_TO_UNI(c));
5781     if (do_utf8 || (flags & ANYOF_UNICODE)) {
5782         if (lenp)
5783             *lenp = 0;
5784         if (do_utf8 && !ANYOF_RUNTIME(n)) {
5785             if (len != (STRLEN)-1 && c < 256 && ANYOF_BITMAP_TEST(n, c))
5786                 match = TRUE;
5787         }
5788         if (!match && do_utf8 && (flags & ANYOF_UNICODE_ALL) && c >= 256)
5789             match = TRUE;
5790         if (!match) {
5791             AV *av;
5792             SV * const sw = regclass_swash(prog, n, TRUE, 0, (SV**)&av);
5793         
5794             if (sw) {
5795                 U8 * utf8_p;
5796                 if (do_utf8) {
5797                     utf8_p = (U8 *) p;
5798                 } else {
5799                     STRLEN len = 1;
5800                     utf8_p = bytes_to_utf8(p, &len);
5801                 }
5802                 if (swash_fetch(sw, utf8_p, 1))
5803                     match = TRUE;
5804                 else if (flags & ANYOF_FOLD) {
5805                     if (!match && lenp && av) {
5806                         I32 i;
5807                         for (i = 0; i <= av_len(av); i++) {
5808                             SV* const sv = *av_fetch(av, i, FALSE);
5809                             STRLEN len;
5810                             const char * const s = SvPV_const(sv, len);
5811                             if (len <= plen && memEQ(s, (char*)utf8_p, len)) {
5812                                 *lenp = len;
5813                                 match = TRUE;
5814                                 break;
5815                             }
5816                         }
5817                     }
5818                     if (!match) {
5819                         U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
5820
5821                         STRLEN tmplen;
5822                         to_utf8_fold(utf8_p, tmpbuf, &tmplen);
5823                         if (swash_fetch(sw, tmpbuf, 1))
5824                             match = TRUE;
5825                     }
5826                 }
5827
5828                 /* If we allocated a string above, free it */
5829                 if (! do_utf8) Safefree(utf8_p);
5830             }
5831         }
5832         if (match && lenp && *lenp == 0)
5833             *lenp = UNISKIP(NATIVE_TO_UNI(c));
5834     }
5835     if (!match && c < 256) {
5836         if (ANYOF_BITMAP_TEST(n, c))
5837             match = TRUE;
5838         else if (flags & ANYOF_FOLD) {
5839             U8 f;
5840
5841             if (flags & ANYOF_LOCALE) {
5842                 PL_reg_flags |= RF_tainted;
5843                 f = PL_fold_locale[c];
5844             }
5845             else
5846                 f = PL_fold[c];
5847             if (f != c && ANYOF_BITMAP_TEST(n, f))
5848                 match = TRUE;
5849         }
5850         
5851         if (!match && (flags & ANYOF_CLASS)) {
5852             PL_reg_flags |= RF_tainted;
5853             if (
5854                 (ANYOF_CLASS_TEST(n, ANYOF_ALNUM)   &&  isALNUM_LC(c))  ||
5855                 (ANYOF_CLASS_TEST(n, ANYOF_NALNUM)  && !isALNUM_LC(c))  ||
5856                 (ANYOF_CLASS_TEST(n, ANYOF_SPACE)   &&  isSPACE_LC(c))  ||
5857                 (ANYOF_CLASS_TEST(n, ANYOF_NSPACE)  && !isSPACE_LC(c))  ||
5858                 (ANYOF_CLASS_TEST(n, ANYOF_DIGIT)   &&  isDIGIT_LC(c))  ||
5859                 (ANYOF_CLASS_TEST(n, ANYOF_NDIGIT)  && !isDIGIT_LC(c))  ||
5860                 (ANYOF_CLASS_TEST(n, ANYOF_ALNUMC)  &&  isALNUMC_LC(c)) ||
5861                 (ANYOF_CLASS_TEST(n, ANYOF_NALNUMC) && !isALNUMC_LC(c)) ||
5862                 (ANYOF_CLASS_TEST(n, ANYOF_ALPHA)   &&  isALPHA_LC(c))  ||
5863                 (ANYOF_CLASS_TEST(n, ANYOF_NALPHA)  && !isALPHA_LC(c))  ||
5864                 (ANYOF_CLASS_TEST(n, ANYOF_ASCII)   &&  isASCII(c))     ||
5865                 (ANYOF_CLASS_TEST(n, ANYOF_NASCII)  && !isASCII(c))     ||
5866                 (ANYOF_CLASS_TEST(n, ANYOF_CNTRL)   &&  isCNTRL_LC(c))  ||
5867                 (ANYOF_CLASS_TEST(n, ANYOF_NCNTRL)  && !isCNTRL_LC(c))  ||
5868                 (ANYOF_CLASS_TEST(n, ANYOF_GRAPH)   &&  isGRAPH_LC(c))  ||
5869                 (ANYOF_CLASS_TEST(n, ANYOF_NGRAPH)  && !isGRAPH_LC(c))  ||
5870                 (ANYOF_CLASS_TEST(n, ANYOF_LOWER)   &&  isLOWER_LC(c))  ||
5871                 (ANYOF_CLASS_TEST(n, ANYOF_NLOWER)  && !isLOWER_LC(c))  ||
5872                 (ANYOF_CLASS_TEST(n, ANYOF_PRINT)   &&  isPRINT_LC(c))  ||
5873                 (ANYOF_CLASS_TEST(n, ANYOF_NPRINT)  && !isPRINT_LC(c))  ||
5874                 (ANYOF_CLASS_TEST(n, ANYOF_PUNCT)   &&  isPUNCT_LC(c))  ||
5875                 (ANYOF_CLASS_TEST(n, ANYOF_NPUNCT)  && !isPUNCT_LC(c))  ||
5876                 (ANYOF_CLASS_TEST(n, ANYOF_UPPER)   &&  isUPPER_LC(c))  ||
5877                 (ANYOF_CLASS_TEST(n, ANYOF_NUPPER)  && !isUPPER_LC(c))  ||
5878                 (ANYOF_CLASS_TEST(n, ANYOF_XDIGIT)  &&  isXDIGIT(c))    ||
5879                 (ANYOF_CLASS_TEST(n, ANYOF_NXDIGIT) && !isXDIGIT(c))    ||
5880                 (ANYOF_CLASS_TEST(n, ANYOF_PSXSPC)  &&  isPSXSPC(c))    ||
5881                 (ANYOF_CLASS_TEST(n, ANYOF_NPSXSPC) && !isPSXSPC(c))    ||
5882                 (ANYOF_CLASS_TEST(n, ANYOF_BLANK)   &&  isBLANK(c))     ||
5883                 (ANYOF_CLASS_TEST(n, ANYOF_NBLANK)  && !isBLANK(c))
5884                 ) /* How's that for a conditional? */
5885             {
5886                 match = TRUE;
5887             }
5888         }
5889     }
5890
5891     return (flags & ANYOF_INVERT) ? !match : match;
5892 }
5893
5894 STATIC U8 *
5895 S_reghop3(U8 *s, I32 off, const U8* lim)
5896 {
5897     dVAR;
5898
5899     PERL_ARGS_ASSERT_REGHOP3;
5900
5901     if (off >= 0) {
5902         while (off-- && s < lim) {
5903             /* XXX could check well-formedness here */
5904             s += UTF8SKIP(s);
5905         }
5906     }
5907     else {
5908         while (off++ && s > lim) {
5909             s--;
5910             if (UTF8_IS_CONTINUED(*s)) {
5911                 while (s > lim && UTF8_IS_CONTINUATION(*s))
5912                     s--;
5913             }
5914             /* XXX could check well-formedness here */
5915         }
5916     }
5917     return s;
5918 }
5919
5920 #ifdef XXX_dmq
5921 /* there are a bunch of places where we use two reghop3's that should
5922    be replaced with this routine. but since thats not done yet 
5923    we ifdef it out - dmq
5924 */
5925 STATIC U8 *
5926 S_reghop4(U8 *s, I32 off, const U8* llim, const U8* rlim)
5927 {
5928     dVAR;
5929
5930     PERL_ARGS_ASSERT_REGHOP4;
5931
5932     if (off >= 0) {
5933         while (off-- && s < rlim) {
5934             /* XXX could check well-formedness here */
5935             s += UTF8SKIP(s);
5936         }
5937     }
5938     else {
5939         while (off++ && s > llim) {
5940             s--;
5941             if (UTF8_IS_CONTINUED(*s)) {
5942                 while (s > llim && UTF8_IS_CONTINUATION(*s))
5943                     s--;
5944             }
5945             /* XXX could check well-formedness here */
5946         }
5947     }
5948     return s;
5949 }
5950 #endif
5951
5952 STATIC U8 *
5953 S_reghopmaybe3(U8* s, I32 off, const U8* lim)
5954 {
5955     dVAR;
5956
5957     PERL_ARGS_ASSERT_REGHOPMAYBE3;
5958
5959     if (off >= 0) {
5960         while (off-- && s < lim) {
5961             /* XXX could check well-formedness here */
5962             s += UTF8SKIP(s);
5963         }
5964         if (off >= 0)
5965             return NULL;
5966     }
5967     else {
5968         while (off++ && s > lim) {
5969             s--;
5970             if (UTF8_IS_CONTINUED(*s)) {
5971                 while (s > lim && UTF8_IS_CONTINUATION(*s))
5972                     s--;
5973             }
5974             /* XXX could check well-formedness here */
5975         }
5976         if (off <= 0)
5977             return NULL;
5978     }
5979     return s;
5980 }
5981
5982 static void
5983 restore_pos(pTHX_ void *arg)
5984 {
5985     dVAR;
5986     regexp * const rex = (regexp *)arg;
5987     if (PL_reg_eval_set) {
5988         if (PL_reg_oldsaved) {
5989             rex->subbeg = PL_reg_oldsaved;
5990             rex->sublen = PL_reg_oldsavedlen;
5991 #ifdef PERL_OLD_COPY_ON_WRITE
5992             rex->saved_copy = PL_nrs;
5993 #endif
5994             RXp_MATCH_COPIED_on(rex);
5995         }
5996         PL_reg_magic->mg_len = PL_reg_oldpos;
5997         PL_reg_eval_set = 0;
5998         PL_curpm = PL_reg_oldcurpm;
5999     }   
6000 }
6001
6002 STATIC void
6003 S_to_utf8_substr(pTHX_ register regexp *prog)
6004 {
6005     int i = 1;
6006
6007     PERL_ARGS_ASSERT_TO_UTF8_SUBSTR;
6008
6009     do {
6010         if (prog->substrs->data[i].substr
6011             && !prog->substrs->data[i].utf8_substr) {
6012             SV* const sv = newSVsv(prog->substrs->data[i].substr);
6013             prog->substrs->data[i].utf8_substr = sv;
6014             sv_utf8_upgrade(sv);
6015             if (SvVALID(prog->substrs->data[i].substr)) {
6016                 const U8 flags = BmFLAGS(prog->substrs->data[i].substr);
6017                 if (flags & FBMcf_TAIL) {
6018                     /* Trim the trailing \n that fbm_compile added last
6019                        time.  */
6020                     SvCUR_set(sv, SvCUR(sv) - 1);
6021                     /* Whilst this makes the SV technically "invalid" (as its
6022                        buffer is no longer followed by "\0") when fbm_compile()
6023                        adds the "\n" back, a "\0" is restored.  */
6024                 }
6025                 fbm_compile(sv, flags);
6026             }
6027             if (prog->substrs->data[i].substr == prog->check_substr)
6028                 prog->check_utf8 = sv;
6029         }
6030     } while (i--);
6031 }
6032
6033 STATIC void
6034 S_to_byte_substr(pTHX_ register regexp *prog)
6035 {
6036     dVAR;
6037     int i = 1;
6038
6039     PERL_ARGS_ASSERT_TO_BYTE_SUBSTR;
6040
6041     do {
6042         if (prog->substrs->data[i].utf8_substr
6043             && !prog->substrs->data[i].substr) {
6044             SV* sv = newSVsv(prog->substrs->data[i].utf8_substr);
6045             if (sv_utf8_downgrade(sv, TRUE)) {
6046                 if (SvVALID(prog->substrs->data[i].utf8_substr)) {
6047                     const U8 flags
6048                         = BmFLAGS(prog->substrs->data[i].utf8_substr);
6049                     if (flags & FBMcf_TAIL) {
6050                         /* Trim the trailing \n that fbm_compile added last
6051                            time.  */
6052                         SvCUR_set(sv, SvCUR(sv) - 1);
6053                     }
6054                     fbm_compile(sv, flags);
6055                 }           
6056             } else {
6057                 SvREFCNT_dec(sv);
6058                 sv = &PL_sv_undef;
6059             }
6060             prog->substrs->data[i].substr = sv;
6061             if (prog->substrs->data[i].utf8_substr == prog->check_utf8)
6062                 prog->check_substr = sv;
6063         }
6064     } while (i--);
6065 }
6066
6067 /*
6068  * Local variables:
6069  * c-indentation-style: bsd
6070  * c-basic-offset: 4
6071  * indent-tabs-mode: t
6072  * End:
6073  *
6074  * ex: set ts=8 sts=4 sw=4 noet:
6075  */