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