Re-instate Perl_utf8_to_uv without checking parameter - added in change 7075.
[p5sagit/p5-mst-13.2.git] / regcomp.c
1 /*    regcomp.c
2  */
3
4 /*
5  * "A fair jaw-cracker dwarf-language must be."  --Samwise Gamgee
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_pregcomp my_regcomp
36 #  define Perl_regdump my_regdump
37 #  define Perl_regprop my_regprop
38 #  define Perl_pregfree my_regfree
39 #  define Perl_re_intuit_string my_re_intuit_string
40 /* *These* symbols are masked to allow static link. */
41 #  define Perl_regnext my_regnext
42 #  define Perl_save_re_context my_save_re_context
43 #  define Perl_reginitcolors my_reginitcolors 
44
45 #  define PERL_NO_GET_CONTEXT
46 #endif 
47
48 /*SUPPRESS 112*/
49 /*
50  * pregcomp and pregexec -- regsub and regerror are not used in perl
51  *
52  *      Copyright (c) 1986 by University of Toronto.
53  *      Written by Henry Spencer.  Not derived from licensed software.
54  *
55  *      Permission is granted to anyone to use this software for any
56  *      purpose on any computer system, and to redistribute it freely,
57  *      subject to the following restrictions:
58  *
59  *      1. The author is not responsible for the consequences of use of
60  *              this software, no matter how awful, even if they arise
61  *              from defects in it.
62  *
63  *      2. The origin of this software must not be misrepresented, either
64  *              by explicit claim or by omission.
65  *
66  *      3. Altered versions must be plainly marked as such, and must not
67  *              be misrepresented as being the original software.
68  *
69  *
70  ****    Alterations to Henry's code are...
71  ****
72  ****    Copyright (c) 1991-2000, Larry Wall
73  ****
74  ****    You may distribute under the terms of either the GNU General Public
75  ****    License or the Artistic License, as specified in the README file.
76
77  *
78  * Beware that some of this code is subtly aware of the way operator
79  * precedence is structured in regular expressions.  Serious changes in
80  * regular-expression syntax might require a total rethink.
81  */
82 #include "EXTERN.h"
83 #define PERL_IN_REGCOMP_C
84 #include "perl.h"
85
86 #ifdef PERL_IN_XSUB_RE
87 #  if defined(PERL_CAPI) || defined(PERL_OBJECT)
88 #    include "XSUB.h"
89 #  endif
90 #else
91 #  include "INTERN.h"
92 #endif
93
94 #define REG_COMP_C
95 #include "regcomp.h"
96
97 #ifdef op
98 #undef op
99 #endif /* op */
100
101 #ifdef MSDOS
102 # if defined(BUGGY_MSC6)
103  /* MSC 6.00A breaks on op/regexp.t test 85 unless we turn this off */
104  # pragma optimize("a",off)
105  /* But MSC 6.00A is happy with 'w', for aliases only across function calls*/
106  # pragma optimize("w",on )
107 # endif /* BUGGY_MSC6 */
108 #endif /* MSDOS */
109
110 #ifndef STATIC
111 #define STATIC  static
112 #endif
113
114 #define ISMULT1(c)      ((c) == '*' || (c) == '+' || (c) == '?')
115 #define ISMULT2(s)      ((*s) == '*' || (*s) == '+' || (*s) == '?' || \
116         ((*s) == '{' && regcurly(s)))
117 #ifdef atarist
118 #define PERL_META       "^$.[()|?+*\\"
119 #else
120 #define META    "^$.[()|?+*\\"
121 #endif
122
123 #ifdef SPSTART
124 #undef SPSTART          /* dratted cpp namespace... */
125 #endif
126 /*
127  * Flags to be passed up and down.
128  */
129 #define WORST           0       /* Worst case. */
130 #define HASWIDTH        0x1     /* Known to match non-null strings. */
131 #define SIMPLE          0x2     /* Simple enough to be STAR/PLUS operand. */
132 #define SPSTART         0x4     /* Starts with * or +. */
133 #define TRYAGAIN        0x8     /* Weeded out a declaration. */
134
135 /* Length of a variant. */
136
137 typedef struct scan_data_t {
138     I32 len_min;
139     I32 len_delta;
140     I32 pos_min;
141     I32 pos_delta;
142     SV *last_found;
143     I32 last_end;                       /* min value, <0 unless valid. */
144     I32 last_start_min;
145     I32 last_start_max;
146     SV **longest;                       /* Either &l_fixed, or &l_float. */
147     SV *longest_fixed;
148     I32 offset_fixed;
149     SV *longest_float;
150     I32 offset_float_min;
151     I32 offset_float_max;
152     I32 flags;
153     I32 whilem_c;
154     struct regnode_charclass_class *start_class;
155 } scan_data_t;
156
157 /*
158  * Forward declarations for pregcomp()'s friends.
159  */
160
161 static scan_data_t zero_scan_data = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
162                                       0, 0, 0, 0, 0 };
163
164 #define SF_BEFORE_EOL           (SF_BEFORE_SEOL|SF_BEFORE_MEOL)
165 #define SF_BEFORE_SEOL          0x1
166 #define SF_BEFORE_MEOL          0x2
167 #define SF_FIX_BEFORE_EOL       (SF_FIX_BEFORE_SEOL|SF_FIX_BEFORE_MEOL)
168 #define SF_FL_BEFORE_EOL        (SF_FL_BEFORE_SEOL|SF_FL_BEFORE_MEOL)
169
170 #ifdef NO_UNARY_PLUS
171 #  define SF_FIX_SHIFT_EOL      (0+2)
172 #  define SF_FL_SHIFT_EOL               (0+4)
173 #else
174 #  define SF_FIX_SHIFT_EOL      (+2)
175 #  define SF_FL_SHIFT_EOL               (+4)
176 #endif
177
178 #define SF_FIX_BEFORE_SEOL      (SF_BEFORE_SEOL << SF_FIX_SHIFT_EOL)
179 #define SF_FIX_BEFORE_MEOL      (SF_BEFORE_MEOL << SF_FIX_SHIFT_EOL)
180
181 #define SF_FL_BEFORE_SEOL       (SF_BEFORE_SEOL << SF_FL_SHIFT_EOL)
182 #define SF_FL_BEFORE_MEOL       (SF_BEFORE_MEOL << SF_FL_SHIFT_EOL) /* 0x20 */
183 #define SF_IS_INF               0x40
184 #define SF_HAS_PAR              0x80
185 #define SF_IN_PAR               0x100
186 #define SF_HAS_EVAL             0x200
187 #define SCF_DO_SUBSTR           0x400
188 #define SCF_DO_STCLASS_AND      0x0800
189 #define SCF_DO_STCLASS_OR       0x1000
190 #define SCF_DO_STCLASS          (SCF_DO_STCLASS_AND|SCF_DO_STCLASS_OR)
191
192 #define RF_utf8         8
193 #define UTF (PL_reg_flags & RF_utf8)
194 #define LOC (PL_regflags & PMf_LOCALE)
195 #define FOLD (PL_regflags & PMf_FOLD)
196
197 #define OOB_CHAR8               1234
198 #define OOB_UTF8                123456
199 #define OOB_NAMEDCLASS          -1
200
201 #define CHR_SVLEN(sv) (UTF ? sv_len_utf8(sv) : SvCUR(sv))
202 #define CHR_DIST(a,b) (UTF ? utf8_distance(a,b) : a - b)
203
204
205 /* length of regex to show in messages that don't mark a position within */
206 #define RegexLengthToShowInErrorMessages 127
207
208 /*
209  * If MARKER[12] are adjusted, be sure to adjust the constants at the top
210  * of t/op/regmesg.t, the tests in t/op/re_tests, and those in
211  * op/pragma/warn/regcomp.
212  */
213 #define MARKER1 "HERE"      /* marker as it appears in the description */
214 #define MARKER2 " << HERE "  /* marker as it appears within the regex */
215    
216 #define REPORT_LOCATION " before " MARKER1 " mark in regex m/%.*s" MARKER2 "%s/"
217
218 /*
219  * Calls SAVEDESTRUCTOR_X if needed, then calls Perl_croak with the given
220  * arg. Show regex, up to a maximum length. If it's too long, chop and add
221  * "...".
222  */
223 #define FAIL(msg)                                                             \
224     STMT_START {                                                             \
225         char *ellipses = "";                                                 \
226         unsigned len = strlen(PL_regprecomp);                                \
227                                                                              \
228         if (!SIZE_ONLY)                                                      \
229             SAVEDESTRUCTOR_X(clear_re,(void*)PL_regcomp_rx);                 \
230                                                                              \
231         if (len > RegexLengthToShowInErrorMessages) {                        \
232             /* chop 10 shorter than the max, to ensure meaning of "..." */   \
233             len = RegexLengthToShowInErrorMessages - 10;                     \
234             ellipses = "...";                                                \
235         }                                                                    \
236         Perl_croak(aTHX_ "%s in regex m/%.*s%s/",                            \
237                    msg, (int)len, PL_regprecomp, ellipses);                  \
238     } STMT_END
239
240 /*
241  * Calls SAVEDESTRUCTOR_X if needed, then calls Perl_croak with the given
242  * args. Show regex, up to a maximum length. If it's too long, chop and add
243  * "...".
244  */
245 #define FAIL2(pat,msg)                                                        \
246     STMT_START {                                                             \
247         char *ellipses = "";                                                 \
248         unsigned len = strlen(PL_regprecomp);                                \
249                                                                              \
250         if (!SIZE_ONLY)                                                      \
251             SAVEDESTRUCTOR_X(clear_re,(void*)PL_regcomp_rx);                 \
252                                                                              \
253         if (len > RegexLengthToShowInErrorMessages) {                        \
254             /* chop 10 shorter than the max, to ensure meaning of "..." */   \
255             len = RegexLengthToShowInErrorMessages - 10;                     \
256             ellipses = "...";                                                \
257         }                                                                    \
258         S_re_croak2(aTHX_ pat, " in regex m/%.*s%s/",                        \
259                     msg, (int)len, PL_regprecomp, ellipses);                \
260     } STMT_END
261
262
263 /*
264  * Simple_vFAIL -- like FAIL, but marks the current location in the scan
265  */
266 #define Simple_vFAIL(m)                                                      \
267     STMT_START {                                                             \
268       unsigned offset = strlen(PL_regprecomp)-(PL_regxend-PL_regcomp_parse); \
269                                                                              \
270       Perl_croak(aTHX_ "%s" REPORT_LOCATION,               \
271                  m, (int)offset, PL_regprecomp, PL_regprecomp + offset);     \
272     } STMT_END
273
274 /*
275  * Calls SAVEDESTRUCTOR_X if needed, then Simple_vFAIL()
276  */
277 #define vFAIL(m)                                                             \
278     STMT_START {                                                             \
279       if (!SIZE_ONLY)                                                        \
280             SAVEDESTRUCTOR_X(clear_re,(void*)PL_regcomp_rx);                 \
281       Simple_vFAIL(m);                                                       \
282     } STMT_END
283
284 /*
285  * Like Simple_vFAIL(), but accepts two arguments.
286  */
287 #define Simple_vFAIL2(m,a1)                                                  \
288     STMT_START {                                                             \
289       unsigned offset = strlen(PL_regprecomp)-(PL_regxend-PL_regcomp_parse); \
290                                                                              \
291       S_re_croak2(aTHX_ m, REPORT_LOCATION, a1,       \
292                   (int)offset, PL_regprecomp, PL_regprecomp + offset);       \
293     } STMT_END
294
295 /*
296  * Calls SAVEDESTRUCTOR_X if needed, then Simple_vFAIL2().
297  */
298 #define vFAIL2(m,a1)                                                         \
299     STMT_START {                                                             \
300       if (!SIZE_ONLY)                                                        \
301             SAVEDESTRUCTOR_X(clear_re,(void*)PL_regcomp_rx);                 \
302       Simple_vFAIL2(m, a1);                                                  \
303     } STMT_END
304
305
306 /*
307  * Like Simple_vFAIL(), but accepts three arguments.
308  */
309 #define Simple_vFAIL3(m, a1, a2)                                             \
310     STMT_START {                                                             \
311       unsigned offset = strlen(PL_regprecomp)-(PL_regxend-PL_regcomp_parse); \
312                                                                              \
313       S_re_croak2(aTHX_ m, REPORT_LOCATION, a1, a2,   \
314                   (int)offset, PL_regprecomp, PL_regprecomp + offset);       \
315     } STMT_END
316
317 /*
318  * Calls SAVEDESTRUCTOR_X if needed, then Simple_vFAIL3().
319  */
320 #define vFAIL3(m,a1,a2)                                                      \
321     STMT_START {                                                             \
322       if (!SIZE_ONLY)                                                        \
323             SAVEDESTRUCTOR_X(clear_re,(void*)PL_regcomp_rx);                 \
324       Simple_vFAIL3(m, a1, a2);                                              \
325     } STMT_END
326
327 /*
328  * Like Simple_vFAIL(), but accepts four arguments.
329  */
330 #define Simple_vFAIL4(m, a1, a2, a3)                                         \
331     STMT_START {                                                             \
332       unsigned offset = strlen(PL_regprecomp)-(PL_regxend-PL_regcomp_parse); \
333                                                                              \
334       S_re_croak2(aTHX_ m, REPORT_LOCATION, a1, a2, a3,\
335                   (int)offset, PL_regprecomp, PL_regprecomp + offset);       \
336     } STMT_END
337
338 /*
339  * Like Simple_vFAIL(), but accepts five arguments.
340  */
341 #define Simple_vFAIL5(m, a1, a2, a3, a4)                                     \
342     STMT_START {                                                             \
343       unsigned offset = strlen(PL_regprecomp)-(PL_regxend-PL_regcomp_parse); \
344       S_re_croak2(aTHX_ m, REPORT_LOCATION, a1, a2, a3, a4,\
345                   (int)offset, PL_regprecomp, PL_regprecomp + offset);       \
346     } STMT_END
347
348
349 #define vWARN(loc,m)                                                         \
350     STMT_START {                                                             \
351         unsigned offset = strlen(PL_regprecomp)-(PL_regxend-(loc));          \
352         Perl_warner(aTHX_ WARN_REGEXP, "%s" REPORT_LOCATION,\
353                  m, (int)offset, PL_regprecomp, PL_regprecomp + offset);          \
354     } STMT_END                                                               \
355
356
357 #define vWARN2(loc, m, a1)                                                   \
358     STMT_START {                                                             \
359         unsigned offset = strlen(PL_regprecomp)-(PL_regxend-(loc));          \
360         Perl_warner(aTHX_ WARN_REGEXP, m REPORT_LOCATION,\
361                  a1,                                                         \
362                  (int)offset, PL_regprecomp, PL_regprecomp + offset);        \
363     } STMT_END
364
365 #define vWARN3(loc, m, a1, a2)                                               \
366     STMT_START {                                                             \
367       unsigned offset = strlen(PL_regprecomp) - (PL_regxend - (loc));        \
368         Perl_warner(aTHX_ WARN_REGEXP, m REPORT_LOCATION,                    \
369                  a1, a2,                                                     \
370                  (int)offset, PL_regprecomp, PL_regprecomp + offset);        \
371     } STMT_END
372
373 #define vWARN4(loc, m, a1, a2, a3)                                           \
374     STMT_START {                                                             \
375       unsigned offset = strlen(PL_regprecomp)-(PL_regxend-(loc));            \
376         Perl_warner(aTHX_ WARN_REGEXP, m REPORT_LOCATION,\
377                  a1, a2, a3,                                                 \
378                  (int)offset, PL_regprecomp, PL_regprecomp + offset);        \
379     } STMT_END
380
381
382
383 /* Allow for side effects in s */
384 #define REGC(c,s) STMT_START { if (!SIZE_ONLY) *(s) = (c); else (s);} STMT_END
385
386 static void clear_re(pTHXo_ void *r);
387
388 /* Mark that we cannot extend a found fixed substring at this point.
389    Updata the longest found anchored substring and the longest found
390    floating substrings if needed. */
391
392 STATIC void
393 S_scan_commit(pTHX_ scan_data_t *data)
394 {
395     dTHR;
396     STRLEN l = CHR_SVLEN(data->last_found);
397     STRLEN old_l = CHR_SVLEN(*data->longest);
398     
399     if ((l >= old_l) && ((l > old_l) || (data->flags & SF_BEFORE_EOL))) {
400         sv_setsv(*data->longest, data->last_found);
401         if (*data->longest == data->longest_fixed) {
402             data->offset_fixed = l ? data->last_start_min : data->pos_min;
403             if (data->flags & SF_BEFORE_EOL)
404                 data->flags 
405                     |= ((data->flags & SF_BEFORE_EOL) << SF_FIX_SHIFT_EOL);
406             else
407                 data->flags &= ~SF_FIX_BEFORE_EOL;
408         }
409         else {
410             data->offset_float_min = l ? data->last_start_min : data->pos_min;
411             data->offset_float_max = (l 
412                                       ? data->last_start_max 
413                                       : data->pos_min + data->pos_delta);
414             if (data->flags & SF_BEFORE_EOL)
415                 data->flags 
416                     |= ((data->flags & SF_BEFORE_EOL) << SF_FL_SHIFT_EOL);
417             else
418                 data->flags &= ~SF_FL_BEFORE_EOL;
419         }
420     }
421     SvCUR_set(data->last_found, 0);
422     data->last_end = -1;
423     data->flags &= ~SF_BEFORE_EOL;
424 }
425
426 /* Can match anything (initialization) */
427 STATIC void
428 S_cl_anything(pTHX_ struct regnode_charclass_class *cl)
429 {
430     int value;
431
432     ANYOF_CLASS_ZERO(cl);
433     for (value = 0; value < 256; ++value)
434         ANYOF_BITMAP_SET(cl, value);
435     cl->flags = ANYOF_EOS;
436     if (LOC)
437         cl->flags |= ANYOF_LOCALE;
438 }
439
440 /* Can match anything (initialization) */
441 STATIC int
442 S_cl_is_anything(pTHX_ struct regnode_charclass_class *cl)
443 {
444     int value;
445
446     for (value = 0; value <= ANYOF_MAX; value += 2)
447         if (ANYOF_CLASS_TEST(cl, value) && ANYOF_CLASS_TEST(cl, value + 1))
448             return 1;
449     for (value = 0; value < 256; ++value)
450         if (!ANYOF_BITMAP_TEST(cl, value))
451             return 0;
452     return 1;
453 }
454
455 /* Can match anything (initialization) */
456 STATIC void
457 S_cl_init(pTHX_ struct regnode_charclass_class *cl)
458 {
459     Zero(cl, 1, struct regnode_charclass_class);
460     cl->type = ANYOF;
461     cl_anything(cl);
462 }
463
464 STATIC void
465 S_cl_init_zero(pTHX_ struct regnode_charclass_class *cl)
466 {
467     Zero(cl, 1, struct regnode_charclass_class);
468     cl->type = ANYOF;
469     cl_anything(cl);
470     if (LOC)
471         cl->flags |= ANYOF_LOCALE;
472 }
473
474 /* 'And' a given class with another one.  Can create false positives */
475 /* We assume that cl is not inverted */
476 STATIC void
477 S_cl_and(pTHX_ struct regnode_charclass_class *cl,
478          struct regnode_charclass_class *and_with)
479 {
480     if (!(and_with->flags & ANYOF_CLASS)
481         && !(cl->flags & ANYOF_CLASS)
482         && (and_with->flags & ANYOF_LOCALE) == (cl->flags & ANYOF_LOCALE)
483         && !(and_with->flags & ANYOF_FOLD)
484         && !(cl->flags & ANYOF_FOLD)) {
485         int i;
486
487         if (and_with->flags & ANYOF_INVERT)
488             for (i = 0; i < ANYOF_BITMAP_SIZE; i++)
489                 cl->bitmap[i] &= ~and_with->bitmap[i];
490         else
491             for (i = 0; i < ANYOF_BITMAP_SIZE; i++)
492                 cl->bitmap[i] &= and_with->bitmap[i];
493     } /* XXXX: logic is complicated otherwise, leave it along for a moment. */
494     if (!(and_with->flags & ANYOF_EOS))
495         cl->flags &= ~ANYOF_EOS;
496 }
497
498 /* 'OR' a given class with another one.  Can create false positives */
499 /* We assume that cl is not inverted */
500 STATIC void
501 S_cl_or(pTHX_ struct regnode_charclass_class *cl, struct regnode_charclass_class *or_with)
502 {
503     if (or_with->flags & ANYOF_INVERT) {
504         /* We do not use
505          * (B1 | CL1) | (!B2 & !CL2) = (B1 | !B2 & !CL2) | (CL1 | (!B2 & !CL2))
506          *   <= (B1 | !B2) | (CL1 | !CL2)
507          * which is wasteful if CL2 is small, but we ignore CL2:
508          *   (B1 | CL1) | (!B2 & !CL2) <= (B1 | CL1) | !B2 = (B1 | !B2) | CL1
509          * XXXX Can we handle case-fold?  Unclear:
510          *   (OK1(i) | OK1(i')) | !(OK1(i) | OK1(i')) =
511          *   (OK1(i) | OK1(i')) | (!OK1(i) & !OK1(i'))
512          */
513         if ( (or_with->flags & ANYOF_LOCALE) == (cl->flags & ANYOF_LOCALE)
514              && !(or_with->flags & ANYOF_FOLD)
515              && !(cl->flags & ANYOF_FOLD) ) {
516             int i;
517
518             for (i = 0; i < ANYOF_BITMAP_SIZE; i++)
519                 cl->bitmap[i] |= ~or_with->bitmap[i];
520         } /* XXXX: logic is complicated otherwise */
521         else {
522             cl_anything(cl);
523         }
524     } else {
525         /* (B1 | CL1) | (B2 | CL2) = (B1 | B2) | (CL1 | CL2)) */
526         if ( (or_with->flags & ANYOF_LOCALE) == (cl->flags & ANYOF_LOCALE)
527              && (!(or_with->flags & ANYOF_FOLD) 
528                  || (cl->flags & ANYOF_FOLD)) ) {
529             int i;
530
531             /* OR char bitmap and class bitmap separately */
532             for (i = 0; i < ANYOF_BITMAP_SIZE; i++)
533                 cl->bitmap[i] |= or_with->bitmap[i];
534             if (or_with->flags & ANYOF_CLASS) {
535                 for (i = 0; i < ANYOF_CLASSBITMAP_SIZE; i++)
536                     cl->classflags[i] |= or_with->classflags[i];
537                 cl->flags |= ANYOF_CLASS;
538             }
539         }
540         else { /* XXXX: logic is complicated, leave it along for a moment. */
541             cl_anything(cl);
542         }
543     }
544     if (or_with->flags & ANYOF_EOS)
545         cl->flags |= ANYOF_EOS;
546 }
547
548 /* REx optimizer.  Converts nodes into quickier variants "in place".
549    Finds fixed substrings.  */
550
551 /* Stops at toplevel WHILEM as well as at `last'. At end *scanp is set
552    to the position after last scanned or to NULL. */
553
554 STATIC I32
555 S_study_chunk(pTHX_ regnode **scanp, I32 *deltap, regnode *last, scan_data_t *data, U32 flags)
556                         /* scanp: Start here (read-write). */
557                         /* deltap: Write maxlen-minlen here. */
558                         /* last: Stop before this one. */
559 {
560     dTHR;
561     I32 min = 0, pars = 0, code;
562     regnode *scan = *scanp, *next;
563     I32 delta = 0;
564     int is_inf = (flags & SCF_DO_SUBSTR) && (data->flags & SF_IS_INF);
565     int is_inf_internal = 0;            /* The studied chunk is infinite */
566     I32 is_par = OP(scan) == OPEN ? ARG(scan) : 0;
567     scan_data_t data_fake;
568     struct regnode_charclass_class and_with; /* Valid if flags & SCF_DO_STCLASS_OR */
569     
570     while (scan && OP(scan) != END && scan < last) {
571         /* Peephole optimizer: */
572
573         if (PL_regkind[(U8)OP(scan)] == EXACT) {
574             /* Merge several consecutive EXACTish nodes into one. */
575             regnode *n = regnext(scan);
576             U32 stringok = 1;
577 #ifdef DEBUGGING
578             regnode *stop = scan;
579 #endif 
580
581             next = scan + NODE_SZ_STR(scan);
582             /* Skip NOTHING, merge EXACT*. */
583             while (n &&
584                    ( PL_regkind[(U8)OP(n)] == NOTHING || 
585                      (stringok && (OP(n) == OP(scan))))
586                    && NEXT_OFF(n)
587                    && NEXT_OFF(scan) + NEXT_OFF(n) < I16_MAX) {
588                 if (OP(n) == TAIL || n > next)
589                     stringok = 0;
590                 if (PL_regkind[(U8)OP(n)] == NOTHING) {
591                     NEXT_OFF(scan) += NEXT_OFF(n);
592                     next = n + NODE_STEP_REGNODE;
593 #ifdef DEBUGGING
594                     if (stringok)
595                         stop = n;
596 #endif 
597                     n = regnext(n);
598                 }
599                 else {
600                     int oldl = STR_LEN(scan);
601                     regnode *nnext = regnext(n);
602                     
603                     if (oldl + STR_LEN(n) > U8_MAX) 
604                         break;
605                     NEXT_OFF(scan) += NEXT_OFF(n);
606                     STR_LEN(scan) += STR_LEN(n);
607                     next = n + NODE_SZ_STR(n);
608                     /* Now we can overwrite *n : */
609                     Move(STRING(n), STRING(scan) + oldl,
610                          STR_LEN(n), char);
611 #ifdef DEBUGGING
612                     if (stringok)
613                         stop = next - 1;
614 #endif 
615                     n = nnext;
616                 }
617             }
618 #ifdef DEBUGGING
619             /* Allow dumping */
620             n = scan + NODE_SZ_STR(scan);
621             while (n <= stop) {
622                 if (PL_regkind[(U8)OP(n)] != NOTHING || OP(n) == NOTHING) {
623                     OP(n) = OPTIMIZED;
624                     NEXT_OFF(n) = 0;
625                 }
626                 n++;
627             }
628 #endif
629         }
630         /* Follow the next-chain of the current node and optimize
631            away all the NOTHINGs from it.  */
632         if (OP(scan) != CURLYX) {
633             int max = (reg_off_by_arg[OP(scan)]
634                        ? I32_MAX
635                        /* I32 may be smaller than U16 on CRAYs! */
636                        : (I32_MAX < U16_MAX ? I32_MAX : U16_MAX));
637             int off = (reg_off_by_arg[OP(scan)] ? ARG(scan) : NEXT_OFF(scan));
638             int noff;
639             regnode *n = scan;
640             
641             /* Skip NOTHING and LONGJMP. */
642             while ((n = regnext(n))
643                    && ((PL_regkind[(U8)OP(n)] == NOTHING && (noff = NEXT_OFF(n)))
644                        || ((OP(n) == LONGJMP) && (noff = ARG(n))))
645                    && off + noff < max)
646                 off += noff;
647             if (reg_off_by_arg[OP(scan)])
648                 ARG(scan) = off;
649             else 
650                 NEXT_OFF(scan) = off;
651         }
652         /* The principal pseudo-switch.  Cannot be a switch, since we
653            look into several different things.  */
654         if (OP(scan) == BRANCH || OP(scan) == BRANCHJ 
655                    || OP(scan) == IFTHEN || OP(scan) == SUSPEND) {
656             next = regnext(scan);
657             code = OP(scan);
658             
659             if (OP(next) == code || code == IFTHEN || code == SUSPEND) { 
660                 I32 max1 = 0, min1 = I32_MAX, num = 0;
661                 struct regnode_charclass_class accum;
662                 
663                 if (flags & SCF_DO_SUBSTR) /* XXXX Add !SUSPEND? */
664                     scan_commit(data);  /* Cannot merge strings after this. */
665                 if (flags & SCF_DO_STCLASS)
666                     cl_init_zero(&accum);
667                 while (OP(scan) == code) {
668                     I32 deltanext, minnext, f = 0;
669                     struct regnode_charclass_class this_class;
670
671                     num++;
672                     data_fake.flags = 0;
673                     if (data)
674                         data_fake.whilem_c = data->whilem_c;
675                     next = regnext(scan);
676                     scan = NEXTOPER(scan);
677                     if (code != BRANCH)
678                         scan = NEXTOPER(scan);
679                     if (flags & SCF_DO_STCLASS) {
680                         cl_init(&this_class);
681                         data_fake.start_class = &this_class;
682                         f = SCF_DO_STCLASS_AND;
683                     }               
684                     /* we suppose the run is continuous, last=next...*/
685                     minnext = study_chunk(&scan, &deltanext, next,
686                                           &data_fake, f);
687                     if (min1 > minnext) 
688                         min1 = minnext;
689                     if (max1 < minnext + deltanext)
690                         max1 = minnext + deltanext;
691                     if (deltanext == I32_MAX)
692                         is_inf = is_inf_internal = 1;
693                     scan = next;
694                     if (data_fake.flags & (SF_HAS_PAR|SF_IN_PAR))
695                         pars++;
696                     if (data && (data_fake.flags & SF_HAS_EVAL))
697                         data->flags |= SF_HAS_EVAL;
698                     if (data)
699                         data->whilem_c = data_fake.whilem_c;
700                     if (flags & SCF_DO_STCLASS)
701                         cl_or(&accum, &this_class);
702                     if (code == SUSPEND) 
703                         break;
704                 }
705                 if (code == IFTHEN && num < 2) /* Empty ELSE branch */
706                     min1 = 0;
707                 if (flags & SCF_DO_SUBSTR) {
708                     data->pos_min += min1;
709                     data->pos_delta += max1 - min1;
710                     if (max1 != min1 || is_inf)
711                         data->longest = &(data->longest_float);
712                 }
713                 min += min1;
714                 delta += max1 - min1;
715                 if (flags & SCF_DO_STCLASS_OR) {
716                     cl_or(data->start_class, &accum);
717                     if (min1) {
718                         cl_and(data->start_class, &and_with);
719                         flags &= ~SCF_DO_STCLASS;
720                     }
721                 }
722                 else if (flags & SCF_DO_STCLASS_AND) {
723                     if (min1) {
724                         cl_and(data->start_class, &accum);
725                         flags &= ~SCF_DO_STCLASS;
726                     }
727                     else {
728                         /* Switch to OR mode: cache the old value of 
729                          * data->start_class */
730                         StructCopy(data->start_class, &and_with,
731                                    struct regnode_charclass_class);
732                         flags &= ~SCF_DO_STCLASS_AND;
733                         StructCopy(&accum, data->start_class,
734                                    struct regnode_charclass_class);
735                         flags |= SCF_DO_STCLASS_OR;
736                         data->start_class->flags |= ANYOF_EOS;
737                     }
738                 }
739             }
740             else if (code == BRANCHJ)   /* single branch is optimized. */
741                 scan = NEXTOPER(NEXTOPER(scan));
742             else                        /* single branch is optimized. */
743                 scan = NEXTOPER(scan);
744             continue;
745         }
746         else if (OP(scan) == EXACT) {
747             I32 l = STR_LEN(scan);
748             if (UTF) {
749                 unsigned char *s = (unsigned char *)STRING(scan);
750                 unsigned char *e = s + l;
751                 I32 newl = 0;
752                 while (s < e) {
753                     newl++;
754                     s += UTF8SKIP(s);
755                 }
756                 l = newl;
757             }
758             min += l;
759             if (flags & SCF_DO_SUBSTR) { /* Update longest substr. */
760                 /* The code below prefers earlier match for fixed
761                    offset, later match for variable offset.  */
762                 if (data->last_end == -1) { /* Update the start info. */
763                     data->last_start_min = data->pos_min;
764                     data->last_start_max = is_inf
765                         ? I32_MAX : data->pos_min + data->pos_delta; 
766                 }
767                 sv_catpvn(data->last_found, STRING(scan), STR_LEN(scan));
768                 data->last_end = data->pos_min + l;
769                 data->pos_min += l; /* As in the first entry. */
770                 data->flags &= ~SF_BEFORE_EOL;
771             }
772             if (flags & SCF_DO_STCLASS_AND) {
773                 /* Check whether it is compatible with what we know already! */
774                 int compat = 1;
775
776                 if (!(data->start_class->flags & (ANYOF_CLASS | ANYOF_LOCALE)) 
777                     && !ANYOF_BITMAP_TEST(data->start_class, *STRING(scan))
778                     && (!(data->start_class->flags & ANYOF_FOLD)
779                         || !ANYOF_BITMAP_TEST(data->start_class,
780                                               PL_fold[*(U8*)STRING(scan)])))
781                     compat = 0;
782                 ANYOF_CLASS_ZERO(data->start_class);
783                 ANYOF_BITMAP_ZERO(data->start_class);
784                 if (compat)
785                     ANYOF_BITMAP_SET(data->start_class, *STRING(scan));
786                 data->start_class->flags &= ~ANYOF_EOS;
787             }
788             else if (flags & SCF_DO_STCLASS_OR) {
789                 /* false positive possible if the class is case-folded */
790                 ANYOF_BITMAP_SET(data->start_class, *STRING(scan));     
791                 data->start_class->flags &= ~ANYOF_EOS;
792                 cl_and(data->start_class, &and_with);
793             }
794             flags &= ~SCF_DO_STCLASS;
795         }
796         else if (PL_regkind[(U8)OP(scan)] == EXACT) { /* But OP != EXACT! */
797             I32 l = STR_LEN(scan);
798
799             /* Search for fixed substrings supports EXACT only. */
800             if (flags & SCF_DO_SUBSTR) 
801                 scan_commit(data);
802             if (UTF) {
803                 unsigned char *s = (unsigned char *)STRING(scan);
804                 unsigned char *e = s + l;
805                 I32 newl = 0;
806                 while (s < e) {
807                     newl++;
808                     s += UTF8SKIP(s);
809                 }
810                 l = newl;
811             }
812             min += l;
813             if (data && (flags & SCF_DO_SUBSTR))
814                 data->pos_min += l;
815             if (flags & SCF_DO_STCLASS_AND) {
816                 /* Check whether it is compatible with what we know already! */
817                 int compat = 1;
818
819                 if (!(data->start_class->flags & (ANYOF_CLASS | ANYOF_LOCALE)) 
820                     && !ANYOF_BITMAP_TEST(data->start_class, *STRING(scan))
821                     && !ANYOF_BITMAP_TEST(data->start_class, 
822                                           PL_fold[*(U8*)STRING(scan)]))
823                     compat = 0;
824                 ANYOF_CLASS_ZERO(data->start_class);
825                 ANYOF_BITMAP_ZERO(data->start_class);
826                 if (compat) {
827                     ANYOF_BITMAP_SET(data->start_class, *STRING(scan));
828                     data->start_class->flags &= ~ANYOF_EOS;
829                     data->start_class->flags |= ANYOF_FOLD;
830                     if (OP(scan) == EXACTFL)
831                         data->start_class->flags |= ANYOF_LOCALE;
832                 }
833             }
834             else if (flags & SCF_DO_STCLASS_OR) {
835                 if (data->start_class->flags & ANYOF_FOLD) {
836                     /* false positive possible if the class is case-folded.
837                        Assume that the locale settings are the same... */
838                     ANYOF_BITMAP_SET(data->start_class, *STRING(scan)); 
839                     data->start_class->flags &= ~ANYOF_EOS;
840                 }
841                 cl_and(data->start_class, &and_with);
842             }
843             flags &= ~SCF_DO_STCLASS;
844         }
845         else if (strchr((char*)PL_varies,OP(scan))) {
846             I32 mincount, maxcount, minnext, deltanext, pos_before, fl;
847             I32 f = flags;
848             regnode *oscan = scan;
849             struct regnode_charclass_class this_class;
850             struct regnode_charclass_class *oclass = NULL;
851
852             switch (PL_regkind[(U8)OP(scan)]) {
853             case WHILEM:                /* End of (?:...)* . */
854                 scan = NEXTOPER(scan);
855                 goto finish;
856             case PLUS:
857                 if (flags & (SCF_DO_SUBSTR | SCF_DO_STCLASS)) {
858                     next = NEXTOPER(scan);
859                     if (OP(next) == EXACT || (flags & SCF_DO_STCLASS)) {
860                         mincount = 1; 
861                         maxcount = REG_INFTY; 
862                         next = regnext(scan);
863                         scan = NEXTOPER(scan);
864                         goto do_curly;
865                     }
866                 }
867                 if (flags & SCF_DO_SUBSTR)
868                     data->pos_min++;
869                 min++;
870                 /* Fall through. */
871             case STAR:
872                 if (flags & SCF_DO_STCLASS) {
873                     mincount = 0;
874                     maxcount = REG_INFTY; 
875                     next = regnext(scan);
876                     scan = NEXTOPER(scan);
877                     goto do_curly;
878                 }
879                 is_inf = is_inf_internal = 1; 
880                 scan = regnext(scan);
881                 if (flags & SCF_DO_SUBSTR) {
882                     scan_commit(data);  /* Cannot extend fixed substrings */
883                     data->longest = &(data->longest_float);
884                 }
885                 goto optimize_curly_tail;
886             case CURLY:
887                 mincount = ARG1(scan); 
888                 maxcount = ARG2(scan);
889                 next = regnext(scan);
890                 scan = NEXTOPER(scan) + EXTRA_STEP_2ARGS;
891               do_curly:
892                 if (flags & SCF_DO_SUBSTR) {
893                     if (mincount == 0) scan_commit(data); /* Cannot extend fixed substrings */
894                     pos_before = data->pos_min;
895                 }
896                 if (data) {
897                     fl = data->flags;
898                     data->flags &= ~(SF_HAS_PAR|SF_IN_PAR|SF_HAS_EVAL);
899                     if (is_inf)
900                         data->flags |= SF_IS_INF;
901                 }
902                 if (flags & SCF_DO_STCLASS) {
903                     cl_init(&this_class);
904                     oclass = data->start_class;
905                     data->start_class = &this_class;
906                     f |= SCF_DO_STCLASS_AND;
907                     f &= ~SCF_DO_STCLASS_OR;
908                 }
909
910                 /* This will finish on WHILEM, setting scan, or on NULL: */
911                 minnext = study_chunk(&scan, &deltanext, last, data, 
912                                       mincount == 0 
913                                         ? (f & ~SCF_DO_SUBSTR) : f);
914
915                 if (flags & SCF_DO_STCLASS)
916                     data->start_class = oclass;
917                 if (mincount == 0 || minnext == 0) {
918                     if (flags & SCF_DO_STCLASS_OR) {
919                         cl_or(data->start_class, &this_class);
920                     }
921                     else if (flags & SCF_DO_STCLASS_AND) {
922                         /* Switch to OR mode: cache the old value of 
923                          * data->start_class */
924                         StructCopy(data->start_class, &and_with,
925                                    struct regnode_charclass_class);
926                         flags &= ~SCF_DO_STCLASS_AND;
927                         StructCopy(&this_class, data->start_class,
928                                    struct regnode_charclass_class);
929                         flags |= SCF_DO_STCLASS_OR;
930                         data->start_class->flags |= ANYOF_EOS;
931                     }
932                 } else {                /* Non-zero len */
933                     if (flags & SCF_DO_STCLASS_OR) {
934                         cl_or(data->start_class, &this_class);
935                         cl_and(data->start_class, &and_with);
936                     }
937                     else if (flags & SCF_DO_STCLASS_AND)
938                         cl_and(data->start_class, &this_class);
939                     flags &= ~SCF_DO_STCLASS;
940                 }
941                 if (!scan)              /* It was not CURLYX, but CURLY. */
942                     scan = next;
943                 if (ckWARN(WARN_REGEXP) && (minnext + deltanext == 0) 
944                     && !(data->flags & (SF_HAS_PAR|SF_IN_PAR))
945                     && maxcount <= REG_INFTY/3) /* Complement check for big count */
946                 {
947                     vWARN(PL_regcomp_parse,
948                           "Quantifier unexpected on zero-length expression");
949                 }
950
951                 min += minnext * mincount;
952                 is_inf_internal |= ((maxcount == REG_INFTY 
953                                      && (minnext + deltanext) > 0)
954                                     || deltanext == I32_MAX);
955                 is_inf |= is_inf_internal;
956                 delta += (minnext + deltanext) * maxcount - minnext * mincount;
957
958                 /* Try powerful optimization CURLYX => CURLYN. */
959                 if (  OP(oscan) == CURLYX && data 
960                       && data->flags & SF_IN_PAR
961                       && !(data->flags & SF_HAS_EVAL)
962                       && !deltanext && minnext == 1 ) {
963                     /* Try to optimize to CURLYN.  */
964                     regnode *nxt = NEXTOPER(oscan) + EXTRA_STEP_2ARGS;
965                     regnode *nxt1 = nxt, *nxt2;
966
967                     /* Skip open. */
968                     nxt = regnext(nxt);
969                     if (!strchr((char*)PL_simple,OP(nxt))
970                         && !(PL_regkind[(U8)OP(nxt)] == EXACT
971                              && STR_LEN(nxt) == 1)) 
972                         goto nogo;
973                     nxt2 = nxt;
974                     nxt = regnext(nxt);
975                     if (OP(nxt) != CLOSE) 
976                         goto nogo;
977                     /* Now we know that nxt2 is the only contents: */
978                     oscan->flags = ARG(nxt);
979                     OP(oscan) = CURLYN;
980                     OP(nxt1) = NOTHING; /* was OPEN. */
981 #ifdef DEBUGGING
982                     OP(nxt1 + 1) = OPTIMIZED; /* was count. */
983                     NEXT_OFF(nxt1+ 1) = 0; /* just for consistancy. */
984                     NEXT_OFF(nxt2) = 0; /* just for consistancy with CURLY. */
985                     OP(nxt) = OPTIMIZED;        /* was CLOSE. */
986                     OP(nxt + 1) = OPTIMIZED; /* was count. */
987                     NEXT_OFF(nxt+ 1) = 0; /* just for consistancy. */
988 #endif 
989                 }
990               nogo:
991
992                 /* Try optimization CURLYX => CURLYM. */
993                 if (  OP(oscan) == CURLYX && data 
994                       && !(data->flags & SF_HAS_PAR)
995                       && !(data->flags & SF_HAS_EVAL)
996                       && !deltanext  ) {
997                     /* XXXX How to optimize if data == 0? */
998                     /* Optimize to a simpler form.  */
999                     regnode *nxt = NEXTOPER(oscan) + EXTRA_STEP_2ARGS; /* OPEN */
1000                     regnode *nxt2;
1001
1002                     OP(oscan) = CURLYM;
1003                     while ( (nxt2 = regnext(nxt)) /* skip over embedded stuff*/
1004                             && (OP(nxt2) != WHILEM)) 
1005                         nxt = nxt2;
1006                     OP(nxt2)  = SUCCEED; /* Whas WHILEM */
1007                     /* Need to optimize away parenths. */
1008                     if (data->flags & SF_IN_PAR) {
1009                         /* Set the parenth number.  */
1010                         regnode *nxt1 = NEXTOPER(oscan) + EXTRA_STEP_2ARGS; /* OPEN*/
1011
1012                         if (OP(nxt) != CLOSE) 
1013                             FAIL("Panic opt close");
1014                         oscan->flags = ARG(nxt);
1015                         OP(nxt1) = OPTIMIZED;   /* was OPEN. */
1016                         OP(nxt) = OPTIMIZED;    /* was CLOSE. */
1017 #ifdef DEBUGGING
1018                         OP(nxt1 + 1) = OPTIMIZED; /* was count. */
1019                         OP(nxt + 1) = OPTIMIZED; /* was count. */
1020                         NEXT_OFF(nxt1 + 1) = 0; /* just for consistancy. */
1021                         NEXT_OFF(nxt + 1) = 0; /* just for consistancy. */
1022 #endif 
1023 #if 0
1024                         while ( nxt1 && (OP(nxt1) != WHILEM)) {
1025                             regnode *nnxt = regnext(nxt1);
1026                             
1027                             if (nnxt == nxt) {
1028                                 if (reg_off_by_arg[OP(nxt1)])
1029                                     ARG_SET(nxt1, nxt2 - nxt1);
1030                                 else if (nxt2 - nxt1 < U16_MAX)
1031                                     NEXT_OFF(nxt1) = nxt2 - nxt1;
1032                                 else
1033                                     OP(nxt) = NOTHING;  /* Cannot beautify */
1034                             }
1035                             nxt1 = nnxt;
1036                         }
1037 #endif
1038                         /* Optimize again: */
1039                         study_chunk(&nxt1, &deltanext, nxt, NULL, 0);
1040                     }
1041                     else
1042                         oscan->flags = 0;
1043                 }
1044                 else if (OP(oscan) == CURLYX && data && ++data->whilem_c < 16) {
1045                     /* This stays as CURLYX, and can put the count/of pair. */
1046                     /* Find WHILEM (as in regexec.c) */
1047                     regnode *nxt = oscan + NEXT_OFF(oscan);
1048
1049                     if (OP(PREVOPER(nxt)) == NOTHING) /* LONGJMP */
1050                         nxt += ARG(nxt);
1051                     PREVOPER(nxt)->flags = data->whilem_c
1052                         | (PL_reg_whilem_seen << 4); /* On WHILEM */
1053                 }
1054                 if (data && fl & (SF_HAS_PAR|SF_IN_PAR)) 
1055                     pars++;
1056                 if (flags & SCF_DO_SUBSTR) {
1057                     SV *last_str = Nullsv;
1058                     int counted = mincount != 0;
1059
1060                     if (data->last_end > 0 && mincount != 0) { /* Ends with a string. */
1061                         I32 b = pos_before >= data->last_start_min 
1062                             ? pos_before : data->last_start_min;
1063                         STRLEN l;
1064                         char *s = SvPV(data->last_found, l);
1065                         I32 old = b - data->last_start_min;
1066
1067                         if (UTF)
1068                             old = utf8_hop((U8*)s, old) - (U8*)s;
1069                         
1070                         l -= old;
1071                         /* Get the added string: */
1072                         last_str = newSVpvn(s  + old, l);
1073                         if (deltanext == 0 && pos_before == b) {
1074                             /* What was added is a constant string */
1075                             if (mincount > 1) {
1076                                 SvGROW(last_str, (mincount * l) + 1);
1077                                 repeatcpy(SvPVX(last_str) + l, 
1078                                           SvPVX(last_str), l, mincount - 1);
1079                                 SvCUR(last_str) *= mincount;
1080                                 /* Add additional parts. */
1081                                 SvCUR_set(data->last_found, 
1082                                           SvCUR(data->last_found) - l);
1083                                 sv_catsv(data->last_found, last_str);
1084                                 data->last_end += l * (mincount - 1);
1085                             }
1086                         } else {
1087                             /* start offset must point into the last copy */
1088                             data->last_start_min += minnext * (mincount - 1);
1089                             data->last_start_max += is_inf ? 0 : (maxcount - 1)
1090                                 * (minnext + data->pos_delta);
1091                         }
1092                     }
1093                     /* It is counted once already... */
1094                     data->pos_min += minnext * (mincount - counted);
1095                     data->pos_delta += - counted * deltanext +
1096                         (minnext + deltanext) * maxcount - minnext * mincount;
1097                     if (mincount != maxcount) {
1098                          /* Cannot extend fixed substrings found inside
1099                             the group.  */
1100                         scan_commit(data);
1101                         if (mincount && last_str) {
1102                             sv_setsv(data->last_found, last_str);
1103                             data->last_end = data->pos_min;
1104                             data->last_start_min = 
1105                                 data->pos_min - CHR_SVLEN(last_str);
1106                             data->last_start_max = is_inf 
1107                                 ? I32_MAX 
1108                                 : data->pos_min + data->pos_delta
1109                                 - CHR_SVLEN(last_str);
1110                         }
1111                         data->longest = &(data->longest_float);
1112                     }
1113                     SvREFCNT_dec(last_str);
1114                 }
1115                 if (data && (fl & SF_HAS_EVAL))
1116                     data->flags |= SF_HAS_EVAL;
1117               optimize_curly_tail:
1118                 if (OP(oscan) != CURLYX) {
1119                     while (PL_regkind[(U8)OP(next = regnext(oscan))] == NOTHING
1120                            && NEXT_OFF(next))
1121                         NEXT_OFF(oscan) += NEXT_OFF(next);
1122                 }
1123                 continue;
1124             default:                    /* REF and CLUMP only? */
1125                 if (flags & SCF_DO_SUBSTR) {
1126                     scan_commit(data);  /* Cannot expect anything... */
1127                     data->longest = &(data->longest_float);
1128                 }
1129                 is_inf = is_inf_internal = 1;
1130                 if (flags & SCF_DO_STCLASS_OR)
1131                     cl_anything(data->start_class);
1132                 flags &= ~SCF_DO_STCLASS;
1133                 break;
1134             }
1135         }
1136         else if (strchr((char*)PL_simple,OP(scan)) || PL_regkind[(U8)OP(scan)] == ANYUTF8) {
1137             int value;
1138
1139             if (flags & SCF_DO_SUBSTR) {
1140                 scan_commit(data);
1141                 data->pos_min++;
1142             }
1143             min++;
1144             if (flags & SCF_DO_STCLASS) {
1145                 data->start_class->flags &= ~ANYOF_EOS; /* No match on empty */
1146
1147                 /* Some of the logic below assumes that switching
1148                    locale on will only add false positives. */
1149                 switch (PL_regkind[(U8)OP(scan)]) {
1150                 case ANYUTF8:
1151                 case SANY:
1152                 case SANYUTF8:
1153                 case ALNUMUTF8:
1154                 case ANYOFUTF8:
1155                 case ALNUMLUTF8:
1156                 case NALNUMUTF8:
1157                 case NALNUMLUTF8:
1158                 case SPACEUTF8:
1159                 case NSPACEUTF8:
1160                 case SPACELUTF8:
1161                 case NSPACELUTF8:
1162                 case DIGITUTF8:
1163                 case NDIGITUTF8:
1164                 default:
1165                   do_default:
1166                     /* Perl_croak(aTHX_ "panic: unexpected simple REx opcode %d", OP(scan)); */
1167                     if (flags & SCF_DO_STCLASS_OR) /* Allow everything */
1168                         cl_anything(data->start_class);
1169                     break;
1170                 case REG_ANY:
1171                     if (OP(scan) == SANY)
1172                         goto do_default;
1173                     if (flags & SCF_DO_STCLASS_OR) { /* Everything but \n */
1174                         value = (ANYOF_BITMAP_TEST(data->start_class,'\n')
1175                                  || (data->start_class->flags & ANYOF_CLASS));
1176                         cl_anything(data->start_class);
1177                     }
1178                     if (flags & SCF_DO_STCLASS_AND || !value)
1179                         ANYOF_BITMAP_CLEAR(data->start_class,'\n');
1180                     break;
1181                 case ANYOF:
1182                     if (flags & SCF_DO_STCLASS_AND)
1183                         cl_and(data->start_class,
1184                                (struct regnode_charclass_class*)scan);
1185                     else
1186                         cl_or(data->start_class,
1187                               (struct regnode_charclass_class*)scan);
1188                     break;
1189                 case ALNUM:
1190                     if (flags & SCF_DO_STCLASS_AND) {
1191                         if (!(data->start_class->flags & ANYOF_LOCALE)) {
1192                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_NALNUM);
1193                             for (value = 0; value < 256; value++)
1194                                 if (!isALNUM(value))
1195                                     ANYOF_BITMAP_CLEAR(data->start_class, value);
1196                         }
1197                     }
1198                     else {
1199                         if (data->start_class->flags & ANYOF_LOCALE)
1200                             ANYOF_CLASS_SET(data->start_class,ANYOF_ALNUM);
1201                         else {
1202                             for (value = 0; value < 256; value++)
1203                                 if (isALNUM(value))
1204                                     ANYOF_BITMAP_SET(data->start_class, value);                     
1205                         }
1206                     }
1207                     break;
1208                 case ALNUML:
1209                     if (flags & SCF_DO_STCLASS_AND) {
1210                         if (data->start_class->flags & ANYOF_LOCALE)
1211                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_NALNUM);
1212                     }
1213                     else {
1214                         ANYOF_CLASS_SET(data->start_class,ANYOF_ALNUM);
1215                         data->start_class->flags |= ANYOF_LOCALE;
1216                     }
1217                     break;
1218                 case NALNUM:
1219                     if (flags & SCF_DO_STCLASS_AND) {
1220                         if (!(data->start_class->flags & ANYOF_LOCALE)) {
1221                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_ALNUM);
1222                             for (value = 0; value < 256; value++)
1223                                 if (isALNUM(value))
1224                                     ANYOF_BITMAP_CLEAR(data->start_class, value);
1225                         }
1226                     }
1227                     else {
1228                         if (data->start_class->flags & ANYOF_LOCALE)
1229                             ANYOF_CLASS_SET(data->start_class,ANYOF_NALNUM);
1230                         else {
1231                             for (value = 0; value < 256; value++)
1232                                 if (!isALNUM(value))
1233                                     ANYOF_BITMAP_SET(data->start_class, value);                     
1234                         }
1235                     }
1236                     break;
1237                 case NALNUML:
1238                     if (flags & SCF_DO_STCLASS_AND) {
1239                         if (data->start_class->flags & ANYOF_LOCALE)
1240                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_ALNUM);
1241                     }
1242                     else {
1243                         data->start_class->flags |= ANYOF_LOCALE;
1244                         ANYOF_CLASS_SET(data->start_class,ANYOF_NALNUM);
1245                     }
1246                     break;
1247                 case SPACE:
1248                     if (flags & SCF_DO_STCLASS_AND) {
1249                         if (!(data->start_class->flags & ANYOF_LOCALE)) {
1250                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_NSPACE);
1251                             for (value = 0; value < 256; value++)
1252                                 if (!isSPACE(value))
1253                                     ANYOF_BITMAP_CLEAR(data->start_class, value);
1254                         }
1255                     }
1256                     else {
1257                         if (data->start_class->flags & ANYOF_LOCALE)
1258                             ANYOF_CLASS_SET(data->start_class,ANYOF_SPACE);
1259                         else {
1260                             for (value = 0; value < 256; value++)
1261                                 if (isSPACE(value))
1262                                     ANYOF_BITMAP_SET(data->start_class, value);                     
1263                         }
1264                     }
1265                     break;
1266                 case SPACEL:
1267                     if (flags & SCF_DO_STCLASS_AND) {
1268                         if (data->start_class->flags & ANYOF_LOCALE)
1269                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_NSPACE);
1270                     }
1271                     else {
1272                         data->start_class->flags |= ANYOF_LOCALE;
1273                         ANYOF_CLASS_SET(data->start_class,ANYOF_SPACE);
1274                     }
1275                     break;
1276                 case NSPACE:
1277                     if (flags & SCF_DO_STCLASS_AND) {
1278                         if (!(data->start_class->flags & ANYOF_LOCALE)) {
1279                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_SPACE);
1280                             for (value = 0; value < 256; value++)
1281                                 if (isSPACE(value))
1282                                     ANYOF_BITMAP_CLEAR(data->start_class, value);
1283                         }
1284                     }
1285                     else {
1286                         if (data->start_class->flags & ANYOF_LOCALE)
1287                             ANYOF_CLASS_SET(data->start_class,ANYOF_NSPACE);
1288                         else {
1289                             for (value = 0; value < 256; value++)
1290                                 if (!isSPACE(value))
1291                                     ANYOF_BITMAP_SET(data->start_class, value);                     
1292                         }
1293                     }
1294                     break;
1295                 case NSPACEL:
1296                     if (flags & SCF_DO_STCLASS_AND) {
1297                         if (data->start_class->flags & ANYOF_LOCALE) {
1298                             ANYOF_CLASS_CLEAR(data->start_class,ANYOF_SPACE);
1299                             for (value = 0; value < 256; value++)
1300                                 if (!isSPACE(value))
1301                                     ANYOF_BITMAP_CLEAR(data->start_class, value);
1302                         }
1303                     }
1304                     else {
1305                         data->start_class->flags |= ANYOF_LOCALE;
1306                         ANYOF_CLASS_SET(data->start_class,ANYOF_NSPACE);
1307                     }
1308                     break;
1309                 case DIGIT:
1310                     if (flags & SCF_DO_STCLASS_AND) {
1311                         ANYOF_CLASS_CLEAR(data->start_class,ANYOF_NDIGIT);
1312                         for (value = 0; value < 256; value++)
1313                             if (!isDIGIT(value))
1314                                 ANYOF_BITMAP_CLEAR(data->start_class, value);
1315                     }
1316                     else {
1317                         if (data->start_class->flags & ANYOF_LOCALE)
1318                             ANYOF_CLASS_SET(data->start_class,ANYOF_DIGIT);
1319                         else {
1320                             for (value = 0; value < 256; value++)
1321                                 if (isDIGIT(value))
1322                                     ANYOF_BITMAP_SET(data->start_class, value);                     
1323                         }
1324                     }
1325                     break;
1326                 case NDIGIT:
1327                     if (flags & SCF_DO_STCLASS_AND) {
1328                         ANYOF_CLASS_CLEAR(data->start_class,ANYOF_DIGIT);
1329                         for (value = 0; value < 256; value++)
1330                             if (isDIGIT(value))
1331                                 ANYOF_BITMAP_CLEAR(data->start_class, value);
1332                     }
1333                     else {
1334                         if (data->start_class->flags & ANYOF_LOCALE)
1335                             ANYOF_CLASS_SET(data->start_class,ANYOF_NDIGIT);
1336                         else {
1337                             for (value = 0; value < 256; value++)
1338                                 if (!isDIGIT(value))
1339                                     ANYOF_BITMAP_SET(data->start_class, value);                     
1340                         }
1341                     }
1342                     break;
1343                 }
1344                 if (flags & SCF_DO_STCLASS_OR)
1345                     cl_and(data->start_class, &and_with);
1346                 flags &= ~SCF_DO_STCLASS;
1347             }
1348         }
1349         else if (PL_regkind[(U8)OP(scan)] == EOL && flags & SCF_DO_SUBSTR) {
1350             data->flags |= (OP(scan) == MEOL
1351                             ? SF_BEFORE_MEOL
1352                             : SF_BEFORE_SEOL);
1353         }
1354         else if (  PL_regkind[(U8)OP(scan)] == BRANCHJ
1355                  /* Lookbehind, or need to calculate parens/evals/stclass: */
1356                    && (scan->flags || data || (flags & SCF_DO_STCLASS))
1357                    && (OP(scan) == IFMATCH || OP(scan) == UNLESSM)) {
1358             /* Lookahead/lookbehind */
1359             I32 deltanext, minnext;
1360             regnode *nscan;
1361             struct regnode_charclass_class intrnl;
1362             int f = 0;
1363
1364             data_fake.flags = 0;
1365             if (data)
1366                 data_fake.whilem_c = data->whilem_c;
1367             if ( flags & SCF_DO_STCLASS && !scan->flags
1368                  && OP(scan) == IFMATCH ) { /* Lookahead */
1369                 cl_init(&intrnl);
1370                 data_fake.start_class = &intrnl;
1371                 f = SCF_DO_STCLASS_AND;
1372             }
1373             next = regnext(scan);
1374             nscan = NEXTOPER(NEXTOPER(scan));
1375             minnext = study_chunk(&nscan, &deltanext, last, &data_fake, f);
1376             if (scan->flags) {
1377                 if (deltanext) {
1378                     vFAIL("Variable length lookbehind not implemented");
1379                 }
1380                 else if (minnext > U8_MAX) {
1381                     vFAIL2("Lookbehind longer than %"UVuf" not implemented", (UV)U8_MAX);
1382                 }
1383                 scan->flags = minnext;
1384             }
1385             if (data && data_fake.flags & (SF_HAS_PAR|SF_IN_PAR))
1386                 pars++;
1387             if (data && (data_fake.flags & SF_HAS_EVAL))
1388                 data->flags |= SF_HAS_EVAL;
1389             if (data)
1390                 data->whilem_c = data_fake.whilem_c;
1391             if (f) {
1392                 int was = (data->start_class->flags & ANYOF_EOS);
1393
1394                 cl_and(data->start_class, &intrnl);
1395                 if (was)
1396                     data->start_class->flags |= ANYOF_EOS;
1397             }
1398         }
1399         else if (OP(scan) == OPEN) {
1400             pars++;
1401         }
1402         else if (OP(scan) == CLOSE && ARG(scan) == is_par) {
1403             next = regnext(scan);
1404
1405             if ( next && (OP(next) != WHILEM) && next < last)
1406                 is_par = 0;             /* Disable optimization */
1407         }
1408         else if (OP(scan) == EVAL) {
1409                 if (data)
1410                     data->flags |= SF_HAS_EVAL;
1411         }
1412         else if (OP(scan) == LOGICAL && scan->flags == 2) { /* Embedded follows */
1413                 if (flags & SCF_DO_SUBSTR) {
1414                     scan_commit(data);
1415                     data->longest = &(data->longest_float);
1416                 }
1417                 is_inf = is_inf_internal = 1;
1418                 if (flags & SCF_DO_STCLASS_OR) /* Allow everything */
1419                     cl_anything(data->start_class);
1420                 flags &= ~SCF_DO_STCLASS;
1421         }
1422         /* Else: zero-length, ignore. */
1423         scan = regnext(scan);
1424     }
1425
1426   finish:
1427     *scanp = scan;
1428     *deltap = is_inf_internal ? I32_MAX : delta;
1429     if (flags & SCF_DO_SUBSTR && is_inf) 
1430         data->pos_delta = I32_MAX - data->pos_min;
1431     if (is_par > U8_MAX)
1432         is_par = 0;
1433     if (is_par && pars==1 && data) {
1434         data->flags |= SF_IN_PAR;
1435         data->flags &= ~SF_HAS_PAR;
1436     }
1437     else if (pars && data) {
1438         data->flags |= SF_HAS_PAR;
1439         data->flags &= ~SF_IN_PAR;
1440     }
1441     if (flags & SCF_DO_STCLASS_OR)
1442         cl_and(data->start_class, &and_with);
1443     return min;
1444 }
1445
1446 STATIC I32
1447 S_add_data(pTHX_ I32 n, char *s)
1448 {
1449     dTHR;
1450     if (PL_regcomp_rx->data) {
1451         Renewc(PL_regcomp_rx->data, 
1452                sizeof(*PL_regcomp_rx->data) + sizeof(void*) * (PL_regcomp_rx->data->count + n - 1), 
1453                char, struct reg_data);
1454         Renew(PL_regcomp_rx->data->what, PL_regcomp_rx->data->count + n, U8);
1455         PL_regcomp_rx->data->count += n;
1456     }
1457     else {
1458         Newc(1207, PL_regcomp_rx->data, sizeof(*PL_regcomp_rx->data) + sizeof(void*) * (n - 1),
1459              char, struct reg_data);
1460         New(1208, PL_regcomp_rx->data->what, n, U8);
1461         PL_regcomp_rx->data->count = n;
1462     }
1463     Copy(s, PL_regcomp_rx->data->what + PL_regcomp_rx->data->count - n, n, U8);
1464     return PL_regcomp_rx->data->count - n;
1465 }
1466
1467 void
1468 Perl_reginitcolors(pTHX)
1469 {
1470     dTHR;
1471     int i = 0;
1472     char *s = PerlEnv_getenv("PERL_RE_COLORS");
1473             
1474     if (s) {
1475         PL_colors[0] = s = savepv(s);
1476         while (++i < 6) {
1477             s = strchr(s, '\t');
1478             if (s) {
1479                 *s = '\0';
1480                 PL_colors[i] = ++s;
1481             }
1482             else
1483                 PL_colors[i] = s = "";
1484         }
1485     } else {
1486         while (i < 6) 
1487             PL_colors[i++] = "";
1488     }
1489     PL_colorset = 1;
1490 }
1491
1492
1493 /*
1494  - pregcomp - compile a regular expression into internal code
1495  *
1496  * We can't allocate space until we know how big the compiled form will be,
1497  * but we can't compile it (and thus know how big it is) until we've got a
1498  * place to put the code.  So we cheat:  we compile it twice, once with code
1499  * generation turned off and size counting turned on, and once "for real".
1500  * This also means that we don't allocate space until we are sure that the
1501  * thing really will compile successfully, and we never have to move the
1502  * code and thus invalidate pointers into it.  (Note that it has to be in
1503  * one piece because free() must be able to free it all.) [NB: not true in perl]
1504  *
1505  * Beware that the optimization-preparation code in here knows about some
1506  * of the structure of the compiled regexp.  [I'll say.]
1507  */
1508 regexp *
1509 Perl_pregcomp(pTHX_ char *exp, char *xend, PMOP *pm)
1510 {
1511     dTHR;
1512     register regexp *r;
1513     regnode *scan;
1514     regnode *first;
1515     I32 flags;
1516     I32 minlen = 0;
1517     I32 sawplus = 0;
1518     I32 sawopen = 0;
1519     scan_data_t data;
1520
1521     if (exp == NULL)
1522         FAIL("NULL regexp argument");
1523
1524     if (pm->op_pmdynflags & PMdf_UTF8) {
1525         PL_reg_flags |= RF_utf8;
1526     }
1527     else
1528         PL_reg_flags = 0;
1529
1530     PL_regprecomp = savepvn(exp, xend - exp);
1531     DEBUG_r(if (!PL_colorset) reginitcolors());
1532     DEBUG_r(PerlIO_printf(Perl_debug_log, "%sCompiling REx%s `%s%*s%s'\n",
1533                       PL_colors[4],PL_colors[5],PL_colors[0],
1534                       (int)(xend - exp), PL_regprecomp, PL_colors[1]));
1535     PL_regflags = pm->op_pmflags;
1536     PL_regsawback = 0;
1537
1538     PL_regseen = 0;
1539     PL_seen_zerolen = *exp == '^' ? -1 : 0;
1540     PL_seen_evals = 0;
1541     PL_extralen = 0;
1542
1543     /* First pass: determine size, legality. */
1544     PL_regcomp_parse = exp;
1545     PL_regxend = xend;
1546     PL_regnaughty = 0;
1547     PL_regnpar = 1;
1548     PL_regsize = 0L;
1549     PL_regcode = &PL_regdummy;
1550     PL_reg_whilem_seen = 0;
1551 #if 0 /* REGC() is (currently) a NOP at the first pass.
1552        * Clever compilers notice this and complain. --jhi */
1553     REGC((U8)REG_MAGIC, (char*)PL_regcode);
1554 #endif
1555     if (reg(0, &flags) == NULL) {
1556         Safefree(PL_regprecomp);
1557         PL_regprecomp = Nullch;
1558         return(NULL);
1559     }
1560     DEBUG_r(PerlIO_printf(Perl_debug_log, "size %"IVdf" ", (IV)PL_regsize));
1561
1562     /* Small enough for pointer-storage convention?
1563        If extralen==0, this means that we will not need long jumps. */
1564     if (PL_regsize >= 0x10000L && PL_extralen)
1565         PL_regsize += PL_extralen;
1566     else
1567         PL_extralen = 0;
1568     if (PL_reg_whilem_seen > 15)
1569         PL_reg_whilem_seen = 15;
1570
1571     /* Allocate space and initialize. */
1572     Newc(1001, r, sizeof(regexp) + (unsigned)PL_regsize * sizeof(regnode),
1573          char, regexp);
1574     if (r == NULL)
1575         FAIL("Regexp out of space");
1576
1577 #ifdef DEBUGGING
1578     /* avoid reading uninitialized memory in DEBUGGING code in study_chunk() */
1579     Zero(r, sizeof(regexp) + (unsigned)PL_regsize * sizeof(regnode), char);
1580 #endif
1581     r->refcnt = 1;
1582     r->prelen = xend - exp;
1583     r->precomp = PL_regprecomp;
1584     r->subbeg = NULL;
1585     r->reganch = pm->op_pmflags & PMf_COMPILETIME;
1586     r->nparens = PL_regnpar - 1;        /* set early to validate backrefs */
1587
1588     r->substrs = 0;                     /* Useful during FAIL. */
1589     r->startp = 0;                      /* Useful during FAIL. */
1590     r->endp = 0;                        /* Useful during FAIL. */
1591
1592     PL_regcomp_rx = r;
1593
1594     /* Second pass: emit code. */
1595     PL_regcomp_parse = exp;
1596     PL_regxend = xend;
1597     PL_regnaughty = 0;
1598     PL_regnpar = 1;
1599     PL_regcode = r->program;
1600     /* Store the count of eval-groups for security checks: */
1601     PL_regcode->next_off = ((PL_seen_evals > U16_MAX) ? U16_MAX : PL_seen_evals);
1602     REGC((U8)REG_MAGIC, (char*) PL_regcode++);
1603     r->data = 0;
1604     if (reg(0, &flags) == NULL)
1605         return(NULL);
1606
1607     /* Dig out information for optimizations. */
1608     r->reganch = pm->op_pmflags & PMf_COMPILETIME; /* Again? */
1609     pm->op_pmflags = PL_regflags;
1610     if (UTF)
1611         r->reganch |= ROPT_UTF8;
1612     r->regstclass = NULL;
1613     if (PL_regnaughty >= 10)    /* Probably an expensive pattern. */
1614         r->reganch |= ROPT_NAUGHTY;
1615     scan = r->program + 1;              /* First BRANCH. */
1616
1617     /* XXXX To minimize changes to RE engine we always allocate
1618        3-units-long substrs field. */
1619     Newz(1004, r->substrs, 1, struct reg_substr_data);
1620
1621     StructCopy(&zero_scan_data, &data, scan_data_t);
1622     /* XXXX Should not we check for something else?  Usually it is OPEN1... */
1623     if (OP(scan) != BRANCH) {   /* Only one top-level choice. */
1624         I32 fake;
1625         STRLEN longest_float_length, longest_fixed_length;
1626         struct regnode_charclass_class ch_class;
1627         int stclass_flag;
1628
1629         first = scan;
1630         /* Skip introductions and multiplicators >= 1. */
1631         while ((OP(first) == OPEN && (sawopen = 1)) ||
1632                /* An OR of *one* alternative - should not happen now. */
1633             (OP(first) == BRANCH && OP(regnext(first)) != BRANCH) ||
1634             (OP(first) == PLUS) ||
1635             (OP(first) == MINMOD) ||
1636                /* An {n,m} with n>0 */
1637             (PL_regkind[(U8)OP(first)] == CURLY && ARG1(first) > 0) ) {
1638                 if (OP(first) == PLUS)
1639                     sawplus = 1;
1640                 else
1641                     first += regarglen[(U8)OP(first)];
1642                 first = NEXTOPER(first);
1643         }
1644
1645         /* Starting-point info. */
1646       again:
1647         if (PL_regkind[(U8)OP(first)] == EXACT) {
1648             if (OP(first) == EXACT);    /* Empty, get anchored substr later. */
1649             else if ((OP(first) == EXACTF || OP(first) == EXACTFL)
1650                      && !UTF)
1651                 r->regstclass = first;
1652         }
1653         else if (strchr((char*)PL_simple,OP(first)))
1654             r->regstclass = first;
1655         else if (PL_regkind[(U8)OP(first)] == BOUND ||
1656                  PL_regkind[(U8)OP(first)] == NBOUND)
1657             r->regstclass = first;
1658         else if (PL_regkind[(U8)OP(first)] == BOL) {
1659             r->reganch |= (OP(first) == MBOL
1660                            ? ROPT_ANCH_MBOL
1661                            : (OP(first) == SBOL
1662                               ? ROPT_ANCH_SBOL
1663                               : ROPT_ANCH_BOL));
1664             first = NEXTOPER(first);
1665             goto again;
1666         }
1667         else if (OP(first) == GPOS) {
1668             r->reganch |= ROPT_ANCH_GPOS;
1669             first = NEXTOPER(first);
1670             goto again;
1671         }
1672         else if ((OP(first) == STAR &&
1673             PL_regkind[(U8)OP(NEXTOPER(first))] == REG_ANY) &&
1674             !(r->reganch & ROPT_ANCH) )
1675         {
1676             /* turn .* into ^.* with an implied $*=1 */
1677             int type = OP(NEXTOPER(first));
1678
1679             if (type == REG_ANY || type == ANYUTF8)
1680                 type = ROPT_ANCH_MBOL;
1681             else
1682                 type = ROPT_ANCH_SBOL;
1683
1684             r->reganch |= type | ROPT_IMPLICIT;
1685             first = NEXTOPER(first);
1686             goto again;
1687         }
1688         if (sawplus && (!sawopen || !PL_regsawback) 
1689             && !(PL_regseen & REG_SEEN_EVAL)) /* May examine pos and $& */
1690             /* x+ must match at the 1st pos of run of x's */
1691             r->reganch |= ROPT_SKIP;
1692
1693         /* Scan is after the zeroth branch, first is atomic matcher. */
1694         DEBUG_r(PerlIO_printf(Perl_debug_log, "first at %"IVdf"\n", 
1695                               (IV)(first - scan + 1)));
1696         /*
1697         * If there's something expensive in the r.e., find the
1698         * longest literal string that must appear and make it the
1699         * regmust.  Resolve ties in favor of later strings, since
1700         * the regstart check works with the beginning of the r.e.
1701         * and avoiding duplication strengthens checking.  Not a
1702         * strong reason, but sufficient in the absence of others.
1703         * [Now we resolve ties in favor of the earlier string if
1704         * it happens that c_offset_min has been invalidated, since the
1705         * earlier string may buy us something the later one won't.]
1706         */
1707         minlen = 0;
1708
1709         data.longest_fixed = newSVpvn("",0);
1710         data.longest_float = newSVpvn("",0);
1711         data.last_found = newSVpvn("",0);
1712         data.longest = &(data.longest_fixed);
1713         first = scan;
1714         if (!r->regstclass) {
1715             cl_init(&ch_class);
1716             data.start_class = &ch_class;
1717             stclass_flag = SCF_DO_STCLASS_AND;
1718         } else                          /* XXXX Check for BOUND? */
1719             stclass_flag = 0;
1720
1721         minlen = study_chunk(&first, &fake, scan + PL_regsize, /* Up to end */
1722                              &data, SCF_DO_SUBSTR | stclass_flag);
1723         if ( PL_regnpar == 1 && data.longest == &(data.longest_fixed)
1724              && data.last_start_min == 0 && data.last_end > 0 
1725              && !PL_seen_zerolen
1726              && (!(PL_regseen & REG_SEEN_GPOS) || (r->reganch & ROPT_ANCH_GPOS)))
1727             r->reganch |= ROPT_CHECK_ALL;
1728         scan_commit(&data);
1729         SvREFCNT_dec(data.last_found);
1730
1731         longest_float_length = CHR_SVLEN(data.longest_float);
1732         if (longest_float_length
1733             || (data.flags & SF_FL_BEFORE_EOL
1734                 && (!(data.flags & SF_FL_BEFORE_MEOL)
1735                     || (PL_regflags & PMf_MULTILINE)))) {
1736             int t;
1737
1738             if (SvCUR(data.longest_fixed)                       /* ok to leave SvCUR */
1739                 && data.offset_fixed == data.offset_float_min
1740                 && SvCUR(data.longest_fixed) == SvCUR(data.longest_float))
1741                     goto remove_float;          /* As in (a)+. */
1742
1743             r->float_substr = data.longest_float;
1744             r->float_min_offset = data.offset_float_min;
1745             r->float_max_offset = data.offset_float_max;
1746             t = (data.flags & SF_FL_BEFORE_EOL /* Can't have SEOL and MULTI */
1747                        && (!(data.flags & SF_FL_BEFORE_MEOL)
1748                            || (PL_regflags & PMf_MULTILINE)));
1749             fbm_compile(r->float_substr, t ? FBMcf_TAIL : 0);
1750         }
1751         else {
1752           remove_float:
1753             r->float_substr = Nullsv;
1754             SvREFCNT_dec(data.longest_float);
1755             longest_float_length = 0;
1756         }
1757
1758         longest_fixed_length = CHR_SVLEN(data.longest_fixed);
1759         if (longest_fixed_length
1760             || (data.flags & SF_FIX_BEFORE_EOL /* Cannot have SEOL and MULTI */
1761                 && (!(data.flags & SF_FIX_BEFORE_MEOL)
1762                     || (PL_regflags & PMf_MULTILINE)))) {
1763             int t;
1764
1765             r->anchored_substr = data.longest_fixed;
1766             r->anchored_offset = data.offset_fixed;
1767             t = (data.flags & SF_FIX_BEFORE_EOL /* Can't have SEOL and MULTI */
1768                  && (!(data.flags & SF_FIX_BEFORE_MEOL)
1769                      || (PL_regflags & PMf_MULTILINE)));
1770             fbm_compile(r->anchored_substr, t ? FBMcf_TAIL : 0);
1771         }
1772         else {
1773             r->anchored_substr = Nullsv;
1774             SvREFCNT_dec(data.longest_fixed);
1775             longest_fixed_length = 0;
1776         }
1777         if (r->regstclass 
1778             && (OP(r->regstclass) == REG_ANY || OP(r->regstclass) == ANYUTF8
1779                 || OP(r->regstclass) == SANYUTF8 || OP(r->regstclass) == SANY))
1780             r->regstclass = NULL;
1781         if ((!r->anchored_substr || r->anchored_offset) && stclass_flag
1782             && !(data.start_class->flags & ANYOF_EOS)
1783             && !cl_is_anything(data.start_class)) {
1784             SV *sv;
1785             I32 n = add_data(1, "f");
1786
1787             New(1006, PL_regcomp_rx->data->data[n], 1, 
1788                 struct regnode_charclass_class);
1789             StructCopy(data.start_class,
1790                        (struct regnode_charclass_class*)PL_regcomp_rx->data->data[n],
1791                        struct regnode_charclass_class);
1792             r->regstclass = (regnode*)PL_regcomp_rx->data->data[n];
1793             r->reganch &= ~ROPT_SKIP;   /* Used in find_byclass(). */
1794             DEBUG_r((sv = sv_newmortal(),
1795                      regprop(sv, (regnode*)data.start_class),
1796                      PerlIO_printf(Perl_debug_log, "synthetic stclass `%s'.\n",
1797                                    SvPVX(sv))));
1798         }
1799
1800         /* A temporary algorithm prefers floated substr to fixed one to dig more info. */
1801         if (longest_fixed_length > longest_float_length) {
1802             r->check_substr = r->anchored_substr;
1803             r->check_offset_min = r->check_offset_max = r->anchored_offset;
1804             if (r->reganch & ROPT_ANCH_SINGLE)
1805                 r->reganch |= ROPT_NOSCAN;
1806         }
1807         else {
1808             r->check_substr = r->float_substr;
1809             r->check_offset_min = data.offset_float_min;
1810             r->check_offset_max = data.offset_float_max;
1811         }
1812         /* XXXX Currently intuiting is not compatible with ANCH_GPOS.
1813            This should be changed ASAP!  */
1814         if (r->check_substr && !(r->reganch & ROPT_ANCH_GPOS)) {
1815             r->reganch |= RE_USE_INTUIT;
1816             if (SvTAIL(r->check_substr))
1817                 r->reganch |= RE_INTUIT_TAIL;
1818         }
1819     }
1820     else {
1821         /* Several toplevels. Best we can is to set minlen. */
1822         I32 fake;
1823         struct regnode_charclass_class ch_class;
1824         
1825         DEBUG_r(PerlIO_printf(Perl_debug_log, "\n"));
1826         scan = r->program + 1;
1827         cl_init(&ch_class);
1828         data.start_class = &ch_class;
1829         minlen = study_chunk(&scan, &fake, scan + PL_regsize, &data, SCF_DO_STCLASS_AND);
1830         r->check_substr = r->anchored_substr = r->float_substr = Nullsv;
1831         if (!(data.start_class->flags & ANYOF_EOS)
1832             && !cl_is_anything(data.start_class)) {
1833             SV *sv;
1834             I32 n = add_data(1, "f");
1835
1836             New(1006, PL_regcomp_rx->data->data[n], 1, 
1837                 struct regnode_charclass_class);
1838             StructCopy(data.start_class,
1839                        (struct regnode_charclass_class*)PL_regcomp_rx->data->data[n],
1840                        struct regnode_charclass_class);
1841             r->regstclass = (regnode*)PL_regcomp_rx->data->data[n];
1842             r->reganch &= ~ROPT_SKIP;   /* Used in find_byclass(). */
1843             DEBUG_r((sv = sv_newmortal(),
1844                      regprop(sv, (regnode*)data.start_class),
1845                      PerlIO_printf(Perl_debug_log, "synthetic stclass `%s'.\n",
1846                                    SvPVX(sv))));
1847         }
1848     }
1849
1850     r->minlen = minlen;
1851     if (PL_regseen & REG_SEEN_GPOS) 
1852         r->reganch |= ROPT_GPOS_SEEN;
1853     if (PL_regseen & REG_SEEN_LOOKBEHIND)
1854         r->reganch |= ROPT_LOOKBEHIND_SEEN;
1855     if (PL_regseen & REG_SEEN_EVAL)
1856         r->reganch |= ROPT_EVAL_SEEN;
1857     Newz(1002, r->startp, PL_regnpar, I32);
1858     Newz(1002, r->endp, PL_regnpar, I32);
1859     DEBUG_r(regdump(r));
1860     return(r);
1861 }
1862
1863 /*
1864  - reg - regular expression, i.e. main body or parenthesized thing
1865  *
1866  * Caller must absorb opening parenthesis.
1867  *
1868  * Combining parenthesis handling with the base level of regular expression
1869  * is a trifle forced, but the need to tie the tails of the branches to what
1870  * follows makes it hard to avoid.
1871  */
1872 STATIC regnode *
1873 S_reg(pTHX_ I32 paren, I32 *flagp)
1874     /* paren: Parenthesized? 0=top, 1=(, inside: changed to letter. */
1875 {
1876     dTHR;
1877     register regnode *ret;              /* Will be the head of the group. */
1878     register regnode *br;
1879     register regnode *lastbr;
1880     register regnode *ender = 0;
1881     register I32 parno = 0;
1882     I32 flags, oregflags = PL_regflags, have_branch = 0, open = 0;
1883     char *oregcomp_parse = PL_regcomp_parse;
1884     char c;
1885
1886     *flagp = 0;                         /* Tentatively. */
1887
1888     /* Make an OPEN node, if parenthesized. */
1889     if (paren) {
1890         if (*PL_regcomp_parse == '?') {
1891             U16 posflags = 0, negflags = 0;
1892             U16 *flagsp = &posflags;
1893             int logical = 0;
1894             char *seqstart = PL_regcomp_parse;
1895
1896             PL_regcomp_parse++;
1897             paren = *PL_regcomp_parse++;
1898             ret = NULL;                 /* For look-ahead/behind. */
1899             switch (paren) {
1900             case '<':
1901                 PL_regseen |= REG_SEEN_LOOKBEHIND;
1902                 if (*PL_regcomp_parse == '!') 
1903                     paren = ',';
1904                 if (*PL_regcomp_parse != '=' && *PL_regcomp_parse != '!') 
1905                     goto unknown;
1906                 PL_regcomp_parse++;
1907             case '=':
1908             case '!':
1909                 PL_seen_zerolen++;
1910             case ':':
1911             case '>':
1912                 break;
1913             case '$':
1914             case '@':
1915                 vFAIL2("Sequence (?%c...) not implemented", (int)paren);
1916                 break;
1917             case '#':
1918                 while (*PL_regcomp_parse && *PL_regcomp_parse != ')')
1919                     PL_regcomp_parse++;
1920                 if (*PL_regcomp_parse != ')')
1921                     FAIL("Sequence (?#... not terminated");
1922                 nextchar();
1923                 *flagp = TRYAGAIN;
1924                 return NULL;
1925             case 'p':
1926                 if (SIZE_ONLY)
1927                     vWARN(PL_regcomp_parse, "(?p{}) is deprecated - use (??{})");
1928                 /* FALL THROUGH*/
1929             case '?':
1930                 logical = 1;
1931                 paren = *PL_regcomp_parse++;
1932                 /* FALL THROUGH */
1933             case '{':
1934             {
1935                 dTHR;
1936                 I32 count = 1, n = 0;
1937                 char c;
1938                 char *s = PL_regcomp_parse;
1939                 SV *sv;
1940                 OP_4tree *sop, *rop;
1941
1942                 PL_seen_zerolen++;
1943                 PL_regseen |= REG_SEEN_EVAL;
1944                 while (count && (c = *PL_regcomp_parse)) {
1945                     if (c == '\\' && PL_regcomp_parse[1])
1946                         PL_regcomp_parse++;
1947                     else if (c == '{') 
1948                         count++;
1949                     else if (c == '}') 
1950                         count--;
1951                     PL_regcomp_parse++;
1952                 }
1953                 if (*PL_regcomp_parse != ')')
1954                 {
1955                     PL_regcomp_parse = s;                   
1956                     vFAIL("Sequence (?{...}) not terminated or not {}-balanced");
1957                 }
1958                 if (!SIZE_ONLY) {
1959                     AV *av;
1960                     
1961                     if (PL_regcomp_parse - 1 - s) 
1962                         sv = newSVpvn(s, PL_regcomp_parse - 1 - s);
1963                     else
1964                         sv = newSVpvn("", 0);
1965
1966                     ENTER;
1967                     Perl_save_re_context(aTHX);
1968                     rop = sv_compile_2op(sv, &sop, "re", &av);
1969                     LEAVE;
1970
1971                     n = add_data(3, "nop");
1972                     PL_regcomp_rx->data->data[n] = (void*)rop;
1973                     PL_regcomp_rx->data->data[n+1] = (void*)sop;
1974                     PL_regcomp_rx->data->data[n+2] = (void*)av;
1975                     SvREFCNT_dec(sv);
1976                 }
1977                 else {                                          /* First pass */
1978                     if (PL_reginterp_cnt < ++PL_seen_evals
1979                         && PL_curcop != &PL_compiling)
1980                         /* No compiled RE interpolated, has runtime
1981                            components ===> unsafe.  */
1982                         FAIL("Eval-group not allowed at runtime, use re 'eval'");
1983                     if (PL_tainted)
1984                         FAIL("Eval-group in insecure regular expression");
1985                 }
1986                 
1987                 nextchar();
1988                 if (logical) {
1989                     ret = reg_node(LOGICAL);
1990                     if (!SIZE_ONLY)
1991                         ret->flags = 2;
1992                     regtail(ret, reganode(EVAL, n));
1993                     return ret;
1994                 }
1995                 return reganode(EVAL, n);
1996             }
1997             case '(':
1998             {
1999                 if (PL_regcomp_parse[0] == '?') {
2000                     if (PL_regcomp_parse[1] == '=' || PL_regcomp_parse[1] == '!' 
2001                         || PL_regcomp_parse[1] == '<' 
2002                         || PL_regcomp_parse[1] == '{') { /* Lookahead or eval. */
2003                         I32 flag;
2004                         
2005                         ret = reg_node(LOGICAL);
2006                         if (!SIZE_ONLY)
2007                             ret->flags = 1;
2008                         regtail(ret, reg(1, &flag));
2009                         goto insert_if;
2010                     } 
2011                 }
2012                 else if (PL_regcomp_parse[0] >= '1' && PL_regcomp_parse[0] <= '9' ) {
2013                     parno = atoi(PL_regcomp_parse++);
2014
2015                     while (isDIGIT(*PL_regcomp_parse))
2016                         PL_regcomp_parse++;
2017                     ret = reganode(GROUPP, parno);
2018                     if ((c = *nextchar()) != ')')
2019                         vFAIL("Switch condition not recognized");
2020                   insert_if:
2021                     regtail(ret, reganode(IFTHEN, 0));
2022                     br = regbranch(&flags, 1);
2023                     if (br == NULL)
2024                         br = reganode(LONGJMP, 0);
2025                     else
2026                         regtail(br, reganode(LONGJMP, 0));
2027                     c = *nextchar();
2028                     if (flags&HASWIDTH)
2029                         *flagp |= HASWIDTH;
2030                     if (c == '|') {
2031                         lastbr = reganode(IFTHEN, 0); /* Fake one for optimizer. */
2032                         regbranch(&flags, 1);
2033                         regtail(ret, lastbr);
2034                         if (flags&HASWIDTH)
2035                             *flagp |= HASWIDTH;
2036                         c = *nextchar();
2037                     }
2038                     else
2039                         lastbr = NULL;
2040                     if (c != ')')
2041                         vFAIL("Switch (?(condition)... contains too many branches");
2042                     ender = reg_node(TAIL);
2043                     regtail(br, ender);
2044                     if (lastbr) {
2045                         regtail(lastbr, ender);
2046                         regtail(NEXTOPER(NEXTOPER(lastbr)), ender);
2047                     }
2048                     else
2049                         regtail(ret, ender);
2050                     return ret;
2051                 }
2052                 else {
2053                     vFAIL2("Unknown switch condition (?(%.2s", PL_regcomp_parse);
2054                 }
2055             }
2056             case 0:
2057                 PL_regcomp_parse--; /* for vFAIL to print correctly */
2058                 vFAIL("Sequence (? incomplete");
2059                 break;
2060             default:
2061                 --PL_regcomp_parse;
2062               parse_flags:
2063                 while (*PL_regcomp_parse && strchr("iogcmsx", *PL_regcomp_parse)) {
2064                     if (*PL_regcomp_parse != 'o')
2065                         pmflag(flagsp, *PL_regcomp_parse);
2066                     ++PL_regcomp_parse;
2067                 }
2068                 if (*PL_regcomp_parse == '-') {
2069                     flagsp = &negflags;
2070                     ++PL_regcomp_parse;
2071                     goto parse_flags;
2072                 }
2073                 PL_regflags |= posflags;
2074                 PL_regflags &= ~negflags;
2075                 if (*PL_regcomp_parse == ':') {
2076                     PL_regcomp_parse++;
2077                     paren = ':';
2078                     break;
2079                 }               
2080               unknown:
2081                 if (*PL_regcomp_parse != ')') {
2082                     PL_regcomp_parse++;
2083                     vFAIL3("Sequence (%.*s...) not recognized", PL_regcomp_parse-seqstart, seqstart);
2084                 }
2085                 nextchar();
2086                 *flagp = TRYAGAIN;
2087                 return NULL;
2088             }
2089         }
2090         else {
2091             parno = PL_regnpar;
2092             PL_regnpar++;
2093             ret = reganode(OPEN, parno);
2094             open = 1;
2095         }
2096     }
2097     else
2098         ret = NULL;
2099
2100     /* Pick up the branches, linking them together. */
2101     br = regbranch(&flags, 1);
2102     if (br == NULL)
2103         return(NULL);
2104     if (*PL_regcomp_parse == '|') {
2105         if (!SIZE_ONLY && PL_extralen) {
2106             reginsert(BRANCHJ, br);
2107         }
2108         else
2109             reginsert(BRANCH, br);
2110         have_branch = 1;
2111         if (SIZE_ONLY)
2112             PL_extralen += 1;           /* For BRANCHJ-BRANCH. */
2113     }
2114     else if (paren == ':') {
2115         *flagp |= flags&SIMPLE;
2116     }
2117     if (open) {                         /* Starts with OPEN. */
2118         regtail(ret, br);               /* OPEN -> first. */
2119     }
2120     else if (paren != '?')              /* Not Conditional */
2121         ret = br;
2122     if (flags&HASWIDTH)
2123         *flagp |= HASWIDTH;
2124     *flagp |= flags&SPSTART;
2125     lastbr = br;
2126     while (*PL_regcomp_parse == '|') {
2127         if (!SIZE_ONLY && PL_extralen) {
2128             ender = reganode(LONGJMP,0);
2129             regtail(NEXTOPER(NEXTOPER(lastbr)), ender); /* Append to the previous. */
2130         }
2131         if (SIZE_ONLY)
2132             PL_extralen += 2;           /* Account for LONGJMP. */
2133         nextchar();
2134         br = regbranch(&flags, 0);
2135         if (br == NULL)
2136             return(NULL);
2137         regtail(lastbr, br);            /* BRANCH -> BRANCH. */
2138         lastbr = br;
2139         if (flags&HASWIDTH)
2140             *flagp |= HASWIDTH;
2141         *flagp |= flags&SPSTART;
2142     }
2143
2144     if (have_branch || paren != ':') {
2145         /* Make a closing node, and hook it on the end. */
2146         switch (paren) {
2147         case ':':
2148             ender = reg_node(TAIL);
2149             break;
2150         case 1:
2151             ender = reganode(CLOSE, parno);
2152             break;
2153         case '<':
2154         case ',':
2155         case '=':
2156         case '!':
2157             *flagp &= ~HASWIDTH;
2158             /* FALL THROUGH */
2159         case '>':
2160             ender = reg_node(SUCCEED);
2161             break;
2162         case 0:
2163             ender = reg_node(END);
2164             break;
2165         }
2166         regtail(lastbr, ender);
2167
2168         if (have_branch) {
2169             /* Hook the tails of the branches to the closing node. */
2170             for (br = ret; br != NULL; br = regnext(br)) {
2171                 regoptail(br, ender);
2172             }
2173         }
2174     }
2175
2176     {
2177         char *p;
2178         static char parens[] = "=!<,>";
2179
2180         if (paren && (p = strchr(parens, paren))) {
2181             int node = ((p - parens) % 2) ? UNLESSM : IFMATCH;
2182             int flag = (p - parens) > 1;
2183
2184             if (paren == '>')
2185                 node = SUSPEND, flag = 0;
2186             reginsert(node,ret);
2187             ret->flags = flag;
2188             regtail(ret, reg_node(TAIL));
2189         }
2190     }
2191
2192     /* Check for proper termination. */
2193     if (paren) {
2194         PL_regflags = oregflags;
2195         if (PL_regcomp_parse >= PL_regxend || *nextchar() != ')') {
2196             PL_regcomp_parse = oregcomp_parse;
2197             vFAIL("Unmatched (");
2198         }
2199     }
2200     else if (!paren && PL_regcomp_parse < PL_regxend) {
2201         if (*PL_regcomp_parse == ')') {
2202             PL_regcomp_parse++;
2203             vFAIL("Unmatched )");
2204         }
2205         else
2206             FAIL("Junk on end of regexp");      /* "Can't happen". */
2207         /* NOTREACHED */
2208     }
2209
2210     return(ret);
2211 }
2212
2213 /*
2214  - regbranch - one alternative of an | operator
2215  *
2216  * Implements the concatenation operator.
2217  */
2218 STATIC regnode *
2219 S_regbranch(pTHX_ I32 *flagp, I32 first)
2220 {
2221     dTHR;
2222     register regnode *ret;
2223     register regnode *chain = NULL;
2224     register regnode *latest;
2225     I32 flags = 0, c = 0;
2226
2227     if (first) 
2228         ret = NULL;
2229     else {
2230         if (!SIZE_ONLY && PL_extralen) 
2231             ret = reganode(BRANCHJ,0);
2232         else
2233             ret = reg_node(BRANCH);
2234     }
2235         
2236     if (!first && SIZE_ONLY) 
2237         PL_extralen += 1;                       /* BRANCHJ */
2238     
2239     *flagp = WORST;                     /* Tentatively. */
2240
2241     PL_regcomp_parse--;
2242     nextchar();
2243     while (PL_regcomp_parse < PL_regxend && *PL_regcomp_parse != '|' && *PL_regcomp_parse != ')') {
2244         flags &= ~TRYAGAIN;
2245         latest = regpiece(&flags);
2246         if (latest == NULL) {
2247             if (flags & TRYAGAIN)
2248                 continue;
2249             return(NULL);
2250         }
2251         else if (ret == NULL)
2252             ret = latest;
2253         *flagp |= flags&HASWIDTH;
2254         if (chain == NULL)      /* First piece. */
2255             *flagp |= flags&SPSTART;
2256         else {
2257             PL_regnaughty++;
2258             regtail(chain, latest);
2259         }
2260         chain = latest;
2261         c++;
2262     }
2263     if (chain == NULL) {        /* Loop ran zero times. */
2264         chain = reg_node(NOTHING);
2265         if (ret == NULL)
2266             ret = chain;
2267     }
2268     if (c == 1) {
2269         *flagp |= flags&SIMPLE;
2270     }
2271
2272     return(ret);
2273 }
2274
2275 /*
2276  - regpiece - something followed by possible [*+?]
2277  *
2278  * Note that the branching code sequences used for ? and the general cases
2279  * of * and + are somewhat optimized:  they use the same NOTHING node as
2280  * both the endmarker for their branch list and the body of the last branch.
2281  * It might seem that this node could be dispensed with entirely, but the
2282  * endmarker role is not redundant.
2283  */
2284 STATIC regnode *
2285 S_regpiece(pTHX_ I32 *flagp)
2286 {
2287     dTHR;
2288     register regnode *ret;
2289     register char op;
2290     register char *next;
2291     I32 flags;
2292     char *origparse = PL_regcomp_parse;
2293     char *maxpos;
2294     I32 min;
2295     I32 max = REG_INFTY;
2296
2297     ret = regatom(&flags);
2298     if (ret == NULL) {
2299         if (flags & TRYAGAIN)
2300             *flagp |= TRYAGAIN;
2301         return(NULL);
2302     }
2303
2304     op = *PL_regcomp_parse;
2305
2306     if (op == '{' && regcurly(PL_regcomp_parse)) {
2307         next = PL_regcomp_parse + 1;
2308         maxpos = Nullch;
2309         while (isDIGIT(*next) || *next == ',') {
2310             if (*next == ',') {
2311                 if (maxpos)
2312                     break;
2313                 else
2314                     maxpos = next;
2315             }
2316             next++;
2317         }
2318         if (*next == '}') {             /* got one */
2319             if (!maxpos)
2320                 maxpos = next;
2321             PL_regcomp_parse++;
2322             min = atoi(PL_regcomp_parse);
2323             if (*maxpos == ',')
2324                 maxpos++;
2325             else
2326                 maxpos = PL_regcomp_parse;
2327             max = atoi(maxpos);
2328             if (!max && *maxpos != '0')
2329                 max = REG_INFTY;                /* meaning "infinity" */
2330             else if (max >= REG_INFTY)
2331                 vFAIL2("Quantifier in {,} bigger than %d", REG_INFTY - 1);
2332             PL_regcomp_parse = next;
2333             nextchar();
2334
2335         do_curly:
2336             if ((flags&SIMPLE)) {
2337                 PL_regnaughty += 2 + PL_regnaughty / 2;
2338                 reginsert(CURLY, ret);
2339             }
2340             else {
2341                 regnode *w = reg_node(WHILEM);
2342
2343                 w->flags = 0;
2344                 regtail(ret, w);
2345                 if (!SIZE_ONLY && PL_extralen) {
2346                     reginsert(LONGJMP,ret);
2347                     reginsert(NOTHING,ret);
2348                     NEXT_OFF(ret) = 3;  /* Go over LONGJMP. */
2349                 }
2350                 reginsert(CURLYX,ret);
2351                 if (!SIZE_ONLY && PL_extralen)
2352                     NEXT_OFF(ret) = 3;  /* Go over NOTHING to LONGJMP. */
2353                 regtail(ret, reg_node(NOTHING));
2354                 if (SIZE_ONLY)
2355                     PL_reg_whilem_seen++, PL_extralen += 3;
2356                 PL_regnaughty += 4 + PL_regnaughty;     /* compound interest */
2357             }
2358             ret->flags = 0;
2359
2360             if (min > 0)
2361                 *flagp = WORST;
2362             if (max > 0)
2363                 *flagp |= HASWIDTH;
2364             if (max && max < min)
2365                 vFAIL("Can't do {n,m} with n > m");
2366             if (!SIZE_ONLY) {
2367                 ARG1_SET(ret, min);
2368                 ARG2_SET(ret, max);
2369             }
2370
2371             goto nest_check;
2372         }
2373     }
2374
2375     if (!ISMULT1(op)) {
2376         *flagp = flags;
2377         return(ret);
2378     }
2379
2380 #if 0                           /* Now runtime fix should be reliable. */
2381
2382     /* if this is reinstated, don't forget to put this back into perldiag:
2383
2384             =item Regexp *+ operand could be empty at {#} in regex m/%s/
2385
2386            (F) The part of the regexp subject to either the * or + quantifier
2387            could match an empty string. The {#} shows in the regular
2388            expression about where the problem was discovered.
2389
2390     */
2391
2392     if (!(flags&HASWIDTH) && op != '?')
2393       vFAIL("Regexp *+ operand could be empty");
2394 #endif 
2395
2396     nextchar();
2397
2398     *flagp = (op != '+') ? (WORST|SPSTART|HASWIDTH) : (WORST|HASWIDTH);
2399
2400     if (op == '*' && (flags&SIMPLE)) {
2401         reginsert(STAR, ret);
2402         ret->flags = 0;
2403         PL_regnaughty += 4;
2404     }
2405     else if (op == '*') {
2406         min = 0;
2407         goto do_curly;
2408     }
2409     else if (op == '+' && (flags&SIMPLE)) {
2410         reginsert(PLUS, ret);
2411         ret->flags = 0;
2412         PL_regnaughty += 3;
2413     }
2414     else if (op == '+') {
2415         min = 1;
2416         goto do_curly;
2417     }
2418     else if (op == '?') {
2419         min = 0; max = 1;
2420         goto do_curly;
2421     }
2422   nest_check:
2423     if (ckWARN(WARN_REGEXP) && !SIZE_ONLY && !(flags&HASWIDTH) && max > REG_INFTY/3) {
2424         vWARN3(PL_regcomp_parse,
2425                "%.*s matches null string many times",
2426                PL_regcomp_parse - origparse,
2427                origparse);
2428     }
2429
2430     if (*PL_regcomp_parse == '?') {
2431         nextchar();
2432         reginsert(MINMOD, ret);
2433         regtail(ret, ret + NODE_STEP_REGNODE);
2434     }
2435     if (ISMULT2(PL_regcomp_parse)) {
2436         PL_regcomp_parse++;
2437         vFAIL("Nested quantifiers");
2438     }
2439
2440     return(ret);
2441 }
2442
2443 /*
2444  - regatom - the lowest level
2445  *
2446  * Optimization:  gobbles an entire sequence of ordinary characters so that
2447  * it can turn them into a single node, which is smaller to store and
2448  * faster to run.  Backslashed characters are exceptions, each becoming a
2449  * separate node; the code is simpler that way and it's not worth fixing.
2450  *
2451  * [Yes, it is worth fixing, some scripts can run twice the speed.] */
2452 STATIC regnode *
2453 S_regatom(pTHX_ I32 *flagp)
2454 {
2455     dTHR;
2456     register regnode *ret = 0;
2457     I32 flags;
2458
2459     *flagp = WORST;             /* Tentatively. */
2460
2461 tryagain:
2462     switch (*PL_regcomp_parse) {
2463     case '^':
2464         PL_seen_zerolen++;
2465         nextchar();
2466         if (PL_regflags & PMf_MULTILINE)
2467             ret = reg_node(MBOL);
2468         else if (PL_regflags & PMf_SINGLELINE)
2469             ret = reg_node(SBOL);
2470         else
2471             ret = reg_node(BOL);
2472         break;
2473     case '$':
2474         nextchar();
2475         if (*PL_regcomp_parse) 
2476             PL_seen_zerolen++;
2477         if (PL_regflags & PMf_MULTILINE)
2478             ret = reg_node(MEOL);
2479         else if (PL_regflags & PMf_SINGLELINE)
2480             ret = reg_node(SEOL);
2481         else
2482             ret = reg_node(EOL);
2483         break;
2484     case '.':
2485         nextchar();
2486         if (UTF) {
2487             if (PL_regflags & PMf_SINGLELINE)
2488                 ret = reg_node(SANYUTF8);
2489             else
2490                 ret = reg_node(ANYUTF8);
2491             *flagp |= HASWIDTH;
2492         }
2493         else {
2494             if (PL_regflags & PMf_SINGLELINE)
2495                 ret = reg_node(SANY);
2496             else
2497                 ret = reg_node(REG_ANY);
2498             *flagp |= HASWIDTH|SIMPLE;
2499         }
2500         PL_regnaughty++;
2501         break;
2502     case '[':
2503     {
2504         char *oregcomp_parse = ++PL_regcomp_parse;
2505         ret = (UTF ? regclassutf8() : regclass());
2506         if (*PL_regcomp_parse != ']') {
2507             PL_regcomp_parse = oregcomp_parse;
2508             vFAIL("Unmatched [");
2509         }
2510         nextchar();
2511         *flagp |= HASWIDTH|SIMPLE;
2512         break;
2513     }
2514     case '(':
2515         nextchar();
2516         ret = reg(1, &flags);
2517         if (ret == NULL) {
2518                 if (flags & TRYAGAIN) {
2519                     if (PL_regcomp_parse == PL_regxend) {
2520                          /* Make parent create an empty node if needed. */
2521                         *flagp |= TRYAGAIN;
2522                         return(NULL);
2523                     }
2524                     goto tryagain;
2525                 }
2526                 return(NULL);
2527         }
2528         *flagp |= flags&(HASWIDTH|SPSTART|SIMPLE);
2529         break;
2530     case '|':
2531     case ')':
2532         if (flags & TRYAGAIN) {
2533             *flagp |= TRYAGAIN;
2534             return NULL;
2535         }
2536         vFAIL("Internal urp");
2537                                 /* Supposed to be caught earlier. */
2538         break;
2539     case '{':
2540         if (!regcurly(PL_regcomp_parse)) {
2541             PL_regcomp_parse++;
2542             goto defchar;
2543         }
2544         /* FALL THROUGH */
2545     case '?':
2546     case '+':
2547     case '*':
2548         PL_regcomp_parse++;
2549         vFAIL("Quantifier follows nothing");
2550         break;
2551     case '\\':
2552         switch (*++PL_regcomp_parse) {
2553         case 'A':
2554             PL_seen_zerolen++;
2555             ret = reg_node(SBOL);
2556             *flagp |= SIMPLE;
2557             nextchar();
2558             break;
2559         case 'G':
2560             ret = reg_node(GPOS);
2561             PL_regseen |= REG_SEEN_GPOS;
2562             *flagp |= SIMPLE;
2563             nextchar();
2564             break;
2565         case 'Z':
2566             ret = reg_node(SEOL);
2567             *flagp |= SIMPLE;
2568             nextchar();
2569             break;
2570         case 'z':
2571             ret = reg_node(EOS);
2572             *flagp |= SIMPLE;
2573             PL_seen_zerolen++;          /* Do not optimize RE away */
2574             nextchar();
2575             break;
2576         case 'C':
2577             ret = reg_node(SANY);
2578             *flagp |= HASWIDTH|SIMPLE;
2579             nextchar();
2580             break;
2581         case 'X':
2582             ret = reg_node(CLUMP);
2583             *flagp |= HASWIDTH;
2584             nextchar();
2585             if (UTF && !PL_utf8_mark)
2586                 is_utf8_mark((U8*)"~");         /* preload table */
2587             break;
2588         case 'w':
2589             ret = reg_node(
2590                 UTF
2591                     ? (LOC ? ALNUMLUTF8 : ALNUMUTF8)
2592                     : (LOC ? ALNUML     : ALNUM));
2593             *flagp |= HASWIDTH|SIMPLE;
2594             nextchar();
2595             if (UTF && !PL_utf8_alnum)
2596                 is_utf8_alnum((U8*)"a");        /* preload table */
2597             break;
2598         case 'W':
2599             ret = reg_node(
2600                 UTF
2601                     ? (LOC ? NALNUMLUTF8 : NALNUMUTF8)
2602                     : (LOC ? NALNUML     : NALNUM));
2603             *flagp |= HASWIDTH|SIMPLE;
2604             nextchar();
2605             if (UTF && !PL_utf8_alnum)
2606                 is_utf8_alnum((U8*)"a");        /* preload table */
2607             break;
2608         case 'b':
2609             PL_seen_zerolen++;
2610             PL_regseen |= REG_SEEN_LOOKBEHIND;
2611             ret = reg_node(
2612                 UTF
2613                     ? (LOC ? BOUNDLUTF8 : BOUNDUTF8)
2614                     : (LOC ? BOUNDL     : BOUND));
2615             *flagp |= SIMPLE;
2616             nextchar();
2617             if (UTF && !PL_utf8_alnum)
2618                 is_utf8_alnum((U8*)"a");        /* preload table */
2619             break;
2620         case 'B':
2621             PL_seen_zerolen++;
2622             PL_regseen |= REG_SEEN_LOOKBEHIND;
2623             ret = reg_node(
2624                 UTF
2625                     ? (LOC ? NBOUNDLUTF8 : NBOUNDUTF8)
2626                     : (LOC ? NBOUNDL     : NBOUND));
2627             *flagp |= SIMPLE;
2628             nextchar();
2629             if (UTF && !PL_utf8_alnum)
2630                 is_utf8_alnum((U8*)"a");        /* preload table */
2631             break;
2632         case 's':
2633             ret = reg_node(
2634                 UTF
2635                     ? (LOC ? SPACELUTF8 : SPACEUTF8)
2636                     : (LOC ? SPACEL     : SPACE));
2637             *flagp |= HASWIDTH|SIMPLE;
2638             nextchar();
2639             if (UTF && !PL_utf8_space)
2640                 is_utf8_space((U8*)" ");        /* preload table */
2641             break;
2642         case 'S':
2643             ret = reg_node(
2644                 UTF
2645                     ? (LOC ? NSPACELUTF8 : NSPACEUTF8)
2646                     : (LOC ? NSPACEL     : NSPACE));
2647             *flagp |= HASWIDTH|SIMPLE;
2648             nextchar();
2649             if (UTF && !PL_utf8_space)
2650                 is_utf8_space((U8*)" ");        /* preload table */
2651             break;
2652         case 'd':
2653             ret = reg_node(UTF ? DIGITUTF8 : DIGIT);
2654             *flagp |= HASWIDTH|SIMPLE;
2655             nextchar();
2656             if (UTF && !PL_utf8_digit)
2657                 is_utf8_digit((U8*)"1");        /* preload table */
2658             break;
2659         case 'D':
2660             ret = reg_node(UTF ? NDIGITUTF8 : NDIGIT);
2661             *flagp |= HASWIDTH|SIMPLE;
2662             nextchar();
2663             if (UTF && !PL_utf8_digit)
2664                 is_utf8_digit((U8*)"1");        /* preload table */
2665             break;
2666         case 'p':
2667         case 'P':
2668             {   /* a lovely hack--pretend we saw [\pX] instead */
2669                 char* oldregxend = PL_regxend;
2670
2671                 if (PL_regcomp_parse[1] == '{') {
2672                     PL_regxend = strchr(PL_regcomp_parse, '}');
2673                     if (!PL_regxend) {
2674                         PL_regcomp_parse += 2;
2675                         PL_regxend = oldregxend;
2676                         vFAIL("Missing right brace on \\p{}");
2677                     }
2678                     PL_regxend++;
2679                 }
2680                 else
2681                     PL_regxend = PL_regcomp_parse + 2;
2682                 PL_regcomp_parse--;
2683
2684                 ret = regclassutf8();
2685
2686                 PL_regxend = oldregxend;
2687                 PL_regcomp_parse--;
2688                 nextchar();
2689                 *flagp |= HASWIDTH|SIMPLE;
2690             }
2691             break;
2692         case 'n':
2693         case 'r':
2694         case 't':
2695         case 'f':
2696         case 'e':
2697         case 'a':
2698         case 'x':
2699         case 'c':
2700         case '0':
2701             goto defchar;
2702         case '1': case '2': case '3': case '4':
2703         case '5': case '6': case '7': case '8': case '9':
2704             {
2705                 I32 num = atoi(PL_regcomp_parse);
2706
2707                 if (num > 9 && num >= PL_regnpar)
2708                     goto defchar;
2709                 else {
2710                     while (isDIGIT(*PL_regcomp_parse))
2711                         PL_regcomp_parse++;
2712
2713                     if (!SIZE_ONLY && num > PL_regcomp_rx->nparens)
2714                         vFAIL("Reference to nonexistent group");
2715                     PL_regsawback = 1;
2716                     ret = reganode(FOLD
2717                                    ? (LOC ? REFFL : REFF)
2718                                    : REF, num);
2719                     *flagp |= HASWIDTH;
2720                     PL_regcomp_parse--;
2721                     nextchar();
2722                 }
2723             }
2724             break;
2725         case '\0':
2726             if (PL_regcomp_parse >= PL_regxend)
2727                 FAIL("Trailing \\");
2728             /* FALL THROUGH */
2729         default:
2730             /* Do not generate `unrecognized' warnings here, we fall
2731                back into the quick-grab loop below */
2732             goto defchar;
2733         }
2734         break;
2735
2736     case '#':
2737         if (PL_regflags & PMf_EXTENDED) {
2738             while (PL_regcomp_parse < PL_regxend && *PL_regcomp_parse != '\n') PL_regcomp_parse++;
2739             if (PL_regcomp_parse < PL_regxend)
2740                 goto tryagain;
2741         }
2742         /* FALL THROUGH */
2743
2744     default: {
2745             register I32 len;
2746             register UV ender;
2747             register char *p;
2748             char *oldp, *s;
2749             I32 numlen;
2750
2751             PL_regcomp_parse++;
2752
2753         defchar:
2754             ret = reg_node(FOLD
2755                           ? (LOC ? EXACTFL : EXACTF)
2756                           : EXACT);
2757             s = STRING(ret);
2758             for (len = 0, p = PL_regcomp_parse - 1;
2759               len < 127 && p < PL_regxend;
2760               len++)
2761             {
2762                 oldp = p;
2763
2764                 if (PL_regflags & PMf_EXTENDED)
2765                     p = regwhite(p, PL_regxend);
2766                 switch (*p) {
2767                 case '^':
2768                 case '$':
2769                 case '.':
2770                 case '[':
2771                 case '(':
2772                 case ')':
2773                 case '|':
2774                     goto loopdone;
2775                 case '\\':
2776                     switch (*++p) {
2777                     case 'A':
2778                     case 'G':
2779                     case 'Z':
2780                     case 'z':
2781                     case 'w':
2782                     case 'W':
2783                     case 'b':
2784                     case 'B':
2785                     case 's':
2786                     case 'S':
2787                     case 'd':
2788                     case 'D':
2789                     case 'p':
2790                     case 'P':
2791                         --p;
2792                         goto loopdone;
2793                     case 'n':
2794                         ender = '\n';
2795                         p++;
2796                         break;
2797                     case 'r':
2798                         ender = '\r';
2799                         p++;
2800                         break;
2801                     case 't':
2802                         ender = '\t';
2803                         p++;
2804                         break;
2805                     case 'f':
2806                         ender = '\f';
2807                         p++;
2808                         break;
2809                     case 'e':
2810 #ifdef ASCIIish
2811                           ender = '\033';
2812 #else
2813                           ender = '\047';
2814 #endif
2815                         p++;
2816                         break;
2817                     case 'a':
2818 #ifdef ASCIIish
2819                           ender = '\007';
2820 #else
2821                           ender = '\057';
2822 #endif
2823                         p++;
2824                         break;
2825                     case 'x':
2826                         if (*++p == '{') {
2827                             char* e = strchr(p, '}');
2828          
2829                             if (!e) {
2830                                 PL_regcomp_parse = p + 1;
2831                                 vFAIL("Missing right brace on \\x{}");
2832                             }
2833                             else if (UTF) {
2834                                 numlen = 1;     /* allow underscores */
2835                                 ender = (UV)scan_hex(p + 1, e - p - 1, &numlen);
2836                                 /* numlen is generous */
2837                                 if (numlen + len >= 127) {
2838                                     p--;
2839                                     goto loopdone;
2840                                 }
2841                                 p = e + 1;
2842                             }
2843                             else
2844                             {
2845                                 PL_regcomp_parse = e + 1;
2846                                 vFAIL("Can't use \\x{} without 'use utf8' declaration");
2847                             }
2848
2849                         }
2850                         else {
2851                             numlen = 0;         /* disallow underscores */
2852                             ender = (UV)scan_hex(p, 2, &numlen);
2853                             p += numlen;
2854                         }
2855                         break;
2856                     case 'c':
2857                         p++;
2858                         ender = UCHARAT(p++);
2859                         ender = toCTRL(ender);
2860                         break;
2861                     case '0': case '1': case '2': case '3':case '4':
2862                     case '5': case '6': case '7': case '8':case '9':
2863                         if (*p == '0' ||
2864                           (isDIGIT(p[1]) && atoi(p) >= PL_regnpar) ) {
2865                             numlen = 0;         /* disallow underscores */
2866                             ender = (UV)scan_oct(p, 3, &numlen);
2867                             p += numlen;
2868                         }
2869                         else {
2870                             --p;
2871                             goto loopdone;
2872                         }
2873                         break;
2874                     case '\0':
2875                         if (p >= PL_regxend)
2876                             FAIL("Trailing \\");
2877                         /* FALL THROUGH */
2878                     default:
2879                         if (!SIZE_ONLY && ckWARN(WARN_REGEXP) && isALPHA(*p))
2880                             vWARN2(p +1, "Unrecognized escape \\%c passed through", *p);
2881                         goto normal_default;
2882                     }
2883                     break;
2884                 default:
2885                   normal_default:
2886                     if ((*p & 0xc0) == 0xc0 && UTF) {
2887                         ender = utf8_to_uv_chk((U8*)p, &numlen, 0);
2888                         p += numlen;
2889                     }
2890                     else
2891                         ender = *p++;
2892                     break;
2893                 }
2894                 if (PL_regflags & PMf_EXTENDED)
2895                     p = regwhite(p, PL_regxend);
2896                 if (UTF && FOLD) {
2897                     if (LOC)
2898                         ender = toLOWER_LC_uni(ender);
2899                     else
2900                         ender = toLOWER_uni(ender);
2901                 }
2902                 if (ISMULT2(p)) { /* Back off on ?+*. */
2903                     if (len)
2904                         p = oldp;
2905                     else if (ender >= 0x80 && UTF) {
2906                         reguni(ender, s, &numlen);
2907                         s += numlen;
2908                         len += numlen;
2909                     }
2910                     else {
2911                         len++;
2912                         REGC(ender, s++);
2913                     }
2914                     break;
2915                 }
2916                 if (ender >= 0x80 && UTF) {
2917                     reguni(ender, s, &numlen);
2918                     s += numlen;
2919                     len += numlen - 1;
2920                 }
2921                 else
2922                     REGC(ender, s++);
2923             }
2924         loopdone:
2925             PL_regcomp_parse = p - 1;
2926             nextchar();
2927             if (len < 0)
2928                 vFAIL("Internal disaster");
2929             if (len > 0)
2930                 *flagp |= HASWIDTH;
2931             if (len == 1)
2932                 *flagp |= SIMPLE;
2933             if (!SIZE_ONLY)
2934                 STR_LEN(ret) = len;
2935             if (SIZE_ONLY)
2936                 PL_regsize += STR_SZ(len);
2937             else
2938                 PL_regcode += STR_SZ(len);
2939         }
2940         break;
2941     }
2942
2943     return(ret);
2944 }
2945
2946 STATIC char *
2947 S_regwhite(pTHX_ char *p, char *e)
2948 {
2949     while (p < e) {
2950         if (isSPACE(*p))
2951             ++p;
2952         else if (*p == '#') {
2953             do {
2954                 p++;
2955             } while (p < e && *p != '\n');
2956         }
2957         else
2958             break;
2959     }
2960     return p;
2961 }
2962
2963 /* Parse POSIX character classes: [[:foo:]], [[=foo=]], [[.foo.]].
2964    Character classes ([:foo:]) can also be negated ([:^foo:]).
2965    Returns a named class id (ANYOF_XXX) if successful, -1 otherwise.
2966    Equivalence classes ([=foo=]) and composites ([.foo.]) are parsed,
2967    but trigger warnings because they are currently unimplemented. */
2968 STATIC I32
2969 S_regpposixcc(pTHX_ I32 value)
2970 {
2971     dTHR;
2972     char *posixcc = 0;
2973     I32 namedclass = OOB_NAMEDCLASS;
2974
2975     if (value == '[' && PL_regcomp_parse + 1 < PL_regxend &&
2976         /* I smell either [: or [= or [. -- POSIX has been here, right? */
2977         (*PL_regcomp_parse == ':' ||
2978          *PL_regcomp_parse == '=' ||
2979          *PL_regcomp_parse == '.')) {
2980         char  c = *PL_regcomp_parse;
2981         char* s = PL_regcomp_parse++;
2982             
2983         while (PL_regcomp_parse < PL_regxend && *PL_regcomp_parse != c)
2984             PL_regcomp_parse++;
2985         if (PL_regcomp_parse == PL_regxend)
2986             /* Grandfather lone [:, [=, [. */
2987             PL_regcomp_parse = s;
2988         else {
2989             char* t = PL_regcomp_parse++; /* skip over the c */
2990
2991             if (*PL_regcomp_parse == ']') {
2992                 PL_regcomp_parse++; /* skip over the ending ] */
2993                 posixcc = s + 1;
2994                 if (*s == ':') {
2995                     I32 complement = *posixcc == '^' ? *posixcc++ : 0;
2996                     I32 skip = 5; /* the most common skip */
2997
2998                     switch (*posixcc) {
2999                     case 'a':
3000                         if (strnEQ(posixcc, "alnum", 5))
3001                             namedclass =
3002                                 complement ? ANYOF_NALNUMC : ANYOF_ALNUMC;
3003                         else if (strnEQ(posixcc, "alpha", 5))
3004                             namedclass =
3005                                 complement ? ANYOF_NALPHA : ANYOF_ALPHA;
3006                         else if (strnEQ(posixcc, "ascii", 5))
3007                             namedclass =
3008                                 complement ? ANYOF_NASCII : ANYOF_ASCII;
3009                         break;
3010                     case 'b':
3011                         if (strnEQ(posixcc, "blank", 5))
3012                             namedclass =
3013                                 complement ? ANYOF_NBLANK : ANYOF_BLANK;
3014                         break;
3015                     case 'c':
3016                         if (strnEQ(posixcc, "cntrl", 5))
3017                             namedclass =
3018                                 complement ? ANYOF_NCNTRL : ANYOF_CNTRL;
3019                         break;
3020                     case 'd':
3021                         if (strnEQ(posixcc, "digit", 5))
3022                             namedclass =
3023                                 complement ? ANYOF_NDIGIT : ANYOF_DIGIT;
3024                         break;
3025                     case 'g':
3026                         if (strnEQ(posixcc, "graph", 5))
3027                             namedclass =
3028                                 complement ? ANYOF_NGRAPH : ANYOF_GRAPH;
3029                         break;
3030                     case 'l':
3031                         if (strnEQ(posixcc, "lower", 5))
3032                             namedclass =
3033                                 complement ? ANYOF_NLOWER : ANYOF_LOWER;
3034                         break;
3035                     case 'p':
3036                         if (strnEQ(posixcc, "print", 5))
3037                             namedclass =
3038                                 complement ? ANYOF_NPRINT : ANYOF_PRINT;
3039                         else if (strnEQ(posixcc, "punct", 5))
3040                             namedclass =
3041                                 complement ? ANYOF_NPUNCT : ANYOF_PUNCT;
3042                         break;
3043                     case 's':
3044                         if (strnEQ(posixcc, "space", 5))
3045                             namedclass =
3046                                 complement ? ANYOF_NPSXSPC : ANYOF_PSXSPC;
3047                         break;
3048                     case 'u':
3049                         if (strnEQ(posixcc, "upper", 5))
3050                             namedclass =
3051                                 complement ? ANYOF_NUPPER : ANYOF_UPPER;
3052                         break;
3053                     case 'w': /* this is not POSIX, this is the Perl \w */
3054                         if (strnEQ(posixcc, "word", 4)) {
3055                             namedclass =
3056                                 complement ? ANYOF_NALNUM : ANYOF_ALNUM;
3057                             skip = 4;
3058                         }
3059                         break;
3060                     case 'x':
3061                         if (strnEQ(posixcc, "xdigit", 6)) {
3062                             namedclass =
3063                                 complement ? ANYOF_NXDIGIT : ANYOF_XDIGIT;
3064                             skip = 6;
3065                         }
3066                         break;
3067                     }
3068                     if (namedclass == OOB_NAMEDCLASS ||
3069                         posixcc[skip] != ':' ||
3070                         posixcc[skip+1] != ']')
3071                     {
3072                         Simple_vFAIL3("POSIX class [:%.*s:] unknown",
3073                                       t - s - 1, s + 1);
3074                     }
3075                 } else if (!SIZE_ONLY) {
3076                     /* [[=foo=]] and [[.foo.]] are still future. */
3077
3078                     /* adjust PL_regcomp_parse so the warning shows after
3079                        the class closes */
3080                     while (*PL_regcomp_parse && *PL_regcomp_parse != ']')
3081                         PL_regcomp_parse++;
3082                     Simple_vFAIL3("POSIX syntax [%c %c] is reserved for future extensions", c, c);
3083                 }
3084             } else {
3085                 /* Maternal grandfather:
3086                  * "[:" ending in ":" but not in ":]" */
3087                 PL_regcomp_parse = s;
3088             }
3089         }
3090     }
3091
3092     return namedclass;
3093 }
3094
3095 STATIC void
3096 S_checkposixcc(pTHX)
3097 {
3098     if (!SIZE_ONLY && ckWARN(WARN_REGEXP) &&
3099         (*PL_regcomp_parse == ':' ||
3100          *PL_regcomp_parse == '=' ||
3101          *PL_regcomp_parse == '.')) {
3102         char *s = PL_regcomp_parse;
3103         char  c = *s++;
3104
3105         while(*s && isALNUM(*s))
3106             s++;
3107         if (*s && c == *s && s[1] == ']') {
3108             vWARN3(s+2, "POSIX syntax [%c %c] belongs inside character classes", c, c);
3109
3110             /* [[=foo=]] and [[.foo.]] are still future. */
3111             if (c == '=' || c == '.')
3112             {
3113                 /* adjust PL_regcomp_parse so the error shows after
3114                    the class closes */
3115                 while (*PL_regcomp_parse && *PL_regcomp_parse++ != ']')
3116                     ;
3117                 Simple_vFAIL3("POSIX syntax [%c %c] is reserved for future extensions", c, c);
3118             }
3119         }
3120     }
3121 }
3122
3123 STATIC regnode *
3124 S_regclass(pTHX)
3125 {
3126     dTHR;
3127     register U32 value;
3128     register I32 lastvalue = OOB_CHAR8;
3129     register I32 range = 0;
3130     register regnode *ret;
3131     I32 numlen;
3132     I32 namedclass;
3133     char *rangebegin;
3134     bool need_class = 0;
3135
3136     ret = reg_node(ANYOF);
3137     if (SIZE_ONLY)
3138         PL_regsize += ANYOF_SKIP;
3139     else {
3140         ret->flags = 0;
3141         ANYOF_BITMAP_ZERO(ret);
3142         PL_regcode += ANYOF_SKIP;
3143         if (FOLD)
3144             ANYOF_FLAGS(ret) |= ANYOF_FOLD;
3145         if (LOC)
3146             ANYOF_FLAGS(ret) |= ANYOF_LOCALE;
3147     }
3148     if (*PL_regcomp_parse == '^') {     /* Complement of range. */
3149         PL_regnaughty++;
3150         PL_regcomp_parse++;
3151         if (!SIZE_ONLY)
3152             ANYOF_FLAGS(ret) |= ANYOF_INVERT;
3153     }
3154
3155     if (!SIZE_ONLY && ckWARN(WARN_REGEXP))
3156         checkposixcc();
3157
3158     if (*PL_regcomp_parse == ']' || *PL_regcomp_parse == '-')
3159         goto skipcond;          /* allow 1st char to be ] or - */
3160     while (PL_regcomp_parse < PL_regxend && *PL_regcomp_parse != ']') {
3161        skipcond:
3162         namedclass = OOB_NAMEDCLASS;
3163         if (!range)
3164             rangebegin = PL_regcomp_parse;
3165         value = UCHARAT(PL_regcomp_parse++);
3166         if (value == '[')
3167             namedclass = regpposixcc(value);
3168         else if (value == '\\') {
3169             value = UCHARAT(PL_regcomp_parse++);
3170             /* Some compilers cannot handle switching on 64-bit integer
3171              * values, therefore the 'value' cannot be an UV. --jhi */
3172             switch (value) {
3173             case 'w':   namedclass = ANYOF_ALNUM;       break;
3174             case 'W':   namedclass = ANYOF_NALNUM;      break;
3175             case 's':   namedclass = ANYOF_SPACE;       break;
3176             case 'S':   namedclass = ANYOF_NSPACE;      break;
3177             case 'd':   namedclass = ANYOF_DIGIT;       break;
3178             case 'D':   namedclass = ANYOF_NDIGIT;      break;
3179             case 'n':   value = '\n';                   break;
3180             case 'r':   value = '\r';                   break;
3181             case 't':   value = '\t';                   break;
3182             case 'f':   value = '\f';                   break;
3183             case 'b':   value = '\b';                   break;
3184 #ifdef ASCIIish
3185             case 'e':   value = '\033';                 break;
3186             case 'a':   value = '\007';                 break;
3187 #else
3188             case 'e':   value = '\047';                 break;
3189             case 'a':   value = '\057';                 break;
3190 #endif
3191             case 'x':
3192                 numlen = 0;             /* disallow underscores */
3193                 value = (UV)scan_hex(PL_regcomp_parse, 2, &numlen);
3194                 PL_regcomp_parse += numlen;
3195                 break;
3196             case 'c':
3197                 value = UCHARAT(PL_regcomp_parse++);
3198                 value = toCTRL(value);
3199                 break;
3200             case '0': case '1': case '2': case '3': case '4':
3201             case '5': case '6': case '7': case '8': case '9':
3202                 numlen = 0;             /* disallow underscores */
3203                 value = (UV)scan_oct(--PL_regcomp_parse, 3, &numlen);
3204                 PL_regcomp_parse += numlen;
3205                 break;
3206             default:
3207                 if (!SIZE_ONLY && ckWARN(WARN_REGEXP) && isALPHA(value))
3208
3209                     vWARN2(PL_regcomp_parse, "Unrecognized escape \\%c in character class passed through", (int)value);
3210                 break;
3211             }
3212         }
3213         if (namedclass > OOB_NAMEDCLASS) {
3214             if (!need_class && !SIZE_ONLY)
3215                 ANYOF_CLASS_ZERO(ret);
3216             need_class = 1;
3217             if (range) { /* a-\d, a-[:digit:] */
3218                 if (!SIZE_ONLY) {
3219                     if (ckWARN(WARN_REGEXP))
3220                         vWARN4(PL_regcomp_parse,
3221                                "False [] range \"%*.*s\"",
3222                                PL_regcomp_parse - rangebegin,
3223                                PL_regcomp_parse - rangebegin,
3224                                rangebegin);
3225                     ANYOF_BITMAP_SET(ret, lastvalue);
3226                     ANYOF_BITMAP_SET(ret, '-');
3227                 }
3228                 range = 0; /* this is not a true range */
3229             }
3230             if (!SIZE_ONLY) {
3231                 switch (namedclass) {
3232                 case ANYOF_ALNUM:
3233                     if (LOC)
3234                         ANYOF_CLASS_SET(ret, ANYOF_ALNUM);
3235                     else {
3236                         for (value = 0; value < 256; value++)
3237                             if (isALNUM(value))
3238                                 ANYOF_BITMAP_SET(ret, value);
3239                     }
3240                     break;
3241                 case ANYOF_NALNUM:
3242                     if (LOC)
3243                         ANYOF_CLASS_SET(ret, ANYOF_NALNUM);
3244                     else {
3245                         for (value = 0; value < 256; value++)
3246                             if (!isALNUM(value))
3247                                 ANYOF_BITMAP_SET(ret, value);
3248                     }
3249                     break;
3250                 case ANYOF_SPACE:
3251                     if (LOC)
3252                         ANYOF_CLASS_SET(ret, ANYOF_SPACE);
3253                     else {
3254                         for (value = 0; value < 256; value++)
3255                             if (isSPACE(value))
3256                                 ANYOF_BITMAP_SET(ret, value);
3257                     }
3258                     break;
3259                 case ANYOF_NSPACE:
3260                     if (LOC)
3261                         ANYOF_CLASS_SET(ret, ANYOF_NSPACE);
3262                     else {
3263                         for (value = 0; value < 256; value++)
3264                             if (!isSPACE(value))
3265                                 ANYOF_BITMAP_SET(ret, value);
3266                     }
3267                     break;
3268                 case ANYOF_DIGIT:
3269                     if (LOC)
3270                         ANYOF_CLASS_SET(ret, ANYOF_DIGIT);
3271                     else {
3272                         for (value = '0'; value <= '9'; value++)
3273                             ANYOF_BITMAP_SET(ret, value);
3274                     }
3275                     break;
3276                 case ANYOF_NDIGIT:
3277                     if (LOC)
3278                         ANYOF_CLASS_SET(ret, ANYOF_NDIGIT);
3279                     else {
3280                         for (value = 0; value < '0'; value++)
3281                             ANYOF_BITMAP_SET(ret, value);
3282                         for (value = '9' + 1; value < 256; value++)
3283                             ANYOF_BITMAP_SET(ret, value);
3284                     }
3285                     break;
3286                 case ANYOF_NALNUMC:
3287                     if (LOC)
3288                         ANYOF_CLASS_SET(ret, ANYOF_NALNUMC);
3289                     else {
3290                         for (value = 0; value < 256; value++)
3291                             if (!isALNUMC(value))
3292                                 ANYOF_BITMAP_SET(ret, value);
3293                     }
3294                     break;
3295                 case ANYOF_ALNUMC:
3296                     if (LOC)
3297                         ANYOF_CLASS_SET(ret, ANYOF_ALNUMC);
3298                     else {
3299                         for (value = 0; value < 256; value++)
3300                             if (isALNUMC(value))
3301                                 ANYOF_BITMAP_SET(ret, value);
3302                     }
3303                     break;
3304                 case ANYOF_ALPHA:
3305                     if (LOC)
3306                         ANYOF_CLASS_SET(ret, ANYOF_ALPHA);
3307                     else {
3308                         for (value = 0; value < 256; value++)
3309                             if (isALPHA(value))
3310                                 ANYOF_BITMAP_SET(ret, value);
3311                     }
3312                     break;
3313                 case ANYOF_NALPHA:
3314                     if (LOC)
3315                         ANYOF_CLASS_SET(ret, ANYOF_NALPHA);
3316                     else {
3317                         for (value = 0; value < 256; value++)
3318                             if (!isALPHA(value))
3319                                 ANYOF_BITMAP_SET(ret, value);
3320                     }
3321                     break;
3322                 case ANYOF_ASCII:
3323                     if (LOC)
3324                         ANYOF_CLASS_SET(ret, ANYOF_ASCII);
3325                     else {
3326 #ifdef ASCIIish
3327                         for (value = 0; value < 128; value++)
3328                             ANYOF_BITMAP_SET(ret, value);
3329 #else  /* EBCDIC */
3330                         for (value = 0; value < 256; value++)
3331                             if (isASCII(value))
3332                                 ANYOF_BITMAP_SET(ret, value);
3333 #endif /* EBCDIC */
3334                     }
3335                     break;
3336                 case ANYOF_NASCII:
3337                     if (LOC)
3338                         ANYOF_CLASS_SET(ret, ANYOF_NASCII);
3339                     else {
3340 #ifdef ASCIIish
3341                         for (value = 128; value < 256; value++)
3342                             ANYOF_BITMAP_SET(ret, value);
3343 #else  /* EBCDIC */
3344                         for (value = 0; value < 256; value++)
3345                             if (!isASCII(value))
3346                                 ANYOF_BITMAP_SET(ret, value);
3347 #endif /* EBCDIC */
3348                     }
3349                     break;
3350                 case ANYOF_BLANK:
3351                     if (LOC)
3352                         ANYOF_CLASS_SET(ret, ANYOF_BLANK);
3353                     else {
3354                         for (value = 0; value < 256; value++)
3355                             if (isBLANK(value))
3356                                 ANYOF_BITMAP_SET(ret, value);
3357                     }
3358                     break;
3359                 case ANYOF_NBLANK:
3360                     if (LOC)
3361                         ANYOF_CLASS_SET(ret, ANYOF_NBLANK);
3362                     else {
3363                         for (value = 0; value < 256; value++)
3364                             if (!isBLANK(value))
3365                                 ANYOF_BITMAP_SET(ret, value);
3366                     }
3367                     break;
3368                 case ANYOF_CNTRL:
3369                     if (LOC)
3370                         ANYOF_CLASS_SET(ret, ANYOF_CNTRL);
3371                     else {
3372                         for (value = 0; value < 256; value++)
3373                             if (isCNTRL(value))
3374                                 ANYOF_BITMAP_SET(ret, value);
3375                     }
3376                     lastvalue = OOB_CHAR8;
3377                     break;
3378                 case ANYOF_NCNTRL:
3379                     if (LOC)
3380                         ANYOF_CLASS_SET(ret, ANYOF_NCNTRL);
3381                     else {
3382                         for (value = 0; value < 256; value++)
3383                             if (!isCNTRL(value))
3384                                 ANYOF_BITMAP_SET(ret, value);
3385                     }
3386                     break;
3387                 case ANYOF_GRAPH:
3388                     if (LOC)
3389                         ANYOF_CLASS_SET(ret, ANYOF_GRAPH);
3390                     else {
3391                         for (value = 0; value < 256; value++)
3392                             if (isGRAPH(value))
3393                                 ANYOF_BITMAP_SET(ret, value);
3394                     }
3395                     break;
3396                 case ANYOF_NGRAPH:
3397                     if (LOC)
3398                         ANYOF_CLASS_SET(ret, ANYOF_NGRAPH);
3399                     else {
3400                         for (value = 0; value < 256; value++)
3401                             if (!isGRAPH(value))
3402                                 ANYOF_BITMAP_SET(ret, value);
3403                     }
3404                     break;
3405                 case ANYOF_LOWER:
3406                     if (LOC)
3407                         ANYOF_CLASS_SET(ret, ANYOF_LOWER);
3408                     else {
3409                         for (value = 0; value < 256; value++)
3410                             if (isLOWER(value))
3411                                 ANYOF_BITMAP_SET(ret, value);
3412                     }
3413                     break;
3414                 case ANYOF_NLOWER:
3415                     if (LOC)
3416                         ANYOF_CLASS_SET(ret, ANYOF_NLOWER);
3417                     else {
3418                         for (value = 0; value < 256; value++)
3419                             if (!isLOWER(value))
3420                                 ANYOF_BITMAP_SET(ret, value);
3421                     }
3422                     break;
3423                 case ANYOF_PRINT:
3424                     if (LOC)
3425                         ANYOF_CLASS_SET(ret, ANYOF_PRINT);
3426                     else {
3427                         for (value = 0; value < 256; value++)
3428                             if (isPRINT(value))
3429                                 ANYOF_BITMAP_SET(ret, value);
3430                     }
3431                     break;
3432                 case ANYOF_NPRINT:
3433                     if (LOC)
3434                         ANYOF_CLASS_SET(ret, ANYOF_NPRINT);
3435                     else {
3436                         for (value = 0; value < 256; value++)
3437                             if (!isPRINT(value))
3438                                 ANYOF_BITMAP_SET(ret, value);
3439                     }
3440                     break;
3441                 case ANYOF_PSXSPC:
3442                     if (LOC)
3443                         ANYOF_CLASS_SET(ret, ANYOF_PSXSPC);
3444                     else {
3445                         for (value = 0; value < 256; value++)
3446                             if (isPSXSPC(value))
3447                                 ANYOF_BITMAP_SET(ret, value);
3448                     }
3449                     break;
3450                 case ANYOF_NPSXSPC:
3451                     if (LOC)
3452                         ANYOF_CLASS_SET(ret, ANYOF_NPSXSPC);
3453                     else {
3454                         for (value = 0; value < 256; value++)
3455                             if (!isPSXSPC(value))
3456                                 ANYOF_BITMAP_SET(ret, value);
3457                     }
3458                     break;
3459                 case ANYOF_PUNCT:
3460                     if (LOC)
3461                         ANYOF_CLASS_SET(ret, ANYOF_PUNCT);
3462                     else {
3463                         for (value = 0; value < 256; value++)
3464                             if (isPUNCT(value))
3465                                 ANYOF_BITMAP_SET(ret, value);
3466                     }
3467                     break;
3468                 case ANYOF_NPUNCT:
3469                     if (LOC)
3470                         ANYOF_CLASS_SET(ret, ANYOF_NPUNCT);
3471                     else {
3472                         for (value = 0; value < 256; value++)
3473                             if (!isPUNCT(value))
3474                                 ANYOF_BITMAP_SET(ret, value);
3475                     }
3476                     break;
3477                 case ANYOF_UPPER:
3478                     if (LOC)
3479                         ANYOF_CLASS_SET(ret, ANYOF_UPPER);
3480                     else {
3481                         for (value = 0; value < 256; value++)
3482                             if (isUPPER(value))
3483                                 ANYOF_BITMAP_SET(ret, value);
3484                     }
3485                     break;
3486                 case ANYOF_NUPPER:
3487                     if (LOC)
3488                         ANYOF_CLASS_SET(ret, ANYOF_NUPPER);
3489                     else {
3490                         for (value = 0; value < 256; value++)
3491                             if (!isUPPER(value))
3492                                 ANYOF_BITMAP_SET(ret, value);
3493                     }
3494                     break;
3495                 case ANYOF_XDIGIT:
3496                     if (LOC)
3497                         ANYOF_CLASS_SET(ret, ANYOF_XDIGIT);
3498                     else {
3499                         for (value = 0; value < 256; value++)
3500                             if (isXDIGIT(value))
3501                                 ANYOF_BITMAP_SET(ret, value);
3502                     }
3503                     break;
3504                 case ANYOF_NXDIGIT:
3505                     if (LOC)
3506                         ANYOF_CLASS_SET(ret, ANYOF_NXDIGIT);
3507                     else {
3508                         for (value = 0; value < 256; value++)
3509                             if (!isXDIGIT(value))
3510                                 ANYOF_BITMAP_SET(ret, value);
3511                     }
3512                     break;
3513                 default:
3514                     vFAIL("Invalid [::] class");
3515                     break;
3516                 }
3517                 if (LOC)
3518                     ANYOF_FLAGS(ret) |= ANYOF_CLASS;
3519                 continue;
3520             }
3521         }
3522         if (range) {
3523             if (lastvalue > value) /* b-a */ {
3524                 Simple_vFAIL4("Invalid [] range \"%*.*s\"",
3525                               PL_regcomp_parse - rangebegin,
3526                               PL_regcomp_parse - rangebegin,
3527                               rangebegin);
3528             }
3529             range = 0;
3530         }
3531         else {
3532             lastvalue = value;
3533             if (*PL_regcomp_parse == '-' && PL_regcomp_parse+1 < PL_regxend &&
3534                 PL_regcomp_parse[1] != ']') {
3535                 PL_regcomp_parse++;
3536                 if (namedclass > OOB_NAMEDCLASS) { /* \w-, [:word:]- */
3537                     if (ckWARN(WARN_REGEXP))
3538                         vWARN4(PL_regcomp_parse,
3539                                "False [] range \"%*.*s\"",
3540                                PL_regcomp_parse - rangebegin,
3541                                PL_regcomp_parse - rangebegin,
3542                                rangebegin);
3543                     if (!SIZE_ONLY)
3544                         ANYOF_BITMAP_SET(ret, '-');
3545                 } else
3546                     range = 1;
3547                 continue;       /* do it next time */
3548             }
3549         }
3550         /* now is the next time */
3551         if (!SIZE_ONLY) {
3552 #ifndef ASCIIish /* EBCDIC, for example. */
3553             if ((isLOWER(lastvalue) && isLOWER(value)) ||
3554                 (isUPPER(lastvalue) && isUPPER(value)))
3555             {
3556                 I32 i;
3557                 if (isLOWER(lastvalue)) {
3558                     for (i = lastvalue; i <= value; i++)
3559                         if (isLOWER(i))
3560                             ANYOF_BITMAP_SET(ret, i);
3561                 } else {
3562                     for (i = lastvalue; i <= value; i++)
3563                         if (isUPPER(i))
3564                             ANYOF_BITMAP_SET(ret, i);
3565                 }
3566             }
3567             else
3568 #endif
3569                 for ( ; lastvalue <= value; lastvalue++)
3570                     ANYOF_BITMAP_SET(ret, lastvalue);
3571         }
3572         range = 0;
3573     }
3574     if (need_class) {
3575         if (SIZE_ONLY)
3576             PL_regsize += ANYOF_CLASS_ADD_SKIP;
3577         else
3578             PL_regcode += ANYOF_CLASS_ADD_SKIP;
3579     }
3580     /* optimize case-insensitive simple patterns (e.g. /[a-z]/i) */
3581     if (!SIZE_ONLY &&
3582         (ANYOF_FLAGS(ret) & (ANYOF_FLAGS_ALL ^ ANYOF_INVERT)) == ANYOF_FOLD) {
3583         for (value = 0; value < 256; ++value) {
3584             if (ANYOF_BITMAP_TEST(ret, value)) {
3585                 I32 cf = PL_fold[value];
3586                 ANYOF_BITMAP_SET(ret, cf);
3587             }
3588         }
3589         ANYOF_FLAGS(ret) &= ~ANYOF_FOLD;
3590     }
3591     /* optimize inverted simple patterns (e.g. [^a-z]) */
3592     if (!SIZE_ONLY && (ANYOF_FLAGS(ret) & ANYOF_FLAGS_ALL) == ANYOF_INVERT) {
3593         for (value = 0; value < ANYOF_BITMAP_SIZE; ++value)
3594             ANYOF_BITMAP(ret)[value] ^= ANYOF_FLAGS_ALL;
3595         ANYOF_FLAGS(ret) = 0;
3596     }
3597     return ret;
3598 }
3599
3600 STATIC regnode *
3601 S_regclassutf8(pTHX)
3602 {
3603     dTHR;
3604     register char *e;
3605     register U32 value;
3606     register U32 lastvalue = OOB_UTF8;
3607     register I32 range = 0;
3608     register regnode *ret;
3609     I32 numlen;
3610     I32 n;
3611     SV *listsv;
3612     U8 flags = 0;
3613     I32 namedclass;
3614     char *rangebegin;
3615
3616     if (*PL_regcomp_parse == '^') {     /* Complement of range. */
3617         PL_regnaughty++;
3618         PL_regcomp_parse++;
3619         if (!SIZE_ONLY)
3620             flags |= ANYOF_INVERT;
3621     }
3622     if (!SIZE_ONLY) {
3623         if (FOLD)
3624             flags |= ANYOF_FOLD;
3625         if (LOC)
3626             flags |= ANYOF_LOCALE;
3627         listsv = newSVpvn("# comment\n",10);
3628     }
3629
3630     if (!SIZE_ONLY && ckWARN(WARN_REGEXP))
3631         checkposixcc();
3632
3633     if (*PL_regcomp_parse == ']' || *PL_regcomp_parse == '-')
3634         goto skipcond;          /* allow 1st char to be ] or - */
3635
3636     while (PL_regcomp_parse < PL_regxend && *PL_regcomp_parse != ']') {
3637        skipcond:
3638         namedclass = OOB_NAMEDCLASS;
3639         if (!range)
3640             rangebegin = PL_regcomp_parse;
3641         value = utf8_to_uv_chk((U8*)PL_regcomp_parse, &numlen, 0);
3642         PL_regcomp_parse += numlen;
3643         if (value == '[')
3644             namedclass = regpposixcc(value);
3645         else if (value == '\\') {
3646             value = (U32)utf8_to_uv_chk((U8*)PL_regcomp_parse, &numlen, 0);
3647             PL_regcomp_parse += numlen;
3648             /* Some compilers cannot handle switching on 64-bit integer
3649              * values, therefore value cannot be an UV.  Yes, this will
3650              * be a problem later if we want switch on Unicode.  --jhi */
3651             switch (value) {
3652             case 'w':           namedclass = ANYOF_ALNUM;               break;
3653             case 'W':           namedclass = ANYOF_NALNUM;              break;
3654             case 's':           namedclass = ANYOF_SPACE;               break;
3655             case 'S':           namedclass = ANYOF_NSPACE;              break;
3656             case 'd':           namedclass = ANYOF_DIGIT;               break;
3657             case 'D':           namedclass = ANYOF_NDIGIT;              break;
3658             case 'p':
3659             case 'P':
3660                 if (*PL_regcomp_parse == '{') {
3661                     e = strchr(PL_regcomp_parse++, '}');
3662                     if (!e)
3663                         vFAIL("Missing right brace on \\p{}");
3664                     n = e - PL_regcomp_parse;
3665                 }
3666                 else {
3667                     e = PL_regcomp_parse;
3668                     n = 1;
3669                 }
3670                 if (!SIZE_ONLY) {
3671                     if (value == 'p')
3672                         Perl_sv_catpvf(aTHX_ listsv,
3673                                        "+utf8::%.*s\n", (int)n, PL_regcomp_parse);
3674                     else
3675                         Perl_sv_catpvf(aTHX_ listsv,
3676                                        "!utf8::%.*s\n", (int)n, PL_regcomp_parse);
3677                 }
3678                 PL_regcomp_parse = e + 1;
3679                 lastvalue = OOB_UTF8;
3680                 continue;
3681             case 'n':           value = '\n';           break;
3682             case 'r':           value = '\r';           break;
3683             case 't':           value = '\t';           break;
3684             case 'f':           value = '\f';           break;
3685             case 'b':           value = '\b';           break;
3686 #ifdef ASCIIish
3687             case 'e':           value = '\033';         break;
3688             case 'a':           value = '\007';         break;
3689 #else
3690             case 'e':           value = '\047';         break;
3691             case 'a':           value = '\057';         break;
3692 #endif
3693             case 'x':
3694                 if (*PL_regcomp_parse == '{') {
3695                     e = strchr(PL_regcomp_parse++, '}');
3696                     if (!e) 
3697                         vFAIL("Missing right brace on \\x{}");
3698                     numlen = 1;         /* allow underscores */
3699                     value = (UV)scan_hex(PL_regcomp_parse,
3700                                      e - PL_regcomp_parse,
3701                                      &numlen);
3702                     PL_regcomp_parse = e + 1;
3703                 }
3704                 else {
3705                     numlen = 0;         /* disallow underscores */
3706                     value = (UV)scan_hex(PL_regcomp_parse, 2, &numlen);
3707                     PL_regcomp_parse += numlen;
3708                 }
3709                 break;
3710             case 'c':
3711                 value = UCHARAT(PL_regcomp_parse++);
3712                 value = toCTRL(value);
3713                 break;
3714             case '0': case '1': case '2': case '3': case '4':
3715             case '5': case '6': case '7': case '8': case '9':
3716                 numlen = 0;             /* disallow underscores */
3717                 value = (UV)scan_oct(--PL_regcomp_parse, 3, &numlen);
3718                 PL_regcomp_parse += numlen;
3719                 break;
3720             default:
3721                 if (!SIZE_ONLY && ckWARN(WARN_REGEXP) && isALPHA(value))
3722                     vWARN2(PL_regcomp_parse,
3723                            "Unrecognized escape \\%c in character class passed through",
3724                            (int)value);
3725                 break;
3726             }
3727         }
3728         if (namedclass > OOB_NAMEDCLASS) {
3729             if (range) { /* a-\d, a-[:digit:] */
3730                 if (!SIZE_ONLY) {
3731                     if (ckWARN(WARN_REGEXP))
3732                         vWARN4(PL_regcomp_parse,
3733                                "False [] range \"%*.*s\"",
3734                                PL_regcomp_parse - rangebegin,
3735                                PL_regcomp_parse - rangebegin,
3736                                rangebegin);
3737                     Perl_sv_catpvf(aTHX_ listsv,
3738                                    /* 0x002D is Unicode for '-' */
3739                                    "%04"UVxf"\n002D\n", (UV)lastvalue);
3740                 }
3741                 range = 0;
3742             }
3743             if (!SIZE_ONLY) {
3744                 switch (namedclass) {
3745                 case ANYOF_ALNUM:
3746                     Perl_sv_catpvf(aTHX_ listsv, "+utf8::IsWord\n");    break;
3747                 case ANYOF_NALNUM:
3748                     Perl_sv_catpvf(aTHX_ listsv, "!utf8::IsWord\n");    break;
3749                 case ANYOF_ALNUMC:
3750                     Perl_sv_catpvf(aTHX_ listsv, "+utf8::IsAlnum\n");   break;
3751                 case ANYOF_NALNUMC:
3752                     Perl_sv_catpvf(aTHX_ listsv, "!utf8::IsAlnum\n");   break;
3753                 case ANYOF_ALPHA:
3754                     Perl_sv_catpvf(aTHX_ listsv, "+utf8::IsAlpha\n");   break;
3755                 case ANYOF_NALPHA:
3756                     Perl_sv_catpvf(aTHX_ listsv, "!utf8::IsAlpha\n");   break;
3757                 case ANYOF_ASCII:
3758                     Perl_sv_catpvf(aTHX_ listsv, "+utf8::IsASCII\n");   break;
3759                 case ANYOF_NASCII:
3760                     Perl_sv_catpvf(aTHX_ listsv, "!utf8::IsASCII\n");   break;
3761                 case ANYOF_CNTRL:
3762                     Perl_sv_catpvf(aTHX_ listsv, "+utf8::IsCntrl\n");   break;
3763                 case ANYOF_NCNTRL:
3764                     Perl_sv_catpvf(aTHX_ listsv, "!utf8::IsCntrl\n");   break;
3765                 case ANYOF_GRAPH:
3766                     Perl_sv_catpvf(aTHX_ listsv, "+utf8::IsGraph\n");   break;
3767                 case ANYOF_NGRAPH:
3768                     Perl_sv_catpvf(aTHX_ listsv, "!utf8::IsGraph\n");   break;
3769                 case ANYOF_DIGIT:
3770                     Perl_sv_catpvf(aTHX_ listsv, "+utf8::IsDigit\n");   break;
3771                 case ANYOF_NDIGIT:
3772                     Perl_sv_catpvf(aTHX_ listsv, "!utf8::IsDigit\n");   break;
3773                 case ANYOF_LOWER:
3774                     Perl_sv_catpvf(aTHX_ listsv, "+utf8::IsLower\n");   break;
3775                 case ANYOF_NLOWER:
3776                     Perl_sv_catpvf(aTHX_ listsv, "!utf8::IsLower\n");   break;
3777                 case ANYOF_PRINT:
3778                     Perl_sv_catpvf(aTHX_ listsv, "+utf8::IsPrint\n");   break;
3779                 case ANYOF_NPRINT:
3780                     Perl_sv_catpvf(aTHX_ listsv, "!utf8::IsPrint\n");   break;
3781                 case ANYOF_PUNCT:
3782                     Perl_sv_catpvf(aTHX_ listsv, "+utf8::IsPunct\n");   break;
3783                 case ANYOF_NPUNCT:
3784                     Perl_sv_catpvf(aTHX_ listsv, "!utf8::IsPunct\n");   break;
3785                 case ANYOF_SPACE:
3786                 case ANYOF_PSXSPC:
3787                 case ANYOF_BLANK:
3788                     Perl_sv_catpvf(aTHX_ listsv, "+utf8::IsSpace\n");   break;
3789                 case ANYOF_NSPACE:
3790                 case ANYOF_NPSXSPC:
3791                 case ANYOF_NBLANK:
3792                     Perl_sv_catpvf(aTHX_ listsv, "!utf8::IsSpace\n");   break;
3793                 case ANYOF_UPPER:
3794                     Perl_sv_catpvf(aTHX_ listsv, "+utf8::IsUpper\n");   break;
3795                 case ANYOF_NUPPER:
3796                     Perl_sv_catpvf(aTHX_ listsv, "!utf8::IsUpper\n");   break;
3797                 case ANYOF_XDIGIT:
3798                     Perl_sv_catpvf(aTHX_ listsv, "+utf8::IsXDigit\n");  break;
3799                 case ANYOF_NXDIGIT:
3800                     Perl_sv_catpvf(aTHX_ listsv, "!utf8::IsXDigit\n");  break;
3801                 }
3802                 continue;
3803             }
3804         }
3805         if (range) {
3806             if (lastvalue > value) { /* b-a */
3807                 Simple_vFAIL4("invalid [] range \"%*.*s\"",
3808                               PL_regcomp_parse - rangebegin,
3809                               PL_regcomp_parse - rangebegin,
3810                               rangebegin);
3811             }
3812             range = 0;
3813         }
3814         else {
3815             lastvalue = value;
3816             if (*PL_regcomp_parse == '-' && PL_regcomp_parse+1 < PL_regxend &&
3817                 PL_regcomp_parse[1] != ']') {
3818                 PL_regcomp_parse++;
3819                 if (namedclass > OOB_NAMEDCLASS) { /* \w-, [:word:]- */
3820                     if (ckWARN(WARN_REGEXP))
3821                         vWARN4(PL_regcomp_parse,
3822                                "False [] range \"%*.*s\"",
3823                                PL_regcomp_parse - rangebegin,
3824                                PL_regcomp_parse - rangebegin,
3825                                rangebegin);
3826                     if (!SIZE_ONLY)
3827                         Perl_sv_catpvf(aTHX_ listsv,
3828                                        /* 0x002D is Unicode for '-' */
3829                                        "002D\n");
3830                 } else
3831                     range = 1;
3832                 continue;       /* do it next time */
3833             }
3834         }
3835         /* now is the next time */
3836         if (!SIZE_ONLY)
3837             Perl_sv_catpvf(aTHX_ listsv, "%04"UVxf"\t%04"UVxf"\n",
3838                            (UV)lastvalue, (UV)value);
3839         range = 0;
3840     }
3841
3842     ret = reganode(ANYOFUTF8, 0);
3843
3844     if (!SIZE_ONLY) {
3845         SV *rv = swash_init("utf8", "", listsv, 1, 0);
3846         SvREFCNT_dec(listsv);
3847         n = add_data(1,"s");
3848         PL_regcomp_rx->data->data[n] = (void*)rv;
3849         ARG1_SET(ret, flags);
3850         ARG2_SET(ret, n);
3851     }
3852
3853     return ret;
3854 }
3855
3856 STATIC char*
3857 S_nextchar(pTHX)
3858 {
3859     dTHR;
3860     char* retval = PL_regcomp_parse++;
3861
3862     for (;;) {
3863         if (*PL_regcomp_parse == '(' && PL_regcomp_parse[1] == '?' &&
3864                 PL_regcomp_parse[2] == '#') {
3865             while (*PL_regcomp_parse && *PL_regcomp_parse != ')')
3866                 PL_regcomp_parse++;
3867             PL_regcomp_parse++;
3868             continue;
3869         }
3870         if (PL_regflags & PMf_EXTENDED) {
3871             if (isSPACE(*PL_regcomp_parse)) {
3872                 PL_regcomp_parse++;
3873                 continue;
3874             }
3875             else if (*PL_regcomp_parse == '#') {
3876                 while (*PL_regcomp_parse && *PL_regcomp_parse != '\n')
3877                     PL_regcomp_parse++;
3878                 PL_regcomp_parse++;
3879                 continue;
3880             }
3881         }
3882         return retval;
3883     }
3884 }
3885
3886 /*
3887 - reg_node - emit a node
3888 */
3889 STATIC regnode *                        /* Location. */
3890 S_reg_node(pTHX_ U8 op)
3891 {
3892     dTHR;
3893     register regnode *ret;
3894     register regnode *ptr;
3895
3896     ret = PL_regcode;
3897     if (SIZE_ONLY) {
3898         SIZE_ALIGN(PL_regsize);
3899         PL_regsize += 1;
3900         return(ret);
3901     }
3902
3903     NODE_ALIGN_FILL(ret);
3904     ptr = ret;
3905     FILL_ADVANCE_NODE(ptr, op);
3906     PL_regcode = ptr;
3907
3908     return(ret);
3909 }
3910
3911 /*
3912 - reganode - emit a node with an argument
3913 */
3914 STATIC regnode *                        /* Location. */
3915 S_reganode(pTHX_ U8 op, U32 arg)
3916 {
3917     dTHR;
3918     register regnode *ret;
3919     register regnode *ptr;
3920
3921     ret = PL_regcode;
3922     if (SIZE_ONLY) {
3923         SIZE_ALIGN(PL_regsize);
3924         PL_regsize += 2;
3925         return(ret);
3926     }
3927
3928     NODE_ALIGN_FILL(ret);
3929     ptr = ret;
3930     FILL_ADVANCE_NODE_ARG(ptr, op, arg);
3931     PL_regcode = ptr;
3932
3933     return(ret);
3934 }
3935
3936 /*
3937 - reguni - emit (if appropriate) a Unicode character
3938 */
3939 STATIC void
3940 S_reguni(pTHX_ UV uv, char* s, I32* lenp)
3941 {
3942     dTHR;
3943     if (SIZE_ONLY) {
3944         U8 tmpbuf[UTF8_MAXLEN];
3945         *lenp = uv_to_utf8(tmpbuf, uv) - tmpbuf;
3946     }
3947     else
3948         *lenp = uv_to_utf8((U8*)s, uv) - (U8*)s;
3949
3950 }
3951
3952 /*
3953 - reginsert - insert an operator in front of already-emitted operand
3954 *
3955 * Means relocating the operand.
3956 */
3957 STATIC void
3958 S_reginsert(pTHX_ U8 op, regnode *opnd)
3959 {
3960     dTHR;
3961     register regnode *src;
3962     register regnode *dst;
3963     register regnode *place;
3964     register int offset = regarglen[(U8)op];
3965     
3966 /* (PL_regkind[(U8)op] == CURLY ? EXTRA_STEP_2ARGS : 0); */
3967
3968     if (SIZE_ONLY) {
3969         PL_regsize += NODE_STEP_REGNODE + offset;
3970         return;
3971     }
3972
3973     src = PL_regcode;
3974     PL_regcode += NODE_STEP_REGNODE + offset;
3975     dst = PL_regcode;
3976     while (src > opnd)
3977         StructCopy(--src, --dst, regnode);
3978
3979     place = opnd;               /* Op node, where operand used to be. */
3980     src = NEXTOPER(place);
3981     FILL_ADVANCE_NODE(place, op);
3982     Zero(src, offset, regnode);
3983 }
3984
3985 /*
3986 - regtail - set the next-pointer at the end of a node chain of p to val.
3987 */
3988 STATIC void
3989 S_regtail(pTHX_ regnode *p, regnode *val)
3990 {
3991     dTHR;
3992     register regnode *scan;
3993     register regnode *temp;
3994
3995     if (SIZE_ONLY)
3996         return;
3997
3998     /* Find last node. */
3999     scan = p;
4000     for (;;) {
4001         temp = regnext(scan);
4002         if (temp == NULL)
4003             break;
4004         scan = temp;
4005     }
4006
4007     if (reg_off_by_arg[OP(scan)]) {
4008         ARG_SET(scan, val - scan);
4009     }
4010     else {
4011         NEXT_OFF(scan) = val - scan;
4012     }
4013 }
4014
4015 /*
4016 - regoptail - regtail on operand of first argument; nop if operandless
4017 */
4018 STATIC void
4019 S_regoptail(pTHX_ regnode *p, regnode *val)
4020 {
4021     dTHR;
4022     /* "Operandless" and "op != BRANCH" are synonymous in practice. */
4023     if (p == NULL || SIZE_ONLY)
4024         return;
4025     if (PL_regkind[(U8)OP(p)] == BRANCH) {
4026         regtail(NEXTOPER(p), val);
4027     }
4028     else if ( PL_regkind[(U8)OP(p)] == BRANCHJ) {
4029         regtail(NEXTOPER(NEXTOPER(p)), val);
4030     }
4031     else
4032         return;
4033 }
4034
4035 /*
4036  - regcurly - a little FSA that accepts {\d+,?\d*}
4037  */
4038 STATIC I32
4039 S_regcurly(pTHX_ register char *s)
4040 {
4041     if (*s++ != '{')
4042         return FALSE;
4043     if (!isDIGIT(*s))
4044         return FALSE;
4045     while (isDIGIT(*s))
4046         s++;
4047     if (*s == ',')
4048         s++;
4049     while (isDIGIT(*s))
4050         s++;
4051     if (*s != '}')
4052         return FALSE;
4053     return TRUE;
4054 }
4055
4056
4057 STATIC regnode *
4058 S_dumpuntil(pTHX_ regnode *start, regnode *node, regnode *last, SV* sv, I32 l)
4059 {
4060 #ifdef DEBUGGING
4061     register U8 op = EXACT;     /* Arbitrary non-END op. */
4062     register regnode *next;
4063
4064     while (op != END && (!last || node < last)) {
4065         /* While that wasn't END last time... */
4066
4067         NODE_ALIGN(node);
4068         op = OP(node);
4069         if (op == CLOSE)
4070             l--;        
4071         next = regnext(node);
4072         /* Where, what. */
4073         if (OP(node) == OPTIMIZED)
4074             goto after_print;
4075         regprop(sv, node);
4076         PerlIO_printf(Perl_debug_log, "%4"IVdf":%*s%s", (IV)(node - start),
4077                       (int)(2*l + 1), "", SvPVX(sv));
4078         if (next == NULL)               /* Next ptr. */
4079             PerlIO_printf(Perl_debug_log, "(0)");
4080         else 
4081             PerlIO_printf(Perl_debug_log, "(%"IVdf")", (IV)(next - start));
4082         (void)PerlIO_putc(Perl_debug_log, '\n');
4083       after_print:
4084         if (PL_regkind[(U8)op] == BRANCHJ) {
4085             register regnode *nnode = (OP(next) == LONGJMP 
4086                                        ? regnext(next) 
4087                                        : next);
4088             if (last && nnode > last)
4089                 nnode = last;
4090             node = dumpuntil(start, NEXTOPER(NEXTOPER(node)), nnode, sv, l + 1);
4091         }
4092         else if (PL_regkind[(U8)op] == BRANCH) {
4093             node = dumpuntil(start, NEXTOPER(node), next, sv, l + 1);
4094         }
4095         else if ( op == CURLY) {   /* `next' might be very big: optimizer */
4096             node = dumpuntil(start, NEXTOPER(node) + EXTRA_STEP_2ARGS,
4097                              NEXTOPER(node) + EXTRA_STEP_2ARGS + 1, sv, l + 1);
4098         }
4099         else if (PL_regkind[(U8)op] == CURLY && op != CURLYX) {
4100             node = dumpuntil(start, NEXTOPER(node) + EXTRA_STEP_2ARGS,
4101                              next, sv, l + 1);
4102         }
4103         else if ( op == PLUS || op == STAR) {
4104             node = dumpuntil(start, NEXTOPER(node), NEXTOPER(node) + 1, sv, l + 1);
4105         }
4106         else if (op == ANYOF) {
4107             node = NEXTOPER(node);
4108             node += ANYOF_SKIP;
4109         }
4110         else if (PL_regkind[(U8)op] == EXACT) {
4111             /* Literal string, where present. */
4112             node += NODE_SZ_STR(node) - 1;
4113             node = NEXTOPER(node);
4114         }
4115         else {
4116             node = NEXTOPER(node);
4117             node += regarglen[(U8)op];
4118         }
4119         if (op == CURLYX || op == OPEN)
4120             l++;
4121         else if (op == WHILEM)
4122             l--;
4123     }
4124 #endif  /* DEBUGGING */
4125     return node;
4126 }
4127
4128 /*
4129  - regdump - dump a regexp onto Perl_debug_log in vaguely comprehensible form
4130  */
4131 void
4132 Perl_regdump(pTHX_ regexp *r)
4133 {
4134 #ifdef DEBUGGING
4135     dTHR;
4136     SV *sv = sv_newmortal();
4137
4138     (void)dumpuntil(r->program, r->program + 1, NULL, sv, 0);
4139
4140     /* Header fields of interest. */
4141     if (r->anchored_substr)
4142         PerlIO_printf(Perl_debug_log,
4143                       "anchored `%s%.*s%s'%s at %"IVdf" ", 
4144                       PL_colors[0],
4145                       (int)(SvCUR(r->anchored_substr) - (SvTAIL(r->anchored_substr)!=0)),
4146                       SvPVX(r->anchored_substr), 
4147                       PL_colors[1],
4148                       SvTAIL(r->anchored_substr) ? "$" : "",
4149                       (IV)r->anchored_offset);
4150     if (r->float_substr)
4151         PerlIO_printf(Perl_debug_log,
4152                       "floating `%s%.*s%s'%s at %"IVdf"..%"UVuf" ", 
4153                       PL_colors[0],
4154                       (int)(SvCUR(r->float_substr) - (SvTAIL(r->float_substr)!=0)), 
4155                       SvPVX(r->float_substr),
4156                       PL_colors[1],
4157                       SvTAIL(r->float_substr) ? "$" : "",
4158                       (IV)r->float_min_offset, (UV)r->float_max_offset);
4159     if (r->check_substr)
4160         PerlIO_printf(Perl_debug_log, 
4161                       r->check_substr == r->float_substr 
4162                       ? "(checking floating" : "(checking anchored");
4163     if (r->reganch & ROPT_NOSCAN)
4164         PerlIO_printf(Perl_debug_log, " noscan");
4165     if (r->reganch & ROPT_CHECK_ALL)
4166         PerlIO_printf(Perl_debug_log, " isall");
4167     if (r->check_substr)
4168         PerlIO_printf(Perl_debug_log, ") ");
4169
4170     if (r->regstclass) {
4171         regprop(sv, r->regstclass);
4172         PerlIO_printf(Perl_debug_log, "stclass `%s' ", SvPVX(sv));
4173     }
4174     if (r->reganch & ROPT_ANCH) {
4175         PerlIO_printf(Perl_debug_log, "anchored");
4176         if (r->reganch & ROPT_ANCH_BOL)
4177             PerlIO_printf(Perl_debug_log, "(BOL)");
4178         if (r->reganch & ROPT_ANCH_MBOL)
4179             PerlIO_printf(Perl_debug_log, "(MBOL)");
4180         if (r->reganch & ROPT_ANCH_SBOL)
4181             PerlIO_printf(Perl_debug_log, "(SBOL)");
4182         if (r->reganch & ROPT_ANCH_GPOS)
4183             PerlIO_printf(Perl_debug_log, "(GPOS)");
4184         PerlIO_putc(Perl_debug_log, ' ');
4185     }
4186     if (r->reganch & ROPT_GPOS_SEEN)
4187         PerlIO_printf(Perl_debug_log, "GPOS ");
4188     if (r->reganch & ROPT_SKIP)
4189         PerlIO_printf(Perl_debug_log, "plus ");
4190     if (r->reganch & ROPT_IMPLICIT)
4191         PerlIO_printf(Perl_debug_log, "implicit ");
4192     PerlIO_printf(Perl_debug_log, "minlen %ld ", (long) r->minlen);
4193     if (r->reganch & ROPT_EVAL_SEEN)
4194         PerlIO_printf(Perl_debug_log, "with eval ");
4195     PerlIO_printf(Perl_debug_log, "\n");
4196 #endif  /* DEBUGGING */
4197 }
4198
4199 STATIC void
4200 S_put_byte(pTHX_ SV *sv, int c)
4201 {
4202     if (c <= ' ' || c == 127 || c == 255)
4203         Perl_sv_catpvf(aTHX_ sv, "\\%o", c);
4204     else if (c == '-' || c == ']' || c == '\\' || c == '^')
4205         Perl_sv_catpvf(aTHX_ sv, "\\%c", c);
4206     else
4207         Perl_sv_catpvf(aTHX_ sv, "%c", c);
4208 }
4209
4210 /*
4211 - regprop - printable representation of opcode
4212 */
4213 void
4214 Perl_regprop(pTHX_ SV *sv, regnode *o)
4215 {
4216 #ifdef DEBUGGING
4217     dTHR;
4218     register int k;
4219
4220     sv_setpvn(sv, "", 0);
4221     if (OP(o) >= reg_num)               /* regnode.type is unsigned */
4222         FAIL("Corrupted regexp opcode");
4223     sv_catpv(sv, (char*)reg_name[OP(o)]); /* Take off const! */
4224
4225     k = PL_regkind[(U8)OP(o)];
4226
4227     if (k == EXACT)
4228         Perl_sv_catpvf(aTHX_ sv, " <%s%.*s%s>", PL_colors[0],
4229                        STR_LEN(o), STRING(o), PL_colors[1]);
4230     else if (k == CURLY) {
4231         if (OP(o) == CURLYM || OP(o) == CURLYN)
4232             Perl_sv_catpvf(aTHX_ sv, "[%d]", o->flags); /* Parenth number */
4233         Perl_sv_catpvf(aTHX_ sv, " {%d,%d}", ARG1(o), ARG2(o));
4234     }
4235     else if (k == WHILEM && o->flags)                   /* Ordinal/of */
4236         Perl_sv_catpvf(aTHX_ sv, "[%d/%d]", o->flags & 0xf, o->flags>>4);
4237     else if (k == REF || k == OPEN || k == CLOSE || k == GROUPP )
4238         Perl_sv_catpvf(aTHX_ sv, "%d", (int)ARG(o));    /* Parenth number */
4239     else if (k == LOGICAL)
4240         Perl_sv_catpvf(aTHX_ sv, "[%d]", o->flags);     /* 2: embedded, otherwise 1 */
4241     else if (k == ANYOF) {
4242         int i, rangestart = -1;
4243         const char * const out[] = {    /* Should be syncronized with
4244                                            ANYOF_ #xdefines in regcomp.h */
4245             "\\w",
4246             "\\W",
4247             "\\s",
4248             "\\S",
4249             "\\d",
4250             "\\D",
4251             "[:alnum:]",
4252             "[:^alnum:]",
4253             "[:alpha:]",
4254             "[:^alpha:]",
4255             "[:ascii:]",
4256             "[:^ascii:]",
4257             "[:ctrl:]",
4258             "[:^ctrl:]",
4259             "[:graph:]",
4260             "[:^graph:]",
4261             "[:lower:]",
4262             "[:^lower:]",
4263             "[:print:]",
4264             "[:^print:]",
4265             "[:punct:]",
4266             "[:^punct:]",
4267             "[:upper:]",
4268             "[:^upper:]",
4269             "[:xdigit:]",
4270             "[:^xdigit:]",
4271             "[:space:]",
4272             "[:^space:]",
4273             "[:blank:]",
4274             "[:^blank:]"
4275         };
4276
4277         if (o->flags & ANYOF_LOCALE)
4278             sv_catpv(sv, "{loc}");
4279         if (o->flags & ANYOF_FOLD)
4280             sv_catpv(sv, "{i}");
4281         Perl_sv_catpvf(aTHX_ sv, "[%s", PL_colors[0]);
4282         if (o->flags & ANYOF_INVERT)
4283             sv_catpv(sv, "^");
4284         for (i = 0; i <= 256; i++) {
4285             if (i < 256 && ANYOF_BITMAP_TEST(o,i)) {
4286                 if (rangestart == -1)
4287                     rangestart = i;
4288             } else if (rangestart != -1) {
4289                 if (i <= rangestart + 3)
4290                     for (; rangestart < i; rangestart++)
4291                         put_byte(sv, rangestart);
4292                 else {
4293                     put_byte(sv, rangestart);
4294                     sv_catpv(sv, "-");
4295                     put_byte(sv, i - 1);
4296                 }
4297                 rangestart = -1;
4298             }
4299         }
4300         if (o->flags & ANYOF_CLASS)
4301             for (i = 0; i < sizeof(out)/sizeof(char*); i++)
4302                 if (ANYOF_CLASS_TEST(o,i))
4303                     sv_catpv(sv, out[i]);
4304         Perl_sv_catpvf(aTHX_ sv, "%s]", PL_colors[1]);
4305     }
4306     else if (k == BRANCHJ && (OP(o) == UNLESSM || OP(o) == IFMATCH))
4307         Perl_sv_catpvf(aTHX_ sv, "[-%d]", o->flags);
4308 #endif  /* DEBUGGING */
4309 }
4310
4311 SV *
4312 Perl_re_intuit_string(pTHX_ regexp *prog)
4313 {                               /* Assume that RE_INTUIT is set */
4314     DEBUG_r(
4315         {   STRLEN n_a;
4316             char *s = SvPV(prog->check_substr,n_a);
4317
4318             if (!PL_colorset) reginitcolors();
4319             PerlIO_printf(Perl_debug_log,
4320                       "%sUsing REx substr:%s `%s%.60s%s%s'\n",
4321                       PL_colors[4],PL_colors[5],PL_colors[0],
4322                       s,
4323                       PL_colors[1],
4324                       (strlen(s) > 60 ? "..." : ""));
4325         } );
4326
4327     return prog->check_substr;
4328 }
4329
4330 void
4331 Perl_pregfree(pTHX_ struct regexp *r)
4332 {
4333     dTHR;
4334     DEBUG_r(if (!PL_colorset) reginitcolors());
4335
4336     if (!r || (--r->refcnt > 0))
4337         return;
4338     DEBUG_r(PerlIO_printf(Perl_debug_log,
4339                       "%sFreeing REx:%s `%s%.60s%s%s'\n",
4340                       PL_colors[4],PL_colors[5],PL_colors[0],
4341                       r->precomp,
4342                       PL_colors[1],
4343                       (strlen(r->precomp) > 60 ? "..." : "")));
4344
4345     if (r->precomp)
4346         Safefree(r->precomp);
4347     if (RX_MATCH_COPIED(r))
4348         Safefree(r->subbeg);
4349     if (r->substrs) {
4350         if (r->anchored_substr)
4351             SvREFCNT_dec(r->anchored_substr);
4352         if (r->float_substr)
4353             SvREFCNT_dec(r->float_substr);
4354         Safefree(r->substrs);
4355     }
4356     if (r->data) {
4357         int n = r->data->count;
4358         AV* new_comppad = NULL;
4359         AV* old_comppad;
4360         SV** old_curpad;
4361
4362         while (--n >= 0) {
4363             switch (r->data->what[n]) {
4364             case 's':
4365                 SvREFCNT_dec((SV*)r->data->data[n]);
4366                 break;
4367             case 'f':
4368                 Safefree(r->data->data[n]);
4369                 break;
4370             case 'p':
4371                 new_comppad = (AV*)r->data->data[n];
4372                 break;
4373             case 'o':
4374                 if (new_comppad == NULL)
4375                     Perl_croak(aTHX_ "panic: pregfree comppad");
4376                 old_comppad = PL_comppad;
4377                 old_curpad = PL_curpad;
4378                 /* Watch out for global destruction's random ordering. */
4379                 if (SvTYPE(new_comppad) == SVt_PVAV) {
4380                     PL_comppad = new_comppad;
4381                     PL_curpad = AvARRAY(new_comppad);
4382                 }
4383                 else
4384                     PL_curpad = NULL;
4385                 op_free((OP_4tree*)r->data->data[n]);
4386                 PL_comppad = old_comppad;
4387                 PL_curpad = old_curpad;
4388                 SvREFCNT_dec((SV*)new_comppad);
4389                 new_comppad = NULL;
4390                 break;
4391             case 'n':
4392                 break;
4393             default:
4394                 FAIL2("panic: regfree data code '%c'", r->data->what[n]);
4395             }
4396         }
4397         Safefree(r->data->what);
4398         Safefree(r->data);
4399     }
4400     Safefree(r->startp);
4401     Safefree(r->endp);
4402     Safefree(r);
4403 }
4404
4405 /*
4406  - regnext - dig the "next" pointer out of a node
4407  *
4408  * [Note, when REGALIGN is defined there are two places in regmatch()
4409  * that bypass this code for speed.]
4410  */
4411 regnode *
4412 Perl_regnext(pTHX_ register regnode *p)
4413 {
4414     dTHR;
4415     register I32 offset;
4416
4417     if (p == &PL_regdummy)
4418         return(NULL);
4419
4420     offset = (reg_off_by_arg[OP(p)] ? ARG(p) : NEXT_OFF(p));
4421     if (offset == 0)
4422         return(NULL);
4423
4424     return(p+offset);
4425 }
4426
4427 STATIC void     
4428 S_re_croak2(pTHX_ const char* pat1,const char* pat2,...)
4429 {
4430     va_list args;
4431     STRLEN l1 = strlen(pat1);
4432     STRLEN l2 = strlen(pat2);
4433     char buf[512];
4434     SV *msv;
4435     char *message;
4436
4437     if (l1 > 510)
4438         l1 = 510;
4439     if (l1 + l2 > 510)
4440         l2 = 510 - l1;
4441     Copy(pat1, buf, l1 , char);
4442     Copy(pat2, buf + l1, l2 , char);
4443     buf[l1 + l2] = '\n';
4444     buf[l1 + l2 + 1] = '\0';
4445 #ifdef I_STDARG
4446     /* ANSI variant takes additional second argument */
4447     va_start(args, pat2);
4448 #else
4449     va_start(args);
4450 #endif
4451     msv = vmess(buf, &args);
4452     va_end(args);
4453     message = SvPV(msv,l1);
4454     if (l1 > 512)
4455         l1 = 512;
4456     Copy(message, buf, l1 , char);
4457     buf[l1] = '\0';                     /* Overwrite \n */
4458     Perl_croak(aTHX_ "%s", buf);
4459 }
4460
4461 /* XXX Here's a total kludge.  But we need to re-enter for swash routines. */
4462
4463 void
4464 Perl_save_re_context(pTHX)
4465 {                   
4466     dTHR;
4467     SAVEPPTR(PL_bostr);
4468     SAVEPPTR(PL_regprecomp);            /* uncompiled string. */
4469     SAVEI32(PL_regnpar);                /* () count. */
4470     SAVEI32(PL_regsize);                /* Code size. */
4471     SAVEI16(PL_regflags);               /* are we folding, multilining? */
4472     SAVEPPTR(PL_reginput);              /* String-input pointer. */
4473     SAVEPPTR(PL_regbol);                /* Beginning of input, for ^ check. */
4474     SAVEPPTR(PL_regeol);                /* End of input, for $ check. */
4475     SAVEVPTR(PL_regstartp);             /* Pointer to startp array. */
4476     SAVEVPTR(PL_regendp);               /* Ditto for endp. */
4477     SAVEVPTR(PL_reglastparen);          /* Similarly for lastparen. */
4478     SAVEPPTR(PL_regtill);               /* How far we are required to go. */
4479     SAVEI8(PL_regprev);                 /* char before regbol, \n if none */
4480     SAVEVPTR(PL_reg_start_tmp);         /* from regexec.c */
4481     PL_reg_start_tmp = 0;
4482     SAVEFREEPV(PL_reg_start_tmp);
4483     SAVEI32(PL_reg_start_tmpl);         /* from regexec.c */
4484     PL_reg_start_tmpl = 0;
4485     SAVEVPTR(PL_regdata);
4486     SAVEI32(PL_reg_flags);              /* from regexec.c */
4487     SAVEI32(PL_reg_eval_set);           /* from regexec.c */
4488     SAVEI32(PL_regnarrate);             /* from regexec.c */
4489     SAVEVPTR(PL_regprogram);            /* from regexec.c */
4490     SAVEINT(PL_regindent);              /* from regexec.c */
4491     SAVEVPTR(PL_regcc);                 /* from regexec.c */
4492     SAVEVPTR(PL_curcop);
4493     SAVEVPTR(PL_regcomp_rx);            /* from regcomp.c */
4494     SAVEI32(PL_regseen);                /* from regcomp.c */
4495     SAVEI32(PL_regsawback);             /* Did we see \1, ...? */
4496     SAVEI32(PL_regnaughty);             /* How bad is this pattern? */
4497     SAVEVPTR(PL_regcode);               /* Code-emit pointer; &regdummy = don't */
4498     SAVEPPTR(PL_regxend);               /* End of input for compile */
4499     SAVEPPTR(PL_regcomp_parse);         /* Input-scan pointer. */
4500     SAVEVPTR(PL_reg_call_cc);           /* from regexec.c */
4501     SAVEVPTR(PL_reg_re);                /* from regexec.c */
4502     SAVEPPTR(PL_reg_ganch);             /* from regexec.c */
4503     SAVESPTR(PL_reg_sv);                /* from regexec.c */
4504     SAVEVPTR(PL_reg_magic);             /* from regexec.c */
4505     SAVEI32(PL_reg_oldpos);                     /* from regexec.c */
4506     SAVEVPTR(PL_reg_oldcurpm);          /* from regexec.c */
4507     SAVEVPTR(PL_reg_curpm);             /* from regexec.c */
4508 #ifdef DEBUGGING
4509     SAVEPPTR(PL_reg_starttry);          /* from regexec.c */    
4510 #endif
4511 }
4512
4513 #ifdef PERL_OBJECT
4514 #include "XSUB.h"
4515 #undef this
4516 #define this pPerl
4517 #endif
4518
4519 static void
4520 clear_re(pTHXo_ void *r)
4521 {
4522     ReREFCNT_dec((regexp *)r);
4523 }
4524