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