This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Integrate:
[perl5.git] / regexec.c
1 /*    regexec.c
2  */
3
4 /*
5  * "One Ring to rule them all, One Ring to find them..."
6  */
7
8 /* NOTE: this is derived from Henry Spencer's regexp code, and should not
9  * confused with the original package (see point 3 below).  Thanks, Henry!
10  */
11
12 /* Additional note: this code is very heavily munged from Henry's version
13  * in places.  In some spots I've traded clarity for efficiency, so don't
14  * blame Henry for some of the lack of readability.
15  */
16
17 /* The names of the functions have been changed from regcomp and
18  * regexec to  pregcomp and pregexec in order to avoid conflicts
19  * with the POSIX routines of the same names.
20 */
21
22 #ifdef PERL_EXT_RE_BUILD
23 /* need to replace pregcomp et al, so enable that */
24 #  ifndef PERL_IN_XSUB_RE
25 #    define PERL_IN_XSUB_RE
26 #  endif
27 /* need access to debugger hooks */
28 #  if defined(PERL_EXT_RE_DEBUG) && !defined(DEBUGGING)
29 #    define DEBUGGING
30 #  endif
31 #endif
32
33 #ifdef PERL_IN_XSUB_RE
34 /* We *really* need to overwrite these symbols: */
35 #  define Perl_regexec_flags my_regexec
36 #  define Perl_regdump my_regdump
37 #  define Perl_regprop my_regprop
38 #  define Perl_re_intuit_start my_re_intuit_start
39 /* *These* symbols are masked to allow static link. */
40 #  define Perl_pregexec my_pregexec
41 #  define Perl_reginitcolors my_reginitcolors
42 #  define Perl_regclass_swash my_regclass_swash
43
44 #  define PERL_NO_GET_CONTEXT
45 #endif
46
47 /*SUPPRESS 112*/
48 /*
49  * pregcomp and pregexec -- regsub and regerror are not used in perl
50  *
51  *      Copyright (c) 1986 by University of Toronto.
52  *      Written by Henry Spencer.  Not derived from licensed software.
53  *
54  *      Permission is granted to anyone to use this software for any
55  *      purpose on any computer system, and to redistribute it freely,
56  *      subject to the following restrictions:
57  *
58  *      1. The author is not responsible for the consequences of use of
59  *              this software, no matter how awful, even if they arise
60  *              from defects in it.
61  *
62  *      2. The origin of this software must not be misrepresented, either
63  *              by explicit claim or by omission.
64  *
65  *      3. Altered versions must be plainly marked as such, and must not
66  *              be misrepresented as being the original software.
67  *
68  ****    Alterations to Henry's code are...
69  ****
70  ****    Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
71  ****    2000, 2001, 2002, 2003, by Larry Wall and others
72  ****
73  ****    You may distribute under the terms of either the GNU General Public
74  ****    License or the Artistic License, as specified in the README file.
75  *
76  * Beware that some of this code is subtly aware of the way operator
77  * precedence is structured in regular expressions.  Serious changes in
78  * regular-expression syntax might require a total rethink.
79  */
80 #include "EXTERN.h"
81 #define PERL_IN_REGEXEC_C
82 #include "perl.h"
83
84 #include "regcomp.h"
85
86 #define RF_tainted      1               /* tainted information used? */
87 #define RF_warned       2               /* warned about big count? */
88 #define RF_evaled       4               /* Did an EVAL with setting? */
89 #define RF_utf8         8               /* String contains multibyte chars? */
90 #define RF_false        16              /* odd number of nested negatives */
91
92 #define UTF ((PL_reg_flags & RF_utf8) != 0)
93
94 #define RS_init         1               /* eval environment created */
95 #define RS_set          2               /* replsv value is set */
96
97 #ifndef STATIC
98 #define STATIC  static
99 #endif
100
101 #define REGINCLASS(p,c)  (ANYOF_FLAGS(p) ? reginclass(p,c,0,0) : ANYOF_BITMAP_TEST(p,*(c)))
102
103 /*
104  * Forwards.
105  */
106
107 #define CHR_SVLEN(sv) (do_utf8 ? 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 reghop_c(pos,off) ((char*)reghop((U8*)pos, off))
111 #define reghopmaybe_c(pos,off) ((char*)reghopmaybe((U8*)pos, off))
112 #define HOP(pos,off) (PL_reg_match_utf8 ? reghop((U8*)pos, off) : (U8*)(pos + off))
113 #define HOPMAYBE(pos,off) (PL_reg_match_utf8 ? reghopmaybe((U8*)pos, off) : (U8*)(pos + off))
114 #define HOPc(pos,off) ((char*)HOP(pos,off))
115 #define HOPMAYBEc(pos,off) ((char*)HOPMAYBE(pos,off))
116
117 #define HOPBACK(pos, off) (             \
118     (PL_reg_match_utf8)                 \
119         ? reghopmaybe((U8*)pos, -off)   \
120     : (pos - off >= PL_bostr)           \
121         ? (U8*)(pos - off)              \
122     : (U8*)NULL                         \
123 )
124 #define HOPBACKc(pos, off) (char*)HOPBACK(pos, off)
125
126 #define reghop3_c(pos,off,lim) ((char*)reghop3((U8*)pos, off, (U8*)lim))
127 #define reghopmaybe3_c(pos,off,lim) ((char*)reghopmaybe3((U8*)pos, off, (U8*)lim))
128 #define HOP3(pos,off,lim) (PL_reg_match_utf8 ? reghop3((U8*)pos, off, (U8*)lim) : (U8*)(pos + off))
129 #define HOPMAYBE3(pos,off,lim) (PL_reg_match_utf8 ? reghopmaybe3((U8*)pos, off, (U8*)lim) : (U8*)(pos + off))
130 #define HOP3c(pos,off,lim) ((char*)HOP3(pos,off,lim))
131 #define HOPMAYBE3c(pos,off,lim) ((char*)HOPMAYBE3(pos,off,lim))
132
133 #define LOAD_UTF8_CHARCLASS(a,b) STMT_START { if (!CAT2(PL_utf8_,a)) { ENTER; save_re_context(); (void)CAT2(is_utf8_, a)((U8*)b); LEAVE; } } STMT_END
134
135 /* for use after a quantifier and before an EXACT-like node -- japhy */
136 #define JUMPABLE(rn) ( \
137     OP(rn) == OPEN || OP(rn) == CLOSE || OP(rn) == EVAL || \
138     OP(rn) == SUSPEND || OP(rn) == IFMATCH || \
139     OP(rn) == PLUS || OP(rn) == MINMOD || \
140     (PL_regkind[(U8)OP(rn)] == CURLY && ARG1(rn) > 0) \
141 )
142
143 #define HAS_TEXT(rn) ( \
144     PL_regkind[(U8)OP(rn)] == EXACT || PL_regkind[(U8)OP(rn)] == REF \
145 )
146
147 /*
148   Search for mandatory following text node; for lookahead, the text must
149   follow but for lookbehind (rn->flags != 0) we skip to the next step.
150 */
151 #define FIND_NEXT_IMPT(rn) STMT_START { \
152     while (JUMPABLE(rn)) \
153         if (OP(rn) == SUSPEND || PL_regkind[(U8)OP(rn)] == CURLY) \
154             rn = NEXTOPER(NEXTOPER(rn)); \
155         else if (OP(rn) == PLUS) \
156             rn = NEXTOPER(rn); \
157         else if (OP(rn) == IFMATCH) \
158             rn = (rn->flags == 0) ? NEXTOPER(NEXTOPER(rn)) : rn + ARG(rn); \
159         else rn += NEXT_OFF(rn); \
160 } STMT_END 
161
162 static void restore_pos(pTHX_ void *arg);
163
164 STATIC CHECKPOINT
165 S_regcppush(pTHX_ I32 parenfloor)
166 {
167     int retval = PL_savestack_ix;
168 #define REGCP_PAREN_ELEMS 4
169     int paren_elems_to_push = (PL_regsize - parenfloor) * REGCP_PAREN_ELEMS;
170     int p;
171
172     if (paren_elems_to_push < 0)
173         Perl_croak(aTHX_ "panic: paren_elems_to_push < 0");
174
175 #define REGCP_OTHER_ELEMS 6
176     SSGROW(paren_elems_to_push + REGCP_OTHER_ELEMS);
177     for (p = PL_regsize; p > parenfloor; p--) {
178 /* REGCP_PARENS_ELEMS are pushed per pairs of parentheses. */
179         SSPUSHINT(PL_regendp[p]);
180         SSPUSHINT(PL_regstartp[p]);
181         SSPUSHPTR(PL_reg_start_tmp[p]);
182         SSPUSHINT(p);
183     }
184 /* REGCP_OTHER_ELEMS are pushed in any case, parentheses or no. */
185     SSPUSHINT(PL_regsize);
186     SSPUSHINT(*PL_reglastparen);
187     SSPUSHINT(*PL_reglastcloseparen);
188     SSPUSHPTR(PL_reginput);
189 #define REGCP_FRAME_ELEMS 2
190 /* REGCP_FRAME_ELEMS are part of the REGCP_OTHER_ELEMS and
191  * are needed for the regexp context stack bookkeeping. */
192     SSPUSHINT(paren_elems_to_push + REGCP_OTHER_ELEMS - REGCP_FRAME_ELEMS);
193     SSPUSHINT(SAVEt_REGCONTEXT); /* Magic cookie. */
194
195     return retval;
196 }
197
198 /* These are needed since we do not localize EVAL nodes: */
199 #  define REGCP_SET(cp)  DEBUG_r(PerlIO_printf(Perl_debug_log,          \
200                              "  Setting an EVAL scope, savestack=%"IVdf"\n",    \
201                              (IV)PL_savestack_ix)); cp = PL_savestack_ix
202
203 #  define REGCP_UNWIND(cp)  DEBUG_r(cp != PL_savestack_ix ?             \
204                                 PerlIO_printf(Perl_debug_log,           \
205                                 "  Clearing an EVAL scope, savestack=%"IVdf"..%"IVdf"\n", \
206                                 (IV)(cp), (IV)PL_savestack_ix) : 0); regcpblow(cp)
207
208 STATIC char *
209 S_regcppop(pTHX)
210 {
211     I32 i;
212     U32 paren = 0;
213     char *input;
214     I32 tmps;
215
216     /* Pop REGCP_OTHER_ELEMS before the parentheses loop starts. */
217     i = SSPOPINT;
218     assert(i == SAVEt_REGCONTEXT); /* Check that the magic cookie is there. */
219     i = SSPOPINT; /* Parentheses elements to pop. */
220     input = (char *) SSPOPPTR;
221     *PL_reglastcloseparen = SSPOPINT;
222     *PL_reglastparen = SSPOPINT;
223     PL_regsize = SSPOPINT;
224
225     /* Now restore the parentheses context. */
226     for (i -= (REGCP_OTHER_ELEMS - REGCP_FRAME_ELEMS);
227          i > 0; i -= REGCP_PAREN_ELEMS) {
228         paren = (U32)SSPOPINT;
229         PL_reg_start_tmp[paren] = (char *) SSPOPPTR;
230         PL_regstartp[paren] = SSPOPINT;
231         tmps = SSPOPINT;
232         if (paren <= *PL_reglastparen)
233             PL_regendp[paren] = tmps;
234         DEBUG_r(
235             PerlIO_printf(Perl_debug_log,
236                           "     restoring \\%"UVuf" to %"IVdf"(%"IVdf")..%"IVdf"%s\n",
237                           (UV)paren, (IV)PL_regstartp[paren],
238                           (IV)(PL_reg_start_tmp[paren] - PL_bostr),
239                           (IV)PL_regendp[paren],
240                           (paren > *PL_reglastparen ? "(no)" : ""));
241         );
242     }
243     DEBUG_r(
244         if ((I32)(*PL_reglastparen + 1) <= PL_regnpar) {
245             PerlIO_printf(Perl_debug_log,
246                           "     restoring \\%"IVdf"..\\%"IVdf" to undef\n",
247                           (IV)(*PL_reglastparen + 1), (IV)PL_regnpar);
248         }
249     );
250 #if 1
251     /* It would seem that the similar code in regtry()
252      * already takes care of this, and in fact it is in
253      * a better location to since this code can #if 0-ed out
254      * but the code in regtry() is needed or otherwise tests
255      * requiring null fields (pat.t#187 and split.t#{13,14}
256      * (as of patchlevel 7877)  will fail.  Then again,
257      * this code seems to be necessary or otherwise
258      * building DynaLoader will fail:
259      * "Error: '*' not in typemap in DynaLoader.xs, line 164"
260      * --jhi */
261     for (paren = *PL_reglastparen + 1; (I32)paren <= PL_regnpar; paren++) {
262         if ((I32)paren > PL_regsize)
263             PL_regstartp[paren] = -1;
264         PL_regendp[paren] = -1;
265     }
266 #endif
267     return input;
268 }
269
270 STATIC char *
271 S_regcp_set_to(pTHX_ I32 ss)
272 {
273     I32 tmp = PL_savestack_ix;
274
275     PL_savestack_ix = ss;
276     regcppop();
277     PL_savestack_ix = tmp;
278     return Nullch;
279 }
280
281 typedef struct re_cc_state
282 {
283     I32 ss;
284     regnode *node;
285     struct re_cc_state *prev;
286     CURCUR *cc;
287     regexp *re;
288 } re_cc_state;
289
290 #define regcpblow(cp) LEAVE_SCOPE(cp)   /* Ignores regcppush()ed data. */
291
292 #define TRYPAREN(paren, n, input) {                             \
293     if (paren) {                                                \
294         if (n) {                                                \
295             PL_regstartp[paren] = HOPc(input, -1) - PL_bostr;   \
296             PL_regendp[paren] = input - PL_bostr;               \
297         }                                                       \
298         else                                                    \
299             PL_regendp[paren] = -1;                             \
300     }                                                           \
301     if (regmatch(next))                                         \
302         sayYES;                                                 \
303     if (paren && n)                                             \
304         PL_regendp[paren] = -1;                                 \
305 }
306
307
308 /*
309  * pregexec and friends
310  */
311
312 /*
313  - pregexec - match a regexp against a string
314  */
315 I32
316 Perl_pregexec(pTHX_ register regexp *prog, char *stringarg, register char *strend,
317          char *strbeg, I32 minend, SV *screamer, U32 nosave)
318 /* strend: pointer to null at end of string */
319 /* strbeg: real beginning of string */
320 /* minend: end of match must be >=minend after stringarg. */
321 /* nosave: For optimizations. */
322 {
323     return
324         regexec_flags(prog, stringarg, strend, strbeg, minend, screamer, NULL,
325                       nosave ? 0 : REXEC_COPY_STR);
326 }
327
328 STATIC void
329 S_cache_re(pTHX_ regexp *prog)
330 {
331     PL_regprecomp = prog->precomp;              /* Needed for FAIL. */
332 #ifdef DEBUGGING
333     PL_regprogram = prog->program;
334 #endif
335     PL_regnpar = prog->nparens;
336     PL_regdata = prog->data;
337     PL_reg_re = prog;
338 }
339
340 /*
341  * Need to implement the following flags for reg_anch:
342  *
343  * USE_INTUIT_NOML              - Useful to call re_intuit_start() first
344  * USE_INTUIT_ML
345  * INTUIT_AUTORITATIVE_NOML     - Can trust a positive answer
346  * INTUIT_AUTORITATIVE_ML
347  * INTUIT_ONCE_NOML             - Intuit can match in one location only.
348  * INTUIT_ONCE_ML
349  *
350  * Another flag for this function: SECOND_TIME (so that float substrs
351  * with giant delta may be not rechecked).
352  */
353
354 /* Assumptions: if ANCH_GPOS, then strpos is anchored. XXXX Check GPOS logic */
355
356 /* If SCREAM, then SvPVX(sv) should be compatible with strpos and strend.
357    Otherwise, only SvCUR(sv) is used to get strbeg. */
358
359 /* XXXX We assume that strpos is strbeg unless sv. */
360
361 /* XXXX Some places assume that there is a fixed substring.
362         An update may be needed if optimizer marks as "INTUITable"
363         RExen without fixed substrings.  Similarly, it is assumed that
364         lengths of all the strings are no more than minlen, thus they
365         cannot come from lookahead.
366         (Or minlen should take into account lookahead.) */
367
368 /* A failure to find a constant substring means that there is no need to make
369    an expensive call to REx engine, thus we celebrate a failure.  Similarly,
370    finding a substring too deep into the string means that less calls to
371    regtry() should be needed.
372
373    REx compiler's optimizer found 4 possible hints:
374         a) Anchored substring;
375         b) Fixed substring;
376         c) Whether we are anchored (beginning-of-line or \G);
377         d) First node (of those at offset 0) which may distingush positions;
378    We use a)b)d) and multiline-part of c), and try to find a position in the
379    string which does not contradict any of them.
380  */
381
382 /* Most of decisions we do here should have been done at compile time.
383    The nodes of the REx which we used for the search should have been
384    deleted from the finite automaton. */
385
386 char *
387 Perl_re_intuit_start(pTHX_ regexp *prog, SV *sv, char *strpos,
388                      char *strend, U32 flags, re_scream_pos_data *data)
389 {
390     register I32 start_shift = 0;
391     /* Should be nonnegative! */
392     register I32 end_shift   = 0;
393     register char *s;
394     register SV *check;
395     char *strbeg;
396     char *t;
397     int do_utf8 = sv ? SvUTF8(sv) : 0;  /* if no sv we have to assume bytes */
398     I32 ml_anch;
399     register char *other_last = Nullch; /* other substr checked before this */
400     char *check_at = Nullch;            /* check substr found at this pos */
401 #ifdef DEBUGGING
402     char *i_strpos = strpos;
403     SV *dsv = PERL_DEBUG_PAD_ZERO(0);
404 #endif
405     RX_MATCH_UTF8_set(prog,do_utf8);
406
407     if (prog->reganch & ROPT_UTF8) {
408         DEBUG_r(PerlIO_printf(Perl_debug_log,
409                               "UTF-8 regex...\n"));
410         PL_reg_flags |= RF_utf8;
411     }
412
413     DEBUG_r({
414          char *s   = PL_reg_match_utf8 ?
415                          sv_uni_display(dsv, sv, 60, UNI_DISPLAY_REGEX) :
416                          strpos;
417          int   len = PL_reg_match_utf8 ?
418                          strlen(s) : strend - strpos;
419          if (!PL_colorset)
420               reginitcolors();
421          if (PL_reg_match_utf8)
422              DEBUG_r(PerlIO_printf(Perl_debug_log,
423                                    "UTF-8 target...\n"));
424          PerlIO_printf(Perl_debug_log,
425                        "%sGuessing start of match, REx%s `%s%.60s%s%s' against `%s%.*s%s%s'...\n",
426                        PL_colors[4],PL_colors[5],PL_colors[0],
427                        prog->precomp,
428                        PL_colors[1],
429                        (strlen(prog->precomp) > 60 ? "..." : ""),
430                        PL_colors[0],
431                        (int)(len > 60 ? 60 : len),
432                        s, PL_colors[1],
433                        (len > 60 ? "..." : "")
434               );
435     });
436
437     /* CHR_DIST() would be more correct here but it makes things slow. */
438     if (prog->minlen > strend - strpos) {
439         DEBUG_r(PerlIO_printf(Perl_debug_log,
440                               "String too short... [re_intuit_start]\n"));
441         goto fail;
442     }
443     strbeg = (sv && SvPOK(sv)) ? strend - SvCUR(sv) : strpos;
444     PL_regeol = strend;
445     if (do_utf8) {
446         if (!prog->check_utf8 && prog->check_substr)
447             to_utf8_substr(prog);
448         check = prog->check_utf8;
449     } else {
450         if (!prog->check_substr && prog->check_utf8)
451             to_byte_substr(prog);
452         check = prog->check_substr;
453     }
454    if (check == &PL_sv_undef) {
455         DEBUG_r(PerlIO_printf(Perl_debug_log,
456                 "Non-utf string cannot match utf check string\n"));
457         goto fail;
458     }
459     if (prog->reganch & ROPT_ANCH) {    /* Match at beg-of-str or after \n */
460         ml_anch = !( (prog->reganch & ROPT_ANCH_SINGLE)
461                      || ( (prog->reganch & ROPT_ANCH_BOL)
462                           && !PL_multiline ) ); /* Check after \n? */
463
464         if (!ml_anch) {
465           if ( !(prog->reganch & (ROPT_ANCH_GPOS /* Checked by the caller */
466                                   | ROPT_IMPLICIT)) /* not a real BOL */
467                /* SvCUR is not set on references: SvRV and SvPVX overlap */
468                && sv && !SvROK(sv)
469                && (strpos != strbeg)) {
470               DEBUG_r(PerlIO_printf(Perl_debug_log, "Not at start...\n"));
471               goto fail;
472           }
473           if (prog->check_offset_min == prog->check_offset_max &&
474               !(prog->reganch & ROPT_CANY_SEEN)) {
475             /* Substring at constant offset from beg-of-str... */
476             I32 slen;
477
478             s = HOP3c(strpos, prog->check_offset_min, strend);
479             if (SvTAIL(check)) {
480                 slen = SvCUR(check);    /* >= 1 */
481
482                 if ( strend - s > slen || strend - s < slen - 1
483                      || (strend - s == slen && strend[-1] != '\n')) {
484                     DEBUG_r(PerlIO_printf(Perl_debug_log, "String too long...\n"));
485                     goto fail_finish;
486                 }
487                 /* Now should match s[0..slen-2] */
488                 slen--;
489                 if (slen && (*SvPVX(check) != *s
490                              || (slen > 1
491                                  && memNE(SvPVX(check), s, slen)))) {
492                   report_neq:
493                     DEBUG_r(PerlIO_printf(Perl_debug_log, "String not equal...\n"));
494                     goto fail_finish;
495                 }
496             }
497             else if (*SvPVX(check) != *s
498                      || ((slen = SvCUR(check)) > 1
499                          && memNE(SvPVX(check), s, slen)))
500                 goto report_neq;
501             goto success_at_start;
502           }
503         }
504         /* Match is anchored, but substr is not anchored wrt beg-of-str. */
505         s = strpos;
506         start_shift = prog->check_offset_min; /* okay to underestimate on CC */
507         end_shift = prog->minlen - start_shift -
508             CHR_SVLEN(check) + (SvTAIL(check) != 0);
509         if (!ml_anch) {
510             I32 end = prog->check_offset_max + CHR_SVLEN(check)
511                                          - (SvTAIL(check) != 0);
512             I32 eshift = CHR_DIST((U8*)strend, (U8*)s) - end;
513
514             if (end_shift < eshift)
515                 end_shift = eshift;
516         }
517     }
518     else {                              /* Can match at random position */
519         ml_anch = 0;
520         s = strpos;
521         start_shift = prog->check_offset_min; /* okay to underestimate on CC */
522         /* Should be nonnegative! */
523         end_shift = prog->minlen - start_shift -
524             CHR_SVLEN(check) + (SvTAIL(check) != 0);
525     }
526
527 #ifdef DEBUGGING        /* 7/99: reports of failure (with the older version) */
528     if (end_shift < 0)
529         Perl_croak(aTHX_ "panic: end_shift");
530 #endif
531
532   restart:
533     /* Find a possible match in the region s..strend by looking for
534        the "check" substring in the region corrected by start/end_shift. */
535     if (flags & REXEC_SCREAM) {
536         I32 p = -1;                     /* Internal iterator of scream. */
537         I32 *pp = data ? data->scream_pos : &p;
538
539         if (PL_screamfirst[BmRARE(check)] >= 0
540             || ( BmRARE(check) == '\n'
541                  && (BmPREVIOUS(check) == SvCUR(check) - 1)
542                  && SvTAIL(check) ))
543             s = screaminstr(sv, check,
544                             start_shift + (s - strbeg), end_shift, pp, 0);
545         else
546             goto fail_finish;
547         /* we may be pointing at the wrong string */
548         if (s && RX_MATCH_COPIED(prog))
549             s = strbeg + (s - SvPVX(sv));
550         if (data)
551             *data->scream_olds = s;
552     }
553     else if (prog->reganch & ROPT_CANY_SEEN)
554         s = fbm_instr((U8*)(s + start_shift),
555                       (U8*)(strend - end_shift),
556                       check, PL_multiline ? FBMrf_MULTILINE : 0);
557     else
558         s = fbm_instr(HOP3(s, start_shift, strend),
559                       HOP3(strend, -end_shift, strbeg),
560                       check, PL_multiline ? FBMrf_MULTILINE : 0);
561
562     /* Update the count-of-usability, remove useless subpatterns,
563         unshift s.  */
564
565     DEBUG_r(PerlIO_printf(Perl_debug_log, "%s %s substr `%s%.*s%s'%s%s",
566                           (s ? "Found" : "Did not find"),
567                           (check == (do_utf8 ? prog->anchored_utf8 : prog->anchored_substr) ? "anchored" : "floating"),
568                           PL_colors[0],
569                           (int)(SvCUR(check) - (SvTAIL(check)!=0)),
570                           SvPVX(check),
571                           PL_colors[1], (SvTAIL(check) ? "$" : ""),
572                           (s ? " at offset " : "...\n") ) );
573
574     if (!s)
575         goto fail_finish;
576
577     check_at = s;
578
579     /* Finish the diagnostic message */
580     DEBUG_r(PerlIO_printf(Perl_debug_log, "%ld...\n", (long)(s - i_strpos)) );
581
582     /* Got a candidate.  Check MBOL anchoring, and the *other* substr.
583        Start with the other substr.
584        XXXX no SCREAM optimization yet - and a very coarse implementation
585        XXXX /ttx+/ results in anchored=`ttx', floating=`x'.  floating will
586                 *always* match.  Probably should be marked during compile...
587        Probably it is right to do no SCREAM here...
588      */
589
590     if (do_utf8 ? (prog->float_utf8 && prog->anchored_utf8) : (prog->float_substr && prog->anchored_substr)) {
591         /* Take into account the "other" substring. */
592         /* XXXX May be hopelessly wrong for UTF... */
593         if (!other_last)
594             other_last = strpos;
595         if (check == (do_utf8 ? prog->float_utf8 : prog->float_substr)) {
596           do_other_anchored:
597             {
598                 char *last = HOP3c(s, -start_shift, strbeg), *last1, *last2;
599                 char *s1 = s;
600                 SV* must;
601
602                 t = s - prog->check_offset_max;
603                 if (s - strpos > prog->check_offset_max  /* signed-corrected t > strpos */
604                     && (!do_utf8
605                         || ((t = reghopmaybe3_c(s, -(prog->check_offset_max), strpos))
606                             && t > strpos)))
607                     /* EMPTY */;
608                 else
609                     t = strpos;
610                 t = HOP3c(t, prog->anchored_offset, strend);
611                 if (t < other_last)     /* These positions already checked */
612                     t = other_last;
613                 last2 = last1 = HOP3c(strend, -prog->minlen, strbeg);
614                 if (last < last1)
615                     last1 = last;
616  /* XXXX It is not documented what units *_offsets are in.  Assume bytes.  */
617                 /* On end-of-str: see comment below. */
618                 must = do_utf8 ? prog->anchored_utf8 : prog->anchored_substr;
619                 if (must == &PL_sv_undef) {
620                     s = (char*)NULL;
621                     DEBUG_r(must = prog->anchored_utf8);        /* for debug */
622                 }
623                 else
624                     s = fbm_instr(
625                         (unsigned char*)t,
626                         HOP3(HOP3(last1, prog->anchored_offset, strend)
627                                 + SvCUR(must), -(SvTAIL(must)!=0), strbeg),
628                         must,
629                         PL_multiline ? FBMrf_MULTILINE : 0
630                     );
631                 DEBUG_r(PerlIO_printf(Perl_debug_log,
632                         "%s anchored substr `%s%.*s%s'%s",
633                         (s ? "Found" : "Contradicts"),
634                         PL_colors[0],
635                           (int)(SvCUR(must)
636                           - (SvTAIL(must)!=0)),
637                           SvPVX(must),
638                           PL_colors[1], (SvTAIL(must) ? "$" : "")));
639                 if (!s) {
640                     if (last1 >= last2) {
641                         DEBUG_r(PerlIO_printf(Perl_debug_log,
642                                                 ", giving up...\n"));
643                         goto fail_finish;
644                     }
645                     DEBUG_r(PerlIO_printf(Perl_debug_log,
646                         ", trying floating at offset %ld...\n",
647                         (long)(HOP3c(s1, 1, strend) - i_strpos)));
648                     other_last = HOP3c(last1, prog->anchored_offset+1, strend);
649                     s = HOP3c(last, 1, strend);
650                     goto restart;
651                 }
652                 else {
653                     DEBUG_r(PerlIO_printf(Perl_debug_log, " at offset %ld...\n",
654                           (long)(s - i_strpos)));
655                     t = HOP3c(s, -prog->anchored_offset, strbeg);
656                     other_last = HOP3c(s, 1, strend);
657                     s = s1;
658                     if (t == strpos)
659                         goto try_at_start;
660                     goto try_at_offset;
661                 }
662             }
663         }
664         else {          /* Take into account the floating substring. */
665             char *last, *last1;
666             char *s1 = s;
667             SV* must;
668
669             t = HOP3c(s, -start_shift, strbeg);
670             last1 = last =
671                 HOP3c(strend, -prog->minlen + prog->float_min_offset, strbeg);
672             if (CHR_DIST((U8*)last, (U8*)t) > prog->float_max_offset)
673                 last = HOP3c(t, prog->float_max_offset, strend);
674             s = HOP3c(t, prog->float_min_offset, strend);
675             if (s < other_last)
676                 s = other_last;
677  /* XXXX It is not documented what units *_offsets are in.  Assume bytes.  */
678             must = do_utf8 ? prog->float_utf8 : prog->float_substr;
679             /* fbm_instr() takes into account exact value of end-of-str
680                if the check is SvTAIL(ed).  Since false positives are OK,
681                and end-of-str is not later than strend we are OK. */
682             if (must == &PL_sv_undef) {
683                 s = (char*)NULL;
684                 DEBUG_r(must = prog->float_utf8);       /* for debug message */
685             }
686             else
687                 s = fbm_instr((unsigned char*)s,
688                               (unsigned char*)last + SvCUR(must)
689                                   - (SvTAIL(must)!=0),
690                               must, PL_multiline ? FBMrf_MULTILINE : 0);
691             DEBUG_r(PerlIO_printf(Perl_debug_log, "%s floating substr `%s%.*s%s'%s",
692                     (s ? "Found" : "Contradicts"),
693                     PL_colors[0],
694                       (int)(SvCUR(must) - (SvTAIL(must)!=0)),
695                       SvPVX(must),
696                       PL_colors[1], (SvTAIL(must) ? "$" : "")));
697             if (!s) {
698                 if (last1 == last) {
699                     DEBUG_r(PerlIO_printf(Perl_debug_log,
700                                             ", giving up...\n"));
701                     goto fail_finish;
702                 }
703                 DEBUG_r(PerlIO_printf(Perl_debug_log,
704                     ", trying anchored starting at offset %ld...\n",
705                     (long)(s1 + 1 - i_strpos)));
706                 other_last = last;
707                 s = HOP3c(t, 1, strend);
708                 goto restart;
709             }
710             else {
711                 DEBUG_r(PerlIO_printf(Perl_debug_log, " at offset %ld...\n",
712                       (long)(s - i_strpos)));
713                 other_last = s; /* Fix this later. --Hugo */
714                 s = s1;
715                 if (t == strpos)
716                     goto try_at_start;
717                 goto try_at_offset;
718             }
719         }
720     }
721
722     t = s - prog->check_offset_max;
723     if (s - strpos > prog->check_offset_max  /* signed-corrected t > strpos */
724         && (!do_utf8
725             || ((t = reghopmaybe3_c(s, -prog->check_offset_max, strpos))
726                  && t > strpos))) {
727         /* Fixed substring is found far enough so that the match
728            cannot start at strpos. */
729       try_at_offset:
730         if (ml_anch && t[-1] != '\n') {
731             /* Eventually fbm_*() should handle this, but often
732                anchored_offset is not 0, so this check will not be wasted. */
733             /* XXXX In the code below we prefer to look for "^" even in
734                presence of anchored substrings.  And we search even
735                beyond the found float position.  These pessimizations
736                are historical artefacts only.  */
737           find_anchor:
738             while (t < strend - prog->minlen) {
739                 if (*t == '\n') {
740                     if (t < check_at - prog->check_offset_min) {
741                         if (do_utf8 ? prog->anchored_utf8 : prog->anchored_substr) {
742                             /* Since we moved from the found position,
743                                we definitely contradict the found anchored
744                                substr.  Due to the above check we do not
745                                contradict "check" substr.
746                                Thus we can arrive here only if check substr
747                                is float.  Redo checking for "other"=="fixed".
748                              */
749                             strpos = t + 1;                     
750                             DEBUG_r(PerlIO_printf(Perl_debug_log, "Found /%s^%s/m at offset %ld, rescanning for anchored from offset %ld...\n",
751                                 PL_colors[0],PL_colors[1], (long)(strpos - i_strpos), (long)(strpos - i_strpos + prog->anchored_offset)));
752                             goto do_other_anchored;
753                         }
754                         /* We don't contradict the found floating substring. */
755                         /* XXXX Why not check for STCLASS? */
756                         s = t + 1;
757                         DEBUG_r(PerlIO_printf(Perl_debug_log, "Found /%s^%s/m at offset %ld...\n",
758                             PL_colors[0],PL_colors[1], (long)(s - i_strpos)));
759                         goto set_useful;
760                     }
761                     /* Position contradicts check-string */
762                     /* XXXX probably better to look for check-string
763                        than for "\n", so one should lower the limit for t? */
764                     DEBUG_r(PerlIO_printf(Perl_debug_log, "Found /%s^%s/m, restarting lookup for check-string at offset %ld...\n",
765                         PL_colors[0],PL_colors[1], (long)(t + 1 - i_strpos)));
766                     other_last = strpos = s = t + 1;
767                     goto restart;
768                 }
769                 t++;
770             }
771             DEBUG_r(PerlIO_printf(Perl_debug_log, "Did not find /%s^%s/m...\n",
772                         PL_colors[0],PL_colors[1]));
773             goto fail_finish;
774         }
775         else {
776             DEBUG_r(PerlIO_printf(Perl_debug_log, "Starting position does not contradict /%s^%s/m...\n",
777                         PL_colors[0],PL_colors[1]));
778         }
779         s = t;
780       set_useful:
781         ++BmUSEFUL(do_utf8 ? prog->check_utf8 : prog->check_substr);    /* hooray/5 */
782     }
783     else {
784         /* The found string does not prohibit matching at strpos,
785            - no optimization of calling REx engine can be performed,
786            unless it was an MBOL and we are not after MBOL,
787            or a future STCLASS check will fail this. */
788       try_at_start:
789         /* Even in this situation we may use MBOL flag if strpos is offset
790            wrt the start of the string. */
791         if (ml_anch && sv && !SvROK(sv) /* See prev comment on SvROK */
792             && (strpos != strbeg) && strpos[-1] != '\n'
793             /* May be due to an implicit anchor of m{.*foo}  */
794             && !(prog->reganch & ROPT_IMPLICIT))
795         {
796             t = strpos;
797             goto find_anchor;
798         }
799         DEBUG_r( if (ml_anch)
800             PerlIO_printf(Perl_debug_log, "Position at offset %ld does not contradict /%s^%s/m...\n",
801                         (long)(strpos - i_strpos), PL_colors[0],PL_colors[1]);
802         );
803       success_at_start:
804         if (!(prog->reganch & ROPT_NAUGHTY)     /* XXXX If strpos moved? */
805             && (do_utf8 ? (
806                 prog->check_utf8                /* Could be deleted already */
807                 && --BmUSEFUL(prog->check_utf8) < 0
808                 && (prog->check_utf8 == prog->float_utf8)
809             ) : (
810                 prog->check_substr              /* Could be deleted already */
811                 && --BmUSEFUL(prog->check_substr) < 0
812                 && (prog->check_substr == prog->float_substr)
813             )))
814         {
815             /* If flags & SOMETHING - do not do it many times on the same match */
816             DEBUG_r(PerlIO_printf(Perl_debug_log, "... Disabling check substring...\n"));
817             SvREFCNT_dec(do_utf8 ? prog->check_utf8 : prog->check_substr);
818             if (do_utf8 ? prog->check_substr : prog->check_utf8)
819                 SvREFCNT_dec(do_utf8 ? prog->check_substr : prog->check_utf8);
820             prog->check_substr = prog->check_utf8 = Nullsv;     /* disable */
821             prog->float_substr = prog->float_utf8 = Nullsv;     /* clear */
822             check = Nullsv;                     /* abort */
823             s = strpos;
824             /* XXXX This is a remnant of the old implementation.  It
825                     looks wasteful, since now INTUIT can use many
826                     other heuristics. */
827             prog->reganch &= ~RE_USE_INTUIT;
828         }
829         else
830             s = strpos;
831     }
832
833     /* Last resort... */
834     /* XXXX BmUSEFUL already changed, maybe multiple change is meaningful... */
835     if (prog->regstclass) {
836         /* minlen == 0 is possible if regstclass is \b or \B,
837            and the fixed substr is ''$.
838            Since minlen is already taken into account, s+1 is before strend;
839            accidentally, minlen >= 1 guaranties no false positives at s + 1
840            even for \b or \B.  But (minlen? 1 : 0) below assumes that
841            regstclass does not come from lookahead...  */
842         /* If regstclass takes bytelength more than 1: If charlength==1, OK.
843            This leaves EXACTF only, which is dealt with in find_byclass().  */
844         U8* str = (U8*)STRING(prog->regstclass);
845         int cl_l = (PL_regkind[(U8)OP(prog->regstclass)] == EXACT
846                     ? CHR_DIST(str+STR_LEN(prog->regstclass), str)
847                     : 1);
848         char *endpos = (prog->anchored_substr || prog->anchored_utf8 || ml_anch)
849                 ? HOP3c(s, (prog->minlen ? cl_l : 0), strend)
850                 : (prog->float_substr || prog->float_utf8
851                    ? HOP3c(HOP3c(check_at, -start_shift, strbeg),
852                            cl_l, strend)
853                    : strend);
854         char *startpos = strbeg;
855
856         t = s;
857         cache_re(prog);
858         s = find_byclass(prog, prog->regstclass, s, endpos, startpos, 1);
859         if (!s) {
860 #ifdef DEBUGGING
861             char *what = 0;
862 #endif
863             if (endpos == strend) {
864                 DEBUG_r( PerlIO_printf(Perl_debug_log,
865                                 "Could not match STCLASS...\n") );
866                 goto fail;
867             }
868             DEBUG_r( PerlIO_printf(Perl_debug_log,
869                                    "This position contradicts STCLASS...\n") );
870             if ((prog->reganch & ROPT_ANCH) && !ml_anch)
871                 goto fail;
872             /* Contradict one of substrings */
873             if (prog->anchored_substr || prog->anchored_utf8) {
874                 if ((do_utf8 ? prog->anchored_utf8 : prog->anchored_substr) == check) {
875                     DEBUG_r( what = "anchored" );
876                   hop_and_restart:
877                     s = HOP3c(t, 1, strend);
878                     if (s + start_shift + end_shift > strend) {
879                         /* XXXX Should be taken into account earlier? */
880                         DEBUG_r( PerlIO_printf(Perl_debug_log,
881                                                "Could not match STCLASS...\n") );
882                         goto fail;
883                     }
884                     if (!check)
885                         goto giveup;
886                     DEBUG_r( PerlIO_printf(Perl_debug_log,
887                                 "Looking for %s substr starting at offset %ld...\n",
888                                  what, (long)(s + start_shift - i_strpos)) );
889                     goto restart;
890                 }
891                 /* Have both, check_string is floating */
892                 if (t + start_shift >= check_at) /* Contradicts floating=check */
893                     goto retry_floating_check;
894                 /* Recheck anchored substring, but not floating... */
895                 s = check_at;
896                 if (!check)
897                     goto giveup;
898                 DEBUG_r( PerlIO_printf(Perl_debug_log,
899                           "Looking for anchored substr starting at offset %ld...\n",
900                           (long)(other_last - i_strpos)) );
901                 goto do_other_anchored;
902             }
903             /* Another way we could have checked stclass at the
904                current position only: */
905             if (ml_anch) {
906                 s = t = t + 1;
907                 if (!check)
908                     goto giveup;
909                 DEBUG_r( PerlIO_printf(Perl_debug_log,
910                           "Looking for /%s^%s/m starting at offset %ld...\n",
911                           PL_colors[0],PL_colors[1], (long)(t - i_strpos)) );
912                 goto try_at_offset;
913             }
914             if (!(do_utf8 ? prog->float_utf8 : prog->float_substr))     /* Could have been deleted */
915                 goto fail;
916             /* Check is floating subtring. */
917           retry_floating_check:
918             t = check_at - start_shift;
919             DEBUG_r( what = "floating" );
920             goto hop_and_restart;
921         }
922         if (t != s) {
923             DEBUG_r(PerlIO_printf(Perl_debug_log,
924                         "By STCLASS: moving %ld --> %ld\n",
925                                   (long)(t - i_strpos), (long)(s - i_strpos))
926                    );
927         }
928         else {
929             DEBUG_r(PerlIO_printf(Perl_debug_log,
930                                   "Does not contradict STCLASS...\n"); 
931                    );
932         }
933     }
934   giveup:
935     DEBUG_r(PerlIO_printf(Perl_debug_log, "%s%s:%s match at offset %ld\n",
936                           PL_colors[4], (check ? "Guessed" : "Giving up"),
937                           PL_colors[5], (long)(s - i_strpos)) );
938     return s;
939
940   fail_finish:                          /* Substring not found */
941     if (prog->check_substr || prog->check_utf8)         /* could be removed already */
942         BmUSEFUL(do_utf8 ? prog->check_utf8 : prog->check_substr) += 5; /* hooray */
943   fail:
944     DEBUG_r(PerlIO_printf(Perl_debug_log, "%sMatch rejected by optimizer%s\n",
945                           PL_colors[4],PL_colors[5]));
946     return Nullch;
947 }
948
949 /* We know what class REx starts with.  Try to find this position... */
950 STATIC char *
951 S_find_byclass(pTHX_ regexp * prog, regnode *c, char *s, char *strend, char *startpos, I32 norun)
952 {
953         I32 doevery = (prog->reganch & ROPT_SKIP) == 0;
954         char *m;
955         STRLEN ln;
956         unsigned int c1;
957         unsigned int c2;
958         char *e;
959         register I32 tmp = 1;   /* Scratch variable? */
960         register bool do_utf8 = PL_reg_match_utf8;
961
962         /* We know what class it must start with. */
963         switch (OP(c)) {
964         case ANYOF:
965             if (do_utf8) {
966                  while (s < strend) {
967                       if ((ANYOF_FLAGS(c) & ANYOF_UNICODE) ||
968                           !UTF8_IS_INVARIANT((U8)s[0]) ?
969                           reginclass(c, (U8*)s, 0, do_utf8) :
970                           REGINCLASS(c, (U8*)s)) {
971                            if (tmp && (norun || regtry(prog, s)))
972                                 goto got_it;
973                            else
974                                 tmp = doevery;
975                       }
976                       else 
977                            tmp = 1;
978                       s += UTF8SKIP(s);
979                  }
980             }
981             else {
982                  while (s < strend) {
983                       STRLEN skip = 1;
984
985                       if (REGINCLASS(c, (U8*)s) ||
986                           (ANYOF_FOLD_SHARP_S(c, s, strend) &&
987                            /* The assignment of 2 is intentional:
988                             * for the folded sharp s, the skip is 2. */
989                            (skip = SHARP_S_SKIP))) {
990                            if (tmp && (norun || regtry(prog, s)))
991                                 goto got_it;
992                            else
993                                 tmp = doevery;
994                       }
995                       else 
996                            tmp = 1;
997                       s += skip;
998                  }
999             }
1000             break;
1001         case CANY:
1002             while (s < strend) {
1003                 if (tmp && (norun || regtry(prog, s)))
1004                     goto got_it;
1005                 else
1006                     tmp = doevery;
1007                 s++;
1008             }
1009             break;
1010         case EXACTF:
1011             m = STRING(c);
1012             ln = STR_LEN(c);
1013             if (UTF) {
1014                 STRLEN ulen1, ulen2;
1015                 U8 tmpbuf1[UTF8_MAXLEN_UCLC+1];
1016                 U8 tmpbuf2[UTF8_MAXLEN_UCLC+1];
1017
1018                 to_utf8_lower((U8*)m, tmpbuf1, &ulen1);
1019                 to_utf8_upper((U8*)m, tmpbuf2, &ulen2);
1020
1021                 c1 = utf8n_to_uvchr(tmpbuf1, UTF8_MAXLEN_UCLC, 
1022                                     0, ckWARN(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY);
1023                 c2 = utf8n_to_uvchr(tmpbuf2, UTF8_MAXLEN_UCLC,
1024                                     0, ckWARN(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY);
1025             }
1026             else {
1027                 c1 = *(U8*)m;
1028                 c2 = PL_fold[c1];
1029             }
1030             goto do_exactf;
1031         case EXACTFL:
1032             m = STRING(c);
1033             ln = STR_LEN(c);
1034             c1 = *(U8*)m;
1035             c2 = PL_fold_locale[c1];
1036           do_exactf:
1037             e = HOP3c(strend, -(I32)ln, s);
1038
1039             if (norun && e < s)
1040                 e = s;                  /* Due to minlen logic of intuit() */
1041
1042             /* The idea in the EXACTF* cases is to first find the
1043              * first character of the EXACTF* node and then, if
1044              * necessary, case-insensitively compare the full
1045              * text of the node.  The c1 and c2 are the first
1046              * characters (though in Unicode it gets a bit
1047              * more complicated because there are more cases
1048              * than just upper and lower: one needs to use
1049              * the so-called folding case for case-insensitive
1050              * matching (called "loose matching" in Unicode).
1051              * ibcmp_utf8() will do just that. */
1052
1053             if (do_utf8) {
1054                 UV c, f;
1055                 U8 tmpbuf [UTF8_MAXLEN+1];
1056                 U8 foldbuf[UTF8_MAXLEN_FOLD+1];
1057                 STRLEN len, foldlen;
1058                 
1059                 if (c1 == c2) {
1060                     while (s <= e) {
1061                         c = utf8n_to_uvchr((U8*)s, UTF8_MAXLEN, &len,
1062                                            ckWARN(WARN_UTF8) ?
1063                                            0 : UTF8_ALLOW_ANY);
1064                         if ( c == c1
1065                              && (ln == len ||
1066                                  ibcmp_utf8(s, (char **)0, 0,  do_utf8,
1067                                             m, (char **)0, ln, (bool)UTF))
1068                              && (norun || regtry(prog, s)) )
1069                             goto got_it;
1070                         else {
1071                              uvchr_to_utf8(tmpbuf, c);
1072                              f = to_utf8_fold(tmpbuf, foldbuf, &foldlen);
1073                              if ( f != c
1074                                   && (f == c1 || f == c2)
1075                                   && (ln == foldlen ||
1076                                       !ibcmp_utf8((char *) foldbuf,
1077                                                   (char **)0, foldlen, do_utf8,
1078                                                   m,
1079                                                   (char **)0, ln, (bool)UTF))
1080                                   && (norun || regtry(prog, s)) )
1081                                   goto got_it;
1082                         }
1083                         s += len;
1084                     }
1085                 }
1086                 else {
1087                     while (s <= e) {
1088                       c = utf8n_to_uvchr((U8*)s, UTF8_MAXLEN, &len,
1089                                            ckWARN(WARN_UTF8) ?
1090                                            0 : UTF8_ALLOW_ANY);
1091
1092                         /* Handle some of the three Greek sigmas cases.
1093                          * Note that not all the possible combinations
1094                          * are handled here: some of them are handled
1095                          * by the standard folding rules, and some of
1096                          * them (the character class or ANYOF cases)
1097                          * are handled during compiletime in
1098                          * regexec.c:S_regclass(). */
1099                         if (c == (UV)UNICODE_GREEK_CAPITAL_LETTER_SIGMA ||
1100                             c == (UV)UNICODE_GREEK_SMALL_LETTER_FINAL_SIGMA)
1101                             c = (UV)UNICODE_GREEK_SMALL_LETTER_SIGMA;
1102
1103                         if ( (c == c1 || c == c2)
1104                              && (ln == len ||
1105                                  ibcmp_utf8(s, (char **)0, 0,  do_utf8,
1106                                             m, (char **)0, ln, (bool)UTF))
1107                              && (norun || regtry(prog, s)) )
1108                             goto got_it;
1109                         else {
1110                              uvchr_to_utf8(tmpbuf, c);
1111                              f = to_utf8_fold(tmpbuf, foldbuf, &foldlen);
1112                              if ( f != c
1113                                   && (f == c1 || f == c2)
1114                                   && (ln == foldlen ||
1115                                       !ibcmp_utf8((char *) foldbuf,
1116                                                   (char **)0, foldlen, do_utf8,
1117                                                   m,
1118                                                   (char **)0, ln, (bool)UTF))
1119                                   && (norun || regtry(prog, s)) )
1120                                   goto got_it;
1121                         }
1122                         s += len;
1123                     }
1124                 }
1125             }
1126             else {
1127                 if (c1 == c2)
1128                     while (s <= e) {
1129                         if ( *(U8*)s == c1
1130                              && (ln == 1 || !(OP(c) == EXACTF
1131                                               ? ibcmp(s, m, ln)
1132                                               : ibcmp_locale(s, m, ln)))
1133                              && (norun || regtry(prog, s)) )
1134                             goto got_it;
1135                         s++;
1136                     }
1137                 else
1138                     while (s <= e) {
1139                         if ( (*(U8*)s == c1 || *(U8*)s == c2)
1140                              && (ln == 1 || !(OP(c) == EXACTF
1141                                               ? ibcmp(s, m, ln)
1142                                               : ibcmp_locale(s, m, ln)))
1143                              && (norun || regtry(prog, s)) )
1144                             goto got_it;
1145                         s++;
1146                     }
1147             }
1148             break;
1149         case BOUNDL:
1150             PL_reg_flags |= RF_tainted;
1151             /* FALL THROUGH */
1152         case BOUND:
1153             if (do_utf8) {
1154                 if (s == PL_bostr)
1155                     tmp = '\n';
1156                 else {
1157                     U8 *r = reghop3((U8*)s, -1, (U8*)PL_bostr);
1158                 
1159                     tmp = utf8n_to_uvchr(r, UTF8SKIP(r), 0, 0);
1160                 }
1161                 tmp = ((OP(c) == BOUND ?
1162                         isALNUM_uni(tmp) : isALNUM_LC_uvchr(UNI_TO_NATIVE(tmp))) != 0);
1163                 LOAD_UTF8_CHARCLASS(alnum,"a");
1164                 while (s < strend) {
1165                     if (tmp == !(OP(c) == BOUND ?
1166                                  swash_fetch(PL_utf8_alnum, (U8*)s, do_utf8) :
1167                                  isALNUM_LC_utf8((U8*)s)))
1168                     {
1169                         tmp = !tmp;
1170                         if ((norun || regtry(prog, s)))
1171                             goto got_it;
1172                     }
1173                     s += UTF8SKIP(s);
1174                 }
1175             }
1176             else {
1177                 tmp = (s != PL_bostr) ? UCHARAT(s - 1) : '\n';
1178                 tmp = ((OP(c) == BOUND ? isALNUM(tmp) : isALNUM_LC(tmp)) != 0);
1179                 while (s < strend) {
1180                     if (tmp ==
1181                         !(OP(c) == BOUND ? isALNUM(*s) : isALNUM_LC(*s))) {
1182                         tmp = !tmp;
1183                         if ((norun || regtry(prog, s)))
1184                             goto got_it;
1185                     }
1186                     s++;
1187                 }
1188             }
1189             if ((!prog->minlen && tmp) && (norun || regtry(prog, s)))
1190                 goto got_it;
1191             break;
1192         case NBOUNDL:
1193             PL_reg_flags |= RF_tainted;
1194             /* FALL THROUGH */
1195         case NBOUND:
1196             if (do_utf8) {
1197                 if (s == PL_bostr)
1198                     tmp = '\n';
1199                 else {
1200                     U8 *r = reghop3((U8*)s, -1, (U8*)PL_bostr);
1201                 
1202                     tmp = utf8n_to_uvchr(r, UTF8SKIP(r), 0, 0);
1203                 }
1204                 tmp = ((OP(c) == NBOUND ?
1205                         isALNUM_uni(tmp) : isALNUM_LC_uvchr(UNI_TO_NATIVE(tmp))) != 0);
1206                 LOAD_UTF8_CHARCLASS(alnum,"a");
1207                 while (s < strend) {
1208                     if (tmp == !(OP(c) == NBOUND ?
1209                                  swash_fetch(PL_utf8_alnum, (U8*)s, do_utf8) :
1210                                  isALNUM_LC_utf8((U8*)s)))
1211                         tmp = !tmp;
1212                     else if ((norun || regtry(prog, s)))
1213                         goto got_it;
1214                     s += UTF8SKIP(s);
1215                 }
1216             }
1217             else {
1218                 tmp = (s != PL_bostr) ? UCHARAT(s - 1) : '\n';
1219                 tmp = ((OP(c) == NBOUND ?
1220                         isALNUM(tmp) : isALNUM_LC(tmp)) != 0);
1221                 while (s < strend) {
1222                     if (tmp ==
1223                         !(OP(c) == NBOUND ? isALNUM(*s) : isALNUM_LC(*s)))
1224                         tmp = !tmp;
1225                     else if ((norun || regtry(prog, s)))
1226                         goto got_it;
1227                     s++;
1228                 }
1229             }
1230             if ((!prog->minlen && !tmp) && (norun || regtry(prog, s)))
1231                 goto got_it;
1232             break;
1233         case ALNUM:
1234             if (do_utf8) {
1235                 LOAD_UTF8_CHARCLASS(alnum,"a");
1236                 while (s < strend) {
1237                     if (swash_fetch(PL_utf8_alnum, (U8*)s, do_utf8)) {
1238                         if (tmp && (norun || regtry(prog, s)))
1239                             goto got_it;
1240                         else
1241                             tmp = doevery;
1242                     }
1243                     else
1244                         tmp = 1;
1245                     s += UTF8SKIP(s);
1246                 }
1247             }
1248             else {
1249                 while (s < strend) {
1250                     if (isALNUM(*s)) {
1251                         if (tmp && (norun || regtry(prog, s)))
1252                             goto got_it;
1253                         else
1254                             tmp = doevery;
1255                     }
1256                     else
1257                         tmp = 1;
1258                     s++;
1259                 }
1260             }
1261             break;
1262         case ALNUML:
1263             PL_reg_flags |= RF_tainted;
1264             if (do_utf8) {
1265                 while (s < strend) {
1266                     if (isALNUM_LC_utf8((U8*)s)) {
1267                         if (tmp && (norun || regtry(prog, s)))
1268                             goto got_it;
1269                         else
1270                             tmp = doevery;
1271                     }
1272                     else
1273                         tmp = 1;
1274                     s += UTF8SKIP(s);
1275                 }
1276             }
1277             else {
1278                 while (s < strend) {
1279                     if (isALNUM_LC(*s)) {
1280                         if (tmp && (norun || regtry(prog, s)))
1281                             goto got_it;
1282                         else
1283                             tmp = doevery;
1284                     }
1285                     else
1286                         tmp = 1;
1287                     s++;
1288                 }
1289             }
1290             break;
1291         case NALNUM:
1292             if (do_utf8) {
1293                 LOAD_UTF8_CHARCLASS(alnum,"a");
1294                 while (s < strend) {
1295                     if (!swash_fetch(PL_utf8_alnum, (U8*)s, do_utf8)) {
1296                         if (tmp && (norun || regtry(prog, s)))
1297                             goto got_it;
1298                         else
1299                             tmp = doevery;
1300                     }
1301                     else
1302                         tmp = 1;
1303                     s += UTF8SKIP(s);
1304                 }
1305             }
1306             else {
1307                 while (s < strend) {
1308                     if (!isALNUM(*s)) {
1309                         if (tmp && (norun || regtry(prog, s)))
1310                             goto got_it;
1311                         else
1312                             tmp = doevery;
1313                     }
1314                     else
1315                         tmp = 1;
1316                     s++;
1317                 }
1318             }
1319             break;
1320         case NALNUML:
1321             PL_reg_flags |= RF_tainted;
1322             if (do_utf8) {
1323                 while (s < strend) {
1324                     if (!isALNUM_LC_utf8((U8*)s)) {
1325                         if (tmp && (norun || regtry(prog, s)))
1326                             goto got_it;
1327                         else
1328                             tmp = doevery;
1329                     }
1330                     else
1331                         tmp = 1;
1332                     s += UTF8SKIP(s);
1333                 }
1334             }
1335             else {
1336                 while (s < strend) {
1337                     if (!isALNUM_LC(*s)) {
1338                         if (tmp && (norun || regtry(prog, s)))
1339                             goto got_it;
1340                         else
1341                             tmp = doevery;
1342                     }
1343                     else
1344                         tmp = 1;
1345                     s++;
1346                 }
1347             }
1348             break;
1349         case SPACE:
1350             if (do_utf8) {
1351                 LOAD_UTF8_CHARCLASS(space," ");
1352                 while (s < strend) {
1353                     if (*s == ' ' || swash_fetch(PL_utf8_space,(U8*)s, do_utf8)) {
1354                         if (tmp && (norun || regtry(prog, s)))
1355                             goto got_it;
1356                         else
1357                             tmp = doevery;
1358                     }
1359                     else
1360                         tmp = 1;
1361                     s += UTF8SKIP(s);
1362                 }
1363             }
1364             else {
1365                 while (s < strend) {
1366                     if (isSPACE(*s)) {
1367                         if (tmp && (norun || regtry(prog, s)))
1368                             goto got_it;
1369                         else
1370                             tmp = doevery;
1371                     }
1372                     else
1373                         tmp = 1;
1374                     s++;
1375                 }
1376             }
1377             break;
1378         case SPACEL:
1379             PL_reg_flags |= RF_tainted;
1380             if (do_utf8) {
1381                 while (s < strend) {
1382                     if (*s == ' ' || isSPACE_LC_utf8((U8*)s)) {
1383                         if (tmp && (norun || regtry(prog, s)))
1384                             goto got_it;
1385                         else
1386                             tmp = doevery;
1387                     }
1388                     else
1389                         tmp = 1;
1390                     s += UTF8SKIP(s);
1391                 }
1392             }
1393             else {
1394                 while (s < strend) {
1395                     if (isSPACE_LC(*s)) {
1396                         if (tmp && (norun || regtry(prog, s)))
1397                             goto got_it;
1398                         else
1399                             tmp = doevery;
1400                     }
1401                     else
1402                         tmp = 1;
1403                     s++;
1404                 }
1405             }
1406             break;
1407         case NSPACE:
1408             if (do_utf8) {
1409                 LOAD_UTF8_CHARCLASS(space," ");
1410                 while (s < strend) {
1411                     if (!(*s == ' ' || swash_fetch(PL_utf8_space,(U8*)s, do_utf8))) {
1412                         if (tmp && (norun || regtry(prog, s)))
1413                             goto got_it;
1414                         else
1415                             tmp = doevery;
1416                     }
1417                     else
1418                         tmp = 1;
1419                     s += UTF8SKIP(s);
1420                 }
1421             }
1422             else {
1423                 while (s < strend) {
1424                     if (!isSPACE(*s)) {
1425                         if (tmp && (norun || regtry(prog, s)))
1426                             goto got_it;
1427                         else
1428                             tmp = doevery;
1429                     }
1430                     else
1431                         tmp = 1;
1432                     s++;
1433                 }
1434             }
1435             break;
1436         case NSPACEL:
1437             PL_reg_flags |= RF_tainted;
1438             if (do_utf8) {
1439                 while (s < strend) {
1440                     if (!(*s == ' ' || isSPACE_LC_utf8((U8*)s))) {
1441                         if (tmp && (norun || regtry(prog, s)))
1442                             goto got_it;
1443                         else
1444                             tmp = doevery;
1445                     }
1446                     else
1447                         tmp = 1;
1448                     s += UTF8SKIP(s);
1449                 }
1450             }
1451             else {
1452                 while (s < strend) {
1453                     if (!isSPACE_LC(*s)) {
1454                         if (tmp && (norun || regtry(prog, s)))
1455                             goto got_it;
1456                         else
1457                             tmp = doevery;
1458                     }
1459                     else
1460                         tmp = 1;
1461                     s++;
1462                 }
1463             }
1464             break;
1465         case DIGIT:
1466             if (do_utf8) {
1467                 LOAD_UTF8_CHARCLASS(digit,"0");
1468                 while (s < strend) {
1469                     if (swash_fetch(PL_utf8_digit,(U8*)s, do_utf8)) {
1470                         if (tmp && (norun || regtry(prog, s)))
1471                             goto got_it;
1472                         else
1473                             tmp = doevery;
1474                     }
1475                     else
1476                         tmp = 1;
1477                     s += UTF8SKIP(s);
1478                 }
1479             }
1480             else {
1481                 while (s < strend) {
1482                     if (isDIGIT(*s)) {
1483                         if (tmp && (norun || regtry(prog, s)))
1484                             goto got_it;
1485                         else
1486                             tmp = doevery;
1487                     }
1488                     else
1489                         tmp = 1;
1490                     s++;
1491                 }
1492             }
1493             break;
1494         case DIGITL:
1495             PL_reg_flags |= RF_tainted;
1496             if (do_utf8) {
1497                 while (s < strend) {
1498                     if (isDIGIT_LC_utf8((U8*)s)) {
1499                         if (tmp && (norun || regtry(prog, s)))
1500                             goto got_it;
1501                         else
1502                             tmp = doevery;
1503                     }
1504                     else
1505                         tmp = 1;
1506                     s += UTF8SKIP(s);
1507                 }
1508             }
1509             else {
1510                 while (s < strend) {
1511                     if (isDIGIT_LC(*s)) {
1512                         if (tmp && (norun || regtry(prog, s)))
1513                             goto got_it;
1514                         else
1515                             tmp = doevery;
1516                     }
1517                     else
1518                         tmp = 1;
1519                     s++;
1520                 }
1521             }
1522             break;
1523         case NDIGIT:
1524             if (do_utf8) {
1525                 LOAD_UTF8_CHARCLASS(digit,"0");
1526                 while (s < strend) {
1527                     if (!swash_fetch(PL_utf8_digit,(U8*)s, do_utf8)) {
1528                         if (tmp && (norun || regtry(prog, s)))
1529                             goto got_it;
1530                         else
1531                             tmp = doevery;
1532                     }
1533                     else
1534                         tmp = 1;
1535                     s += UTF8SKIP(s);
1536                 }
1537             }
1538             else {
1539                 while (s < strend) {
1540                     if (!isDIGIT(*s)) {
1541                         if (tmp && (norun || regtry(prog, s)))
1542                             goto got_it;
1543                         else
1544                             tmp = doevery;
1545                     }
1546                     else
1547                         tmp = 1;
1548                     s++;
1549                 }
1550             }
1551             break;
1552         case NDIGITL:
1553             PL_reg_flags |= RF_tainted;
1554             if (do_utf8) {
1555                 while (s < strend) {
1556                     if (!isDIGIT_LC_utf8((U8*)s)) {
1557                         if (tmp && (norun || regtry(prog, s)))
1558                             goto got_it;
1559                         else
1560                             tmp = doevery;
1561                     }
1562                     else
1563                         tmp = 1;
1564                     s += UTF8SKIP(s);
1565                 }
1566             }
1567             else {
1568                 while (s < strend) {
1569                     if (!isDIGIT_LC(*s)) {
1570                         if (tmp && (norun || regtry(prog, s)))
1571                             goto got_it;
1572                         else
1573                             tmp = doevery;
1574                     }
1575                     else
1576                         tmp = 1;
1577                     s++;
1578                 }
1579             }
1580             break;
1581         default:
1582             Perl_croak(aTHX_ "panic: unknown regstclass %d", (int)OP(c));
1583             break;
1584         }
1585         return 0;
1586       got_it:
1587         return s;
1588 }
1589
1590 /*
1591  - regexec_flags - match a regexp against a string
1592  */
1593 I32
1594 Perl_regexec_flags(pTHX_ register regexp *prog, char *stringarg, register char *strend,
1595               char *strbeg, I32 minend, SV *sv, void *data, U32 flags)
1596 /* strend: pointer to null at end of string */
1597 /* strbeg: real beginning of string */
1598 /* minend: end of match must be >=minend after stringarg. */
1599 /* data: May be used for some additional optimizations. */
1600 /* nosave: For optimizations. */
1601 {
1602     register char *s;
1603     register regnode *c;
1604     register char *startpos = stringarg;
1605     I32 minlen;         /* must match at least this many chars */
1606     I32 dontbother = 0; /* how many characters not to try at end */
1607     /* I32 start_shift = 0; */          /* Offset of the start to find
1608                                          constant substr. */            /* CC */
1609     I32 end_shift = 0;                  /* Same for the end. */         /* CC */
1610     I32 scream_pos = -1;                /* Internal iterator of scream. */
1611     char *scream_olds;
1612     SV* oreplsv = GvSV(PL_replgv);
1613     bool do_utf8 = DO_UTF8(sv);
1614 #ifdef DEBUGGING
1615     SV *dsv0 = PERL_DEBUG_PAD_ZERO(0);
1616     SV *dsv1 = PERL_DEBUG_PAD_ZERO(1);
1617 #endif
1618     RX_MATCH_UTF8_set(prog,do_utf8);
1619
1620     PL_regcc = 0;
1621
1622     cache_re(prog);
1623 #ifdef DEBUGGING
1624     PL_regnarrate = DEBUG_r_TEST;
1625 #endif
1626
1627     /* Be paranoid... */
1628     if (prog == NULL || startpos == NULL) {
1629         Perl_croak(aTHX_ "NULL regexp parameter");
1630         return 0;
1631     }
1632
1633     minlen = prog->minlen;
1634     if (strend - startpos < minlen) {
1635         DEBUG_r(PerlIO_printf(Perl_debug_log,
1636                               "String too short [regexec_flags]...\n"));
1637         goto phooey;
1638     }
1639
1640     /* Check validity of program. */
1641     if (UCHARAT(prog->program) != REG_MAGIC) {
1642         Perl_croak(aTHX_ "corrupted regexp program");
1643     }
1644
1645     PL_reg_flags = 0;
1646     PL_reg_eval_set = 0;
1647     PL_reg_maxiter = 0;
1648
1649     if (prog->reganch & ROPT_UTF8)
1650         PL_reg_flags |= RF_utf8;
1651
1652     /* Mark beginning of line for ^ and lookbehind. */
1653     PL_regbol = startpos;
1654     PL_bostr  = strbeg;
1655     PL_reg_sv = sv;
1656
1657     /* Mark end of line for $ (and such) */
1658     PL_regeol = strend;
1659
1660     /* see how far we have to get to not match where we matched before */
1661     PL_regtill = startpos+minend;
1662
1663     /* We start without call_cc context.  */
1664     PL_reg_call_cc = 0;
1665
1666     /* If there is a "must appear" string, look for it. */
1667     s = startpos;
1668
1669     if (prog->reganch & ROPT_GPOS_SEEN) { /* Need to have PL_reg_ganch */
1670         MAGIC *mg;
1671
1672         if (flags & REXEC_IGNOREPOS)    /* Means: check only at start */
1673             PL_reg_ganch = startpos;
1674         else if (sv && SvTYPE(sv) >= SVt_PVMG
1675                   && SvMAGIC(sv)
1676                   && (mg = mg_find(sv, PERL_MAGIC_regex_global))
1677                   && mg->mg_len >= 0) {
1678             PL_reg_ganch = strbeg + mg->mg_len; /* Defined pos() */
1679             if (prog->reganch & ROPT_ANCH_GPOS) {
1680                 if (s > PL_reg_ganch)
1681                     goto phooey;
1682                 s = PL_reg_ganch;
1683             }
1684         }
1685         else                            /* pos() not defined */
1686             PL_reg_ganch = strbeg;
1687     }
1688
1689     if (!(flags & REXEC_CHECKED) && (prog->check_substr != Nullsv || prog->check_utf8 != Nullsv)) {
1690         re_scream_pos_data d;
1691
1692         d.scream_olds = &scream_olds;
1693         d.scream_pos = &scream_pos;
1694         s = re_intuit_start(prog, sv, s, strend, flags, &d);
1695         if (!s) {
1696             DEBUG_r(PerlIO_printf(Perl_debug_log, "Not present...\n"));
1697             goto phooey;        /* not present */
1698         }
1699     }
1700
1701     DEBUG_r({
1702          char *s0   = UTF ?
1703            pv_uni_display(dsv0, (U8*)prog->precomp, prog->prelen, 60,
1704                           UNI_DISPLAY_REGEX) :
1705            prog->precomp;
1706          int   len0 = UTF ? SvCUR(dsv0) : prog->prelen;
1707          char *s1   = do_utf8 ? sv_uni_display(dsv1, sv, 60,
1708                                                UNI_DISPLAY_REGEX) : startpos;
1709          int   len1 = do_utf8 ? SvCUR(dsv1) : strend - startpos;
1710          if (!PL_colorset)
1711              reginitcolors();
1712          PerlIO_printf(Perl_debug_log,
1713                        "%sMatching REx%s `%s%*.*s%s%s' against `%s%.*s%s%s'\n",
1714                        PL_colors[4],PL_colors[5],PL_colors[0],
1715                        len0, len0, s0,
1716                        PL_colors[1],
1717                        len0 > 60 ? "..." : "",
1718                        PL_colors[0],
1719                        (int)(len1 > 60 ? 60 : len1),
1720                        s1, PL_colors[1],
1721                        (len1 > 60 ? "..." : "")
1722               );
1723     });
1724
1725     /* Simplest case:  anchored match need be tried only once. */
1726     /*  [unless only anchor is BOL and multiline is set] */
1727     if (prog->reganch & (ROPT_ANCH & ~ROPT_ANCH_GPOS)) {
1728         if (s == startpos && regtry(prog, startpos))
1729             goto got_it;
1730         else if (PL_multiline || (prog->reganch & ROPT_IMPLICIT)
1731                  || (prog->reganch & ROPT_ANCH_MBOL)) /* XXXX SBOL? */
1732         {
1733             char *end;
1734
1735             if (minlen)
1736                 dontbother = minlen - 1;
1737             end = HOP3c(strend, -dontbother, strbeg) - 1;
1738             /* for multiline we only have to try after newlines */
1739             if (prog->check_substr || prog->check_utf8) {
1740                 if (s == startpos)
1741                     goto after_try;
1742                 while (1) {
1743                     if (regtry(prog, s))
1744                         goto got_it;
1745                   after_try:
1746                     if (s >= end)
1747                         goto phooey;
1748                     if (prog->reganch & RE_USE_INTUIT) {
1749                         s = re_intuit_start(prog, sv, s + 1, strend, flags, NULL);
1750                         if (!s)
1751                             goto phooey;
1752                     }
1753                     else
1754                         s++;
1755                 }               
1756             } else {
1757                 if (s > startpos)
1758                     s--;
1759                 while (s < end) {
1760                     if (*s++ == '\n') { /* don't need PL_utf8skip here */
1761                         if (regtry(prog, s))
1762                             goto got_it;
1763                     }
1764                 }               
1765             }
1766         }
1767         goto phooey;
1768     } else if (prog->reganch & ROPT_ANCH_GPOS) {
1769         if (regtry(prog, PL_reg_ganch))
1770             goto got_it;
1771         goto phooey;
1772     }
1773
1774     /* Messy cases:  unanchored match. */
1775     if ((prog->anchored_substr || prog->anchored_utf8) && prog->reganch & ROPT_SKIP) {
1776         /* we have /x+whatever/ */
1777         /* it must be a one character string (XXXX Except UTF?) */
1778         char ch;
1779 #ifdef DEBUGGING
1780         int did_match = 0;
1781 #endif
1782         if (!(do_utf8 ? prog->anchored_utf8 : prog->anchored_substr))
1783             do_utf8 ? to_utf8_substr(prog) : to_byte_substr(prog);
1784         ch = SvPVX(do_utf8 ? prog->anchored_utf8 : prog->anchored_substr)[0];
1785
1786         if (do_utf8) {
1787             while (s < strend) {
1788                 if (*s == ch) {
1789                     DEBUG_r( did_match = 1 );
1790                     if (regtry(prog, s)) goto got_it;
1791                     s += UTF8SKIP(s);
1792                     while (s < strend && *s == ch)
1793                         s += UTF8SKIP(s);
1794                 }
1795                 s += UTF8SKIP(s);
1796             }
1797         }
1798         else {
1799             while (s < strend) {
1800                 if (*s == ch) {
1801                     DEBUG_r( did_match = 1 );
1802                     if (regtry(prog, s)) goto got_it;
1803                     s++;
1804                     while (s < strend && *s == ch)
1805                         s++;
1806                 }
1807                 s++;
1808             }
1809         }
1810         DEBUG_r(if (!did_match)
1811                 PerlIO_printf(Perl_debug_log,
1812                                   "Did not find anchored character...\n")
1813                );
1814     }
1815     /*SUPPRESS 560*/
1816     else if (prog->anchored_substr != Nullsv
1817               || prog->anchored_utf8 != Nullsv
1818               || ((prog->float_substr != Nullsv || prog->float_utf8 != Nullsv)
1819                   && prog->float_max_offset < strend - s)) {
1820         SV *must;
1821         I32 back_max;
1822         I32 back_min;
1823         char *last;
1824         char *last1;            /* Last position checked before */
1825 #ifdef DEBUGGING
1826         int did_match = 0;
1827 #endif
1828         if (prog->anchored_substr || prog->anchored_utf8) {
1829             if (!(do_utf8 ? prog->anchored_utf8 : prog->anchored_substr))
1830                 do_utf8 ? to_utf8_substr(prog) : to_byte_substr(prog);
1831             must = do_utf8 ? prog->anchored_utf8 : prog->anchored_substr;
1832             back_max = back_min = prog->anchored_offset;
1833         } else {
1834             if (!(do_utf8 ? prog->float_utf8 : prog->float_substr))
1835                 do_utf8 ? to_utf8_substr(prog) : to_byte_substr(prog);
1836             must = do_utf8 ? prog->float_utf8 : prog->float_substr;
1837             back_max = prog->float_max_offset;
1838             back_min = prog->float_min_offset;
1839         }
1840         if (must == &PL_sv_undef)
1841             /* could not downgrade utf8 check substring, so must fail */
1842             goto phooey;
1843
1844         last = HOP3c(strend,    /* Cannot start after this */
1845                           -(I32)(CHR_SVLEN(must)
1846                                  - (SvTAIL(must) != 0) + back_min), strbeg);
1847
1848         if (s > PL_bostr)
1849             last1 = HOPc(s, -1);
1850         else
1851             last1 = s - 1;      /* bogus */
1852
1853         /* XXXX check_substr already used to find `s', can optimize if
1854            check_substr==must. */
1855         scream_pos = -1;
1856         dontbother = end_shift;
1857         strend = HOPc(strend, -dontbother);
1858         while ( (s <= last) &&
1859                 ((flags & REXEC_SCREAM)
1860                  ? (s = screaminstr(sv, must, HOP3c(s, back_min, strend) - strbeg,
1861                                     end_shift, &scream_pos, 0))
1862                  : (s = fbm_instr((unsigned char*)HOP3(s, back_min, strend),
1863                                   (unsigned char*)strend, must,
1864                                   PL_multiline ? FBMrf_MULTILINE : 0))) ) {
1865             /* we may be pointing at the wrong string */
1866             if ((flags & REXEC_SCREAM) && RX_MATCH_COPIED(prog))
1867                 s = strbeg + (s - SvPVX(sv));
1868             DEBUG_r( did_match = 1 );
1869             if (HOPc(s, -back_max) > last1) {
1870                 last1 = HOPc(s, -back_min);
1871                 s = HOPc(s, -back_max);
1872             }
1873             else {
1874                 char *t = (last1 >= PL_bostr) ? HOPc(last1, 1) : last1 + 1;
1875
1876                 last1 = HOPc(s, -back_min);
1877                 s = t;          
1878             }
1879             if (do_utf8) {
1880                 while (s <= last1) {
1881                     if (regtry(prog, s))
1882                         goto got_it;
1883                     s += UTF8SKIP(s);
1884                 }
1885             }
1886             else {
1887                 while (s <= last1) {
1888                     if (regtry(prog, s))
1889                         goto got_it;
1890                     s++;
1891                 }
1892             }
1893         }
1894         DEBUG_r(if (!did_match)
1895                     PerlIO_printf(Perl_debug_log, 
1896                                   "Did not find %s substr `%s%.*s%s'%s...\n",
1897                               ((must == prog->anchored_substr || must == prog->anchored_utf8)
1898                                ? "anchored" : "floating"),
1899                               PL_colors[0],
1900                               (int)(SvCUR(must) - (SvTAIL(must)!=0)),
1901                               SvPVX(must),
1902                                   PL_colors[1], (SvTAIL(must) ? "$" : ""))
1903                );
1904         goto phooey;
1905     }
1906     else if ((c = prog->regstclass)) {
1907         if (minlen) {
1908             I32 op = (U8)OP(prog->regstclass);
1909             /* don't bother with what can't match */
1910             if (PL_regkind[op] != EXACT && op != CANY)
1911                 strend = HOPc(strend, -(minlen - 1));
1912         }
1913         DEBUG_r({
1914             SV *prop = sv_newmortal();
1915             char *s0;
1916             char *s1;
1917             int len0;
1918             int len1;
1919
1920             regprop(prop, c);
1921             s0 = UTF ?
1922               pv_uni_display(dsv0, (U8*)SvPVX(prop), SvCUR(prop), 60,
1923                              UNI_DISPLAY_REGEX) :
1924               SvPVX(prop);
1925             len0 = UTF ? SvCUR(dsv0) : SvCUR(prop);
1926             s1 = UTF ?
1927               sv_uni_display(dsv1, sv, 60, UNI_DISPLAY_REGEX) : s;
1928             len1 = UTF ? SvCUR(dsv1) : strend - s;
1929             PerlIO_printf(Perl_debug_log,
1930                           "Matching stclass `%*.*s' against `%*.*s'\n",
1931                           len0, len0, s0,
1932                           len1, len1, s1);
1933         });
1934         if (find_byclass(prog, c, s, strend, startpos, 0))
1935             goto got_it;
1936         DEBUG_r(PerlIO_printf(Perl_debug_log, "Contradicts stclass...\n"));
1937     }
1938     else {
1939         dontbother = 0;
1940         if (prog->float_substr != Nullsv || prog->float_utf8 != Nullsv) {
1941             /* Trim the end. */
1942             char *last;
1943             SV* float_real;
1944
1945             if (!(do_utf8 ? prog->float_utf8 : prog->float_substr))
1946                 do_utf8 ? to_utf8_substr(prog) : to_byte_substr(prog);
1947             float_real = do_utf8 ? prog->float_utf8 : prog->float_substr;
1948
1949             if (flags & REXEC_SCREAM) {
1950                 last = screaminstr(sv, float_real, s - strbeg,
1951                                    end_shift, &scream_pos, 1); /* last one */
1952                 if (!last)
1953                     last = scream_olds; /* Only one occurrence. */
1954                 /* we may be pointing at the wrong string */
1955                 else if (RX_MATCH_COPIED(prog))
1956                     s = strbeg + (s - SvPVX(sv));
1957             }
1958             else {
1959                 STRLEN len;
1960                 char *little = SvPV(float_real, len);
1961
1962                 if (SvTAIL(float_real)) {
1963                     if (memEQ(strend - len + 1, little, len - 1))
1964                         last = strend - len + 1;
1965                     else if (!PL_multiline)
1966                         last = memEQ(strend - len, little, len)
1967                             ? strend - len : Nullch;
1968                     else
1969                         goto find_last;
1970                 } else {
1971                   find_last:
1972                     if (len)
1973                         last = rninstr(s, strend, little, little + len);
1974                     else
1975                         last = strend;  /* matching `$' */
1976                 }
1977             }
1978             if (last == NULL) {
1979                 DEBUG_r(PerlIO_printf(Perl_debug_log,
1980                                       "%sCan't trim the tail, match fails (should not happen)%s\n",
1981                                       PL_colors[4],PL_colors[5]));
1982                 goto phooey; /* Should not happen! */
1983             }
1984             dontbother = strend - last + prog->float_min_offset;
1985         }
1986         if (minlen && (dontbother < minlen))
1987             dontbother = minlen - 1;
1988         strend -= dontbother;              /* this one's always in bytes! */
1989         /* We don't know much -- general case. */
1990         if (do_utf8) {
1991             for (;;) {
1992                 if (regtry(prog, s))
1993                     goto got_it;
1994                 if (s >= strend)
1995                     break;
1996                 s += UTF8SKIP(s);
1997             };
1998         }
1999         else {
2000             do {
2001                 if (regtry(prog, s))
2002                     goto got_it;
2003             } while (s++ < strend);
2004         }
2005     }
2006
2007     /* Failure. */
2008     goto phooey;
2009
2010 got_it:
2011     RX_MATCH_TAINTED_set(prog, PL_reg_flags & RF_tainted);
2012
2013     if (PL_reg_eval_set) {
2014         /* Preserve the current value of $^R */
2015         if (oreplsv != GvSV(PL_replgv))
2016             sv_setsv(oreplsv, GvSV(PL_replgv));/* So that when GvSV(replgv) is
2017                                                   restored, the value remains
2018                                                   the same. */
2019         restore_pos(aTHX_ 0);
2020     }
2021
2022     /* make sure $`, $&, $', and $digit will work later */
2023     if ( !(flags & REXEC_NOT_FIRST) ) {
2024         if (RX_MATCH_COPIED(prog)) {
2025             Safefree(prog->subbeg);
2026             RX_MATCH_COPIED_off(prog);
2027         }
2028         if (flags & REXEC_COPY_STR) {
2029             I32 i = PL_regeol - startpos + (stringarg - strbeg);
2030
2031             s = savepvn(strbeg, i);
2032             prog->subbeg = s;
2033             prog->sublen = i;
2034             RX_MATCH_COPIED_on(prog);
2035         }
2036         else {
2037             prog->subbeg = strbeg;
2038             prog->sublen = PL_regeol - strbeg;  /* strend may have been modified */
2039         }
2040     }
2041
2042     return 1;
2043
2044 phooey:
2045     DEBUG_r(PerlIO_printf(Perl_debug_log, "%sMatch failed%s\n",
2046                           PL_colors[4],PL_colors[5]));
2047     if (PL_reg_eval_set)
2048         restore_pos(aTHX_ 0);
2049     return 0;
2050 }
2051
2052 /*
2053  - regtry - try match at specific point
2054  */
2055 STATIC I32                      /* 0 failure, 1 success */
2056 S_regtry(pTHX_ regexp *prog, char *startpos)
2057 {
2058     register I32 i;
2059     register I32 *sp;
2060     register I32 *ep;
2061     CHECKPOINT lastcp;
2062
2063 #ifdef DEBUGGING
2064     PL_regindent = 0;   /* XXXX Not good when matches are reenterable... */
2065 #endif
2066     if ((prog->reganch & ROPT_EVAL_SEEN) && !PL_reg_eval_set) {
2067         MAGIC *mg;
2068
2069         PL_reg_eval_set = RS_init;
2070         DEBUG_r(DEBUG_s(
2071             PerlIO_printf(Perl_debug_log, "  setting stack tmpbase at %"IVdf"\n",
2072                           (IV)(PL_stack_sp - PL_stack_base));
2073             ));
2074         SAVEI32(cxstack[cxstack_ix].blk_oldsp);
2075         cxstack[cxstack_ix].blk_oldsp = PL_stack_sp - PL_stack_base;
2076         /* Otherwise OP_NEXTSTATE will free whatever on stack now.  */
2077         SAVETMPS;
2078         /* Apparently this is not needed, judging by wantarray. */
2079         /* SAVEI8(cxstack[cxstack_ix].blk_gimme);
2080            cxstack[cxstack_ix].blk_gimme = G_SCALAR; */
2081
2082         if (PL_reg_sv) {
2083             /* Make $_ available to executed code. */
2084             if (PL_reg_sv != DEFSV) {
2085                 /* SAVE_DEFSV does *not* suffice here for USE_5005THREADS */
2086                 SAVESPTR(DEFSV);
2087                 DEFSV = PL_reg_sv;
2088             }
2089         
2090             if (!(SvTYPE(PL_reg_sv) >= SVt_PVMG && SvMAGIC(PL_reg_sv)
2091                   && (mg = mg_find(PL_reg_sv, PERL_MAGIC_regex_global)))) {
2092                 /* prepare for quick setting of pos */
2093                 sv_magic(PL_reg_sv, (SV*)0,
2094                         PERL_MAGIC_regex_global, Nullch, 0);
2095                 mg = mg_find(PL_reg_sv, PERL_MAGIC_regex_global);
2096                 mg->mg_len = -1;
2097             }
2098             PL_reg_magic    = mg;
2099             PL_reg_oldpos   = mg->mg_len;
2100             SAVEDESTRUCTOR_X(restore_pos, 0);
2101         }
2102         if (!PL_reg_curpm) {
2103             Newz(22,PL_reg_curpm, 1, PMOP);
2104 #ifdef USE_ITHREADS
2105             {
2106                 SV* repointer = newSViv(0);
2107                 /* so we know which PL_regex_padav element is PL_reg_curpm */
2108                 SvFLAGS(repointer) |= SVf_BREAK;
2109                 av_push(PL_regex_padav,repointer);
2110                 PL_reg_curpm->op_pmoffset = av_len(PL_regex_padav);
2111                 PL_regex_pad = AvARRAY(PL_regex_padav);
2112             }
2113 #endif      
2114         }
2115         PM_SETRE(PL_reg_curpm, prog);
2116         PL_reg_oldcurpm = PL_curpm;
2117         PL_curpm = PL_reg_curpm;
2118         if (RX_MATCH_COPIED(prog)) {
2119             /*  Here is a serious problem: we cannot rewrite subbeg,
2120                 since it may be needed if this match fails.  Thus
2121                 $` inside (?{}) could fail... */
2122             PL_reg_oldsaved = prog->subbeg;
2123             PL_reg_oldsavedlen = prog->sublen;
2124             RX_MATCH_COPIED_off(prog);
2125         }
2126         else
2127             PL_reg_oldsaved = Nullch;
2128         prog->subbeg = PL_bostr;
2129         prog->sublen = PL_regeol - PL_bostr; /* strend may have been modified */
2130     }
2131     prog->startp[0] = startpos - PL_bostr;
2132     PL_reginput = startpos;
2133     PL_regstartp = prog->startp;
2134     PL_regendp = prog->endp;
2135     PL_reglastparen = &prog->lastparen;
2136     PL_reglastcloseparen = &prog->lastcloseparen;
2137     prog->lastparen = 0;
2138     prog->lastcloseparen = 0;
2139     PL_regsize = 0;
2140     DEBUG_r(PL_reg_starttry = startpos);
2141     if (PL_reg_start_tmpl <= prog->nparens) {
2142         PL_reg_start_tmpl = prog->nparens*3/2 + 3;
2143         if(PL_reg_start_tmp)
2144             Renew(PL_reg_start_tmp, PL_reg_start_tmpl, char*);
2145         else
2146             New(22,PL_reg_start_tmp, PL_reg_start_tmpl, char*);
2147     }
2148
2149     /* XXXX What this code is doing here?!!!  There should be no need
2150        to do this again and again, PL_reglastparen should take care of
2151        this!  --ilya*/
2152
2153     /* Tests pat.t#187 and split.t#{13,14} seem to depend on this code.
2154      * Actually, the code in regcppop() (which Ilya may be meaning by
2155      * PL_reglastparen), is not needed at all by the test suite
2156      * (op/regexp, op/pat, op/split), but that code is needed, oddly
2157      * enough, for building DynaLoader, or otherwise this
2158      * "Error: '*' not in typemap in DynaLoader.xs, line 164"
2159      * will happen.  Meanwhile, this code *is* needed for the
2160      * above-mentioned test suite tests to succeed.  The common theme
2161      * on those tests seems to be returning null fields from matches.
2162      * --jhi */
2163 #if 1
2164     sp = prog->startp;
2165     ep = prog->endp;
2166     if (prog->nparens) {
2167         for (i = prog->nparens; i > (I32)*PL_reglastparen; i--) {
2168             *++sp = -1;
2169             *++ep = -1;
2170         }
2171     }
2172 #endif
2173     REGCP_SET(lastcp);
2174     if (regmatch(prog->program + 1)) {
2175         prog->endp[0] = PL_reginput - PL_bostr;
2176         return 1;
2177     }
2178     REGCP_UNWIND(lastcp);
2179     return 0;
2180 }
2181
2182 #define RE_UNWIND_BRANCH        1
2183 #define RE_UNWIND_BRANCHJ       2
2184
2185 union re_unwind_t;
2186
2187 typedef struct {                /* XX: makes sense to enlarge it... */
2188     I32 type;
2189     I32 prev;
2190     CHECKPOINT lastcp;
2191 } re_unwind_generic_t;
2192
2193 typedef struct {
2194     I32 type;
2195     I32 prev;
2196     CHECKPOINT lastcp;
2197     I32 lastparen;
2198     regnode *next;
2199     char *locinput;
2200     I32 nextchr;
2201 #ifdef DEBUGGING
2202     int regindent;
2203 #endif
2204 } re_unwind_branch_t;
2205
2206 typedef union re_unwind_t {
2207     I32 type;
2208     re_unwind_generic_t generic;
2209     re_unwind_branch_t branch;
2210 } re_unwind_t;
2211
2212 #define sayYES goto yes
2213 #define sayNO goto no
2214 #define sayNO_ANYOF goto no_anyof
2215 #define sayYES_FINAL goto yes_final
2216 #define sayYES_LOUD  goto yes_loud
2217 #define sayNO_FINAL  goto no_final
2218 #define sayNO_SILENT goto do_no
2219 #define saySAME(x) if (x) goto yes; else goto no
2220
2221 #define REPORT_CODE_OFF 24
2222
2223 /*
2224  - regmatch - main matching routine
2225  *
2226  * Conceptually the strategy is simple:  check to see whether the current
2227  * node matches, call self recursively to see whether the rest matches,
2228  * and then act accordingly.  In practice we make some effort to avoid
2229  * recursion, in particular by going through "ordinary" nodes (that don't
2230  * need to know whether the rest of the match failed) by a loop instead of
2231  * by recursion.
2232  */
2233 /* [lwall] I've hoisted the register declarations to the outer block in order to
2234  * maybe save a little bit of pushing and popping on the stack.  It also takes
2235  * advantage of machines that use a register save mask on subroutine entry.
2236  */
2237 STATIC I32                      /* 0 failure, 1 success */
2238 S_regmatch(pTHX_ regnode *prog)
2239 {
2240     register regnode *scan;     /* Current node. */
2241     regnode *next;              /* Next node. */
2242     regnode *inner;             /* Next node in internal branch. */
2243     register I32 nextchr;       /* renamed nextchr - nextchar colides with
2244                                    function of same name */
2245     register I32 n;             /* no or next */
2246     register I32 ln = 0;        /* len or last */
2247     register char *s = Nullch;  /* operand or save */
2248     register char *locinput = PL_reginput;
2249     register I32 c1 = 0, c2 = 0, paren; /* case fold search, parenth */
2250     int minmod = 0, sw = 0, logical = 0;
2251     I32 unwind = 0;
2252 #if 0
2253     I32 firstcp = PL_savestack_ix;
2254 #endif
2255     register bool do_utf8 = PL_reg_match_utf8;
2256 #ifdef DEBUGGING
2257     SV *dsv0 = PERL_DEBUG_PAD_ZERO(0);
2258     SV *dsv1 = PERL_DEBUG_PAD_ZERO(1);
2259     SV *dsv2 = PERL_DEBUG_PAD_ZERO(2);
2260 #endif
2261
2262 #ifdef DEBUGGING
2263     PL_regindent++;
2264 #endif
2265
2266     /* Note that nextchr is a byte even in UTF */
2267     nextchr = UCHARAT(locinput);
2268     scan = prog;
2269     while (scan != NULL) {
2270
2271         DEBUG_r( {
2272             SV *prop = sv_newmortal();
2273             int docolor = *PL_colors[0];
2274             int taill = (docolor ? 10 : 7); /* 3 chars for "> <" */
2275             int l = (PL_regeol - locinput) > taill ? taill : (PL_regeol - locinput);
2276             /* The part of the string before starttry has one color
2277                (pref0_len chars), between starttry and current
2278                position another one (pref_len - pref0_len chars),
2279                after the current position the third one.
2280                We assume that pref0_len <= pref_len, otherwise we
2281                decrease pref0_len.  */
2282             int pref_len = (locinput - PL_bostr) > (5 + taill) - l
2283                 ? (5 + taill) - l : locinput - PL_bostr;
2284             int pref0_len;
2285
2286             while (do_utf8 && UTF8_IS_CONTINUATION(*(U8*)(locinput - pref_len)))
2287                 pref_len++;
2288             pref0_len = pref_len  - (locinput - PL_reg_starttry);
2289             if (l + pref_len < (5 + taill) && l < PL_regeol - locinput)
2290                 l = ( PL_regeol - locinput > (5 + taill) - pref_len
2291                       ? (5 + taill) - pref_len : PL_regeol - locinput);
2292             while (do_utf8 && UTF8_IS_CONTINUATION(*(U8*)(locinput + l)))
2293                 l--;
2294             if (pref0_len < 0)
2295                 pref0_len = 0;
2296             if (pref0_len > pref_len)
2297                 pref0_len = pref_len;
2298             regprop(prop, scan);
2299             {
2300               char *s0 =
2301                 do_utf8 && OP(scan) != CANY ?
2302                 pv_uni_display(dsv0, (U8*)(locinput - pref_len),
2303                                pref0_len, 60, UNI_DISPLAY_REGEX) :
2304                 locinput - pref_len;
2305               int len0 = do_utf8 ? strlen(s0) : pref0_len;
2306               char *s1 = do_utf8 && OP(scan) != CANY ?
2307                 pv_uni_display(dsv1, (U8*)(locinput - pref_len + pref0_len),
2308                                pref_len - pref0_len, 60, UNI_DISPLAY_REGEX) :
2309                 locinput - pref_len + pref0_len;
2310               int len1 = do_utf8 ? strlen(s1) : pref_len - pref0_len;
2311               char *s2 = do_utf8 && OP(scan) != CANY ?
2312                 pv_uni_display(dsv2, (U8*)locinput,
2313                                PL_regeol - locinput, 60, UNI_DISPLAY_REGEX) :
2314                 locinput;
2315               int len2 = do_utf8 ? strlen(s2) : l;
2316               PerlIO_printf(Perl_debug_log,
2317                             "%4"IVdf" <%s%.*s%s%s%.*s%s%s%s%.*s%s>%*s|%3"IVdf":%*s%s\n",
2318                             (IV)(locinput - PL_bostr),
2319                             PL_colors[4],
2320                             len0, s0,
2321                             PL_colors[5],
2322                             PL_colors[2],
2323                             len1, s1,
2324                             PL_colors[3],
2325                             (docolor ? "" : "> <"),
2326                             PL_colors[0],
2327                             len2, s2,
2328                             PL_colors[1],
2329                             15 - l - pref_len + 1,
2330                             "",
2331                             (IV)(scan - PL_regprogram), PL_regindent*2, "",
2332                             SvPVX(prop));
2333             }
2334         });
2335
2336         next = scan + NEXT_OFF(scan);
2337         if (next == scan)
2338             next = NULL;
2339
2340         switch (OP(scan)) {
2341         case BOL:
2342             if (locinput == PL_bostr || (PL_multiline &&
2343                 (nextchr || locinput < PL_regeol) && locinput[-1] == '\n') )
2344             {
2345                 /* regtill = regbol; */
2346                 break;
2347             }
2348             sayNO;
2349         case MBOL:
2350             if (locinput == PL_bostr ||
2351                 ((nextchr || locinput < PL_regeol) && locinput[-1] == '\n'))
2352             {
2353                 break;
2354             }
2355             sayNO;
2356         case SBOL:
2357             if (locinput == PL_bostr)
2358                 break;
2359             sayNO;
2360         case GPOS:
2361             if (locinput == PL_reg_ganch)
2362                 break;
2363             sayNO;
2364         case EOL:
2365             if (PL_multiline)
2366                 goto meol;
2367             else
2368                 goto seol;
2369         case MEOL:
2370           meol:
2371             if ((nextchr || locinput < PL_regeol) && nextchr != '\n')
2372                 sayNO;
2373             break;
2374         case SEOL:
2375           seol:
2376             if ((nextchr || locinput < PL_regeol) && nextchr != '\n')
2377                 sayNO;
2378             if (PL_regeol - locinput > 1)
2379                 sayNO;
2380             break;
2381         case EOS:
2382             if (PL_regeol != locinput)
2383                 sayNO;
2384             break;
2385         case SANY:
2386             if (!nextchr && locinput >= PL_regeol)
2387                 sayNO;
2388             if (do_utf8) {
2389                 locinput += PL_utf8skip[nextchr];
2390                 if (locinput > PL_regeol)
2391                     sayNO;
2392                 nextchr = UCHARAT(locinput);
2393             }
2394             else
2395                 nextchr = UCHARAT(++locinput);
2396             break;
2397         case CANY:
2398             if (!nextchr && locinput >= PL_regeol)
2399                 sayNO;
2400             nextchr = UCHARAT(++locinput);
2401             break;
2402         case REG_ANY:
2403             if ((!nextchr && locinput >= PL_regeol) || nextchr == '\n')
2404                 sayNO;
2405             if (do_utf8) {
2406                 locinput += PL_utf8skip[nextchr];
2407                 if (locinput > PL_regeol)
2408                     sayNO;
2409                 nextchr = UCHARAT(locinput);
2410             }
2411             else
2412                 nextchr = UCHARAT(++locinput);
2413             break;
2414         case EXACT:
2415             s = STRING(scan);
2416             ln = STR_LEN(scan);
2417             if (do_utf8 != UTF) {
2418                 /* The target and the pattern have differing utf8ness. */
2419                 char *l = locinput;
2420                 char *e = s + ln;
2421                 STRLEN ulen;
2422
2423                 if (do_utf8) {
2424                     /* The target is utf8, the pattern is not utf8. */
2425                     while (s < e) {
2426                         if (l >= PL_regeol)
2427                              sayNO;
2428                         if (NATIVE_TO_UNI(*(U8*)s) !=
2429                             utf8n_to_uvuni((U8*)l, UTF8_MAXLEN, &ulen,
2430                                            ckWARN(WARN_UTF8) ?
2431                                            0 : UTF8_ALLOW_ANY))
2432                              sayNO;
2433                         l += ulen;
2434                         s ++;
2435                     }
2436                 }
2437                 else {
2438                     /* The target is not utf8, the pattern is utf8. */
2439                     while (s < e) {
2440                         if (l >= PL_regeol)
2441                             sayNO;
2442                         if (NATIVE_TO_UNI(*((U8*)l)) !=
2443                             utf8n_to_uvuni((U8*)s, UTF8_MAXLEN, &ulen,
2444                                            ckWARN(WARN_UTF8) ?
2445                                            0 : UTF8_ALLOW_ANY))
2446                             sayNO;
2447                         s += ulen;
2448                         l ++;
2449                     }
2450                 }
2451                 locinput = l;
2452                 nextchr = UCHARAT(locinput);
2453                 break;
2454             }
2455             /* The target and the pattern have the same utf8ness. */
2456             /* Inline the first character, for speed. */
2457             if (UCHARAT(s) != nextchr)
2458                 sayNO;
2459             if (PL_regeol - locinput < ln)
2460                 sayNO;
2461             if (ln > 1 && memNE(s, locinput, ln))
2462                 sayNO;
2463             locinput += ln;
2464             nextchr = UCHARAT(locinput);
2465             break;
2466         case EXACTFL:
2467             PL_reg_flags |= RF_tainted;
2468             /* FALL THROUGH */
2469         case EXACTF:
2470             s = STRING(scan);
2471             ln = STR_LEN(scan);
2472
2473             if (do_utf8 || UTF) {
2474               /* Either target or the pattern are utf8. */
2475                 char *l = locinput;
2476                 char *e = PL_regeol;
2477
2478                 if (ibcmp_utf8(s, 0,  ln, (bool)UTF,
2479                                l, &e, 0,  do_utf8)) {
2480                      /* One more case for the sharp s:
2481                       * pack("U0U*", 0xDF) =~ /ss/i,
2482                       * the 0xC3 0x9F are the UTF-8
2483                       * byte sequence for the U+00DF. */
2484                      if (!(do_utf8 &&
2485                            toLOWER(s[0]) == 's' &&
2486                            ln >= 2 &&
2487                            toLOWER(s[1]) == 's' &&
2488                            (U8)l[0] == 0xC3 &&
2489                            e - l >= 2 &&
2490                            (U8)l[1] == 0x9F))
2491                           sayNO;
2492                 }
2493                 locinput = e;
2494                 nextchr = UCHARAT(locinput);
2495                 break;
2496             }
2497
2498             /* Neither the target and the pattern are utf8. */
2499
2500             /* Inline the first character, for speed. */
2501             if (UCHARAT(s) != nextchr &&
2502                 UCHARAT(s) != ((OP(scan) == EXACTF)
2503                                ? PL_fold : PL_fold_locale)[nextchr])
2504                 sayNO;
2505             if (PL_regeol - locinput < ln)
2506                 sayNO;
2507             if (ln > 1 && (OP(scan) == EXACTF
2508                            ? ibcmp(s, locinput, ln)
2509                            : ibcmp_locale(s, locinput, ln)))
2510                 sayNO;
2511             locinput += ln;
2512             nextchr = UCHARAT(locinput);
2513             break;
2514         case ANYOF:
2515             if (do_utf8) {
2516                 STRLEN inclasslen = PL_regeol - locinput;
2517
2518                 if (!reginclass(scan, (U8*)locinput, &inclasslen, do_utf8))
2519                     sayNO_ANYOF;
2520                 if (locinput >= PL_regeol)
2521                     sayNO;
2522                 locinput += inclasslen ? inclasslen : UTF8SKIP(locinput);
2523                 nextchr = UCHARAT(locinput);
2524                 break;
2525             }
2526             else {
2527                 if (nextchr < 0)
2528                     nextchr = UCHARAT(locinput);
2529                 if (!REGINCLASS(scan, (U8*)locinput))
2530                     sayNO_ANYOF;
2531                 if (!nextchr && locinput >= PL_regeol)
2532                     sayNO;
2533                 nextchr = UCHARAT(++locinput);
2534                 break;
2535             }
2536         no_anyof:
2537             /* If we might have the case of the German sharp s
2538              * in a casefolding Unicode character class. */
2539
2540             if (ANYOF_FOLD_SHARP_S(scan, locinput, PL_regeol)) {
2541                  locinput += SHARP_S_SKIP;
2542                  nextchr = UCHARAT(locinput);
2543             }
2544             else
2545                  sayNO;
2546             break;
2547         case ALNUML:
2548             PL_reg_flags |= RF_tainted;
2549             /* FALL THROUGH */
2550         case ALNUM:
2551             if (!nextchr)
2552                 sayNO;
2553             if (do_utf8) {
2554                 LOAD_UTF8_CHARCLASS(alnum,"a");
2555                 if (!(OP(scan) == ALNUM
2556                       ? swash_fetch(PL_utf8_alnum, (U8*)locinput, do_utf8)
2557                       : isALNUM_LC_utf8((U8*)locinput)))
2558                 {
2559                     sayNO;
2560                 }
2561                 locinput += PL_utf8skip[nextchr];
2562                 nextchr = UCHARAT(locinput);
2563                 break;
2564             }
2565             if (!(OP(scan) == ALNUM
2566                   ? isALNUM(nextchr) : isALNUM_LC(nextchr)))
2567                 sayNO;
2568             nextchr = UCHARAT(++locinput);
2569             break;
2570         case NALNUML:
2571             PL_reg_flags |= RF_tainted;
2572             /* FALL THROUGH */
2573         case NALNUM:
2574             if (!nextchr && locinput >= PL_regeol)
2575                 sayNO;
2576             if (do_utf8) {
2577                 LOAD_UTF8_CHARCLASS(alnum,"a");
2578                 if (OP(scan) == NALNUM
2579                     ? swash_fetch(PL_utf8_alnum, (U8*)locinput, do_utf8)
2580                     : isALNUM_LC_utf8((U8*)locinput))
2581                 {
2582                     sayNO;
2583                 }
2584                 locinput += PL_utf8skip[nextchr];
2585                 nextchr = UCHARAT(locinput);
2586                 break;
2587             }
2588             if (OP(scan) == NALNUM
2589                 ? isALNUM(nextchr) : isALNUM_LC(nextchr))
2590                 sayNO;
2591             nextchr = UCHARAT(++locinput);
2592             break;
2593         case BOUNDL:
2594         case NBOUNDL:
2595             PL_reg_flags |= RF_tainted;
2596             /* FALL THROUGH */
2597         case BOUND:
2598         case NBOUND:
2599             /* was last char in word? */
2600             if (do_utf8) {
2601                 if (locinput == PL_bostr)
2602                     ln = '\n';
2603                 else {
2604                     U8 *r = reghop3((U8*)locinput, -1, (U8*)PL_bostr);
2605                 
2606                     ln = utf8n_to_uvchr(r, UTF8SKIP(r), 0, 0);
2607                 }
2608                 if (OP(scan) == BOUND || OP(scan) == NBOUND) {
2609                     ln = isALNUM_uni(ln);
2610                     LOAD_UTF8_CHARCLASS(alnum,"a");
2611                     n = swash_fetch(PL_utf8_alnum, (U8*)locinput, do_utf8);
2612                 }
2613                 else {
2614                     ln = isALNUM_LC_uvchr(UNI_TO_NATIVE(ln));
2615                     n = isALNUM_LC_utf8((U8*)locinput);
2616                 }
2617             }
2618             else {
2619                 ln = (locinput != PL_bostr) ?
2620                     UCHARAT(locinput - 1) : '\n';
2621                 if (OP(scan) == BOUND || OP(scan) == NBOUND) {
2622                     ln = isALNUM(ln);
2623                     n = isALNUM(nextchr);
2624                 }
2625                 else {
2626                     ln = isALNUM_LC(ln);
2627                     n = isALNUM_LC(nextchr);
2628                 }
2629             }
2630             if (((!ln) == (!n)) == (OP(scan) == BOUND ||
2631                                     OP(scan) == BOUNDL))
2632                     sayNO;
2633             break;
2634         case SPACEL:
2635             PL_reg_flags |= RF_tainted;
2636             /* FALL THROUGH */
2637         case SPACE:
2638             if (!nextchr)
2639                 sayNO;
2640             if (do_utf8) {
2641                 if (UTF8_IS_CONTINUED(nextchr)) {
2642                     LOAD_UTF8_CHARCLASS(space," ");
2643                     if (!(OP(scan) == SPACE
2644                           ? swash_fetch(PL_utf8_space, (U8*)locinput, do_utf8)
2645                           : isSPACE_LC_utf8((U8*)locinput)))
2646                     {
2647                         sayNO;
2648                     }
2649                     locinput += PL_utf8skip[nextchr];
2650                     nextchr = UCHARAT(locinput);
2651                     break;
2652                 }
2653                 if (!(OP(scan) == SPACE
2654                       ? isSPACE(nextchr) : isSPACE_LC(nextchr)))
2655                     sayNO;
2656                 nextchr = UCHARAT(++locinput);
2657             }
2658             else {
2659                 if (!(OP(scan) == SPACE
2660                       ? isSPACE(nextchr) : isSPACE_LC(nextchr)))
2661                     sayNO;
2662                 nextchr = UCHARAT(++locinput);
2663             }
2664             break;
2665         case NSPACEL:
2666             PL_reg_flags |= RF_tainted;
2667             /* FALL THROUGH */
2668         case NSPACE:
2669             if (!nextchr && locinput >= PL_regeol)
2670                 sayNO;
2671             if (do_utf8) {
2672                 LOAD_UTF8_CHARCLASS(space," ");
2673                 if (OP(scan) == NSPACE
2674                     ? swash_fetch(PL_utf8_space, (U8*)locinput, do_utf8)
2675                     : isSPACE_LC_utf8((U8*)locinput))
2676                 {
2677                     sayNO;
2678                 }
2679                 locinput += PL_utf8skip[nextchr];
2680                 nextchr = UCHARAT(locinput);
2681                 break;
2682             }
2683             if (OP(scan) == NSPACE
2684                 ? isSPACE(nextchr) : isSPACE_LC(nextchr))
2685                 sayNO;
2686             nextchr = UCHARAT(++locinput);
2687             break;
2688         case DIGITL:
2689             PL_reg_flags |= RF_tainted;
2690             /* FALL THROUGH */
2691         case DIGIT:
2692             if (!nextchr)
2693                 sayNO;
2694             if (do_utf8) {
2695                 LOAD_UTF8_CHARCLASS(digit,"0");
2696                 if (!(OP(scan) == DIGIT
2697                       ? swash_fetch(PL_utf8_digit, (U8*)locinput, do_utf8)
2698                       : isDIGIT_LC_utf8((U8*)locinput)))
2699                 {
2700                     sayNO;
2701                 }
2702                 locinput += PL_utf8skip[nextchr];
2703                 nextchr = UCHARAT(locinput);
2704                 break;
2705             }
2706             if (!(OP(scan) == DIGIT
2707                   ? isDIGIT(nextchr) : isDIGIT_LC(nextchr)))
2708                 sayNO;
2709             nextchr = UCHARAT(++locinput);
2710             break;
2711         case NDIGITL:
2712             PL_reg_flags |= RF_tainted;
2713             /* FALL THROUGH */
2714         case NDIGIT:
2715             if (!nextchr && locinput >= PL_regeol)
2716                 sayNO;
2717             if (do_utf8) {
2718                 LOAD_UTF8_CHARCLASS(digit,"0");
2719                 if (OP(scan) == NDIGIT
2720                     ? swash_fetch(PL_utf8_digit, (U8*)locinput, do_utf8)
2721                     : isDIGIT_LC_utf8((U8*)locinput))
2722                 {
2723                     sayNO;
2724                 }
2725                 locinput += PL_utf8skip[nextchr];
2726                 nextchr = UCHARAT(locinput);
2727                 break;
2728             }
2729             if (OP(scan) == NDIGIT
2730                 ? isDIGIT(nextchr) : isDIGIT_LC(nextchr))
2731                 sayNO;
2732             nextchr = UCHARAT(++locinput);
2733             break;
2734         case CLUMP:
2735             if (locinput >= PL_regeol)
2736                 sayNO;
2737             if  (do_utf8) {
2738                 LOAD_UTF8_CHARCLASS(mark,"~");
2739                 if (swash_fetch(PL_utf8_mark,(U8*)locinput, do_utf8))
2740                     sayNO;
2741                 locinput += PL_utf8skip[nextchr];
2742                 while (locinput < PL_regeol &&
2743                        swash_fetch(PL_utf8_mark,(U8*)locinput, do_utf8))
2744                     locinput += UTF8SKIP(locinput);
2745                 if (locinput > PL_regeol)
2746                     sayNO;
2747             } 
2748             else
2749                locinput++;
2750             nextchr = UCHARAT(locinput);
2751             break;
2752         case REFFL:
2753             PL_reg_flags |= RF_tainted;
2754             /* FALL THROUGH */
2755         case REF:
2756         case REFF:
2757             n = ARG(scan);  /* which paren pair */
2758             ln = PL_regstartp[n];
2759             PL_reg_leftiter = PL_reg_maxiter;           /* Void cache */
2760             if ((I32)*PL_reglastparen < n || ln == -1)
2761                 sayNO;                  /* Do not match unless seen CLOSEn. */
2762             if (ln == PL_regendp[n])
2763                 break;
2764
2765             s = PL_bostr + ln;
2766             if (do_utf8 && OP(scan) != REF) {   /* REF can do byte comparison */
2767                 char *l = locinput;
2768                 char *e = PL_bostr + PL_regendp[n];
2769                 /*
2770                  * Note that we can't do the "other character" lookup trick as
2771                  * in the 8-bit case (no pun intended) because in Unicode we
2772                  * have to map both upper and title case to lower case.
2773                  */
2774                 if (OP(scan) == REFF) {
2775                     STRLEN ulen1, ulen2;
2776                     U8 tmpbuf1[UTF8_MAXLEN_UCLC+1];
2777                     U8 tmpbuf2[UTF8_MAXLEN_UCLC+1];
2778                     while (s < e) {
2779                         if (l >= PL_regeol)
2780                             sayNO;
2781                         toLOWER_utf8((U8*)s, tmpbuf1, &ulen1);
2782                         toLOWER_utf8((U8*)l, tmpbuf2, &ulen2);
2783                         if (ulen1 != ulen2 || memNE((char *)tmpbuf1, (char *)tmpbuf2, ulen1))
2784                             sayNO;
2785                         s += ulen1;
2786                         l += ulen2;
2787                     }
2788                 }
2789                 locinput = l;
2790                 nextchr = UCHARAT(locinput);
2791                 break;
2792             }
2793
2794             /* Inline the first character, for speed. */
2795             if (UCHARAT(s) != nextchr &&
2796                 (OP(scan) == REF ||
2797                  (UCHARAT(s) != ((OP(scan) == REFF
2798                                   ? PL_fold : PL_fold_locale)[nextchr]))))
2799                 sayNO;
2800             ln = PL_regendp[n] - ln;
2801             if (locinput + ln > PL_regeol)
2802                 sayNO;
2803             if (ln > 1 && (OP(scan) == REF
2804                            ? memNE(s, locinput, ln)
2805                            : (OP(scan) == REFF
2806                               ? ibcmp(s, locinput, ln)
2807                               : ibcmp_locale(s, locinput, ln))))
2808                 sayNO;
2809             locinput += ln;
2810             nextchr = UCHARAT(locinput);
2811             break;
2812
2813         case NOTHING:
2814         case TAIL:
2815             break;
2816         case BACK:
2817             break;
2818         case EVAL:
2819         {
2820             dSP;
2821             OP_4tree *oop = PL_op;
2822             COP *ocurcop = PL_curcop;
2823             PAD *old_comppad;
2824             SV *ret;
2825             struct regexp *oreg = PL_reg_re;
2826         
2827             n = ARG(scan);
2828             PL_op = (OP_4tree*)PL_regdata->data[n];
2829             DEBUG_r( PerlIO_printf(Perl_debug_log, "  re_eval 0x%"UVxf"\n", PTR2UV(PL_op)) );
2830             PAD_SAVE_LOCAL(old_comppad, (PAD*)PL_regdata->data[n + 2]);
2831             PL_regendp[0] = PL_reg_magic->mg_len = locinput - PL_bostr;
2832
2833             {
2834                 SV **before = SP;
2835                 CALLRUNOPS(aTHX);                       /* Scalar context. */
2836                 SPAGAIN;
2837                 if (SP == before)
2838                     ret = &PL_sv_undef;   /* protect against empty (?{}) blocks. */
2839                 else {
2840                     ret = POPs;
2841                     PUTBACK;
2842                 }
2843             }
2844
2845             PL_op = oop;
2846             PAD_RESTORE_LOCAL(old_comppad);
2847             PL_curcop = ocurcop;
2848             if (logical) {
2849                 if (logical == 2) {     /* Postponed subexpression. */
2850                     regexp *re;
2851                     MAGIC *mg = Null(MAGIC*);
2852                     re_cc_state state;
2853                     CHECKPOINT cp, lastcp;
2854                     int toggleutf;
2855                     register SV *sv;
2856
2857                     if(SvROK(ret) && SvSMAGICAL(sv = SvRV(ret)))
2858                         mg = mg_find(sv, PERL_MAGIC_qr);
2859                     else if (SvSMAGICAL(ret)) {
2860                         if (SvGMAGICAL(ret))
2861                             sv_unmagic(ret, PERL_MAGIC_qr);
2862                         else
2863                             mg = mg_find(ret, PERL_MAGIC_qr);
2864                     }
2865
2866                     if (mg) {
2867                         re = (regexp *)mg->mg_obj;
2868                         (void)ReREFCNT_inc(re);
2869                     }
2870                     else {
2871                         STRLEN len;
2872                         char *t = SvPV(ret, len);
2873                         PMOP pm;
2874                         char *oprecomp = PL_regprecomp;
2875                         I32 osize = PL_regsize;
2876                         I32 onpar = PL_regnpar;
2877
2878                         Zero(&pm, 1, PMOP);
2879                         if (DO_UTF8(ret)) pm.op_pmdynflags |= PMdf_DYN_UTF8;
2880                         re = CALLREGCOMP(aTHX_ t, t + len, &pm);
2881                         if (!(SvFLAGS(ret)
2882                               & (SVs_TEMP | SVs_PADTMP | SVf_READONLY
2883                                 | SVs_GMG)))
2884                             sv_magic(ret,(SV*)ReREFCNT_inc(re),
2885                                         PERL_MAGIC_qr,0,0);
2886                         PL_regprecomp = oprecomp;
2887                         PL_regsize = osize;
2888                         PL_regnpar = onpar;
2889                     }
2890                     DEBUG_r(
2891                         PerlIO_printf(Perl_debug_log,
2892                                       "Entering embedded `%s%.60s%s%s'\n",
2893                                       PL_colors[0],
2894                                       re->precomp,
2895                                       PL_colors[1],
2896                                       (strlen(re->precomp) > 60 ? "..." : ""))
2897                         );
2898                     state.node = next;
2899                     state.prev = PL_reg_call_cc;
2900                     state.cc = PL_regcc;
2901                     state.re = PL_reg_re;
2902
2903                     PL_regcc = 0;
2904                 
2905                     cp = regcppush(0);  /* Save *all* the positions. */
2906                     REGCP_SET(lastcp);
2907                     cache_re(re);
2908                     state.ss = PL_savestack_ix;
2909                     *PL_reglastparen = 0;
2910                     *PL_reglastcloseparen = 0;
2911                     PL_reg_call_cc = &state;
2912                     PL_reginput = locinput;
2913                     toggleutf = ((PL_reg_flags & RF_utf8) != 0) ^
2914                                 ((re->reganch & ROPT_UTF8) != 0);
2915                     if (toggleutf) PL_reg_flags ^= RF_utf8;
2916
2917                     /* XXXX This is too dramatic a measure... */
2918                     PL_reg_maxiter = 0;
2919
2920                     if (regmatch(re->program + 1)) {
2921                         /* Even though we succeeded, we need to restore
2922                            global variables, since we may be wrapped inside
2923                            SUSPEND, thus the match may be not finished yet. */
2924
2925                         /* XXXX Do this only if SUSPENDed? */
2926                         PL_reg_call_cc = state.prev;
2927                         PL_regcc = state.cc;
2928                         PL_reg_re = state.re;
2929                         cache_re(PL_reg_re);
2930                         if (toggleutf) PL_reg_flags ^= RF_utf8;
2931
2932                         /* XXXX This is too dramatic a measure... */
2933                         PL_reg_maxiter = 0;
2934
2935                         /* These are needed even if not SUSPEND. */
2936                         ReREFCNT_dec(re);
2937                         regcpblow(cp);
2938                         sayYES;
2939                     }
2940                     ReREFCNT_dec(re);
2941                     REGCP_UNWIND(lastcp);
2942                     regcppop();
2943                     PL_reg_call_cc = state.prev;
2944                     PL_regcc = state.cc;
2945                     PL_reg_re = state.re;
2946                     cache_re(PL_reg_re);
2947                     if (toggleutf) PL_reg_flags ^= RF_utf8;
2948
2949                     /* XXXX This is too dramatic a measure... */
2950                     PL_reg_maxiter = 0;
2951
2952                     logical = 0;
2953                     sayNO;
2954                 }
2955                 sw = SvTRUE(ret);
2956                 logical = 0;
2957             }
2958             else {
2959                 sv_setsv(save_scalar(PL_replgv), ret);
2960                 cache_re(oreg);
2961             }
2962             break;
2963         }
2964         case OPEN:
2965             n = ARG(scan);  /* which paren pair */
2966             PL_reg_start_tmp[n] = locinput;
2967             if (n > PL_regsize)
2968                 PL_regsize = n;
2969             break;
2970         case CLOSE:
2971             n = ARG(scan);  /* which paren pair */
2972             PL_regstartp[n] = PL_reg_start_tmp[n] - PL_bostr;
2973             PL_regendp[n] = locinput - PL_bostr;
2974             if (n > (I32)*PL_reglastparen)
2975                 *PL_reglastparen = n;
2976             *PL_reglastcloseparen = n;
2977             break;
2978         case GROUPP:
2979             n = ARG(scan);  /* which paren pair */
2980             sw = ((I32)*PL_reglastparen >= n && PL_regendp[n] != -1);
2981             break;
2982         case IFTHEN:
2983             PL_reg_leftiter = PL_reg_maxiter;           /* Void cache */
2984             if (sw)
2985                 next = NEXTOPER(NEXTOPER(scan));
2986             else {
2987                 next = scan + ARG(scan);
2988                 if (OP(next) == IFTHEN) /* Fake one. */
2989                     next = NEXTOPER(NEXTOPER(next));
2990             }
2991             break;
2992         case LOGICAL:
2993             logical = scan->flags;
2994             break;
2995 /*******************************************************************
2996  PL_regcc contains infoblock about the innermost (...)* loop, and
2997  a pointer to the next outer infoblock.
2998
2999  Here is how Y(A)*Z is processed (if it is compiled into CURLYX/WHILEM):
3000
3001    1) After matching X, regnode for CURLYX is processed;
3002
3003    2) This regnode creates infoblock on the stack, and calls
3004       regmatch() recursively with the starting point at WHILEM node;
3005
3006    3) Each hit of WHILEM node tries to match A and Z (in the order
3007       depending on the current iteration, min/max of {min,max} and
3008       greediness).  The information about where are nodes for "A"
3009       and "Z" is read from the infoblock, as is info on how many times "A"
3010       was already matched, and greediness.
3011
3012    4) After A matches, the same WHILEM node is hit again.
3013
3014    5) Each time WHILEM is hit, PL_regcc is the infoblock created by CURLYX
3015       of the same pair.  Thus when WHILEM tries to match Z, it temporarily
3016       resets PL_regcc, since this Y(A)*Z can be a part of some other loop:
3017       as in (Y(A)*Z)*.  If Z matches, the automaton will hit the WHILEM node
3018       of the external loop.
3019
3020  Currently present infoblocks form a tree with a stem formed by PL_curcc
3021  and whatever it mentions via ->next, and additional attached trees
3022  corresponding to temporarily unset infoblocks as in "5" above.
3023
3024  In the following picture infoblocks for outer loop of
3025  (Y(A)*?Z)*?T are denoted O, for inner I.  NULL starting block
3026  is denoted by x.  The matched string is YAAZYAZT.  Temporarily postponed
3027  infoblocks are drawn below the "reset" infoblock.
3028
3029  In fact in the picture below we do not show failed matches for Z and T
3030  by WHILEM blocks.  [We illustrate minimal matches, since for them it is
3031  more obvious *why* one needs to *temporary* unset infoblocks.]
3032
3033   Matched       REx position    InfoBlocks      Comment
3034                 (Y(A)*?Z)*?T    x
3035                 Y(A)*?Z)*?T     x <- O
3036   Y             (A)*?Z)*?T      x <- O
3037   Y             A)*?Z)*?T       x <- O <- I
3038   YA            )*?Z)*?T        x <- O <- I
3039   YA            A)*?Z)*?T       x <- O <- I
3040   YAA           )*?Z)*?T        x <- O <- I
3041   YAA           Z)*?T           x <- O          # Temporary unset I
3042                                      I
3043
3044   YAAZ          Y(A)*?Z)*?T     x <- O
3045                                      I
3046
3047   YAAZY         (A)*?Z)*?T      x <- O
3048                                      I
3049
3050   YAAZY         A)*?Z)*?T       x <- O <- I
3051                                      I
3052
3053   YAAZYA        )*?Z)*?T        x <- O <- I     
3054                                      I
3055
3056   YAAZYA        Z)*?T           x <- O          # Temporary unset I
3057                                      I,I
3058
3059   YAAZYAZ       )*?T            x <- O
3060                                      I,I
3061
3062   YAAZYAZ       T               x               # Temporary unset O
3063                                 O
3064                                 I,I
3065
3066   YAAZYAZT                      x
3067                                 O
3068                                 I,I
3069  *******************************************************************/
3070         case CURLYX: {
3071                 CURCUR cc;
3072                 CHECKPOINT cp = PL_savestack_ix;
3073                 /* No need to save/restore up to this paren */
3074                 I32 parenfloor = scan->flags;
3075
3076                 if (OP(PREVOPER(next)) == NOTHING) /* LONGJMP */
3077                     next += ARG(next);
3078                 cc.oldcc = PL_regcc;
3079                 PL_regcc = &cc;
3080                 /* XXXX Probably it is better to teach regpush to support
3081                    parenfloor > PL_regsize... */
3082                 if (parenfloor > (I32)*PL_reglastparen)
3083                     parenfloor = *PL_reglastparen; /* Pessimization... */
3084                 cc.parenfloor = parenfloor;
3085                 cc.cur = -1;
3086                 cc.min = ARG1(scan);
3087                 cc.max  = ARG2(scan);
3088                 cc.scan = NEXTOPER(scan) + EXTRA_STEP_2ARGS;
3089                 cc.next = next;
3090                 cc.minmod = minmod;
3091                 cc.lastloc = 0;
3092                 PL_reginput = locinput;
3093                 n = regmatch(PREVOPER(next));   /* start on the WHILEM */
3094                 regcpblow(cp);
3095                 PL_regcc = cc.oldcc;
3096                 saySAME(n);
3097             }
3098             /* NOT REACHED */
3099         case WHILEM: {
3100                 /*
3101                  * This is really hard to understand, because after we match
3102                  * what we're trying to match, we must make sure the rest of
3103                  * the REx is going to match for sure, and to do that we have
3104                  * to go back UP the parse tree by recursing ever deeper.  And
3105                  * if it fails, we have to reset our parent's current state
3106                  * that we can try again after backing off.
3107                  */
3108
3109                 CHECKPOINT cp, lastcp;
3110                 CURCUR* cc = PL_regcc;
3111                 char *lastloc = cc->lastloc; /* Detection of 0-len. */
3112                 
3113                 n = cc->cur + 1;        /* how many we know we matched */
3114                 PL_reginput = locinput;
3115
3116                 DEBUG_r(
3117                     PerlIO_printf(Perl_debug_log,
3118                                   "%*s  %ld out of %ld..%ld  cc=%"UVxf"\n",
3119                                   REPORT_CODE_OFF+PL_regindent*2, "",
3120                                   (long)n, (long)cc->min,
3121                                   (long)cc->max, PTR2UV(cc))
3122                     );
3123
3124                 /* If degenerate scan matches "", assume scan done. */
3125
3126                 if (locinput == cc->lastloc && n >= cc->min) {
3127                     PL_regcc = cc->oldcc;
3128                     if (PL_regcc)
3129                         ln = PL_regcc->cur;
3130                     DEBUG_r(
3131                         PerlIO_printf(Perl_debug_log,
3132                            "%*s  empty match detected, try continuation...\n",
3133                            REPORT_CODE_OFF+PL_regindent*2, "")
3134                         );
3135                     if (regmatch(cc->next))
3136                         sayYES;
3137                     if (PL_regcc)
3138                         PL_regcc->cur = ln;
3139                     PL_regcc = cc;
3140                     sayNO;
3141                 }
3142
3143                 /* First just match a string of min scans. */
3144
3145                 if (n < cc->min) {
3146                     cc->cur = n;
3147                     cc->lastloc = locinput;
3148                     if (regmatch(cc->scan))
3149                         sayYES;
3150                     cc->cur = n - 1;
3151                     cc->lastloc = lastloc;
3152                     sayNO;
3153                 }
3154
3155                 if (scan->flags) {
3156                     /* Check whether we already were at this position.
3157                         Postpone detection until we know the match is not
3158                         *that* much linear. */
3159                 if (!PL_reg_maxiter) {
3160                     PL_reg_maxiter = (PL_regeol - PL_bostr + 1) * (scan->flags>>4);
3161                     PL_reg_leftiter = PL_reg_maxiter;
3162                 }
3163                 if (PL_reg_leftiter-- == 0) {
3164                     I32 size = (PL_reg_maxiter + 7)/8;
3165                     if (PL_reg_poscache) {
3166                         if ((I32)PL_reg_poscache_size < size) {
3167                             Renew(PL_reg_poscache, size, char);
3168                             PL_reg_poscache_size = size;
3169                         }
3170                         Zero(PL_reg_poscache, size, char);
3171                     }
3172                     else {
3173                         PL_reg_poscache_size = size;
3174                         Newz(29, PL_reg_poscache, size, char);
3175                     }
3176                     DEBUG_r(
3177                         PerlIO_printf(Perl_debug_log,
3178               "%sDetected a super-linear match, switching on caching%s...\n",
3179                                       PL_colors[4], PL_colors[5])
3180                         );
3181                 }
3182                 if (PL_reg_leftiter < 0) {
3183                     I32 o = locinput - PL_bostr, b;
3184
3185                     o = (scan->flags & 0xf) - 1 + o * (scan->flags>>4);
3186                     b = o % 8;
3187                     o /= 8;
3188                     if (PL_reg_poscache[o] & (1<<b)) {
3189                     DEBUG_r(
3190                         PerlIO_printf(Perl_debug_log,
3191                                       "%*s  already tried at this position...\n",
3192                                       REPORT_CODE_OFF+PL_regindent*2, "")
3193                         );
3194                         if (PL_reg_flags & RF_false)
3195                             sayYES;
3196                         else
3197                             sayNO_SILENT;
3198                     }
3199                     PL_reg_poscache[o] |= (1<<b);
3200                 }
3201                 }
3202
3203                 /* Prefer next over scan for minimal matching. */
3204
3205                 if (cc->minmod) {
3206                     PL_regcc = cc->oldcc;
3207                     if (PL_regcc)
3208                         ln = PL_regcc->cur;
3209                     cp = regcppush(cc->parenfloor);
3210                     REGCP_SET(lastcp);
3211                     if (regmatch(cc->next)) {
3212                         regcpblow(cp);
3213                         sayYES; /* All done. */
3214                     }
3215                     REGCP_UNWIND(lastcp);
3216                     regcppop();
3217                     if (PL_regcc)
3218                         PL_regcc->cur = ln;
3219                     PL_regcc = cc;
3220
3221                     if (n >= cc->max) { /* Maximum greed exceeded? */
3222                         if (ckWARN(WARN_REGEXP) && n >= REG_INFTY
3223                             && !(PL_reg_flags & RF_warned)) {
3224                             PL_reg_flags |= RF_warned;
3225                             Perl_warner(aTHX_ packWARN(WARN_REGEXP), "%s limit (%d) exceeded",
3226                                  "Complex regular subexpression recursion",
3227                                  REG_INFTY - 1);
3228                         }
3229                         sayNO;
3230                     }
3231
3232                     DEBUG_r(
3233                         PerlIO_printf(Perl_debug_log,
3234                                       "%*s  trying longer...\n",
3235                                       REPORT_CODE_OFF+PL_regindent*2, "")
3236                         );
3237                     /* Try scanning more and see if it helps. */
3238                     PL_reginput = locinput;
3239                     cc->cur = n;
3240                     cc->lastloc = locinput;
3241                     cp = regcppush(cc->parenfloor);
3242                     REGCP_SET(lastcp);
3243                     if (regmatch(cc->scan)) {
3244                         regcpblow(cp);
3245                         sayYES;
3246                     }
3247                     REGCP_UNWIND(lastcp);
3248                     regcppop();
3249                     cc->cur = n - 1;
3250                     cc->lastloc = lastloc;
3251                     sayNO;
3252                 }
3253
3254                 /* Prefer scan over next for maximal matching. */
3255
3256                 if (n < cc->max) {      /* More greed allowed? */
3257                     cp = regcppush(cc->parenfloor);
3258                     cc->cur = n;
3259                     cc->lastloc = locinput;
3260                     REGCP_SET(lastcp);
3261                     if (regmatch(cc->scan)) {
3262                         regcpblow(cp);
3263                         sayYES;
3264                     }
3265                     REGCP_UNWIND(lastcp);
3266                     regcppop();         /* Restore some previous $<digit>s? */
3267                     PL_reginput = locinput;
3268                     DEBUG_r(
3269                         PerlIO_printf(Perl_debug_log,
3270                                       "%*s  failed, try continuation...\n",
3271                                       REPORT_CODE_OFF+PL_regindent*2, "")
3272                         );
3273                 }
3274                 if (ckWARN(WARN_REGEXP) && n >= REG_INFTY
3275                         && !(PL_reg_flags & RF_warned)) {
3276                     PL_reg_flags |= RF_warned;
3277                     Perl_warner(aTHX_ packWARN(WARN_REGEXP), "%s limit (%d) exceeded",
3278                          "Complex regular subexpression recursion",
3279                          REG_INFTY - 1);
3280                 }
3281
3282                 /* Failed deeper matches of scan, so see if this one works. */
3283                 PL_regcc = cc->oldcc;
3284                 if (PL_regcc)
3285                     ln = PL_regcc->cur;
3286                 if (regmatch(cc->next))
3287                     sayYES;
3288                 if (PL_regcc)
3289                     PL_regcc->cur = ln;
3290                 PL_regcc = cc;
3291                 cc->cur = n - 1;
3292                 cc->lastloc = lastloc;
3293                 sayNO;
3294             }
3295             /* NOT REACHED */
3296         case BRANCHJ:
3297             next = scan + ARG(scan);
3298             if (next == scan)
3299                 next = NULL;
3300             inner = NEXTOPER(NEXTOPER(scan));
3301             goto do_branch;
3302         case BRANCH:
3303             inner = NEXTOPER(scan);
3304           do_branch:
3305             {
3306                 c1 = OP(scan);
3307                 if (OP(next) != c1)     /* No choice. */
3308                     next = inner;       /* Avoid recursion. */
3309                 else {
3310                     I32 lastparen = *PL_reglastparen;
3311                     I32 unwind1;
3312                     re_unwind_branch_t *uw;
3313
3314                     /* Put unwinding data on stack */
3315                     unwind1 = SSNEWt(1,re_unwind_branch_t);
3316                     uw = SSPTRt(unwind1,re_unwind_branch_t);
3317                     uw->prev = unwind;
3318                     unwind = unwind1;
3319                     uw->type = ((c1 == BRANCH)
3320                                 ? RE_UNWIND_BRANCH
3321                                 : RE_UNWIND_BRANCHJ);
3322                     uw->lastparen = lastparen;
3323                     uw->next = next;
3324                     uw->locinput = locinput;
3325                     uw->nextchr = nextchr;
3326 #ifdef DEBUGGING
3327                     uw->regindent = ++PL_regindent;
3328 #endif
3329
3330                     REGCP_SET(uw->lastcp);
3331
3332                     /* Now go into the first branch */
3333                     next = inner;
3334                 }
3335             }
3336             break;
3337         case MINMOD:
3338             minmod = 1;
3339             break;
3340         case CURLYM:
3341         {
3342             I32 l = 0;
3343             CHECKPOINT lastcp;
3344         
3345             /* We suppose that the next guy does not need
3346                backtracking: in particular, it is of constant length,
3347                and has no parenths to influence future backrefs. */
3348             ln = ARG1(scan);  /* min to match */
3349             n  = ARG2(scan);  /* max to match */
3350             paren = scan->flags;
3351             if (paren) {
3352                 if (paren > PL_regsize)
3353                     PL_regsize = paren;
3354                 if (paren > (I32)*PL_reglastparen)
3355                     *PL_reglastparen = paren;
3356             }
3357             scan = NEXTOPER(scan) + NODE_STEP_REGNODE;
3358             if (paren)
3359                 scan += NEXT_OFF(scan); /* Skip former OPEN. */
3360             PL_reginput = locinput;
3361             if (minmod) {
3362                 minmod = 0;
3363                 if (ln && regrepeat_hard(scan, ln, &l) < ln)
3364                     sayNO;
3365                 /* if we matched something zero-length we don't need to
3366                    backtrack - capturing parens are already defined, so
3367                    the caveat in the maximal case doesn't apply
3368
3369                    XXXX if ln == 0, we can redo this check first time
3370                    through the following loop
3371                 */
3372                 if (ln && l == 0)
3373                     n = ln;     /* don't backtrack */
3374                 locinput = PL_reginput;
3375                 if (HAS_TEXT(next) || JUMPABLE(next)) {
3376                     regnode *text_node = next;
3377
3378                     if (! HAS_TEXT(text_node)) FIND_NEXT_IMPT(text_node);
3379
3380                     if (! HAS_TEXT(text_node)) c1 = c2 = -1000;
3381                     else {
3382                         if (PL_regkind[(U8)OP(text_node)] == REF) {
3383                             c1 = c2 = -1000;
3384                             goto assume_ok_MM;
3385                         }
3386                         else { c1 = (U8)*STRING(text_node); }
3387                         if (OP(text_node) == EXACTF || OP(text_node) == REFF)
3388                             c2 = PL_fold[c1];
3389                         else if (OP(text_node) == EXACTFL || OP(text_node) == REFFL)
3390                             c2 = PL_fold_locale[c1];
3391                         else
3392                             c2 = c1;
3393                     }
3394                 }
3395                 else
3396                     c1 = c2 = -1000;
3397             assume_ok_MM:
3398                 REGCP_SET(lastcp);
3399                 /* This may be improved if l == 0.  */
3400                 while (n >= ln || (n == REG_INFTY && ln > 0 && l)) { /* ln overflow ? */
3401                     /* If it could work, try it. */
3402                     if (c1 == -1000 ||
3403                         UCHARAT(PL_reginput) == c1 ||
3404                         UCHARAT(PL_reginput) == c2)
3405                     {
3406                         if (paren) {
3407                             if (ln) {
3408                                 PL_regstartp[paren] =
3409                                     HOPc(PL_reginput, -l) - PL_bostr;
3410                                 PL_regendp[paren] = PL_reginput - PL_bostr;
3411                             }
3412                             else
3413                                 PL_regendp[paren] = -1;
3414                         }
3415                         if (regmatch(next))
3416                             sayYES;
3417                         REGCP_UNWIND(lastcp);
3418                     }
3419                     /* Couldn't or didn't -- move forward. */
3420                     PL_reginput = locinput;
3421                     if (regrepeat_hard(scan, 1, &l)) {
3422                         ln++;
3423                         locinput = PL_reginput;
3424                     }
3425                     else
3426                         sayNO;
3427                 }
3428             }
3429             else {
3430                 n = regrepeat_hard(scan, n, &l);
3431                 /* if we matched something zero-length we don't need to
3432                    backtrack, unless the minimum count is zero and we
3433                    are capturing the result - in that case the capture
3434                    being defined or not may affect later execution
3435                 */
3436                 if (n != 0 && l == 0 && !(paren && ln == 0))
3437                     ln = n;     /* don't backtrack */
3438                 locinput = PL_reginput;
3439                 DEBUG_r(
3440                     PerlIO_printf(Perl_debug_log,
3441                                   "%*s  matched %"IVdf" times, len=%"IVdf"...\n",
3442                                   (int)(REPORT_CODE_OFF+PL_regindent*2), "",
3443                                   (IV) n, (IV)l)
3444                     );
3445                 if (n >= ln) {
3446                     if (HAS_TEXT(next) || JUMPABLE(next)) {
3447                         regnode *text_node = next;
3448
3449                         if (! HAS_TEXT(text_node)) FIND_NEXT_IMPT(text_node);
3450
3451                         if (! HAS_TEXT(text_node)) c1 = c2 = -1000;
3452                         else {
3453                             if (PL_regkind[(U8)OP(text_node)] == REF) {
3454                                 c1 = c2 = -1000;
3455                                 goto assume_ok_REG;
3456                             }
3457                             else { c1 = (U8)*STRING(text_node); }
3458
3459                             if (OP(text_node) == EXACTF || OP(text_node) == REFF)
3460                                 c2 = PL_fold[c1];
3461                             else if (OP(text_node) == EXACTFL || OP(text_node) == REFFL)
3462                                 c2 = PL_fold_locale[c1];
3463                             else
3464                                 c2 = c1;
3465                         }
3466                     }
3467                     else
3468                         c1 = c2 = -1000;
3469                 }
3470             assume_ok_REG:
3471                 REGCP_SET(lastcp);
3472                 while (n >= ln) {
3473                     /* If it could work, try it. */
3474                     if (c1 == -1000 ||
3475                         UCHARAT(PL_reginput) == c1 ||
3476                         UCHARAT(PL_reginput) == c2)
3477                     {
3478                         DEBUG_r(
3479                                 PerlIO_printf(Perl_debug_log,
3480                                               "%*s  trying tail with n=%"IVdf"...\n",
3481                                               (int)(REPORT_CODE_OFF+PL_regindent*2), "", (IV)n)
3482                             );
3483                         if (paren) {
3484                             if (n) {
3485                                 PL_regstartp[paren] = HOPc(PL_reginput, -l) - PL_bostr;
3486                                 PL_regendp[paren] = PL_reginput - PL_bostr;
3487                             }
3488                             else
3489                                 PL_regendp[paren] = -1;
3490                         }
3491                         if (regmatch(next))
3492                             sayYES;
3493                         REGCP_UNWIND(lastcp);
3494                     }
3495                     /* Couldn't or didn't -- back up. */
3496                     n--;
3497                     locinput = HOPc(locinput, -l);
3498                     PL_reginput = locinput;
3499                 }
3500             }
3501             sayNO;
3502             break;
3503         }
3504         case CURLYN:
3505             paren = scan->flags;        /* Which paren to set */
3506             if (paren > PL_regsize)
3507                 PL_regsize = paren;
3508             if (paren > (I32)*PL_reglastparen)
3509                 *PL_reglastparen = paren;
3510             ln = ARG1(scan);  /* min to match */
3511             n  = ARG2(scan);  /* max to match */
3512             scan = regnext(NEXTOPER(scan) + NODE_STEP_REGNODE);
3513             goto repeat;
3514         case CURLY:
3515             paren = 0;
3516             ln = ARG1(scan);  /* min to match */
3517             n  = ARG2(scan);  /* max to match */
3518             scan = NEXTOPER(scan) + NODE_STEP_REGNODE;
3519             goto repeat;
3520         case STAR:
3521             ln = 0;
3522             n = REG_INFTY;
3523             scan = NEXTOPER(scan);
3524             paren = 0;
3525             goto repeat;
3526         case PLUS:
3527             ln = 1;
3528             n = REG_INFTY;
3529             scan = NEXTOPER(scan);
3530             paren = 0;
3531           repeat:
3532             /*
3533             * Lookahead to avoid useless match attempts
3534             * when we know what character comes next.
3535             */
3536
3537             /*
3538             * Used to only do .*x and .*?x, but now it allows
3539             * for )'s, ('s and (?{ ... })'s to be in the way
3540             * of the quantifier and the EXACT-like node.  -- japhy
3541             */
3542
3543             if (HAS_TEXT(next) || JUMPABLE(next)) {
3544                 U8 *s;
3545                 regnode *text_node = next;
3546
3547                 if (! HAS_TEXT(text_node)) FIND_NEXT_IMPT(text_node);
3548
3549                 if (! HAS_TEXT(text_node)) c1 = c2 = -1000;
3550                 else {
3551                     if (PL_regkind[(U8)OP(text_node)] == REF) {
3552                         c1 = c2 = -1000;
3553                         goto assume_ok_easy;
3554                     }
3555                     else { s = (U8*)STRING(text_node); }
3556
3557                     if (!UTF) {
3558                         c2 = c1 = *s;
3559                         if (OP(text_node) == EXACTF || OP(text_node) == REFF)
3560                             c2 = PL_fold[c1];
3561                         else if (OP(text_node) == EXACTFL || OP(text_node) == REFFL)
3562                             c2 = PL_fold_locale[c1];
3563                     }
3564                     else { /* UTF */
3565                         if (OP(text_node) == EXACTF || OP(text_node) == REFF) {
3566                              STRLEN ulen1, ulen2;
3567                              U8 tmpbuf1[UTF8_MAXLEN_UCLC+1];
3568                              U8 tmpbuf2[UTF8_MAXLEN_UCLC+1];
3569
3570                              to_utf8_lower((U8*)s, tmpbuf1, &ulen1);
3571                              to_utf8_upper((U8*)s, tmpbuf2, &ulen2);
3572
3573                              c1 = utf8n_to_uvuni(tmpbuf1, UTF8_MAXLEN, 0,
3574                                                  ckWARN(WARN_UTF8) ?
3575                                                  0 : UTF8_ALLOW_ANY);
3576                              c2 = utf8n_to_uvuni(tmpbuf2, UTF8_MAXLEN, 0,
3577                                                  ckWARN(WARN_UTF8) ?
3578                                                  0 : UTF8_ALLOW_ANY);
3579                         }
3580                         else {
3581                             c2 = c1 = utf8n_to_uvchr(s, UTF8_MAXLEN, 0,
3582                                                      ckWARN(WARN_UTF8) ?
3583                                                      0 : UTF8_ALLOW_ANY);
3584                         }
3585                     }
3586                 }
3587             }
3588             else
3589                 c1 = c2 = -1000;
3590         assume_ok_easy:
3591             PL_reginput = locinput;
3592             if (minmod) {
3593                 CHECKPOINT lastcp;
3594                 minmod = 0;
3595                 if (ln && regrepeat(scan, ln) < ln)
3596                     sayNO;
3597                 locinput = PL_reginput;
3598                 REGCP_SET(lastcp);
3599                 if (c1 != -1000) {
3600                     char *e; /* Should not check after this */
3601                     char *old = locinput;
3602                     int count = 0;
3603
3604                     if  (n == REG_INFTY) {
3605                         e = PL_regeol - 1;
3606                         if (do_utf8)
3607                             while (UTF8_IS_CONTINUATION(*(U8*)e))
3608                                 e--;
3609                     }
3610                     else if (do_utf8) {
3611                         int m = n - ln;
3612                         for (e = locinput;
3613                              m >0 && e + UTF8SKIP(e) <= PL_regeol; m--)
3614                             e += UTF8SKIP(e);
3615                     }
3616                     else {
3617                         e = locinput + n - ln;
3618                         if (e >= PL_regeol)
3619                             e = PL_regeol - 1;
3620                     }
3621                     while (1) {
3622                         /* Find place 'next' could work */
3623                         if (!do_utf8) {
3624                             if (c1 == c2) {
3625                                 while (locinput <= e &&
3626                                        UCHARAT(locinput) != c1)
3627                                     locinput++;
3628                             } else {
3629                                 while (locinput <= e
3630                                        && UCHARAT(locinput) != c1
3631                                        && UCHARAT(locinput) != c2)
3632                                     locinput++;
3633                             }
3634                             count = locinput - old;
3635                         }
3636                         else {
3637                             STRLEN len;
3638                             if (c1 == c2) {
3639                                 /* count initialised to
3640                                  * utf8_distance(old, locinput) */
3641                                 while (locinput <= e &&
3642                                        utf8n_to_uvchr((U8*)locinput,
3643                                                       UTF8_MAXLEN, &len,
3644                                                       ckWARN(WARN_UTF8) ?
3645                                                       0 : UTF8_ALLOW_ANY) != (UV)c1) {
3646                                     locinput += len;
3647                                     count++;
3648                                 }
3649                             } else {
3650                                 /* count initialised to
3651                                  * utf8_distance(old, locinput) */
3652                                 while (locinput <= e) {
3653                                     UV c = utf8n_to_uvchr((U8*)locinput,
3654                                                           UTF8_MAXLEN, &len,
3655                                                           ckWARN(WARN_UTF8) ?
3656                                                           0 : UTF8_ALLOW_ANY);
3657                                     if (c == (UV)c1 || c == (UV)c2)
3658                                         break;
3659                                     locinput += len;
3660                                     count++;
3661                                 }
3662                             }
3663                         }
3664                         if (locinput > e)
3665                             sayNO;
3666                         /* PL_reginput == old now */
3667                         if (locinput != old) {
3668                             ln = 1;     /* Did some */
3669                             if (regrepeat(scan, count) < count)
3670                                 sayNO;
3671                         }
3672                         /* PL_reginput == locinput now */
3673                         TRYPAREN(paren, ln, locinput);
3674                         PL_reginput = locinput; /* Could be reset... */
3675                         REGCP_UNWIND(lastcp);
3676                         /* Couldn't or didn't -- move forward. */
3677                         old = locinput;
3678                         if (do_utf8)
3679                             locinput += UTF8SKIP(locinput);
3680                         else
3681                             locinput++;
3682                         count = 1;
3683                     }
3684                 }
3685                 else
3686                 while (n >= ln || (n == REG_INFTY && ln > 0)) { /* ln overflow ? */
3687                     UV c;
3688                     if (c1 != -1000) {
3689                         if (do_utf8)
3690                             c = utf8n_to_uvchr((U8*)PL_reginput,
3691                                                UTF8_MAXLEN, 0,
3692                                                ckWARN(WARN_UTF8) ?
3693                                                0 : UTF8_ALLOW_ANY);
3694                         else
3695                             c = UCHARAT(PL_reginput);
3696                         /* If it could work, try it. */
3697                         if (c == (UV)c1 || c == (UV)c2)
3698                         {
3699                             TRYPAREN(paren, ln, PL_reginput);
3700                             REGCP_UNWIND(lastcp);
3701                         }
3702                     }
3703                     /* If it could work, try it. */
3704                     else if (c1 == -1000)
3705                     {
3706                         TRYPAREN(paren, ln, PL_reginput);
3707                         REGCP_UNWIND(lastcp);
3708                     }
3709                     /* Couldn't or didn't -- move forward. */
3710                     PL_reginput = locinput;
3711                     if (regrepeat(scan, 1)) {
3712                         ln++;
3713                         locinput = PL_reginput;
3714                     }
3715                     else
3716                         sayNO;
3717                 }
3718             }
3719             else {
3720                 CHECKPOINT lastcp;
3721                 n = regrepeat(scan, n);
3722                 locinput = PL_reginput;
3723                 if (ln < n && PL_regkind[(U8)OP(next)] == EOL &&
3724                     ((!PL_multiline && OP(next) != MEOL) ||
3725                         OP(next) == SEOL || OP(next) == EOS))
3726                 {
3727                     ln = n;                     /* why back off? */
3728                     /* ...because $ and \Z can match before *and* after
3729                        newline at the end.  Consider "\n\n" =~ /\n+\Z\n/.
3730                        We should back off by one in this case. */
3731                     if (UCHARAT(PL_reginput - 1) == '\n' && OP(next) != EOS)
3732                         ln--;
3733                 }
3734                 REGCP_SET(lastcp);
3735                 if (paren) {
3736                     UV c = 0;
3737                     while (n >= ln) {
3738                         if (c1 != -1000) {
3739                             if (do_utf8)
3740                                 c = utf8n_to_uvchr((U8*)PL_reginput,
3741                                                    UTF8_MAXLEN, 0,
3742                                                    ckWARN(WARN_UTF8) ?
3743                                                    0 : UTF8_ALLOW_ANY);
3744                             else
3745                                 c = UCHARAT(PL_reginput);
3746                         }
3747                         /* If it could work, try it. */
3748                         if (c1 == -1000 || c == (UV)c1 || c == (UV)c2)
3749                             {
3750                                 TRYPAREN(paren, n, PL_reginput);
3751                                 REGCP_UNWIND(lastcp);
3752                             }
3753                         /* Couldn't or didn't -- back up. */
3754                         n--;
3755                         PL_reginput = locinput = HOPc(locinput, -1);
3756                     }
3757                 }
3758                 else {
3759                     UV c = 0;
3760                     while (n >= ln) {
3761                         if (c1 != -1000) {
3762                             if (do_utf8)
3763                                 c = utf8n_to_uvchr((U8*)PL_reginput,
3764                                                    UTF8_MAXLEN, 0,
3765                                                    ckWARN(WARN_UTF8) ?
3766                                                    0 : UTF8_ALLOW_ANY);
3767                             else
3768                                 c = UCHARAT(PL_reginput);
3769                         }
3770                         /* If it could work, try it. */
3771                         if (c1 == -1000 || c == (UV)c1 || c == (UV)c2)
3772                             {
3773                                 TRYPAREN(paren, n, PL_reginput);
3774                                 REGCP_UNWIND(lastcp);
3775                             }
3776                         /* Couldn't or didn't -- back up. */
3777                         n--;
3778                         PL_reginput = locinput = HOPc(locinput, -1);
3779                     }
3780                 }
3781             }
3782             sayNO;
3783             break;
3784         case END:
3785             if (PL_reg_call_cc) {
3786                 re_cc_state *cur_call_cc = PL_reg_call_cc;
3787                 CURCUR *cctmp = PL_regcc;
3788                 regexp *re = PL_reg_re;
3789                 CHECKPOINT cp, lastcp;
3790                 
3791                 cp = regcppush(0);      /* Save *all* the positions. */
3792                 REGCP_SET(lastcp);
3793                 regcp_set_to(PL_reg_call_cc->ss); /* Restore parens of
3794                                                     the caller. */
3795                 PL_reginput = locinput; /* Make position available to
3796                                            the callcc. */
3797                 cache_re(PL_reg_call_cc->re);
3798                 PL_regcc = PL_reg_call_cc->cc;
3799                 PL_reg_call_cc = PL_reg_call_cc->prev;
3800                 if (regmatch(cur_call_cc->node)) {
3801                     PL_reg_call_cc = cur_call_cc;
3802                     regcpblow(cp);
3803                     sayYES;
3804                 }
3805                 REGCP_UNWIND(lastcp);
3806                 regcppop();
3807                 PL_reg_call_cc = cur_call_cc;
3808                 PL_regcc = cctmp;
3809                 PL_reg_re = re;
3810                 cache_re(re);
3811
3812                 DEBUG_r(
3813                     PerlIO_printf(Perl_debug_log,
3814                                   "%*s  continuation failed...\n",
3815                                   REPORT_CODE_OFF+PL_regindent*2, "")
3816                     );
3817                 sayNO_SILENT;
3818             }
3819             if (locinput < PL_regtill) {
3820                 DEBUG_r(PerlIO_printf(Perl_debug_log,
3821                                       "%sMatch possible, but length=%ld is smaller than requested=%ld, failing!%s\n",
3822                                       PL_colors[4],
3823                                       (long)(locinput - PL_reg_starttry),
3824                                       (long)(PL_regtill - PL_reg_starttry),
3825                                       PL_colors[5]));
3826                 sayNO_FINAL;            /* Cannot match: too short. */
3827             }
3828             PL_reginput = locinput;     /* put where regtry can find it */
3829             sayYES_FINAL;               /* Success! */
3830         case SUCCEED:
3831             PL_reginput = locinput;     /* put where regtry can find it */
3832             sayYES_LOUD;                /* Success! */
3833         case SUSPEND:
3834             n = 1;
3835             PL_reginput = locinput;
3836             goto do_ifmatch;    
3837         case UNLESSM:
3838             n = 0;
3839             if (scan->flags) {
3840                 s = HOPBACKc(locinput, scan->flags);
3841                 if (!s)
3842                     goto say_yes;
3843                 PL_reginput = s;
3844             }
3845             else
3846                 PL_reginput = locinput;
3847             PL_reg_flags ^= RF_false;
3848             goto do_ifmatch;
3849         case IFMATCH:
3850             n = 1;
3851             if (scan->flags) {
3852                 s = HOPBACKc(locinput, scan->flags);
3853                 if (!s)
3854                     goto say_no;
3855                 PL_reginput = s;
3856             }
3857             else
3858                 PL_reginput = locinput;
3859
3860           do_ifmatch:
3861             inner = NEXTOPER(NEXTOPER(scan));
3862             if (regmatch(inner) != n) {
3863                 if (n == 0)
3864                     PL_reg_flags ^= RF_false;
3865               say_no:
3866                 if (logical) {
3867                     logical = 0;
3868                     sw = 0;
3869                     goto do_longjump;
3870                 }
3871                 else
3872                     sayNO;
3873             }
3874             if (n == 0)
3875                 PL_reg_flags ^= RF_false;
3876           say_yes:
3877             if (logical) {
3878                 logical = 0;
3879                 sw = 1;
3880             }
3881             if (OP(scan) == SUSPEND) {
3882                 locinput = PL_reginput;
3883                 nextchr = UCHARAT(locinput);
3884             }
3885             /* FALL THROUGH. */
3886         case LONGJMP:
3887           do_longjump:
3888             next = scan + ARG(scan);
3889             if (next == scan)
3890                 next = NULL;
3891             break;
3892         default:
3893             PerlIO_printf(Perl_error_log, "%"UVxf" %d\n",
3894                           PTR2UV(scan), OP(scan));
3895             Perl_croak(aTHX_ "regexp memory corruption");
3896         }
3897       reenter:
3898         scan = next;
3899     }
3900
3901     /*
3902     * We get here only if there's trouble -- normally "case END" is
3903     * the terminating point.
3904     */
3905     Perl_croak(aTHX_ "corrupted regexp pointers");
3906     /*NOTREACHED*/
3907     sayNO;
3908
3909 yes_loud:
3910     DEBUG_r(
3911         PerlIO_printf(Perl_debug_log,
3912                       "%*s  %scould match...%s\n",
3913                       REPORT_CODE_OFF+PL_regindent*2, "", PL_colors[4],PL_colors[5])
3914         );
3915     goto yes;
3916 yes_final:
3917     DEBUG_r(PerlIO_printf(Perl_debug_log, "%sMatch successful!%s\n",
3918                           PL_colors[4],PL_colors[5]));
3919 yes:
3920 #ifdef DEBUGGING
3921     PL_regindent--;
3922 #endif
3923
3924 #if 0                                   /* Breaks $^R */
3925     if (unwind)
3926         regcpblow(firstcp);
3927 #endif
3928     return 1;
3929
3930 no:
3931     DEBUG_r(
3932         PerlIO_printf(Perl_debug_log,
3933                       "%*s  %sfailed...%s\n",
3934                       REPORT_CODE_OFF+PL_regindent*2, "",PL_colors[4],PL_colors[5])
3935         );
3936     goto do_no;
3937 no_final:
3938 do_no:
3939     if (unwind) {
3940         re_unwind_t *uw = SSPTRt(unwind,re_unwind_t);
3941
3942         switch (uw->type) {
3943         case RE_UNWIND_BRANCH:
3944         case RE_UNWIND_BRANCHJ:
3945         {
3946             re_unwind_branch_t *uwb = &(uw->branch);
3947             I32 lastparen = uwb->lastparen;
3948         
3949             REGCP_UNWIND(uwb->lastcp);
3950             for (n = *PL_reglastparen; n > lastparen; n--)
3951                 PL_regendp[n] = -1;
3952             *PL_reglastparen = n;
3953             scan = next = uwb->next;
3954             if ( !scan ||
3955                  OP(scan) != (uwb->type == RE_UNWIND_BRANCH
3956                               ? BRANCH : BRANCHJ) ) {           /* Failure */
3957                 unwind = uwb->prev;
3958 #ifdef DEBUGGING
3959                 PL_regindent--;
3960 #endif
3961                 goto do_no;
3962             }
3963             /* Have more choice yet.  Reuse the same uwb.  */
3964             /*SUPPRESS 560*/
3965             if ((n = (uwb->type == RE_UNWIND_BRANCH
3966                       ? NEXT_OFF(next) : ARG(next))))
3967                 next += n;
3968             else
3969                 next = NULL;    /* XXXX Needn't unwinding in this case... */
3970             uwb->next = next;
3971             next = NEXTOPER(scan);
3972             if (uwb->type == RE_UNWIND_BRANCHJ)
3973                 next = NEXTOPER(next);
3974             locinput = uwb->locinput;
3975             nextchr = uwb->nextchr;
3976 #ifdef DEBUGGING
3977             PL_regindent = uwb->regindent;
3978 #endif
3979
3980             goto reenter;
3981         }
3982         /* NOT REACHED */
3983         default:
3984             Perl_croak(aTHX_ "regexp unwind memory corruption");
3985         }
3986         /* NOT REACHED */
3987     }
3988 #ifdef DEBUGGING
3989     PL_regindent--;
3990 #endif
3991     return 0;
3992 }
3993
3994 /*
3995  - regrepeat - repeatedly match something simple, report how many
3996  */
3997 /*
3998  * [This routine now assumes that it will only match on things of length 1.
3999  * That was true before, but now we assume scan - reginput is the count,
4000  * rather than incrementing count on every character.  [Er, except utf8.]]
4001  */
4002 STATIC I32
4003 S_regrepeat(pTHX_ regnode *p, I32 max)
4004 {
4005     register char *scan;
4006     register I32 c;
4007     register char *loceol = PL_regeol;
4008     register I32 hardcount = 0;
4009     register bool do_utf8 = PL_reg_match_utf8;
4010
4011     scan = PL_reginput;
4012     if (max == REG_INFTY)
4013         max = I32_MAX;
4014     else if (max < loceol - scan)
4015       loceol = scan + max;
4016     switch (OP(p)) {
4017     case REG_ANY:
4018         if (do_utf8) {
4019             loceol = PL_regeol;
4020             while (scan < loceol && hardcount < max && *scan != '\n') {
4021                 scan += UTF8SKIP(scan);
4022                 hardcount++;
4023             }
4024         } else {
4025             while (scan < loceol && *scan != '\n')
4026                 scan++;
4027         }
4028         break;
4029     case SANY:
4030         if (do_utf8) {
4031             loceol = PL_regeol;
4032             while (scan < loceol && hardcount < max) {
4033                 scan += UTF8SKIP(scan);
4034                 hardcount++;
4035             }
4036         }
4037         else
4038             scan = loceol;
4039         break;
4040     case CANY:
4041         scan = loceol;
4042         break;
4043     case EXACT:         /* length of string is 1 */
4044         c = (U8)*STRING(p);
4045         while (scan < loceol && UCHARAT(scan) == c)
4046             scan++;
4047         break;
4048     case EXACTF:        /* length of string is 1 */
4049         c = (U8)*STRING(p);
4050         while (scan < loceol &&
4051                (UCHARAT(scan) == c || UCHARAT(scan) == PL_fold[c]))
4052             scan++;
4053         break;
4054     case EXACTFL:       /* length of string is 1 */
4055         PL_reg_flags |= RF_tainted;
4056         c = (U8)*STRING(p);
4057         while (scan < loceol &&
4058                (UCHARAT(scan) == c || UCHARAT(scan) == PL_fold_locale[c]))
4059             scan++;
4060         break;
4061     case ANYOF:
4062         if (do_utf8) {
4063             loceol = PL_regeol;
4064             while (hardcount < max && scan < loceol &&
4065                    reginclass(p, (U8*)scan, 0, do_utf8)) {
4066                 scan += UTF8SKIP(scan);
4067                 hardcount++;
4068             }
4069         } else {
4070             while (scan < loceol && REGINCLASS(p, (U8*)scan))
4071                 scan++;
4072         }
4073         break;
4074     case ALNUM:
4075         if (do_utf8) {
4076             loceol = PL_regeol;
4077             LOAD_UTF8_CHARCLASS(alnum,"a");
4078             while (hardcount < max && scan < loceol &&
4079                    swash_fetch(PL_utf8_alnum, (U8*)scan, do_utf8)) {
4080                 scan += UTF8SKIP(scan);
4081                 hardcount++;
4082             }
4083         } else {
4084             while (scan < loceol && isALNUM(*scan))
4085                 scan++;
4086         }
4087         break;
4088     case ALNUML:
4089         PL_reg_flags |= RF_tainted;
4090         if (do_utf8) {
4091             loceol = PL_regeol;
4092             while (hardcount < max && scan < loceol &&
4093                    isALNUM_LC_utf8((U8*)scan)) {
4094                 scan += UTF8SKIP(scan);
4095                 hardcount++;
4096             }
4097         } else {
4098             while (scan < loceol && isALNUM_LC(*scan))
4099                 scan++;
4100         }
4101         break;
4102     case NALNUM:
4103         if (do_utf8) {
4104             loceol = PL_regeol;
4105             LOAD_UTF8_CHARCLASS(alnum,"a");
4106             while (hardcount < max && scan < loceol &&
4107                    !swash_fetch(PL_utf8_alnum, (U8*)scan, do_utf8)) {
4108                 scan += UTF8SKIP(scan);
4109                 hardcount++;
4110             }
4111         } else {
4112             while (scan < loceol && !isALNUM(*scan))
4113                 scan++;
4114         }
4115         break;
4116     case NALNUML:
4117         PL_reg_flags |= RF_tainted;
4118         if (do_utf8) {
4119             loceol = PL_regeol;
4120             while (hardcount < max && scan < loceol &&
4121                    !isALNUM_LC_utf8((U8*)scan)) {
4122                 scan += UTF8SKIP(scan);
4123                 hardcount++;
4124             }
4125         } else {
4126             while (scan < loceol && !isALNUM_LC(*scan))
4127                 scan++;
4128         }
4129         break;
4130     case SPACE:
4131         if (do_utf8) {
4132             loceol = PL_regeol;
4133             LOAD_UTF8_CHARCLASS(space," ");
4134             while (hardcount < max && scan < loceol &&
4135                    (*scan == ' ' ||
4136                     swash_fetch(PL_utf8_space,(U8*)scan, do_utf8))) {
4137                 scan += UTF8SKIP(scan);
4138                 hardcount++;
4139             }
4140         } else {
4141             while (scan < loceol && isSPACE(*scan))
4142                 scan++;
4143         }
4144         break;
4145     case SPACEL:
4146         PL_reg_flags |= RF_tainted;
4147         if (do_utf8) {
4148             loceol = PL_regeol;
4149             while (hardcount < max && scan < loceol &&
4150                    (*scan == ' ' || isSPACE_LC_utf8((U8*)scan))) {
4151                 scan += UTF8SKIP(scan);
4152                 hardcount++;
4153             }
4154         } else {
4155             while (scan < loceol && isSPACE_LC(*scan))
4156                 scan++;
4157         }
4158         break;
4159     case NSPACE:
4160         if (do_utf8) {
4161             loceol = PL_regeol;
4162             LOAD_UTF8_CHARCLASS(space," ");
4163             while (hardcount < max && scan < loceol &&
4164                    !(*scan == ' ' ||
4165                      swash_fetch(PL_utf8_space,(U8*)scan, do_utf8))) {
4166                 scan += UTF8SKIP(scan);
4167                 hardcount++;
4168             }
4169         } else {
4170             while (scan < loceol && !isSPACE(*scan))
4171                 scan++;
4172             break;
4173         }
4174     case NSPACEL:
4175         PL_reg_flags |= RF_tainted;
4176         if (do_utf8) {
4177             loceol = PL_regeol;
4178             while (hardcount < max && scan < loceol &&
4179                    !(*scan == ' ' || isSPACE_LC_utf8((U8*)scan))) {
4180                 scan += UTF8SKIP(scan);
4181                 hardcount++;
4182             }
4183         } else {
4184             while (scan < loceol && !isSPACE_LC(*scan))
4185                 scan++;
4186         }
4187         break;
4188     case DIGIT:
4189         if (do_utf8) {
4190             loceol = PL_regeol;
4191             LOAD_UTF8_CHARCLASS(digit,"0");
4192             while (hardcount < max && scan < loceol &&
4193                    swash_fetch(PL_utf8_digit, (U8*)scan, do_utf8)) {
4194                 scan += UTF8SKIP(scan);
4195                 hardcount++;
4196             }
4197         } else {
4198             while (scan < loceol && isDIGIT(*scan))
4199                 scan++;
4200         }
4201         break;
4202     case NDIGIT:
4203         if (do_utf8) {
4204             loceol = PL_regeol;
4205             LOAD_UTF8_CHARCLASS(digit,"0");
4206             while (hardcount < max && scan < loceol &&
4207                    !swash_fetch(PL_utf8_digit, (U8*)scan, do_utf8)) {
4208                 scan += UTF8SKIP(scan);
4209                 hardcount++;
4210             }
4211         } else {
4212             while (scan < loceol && !isDIGIT(*scan))
4213                 scan++;
4214         }
4215         break;
4216     default:            /* Called on something of 0 width. */
4217         break;          /* So match right here or not at all. */
4218     }
4219
4220     if (hardcount)
4221         c = hardcount;
4222     else
4223         c = scan - PL_reginput;
4224     PL_reginput = scan;
4225
4226     DEBUG_r(
4227         {
4228                 SV *prop = sv_newmortal();
4229
4230                 regprop(prop, p);
4231                 PerlIO_printf(Perl_debug_log,
4232                               "%*s  %s can match %"IVdf" times out of %"IVdf"...\n",
4233                               REPORT_CODE_OFF+1, "", SvPVX(prop),(IV)c,(IV)max);
4234         });
4235
4236     return(c);
4237 }
4238
4239 /*
4240  - regrepeat_hard - repeatedly match something, report total lenth and length
4241  *
4242  * The repeater is supposed to have constant length.
4243  */
4244
4245 STATIC I32
4246 S_regrepeat_hard(pTHX_ regnode *p, I32 max, I32 *lp)
4247 {
4248     register char *scan = Nullch;
4249     register char *start;
4250     register char *loceol = PL_regeol;
4251     I32 l = 0;
4252     I32 count = 0, res = 1;
4253
4254     if (!max)
4255         return 0;
4256
4257     start = PL_reginput;
4258     if (PL_reg_match_utf8) {
4259         while (PL_reginput < loceol && (scan = PL_reginput, res = regmatch(p))) {
4260             if (!count++) {
4261                 l = 0;
4262                 while (start < PL_reginput) {
4263                     l++;
4264                     start += UTF8SKIP(start);
4265                 }
4266                 *lp = l;
4267                 if (l == 0)
4268                     return max;
4269             }
4270             if (count == max)
4271                 return count;
4272         }
4273     }
4274     else {
4275         while (PL_reginput < loceol && (scan = PL_reginput, res = regmatch(p))) {
4276             if (!count++) {
4277                 *lp = l = PL_reginput - start;
4278                 if (max != REG_INFTY && l*max < loceol - scan)
4279                     loceol = scan + l*max;
4280                 if (l == 0)
4281                     return max;
4282             }
4283         }
4284     }
4285     if (!res)
4286         PL_reginput = scan;
4287
4288     return count;
4289 }
4290
4291 /*
4292 - regclass_swash - prepare the utf8 swash
4293 */
4294
4295 SV *
4296 Perl_regclass_swash(pTHX_ register regnode* node, bool doinit, SV** listsvp, SV **altsvp)
4297 {
4298     SV *sw  = NULL;
4299     SV *si  = NULL;
4300     SV *alt = NULL;
4301
4302     if (PL_regdata && PL_regdata->count) {
4303         U32 n = ARG(node);
4304
4305         if (PL_regdata->what[n] == 's') {
4306             SV *rv = (SV*)PL_regdata->data[n];
4307             AV *av = (AV*)SvRV((SV*)rv);
4308             SV **ary = AvARRAY(av);
4309             SV **a, **b;
4310         
4311             /* See the end of regcomp.c:S_reglass() for
4312              * documentation of these array elements. */
4313
4314             si = *ary;
4315             a  = SvTYPE(ary[1]) == SVt_RV   ? &ary[1] : 0;
4316             b  = SvTYPE(ary[2]) == SVt_PVAV ? &ary[2] : 0;
4317
4318             if (a)
4319                 sw = *a;
4320             else if (si && doinit) {
4321                 sw = swash_init("utf8", "", si, 1, 0);
4322                 (void)av_store(av, 1, sw);
4323             }
4324             if (b)
4325                 alt = *b;
4326         }
4327     }
4328         
4329     if (listsvp)
4330         *listsvp = si;
4331     if (altsvp)
4332         *altsvp  = alt;
4333
4334     return sw;
4335 }
4336
4337 /*
4338  - reginclass - determine if a character falls into a character class
4339  
4340   The n is the ANYOF regnode, the p is the target string, lenp
4341   is pointer to the maximum length of how far to go in the p
4342   (if the lenp is zero, UTF8SKIP(p) is used),
4343   do_utf8 tells whether the target string is in UTF-8.
4344
4345  */
4346
4347 STATIC bool
4348 S_reginclass(pTHX_ register regnode *n, register U8* p, STRLEN* lenp, register bool do_utf8)
4349 {
4350     char flags = ANYOF_FLAGS(n);
4351     bool match = FALSE;
4352     UV c = *p;
4353     STRLEN len = 0;
4354     STRLEN plen;
4355
4356     if (do_utf8 && !UTF8_IS_INVARIANT(c))
4357          c = utf8n_to_uvchr(p, UTF8_MAXLEN, &len,
4358                             ckWARN(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY);
4359
4360     plen = lenp ? *lenp : UNISKIP(NATIVE_TO_UNI(c));
4361     if (do_utf8 || (flags & ANYOF_UNICODE)) {
4362         if (lenp)
4363             *lenp = 0;
4364         if (do_utf8 && !ANYOF_RUNTIME(n)) {
4365             if (len != (STRLEN)-1 && c < 256 && ANYOF_BITMAP_TEST(n, c))
4366                 match = TRUE;
4367         }
4368         if (!match && do_utf8 && (flags & ANYOF_UNICODE_ALL) && c >= 256)
4369             match = TRUE;
4370         if (!match) {
4371             AV *av;
4372             SV *sw = regclass_swash(n, TRUE, 0, (SV**)&av);
4373         
4374             if (sw) {
4375                 if (swash_fetch(sw, p, do_utf8))
4376                     match = TRUE;
4377                 else if (flags & ANYOF_FOLD) {
4378                     if (!match && lenp && av) {
4379                         I32 i;
4380                       
4381                         for (i = 0; i <= av_len(av); i++) {
4382                             SV* sv = *av_fetch(av, i, FALSE);
4383                             STRLEN len;
4384                             char *s = SvPV(sv, len);
4385                         
4386                             if (len <= plen && memEQ(s, (char*)p, len)) {
4387                                 *lenp = len;
4388                                 match = TRUE;
4389                                 break;
4390                             }
4391                         }
4392                     }
4393                     if (!match) {
4394                         U8 tmpbuf[UTF8_MAXLEN_FOLD+1];
4395                         STRLEN tmplen;
4396
4397                         to_utf8_fold(p, tmpbuf, &tmplen);
4398                         if (swash_fetch(sw, tmpbuf, do_utf8))
4399                             match = TRUE;
4400                     }
4401                 }
4402             }
4403         }
4404         if (match && lenp && *lenp == 0)
4405             *lenp = UNISKIP(NATIVE_TO_UNI(c));
4406     }
4407     if (!match && c < 256) {
4408         if (ANYOF_BITMAP_TEST(n, c))
4409             match = TRUE;
4410         else if (flags & ANYOF_FOLD) {
4411             U8 f;
4412
4413             if (flags & ANYOF_LOCALE) {
4414                 PL_reg_flags |= RF_tainted;
4415                 f = PL_fold_locale[c];
4416             }
4417             else
4418                 f = PL_fold[c];
4419             if (f != c && ANYOF_BITMAP_TEST(n, f))
4420                 match = TRUE;
4421         }
4422         
4423         if (!match && (flags & ANYOF_CLASS)) {
4424             PL_reg_flags |= RF_tainted;
4425             if (
4426                 (ANYOF_CLASS_TEST(n, ANYOF_ALNUM)   &&  isALNUM_LC(c))  ||
4427                 (ANYOF_CLASS_TEST(n, ANYOF_NALNUM)  && !isALNUM_LC(c))  ||
4428                 (ANYOF_CLASS_TEST(n, ANYOF_SPACE)   &&  isSPACE_LC(c))  ||
4429                 (ANYOF_CLASS_TEST(n, ANYOF_NSPACE)  && !isSPACE_LC(c))  ||
4430                 (ANYOF_CLASS_TEST(n, ANYOF_DIGIT)   &&  isDIGIT_LC(c))  ||
4431                 (ANYOF_CLASS_TEST(n, ANYOF_NDIGIT)  && !isDIGIT_LC(c))  ||
4432                 (ANYOF_CLASS_TEST(n, ANYOF_ALNUMC)  &&  isALNUMC_LC(c)) ||
4433                 (ANYOF_CLASS_TEST(n, ANYOF_NALNUMC) && !isALNUMC_LC(c)) ||
4434                 (ANYOF_CLASS_TEST(n, ANYOF_ALPHA)   &&  isALPHA_LC(c))  ||
4435                 (ANYOF_CLASS_TEST(n, ANYOF_NALPHA)  && !isALPHA_LC(c))  ||
4436                 (ANYOF_CLASS_TEST(n, ANYOF_ASCII)   &&  isASCII(c))     ||
4437                 (ANYOF_CLASS_TEST(n, ANYOF_NASCII)  && !isASCII(c))     ||
4438                 (ANYOF_CLASS_TEST(n, ANYOF_CNTRL)   &&  isCNTRL_LC(c))  ||
4439                 (ANYOF_CLASS_TEST(n, ANYOF_NCNTRL)  && !isCNTRL_LC(c))  ||
4440                 (ANYOF_CLASS_TEST(n, ANYOF_GRAPH)   &&  isGRAPH_LC(c))  ||
4441                 (ANYOF_CLASS_TEST(n, ANYOF_NGRAPH)  && !isGRAPH_LC(c))  ||
4442                 (ANYOF_CLASS_TEST(n, ANYOF_LOWER)   &&  isLOWER_LC(c))  ||
4443                 (ANYOF_CLASS_TEST(n, ANYOF_NLOWER)  && !isLOWER_LC(c))  ||
4444                 (ANYOF_CLASS_TEST(n, ANYOF_PRINT)   &&  isPRINT_LC(c))  ||
4445                 (ANYOF_CLASS_TEST(n, ANYOF_NPRINT)  && !isPRINT_LC(c))  ||
4446                 (ANYOF_CLASS_TEST(n, ANYOF_PUNCT)   &&  isPUNCT_LC(c))  ||
4447                 (ANYOF_CLASS_TEST(n, ANYOF_NPUNCT)  && !isPUNCT_LC(c))  ||
4448                 (ANYOF_CLASS_TEST(n, ANYOF_UPPER)   &&  isUPPER_LC(c))  ||
4449                 (ANYOF_CLASS_TEST(n, ANYOF_NUPPER)  && !isUPPER_LC(c))  ||
4450                 (ANYOF_CLASS_TEST(n, ANYOF_XDIGIT)  &&  isXDIGIT(c))    ||
4451                 (ANYOF_CLASS_TEST(n, ANYOF_NXDIGIT) && !isXDIGIT(c))    ||
4452                 (ANYOF_CLASS_TEST(n, ANYOF_PSXSPC)  &&  isPSXSPC(c))    ||
4453                 (ANYOF_CLASS_TEST(n, ANYOF_NPSXSPC) && !isPSXSPC(c))    ||
4454                 (ANYOF_CLASS_TEST(n, ANYOF_BLANK)   &&  isBLANK(c))     ||
4455                 (ANYOF_CLASS_TEST(n, ANYOF_NBLANK)  && !isBLANK(c))
4456                 ) /* How's that for a conditional? */
4457             {
4458                 match = TRUE;
4459             }
4460         }
4461     }
4462
4463     return (flags & ANYOF_INVERT) ? !match : match;
4464 }
4465
4466 STATIC U8 *
4467 S_reghop(pTHX_ U8 *s, I32 off)
4468 {
4469     return S_reghop3(aTHX_ s, off, (U8*)(off >= 0 ? PL_regeol : PL_bostr));
4470 }
4471
4472 STATIC U8 *
4473 S_reghop3(pTHX_ U8 *s, I32 off, U8* lim)
4474 {
4475     if (off >= 0) {
4476         while (off-- && s < lim) {
4477             /* XXX could check well-formedness here */
4478             s += UTF8SKIP(s);
4479         }
4480     }
4481     else {
4482         while (off++) {
4483             if (s > lim) {
4484                 s--;
4485                 if (UTF8_IS_CONTINUED(*s)) {
4486                     while (s > (U8*)lim && UTF8_IS_CONTINUATION(*s))
4487                         s--;
4488                 }
4489                 /* XXX could check well-formedness here */
4490             }
4491         }
4492     }
4493     return s;
4494 }
4495
4496 STATIC U8 *
4497 S_reghopmaybe(pTHX_ U8 *s, I32 off)
4498 {
4499     return S_reghopmaybe3(aTHX_ s, off, (U8*)(off >= 0 ? PL_regeol : PL_bostr));
4500 }
4501
4502 STATIC U8 *
4503 S_reghopmaybe3(pTHX_ U8* s, I32 off, U8* lim)
4504 {
4505     if (off >= 0) {
4506         while (off-- && s < lim) {
4507             /* XXX could check well-formedness here */
4508             s += UTF8SKIP(s);
4509         }
4510         if (off >= 0)
4511             return 0;
4512     }
4513     else {
4514         while (off++) {
4515             if (s > lim) {
4516                 s--;
4517                 if (UTF8_IS_CONTINUED(*s)) {
4518                     while (s > (U8*)lim && UTF8_IS_CONTINUATION(*s))
4519                         s--;
4520                 }
4521                 /* XXX could check well-formedness here */
4522             }
4523             else
4524                 break;
4525         }
4526         if (off <= 0)
4527             return 0;
4528     }
4529     return s;
4530 }
4531
4532 static void
4533 restore_pos(pTHX_ void *arg)
4534 {
4535     if (PL_reg_eval_set) {
4536         if (PL_reg_oldsaved) {
4537             PL_reg_re->subbeg = PL_reg_oldsaved;
4538             PL_reg_re->sublen = PL_reg_oldsavedlen;
4539             RX_MATCH_COPIED_on(PL_reg_re);
4540         }
4541         PL_reg_magic->mg_len = PL_reg_oldpos;
4542         PL_reg_eval_set = 0;
4543         PL_curpm = PL_reg_oldcurpm;
4544     }   
4545 }
4546
4547 STATIC void
4548 S_to_utf8_substr(pTHX_ register regexp *prog)
4549 {
4550     SV* sv;
4551     if (prog->float_substr && !prog->float_utf8) {
4552         prog->float_utf8 = sv = NEWSV(117, 0);
4553         SvSetSV(sv, prog->float_substr);
4554         sv_utf8_upgrade(sv);
4555         if (SvTAIL(prog->float_substr))
4556             SvTAIL_on(sv);
4557         if (prog->float_substr == prog->check_substr)
4558             prog->check_utf8 = sv;
4559     }
4560     if (prog->anchored_substr && !prog->anchored_utf8) {
4561         prog->anchored_utf8 = sv = NEWSV(118, 0);
4562         SvSetSV(sv, prog->anchored_substr);
4563         sv_utf8_upgrade(sv);
4564         if (SvTAIL(prog->anchored_substr))
4565             SvTAIL_on(sv);
4566         if (prog->anchored_substr == prog->check_substr)
4567             prog->check_utf8 = sv;
4568     }
4569 }
4570
4571 STATIC void
4572 S_to_byte_substr(pTHX_ register regexp *prog)
4573 {
4574     SV* sv;
4575     if (prog->float_utf8 && !prog->float_substr) {
4576         prog->float_substr = sv = NEWSV(117, 0);
4577         SvSetSV(sv, prog->float_utf8);
4578         if (sv_utf8_downgrade(sv, TRUE)) {
4579             if (SvTAIL(prog->float_utf8))
4580                 SvTAIL_on(sv);
4581         } else {
4582             SvREFCNT_dec(sv);
4583             prog->float_substr = sv = &PL_sv_undef;
4584         }
4585         if (prog->float_utf8 == prog->check_utf8)
4586             prog->check_substr = sv;
4587     }
4588     if (prog->anchored_utf8 && !prog->anchored_substr) {
4589         prog->anchored_substr = sv = NEWSV(118, 0);
4590         SvSetSV(sv, prog->anchored_utf8);
4591         if (sv_utf8_downgrade(sv, TRUE)) {
4592             if (SvTAIL(prog->anchored_utf8))
4593                 SvTAIL_on(sv);
4594         } else {
4595             SvREFCNT_dec(sv);
4596             prog->anchored_substr = sv = &PL_sv_undef;
4597         }
4598         if (prog->anchored_utf8 == prog->check_utf8)
4599             prog->check_substr = sv;
4600     }
4601 }