This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
toke.c: Skip PL_expect assignment under KEY_require
[perl5.git] / toke.c
1 /*    toke.c
2  *
3  *    Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4  *    2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
5  *
6  *    You may distribute under the terms of either the GNU General Public
7  *    License or the Artistic License, as specified in the README file.
8  *
9  */
10
11 /*
12  *  'It all comes from here, the stench and the peril.'    --Frodo
13  *
14  *     [p.719 of _The Lord of the Rings_, IV/ix: "Shelob's Lair"]
15  */
16
17 /*
18  * This file is the lexer for Perl.  It's closely linked to the
19  * parser, perly.y.
20  *
21  * The main routine is yylex(), which returns the next token.
22  */
23
24 /*
25 =head1 Lexer interface
26 This is the lower layer of the Perl parser, managing characters and tokens.
27
28 =for apidoc AmU|yy_parser *|PL_parser
29
30 Pointer to a structure encapsulating the state of the parsing operation
31 currently in progress.  The pointer can be locally changed to perform
32 a nested parse without interfering with the state of an outer parse.
33 Individual members of C<PL_parser> have their own documentation.
34
35 =cut
36 */
37
38 #include "EXTERN.h"
39 #define PERL_IN_TOKE_C
40 #include "perl.h"
41 #include "dquote_static.c"
42
43 #define new_constant(a,b,c,d,e,f,g)     \
44         S_new_constant(aTHX_ a,b,STR_WITH_LEN(c),d,e,f, g)
45
46 #define pl_yylval       (PL_parser->yylval)
47
48 /* XXX temporary backwards compatibility */
49 #define PL_lex_brackets         (PL_parser->lex_brackets)
50 #define PL_lex_allbrackets      (PL_parser->lex_allbrackets)
51 #define PL_lex_fakeeof          (PL_parser->lex_fakeeof)
52 #define PL_lex_brackstack       (PL_parser->lex_brackstack)
53 #define PL_lex_casemods         (PL_parser->lex_casemods)
54 #define PL_lex_casestack        (PL_parser->lex_casestack)
55 #define PL_lex_defer            (PL_parser->lex_defer)
56 #define PL_lex_dojoin           (PL_parser->lex_dojoin)
57 #define PL_lex_expect           (PL_parser->lex_expect)
58 #define PL_lex_formbrack        (PL_parser->lex_formbrack)
59 #define PL_lex_inpat            (PL_parser->lex_inpat)
60 #define PL_lex_inwhat           (PL_parser->lex_inwhat)
61 #define PL_lex_op               (PL_parser->lex_op)
62 #define PL_lex_repl             (PL_parser->lex_repl)
63 #define PL_lex_starts           (PL_parser->lex_starts)
64 #define PL_lex_stuff            (PL_parser->lex_stuff)
65 #define PL_multi_start          (PL_parser->multi_start)
66 #define PL_multi_open           (PL_parser->multi_open)
67 #define PL_multi_close          (PL_parser->multi_close)
68 #define PL_preambled            (PL_parser->preambled)
69 #define PL_sublex_info          (PL_parser->sublex_info)
70 #define PL_linestr              (PL_parser->linestr)
71 #define PL_expect               (PL_parser->expect)
72 #define PL_copline              (PL_parser->copline)
73 #define PL_bufptr               (PL_parser->bufptr)
74 #define PL_oldbufptr            (PL_parser->oldbufptr)
75 #define PL_oldoldbufptr         (PL_parser->oldoldbufptr)
76 #define PL_linestart            (PL_parser->linestart)
77 #define PL_bufend               (PL_parser->bufend)
78 #define PL_last_uni             (PL_parser->last_uni)
79 #define PL_last_lop             (PL_parser->last_lop)
80 #define PL_last_lop_op          (PL_parser->last_lop_op)
81 #define PL_lex_state            (PL_parser->lex_state)
82 #define PL_rsfp                 (PL_parser->rsfp)
83 #define PL_rsfp_filters         (PL_parser->rsfp_filters)
84 #define PL_in_my                (PL_parser->in_my)
85 #define PL_in_my_stash          (PL_parser->in_my_stash)
86 #define PL_tokenbuf             (PL_parser->tokenbuf)
87 #define PL_multi_end            (PL_parser->multi_end)
88 #define PL_error_count          (PL_parser->error_count)
89
90 #  define PL_nexttoke           (PL_parser->nexttoke)
91 #  define PL_nexttype           (PL_parser->nexttype)
92 #  define PL_nextval            (PL_parser->nextval)
93
94 static const char* const ident_too_long = "Identifier too long";
95
96 #  define NEXTVAL_NEXTTOKE PL_nextval[PL_nexttoke]
97
98 #define XENUMMASK  0x3f
99 #define XFAKEEOF   0x40
100 #define XFAKEBRACK 0x80
101
102 #ifdef USE_UTF8_SCRIPTS
103 #   define UTF (!IN_BYTES)
104 #else
105 #   define UTF ((PL_linestr && DO_UTF8(PL_linestr)) || ( !(PL_parser->lex_flags & LEX_IGNORE_UTF8_HINTS) && (PL_hints & HINT_UTF8)))
106 #endif
107
108 /* The maximum number of characters preceding the unrecognized one to display */
109 #define UNRECOGNIZED_PRECEDE_COUNT 10
110
111 /* In variables named $^X, these are the legal values for X.
112  * 1999-02-27 mjd-perl-patch@plover.com */
113 #define isCONTROLVAR(x) (isUPPER(x) || strchr("[\\]^_?", (x)))
114
115 #define SPACE_OR_TAB(c) isBLANK_A(c)
116
117 #define HEXFP_PEEK(s)     \
118     (((s[0] == '.') && \
119       (isXDIGIT(s[1]) || isALPHA_FOLD_EQ(s[1], 'p'))) || \
120      isALPHA_FOLD_EQ(s[0], 'p'))
121
122 /* LEX_* are values for PL_lex_state, the state of the lexer.
123  * They are arranged oddly so that the guard on the switch statement
124  * can get by with a single comparison (if the compiler is smart enough).
125  *
126  * These values refer to the various states within a sublex parse,
127  * i.e. within a double quotish string
128  */
129
130 /* #define LEX_NOTPARSING               11 is done in perl.h. */
131
132 #define LEX_NORMAL              10 /* normal code (ie not within "...")     */
133 #define LEX_INTERPNORMAL         9 /* code within a string, eg "$foo[$x+1]" */
134 #define LEX_INTERPCASEMOD        8 /* expecting a \U, \Q or \E etc          */
135 #define LEX_INTERPPUSH           7 /* starting a new sublex parse level     */
136 #define LEX_INTERPSTART          6 /* expecting the start of a $var         */
137
138                                    /* at end of code, eg "$x" followed by:  */
139 #define LEX_INTERPEND            5 /* ... eg not one of [, { or ->          */
140 #define LEX_INTERPENDMAYBE       4 /* ... eg one of [, { or ->              */
141
142 #define LEX_INTERPCONCAT         3 /* expecting anything, eg at start of
143                                         string or after \E, $foo, etc       */
144 #define LEX_INTERPCONST          2 /* NOT USED */
145 #define LEX_FORMLINE             1 /* expecting a format line               */
146 #define LEX_KNOWNEXT             0 /* next token known; just return it      */
147
148
149 #ifdef DEBUGGING
150 static const char* const lex_state_names[] = {
151     "KNOWNEXT",
152     "FORMLINE",
153     "INTERPCONST",
154     "INTERPCONCAT",
155     "INTERPENDMAYBE",
156     "INTERPEND",
157     "INTERPSTART",
158     "INTERPPUSH",
159     "INTERPCASEMOD",
160     "INTERPNORMAL",
161     "NORMAL"
162 };
163 #endif
164
165 #include "keywords.h"
166
167 /* CLINE is a macro that ensures PL_copline has a sane value */
168
169 #define CLINE (PL_copline = (CopLINE(PL_curcop) < PL_copline ? CopLINE(PL_curcop) : PL_copline))
170
171 #  define SKIPSPACE0(s) skipspace(s)
172 #  define SKIPSPACE1(s) skipspace(s)
173 #  define SKIPSPACE2(s,tsv) skipspace(s)
174 #  define PEEKSPACE(s) skipspace(s)
175
176 /*
177  * Convenience functions to return different tokens and prime the
178  * lexer for the next token.  They all take an argument.
179  *
180  * TOKEN        : generic token (used for '(', DOLSHARP, etc)
181  * OPERATOR     : generic operator
182  * AOPERATOR    : assignment operator
183  * PREBLOCK     : beginning the block after an if, while, foreach, ...
184  * PRETERMBLOCK : beginning a non-code-defining {} block (eg, hash ref)
185  * PREREF       : *EXPR where EXPR is not a simple identifier
186  * TERM         : expression term
187  * POSTDEREF    : postfix dereference (->$* ->@[...] etc.)
188  * LOOPX        : loop exiting command (goto, last, dump, etc)
189  * FTST         : file test operator
190  * FUN0         : zero-argument function
191  * FUN0OP       : zero-argument function, with its op created in this file
192  * FUN1         : not used, except for not, which isn't a UNIOP
193  * BOop         : bitwise or or xor
194  * BAop         : bitwise and
195  * SHop         : shift operator
196  * PWop         : power operator
197  * PMop         : pattern-matching operator
198  * Aop          : addition-level operator
199  * Mop          : multiplication-level operator
200  * Eop          : equality-testing operator
201  * Rop          : relational operator <= != gt
202  *
203  * Also see LOP and lop() below.
204  */
205
206 #ifdef DEBUGGING /* Serve -DT. */
207 #   define REPORT(retval) tokereport((I32)retval, &pl_yylval)
208 #else
209 #   define REPORT(retval) (retval)
210 #endif
211
212 #define TOKEN(retval) return ( PL_bufptr = s, REPORT(retval))
213 #define OPERATOR(retval) return (PL_expect = XTERM, PL_bufptr = s, REPORT(retval))
214 #define AOPERATOR(retval) return ao((PL_expect = XTERM, PL_bufptr = s, REPORT(retval)))
215 #define PREBLOCK(retval) return (PL_expect = XBLOCK,PL_bufptr = s, REPORT(retval))
216 #define PRETERMBLOCK(retval) return (PL_expect = XTERMBLOCK,PL_bufptr = s, REPORT(retval))
217 #define PREREF(retval) return (PL_expect = XREF,PL_bufptr = s, REPORT(retval))
218 #define TERM(retval) return (CLINE, PL_expect = XOPERATOR, PL_bufptr = s, REPORT(retval))
219 #define POSTDEREF(f) return (PL_bufptr = s, S_postderef(aTHX_ REPORT(f),s[1]))
220 #define LOOPX(f) return (PL_expect = XOPERATOR, \
221                          PL_bufptr = force_word(s,WORD,TRUE,FALSE), \
222                          pl_yylval.ival=f, \
223                          (void)(PL_nexttoke || (PL_expect = XTERM)), \
224                          REPORT((int)LOOPEX))
225 #define FTST(f)  return (pl_yylval.ival=f, PL_expect=XTERMORDORDOR, PL_bufptr=s, REPORT((int)UNIOP))
226 #define FUN0(f)  return (pl_yylval.ival=f, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC0))
227 #define FUN0OP(f)  return (pl_yylval.opval=f, CLINE, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC0OP))
228 #define FUN1(f)  return (pl_yylval.ival=f, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC1))
229 #define BOop(f)  return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)BITOROP)))
230 #define BAop(f)  return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)BITANDOP)))
231 #define SHop(f)  return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)SHIFTOP)))
232 #define PWop(f)  return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)POWOP)))
233 #define PMop(f)  return(pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)MATCHOP))
234 #define Aop(f)   return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)ADDOP)))
235 #define Mop(f)   return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)MULOP)))
236 #define Eop(f)   return (pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)EQOP))
237 #define Rop(f)   return (pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)RELOP))
238
239 /* This bit of chicanery makes a unary function followed by
240  * a parenthesis into a function with one argument, highest precedence.
241  * The UNIDOR macro is for unary functions that can be followed by the //
242  * operator (such as C<shift // 0>).
243  */
244 #define UNI3(f,x,have_x) { \
245         pl_yylval.ival = f; \
246         if (have_x) PL_expect = x; \
247         PL_bufptr = s; \
248         PL_last_uni = PL_oldbufptr; \
249         PL_last_lop_op = f; \
250         if (*s == '(') \
251             return REPORT( (int)FUNC1 ); \
252         s = PEEKSPACE(s); \
253         return REPORT( *s=='(' ? (int)FUNC1 : (int)UNIOP ); \
254         }
255 #define UNI(f)    UNI3(f,XTERM,1)
256 #define UNIDOR(f) UNI3(f,XTERMORDORDOR,1)
257 #define UNIPROTO(f,optional) { \
258         if (optional) PL_last_uni = PL_oldbufptr; \
259         OPERATOR(f); \
260         }
261
262 #define UNIBRACK(f) UNI3(f,0,0)
263
264 /* grandfather return to old style */
265 #define OLDLOP(f) \
266         do { \
267             if (!PL_lex_allbrackets && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC) \
268                 PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC; \
269             pl_yylval.ival = (f); \
270             PL_expect = XTERM; \
271             PL_bufptr = s; \
272             return (int)LSTOP; \
273         } while(0)
274
275 #define COPLINE_INC_WITH_HERELINES                  \
276     STMT_START {                                     \
277         CopLINE_inc(PL_curcop);                       \
278         if (PL_parser->herelines)                      \
279             CopLINE(PL_curcop) += PL_parser->herelines, \
280             PL_parser->herelines = 0;                    \
281     } STMT_END
282 /* Called after scan_str to update CopLINE(PL_curcop), but only when there
283  * is no sublex_push to follow. */
284 #define COPLINE_SET_FROM_MULTI_END            \
285     STMT_START {                               \
286         CopLINE_set(PL_curcop, PL_multi_end);   \
287         if (PL_multi_end != PL_multi_start)      \
288             PL_parser->herelines = 0;             \
289     } STMT_END
290
291
292 #ifdef DEBUGGING
293
294 /* how to interpret the pl_yylval associated with the token */
295 enum token_type {
296     TOKENTYPE_NONE,
297     TOKENTYPE_IVAL,
298     TOKENTYPE_OPNUM, /* pl_yylval.ival contains an opcode number */
299     TOKENTYPE_PVAL,
300     TOKENTYPE_OPVAL
301 };
302
303 static struct debug_tokens {
304     const int token;
305     enum token_type type;
306     const char *name;
307 } const debug_tokens[] =
308 {
309     { ADDOP,            TOKENTYPE_OPNUM,        "ADDOP" },
310     { ANDAND,           TOKENTYPE_NONE,         "ANDAND" },
311     { ANDOP,            TOKENTYPE_NONE,         "ANDOP" },
312     { ANONSUB,          TOKENTYPE_IVAL,         "ANONSUB" },
313     { ARROW,            TOKENTYPE_NONE,         "ARROW" },
314     { ASSIGNOP,         TOKENTYPE_OPNUM,        "ASSIGNOP" },
315     { BITANDOP,         TOKENTYPE_OPNUM,        "BITANDOP" },
316     { BITOROP,          TOKENTYPE_OPNUM,        "BITOROP" },
317     { COLONATTR,        TOKENTYPE_NONE,         "COLONATTR" },
318     { CONTINUE,         TOKENTYPE_NONE,         "CONTINUE" },
319     { DEFAULT,          TOKENTYPE_NONE,         "DEFAULT" },
320     { DO,               TOKENTYPE_NONE,         "DO" },
321     { DOLSHARP,         TOKENTYPE_NONE,         "DOLSHARP" },
322     { DORDOR,           TOKENTYPE_NONE,         "DORDOR" },
323     { DOROP,            TOKENTYPE_OPNUM,        "DOROP" },
324     { DOTDOT,           TOKENTYPE_IVAL,         "DOTDOT" },
325     { ELSE,             TOKENTYPE_NONE,         "ELSE" },
326     { ELSIF,            TOKENTYPE_IVAL,         "ELSIF" },
327     { EQOP,             TOKENTYPE_OPNUM,        "EQOP" },
328     { FOR,              TOKENTYPE_IVAL,         "FOR" },
329     { FORMAT,           TOKENTYPE_NONE,         "FORMAT" },
330     { FORMLBRACK,       TOKENTYPE_NONE,         "FORMLBRACK" },
331     { FORMRBRACK,       TOKENTYPE_NONE,         "FORMRBRACK" },
332     { FUNC,             TOKENTYPE_OPNUM,        "FUNC" },
333     { FUNC0,            TOKENTYPE_OPNUM,        "FUNC0" },
334     { FUNC0OP,          TOKENTYPE_OPVAL,        "FUNC0OP" },
335     { FUNC0SUB,         TOKENTYPE_OPVAL,        "FUNC0SUB" },
336     { FUNC1,            TOKENTYPE_OPNUM,        "FUNC1" },
337     { FUNCMETH,         TOKENTYPE_OPVAL,        "FUNCMETH" },
338     { GIVEN,            TOKENTYPE_IVAL,         "GIVEN" },
339     { HASHBRACK,        TOKENTYPE_NONE,         "HASHBRACK" },
340     { IF,               TOKENTYPE_IVAL,         "IF" },
341     { LABEL,            TOKENTYPE_PVAL,         "LABEL" },
342     { LOCAL,            TOKENTYPE_IVAL,         "LOCAL" },
343     { LOOPEX,           TOKENTYPE_OPNUM,        "LOOPEX" },
344     { LSTOP,            TOKENTYPE_OPNUM,        "LSTOP" },
345     { LSTOPSUB,         TOKENTYPE_OPVAL,        "LSTOPSUB" },
346     { MATCHOP,          TOKENTYPE_OPNUM,        "MATCHOP" },
347     { METHOD,           TOKENTYPE_OPVAL,        "METHOD" },
348     { MULOP,            TOKENTYPE_OPNUM,        "MULOP" },
349     { MY,               TOKENTYPE_IVAL,         "MY" },
350     { NOAMP,            TOKENTYPE_NONE,         "NOAMP" },
351     { NOTOP,            TOKENTYPE_NONE,         "NOTOP" },
352     { OROP,             TOKENTYPE_IVAL,         "OROP" },
353     { OROR,             TOKENTYPE_NONE,         "OROR" },
354     { PACKAGE,          TOKENTYPE_NONE,         "PACKAGE" },
355     { PLUGEXPR,         TOKENTYPE_OPVAL,        "PLUGEXPR" },
356     { PLUGSTMT,         TOKENTYPE_OPVAL,        "PLUGSTMT" },
357     { PMFUNC,           TOKENTYPE_OPVAL,        "PMFUNC" },
358     { POSTJOIN,         TOKENTYPE_NONE,         "POSTJOIN" },
359     { POSTDEC,          TOKENTYPE_NONE,         "POSTDEC" },
360     { POSTINC,          TOKENTYPE_NONE,         "POSTINC" },
361     { POWOP,            TOKENTYPE_OPNUM,        "POWOP" },
362     { PREDEC,           TOKENTYPE_NONE,         "PREDEC" },
363     { PREINC,           TOKENTYPE_NONE,         "PREINC" },
364     { PRIVATEREF,       TOKENTYPE_OPVAL,        "PRIVATEREF" },
365     { QWLIST,           TOKENTYPE_OPVAL,        "QWLIST" },
366     { REFGEN,           TOKENTYPE_NONE,         "REFGEN" },
367     { RELOP,            TOKENTYPE_OPNUM,        "RELOP" },
368     { REQUIRE,          TOKENTYPE_NONE,         "REQUIRE" },
369     { SHIFTOP,          TOKENTYPE_OPNUM,        "SHIFTOP" },
370     { SUB,              TOKENTYPE_NONE,         "SUB" },
371     { THING,            TOKENTYPE_OPVAL,        "THING" },
372     { UMINUS,           TOKENTYPE_NONE,         "UMINUS" },
373     { UNIOP,            TOKENTYPE_OPNUM,        "UNIOP" },
374     { UNIOPSUB,         TOKENTYPE_OPVAL,        "UNIOPSUB" },
375     { UNLESS,           TOKENTYPE_IVAL,         "UNLESS" },
376     { UNTIL,            TOKENTYPE_IVAL,         "UNTIL" },
377     { USE,              TOKENTYPE_IVAL,         "USE" },
378     { WHEN,             TOKENTYPE_IVAL,         "WHEN" },
379     { WHILE,            TOKENTYPE_IVAL,         "WHILE" },
380     { WORD,             TOKENTYPE_OPVAL,        "WORD" },
381     { YADAYADA,         TOKENTYPE_IVAL,         "YADAYADA" },
382     { 0,                TOKENTYPE_NONE,         NULL }
383 };
384
385 /* dump the returned token in rv, plus any optional arg in pl_yylval */
386
387 STATIC int
388 S_tokereport(pTHX_ I32 rv, const YYSTYPE* lvalp)
389 {
390     PERL_ARGS_ASSERT_TOKEREPORT;
391
392     if (DEBUG_T_TEST) {
393         const char *name = NULL;
394         enum token_type type = TOKENTYPE_NONE;
395         const struct debug_tokens *p;
396         SV* const report = newSVpvs("<== ");
397
398         for (p = debug_tokens; p->token; p++) {
399             if (p->token == (int)rv) {
400                 name = p->name;
401                 type = p->type;
402                 break;
403             }
404         }
405         if (name)
406             Perl_sv_catpv(aTHX_ report, name);
407         else if ((char)rv > ' ' && (char)rv <= '~')
408         {
409             Perl_sv_catpvf(aTHX_ report, "'%c'", (char)rv);
410             if ((char)rv == 'p')
411                 sv_catpvs(report, " (pending identifier)");
412         }
413         else if (!rv)
414             sv_catpvs(report, "EOF");
415         else
416             Perl_sv_catpvf(aTHX_ report, "?? %"IVdf, (IV)rv);
417         switch (type) {
418         case TOKENTYPE_NONE:
419             break;
420         case TOKENTYPE_IVAL:
421             Perl_sv_catpvf(aTHX_ report, "(ival=%"IVdf")", (IV)lvalp->ival);
422             break;
423         case TOKENTYPE_OPNUM:
424             Perl_sv_catpvf(aTHX_ report, "(ival=op_%s)",
425                                     PL_op_name[lvalp->ival]);
426             break;
427         case TOKENTYPE_PVAL:
428             Perl_sv_catpvf(aTHX_ report, "(pval=\"%s\")", lvalp->pval);
429             break;
430         case TOKENTYPE_OPVAL:
431             if (lvalp->opval) {
432                 Perl_sv_catpvf(aTHX_ report, "(opval=op_%s)",
433                                     PL_op_name[lvalp->opval->op_type]);
434                 if (lvalp->opval->op_type == OP_CONST) {
435                     Perl_sv_catpvf(aTHX_ report, " %s",
436                         SvPEEK(cSVOPx_sv(lvalp->opval)));
437                 }
438
439             }
440             else
441                 sv_catpvs(report, "(opval=null)");
442             break;
443         }
444         PerlIO_printf(Perl_debug_log, "### %s\n\n", SvPV_nolen_const(report));
445     };
446     return (int)rv;
447 }
448
449
450 /* print the buffer with suitable escapes */
451
452 STATIC void
453 S_printbuf(pTHX_ const char *const fmt, const char *const s)
454 {
455     SV* const tmp = newSVpvs("");
456
457     PERL_ARGS_ASSERT_PRINTBUF;
458
459     GCC_DIAG_IGNORE(-Wformat-nonliteral); /* fmt checked by caller */
460     PerlIO_printf(Perl_debug_log, fmt, pv_display(tmp, s, strlen(s), 0, 60));
461     GCC_DIAG_RESTORE;
462     SvREFCNT_dec(tmp);
463 }
464
465 #endif
466
467 static int
468 S_deprecate_commaless_var_list(pTHX) {
469     PL_expect = XTERM;
470     deprecate("comma-less variable list");
471     return REPORT(','); /* grandfather non-comma-format format */
472 }
473
474 /*
475  * S_ao
476  *
477  * This subroutine detects &&=, ||=, and //= and turns an ANDAND, OROR or DORDOR
478  * into an OP_ANDASSIGN, OP_ORASSIGN, or OP_DORASSIGN
479  */
480
481 STATIC int
482 S_ao(pTHX_ int toketype)
483 {
484     if (*PL_bufptr == '=') {
485         PL_bufptr++;
486         if (toketype == ANDAND)
487             pl_yylval.ival = OP_ANDASSIGN;
488         else if (toketype == OROR)
489             pl_yylval.ival = OP_ORASSIGN;
490         else if (toketype == DORDOR)
491             pl_yylval.ival = OP_DORASSIGN;
492         toketype = ASSIGNOP;
493     }
494     return toketype;
495 }
496
497 /*
498  * S_no_op
499  * When Perl expects an operator and finds something else, no_op
500  * prints the warning.  It always prints "<something> found where
501  * operator expected.  It prints "Missing semicolon on previous line?"
502  * if the surprise occurs at the start of the line.  "do you need to
503  * predeclare ..." is printed out for code like "sub bar; foo bar $x"
504  * where the compiler doesn't know if foo is a method call or a function.
505  * It prints "Missing operator before end of line" if there's nothing
506  * after the missing operator, or "... before <...>" if there is something
507  * after the missing operator.
508  */
509
510 STATIC void
511 S_no_op(pTHX_ const char *const what, char *s)
512 {
513     char * const oldbp = PL_bufptr;
514     const bool is_first = (PL_oldbufptr == PL_linestart);
515
516     PERL_ARGS_ASSERT_NO_OP;
517
518     if (!s)
519         s = oldbp;
520     else
521         PL_bufptr = s;
522     yywarn(Perl_form(aTHX_ "%s found where operator expected", what), UTF ? SVf_UTF8 : 0);
523     if (ckWARN_d(WARN_SYNTAX)) {
524         if (is_first)
525             Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
526                     "\t(Missing semicolon on previous line?)\n");
527         else if (PL_oldoldbufptr && isIDFIRST_lazy_if(PL_oldoldbufptr,UTF)) {
528             const char *t;
529             for (t = PL_oldoldbufptr; (isWORDCHAR_lazy_if(t,UTF) || *t == ':');
530                                                             t += UTF ? UTF8SKIP(t) : 1)
531                 NOOP;
532             if (t < PL_bufptr && isSPACE(*t))
533                 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
534                         "\t(Do you need to predeclare %"UTF8f"?)\n",
535                       UTF8fARG(UTF, t - PL_oldoldbufptr, PL_oldoldbufptr));
536         }
537         else {
538             assert(s >= oldbp);
539             Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
540                     "\t(Missing operator before %"UTF8f"?)\n",
541                      UTF8fARG(UTF, s - oldbp, oldbp));
542         }
543     }
544     PL_bufptr = oldbp;
545 }
546
547 /*
548  * S_missingterm
549  * Complain about missing quote/regexp/heredoc terminator.
550  * If it's called with NULL then it cauterizes the line buffer.
551  * If we're in a delimited string and the delimiter is a control
552  * character, it's reformatted into a two-char sequence like ^C.
553  * This is fatal.
554  */
555
556 STATIC void
557 S_missingterm(pTHX_ char *s)
558 {
559     char tmpbuf[3];
560     char q;
561     if (s) {
562         char * const nl = strrchr(s,'\n');
563         if (nl)
564             *nl = '\0';
565     }
566     else if ((U8) PL_multi_close < 32) {
567         *tmpbuf = '^';
568         tmpbuf[1] = (char)toCTRL(PL_multi_close);
569         tmpbuf[2] = '\0';
570         s = tmpbuf;
571     }
572     else {
573         *tmpbuf = (char)PL_multi_close;
574         tmpbuf[1] = '\0';
575         s = tmpbuf;
576     }
577     q = strchr(s,'"') ? '\'' : '"';
578     Perl_croak(aTHX_ "Can't find string terminator %c%s%c anywhere before EOF",q,s,q);
579 }
580
581 #include "feature.h"
582
583 /*
584  * Check whether the named feature is enabled.
585  */
586 bool
587 Perl_feature_is_enabled(pTHX_ const char *const name, STRLEN namelen)
588 {
589     char he_name[8 + MAX_FEATURE_LEN] = "feature_";
590
591     PERL_ARGS_ASSERT_FEATURE_IS_ENABLED;
592
593     assert(CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_CUSTOM);
594
595     if (namelen > MAX_FEATURE_LEN)
596         return FALSE;
597     memcpy(&he_name[8], name, namelen);
598
599     return cBOOL(cop_hints_fetch_pvn(PL_curcop, he_name, 8 + namelen, 0,
600                                      REFCOUNTED_HE_EXISTS));
601 }
602
603 /*
604  * experimental text filters for win32 carriage-returns, utf16-to-utf8 and
605  * utf16-to-utf8-reversed.
606  */
607
608 #ifdef PERL_CR_FILTER
609 static void
610 strip_return(SV *sv)
611 {
612     const char *s = SvPVX_const(sv);
613     const char * const e = s + SvCUR(sv);
614
615     PERL_ARGS_ASSERT_STRIP_RETURN;
616
617     /* outer loop optimized to do nothing if there are no CR-LFs */
618     while (s < e) {
619         if (*s++ == '\r' && *s == '\n') {
620             /* hit a CR-LF, need to copy the rest */
621             char *d = s - 1;
622             *d++ = *s++;
623             while (s < e) {
624                 if (*s == '\r' && s[1] == '\n')
625                     s++;
626                 *d++ = *s++;
627             }
628             SvCUR(sv) -= s - d;
629             return;
630         }
631     }
632 }
633
634 STATIC I32
635 S_cr_textfilter(pTHX_ int idx, SV *sv, int maxlen)
636 {
637     const I32 count = FILTER_READ(idx+1, sv, maxlen);
638     if (count > 0 && !maxlen)
639         strip_return(sv);
640     return count;
641 }
642 #endif
643
644 /*
645 =for apidoc Amx|void|lex_start|SV *line|PerlIO *rsfp|U32 flags
646
647 Creates and initialises a new lexer/parser state object, supplying
648 a context in which to lex and parse from a new source of Perl code.
649 A pointer to the new state object is placed in L</PL_parser>.  An entry
650 is made on the save stack so that upon unwinding the new state object
651 will be destroyed and the former value of L</PL_parser> will be restored.
652 Nothing else need be done to clean up the parsing context.
653
654 The code to be parsed comes from I<line> and I<rsfp>.  I<line>, if
655 non-null, provides a string (in SV form) containing code to be parsed.
656 A copy of the string is made, so subsequent modification of I<line>
657 does not affect parsing.  I<rsfp>, if non-null, provides an input stream
658 from which code will be read to be parsed.  If both are non-null, the
659 code in I<line> comes first and must consist of complete lines of input,
660 and I<rsfp> supplies the remainder of the source.
661
662 The I<flags> parameter is reserved for future use.  Currently it is only
663 used by perl internally, so extensions should always pass zero.
664
665 =cut
666 */
667
668 /* LEX_START_SAME_FILTER indicates that this is not a new file, so it
669    can share filters with the current parser.
670    LEX_START_DONT_CLOSE indicates that the file handle wasn't opened by the
671    caller, hence isn't owned by the parser, so shouldn't be closed on parser
672    destruction. This is used to handle the case of defaulting to reading the
673    script from the standard input because no filename was given on the command
674    line (without getting confused by situation where STDIN has been closed, so
675    the script handle is opened on fd 0)  */
676
677 void
678 Perl_lex_start(pTHX_ SV *line, PerlIO *rsfp, U32 flags)
679 {
680     const char *s = NULL;
681     yy_parser *parser, *oparser;
682     if (flags && flags & ~LEX_START_FLAGS)
683         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_start");
684
685     /* create and initialise a parser */
686
687     Newxz(parser, 1, yy_parser);
688     parser->old_parser = oparser = PL_parser;
689     PL_parser = parser;
690
691     parser->stack = NULL;
692     parser->ps = NULL;
693     parser->stack_size = 0;
694
695     /* on scope exit, free this parser and restore any outer one */
696     SAVEPARSER(parser);
697     parser->saved_curcop = PL_curcop;
698
699     /* initialise lexer state */
700
701     parser->nexttoke = 0;
702     parser->error_count = oparser ? oparser->error_count : 0;
703     parser->copline = parser->preambling = NOLINE;
704     parser->lex_state = LEX_NORMAL;
705     parser->expect = XSTATE;
706     parser->rsfp = rsfp;
707     parser->rsfp_filters =
708       !(flags & LEX_START_SAME_FILTER) || !oparser
709         ? NULL
710         : MUTABLE_AV(SvREFCNT_inc(
711             oparser->rsfp_filters
712              ? oparser->rsfp_filters
713              : (oparser->rsfp_filters = newAV())
714           ));
715
716     Newx(parser->lex_brackstack, 120, char);
717     Newx(parser->lex_casestack, 12, char);
718     *parser->lex_casestack = '\0';
719     Newxz(parser->lex_shared, 1, LEXSHARED);
720
721     if (line) {
722         STRLEN len;
723         s = SvPV_const(line, len);
724         parser->linestr = flags & LEX_START_COPIED
725                             ? SvREFCNT_inc_simple_NN(line)
726                             : newSVpvn_flags(s, len, SvUTF8(line));
727         sv_catpvn(parser->linestr, "\n;", rsfp ? 1 : 2);
728     } else {
729         parser->linestr = newSVpvn("\n;", rsfp ? 1 : 2);
730     }
731     parser->oldoldbufptr =
732         parser->oldbufptr =
733         parser->bufptr =
734         parser->linestart = SvPVX(parser->linestr);
735     parser->bufend = parser->bufptr + SvCUR(parser->linestr);
736     parser->last_lop = parser->last_uni = NULL;
737
738     assert(FITS_IN_8_BITS(LEX_IGNORE_UTF8_HINTS|LEX_EVALBYTES
739                                                         |LEX_DONT_CLOSE_RSFP));
740     parser->lex_flags = (U8) (flags & (LEX_IGNORE_UTF8_HINTS|LEX_EVALBYTES
741                                                         |LEX_DONT_CLOSE_RSFP));
742
743     parser->in_pod = parser->filtered = 0;
744 }
745
746
747 /* delete a parser object */
748
749 void
750 Perl_parser_free(pTHX_  const yy_parser *parser)
751 {
752     PERL_ARGS_ASSERT_PARSER_FREE;
753
754     PL_curcop = parser->saved_curcop;
755     SvREFCNT_dec(parser->linestr);
756
757     if (PL_parser->lex_flags & LEX_DONT_CLOSE_RSFP)
758         PerlIO_clearerr(parser->rsfp);
759     else if (parser->rsfp && (!parser->old_parser ||
760                 (parser->old_parser && parser->rsfp != parser->old_parser->rsfp)))
761         PerlIO_close(parser->rsfp);
762     SvREFCNT_dec(parser->rsfp_filters);
763     SvREFCNT_dec(parser->lex_stuff);
764     SvREFCNT_dec(parser->sublex_info.repl);
765
766     Safefree(parser->lex_brackstack);
767     Safefree(parser->lex_casestack);
768     Safefree(parser->lex_shared);
769     PL_parser = parser->old_parser;
770     Safefree(parser);
771 }
772
773 void
774 Perl_parser_free_nexttoke_ops(pTHX_  yy_parser *parser, OPSLAB *slab)
775 {
776     I32 nexttoke = parser->nexttoke;
777     PERL_ARGS_ASSERT_PARSER_FREE_NEXTTOKE_OPS;
778     while (nexttoke--) {
779         if (S_is_opval_token(parser->nexttype[nexttoke] & 0xffff)
780          && parser->nextval[nexttoke].opval
781          && parser->nextval[nexttoke].opval->op_slabbed
782          && OpSLAB(parser->nextval[nexttoke].opval) == slab) {
783             op_free(parser->nextval[nexttoke].opval);
784             parser->nextval[nexttoke].opval = NULL;
785         }
786     }
787 }
788
789
790 /*
791 =for apidoc AmxU|SV *|PL_parser-E<gt>linestr
792
793 Buffer scalar containing the chunk currently under consideration of the
794 text currently being lexed.  This is always a plain string scalar (for
795 which C<SvPOK> is true).  It is not intended to be used as a scalar by
796 normal scalar means; instead refer to the buffer directly by the pointer
797 variables described below.
798
799 The lexer maintains various C<char*> pointers to things in the
800 C<PL_parser-E<gt>linestr> buffer.  If C<PL_parser-E<gt>linestr> is ever
801 reallocated, all of these pointers must be updated.  Don't attempt to
802 do this manually, but rather use L</lex_grow_linestr> if you need to
803 reallocate the buffer.
804
805 The content of the text chunk in the buffer is commonly exactly one
806 complete line of input, up to and including a newline terminator,
807 but there are situations where it is otherwise.  The octets of the
808 buffer may be intended to be interpreted as either UTF-8 or Latin-1.
809 The function L</lex_bufutf8> tells you which.  Do not use the C<SvUTF8>
810 flag on this scalar, which may disagree with it.
811
812 For direct examination of the buffer, the variable
813 L</PL_parser-E<gt>bufend> points to the end of the buffer.  The current
814 lexing position is pointed to by L</PL_parser-E<gt>bufptr>.  Direct use
815 of these pointers is usually preferable to examination of the scalar
816 through normal scalar means.
817
818 =for apidoc AmxU|char *|PL_parser-E<gt>bufend
819
820 Direct pointer to the end of the chunk of text currently being lexed, the
821 end of the lexer buffer.  This is equal to C<SvPVX(PL_parser-E<gt>linestr)
822 + SvCUR(PL_parser-E<gt>linestr)>.  A C<NUL> character (zero octet) is
823 always located at the end of the buffer, and does not count as part of
824 the buffer's contents.
825
826 =for apidoc AmxU|char *|PL_parser-E<gt>bufptr
827
828 Points to the current position of lexing inside the lexer buffer.
829 Characters around this point may be freely examined, within
830 the range delimited by C<SvPVX(L</PL_parser-E<gt>linestr>)> and
831 L</PL_parser-E<gt>bufend>.  The octets of the buffer may be intended to be
832 interpreted as either UTF-8 or Latin-1, as indicated by L</lex_bufutf8>.
833
834 Lexing code (whether in the Perl core or not) moves this pointer past
835 the characters that it consumes.  It is also expected to perform some
836 bookkeeping whenever a newline character is consumed.  This movement
837 can be more conveniently performed by the function L</lex_read_to>,
838 which handles newlines appropriately.
839
840 Interpretation of the buffer's octets can be abstracted out by
841 using the slightly higher-level functions L</lex_peek_unichar> and
842 L</lex_read_unichar>.
843
844 =for apidoc AmxU|char *|PL_parser-E<gt>linestart
845
846 Points to the start of the current line inside the lexer buffer.
847 This is useful for indicating at which column an error occurred, and
848 not much else.  This must be updated by any lexing code that consumes
849 a newline; the function L</lex_read_to> handles this detail.
850
851 =cut
852 */
853
854 /*
855 =for apidoc Amx|bool|lex_bufutf8
856
857 Indicates whether the octets in the lexer buffer
858 (L</PL_parser-E<gt>linestr>) should be interpreted as the UTF-8 encoding
859 of Unicode characters.  If not, they should be interpreted as Latin-1
860 characters.  This is analogous to the C<SvUTF8> flag for scalars.
861
862 In UTF-8 mode, it is not guaranteed that the lexer buffer actually
863 contains valid UTF-8.  Lexing code must be robust in the face of invalid
864 encoding.
865
866 The actual C<SvUTF8> flag of the L</PL_parser-E<gt>linestr> scalar
867 is significant, but not the whole story regarding the input character
868 encoding.  Normally, when a file is being read, the scalar contains octets
869 and its C<SvUTF8> flag is off, but the octets should be interpreted as
870 UTF-8 if the C<use utf8> pragma is in effect.  During a string eval,
871 however, the scalar may have the C<SvUTF8> flag on, and in this case its
872 octets should be interpreted as UTF-8 unless the C<use bytes> pragma
873 is in effect.  This logic may change in the future; use this function
874 instead of implementing the logic yourself.
875
876 =cut
877 */
878
879 bool
880 Perl_lex_bufutf8(pTHX)
881 {
882     return UTF;
883 }
884
885 /*
886 =for apidoc Amx|char *|lex_grow_linestr|STRLEN len
887
888 Reallocates the lexer buffer (L</PL_parser-E<gt>linestr>) to accommodate
889 at least I<len> octets (including terminating C<NUL>).  Returns a
890 pointer to the reallocated buffer.  This is necessary before making
891 any direct modification of the buffer that would increase its length.
892 L</lex_stuff_pvn> provides a more convenient way to insert text into
893 the buffer.
894
895 Do not use C<SvGROW> or C<sv_grow> directly on C<PL_parser-E<gt>linestr>;
896 this function updates all of the lexer's variables that point directly
897 into the buffer.
898
899 =cut
900 */
901
902 char *
903 Perl_lex_grow_linestr(pTHX_ STRLEN len)
904 {
905     SV *linestr;
906     char *buf;
907     STRLEN bufend_pos, bufptr_pos, oldbufptr_pos, oldoldbufptr_pos;
908     STRLEN linestart_pos, last_uni_pos, last_lop_pos, re_eval_start_pos;
909     linestr = PL_parser->linestr;
910     buf = SvPVX(linestr);
911     if (len <= SvLEN(linestr))
912         return buf;
913     bufend_pos = PL_parser->bufend - buf;
914     bufptr_pos = PL_parser->bufptr - buf;
915     oldbufptr_pos = PL_parser->oldbufptr - buf;
916     oldoldbufptr_pos = PL_parser->oldoldbufptr - buf;
917     linestart_pos = PL_parser->linestart - buf;
918     last_uni_pos = PL_parser->last_uni ? PL_parser->last_uni - buf : 0;
919     last_lop_pos = PL_parser->last_lop ? PL_parser->last_lop - buf : 0;
920     re_eval_start_pos = PL_parser->lex_shared->re_eval_start ?
921                             PL_parser->lex_shared->re_eval_start - buf : 0;
922
923     buf = sv_grow(linestr, len);
924
925     PL_parser->bufend = buf + bufend_pos;
926     PL_parser->bufptr = buf + bufptr_pos;
927     PL_parser->oldbufptr = buf + oldbufptr_pos;
928     PL_parser->oldoldbufptr = buf + oldoldbufptr_pos;
929     PL_parser->linestart = buf + linestart_pos;
930     if (PL_parser->last_uni)
931         PL_parser->last_uni = buf + last_uni_pos;
932     if (PL_parser->last_lop)
933         PL_parser->last_lop = buf + last_lop_pos;
934     if (PL_parser->lex_shared->re_eval_start)
935         PL_parser->lex_shared->re_eval_start  = buf + re_eval_start_pos;
936     return buf;
937 }
938
939 /*
940 =for apidoc Amx|void|lex_stuff_pvn|const char *pv|STRLEN len|U32 flags
941
942 Insert characters into the lexer buffer (L</PL_parser-E<gt>linestr>),
943 immediately after the current lexing point (L</PL_parser-E<gt>bufptr>),
944 reallocating the buffer if necessary.  This means that lexing code that
945 runs later will see the characters as if they had appeared in the input.
946 It is not recommended to do this as part of normal parsing, and most
947 uses of this facility run the risk of the inserted characters being
948 interpreted in an unintended manner.
949
950 The string to be inserted is represented by I<len> octets starting
951 at I<pv>.  These octets are interpreted as either UTF-8 or Latin-1,
952 according to whether the C<LEX_STUFF_UTF8> flag is set in I<flags>.
953 The characters are recoded for the lexer buffer, according to how the
954 buffer is currently being interpreted (L</lex_bufutf8>).  If a string
955 to be inserted is available as a Perl scalar, the L</lex_stuff_sv>
956 function is more convenient.
957
958 =cut
959 */
960
961 void
962 Perl_lex_stuff_pvn(pTHX_ const char *pv, STRLEN len, U32 flags)
963 {
964     dVAR;
965     char *bufptr;
966     PERL_ARGS_ASSERT_LEX_STUFF_PVN;
967     if (flags & ~(LEX_STUFF_UTF8))
968         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_stuff_pvn");
969     if (UTF) {
970         if (flags & LEX_STUFF_UTF8) {
971             goto plain_copy;
972         } else {
973             STRLEN highhalf = 0;    /* Count of variants */
974             const char *p, *e = pv+len;
975             for (p = pv; p != e; p++) {
976                 if (! UTF8_IS_INVARIANT(*p)) {
977                     highhalf++;
978                 }
979             }
980             if (!highhalf)
981                 goto plain_copy;
982             lex_grow_linestr(SvCUR(PL_parser->linestr)+1+len+highhalf);
983             bufptr = PL_parser->bufptr;
984             Move(bufptr, bufptr+len+highhalf, PL_parser->bufend+1-bufptr, char);
985             SvCUR_set(PL_parser->linestr,
986                 SvCUR(PL_parser->linestr) + len+highhalf);
987             PL_parser->bufend += len+highhalf;
988             for (p = pv; p != e; p++) {
989                 U8 c = (U8)*p;
990                 if (! UTF8_IS_INVARIANT(c)) {
991                     *bufptr++ = UTF8_TWO_BYTE_HI(c);
992                     *bufptr++ = UTF8_TWO_BYTE_LO(c);
993                 } else {
994                     *bufptr++ = (char)c;
995                 }
996             }
997         }
998     } else {
999         if (flags & LEX_STUFF_UTF8) {
1000             STRLEN highhalf = 0;
1001             const char *p, *e = pv+len;
1002             for (p = pv; p != e; p++) {
1003                 U8 c = (U8)*p;
1004                 if (UTF8_IS_ABOVE_LATIN1(c)) {
1005                     Perl_croak(aTHX_ "Lexing code attempted to stuff "
1006                                 "non-Latin-1 character into Latin-1 input");
1007                 } else if (UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(p, e)) {
1008                     p++;
1009                     highhalf++;
1010                 } else if (! UTF8_IS_INVARIANT(c)) {
1011                     /* malformed UTF-8 */
1012                     ENTER;
1013                     SAVESPTR(PL_warnhook);
1014                     PL_warnhook = PERL_WARNHOOK_FATAL;
1015                     utf8n_to_uvchr((U8*)p, e-p, NULL, 0);
1016                     LEAVE;
1017                 }
1018             }
1019             if (!highhalf)
1020                 goto plain_copy;
1021             lex_grow_linestr(SvCUR(PL_parser->linestr)+1+len-highhalf);
1022             bufptr = PL_parser->bufptr;
1023             Move(bufptr, bufptr+len-highhalf, PL_parser->bufend+1-bufptr, char);
1024             SvCUR_set(PL_parser->linestr,
1025                 SvCUR(PL_parser->linestr) + len-highhalf);
1026             PL_parser->bufend += len-highhalf;
1027             p = pv;
1028             while (p < e) {
1029                 if (UTF8_IS_INVARIANT(*p)) {
1030                     *bufptr++ = *p;
1031                     p++;
1032                 }
1033                 else {
1034                     assert(p < e -1 );
1035                     *bufptr++ = TWO_BYTE_UTF8_TO_NATIVE(*p, *(p+1));
1036                     p += 2;
1037                 }
1038             }
1039         } else {
1040           plain_copy:
1041             lex_grow_linestr(SvCUR(PL_parser->linestr)+1+len);
1042             bufptr = PL_parser->bufptr;
1043             Move(bufptr, bufptr+len, PL_parser->bufend+1-bufptr, char);
1044             SvCUR_set(PL_parser->linestr, SvCUR(PL_parser->linestr) + len);
1045             PL_parser->bufend += len;
1046             Copy(pv, bufptr, len, char);
1047         }
1048     }
1049 }
1050
1051 /*
1052 =for apidoc Amx|void|lex_stuff_pv|const char *pv|U32 flags
1053
1054 Insert characters into the lexer buffer (L</PL_parser-E<gt>linestr>),
1055 immediately after the current lexing point (L</PL_parser-E<gt>bufptr>),
1056 reallocating the buffer if necessary.  This means that lexing code that
1057 runs later will see the characters as if they had appeared in the input.
1058 It is not recommended to do this as part of normal parsing, and most
1059 uses of this facility run the risk of the inserted characters being
1060 interpreted in an unintended manner.
1061
1062 The string to be inserted is represented by octets starting at I<pv>
1063 and continuing to the first nul.  These octets are interpreted as either
1064 UTF-8 or Latin-1, according to whether the C<LEX_STUFF_UTF8> flag is set
1065 in I<flags>.  The characters are recoded for the lexer buffer, according
1066 to how the buffer is currently being interpreted (L</lex_bufutf8>).
1067 If it is not convenient to nul-terminate a string to be inserted, the
1068 L</lex_stuff_pvn> function is more appropriate.
1069
1070 =cut
1071 */
1072
1073 void
1074 Perl_lex_stuff_pv(pTHX_ const char *pv, U32 flags)
1075 {
1076     PERL_ARGS_ASSERT_LEX_STUFF_PV;
1077     lex_stuff_pvn(pv, strlen(pv), flags);
1078 }
1079
1080 /*
1081 =for apidoc Amx|void|lex_stuff_sv|SV *sv|U32 flags
1082
1083 Insert characters into the lexer buffer (L</PL_parser-E<gt>linestr>),
1084 immediately after the current lexing point (L</PL_parser-E<gt>bufptr>),
1085 reallocating the buffer if necessary.  This means that lexing code that
1086 runs later will see the characters as if they had appeared in the input.
1087 It is not recommended to do this as part of normal parsing, and most
1088 uses of this facility run the risk of the inserted characters being
1089 interpreted in an unintended manner.
1090
1091 The string to be inserted is the string value of I<sv>.  The characters
1092 are recoded for the lexer buffer, according to how the buffer is currently
1093 being interpreted (L</lex_bufutf8>).  If a string to be inserted is
1094 not already a Perl scalar, the L</lex_stuff_pvn> function avoids the
1095 need to construct a scalar.
1096
1097 =cut
1098 */
1099
1100 void
1101 Perl_lex_stuff_sv(pTHX_ SV *sv, U32 flags)
1102 {
1103     char *pv;
1104     STRLEN len;
1105     PERL_ARGS_ASSERT_LEX_STUFF_SV;
1106     if (flags)
1107         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_stuff_sv");
1108     pv = SvPV(sv, len);
1109     lex_stuff_pvn(pv, len, flags | (SvUTF8(sv) ? LEX_STUFF_UTF8 : 0));
1110 }
1111
1112 /*
1113 =for apidoc Amx|void|lex_unstuff|char *ptr
1114
1115 Discards text about to be lexed, from L</PL_parser-E<gt>bufptr> up to
1116 I<ptr>.  Text following I<ptr> will be moved, and the buffer shortened.
1117 This hides the discarded text from any lexing code that runs later,
1118 as if the text had never appeared.
1119
1120 This is not the normal way to consume lexed text.  For that, use
1121 L</lex_read_to>.
1122
1123 =cut
1124 */
1125
1126 void
1127 Perl_lex_unstuff(pTHX_ char *ptr)
1128 {
1129     char *buf, *bufend;
1130     STRLEN unstuff_len;
1131     PERL_ARGS_ASSERT_LEX_UNSTUFF;
1132     buf = PL_parser->bufptr;
1133     if (ptr < buf)
1134         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_unstuff");
1135     if (ptr == buf)
1136         return;
1137     bufend = PL_parser->bufend;
1138     if (ptr > bufend)
1139         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_unstuff");
1140     unstuff_len = ptr - buf;
1141     Move(ptr, buf, bufend+1-ptr, char);
1142     SvCUR_set(PL_parser->linestr, SvCUR(PL_parser->linestr) - unstuff_len);
1143     PL_parser->bufend = bufend - unstuff_len;
1144 }
1145
1146 /*
1147 =for apidoc Amx|void|lex_read_to|char *ptr
1148
1149 Consume text in the lexer buffer, from L</PL_parser-E<gt>bufptr> up
1150 to I<ptr>.  This advances L</PL_parser-E<gt>bufptr> to match I<ptr>,
1151 performing the correct bookkeeping whenever a newline character is passed.
1152 This is the normal way to consume lexed text.
1153
1154 Interpretation of the buffer's octets can be abstracted out by
1155 using the slightly higher-level functions L</lex_peek_unichar> and
1156 L</lex_read_unichar>.
1157
1158 =cut
1159 */
1160
1161 void
1162 Perl_lex_read_to(pTHX_ char *ptr)
1163 {
1164     char *s;
1165     PERL_ARGS_ASSERT_LEX_READ_TO;
1166     s = PL_parser->bufptr;
1167     if (ptr < s || ptr > PL_parser->bufend)
1168         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_read_to");
1169     for (; s != ptr; s++)
1170         if (*s == '\n') {
1171             COPLINE_INC_WITH_HERELINES;
1172             PL_parser->linestart = s+1;
1173         }
1174     PL_parser->bufptr = ptr;
1175 }
1176
1177 /*
1178 =for apidoc Amx|void|lex_discard_to|char *ptr
1179
1180 Discards the first part of the L</PL_parser-E<gt>linestr> buffer,
1181 up to I<ptr>.  The remaining content of the buffer will be moved, and
1182 all pointers into the buffer updated appropriately.  I<ptr> must not
1183 be later in the buffer than the position of L</PL_parser-E<gt>bufptr>:
1184 it is not permitted to discard text that has yet to be lexed.
1185
1186 Normally it is not necessarily to do this directly, because it suffices to
1187 use the implicit discarding behaviour of L</lex_next_chunk> and things
1188 based on it.  However, if a token stretches across multiple lines,
1189 and the lexing code has kept multiple lines of text in the buffer for
1190 that purpose, then after completion of the token it would be wise to
1191 explicitly discard the now-unneeded earlier lines, to avoid future
1192 multi-line tokens growing the buffer without bound.
1193
1194 =cut
1195 */
1196
1197 void
1198 Perl_lex_discard_to(pTHX_ char *ptr)
1199 {
1200     char *buf;
1201     STRLEN discard_len;
1202     PERL_ARGS_ASSERT_LEX_DISCARD_TO;
1203     buf = SvPVX(PL_parser->linestr);
1204     if (ptr < buf)
1205         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_discard_to");
1206     if (ptr == buf)
1207         return;
1208     if (ptr > PL_parser->bufptr)
1209         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_discard_to");
1210     discard_len = ptr - buf;
1211     if (PL_parser->oldbufptr < ptr)
1212         PL_parser->oldbufptr = ptr;
1213     if (PL_parser->oldoldbufptr < ptr)
1214         PL_parser->oldoldbufptr = ptr;
1215     if (PL_parser->last_uni && PL_parser->last_uni < ptr)
1216         PL_parser->last_uni = NULL;
1217     if (PL_parser->last_lop && PL_parser->last_lop < ptr)
1218         PL_parser->last_lop = NULL;
1219     Move(ptr, buf, PL_parser->bufend+1-ptr, char);
1220     SvCUR_set(PL_parser->linestr, SvCUR(PL_parser->linestr) - discard_len);
1221     PL_parser->bufend -= discard_len;
1222     PL_parser->bufptr -= discard_len;
1223     PL_parser->oldbufptr -= discard_len;
1224     PL_parser->oldoldbufptr -= discard_len;
1225     if (PL_parser->last_uni)
1226         PL_parser->last_uni -= discard_len;
1227     if (PL_parser->last_lop)
1228         PL_parser->last_lop -= discard_len;
1229 }
1230
1231 /*
1232 =for apidoc Amx|bool|lex_next_chunk|U32 flags
1233
1234 Reads in the next chunk of text to be lexed, appending it to
1235 L</PL_parser-E<gt>linestr>.  This should be called when lexing code has
1236 looked to the end of the current chunk and wants to know more.  It is
1237 usual, but not necessary, for lexing to have consumed the entirety of
1238 the current chunk at this time.
1239
1240 If L</PL_parser-E<gt>bufptr> is pointing to the very end of the current
1241 chunk (i.e., the current chunk has been entirely consumed), normally the
1242 current chunk will be discarded at the same time that the new chunk is
1243 read in.  If I<flags> includes C<LEX_KEEP_PREVIOUS>, the current chunk
1244 will not be discarded.  If the current chunk has not been entirely
1245 consumed, then it will not be discarded regardless of the flag.
1246
1247 Returns true if some new text was added to the buffer, or false if the
1248 buffer has reached the end of the input text.
1249
1250 =cut
1251 */
1252
1253 #define LEX_FAKE_EOF 0x80000000
1254 #define LEX_NO_TERM  0x40000000
1255
1256 bool
1257 Perl_lex_next_chunk(pTHX_ U32 flags)
1258 {
1259     SV *linestr;
1260     char *buf;
1261     STRLEN old_bufend_pos, new_bufend_pos;
1262     STRLEN bufptr_pos, oldbufptr_pos, oldoldbufptr_pos;
1263     STRLEN linestart_pos, last_uni_pos, last_lop_pos;
1264     bool got_some_for_debugger = 0;
1265     bool got_some;
1266     if (flags & ~(LEX_KEEP_PREVIOUS|LEX_FAKE_EOF|LEX_NO_TERM))
1267         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_next_chunk");
1268     linestr = PL_parser->linestr;
1269     buf = SvPVX(linestr);
1270     if (!(flags & LEX_KEEP_PREVIOUS) &&
1271             PL_parser->bufptr == PL_parser->bufend) {
1272         old_bufend_pos = bufptr_pos = oldbufptr_pos = oldoldbufptr_pos = 0;
1273         linestart_pos = 0;
1274         if (PL_parser->last_uni != PL_parser->bufend)
1275             PL_parser->last_uni = NULL;
1276         if (PL_parser->last_lop != PL_parser->bufend)
1277             PL_parser->last_lop = NULL;
1278         last_uni_pos = last_lop_pos = 0;
1279         *buf = 0;
1280         SvCUR(linestr) = 0;
1281     } else {
1282         old_bufend_pos = PL_parser->bufend - buf;
1283         bufptr_pos = PL_parser->bufptr - buf;
1284         oldbufptr_pos = PL_parser->oldbufptr - buf;
1285         oldoldbufptr_pos = PL_parser->oldoldbufptr - buf;
1286         linestart_pos = PL_parser->linestart - buf;
1287         last_uni_pos = PL_parser->last_uni ? PL_parser->last_uni - buf : 0;
1288         last_lop_pos = PL_parser->last_lop ? PL_parser->last_lop - buf : 0;
1289     }
1290     if (flags & LEX_FAKE_EOF) {
1291         goto eof;
1292     } else if (!PL_parser->rsfp && !PL_parser->filtered) {
1293         got_some = 0;
1294     } else if (filter_gets(linestr, old_bufend_pos)) {
1295         got_some = 1;
1296         got_some_for_debugger = 1;
1297     } else if (flags & LEX_NO_TERM) {
1298         got_some = 0;
1299     } else {
1300         if (!SvPOK(linestr))   /* can get undefined by filter_gets */
1301             sv_setpvs(linestr, "");
1302         eof:
1303         /* End of real input.  Close filehandle (unless it was STDIN),
1304          * then add implicit termination.
1305          */
1306         if (PL_parser->lex_flags & LEX_DONT_CLOSE_RSFP)
1307             PerlIO_clearerr(PL_parser->rsfp);
1308         else if (PL_parser->rsfp)
1309             (void)PerlIO_close(PL_parser->rsfp);
1310         PL_parser->rsfp = NULL;
1311         PL_parser->in_pod = PL_parser->filtered = 0;
1312         if (!PL_in_eval && PL_minus_p) {
1313             sv_catpvs(linestr,
1314                 /*{*/";}continue{print or die qq(-p destination: $!\\n);}");
1315             PL_minus_n = PL_minus_p = 0;
1316         } else if (!PL_in_eval && PL_minus_n) {
1317             sv_catpvs(linestr, /*{*/";}");
1318             PL_minus_n = 0;
1319         } else
1320             sv_catpvs(linestr, ";");
1321         got_some = 1;
1322     }
1323     buf = SvPVX(linestr);
1324     new_bufend_pos = SvCUR(linestr);
1325     PL_parser->bufend = buf + new_bufend_pos;
1326     PL_parser->bufptr = buf + bufptr_pos;
1327     PL_parser->oldbufptr = buf + oldbufptr_pos;
1328     PL_parser->oldoldbufptr = buf + oldoldbufptr_pos;
1329     PL_parser->linestart = buf + linestart_pos;
1330     if (PL_parser->last_uni)
1331         PL_parser->last_uni = buf + last_uni_pos;
1332     if (PL_parser->last_lop)
1333         PL_parser->last_lop = buf + last_lop_pos;
1334     if (PL_parser->preambling != NOLINE) {
1335         CopLINE_set(PL_curcop, PL_parser->preambling + 1);
1336         PL_parser->preambling = NOLINE;
1337     }
1338     if (got_some_for_debugger && (PERLDB_LINE || PERLDB_SAVESRC) &&
1339             PL_curstash != PL_debstash) {
1340         /* debugger active and we're not compiling the debugger code,
1341          * so store the line into the debugger's array of lines
1342          */
1343         update_debugger_info(NULL, buf+old_bufend_pos,
1344             new_bufend_pos-old_bufend_pos);
1345     }
1346     return got_some;
1347 }
1348
1349 /*
1350 =for apidoc Amx|I32|lex_peek_unichar|U32 flags
1351
1352 Looks ahead one (Unicode) character in the text currently being lexed.
1353 Returns the codepoint (unsigned integer value) of the next character,
1354 or -1 if lexing has reached the end of the input text.  To consume the
1355 peeked character, use L</lex_read_unichar>.
1356
1357 If the next character is in (or extends into) the next chunk of input
1358 text, the next chunk will be read in.  Normally the current chunk will be
1359 discarded at the same time, but if I<flags> includes C<LEX_KEEP_PREVIOUS>
1360 then the current chunk will not be discarded.
1361
1362 If the input is being interpreted as UTF-8 and a UTF-8 encoding error
1363 is encountered, an exception is generated.
1364
1365 =cut
1366 */
1367
1368 I32
1369 Perl_lex_peek_unichar(pTHX_ U32 flags)
1370 {
1371     dVAR;
1372     char *s, *bufend;
1373     if (flags & ~(LEX_KEEP_PREVIOUS))
1374         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_peek_unichar");
1375     s = PL_parser->bufptr;
1376     bufend = PL_parser->bufend;
1377     if (UTF) {
1378         U8 head;
1379         I32 unichar;
1380         STRLEN len, retlen;
1381         if (s == bufend) {
1382             if (!lex_next_chunk(flags))
1383                 return -1;
1384             s = PL_parser->bufptr;
1385             bufend = PL_parser->bufend;
1386         }
1387         head = (U8)*s;
1388         if (UTF8_IS_INVARIANT(head))
1389             return head;
1390         if (UTF8_IS_START(head)) {
1391             len = UTF8SKIP(&head);
1392             while ((STRLEN)(bufend-s) < len) {
1393                 if (!lex_next_chunk(flags | LEX_KEEP_PREVIOUS))
1394                     break;
1395                 s = PL_parser->bufptr;
1396                 bufend = PL_parser->bufend;
1397             }
1398         }
1399         unichar = utf8n_to_uvchr((U8*)s, bufend-s, &retlen, UTF8_CHECK_ONLY);
1400         if (retlen == (STRLEN)-1) {
1401             /* malformed UTF-8 */
1402             ENTER;
1403             SAVESPTR(PL_warnhook);
1404             PL_warnhook = PERL_WARNHOOK_FATAL;
1405             utf8n_to_uvchr((U8*)s, bufend-s, NULL, 0);
1406             LEAVE;
1407         }
1408         return unichar;
1409     } else {
1410         if (s == bufend) {
1411             if (!lex_next_chunk(flags))
1412                 return -1;
1413             s = PL_parser->bufptr;
1414         }
1415         return (U8)*s;
1416     }
1417 }
1418
1419 /*
1420 =for apidoc Amx|I32|lex_read_unichar|U32 flags
1421
1422 Reads the next (Unicode) character in the text currently being lexed.
1423 Returns the codepoint (unsigned integer value) of the character read,
1424 and moves L</PL_parser-E<gt>bufptr> past the character, or returns -1
1425 if lexing has reached the end of the input text.  To non-destructively
1426 examine the next character, use L</lex_peek_unichar> instead.
1427
1428 If the next character is in (or extends into) the next chunk of input
1429 text, the next chunk will be read in.  Normally the current chunk will be
1430 discarded at the same time, but if I<flags> includes C<LEX_KEEP_PREVIOUS>
1431 then the current chunk will not be discarded.
1432
1433 If the input is being interpreted as UTF-8 and a UTF-8 encoding error
1434 is encountered, an exception is generated.
1435
1436 =cut
1437 */
1438
1439 I32
1440 Perl_lex_read_unichar(pTHX_ U32 flags)
1441 {
1442     I32 c;
1443     if (flags & ~(LEX_KEEP_PREVIOUS))
1444         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_read_unichar");
1445     c = lex_peek_unichar(flags);
1446     if (c != -1) {
1447         if (c == '\n')
1448             COPLINE_INC_WITH_HERELINES;
1449         if (UTF)
1450             PL_parser->bufptr += UTF8SKIP(PL_parser->bufptr);
1451         else
1452             ++(PL_parser->bufptr);
1453     }
1454     return c;
1455 }
1456
1457 /*
1458 =for apidoc Amx|void|lex_read_space|U32 flags
1459
1460 Reads optional spaces, in Perl style, in the text currently being
1461 lexed.  The spaces may include ordinary whitespace characters and
1462 Perl-style comments.  C<#line> directives are processed if encountered.
1463 L</PL_parser-E<gt>bufptr> is moved past the spaces, so that it points
1464 at a non-space character (or the end of the input text).
1465
1466 If spaces extend into the next chunk of input text, the next chunk will
1467 be read in.  Normally the current chunk will be discarded at the same
1468 time, but if I<flags> includes C<LEX_KEEP_PREVIOUS> then the current
1469 chunk will not be discarded.
1470
1471 =cut
1472 */
1473
1474 #define LEX_NO_INCLINE    0x40000000
1475 #define LEX_NO_NEXT_CHUNK 0x80000000
1476
1477 void
1478 Perl_lex_read_space(pTHX_ U32 flags)
1479 {
1480     char *s, *bufend;
1481     const bool can_incline = !(flags & LEX_NO_INCLINE);
1482     bool need_incline = 0;
1483     if (flags & ~(LEX_KEEP_PREVIOUS|LEX_NO_NEXT_CHUNK|LEX_NO_INCLINE))
1484         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_read_space");
1485     s = PL_parser->bufptr;
1486     bufend = PL_parser->bufend;
1487     while (1) {
1488         char c = *s;
1489         if (c == '#') {
1490             do {
1491                 c = *++s;
1492             } while (!(c == '\n' || (c == 0 && s == bufend)));
1493         } else if (c == '\n') {
1494             s++;
1495             if (can_incline) {
1496                 PL_parser->linestart = s;
1497                 if (s == bufend)
1498                     need_incline = 1;
1499                 else
1500                     incline(s);
1501             }
1502         } else if (isSPACE(c)) {
1503             s++;
1504         } else if (c == 0 && s == bufend) {
1505             bool got_more;
1506             line_t l;
1507             if (flags & LEX_NO_NEXT_CHUNK)
1508                 break;
1509             PL_parser->bufptr = s;
1510             l = CopLINE(PL_curcop);
1511             CopLINE(PL_curcop) += PL_parser->herelines + 1;
1512             got_more = lex_next_chunk(flags);
1513             CopLINE_set(PL_curcop, l);
1514             s = PL_parser->bufptr;
1515             bufend = PL_parser->bufend;
1516             if (!got_more)
1517                 break;
1518             if (can_incline && need_incline && PL_parser->rsfp) {
1519                 incline(s);
1520                 need_incline = 0;
1521             }
1522         } else {
1523             break;
1524         }
1525     }
1526     PL_parser->bufptr = s;
1527 }
1528
1529 /*
1530
1531 =for apidoc EXMp|bool|validate_proto|SV *name|SV *proto|bool warn
1532
1533 This function performs syntax checking on a prototype, C<proto>.
1534 If C<warn> is true, any illegal characters or mismatched brackets
1535 will trigger illegalproto warnings, declaring that they were
1536 detected in the prototype for C<name>.
1537
1538 The return value is C<true> if this is a valid prototype, and
1539 C<false> if it is not, regardless of whether C<warn> was C<true> or
1540 C<false>.
1541
1542 Note that C<NULL> is a valid C<proto> and will always return C<true>.
1543
1544 =cut
1545
1546  */
1547
1548 bool
1549 Perl_validate_proto(pTHX_ SV *name, SV *proto, bool warn)
1550 {
1551     STRLEN len, origlen;
1552     char *p = proto ? SvPV(proto, len) : NULL;
1553     bool bad_proto = FALSE;
1554     bool in_brackets = FALSE;
1555     bool after_slash = FALSE;
1556     char greedy_proto = ' ';
1557     bool proto_after_greedy_proto = FALSE;
1558     bool must_be_last = FALSE;
1559     bool underscore = FALSE;
1560     bool bad_proto_after_underscore = FALSE;
1561
1562     PERL_ARGS_ASSERT_VALIDATE_PROTO;
1563
1564     if (!proto)
1565         return TRUE;
1566
1567     origlen = len;
1568     for (; len--; p++) {
1569         if (!isSPACE(*p)) {
1570             if (must_be_last)
1571                 proto_after_greedy_proto = TRUE;
1572             if (underscore) {
1573                 if (!strchr(";@%", *p))
1574                     bad_proto_after_underscore = TRUE;
1575                 underscore = FALSE;
1576             }
1577             if (!strchr("$@%*;[]&\\_+", *p) || *p == '\0') {
1578                 bad_proto = TRUE;
1579             }
1580             else {
1581                 if (*p == '[')
1582                     in_brackets = TRUE;
1583                 else if (*p == ']')
1584                     in_brackets = FALSE;
1585                 else if ((*p == '@' || *p == '%') &&
1586                     !after_slash &&
1587                     !in_brackets ) {
1588                     must_be_last = TRUE;
1589                     greedy_proto = *p;
1590                 }
1591                 else if (*p == '_')
1592                     underscore = TRUE;
1593             }
1594             if (*p == '\\')
1595                 after_slash = TRUE;
1596             else
1597                 after_slash = FALSE;
1598         }
1599     }
1600
1601     if (warn) {
1602         SV *tmpsv = newSVpvs_flags("", SVs_TEMP);
1603         p -= origlen;
1604         p = SvUTF8(proto)
1605             ? sv_uni_display(tmpsv, newSVpvn_flags(p, origlen, SVs_TEMP | SVf_UTF8),
1606                              origlen, UNI_DISPLAY_ISPRINT)
1607             : pv_pretty(tmpsv, p, origlen, 60, NULL, NULL, PERL_PV_ESCAPE_NONASCII);
1608
1609         if (proto_after_greedy_proto)
1610             Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO),
1611                         "Prototype after '%c' for %"SVf" : %s",
1612                         greedy_proto, SVfARG(name), p);
1613         if (in_brackets)
1614             Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO),
1615                         "Missing ']' in prototype for %"SVf" : %s",
1616                         SVfARG(name), p);
1617         if (bad_proto)
1618             Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO),
1619                         "Illegal character in prototype for %"SVf" : %s",
1620                         SVfARG(name), p);
1621         if (bad_proto_after_underscore)
1622             Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO),
1623                         "Illegal character after '_' in prototype for %"SVf" : %s",
1624                         SVfARG(name), p);
1625     }
1626
1627     return (! (proto_after_greedy_proto || bad_proto) );
1628 }
1629
1630 /*
1631  * S_incline
1632  * This subroutine has nothing to do with tilting, whether at windmills
1633  * or pinball tables.  Its name is short for "increment line".  It
1634  * increments the current line number in CopLINE(PL_curcop) and checks
1635  * to see whether the line starts with a comment of the form
1636  *    # line 500 "foo.pm"
1637  * If so, it sets the current line number and file to the values in the comment.
1638  */
1639
1640 STATIC void
1641 S_incline(pTHX_ const char *s)
1642 {
1643     const char *t;
1644     const char *n;
1645     const char *e;
1646     line_t line_num;
1647
1648     PERL_ARGS_ASSERT_INCLINE;
1649
1650     COPLINE_INC_WITH_HERELINES;
1651     if (!PL_rsfp && !PL_parser->filtered && PL_lex_state == LEX_NORMAL
1652      && s+1 == PL_bufend && *s == ';') {
1653         /* fake newline in string eval */
1654         CopLINE_dec(PL_curcop);
1655         return;
1656     }
1657     if (*s++ != '#')
1658         return;
1659     while (SPACE_OR_TAB(*s))
1660         s++;
1661     if (strnEQ(s, "line", 4))
1662         s += 4;
1663     else
1664         return;
1665     if (SPACE_OR_TAB(*s))
1666         s++;
1667     else
1668         return;
1669     while (SPACE_OR_TAB(*s))
1670         s++;
1671     if (!isDIGIT(*s))
1672         return;
1673
1674     n = s;
1675     while (isDIGIT(*s))
1676         s++;
1677     if (!SPACE_OR_TAB(*s) && *s != '\r' && *s != '\n' && *s != '\0')
1678         return;
1679     while (SPACE_OR_TAB(*s))
1680         s++;
1681     if (*s == '"' && (t = strchr(s+1, '"'))) {
1682         s++;
1683         e = t + 1;
1684     }
1685     else {
1686         t = s;
1687         while (!isSPACE(*t))
1688             t++;
1689         e = t;
1690     }
1691     while (SPACE_OR_TAB(*e) || *e == '\r' || *e == '\f')
1692         e++;
1693     if (*e != '\n' && *e != '\0')
1694         return;         /* false alarm */
1695
1696     line_num = grok_atou(n, &e) - 1;
1697
1698     if (t - s > 0) {
1699         const STRLEN len = t - s;
1700
1701         if (!PL_rsfp && !PL_parser->filtered) {
1702             /* must copy *{"::_<(eval N)[oldfilename:L]"}
1703              * to *{"::_<newfilename"} */
1704             /* However, the long form of evals is only turned on by the
1705                debugger - usually they're "(eval %lu)" */
1706             GV * const cfgv = CopFILEGV(PL_curcop);
1707             if (cfgv) {
1708                 char smallbuf[128];
1709                 STRLEN tmplen2 = len;
1710                 char *tmpbuf2;
1711                 GV *gv2;
1712
1713                 if (tmplen2 + 2 <= sizeof smallbuf)
1714                     tmpbuf2 = smallbuf;
1715                 else
1716                     Newx(tmpbuf2, tmplen2 + 2, char);
1717
1718                 tmpbuf2[0] = '_';
1719                 tmpbuf2[1] = '<';
1720
1721                 memcpy(tmpbuf2 + 2, s, tmplen2);
1722                 tmplen2 += 2;
1723
1724                 gv2 = *(GV**)hv_fetch(PL_defstash, tmpbuf2, tmplen2, TRUE);
1725                 if (!isGV(gv2)) {
1726                     gv_init(gv2, PL_defstash, tmpbuf2, tmplen2, FALSE);
1727                     /* adjust ${"::_<newfilename"} to store the new file name */
1728                     GvSV(gv2) = newSVpvn(tmpbuf2 + 2, tmplen2 - 2);
1729                     /* The line number may differ. If that is the case,
1730                        alias the saved lines that are in the array.
1731                        Otherwise alias the whole array. */
1732                     if (CopLINE(PL_curcop) == line_num) {
1733                         GvHV(gv2) = MUTABLE_HV(SvREFCNT_inc(GvHV(cfgv)));
1734                         GvAV(gv2) = MUTABLE_AV(SvREFCNT_inc(GvAV(cfgv)));
1735                     }
1736                     else if (GvAV(cfgv)) {
1737                         AV * const av = GvAV(cfgv);
1738                         const I32 start = CopLINE(PL_curcop)+1;
1739                         I32 items = AvFILLp(av) - start;
1740                         if (items > 0) {
1741                             AV * const av2 = GvAVn(gv2);
1742                             SV **svp = AvARRAY(av) + start;
1743                             I32 l = (I32)line_num+1;
1744                             while (items--)
1745                                 av_store(av2, l++, SvREFCNT_inc(*svp++));
1746                         }
1747                     }
1748                 }
1749
1750                 if (tmpbuf2 != smallbuf) Safefree(tmpbuf2);
1751             }
1752         }
1753         CopFILE_free(PL_curcop);
1754         CopFILE_setn(PL_curcop, s, len);
1755     }
1756     CopLINE_set(PL_curcop, line_num);
1757 }
1758
1759 #define skipspace(s) skipspace_flags(s, 0)
1760
1761
1762 STATIC void
1763 S_update_debugger_info(pTHX_ SV *orig_sv, const char *const buf, STRLEN len)
1764 {
1765     AV *av = CopFILEAVx(PL_curcop);
1766     if (av) {
1767         SV * sv;
1768         if (PL_parser->preambling == NOLINE) sv = newSV_type(SVt_PVMG);
1769         else {
1770             sv = *av_fetch(av, 0, 1);
1771             SvUPGRADE(sv, SVt_PVMG);
1772         }
1773         if (!SvPOK(sv)) sv_setpvs(sv,"");
1774         if (orig_sv)
1775             sv_catsv(sv, orig_sv);
1776         else
1777             sv_catpvn(sv, buf, len);
1778         if (!SvIOK(sv)) {
1779             (void)SvIOK_on(sv);
1780             SvIV_set(sv, 0);
1781         }
1782         if (PL_parser->preambling == NOLINE)
1783             av_store(av, CopLINE(PL_curcop), sv);
1784     }
1785 }
1786
1787 /*
1788  * S_skipspace
1789  * Called to gobble the appropriate amount and type of whitespace.
1790  * Skips comments as well.
1791  */
1792
1793 STATIC char *
1794 S_skipspace_flags(pTHX_ char *s, U32 flags)
1795 {
1796     PERL_ARGS_ASSERT_SKIPSPACE_FLAGS;
1797     if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) {
1798         while (s < PL_bufend && SPACE_OR_TAB(*s))
1799             s++;
1800     } else {
1801         STRLEN bufptr_pos = PL_bufptr - SvPVX(PL_linestr);
1802         PL_bufptr = s;
1803         lex_read_space(flags | LEX_KEEP_PREVIOUS |
1804                 (PL_sublex_info.sub_inwhat || PL_lex_state == LEX_FORMLINE ?
1805                     LEX_NO_NEXT_CHUNK : 0));
1806         s = PL_bufptr;
1807         PL_bufptr = SvPVX(PL_linestr) + bufptr_pos;
1808         if (PL_linestart > PL_bufptr)
1809             PL_bufptr = PL_linestart;
1810         return s;
1811     }
1812     return s;
1813 }
1814
1815 /*
1816  * S_check_uni
1817  * Check the unary operators to ensure there's no ambiguity in how they're
1818  * used.  An ambiguous piece of code would be:
1819  *     rand + 5
1820  * This doesn't mean rand() + 5.  Because rand() is a unary operator,
1821  * the +5 is its argument.
1822  */
1823
1824 STATIC void
1825 S_check_uni(pTHX)
1826 {
1827     const char *s;
1828     const char *t;
1829
1830     if (PL_oldoldbufptr != PL_last_uni)
1831         return;
1832     while (isSPACE(*PL_last_uni))
1833         PL_last_uni++;
1834     s = PL_last_uni;
1835     while (isWORDCHAR_lazy_if(s,UTF) || *s == '-')
1836         s++;
1837     if ((t = strchr(s, '(')) && t < PL_bufptr)
1838         return;
1839
1840     Perl_ck_warner_d(aTHX_ packWARN(WARN_AMBIGUOUS),
1841                      "Warning: Use of \"%.*s\" without parentheses is ambiguous",
1842                      (int)(s - PL_last_uni), PL_last_uni);
1843 }
1844
1845 /*
1846  * LOP : macro to build a list operator.  Its behaviour has been replaced
1847  * with a subroutine, S_lop() for which LOP is just another name.
1848  */
1849
1850 #define LOP(f,x) return lop(f,x,s)
1851
1852 /*
1853  * S_lop
1854  * Build a list operator (or something that might be one).  The rules:
1855  *  - if we have a next token, then it's a list operator (no parens) for
1856  *    which the next token has already been parsed; e.g.,
1857  *       sort foo @args
1858  *       sort foo (@args)
1859  *  - if the next thing is an opening paren, then it's a function
1860  *  - else it's a list operator
1861  */
1862
1863 STATIC I32
1864 S_lop(pTHX_ I32 f, int x, char *s)
1865 {
1866     PERL_ARGS_ASSERT_LOP;
1867
1868     pl_yylval.ival = f;
1869     CLINE;
1870     PL_bufptr = s;
1871     PL_last_lop = PL_oldbufptr;
1872     PL_last_lop_op = (OPCODE)f;
1873     if (PL_nexttoke)
1874         goto lstop;
1875     PL_expect = x;
1876     if (*s == '(')
1877         return REPORT(FUNC);
1878     s = PEEKSPACE(s);
1879     if (*s == '(')
1880         return REPORT(FUNC);
1881     else {
1882         lstop:
1883         if (!PL_lex_allbrackets && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
1884             PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
1885         return REPORT(LSTOP);
1886     }
1887 }
1888
1889 /*
1890  * S_force_next
1891  * When the lexer realizes it knows the next token (for instance,
1892  * it is reordering tokens for the parser) then it can call S_force_next
1893  * to know what token to return the next time the lexer is called.  Caller
1894  * will need to set PL_nextval[] and possibly PL_expect to ensure
1895  * the lexer handles the token correctly.
1896  */
1897
1898 STATIC void
1899 S_force_next(pTHX_ I32 type)
1900 {
1901 #ifdef DEBUGGING
1902     if (DEBUG_T_TEST) {
1903         PerlIO_printf(Perl_debug_log, "### forced token:\n");
1904         tokereport(type, &NEXTVAL_NEXTTOKE);
1905     }
1906 #endif
1907     PL_nexttype[PL_nexttoke] = type;
1908     PL_nexttoke++;
1909     if (PL_lex_state != LEX_KNOWNEXT) {
1910         PL_lex_defer = PL_lex_state;
1911         PL_lex_expect = PL_expect;
1912         PL_lex_state = LEX_KNOWNEXT;
1913     }
1914 }
1915
1916 /*
1917  * S_postderef
1918  *
1919  * This subroutine handles postfix deref syntax after the arrow has already
1920  * been emitted.  @* $* etc. are emitted as two separate token right here.
1921  * @[ @{ %[ %{ *{ are emitted also as two tokens, but this function emits
1922  * only the first, leaving yylex to find the next.
1923  */
1924
1925 static int
1926 S_postderef(pTHX_ int const funny, char const next)
1927 {
1928     assert(funny == DOLSHARP || strchr("$@%&*", funny));
1929     assert(strchr("*[{", next));
1930     if (next == '*') {
1931         PL_expect = XOPERATOR;
1932         if (PL_lex_state == LEX_INTERPNORMAL && !PL_lex_brackets) {
1933             assert('@' == funny || '$' == funny || DOLSHARP == funny);
1934             PL_lex_state = LEX_INTERPEND;
1935             force_next(POSTJOIN);
1936         }
1937         force_next(next);
1938         PL_bufptr+=2;
1939     }
1940     else {
1941         if ('@' == funny && PL_lex_state == LEX_INTERPNORMAL
1942          && !PL_lex_brackets)
1943             PL_lex_dojoin = 2;
1944         PL_expect = XOPERATOR;
1945         PL_bufptr++;
1946     }
1947     return funny;
1948 }
1949
1950 void
1951 Perl_yyunlex(pTHX)
1952 {
1953     int yyc = PL_parser->yychar;
1954     if (yyc != YYEMPTY) {
1955         if (yyc) {
1956             NEXTVAL_NEXTTOKE = PL_parser->yylval;
1957             if (yyc == '{'/*}*/ || yyc == HASHBRACK || yyc == '['/*]*/) {
1958                 PL_lex_allbrackets--;
1959                 PL_lex_brackets--;
1960                 yyc |= (3<<24) | (PL_lex_brackstack[PL_lex_brackets] << 16);
1961             } else if (yyc == '('/*)*/) {
1962                 PL_lex_allbrackets--;
1963                 yyc |= (2<<24);
1964             }
1965             force_next(yyc);
1966         }
1967         PL_parser->yychar = YYEMPTY;
1968     }
1969 }
1970
1971 STATIC SV *
1972 S_newSV_maybe_utf8(pTHX_ const char *const start, STRLEN len)
1973 {
1974     SV * const sv = newSVpvn_utf8(start, len,
1975                                   !IN_BYTES
1976                                   && UTF
1977                                   && !is_ascii_string((const U8*)start, len)
1978                                   && is_utf8_string((const U8*)start, len));
1979     return sv;
1980 }
1981
1982 /*
1983  * S_force_word
1984  * When the lexer knows the next thing is a word (for instance, it has
1985  * just seen -> and it knows that the next char is a word char, then
1986  * it calls S_force_word to stick the next word into the PL_nexttoke/val
1987  * lookahead.
1988  *
1989  * Arguments:
1990  *   char *start : buffer position (must be within PL_linestr)
1991  *   int token   : PL_next* will be this type of bare word (e.g., METHOD,WORD)
1992  *   int check_keyword : if true, Perl checks to make sure the word isn't
1993  *       a keyword (do this if the word is a label, e.g. goto FOO)
1994  *   int allow_pack : if true, : characters will also be allowed (require,
1995  *       use, etc. do this)
1996  *   int allow_initial_tick : used by the "sub" lexer only.
1997  */
1998
1999 STATIC char *
2000 S_force_word(pTHX_ char *start, int token, int check_keyword, int allow_pack)
2001 {
2002     char *s;
2003     STRLEN len;
2004
2005     PERL_ARGS_ASSERT_FORCE_WORD;
2006
2007     start = SKIPSPACE1(start);
2008     s = start;
2009     if (isIDFIRST_lazy_if(s,UTF) ||
2010         (allow_pack && *s == ':') )
2011     {
2012         s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, allow_pack, &len);
2013         if (check_keyword) {
2014           char *s2 = PL_tokenbuf;
2015           if (allow_pack && len > 6 && strnEQ(s2, "CORE::", 6))
2016             s2 += 6, len -= 6;
2017           if (keyword(s2, len, 0))
2018             return start;
2019         }
2020         if (token == METHOD) {
2021             s = SKIPSPACE1(s);
2022             if (*s == '(')
2023                 PL_expect = XTERM;
2024             else {
2025                 PL_expect = XOPERATOR;
2026             }
2027         }
2028         NEXTVAL_NEXTTOKE.opval
2029             = (OP*)newSVOP(OP_CONST,0,
2030                            S_newSV_maybe_utf8(aTHX_ PL_tokenbuf, len));
2031         NEXTVAL_NEXTTOKE.opval->op_private |= OPpCONST_BARE;
2032         force_next(token);
2033     }
2034     return s;
2035 }
2036
2037 /*
2038  * S_force_ident
2039  * Called when the lexer wants $foo *foo &foo etc, but the program
2040  * text only contains the "foo" portion.  The first argument is a pointer
2041  * to the "foo", and the second argument is the type symbol to prefix.
2042  * Forces the next token to be a "WORD".
2043  * Creates the symbol if it didn't already exist (via gv_fetchpv()).
2044  */
2045
2046 STATIC void
2047 S_force_ident(pTHX_ const char *s, int kind)
2048 {
2049     PERL_ARGS_ASSERT_FORCE_IDENT;
2050
2051     if (s[0]) {
2052         const STRLEN len = s[1] ? strlen(s) : 1; /* s = "\"" see yylex */
2053         OP* const o = (OP*)newSVOP(OP_CONST, 0, newSVpvn_flags(s, len,
2054                                                                 UTF ? SVf_UTF8 : 0));
2055         NEXTVAL_NEXTTOKE.opval = o;
2056         force_next(WORD);
2057         if (kind) {
2058             o->op_private = OPpCONST_ENTERED;
2059             /* XXX see note in pp_entereval() for why we forgo typo
2060                warnings if the symbol must be introduced in an eval.
2061                GSAR 96-10-12 */
2062             gv_fetchpvn_flags(s, len,
2063                               (PL_in_eval ? (GV_ADDMULTI | GV_ADDINEVAL)
2064                               : GV_ADD) | ( UTF ? SVf_UTF8 : 0 ),
2065                               kind == '$' ? SVt_PV :
2066                               kind == '@' ? SVt_PVAV :
2067                               kind == '%' ? SVt_PVHV :
2068                               SVt_PVGV
2069                               );
2070         }
2071     }
2072 }
2073
2074 static void
2075 S_force_ident_maybe_lex(pTHX_ char pit)
2076 {
2077     NEXTVAL_NEXTTOKE.ival = pit;
2078     force_next('p');
2079 }
2080
2081 NV
2082 Perl_str_to_version(pTHX_ SV *sv)
2083 {
2084     NV retval = 0.0;
2085     NV nshift = 1.0;
2086     STRLEN len;
2087     const char *start = SvPV_const(sv,len);
2088     const char * const end = start + len;
2089     const bool utf = SvUTF8(sv) ? TRUE : FALSE;
2090
2091     PERL_ARGS_ASSERT_STR_TO_VERSION;
2092
2093     while (start < end) {
2094         STRLEN skip;
2095         UV n;
2096         if (utf)
2097             n = utf8n_to_uvchr((U8*)start, len, &skip, 0);
2098         else {
2099             n = *(U8*)start;
2100             skip = 1;
2101         }
2102         retval += ((NV)n)/nshift;
2103         start += skip;
2104         nshift *= 1000;
2105     }
2106     return retval;
2107 }
2108
2109 /*
2110  * S_force_version
2111  * Forces the next token to be a version number.
2112  * If the next token appears to be an invalid version number, (e.g. "v2b"),
2113  * and if "guessing" is TRUE, then no new token is created (and the caller
2114  * must use an alternative parsing method).
2115  */
2116
2117 STATIC char *
2118 S_force_version(pTHX_ char *s, int guessing)
2119 {
2120     OP *version = NULL;
2121     char *d;
2122
2123     PERL_ARGS_ASSERT_FORCE_VERSION;
2124
2125     s = SKIPSPACE1(s);
2126
2127     d = s;
2128     if (*d == 'v')
2129         d++;
2130     if (isDIGIT(*d)) {
2131         while (isDIGIT(*d) || *d == '_' || *d == '.')
2132             d++;
2133         if (*d == ';' || isSPACE(*d) || *d == '{' || *d == '}' || !*d) {
2134             SV *ver;
2135             s = scan_num(s, &pl_yylval);
2136             version = pl_yylval.opval;
2137             ver = cSVOPx(version)->op_sv;
2138             if (SvPOK(ver) && !SvNIOK(ver)) {
2139                 SvUPGRADE(ver, SVt_PVNV);
2140                 SvNV_set(ver, str_to_version(ver));
2141                 SvNOK_on(ver);          /* hint that it is a version */
2142             }
2143         }
2144         else if (guessing) {
2145             return s;
2146         }
2147     }
2148
2149     /* NOTE: The parser sees the package name and the VERSION swapped */
2150     NEXTVAL_NEXTTOKE.opval = version;
2151     force_next(WORD);
2152
2153     return s;
2154 }
2155
2156 /*
2157  * S_force_strict_version
2158  * Forces the next token to be a version number using strict syntax rules.
2159  */
2160
2161 STATIC char *
2162 S_force_strict_version(pTHX_ char *s)
2163 {
2164     OP *version = NULL;
2165     const char *errstr = NULL;
2166
2167     PERL_ARGS_ASSERT_FORCE_STRICT_VERSION;
2168
2169     while (isSPACE(*s)) /* leading whitespace */
2170         s++;
2171
2172     if (is_STRICT_VERSION(s,&errstr)) {
2173         SV *ver = newSV(0);
2174         s = (char *)scan_version(s, ver, 0);
2175         version = newSVOP(OP_CONST, 0, ver);
2176     }
2177     else if ( (*s != ';' && *s != '{' && *s != '}' ) &&
2178             (s = SKIPSPACE1(s), (*s != ';' && *s != '{' && *s != '}' )))
2179     {
2180         PL_bufptr = s;
2181         if (errstr)
2182             yyerror(errstr); /* version required */
2183         return s;
2184     }
2185
2186     /* NOTE: The parser sees the package name and the VERSION swapped */
2187     NEXTVAL_NEXTTOKE.opval = version;
2188     force_next(WORD);
2189
2190     return s;
2191 }
2192
2193 /*
2194  * S_tokeq
2195  * Tokenize a quoted string passed in as an SV.  It finds the next
2196  * chunk, up to end of string or a backslash.  It may make a new
2197  * SV containing that chunk (if HINT_NEW_STRING is on).  It also
2198  * turns \\ into \.
2199  */
2200
2201 STATIC SV *
2202 S_tokeq(pTHX_ SV *sv)
2203 {
2204     char *s;
2205     char *send;
2206     char *d;
2207     SV *pv = sv;
2208
2209     PERL_ARGS_ASSERT_TOKEQ;
2210
2211     assert (SvPOK(sv));
2212     assert (SvLEN(sv));
2213     assert (!SvIsCOW(sv));
2214     if (SvTYPE(sv) >= SVt_PVIV && SvIVX(sv) == -1) /* <<'heredoc' */
2215         goto finish;
2216     s = SvPVX(sv);
2217     send = SvEND(sv);
2218     /* This is relying on the SV being "well formed" with a trailing '\0'  */
2219     while (s < send && !(*s == '\\' && s[1] == '\\'))
2220         s++;
2221     if (s == send)
2222         goto finish;
2223     d = s;
2224     if ( PL_hints & HINT_NEW_STRING ) {
2225         pv = newSVpvn_flags(SvPVX_const(pv), SvCUR(sv),
2226                             SVs_TEMP | SvUTF8(sv));
2227     }
2228     while (s < send) {
2229         if (*s == '\\') {
2230             if (s + 1 < send && (s[1] == '\\'))
2231                 s++;            /* all that, just for this */
2232         }
2233         *d++ = *s++;
2234     }
2235     *d = '\0';
2236     SvCUR_set(sv, d - SvPVX_const(sv));
2237   finish:
2238     if ( PL_hints & HINT_NEW_STRING )
2239        return new_constant(NULL, 0, "q", sv, pv, "q", 1);
2240     return sv;
2241 }
2242
2243 /*
2244  * Now come three functions related to double-quote context,
2245  * S_sublex_start, S_sublex_push, and S_sublex_done.  They're used when
2246  * converting things like "\u\Lgnat" into ucfirst(lc("gnat")).  They
2247  * interact with PL_lex_state, and create fake ( ... ) argument lists
2248  * to handle functions and concatenation.
2249  * For example,
2250  *   "foo\lbar"
2251  * is tokenised as
2252  *    stringify ( const[foo] concat lcfirst ( const[bar] ) )
2253  */
2254
2255 /*
2256  * S_sublex_start
2257  * Assumes that pl_yylval.ival is the op we're creating (e.g. OP_LCFIRST).
2258  *
2259  * Pattern matching will set PL_lex_op to the pattern-matching op to
2260  * make (we return THING if pl_yylval.ival is OP_NULL, PMFUNC otherwise).
2261  *
2262  * OP_CONST and OP_READLINE are easy--just make the new op and return.
2263  *
2264  * Everything else becomes a FUNC.
2265  *
2266  * Sets PL_lex_state to LEX_INTERPPUSH unless (ival was OP_NULL or we
2267  * had an OP_CONST or OP_READLINE).  This just sets us up for a
2268  * call to S_sublex_push().
2269  */
2270
2271 STATIC I32
2272 S_sublex_start(pTHX)
2273 {
2274     const I32 op_type = pl_yylval.ival;
2275
2276     if (op_type == OP_NULL) {
2277         pl_yylval.opval = PL_lex_op;
2278         PL_lex_op = NULL;
2279         return THING;
2280     }
2281     if (op_type == OP_CONST) {
2282         SV *sv = tokeq(PL_lex_stuff);
2283
2284         if (SvTYPE(sv) == SVt_PVIV) {
2285             /* Overloaded constants, nothing fancy: Convert to SVt_PV: */
2286             STRLEN len;
2287             const char * const p = SvPV_const(sv, len);
2288             SV * const nsv = newSVpvn_flags(p, len, SvUTF8(sv));
2289             SvREFCNT_dec(sv);
2290             sv = nsv;
2291         }
2292         pl_yylval.opval = (OP*)newSVOP(op_type, 0, sv);
2293         PL_lex_stuff = NULL;
2294         return THING;
2295     }
2296
2297     PL_sublex_info.super_state = PL_lex_state;
2298     PL_sublex_info.sub_inwhat = (U16)op_type;
2299     PL_sublex_info.sub_op = PL_lex_op;
2300     PL_lex_state = LEX_INTERPPUSH;
2301
2302     PL_expect = XTERM;
2303     if (PL_lex_op) {
2304         pl_yylval.opval = PL_lex_op;
2305         PL_lex_op = NULL;
2306         return PMFUNC;
2307     }
2308     else
2309         return FUNC;
2310 }
2311
2312 /*
2313  * S_sublex_push
2314  * Create a new scope to save the lexing state.  The scope will be
2315  * ended in S_sublex_done.  Returns a '(', starting the function arguments
2316  * to the uc, lc, etc. found before.
2317  * Sets PL_lex_state to LEX_INTERPCONCAT.
2318  */
2319
2320 STATIC I32
2321 S_sublex_push(pTHX)
2322 {
2323     LEXSHARED *shared;
2324     const bool is_heredoc = PL_multi_close == '<';
2325     ENTER;
2326
2327     PL_lex_state = PL_sublex_info.super_state;
2328     SAVEI8(PL_lex_dojoin);
2329     SAVEI32(PL_lex_brackets);
2330     SAVEI32(PL_lex_allbrackets);
2331     SAVEI32(PL_lex_formbrack);
2332     SAVEI8(PL_lex_fakeeof);
2333     SAVEI32(PL_lex_casemods);
2334     SAVEI32(PL_lex_starts);
2335     SAVEI8(PL_lex_state);
2336     SAVESPTR(PL_lex_repl);
2337     SAVEVPTR(PL_lex_inpat);
2338     SAVEI16(PL_lex_inwhat);
2339     if (is_heredoc)
2340     {
2341         SAVECOPLINE(PL_curcop);
2342         SAVEI32(PL_multi_end);
2343         SAVEI32(PL_parser->herelines);
2344         PL_parser->herelines = 0;
2345     }
2346     SAVEI8(PL_multi_close);
2347     SAVEPPTR(PL_bufptr);
2348     SAVEPPTR(PL_bufend);
2349     SAVEPPTR(PL_oldbufptr);
2350     SAVEPPTR(PL_oldoldbufptr);
2351     SAVEPPTR(PL_last_lop);
2352     SAVEPPTR(PL_last_uni);
2353     SAVEPPTR(PL_linestart);
2354     SAVESPTR(PL_linestr);
2355     SAVEGENERICPV(PL_lex_brackstack);
2356     SAVEGENERICPV(PL_lex_casestack);
2357     SAVEGENERICPV(PL_parser->lex_shared);
2358     SAVEBOOL(PL_parser->lex_re_reparsing);
2359     SAVEI32(PL_copline);
2360
2361     /* The here-doc parser needs to be able to peek into outer lexing
2362        scopes to find the body of the here-doc.  So we put PL_linestr and
2363        PL_bufptr into lex_shared, to â€˜share’ those values.
2364      */
2365     PL_parser->lex_shared->ls_linestr = PL_linestr;
2366     PL_parser->lex_shared->ls_bufptr  = PL_bufptr;
2367
2368     PL_linestr = PL_lex_stuff;
2369     PL_lex_repl = PL_sublex_info.repl;
2370     PL_lex_stuff = NULL;
2371     PL_sublex_info.repl = NULL;
2372
2373     PL_bufend = PL_bufptr = PL_oldbufptr = PL_oldoldbufptr = PL_linestart
2374         = SvPVX(PL_linestr);
2375     PL_bufend += SvCUR(PL_linestr);
2376     PL_last_lop = PL_last_uni = NULL;
2377     SAVEFREESV(PL_linestr);
2378     if (PL_lex_repl) SAVEFREESV(PL_lex_repl);
2379
2380     PL_lex_dojoin = FALSE;
2381     PL_lex_brackets = PL_lex_formbrack = 0;
2382     PL_lex_allbrackets = 0;
2383     PL_lex_fakeeof = LEX_FAKEEOF_NEVER;
2384     Newx(PL_lex_brackstack, 120, char);
2385     Newx(PL_lex_casestack, 12, char);
2386     PL_lex_casemods = 0;
2387     *PL_lex_casestack = '\0';
2388     PL_lex_starts = 0;
2389     PL_lex_state = LEX_INTERPCONCAT;
2390     if (is_heredoc)
2391         CopLINE_set(PL_curcop, (line_t)PL_multi_start);
2392     PL_copline = NOLINE;
2393     
2394     Newxz(shared, 1, LEXSHARED);
2395     shared->ls_prev = PL_parser->lex_shared;
2396     PL_parser->lex_shared = shared;
2397
2398     PL_lex_inwhat = PL_sublex_info.sub_inwhat;
2399     if (PL_lex_inwhat == OP_TRANSR) PL_lex_inwhat = OP_TRANS;
2400     if (PL_lex_inwhat == OP_MATCH || PL_lex_inwhat == OP_QR || PL_lex_inwhat == OP_SUBST)
2401         PL_lex_inpat = PL_sublex_info.sub_op;
2402     else
2403         PL_lex_inpat = NULL;
2404
2405     PL_parser->lex_re_reparsing = cBOOL(PL_in_eval & EVAL_RE_REPARSING);
2406     PL_in_eval &= ~EVAL_RE_REPARSING;
2407
2408     return '(';
2409 }
2410
2411 /*
2412  * S_sublex_done
2413  * Restores lexer state after a S_sublex_push.
2414  */
2415
2416 STATIC I32
2417 S_sublex_done(pTHX)
2418 {
2419     if (!PL_lex_starts++) {
2420         SV * const sv = newSVpvs("");
2421         if (SvUTF8(PL_linestr))
2422             SvUTF8_on(sv);
2423         PL_expect = XOPERATOR;
2424         pl_yylval.opval = (OP*)newSVOP(OP_CONST, 0, sv);
2425         return THING;
2426     }
2427
2428     if (PL_lex_casemods) {              /* oops, we've got some unbalanced parens */
2429         PL_lex_state = LEX_INTERPCASEMOD;
2430         return yylex();
2431     }
2432
2433     /* Is there a right-hand side to take care of? (s//RHS/ or tr//RHS/) */
2434     assert(PL_lex_inwhat != OP_TRANSR);
2435     if (PL_lex_repl) {
2436         assert (PL_lex_inwhat == OP_SUBST || PL_lex_inwhat == OP_TRANS);
2437         PL_linestr = PL_lex_repl;
2438         PL_lex_inpat = 0;
2439         PL_bufend = PL_bufptr = PL_oldbufptr = PL_oldoldbufptr = PL_linestart = SvPVX(PL_linestr);
2440         PL_bufend += SvCUR(PL_linestr);
2441         PL_last_lop = PL_last_uni = NULL;
2442         PL_lex_dojoin = FALSE;
2443         PL_lex_brackets = 0;
2444         PL_lex_allbrackets = 0;
2445         PL_lex_fakeeof = LEX_FAKEEOF_NEVER;
2446         PL_lex_casemods = 0;
2447         *PL_lex_casestack = '\0';
2448         PL_lex_starts = 0;
2449         if (SvEVALED(PL_lex_repl)) {
2450             PL_lex_state = LEX_INTERPNORMAL;
2451             PL_lex_starts++;
2452             /*  we don't clear PL_lex_repl here, so that we can check later
2453                 whether this is an evalled subst; that means we rely on the
2454                 logic to ensure sublex_done() is called again only via the
2455                 branch (in yylex()) that clears PL_lex_repl, else we'll loop */
2456         }
2457         else {
2458             PL_lex_state = LEX_INTERPCONCAT;
2459             PL_lex_repl = NULL;
2460         }
2461         if (SvTYPE(PL_linestr) >= SVt_PVNV) {
2462             CopLINE(PL_curcop) +=
2463                 ((XPVNV*)SvANY(PL_linestr))->xnv_u.xpad_cop_seq.xlow
2464                  + PL_parser->herelines;
2465             PL_parser->herelines = 0;
2466         }
2467         return ',';
2468     }
2469     else {
2470         const line_t l = CopLINE(PL_curcop);
2471         LEAVE;
2472         if (PL_multi_close == '<')
2473             PL_parser->herelines += l - PL_multi_end;
2474         PL_bufend = SvPVX(PL_linestr);
2475         PL_bufend += SvCUR(PL_linestr);
2476         PL_expect = XOPERATOR;
2477         PL_sublex_info.sub_inwhat = 0;
2478         return ')';
2479     }
2480 }
2481
2482 PERL_STATIC_INLINE SV*
2483 S_get_and_check_backslash_N_name(pTHX_ const char* s, const char* const e)
2484 {
2485     /* <s> points to first character of interior of \N{}, <e> to one beyond the
2486      * interior, hence to the "}".  Finds what the name resolves to, returning
2487      * an SV* containing it; NULL if no valid one found */
2488
2489     SV* res = newSVpvn_flags(s, e - s, UTF ? SVf_UTF8 : 0);
2490
2491     HV * table;
2492     SV **cvp;
2493     SV *cv;
2494     SV *rv;
2495     HV *stash;
2496     const U8* first_bad_char_loc;
2497     const char* backslash_ptr = s - 3; /* Points to the <\> of \N{... */
2498
2499     PERL_ARGS_ASSERT_GET_AND_CHECK_BACKSLASH_N_NAME;
2500
2501     if (UTF && ! is_utf8_string_loc((U8 *) backslash_ptr,
2502                                      e - backslash_ptr,
2503                                      &first_bad_char_loc))
2504     {
2505         /* If warnings are on, this will print a more detailed analysis of what
2506          * is wrong than the error message below */
2507         utf8n_to_uvchr(first_bad_char_loc,
2508                        e - ((char *) first_bad_char_loc),
2509                        NULL, 0);
2510
2511         /* We deliberately don't try to print the malformed character, which
2512          * might not print very well; it also may be just the first of many
2513          * malformations, so don't print what comes after it */
2514         yyerror(Perl_form(aTHX_
2515             "Malformed UTF-8 character immediately after '%.*s'",
2516             (int) (first_bad_char_loc - (U8 *) backslash_ptr), backslash_ptr));
2517         return NULL;
2518     }
2519
2520     res = new_constant( NULL, 0, "charnames", res, NULL, backslash_ptr,
2521                         /* include the <}> */
2522                         e - backslash_ptr + 1);
2523     if (! SvPOK(res)) {
2524         SvREFCNT_dec_NN(res);
2525         return NULL;
2526     }
2527
2528     /* See if the charnames handler is the Perl core's, and if so, we can skip
2529      * the validation needed for a user-supplied one, as Perl's does its own
2530      * validation. */
2531     table = GvHV(PL_hintgv);             /* ^H */
2532     cvp = hv_fetchs(table, "charnames", FALSE);
2533     if (cvp && (cv = *cvp) && SvROK(cv) && (rv = SvRV(cv),
2534         SvTYPE(rv) == SVt_PVCV) && ((stash = CvSTASH(rv)) != NULL))
2535     {
2536         const char * const name = HvNAME(stash);
2537         if (HvNAMELEN(stash) == sizeof("_charnames")-1
2538          && strEQ(name, "_charnames")) {
2539            return res;
2540        }
2541     }
2542
2543     /* Here, it isn't Perl's charname handler.  We can't rely on a
2544      * user-supplied handler to validate the input name.  For non-ut8 input,
2545      * look to see that the first character is legal.  Then loop through the
2546      * rest checking that each is a continuation */
2547
2548     /* This code makes the reasonable assumption that the only Latin1-range
2549      * characters that begin a character name alias are alphabetic, otherwise
2550      * would have to create a isCHARNAME_BEGIN macro */
2551
2552     if (! UTF) {
2553         if (! isALPHAU(*s)) {
2554             goto bad_charname;
2555         }
2556         s++;
2557         while (s < e) {
2558             if (! isCHARNAME_CONT(*s)) {
2559                 goto bad_charname;
2560             }
2561             if (*s == ' ' && *(s-1) == ' ') {
2562                 goto multi_spaces;
2563             }
2564             if ((U8) *s == NBSP_NATIVE && ckWARN_d(WARN_DEPRECATED)) {
2565                 Perl_warner(aTHX_ packWARN(WARN_DEPRECATED),
2566                            "NO-BREAK SPACE in a charnames "
2567                            "alias definition is deprecated");
2568             }
2569             s++;
2570         }
2571     }
2572     else {
2573         /* Similarly for utf8.  For invariants can check directly; for other
2574          * Latin1, can calculate their code point and check; otherwise  use a
2575          * swash */
2576         if (UTF8_IS_INVARIANT(*s)) {
2577             if (! isALPHAU(*s)) {
2578                 goto bad_charname;
2579             }
2580             s++;
2581         } else if (UTF8_IS_DOWNGRADEABLE_START(*s)) {
2582             if (! isALPHAU(TWO_BYTE_UTF8_TO_NATIVE(*s, *(s+1)))) {
2583                 goto bad_charname;
2584             }
2585             s += 2;
2586         }
2587         else {
2588             if (! PL_utf8_charname_begin) {
2589                 U8 flags = _CORE_SWASH_INIT_ACCEPT_INVLIST;
2590                 PL_utf8_charname_begin = _core_swash_init("utf8",
2591                                                         "_Perl_Charname_Begin",
2592                                                         &PL_sv_undef,
2593                                                         1, 0, NULL, &flags);
2594             }
2595             if (! swash_fetch(PL_utf8_charname_begin, (U8 *) s, TRUE)) {
2596                 goto bad_charname;
2597             }
2598             s += UTF8SKIP(s);
2599         }
2600
2601         while (s < e) {
2602             if (UTF8_IS_INVARIANT(*s)) {
2603                 if (! isCHARNAME_CONT(*s)) {
2604                     goto bad_charname;
2605                 }
2606                 if (*s == ' ' && *(s-1) == ' ') {
2607                     goto multi_spaces;
2608                 }
2609                 s++;
2610             }
2611             else if (UTF8_IS_DOWNGRADEABLE_START(*s)) {
2612                 if (! isCHARNAME_CONT(TWO_BYTE_UTF8_TO_NATIVE(*s, *(s+1))))
2613                 {
2614                     goto bad_charname;
2615                 }
2616                 if (*s == *NBSP_UTF8
2617                     && *(s+1) == *(NBSP_UTF8+1)
2618                     && ckWARN_d(WARN_DEPRECATED))
2619                 {
2620                     Perl_warner(aTHX_ packWARN(WARN_DEPRECATED),
2621                                 "NO-BREAK SPACE in a charnames "
2622                                 "alias definition is deprecated");
2623                 }
2624                 s += 2;
2625             }
2626             else {
2627                 if (! PL_utf8_charname_continue) {
2628                     U8 flags = _CORE_SWASH_INIT_ACCEPT_INVLIST;
2629                     PL_utf8_charname_continue = _core_swash_init("utf8",
2630                                                 "_Perl_Charname_Continue",
2631                                                 &PL_sv_undef,
2632                                                 1, 0, NULL, &flags);
2633                 }
2634                 if (! swash_fetch(PL_utf8_charname_continue, (U8 *) s, TRUE)) {
2635                     goto bad_charname;
2636                 }
2637                 s += UTF8SKIP(s);
2638             }
2639         }
2640     }
2641     if (*(s-1) == ' ') {
2642         yyerror_pv(
2643             Perl_form(aTHX_
2644             "charnames alias definitions may not contain trailing "
2645             "white-space; marked by <-- HERE in %.*s<-- HERE %.*s",
2646             (int)(s - backslash_ptr + 1), backslash_ptr,
2647             (int)(e - s + 1), s + 1
2648             ),
2649         UTF ? SVf_UTF8 : 0);
2650         return NULL;
2651     }
2652
2653     if (SvUTF8(res)) { /* Don't accept malformed input */
2654         const U8* first_bad_char_loc;
2655         STRLEN len;
2656         const char* const str = SvPV_const(res, len);
2657         if (! is_utf8_string_loc((U8 *) str, len, &first_bad_char_loc)) {
2658             /* If warnings are on, this will print a more detailed analysis of
2659              * what is wrong than the error message below */
2660             utf8n_to_uvchr(first_bad_char_loc,
2661                            (char *) first_bad_char_loc - str,
2662                            NULL, 0);
2663
2664             /* We deliberately don't try to print the malformed character,
2665              * which might not print very well; it also may be just the first
2666              * of many malformations, so don't print what comes after it */
2667             yyerror_pv(
2668               Perl_form(aTHX_
2669                 "Malformed UTF-8 returned by %.*s immediately after '%.*s'",
2670                  (int) (e - backslash_ptr + 1), backslash_ptr,
2671                  (int) ((char *) first_bad_char_loc - str), str
2672               ),
2673               SVf_UTF8);
2674             return NULL;
2675         }
2676     }
2677
2678     return res;
2679
2680   bad_charname: {
2681
2682         /* The final %.*s makes sure that should the trailing NUL be missing
2683          * that this print won't run off the end of the string */
2684         yyerror_pv(
2685           Perl_form(aTHX_
2686             "Invalid character in \\N{...}; marked by <-- HERE in %.*s<-- HERE %.*s",
2687             (int)(s - backslash_ptr + 1), backslash_ptr,
2688             (int)(e - s + 1), s + 1
2689           ),
2690           UTF ? SVf_UTF8 : 0);
2691         return NULL;
2692     }
2693
2694   multi_spaces:
2695         yyerror_pv(
2696           Perl_form(aTHX_
2697             "charnames alias definitions may not contain a sequence of "
2698             "multiple spaces; marked by <-- HERE in %.*s<-- HERE %.*s",
2699             (int)(s - backslash_ptr + 1), backslash_ptr,
2700             (int)(e - s + 1), s + 1
2701           ),
2702           UTF ? SVf_UTF8 : 0);
2703         return NULL;
2704 }
2705
2706 /*
2707   scan_const
2708
2709   Extracts the next constant part of a pattern, double-quoted string,
2710   or transliteration.  This is terrifying code.
2711
2712   For example, in parsing the double-quoted string "ab\x63$d", it would
2713   stop at the '$' and return an OP_CONST containing 'abc'.
2714
2715   It looks at PL_lex_inwhat and PL_lex_inpat to find out whether it's
2716   processing a pattern (PL_lex_inpat is true), a transliteration
2717   (PL_lex_inwhat == OP_TRANS is true), or a double-quoted string.
2718
2719   Returns a pointer to the character scanned up to. If this is
2720   advanced from the start pointer supplied (i.e. if anything was
2721   successfully parsed), will leave an OP_CONST for the substring scanned
2722   in pl_yylval. Caller must intuit reason for not parsing further
2723   by looking at the next characters herself.
2724
2725   In patterns:
2726     expand:
2727       \N{FOO}  => \N{U+hex_for_character_FOO}
2728       (if FOO expands to multiple characters, expands to \N{U+xx.XX.yy ...})
2729
2730     pass through:
2731         all other \-char, including \N and \N{ apart from \N{ABC}
2732
2733     stops on:
2734         @ and $ where it appears to be a var, but not for $ as tail anchor
2735         \l \L \u \U \Q \E
2736         (?{  or  (??{
2737
2738
2739   In transliterations:
2740     characters are VERY literal, except for - not at the start or end
2741     of the string, which indicates a range. If the range is in bytes,
2742     scan_const expands the range to the full set of intermediate
2743     characters. If the range is in utf8, the hyphen is replaced with
2744     a certain range mark which will be handled by pmtrans() in op.c.
2745
2746   In double-quoted strings:
2747     backslashes:
2748       double-quoted style: \r and \n
2749       constants: \x31, etc.
2750       deprecated backrefs: \1 (in substitution replacements)
2751       case and quoting: \U \Q \E
2752     stops on @ and $
2753
2754   scan_const does *not* construct ops to handle interpolated strings.
2755   It stops processing as soon as it finds an embedded $ or @ variable
2756   and leaves it to the caller to work out what's going on.
2757
2758   embedded arrays (whether in pattern or not) could be:
2759       @foo, @::foo, @'foo, @{foo}, @$foo, @+, @-.
2760
2761   $ in double-quoted strings must be the symbol of an embedded scalar.
2762
2763   $ in pattern could be $foo or could be tail anchor.  Assumption:
2764   it's a tail anchor if $ is the last thing in the string, or if it's
2765   followed by one of "()| \r\n\t"
2766
2767   \1 (backreferences) are turned into $1 in substitutions
2768
2769   The structure of the code is
2770       while (there's a character to process) {
2771           handle transliteration ranges
2772           skip regexp comments /(?#comment)/ and codes /(?{code})/
2773           skip #-initiated comments in //x patterns
2774           check for embedded arrays
2775           check for embedded scalars
2776           if (backslash) {
2777               deprecate \1 in substitution replacements
2778               handle string-changing backslashes \l \U \Q \E, etc.
2779               switch (what was escaped) {
2780                   handle \- in a transliteration (becomes a literal -)
2781                   if a pattern and not \N{, go treat as regular character
2782                   handle \132 (octal characters)
2783                   handle \x15 and \x{1234} (hex characters)
2784                   handle \N{name} (named characters, also \N{3,5} in a pattern)
2785                   handle \cV (control characters)
2786                   handle printf-style backslashes (\f, \r, \n, etc)
2787               } (end switch)
2788               continue
2789           } (end if backslash)
2790           handle regular character
2791     } (end while character to read)
2792                 
2793 */
2794
2795 STATIC char *
2796 S_scan_const(pTHX_ char *start)
2797 {
2798     char *send = PL_bufend;             /* end of the constant */
2799     SV *sv = newSV(send - start);       /* sv for the constant.  See note below
2800                                            on sizing. */
2801     char *s = start;                    /* start of the constant */
2802     char *d = SvPVX(sv);                /* destination for copies */
2803     bool dorange = FALSE;               /* are we in a translit range? */
2804     bool didrange = FALSE;              /* did we just finish a range? */
2805     bool in_charclass = FALSE;          /* within /[...]/ */
2806     bool has_utf8 = FALSE;              /* Output constant is UTF8 */
2807     bool  this_utf8 = cBOOL(UTF);       /* Is the source string assumed to be
2808                                            UTF8?  But, this can show as true
2809                                            when the source isn't utf8, as for
2810                                            example when it is entirely composed
2811                                            of hex constants */
2812     SV *res;                            /* result from charnames */
2813
2814     /* Note on sizing:  The scanned constant is placed into sv, which is
2815      * initialized by newSV() assuming one byte of output for every byte of
2816      * input.  This routine expects newSV() to allocate an extra byte for a
2817      * trailing NUL, which this routine will append if it gets to the end of
2818      * the input.  There may be more bytes of input than output (eg., \N{LATIN
2819      * CAPITAL LETTER A}), or more output than input if the constant ends up
2820      * recoded to utf8, but each time a construct is found that might increase
2821      * the needed size, SvGROW() is called.  Its size parameter each time is
2822      * based on the best guess estimate at the time, namely the length used so
2823      * far, plus the length the current construct will occupy, plus room for
2824      * the trailing NUL, plus one byte for every input byte still unscanned */ 
2825
2826     UV uv = UV_MAX; /* Initialize to weird value to try to catch any uses
2827                        before set */
2828 #ifdef EBCDIC
2829     UV literal_endpoint = 0;
2830     bool native_range = TRUE; /* turned to FALSE if the first endpoint is Unicode. */
2831 #endif
2832
2833     PERL_ARGS_ASSERT_SCAN_CONST;
2834
2835     assert(PL_lex_inwhat != OP_TRANSR);
2836     if (PL_lex_inwhat == OP_TRANS && PL_sublex_info.sub_op) {
2837         /* If we are doing a trans and we know we want UTF8 set expectation */
2838         has_utf8   = PL_sublex_info.sub_op->op_private & (OPpTRANS_FROM_UTF|OPpTRANS_TO_UTF);
2839         this_utf8  = PL_sublex_info.sub_op->op_private & (PL_lex_repl ? OPpTRANS_FROM_UTF : OPpTRANS_TO_UTF);
2840     }
2841
2842     /* Protect sv from errors and fatal warnings. */
2843     ENTER_with_name("scan_const");
2844     SAVEFREESV(sv);
2845
2846     while (s < send || dorange) {
2847
2848         /* get transliterations out of the way (they're most literal) */
2849         if (PL_lex_inwhat == OP_TRANS) {
2850             /* expand a range A-Z to the full set of characters.  AIE! */
2851             if (dorange) {
2852                 I32 i;                          /* current expanded character */
2853                 I32 min;                        /* first character in range */
2854                 I32 max;                        /* last character in range */
2855
2856 #ifdef EBCDIC
2857                 UV uvmax = 0;
2858 #endif
2859
2860                 if (has_utf8
2861 #ifdef EBCDIC
2862                     && !native_range
2863 #endif
2864                 ) {
2865                     char * const c = (char*)utf8_hop((U8*)d, -1);
2866                     char *e = d++;
2867                     while (e-- > c)
2868                         *(e + 1) = *e;
2869                     *c = (char) ILLEGAL_UTF8_BYTE;
2870                     /* mark the range as done, and continue */
2871                     dorange = FALSE;
2872                     didrange = TRUE;
2873                     continue;
2874                 }
2875
2876                 i = d - SvPVX_const(sv);                /* remember current offset */
2877 #ifdef EBCDIC
2878                 SvGROW(sv,
2879                        SvLEN(sv) + ((has_utf8)
2880                                     ?  (512 - UTF_CONTINUATION_MARK
2881                                         + UNISKIP(0x100))
2882                                     : 256));
2883                 /* How many two-byte within 0..255: 128 in UTF-8,
2884                  * 96 in UTF-8-mod. */
2885 #else
2886                 SvGROW(sv, SvLEN(sv) + 256);    /* never more than 256 chars in a range */
2887 #endif
2888                 d = SvPVX(sv) + i;              /* refresh d after realloc */
2889 #ifdef EBCDIC
2890                 if (has_utf8) {
2891                     int j;
2892                     for (j = 0; j <= 1; j++) {
2893                         char * const c = (char*)utf8_hop((U8*)d, -1);
2894                         const UV uv    = utf8n_to_uvchr((U8*)c, d - c, NULL, 0);
2895                         if (j)
2896                             min = (U8)uv;
2897                         else if (uv < 256)
2898                             max = (U8)uv;
2899                         else {
2900                             max = (U8)0xff; /* only to \xff */
2901                             uvmax = uv; /* \x{100} to uvmax */
2902                         }
2903                         d = c; /* eat endpoint chars */
2904                      }
2905                 }
2906                else {
2907 #endif
2908                    d -= 2;              /* eat the first char and the - */
2909                    min = (U8)*d;        /* first char in range */
2910                    max = (U8)d[1];      /* last char in range  */
2911 #ifdef EBCDIC
2912                }
2913 #endif
2914
2915                 if (min > max) {
2916                     Perl_croak(aTHX_
2917                                "Invalid range \"%c-%c\" in transliteration operator",
2918                                (char)min, (char)max);
2919                 }
2920
2921 #ifdef EBCDIC
2922                 /* Because of the discontinuities in EBCDIC A-Z and a-z, expand
2923                  * any subsets of these ranges into individual characters */
2924                 if (literal_endpoint == 2 &&
2925                     ((isLOWER_A(min) && isLOWER_A(max)) ||
2926                      (isUPPER_A(min) && isUPPER_A(max))))
2927                 {
2928                     for (i = min; i <= max; i++) {
2929                         if (isALPHA_A(i))
2930                             *d++ = i;
2931                     }
2932                 }
2933                 else
2934 #endif
2935                     for (i = min; i <= max; i++)
2936 #ifdef EBCDIC
2937                         if (has_utf8) {
2938                             append_utf8_from_native_byte(i, &d);
2939                         }
2940                         else
2941 #endif
2942                             *d++ = (char)i;
2943  
2944 #ifdef EBCDIC
2945                 if (uvmax) {
2946                     d = (char*)uvchr_to_utf8((U8*)d, 0x100);
2947                     if (uvmax > 0x101)
2948                         *d++ = (char) ILLEGAL_UTF8_BYTE;
2949                     if (uvmax > 0x100)
2950                         d = (char*)uvchr_to_utf8((U8*)d, uvmax);
2951                 }
2952 #endif
2953
2954                 /* mark the range as done, and continue */
2955                 dorange = FALSE;
2956                 didrange = TRUE;
2957 #ifdef EBCDIC
2958                 literal_endpoint = 0;
2959 #endif
2960                 continue;
2961             }
2962
2963             /* range begins (ignore - as first or last char) */
2964             else if (*s == '-' && s+1 < send  && s != start) {
2965                 if (didrange) {
2966                     Perl_croak(aTHX_ "Ambiguous range in transliteration operator");
2967                 }
2968                 if (has_utf8
2969 #ifdef EBCDIC
2970                     && !native_range
2971 #endif
2972                     ) {
2973                     *d++ = (char) ILLEGAL_UTF8_BYTE;    /* use illegal utf8 byte--see pmtrans */
2974                     s++;
2975                     continue;
2976                 }
2977                 dorange = TRUE;
2978                 s++;
2979             }
2980             else {
2981                 didrange = FALSE;
2982 #ifdef EBCDIC
2983                 literal_endpoint = 0;
2984                 native_range = TRUE;
2985 #endif
2986             }
2987         }
2988
2989         /* if we get here, we're not doing a transliteration */
2990
2991         else if (*s == '[' && PL_lex_inpat && !in_charclass) {
2992             char *s1 = s-1;
2993             int esc = 0;
2994             while (s1 >= start && *s1-- == '\\')
2995                 esc = !esc;
2996             if (!esc)
2997                 in_charclass = TRUE;
2998         }
2999
3000         else if (*s == ']' && PL_lex_inpat &&  in_charclass) {
3001             char *s1 = s-1;
3002             int esc = 0;
3003             while (s1 >= start && *s1-- == '\\')
3004                 esc = !esc;
3005             if (!esc)
3006                 in_charclass = FALSE;
3007         }
3008
3009         /* skip for regexp comments /(?#comment)/, except for the last
3010          * char, which will be done separately.
3011          * Stop on (?{..}) and friends */
3012
3013         else if (*s == '(' && PL_lex_inpat && s[1] == '?' && !in_charclass) {
3014             if (s[2] == '#') {
3015                 while (s+1 < send && *s != ')')
3016                     *d++ = *s++;
3017             }
3018             else if (!PL_lex_casemods &&
3019                      (    s[2] == '{' /* This should match regcomp.c */
3020                       || (s[2] == '?' && s[3] == '{')))
3021             {
3022                 break;
3023             }
3024         }
3025
3026         /* likewise skip #-initiated comments in //x patterns */
3027         else if (*s == '#' && PL_lex_inpat && !in_charclass &&
3028           ((PMOP*)PL_lex_inpat)->op_pmflags & RXf_PMf_EXTENDED) {
3029             while (s+1 < send && *s != '\n')
3030                 *d++ = *s++;
3031         }
3032
3033         /* no further processing of single-quoted regex */
3034         else if (PL_lex_inpat && SvIVX(PL_linestr) == '\'')
3035             goto default_action;
3036
3037         /* check for embedded arrays
3038            (@foo, @::foo, @'foo, @{foo}, @$foo, @+, @-)
3039            */
3040         else if (*s == '@' && s[1]) {
3041             if (isWORDCHAR_lazy_if(s+1,UTF))
3042                 break;
3043             if (strchr(":'{$", s[1]))
3044                 break;
3045             if (!PL_lex_inpat && (s[1] == '+' || s[1] == '-'))
3046                 break; /* in regexp, neither @+ nor @- are interpolated */
3047         }
3048
3049         /* check for embedded scalars.  only stop if we're sure it's a
3050            variable.
3051         */
3052         else if (*s == '$') {
3053             if (!PL_lex_inpat)  /* not a regexp, so $ must be var */
3054                 break;
3055             if (s + 1 < send && !strchr("()| \r\n\t", s[1])) {
3056                 if (s[1] == '\\') {
3057                     Perl_ck_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
3058                                    "Possible unintended interpolation of $\\ in regex");
3059                 }
3060                 break;          /* in regexp, $ might be tail anchor */
3061             }
3062         }
3063
3064         /* End of else if chain - OP_TRANS rejoin rest */
3065
3066         /* backslashes */
3067         if (*s == '\\' && s+1 < send) {
3068             char* e;    /* Can be used for ending '}', etc. */
3069
3070             s++;
3071
3072             /* warn on \1 - \9 in substitution replacements, but note that \11
3073              * is an octal; and \19 is \1 followed by '9' */
3074             if (PL_lex_inwhat == OP_SUBST && !PL_lex_inpat &&
3075                 isDIGIT(*s) && *s != '0' && !isDIGIT(s[1]))
3076             {
3077                 /* diag_listed_as: \%d better written as $%d */
3078                 Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX), "\\%c better written as $%c", *s, *s);
3079                 *--s = '$';
3080                 break;
3081             }
3082
3083             /* string-change backslash escapes */
3084             if (PL_lex_inwhat != OP_TRANS && *s && strchr("lLuUEQF", *s)) {
3085                 --s;
3086                 break;
3087             }
3088             /* In a pattern, process \N, but skip any other backslash escapes.
3089              * This is because we don't want to translate an escape sequence
3090              * into a meta symbol and have the regex compiler use the meta
3091              * symbol meaning, e.g. \x{2E} would be confused with a dot.  But
3092              * in spite of this, we do have to process \N here while the proper
3093              * charnames handler is in scope.  See bugs #56444 and #62056.
3094              * There is a complication because \N in a pattern may also stand
3095              * for 'match a non-nl', and not mean a charname, in which case its
3096              * processing should be deferred to the regex compiler.  To be a
3097              * charname it must be followed immediately by a '{', and not look
3098              * like \N followed by a curly quantifier, i.e., not something like
3099              * \N{3,}.  regcurly returns a boolean indicating if it is a legal
3100              * quantifier */
3101             else if (PL_lex_inpat
3102                     && (*s != 'N'
3103                         || s[1] != '{'
3104                         || regcurly(s + 1)))
3105             {
3106                 *d++ = '\\';
3107                 goto default_action;
3108             }
3109
3110             switch (*s) {
3111
3112             /* quoted - in transliterations */
3113             case '-':
3114                 if (PL_lex_inwhat == OP_TRANS) {
3115                     *d++ = *s++;
3116                     continue;
3117                 }
3118                 /* FALLTHROUGH */
3119             default:
3120                 {
3121                     if ((isALPHANUMERIC(*s)))
3122                         Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
3123                                        "Unrecognized escape \\%c passed through",
3124                                        *s);
3125                     /* default action is to copy the quoted character */
3126                     goto default_action;
3127                 }
3128
3129             /* eg. \132 indicates the octal constant 0132 */
3130             case '0': case '1': case '2': case '3':
3131             case '4': case '5': case '6': case '7':
3132                 {
3133                     I32 flags = PERL_SCAN_SILENT_ILLDIGIT;
3134                     STRLEN len = 3;
3135                     uv = grok_oct(s, &len, &flags, NULL);
3136                     s += len;
3137                     if (len < 3 && s < send && isDIGIT(*s)
3138                         && ckWARN(WARN_MISC))
3139                     {
3140                         Perl_warner(aTHX_ packWARN(WARN_MISC),
3141                                     "%s", form_short_octal_warning(s, len));
3142                     }
3143                 }
3144                 goto NUM_ESCAPE_INSERT;
3145
3146             /* eg. \o{24} indicates the octal constant \024 */
3147             case 'o':
3148                 {
3149                     const char* error;
3150
3151                     bool valid = grok_bslash_o(&s, &uv, &error,
3152                                                TRUE, /* Output warning */
3153                                                FALSE, /* Not strict */
3154                                                TRUE, /* Output warnings for
3155                                                          non-portables */
3156                                                UTF);
3157                     if (! valid) {
3158                         yyerror(error);
3159                         continue;
3160                     }
3161                     goto NUM_ESCAPE_INSERT;
3162                 }
3163
3164             /* eg. \x24 indicates the hex constant 0x24 */
3165             case 'x':
3166                 {
3167                     const char* error;
3168
3169                     bool valid = grok_bslash_x(&s, &uv, &error,
3170                                                TRUE, /* Output warning */
3171                                                FALSE, /* Not strict */
3172                                                TRUE,  /* Output warnings for
3173                                                          non-portables */
3174                                                UTF);
3175                     if (! valid) {
3176                         yyerror(error);
3177                         continue;
3178                     }
3179                 }
3180
3181               NUM_ESCAPE_INSERT:
3182                 /* Insert oct or hex escaped character.  There will always be
3183                  * enough room in sv since such escapes will be longer than any
3184                  * UTF-8 sequence they can end up as, except if they force us
3185                  * to recode the rest of the string into utf8 */
3186                 
3187                 /* Here uv is the ordinal of the next character being added */
3188                 if (!UVCHR_IS_INVARIANT(uv)) {
3189                     if (!has_utf8 && uv > 255) {
3190                         /* Might need to recode whatever we have accumulated so
3191                          * far if it contains any chars variant in utf8 or
3192                          * utf-ebcdic. */
3193                           
3194                         SvCUR_set(sv, d - SvPVX_const(sv));
3195                         SvPOK_on(sv);
3196                         *d = '\0';
3197                         /* See Note on sizing above.  */
3198                         sv_utf8_upgrade_flags_grow(sv,
3199                                         SV_GMAGIC|SV_FORCE_UTF8_UPGRADE,
3200                                         UNISKIP(uv) + (STRLEN)(send - s) + 1);
3201                         d = SvPVX(sv) + SvCUR(sv);
3202                         has_utf8 = TRUE;
3203                     }
3204
3205                     if (has_utf8) {
3206                         d = (char*)uvchr_to_utf8((U8*)d, uv);
3207                         if (PL_lex_inwhat == OP_TRANS &&
3208                             PL_sublex_info.sub_op) {
3209                             PL_sublex_info.sub_op->op_private |=
3210                                 (PL_lex_repl ? OPpTRANS_FROM_UTF
3211                                              : OPpTRANS_TO_UTF);
3212                         }
3213 #ifdef EBCDIC
3214                         if (uv > 255 && !dorange)
3215                             native_range = FALSE;
3216 #endif
3217                     }
3218                     else {
3219                         *d++ = (char)uv;
3220                     }
3221                 }
3222                 else {
3223                     *d++ = (char) uv;
3224                 }
3225                 continue;
3226
3227             case 'N':
3228                 /* In a non-pattern \N must be a named character, like \N{LATIN
3229                  * SMALL LETTER A} or \N{U+0041}.  For patterns, it also can
3230                  * mean to match a non-newline.  For non-patterns, named
3231                  * characters are converted to their string equivalents. In
3232                  * patterns, named characters are not converted to their
3233                  * ultimate forms for the same reasons that other escapes
3234                  * aren't.  Instead, they are converted to the \N{U+...} form
3235                  * to get the value from the charnames that is in effect right
3236                  * now, while preserving the fact that it was a named character
3237                  * so that the regex compiler knows this */
3238
3239                 /* The structure of this section of code (besides checking for
3240                  * errors and upgrading to utf8) is:
3241                  *  Further disambiguate between the two meanings of \N, and if
3242                  *      not a charname, go process it elsewhere
3243                  *  If of form \N{U+...}, pass it through if a pattern;
3244                  *      otherwise convert to utf8
3245                  *  Otherwise must be \N{NAME}: convert to \N{U+c1.c2...} if a
3246                  *  pattern; otherwise convert to utf8 */
3247
3248                 /* Here, s points to the 'N'; the test below is guaranteed to
3249                  * succeed if we are being called on a pattern as we already
3250                  * know from a test above that the next character is a '{'.
3251                  * On a non-pattern \N must mean 'named sequence, which
3252                  * requires braces */
3253                 s++;
3254                 if (*s != '{') {
3255                     yyerror("Missing braces on \\N{}"); 
3256                     continue;
3257                 }
3258                 s++;
3259
3260                 /* If there is no matching '}', it is an error. */
3261                 if (! (e = strchr(s, '}'))) {
3262                     if (! PL_lex_inpat) {
3263                         yyerror("Missing right brace on \\N{}");
3264                     } else {
3265                         yyerror("Missing right brace on \\N{} or unescaped left brace after \\N");
3266                     }
3267                     continue;
3268                 }
3269
3270                 /* Here it looks like a named character */
3271
3272                 if (*s == 'U' && s[1] == '+') { /* \N{U+...} */
3273                     I32 flags = PERL_SCAN_ALLOW_UNDERSCORES
3274                                 | PERL_SCAN_DISALLOW_PREFIX;
3275                     STRLEN len;
3276
3277                     /* For \N{U+...}, the '...' is a unicode value even on
3278                      * EBCDIC machines */
3279                     s += 2;         /* Skip to next char after the 'U+' */
3280                     len = e - s;
3281                     uv = grok_hex(s, &len, &flags, NULL);
3282                     if (len == 0 || len != (STRLEN)(e - s)) {
3283                         yyerror("Invalid hexadecimal number in \\N{U+...}");
3284                         s = e + 1;
3285                         continue;
3286                     }
3287
3288                     if (PL_lex_inpat) {
3289
3290                         /* On non-EBCDIC platforms, pass through to the regex
3291                          * compiler unchanged.  The reason we evaluated the
3292                          * number above is to make sure there wasn't a syntax
3293                          * error.  But on EBCDIC we convert to native so
3294                          * downstream code can continue to assume it's native
3295                          */
3296                         s -= 5;     /* Include the '\N{U+' */
3297 #ifdef EBCDIC
3298                         d += my_snprintf(d, e - s + 1 + 1,  /* includes the }
3299                                                                and the \0 */
3300                                     "\\N{U+%X}",
3301                                     (unsigned int) UNI_TO_NATIVE(uv));
3302 #else
3303                         Copy(s, d, e - s + 1, char);    /* 1 = include the } */
3304                         d += e - s + 1;
3305 #endif
3306                     }
3307                     else {  /* Not a pattern: convert the hex to string */
3308
3309                          /* If destination is not in utf8, unconditionally
3310                           * recode it to be so.  This is because \N{} implies
3311                           * Unicode semantics, and scalars have to be in utf8
3312                           * to guarantee those semantics */
3313                         if (! has_utf8) {
3314                             SvCUR_set(sv, d - SvPVX_const(sv));
3315                             SvPOK_on(sv);
3316                             *d = '\0';
3317                             /* See Note on sizing above.  */
3318                             sv_utf8_upgrade_flags_grow(
3319                                         sv,
3320                                         SV_GMAGIC|SV_FORCE_UTF8_UPGRADE,
3321                                         UNISKIP(uv) + (STRLEN)(send - e) + 1);
3322                             d = SvPVX(sv) + SvCUR(sv);
3323                             has_utf8 = TRUE;
3324                         }
3325
3326                         /* Add the (Unicode) code point to the output. */
3327                         if (UNI_IS_INVARIANT(uv)) {
3328                             *d++ = (char) LATIN1_TO_NATIVE(uv);
3329                         }
3330                         else {
3331                             d = (char*) uvoffuni_to_utf8_flags((U8*)d, uv, 0);
3332                         }
3333                     }
3334                 }
3335                 else /* Here is \N{NAME} but not \N{U+...}. */
3336                      if ((res = get_and_check_backslash_N_name(s, e)))
3337                 {
3338                     STRLEN len;
3339                     const char *str = SvPV_const(res, len);
3340                     if (PL_lex_inpat) {
3341
3342                         if (! len) { /* The name resolved to an empty string */
3343                             Copy("\\N{}", d, 4, char);
3344                             d += 4;
3345                         }
3346                         else {
3347                             /* In order to not lose information for the regex
3348                             * compiler, pass the result in the specially made
3349                             * syntax: \N{U+c1.c2.c3...}, where c1 etc. are
3350                             * the code points in hex of each character
3351                             * returned by charnames */
3352
3353                             const char *str_end = str + len;
3354                             const STRLEN off = d - SvPVX_const(sv);
3355
3356                             if (! SvUTF8(res)) {
3357                                 /* For the non-UTF-8 case, we can determine the
3358                                  * exact length needed without having to parse
3359                                  * through the string.  Each character takes up
3360                                  * 2 hex digits plus either a trailing dot or
3361                                  * the "}" */
3362                                 d = off + SvGROW(sv, off
3363                                                     + 3 * len
3364                                                     + 6 /* For the "\N{U+", and
3365                                                            trailing NUL */
3366                                                     + (STRLEN)(send - e));
3367                                 Copy("\\N{U+", d, 5, char);
3368                                 d += 5;
3369                                 while (str < str_end) {
3370                                     char hex_string[4];
3371                                     int len =
3372                                         my_snprintf(hex_string,
3373                                                     sizeof(hex_string),
3374                                                     "%02X.", (U8) *str);
3375                                     PERL_MY_SNPRINTF_POST_GUARD(len, sizeof(hex_string));
3376                                     Copy(hex_string, d, 3, char);
3377                                     d += 3;
3378                                     str++;
3379                                 }
3380                                 d--;    /* We will overwrite below the final
3381                                            dot with a right brace */
3382                             }
3383                             else {
3384                                 STRLEN char_length; /* cur char's byte length */
3385
3386                                 /* and the number of bytes after this is
3387                                  * translated into hex digits */
3388                                 STRLEN output_length;
3389
3390                                 /* 2 hex per byte; 2 chars for '\N'; 2 chars
3391                                  * for max('U+', '.'); and 1 for NUL */
3392                                 char hex_string[2 * UTF8_MAXBYTES + 5];
3393
3394                                 /* Get the first character of the result. */
3395                                 U32 uv = utf8n_to_uvchr((U8 *) str,
3396                                                         len,
3397                                                         &char_length,
3398                                                         UTF8_ALLOW_ANYUV);
3399                                 /* Convert first code point to hex, including
3400                                  * the boiler plate before it. */
3401                                 output_length =
3402                                     my_snprintf(hex_string, sizeof(hex_string),
3403                                                 "\\N{U+%X",
3404                                                 (unsigned int) uv);
3405
3406                                 /* Make sure there is enough space to hold it */
3407                                 d = off + SvGROW(sv, off
3408                                                     + output_length
3409                                                     + (STRLEN)(send - e)
3410                                                     + 2);       /* '}' + NUL */
3411                                 /* And output it */
3412                                 Copy(hex_string, d, output_length, char);
3413                                 d += output_length;
3414
3415                                 /* For each subsequent character, append dot and
3416                                 * its ordinal in hex */
3417                                 while ((str += char_length) < str_end) {
3418                                     const STRLEN off = d - SvPVX_const(sv);
3419                                     U32 uv = utf8n_to_uvchr((U8 *) str,
3420                                                             str_end - str,
3421                                                             &char_length,
3422                                                             UTF8_ALLOW_ANYUV);
3423                                     output_length =
3424                                         my_snprintf(hex_string,
3425                                                     sizeof(hex_string),
3426                                                     ".%X",
3427                                                     (unsigned int) uv);
3428
3429                                     d = off + SvGROW(sv, off
3430                                                         + output_length
3431                                                         + (STRLEN)(send - e)
3432                                                         + 2);   /* '}' +  NUL */
3433                                     Copy(hex_string, d, output_length, char);
3434                                     d += output_length;
3435                                 }
3436                             }
3437
3438                             *d++ = '}'; /* Done.  Add the trailing brace */
3439                         }
3440                     }
3441                     else { /* Here, not in a pattern.  Convert the name to a
3442                             * string. */
3443
3444                          /* If destination is not in utf8, unconditionally
3445                           * recode it to be so.  This is because \N{} implies
3446                           * Unicode semantics, and scalars have to be in utf8
3447                           * to guarantee those semantics */
3448                         if (! has_utf8) {
3449                             SvCUR_set(sv, d - SvPVX_const(sv));
3450                             SvPOK_on(sv);
3451                             *d = '\0';
3452                             /* See Note on sizing above.  */
3453                             sv_utf8_upgrade_flags_grow(sv,
3454                                                 SV_GMAGIC|SV_FORCE_UTF8_UPGRADE,
3455                                                 len + (STRLEN)(send - s) + 1);
3456                             d = SvPVX(sv) + SvCUR(sv);
3457                             has_utf8 = TRUE;
3458                         } else if (len > (STRLEN)(e - s + 4)) { /* I _guess_ 4 is \N{} --jhi */
3459
3460                             /* See Note on sizing above.  (NOTE: SvCUR() is not
3461                              * set correctly here). */
3462                             const STRLEN off = d - SvPVX_const(sv);
3463                             d = off + SvGROW(sv, off + len + (STRLEN)(send - s) + 1);
3464                         }
3465                         if (! SvUTF8(res)) {    /* Make sure is \N{} return is UTF-8 */
3466                             sv_utf8_upgrade(res);
3467                             str = SvPV_const(res, len);
3468                         }
3469                         Copy(str, d, len, char);
3470                         d += len;
3471                     }
3472
3473                     SvREFCNT_dec(res);
3474
3475                 } /* End \N{NAME} */
3476 #ifdef EBCDIC
3477                 if (!dorange) 
3478                     native_range = FALSE; /* \N{} is defined to be Unicode */
3479 #endif
3480                 s = e + 1;  /* Point to just after the '}' */
3481                 continue;
3482
3483             /* \c is a control character */
3484             case 'c':
3485                 s++;
3486                 if (s < send) {
3487                     *d++ = grok_bslash_c(*s++, 1);
3488                 }
3489                 else {
3490                     yyerror("Missing control char name in \\c");
3491                 }
3492                 continue;
3493
3494             /* printf-style backslashes, formfeeds, newlines, etc */
3495             case 'b':
3496                 *d++ = '\b';
3497                 break;
3498             case 'n':
3499                 *d++ = '\n';
3500                 break;
3501             case 'r':
3502                 *d++ = '\r';
3503                 break;
3504             case 'f':
3505                 *d++ = '\f';
3506                 break;
3507             case 't':
3508                 *d++ = '\t';
3509                 break;
3510             case 'e':
3511                 *d++ = ESC_NATIVE;
3512                 break;
3513             case 'a':
3514                 *d++ = '\a';
3515                 break;
3516             } /* end switch */
3517
3518             s++;
3519             continue;
3520         } /* end if (backslash) */
3521 #ifdef EBCDIC
3522         else
3523             literal_endpoint++;
3524 #endif
3525
3526     default_action:
3527         /* If we started with encoded form, or already know we want it,
3528            then encode the next character */
3529         if (! NATIVE_BYTE_IS_INVARIANT((U8)(*s)) && (this_utf8 || has_utf8)) {
3530             STRLEN len  = 1;
3531
3532
3533             /* One might think that it is wasted effort in the case of the
3534              * source being utf8 (this_utf8 == TRUE) to take the next character
3535              * in the source, convert it to an unsigned value, and then convert
3536              * it back again.  But the source has not been validated here.  The
3537              * routine that does the conversion checks for errors like
3538              * malformed utf8 */
3539
3540             const UV nextuv   = (this_utf8)
3541                                 ? utf8n_to_uvchr((U8*)s, send - s, &len, 0)
3542                                 : (UV) ((U8) *s);
3543             const STRLEN need = UNISKIP(nextuv);
3544             if (!has_utf8) {
3545                 SvCUR_set(sv, d - SvPVX_const(sv));
3546                 SvPOK_on(sv);
3547                 *d = '\0';
3548                 /* See Note on sizing above.  */
3549                 sv_utf8_upgrade_flags_grow(sv,
3550                                         SV_GMAGIC|SV_FORCE_UTF8_UPGRADE,
3551                                         need + (STRLEN)(send - s) + 1);
3552                 d = SvPVX(sv) + SvCUR(sv);
3553                 has_utf8 = TRUE;
3554             } else if (need > len) {
3555                 /* encoded value larger than old, may need extra space (NOTE:
3556                  * SvCUR() is not set correctly here).   See Note on sizing
3557                  * above.  */
3558                 const STRLEN off = d - SvPVX_const(sv);
3559                 d = SvGROW(sv, off + need + (STRLEN)(send - s) + 1) + off;
3560             }
3561             s += len;
3562
3563             d = (char*)uvchr_to_utf8((U8*)d, nextuv);
3564 #ifdef EBCDIC
3565             if (uv > 255 && !dorange)
3566                 native_range = FALSE;
3567 #endif
3568         }
3569         else {
3570             *d++ = *s++;
3571         }
3572     } /* while loop to process each character */
3573
3574     /* terminate the string and set up the sv */
3575     *d = '\0';
3576     SvCUR_set(sv, d - SvPVX_const(sv));
3577     if (SvCUR(sv) >= SvLEN(sv))
3578         Perl_croak(aTHX_ "panic: constant overflowed allocated space, %"UVuf
3579                    " >= %"UVuf, (UV)SvCUR(sv), (UV)SvLEN(sv));
3580
3581     SvPOK_on(sv);
3582     if (PL_encoding && !has_utf8) {
3583         sv_recode_to_utf8(sv, PL_encoding);
3584         if (SvUTF8(sv))
3585             has_utf8 = TRUE;
3586     }
3587     if (has_utf8) {
3588         SvUTF8_on(sv);
3589         if (PL_lex_inwhat == OP_TRANS && PL_sublex_info.sub_op) {
3590             PL_sublex_info.sub_op->op_private |=
3591                     (PL_lex_repl ? OPpTRANS_FROM_UTF : OPpTRANS_TO_UTF);
3592         }
3593     }
3594
3595     /* shrink the sv if we allocated more than we used */
3596     if (SvCUR(sv) + 5 < SvLEN(sv)) {
3597         SvPV_shrink_to_cur(sv);
3598     }
3599
3600     /* return the substring (via pl_yylval) only if we parsed anything */
3601     if (s > start) {
3602         char *s2 = start;
3603         for (; s2 < s; s2++) {
3604             if (*s2 == '\n')
3605                 COPLINE_INC_WITH_HERELINES;
3606         }
3607         SvREFCNT_inc_simple_void_NN(sv);
3608         if (   (PL_hints & ( PL_lex_inpat ? HINT_NEW_RE : HINT_NEW_STRING ))
3609             && ! PL_parser->lex_re_reparsing)
3610         {
3611             const char *const key = PL_lex_inpat ? "qr" : "q";
3612             const STRLEN keylen = PL_lex_inpat ? 2 : 1;
3613             const char *type;
3614             STRLEN typelen;
3615
3616             if (PL_lex_inwhat == OP_TRANS) {
3617                 type = "tr";
3618                 typelen = 2;
3619             } else if (PL_lex_inwhat == OP_SUBST && !PL_lex_inpat) {
3620                 type = "s";
3621                 typelen = 1;
3622             } else if (PL_lex_inpat && SvIVX(PL_linestr) == '\'') {
3623                 type = "q";
3624                 typelen = 1;
3625             } else  {
3626                 type = "qq";
3627                 typelen = 2;
3628             }
3629
3630             sv = S_new_constant(aTHX_ start, s - start, key, keylen, sv, NULL,
3631                                 type, typelen);
3632         }
3633         pl_yylval.opval = (OP*)newSVOP(OP_CONST, 0, sv);
3634     }
3635     LEAVE_with_name("scan_const");
3636     return s;
3637 }
3638
3639 /* S_intuit_more
3640  * Returns TRUE if there's more to the expression (e.g., a subscript),
3641  * FALSE otherwise.
3642  *
3643  * It deals with "$foo[3]" and /$foo[3]/ and /$foo[0123456789$]+/
3644  *
3645  * ->[ and ->{ return TRUE
3646  * ->$* ->$#* ->@* ->@[ ->@{ return TRUE if postderef_qq is enabled
3647  * { and [ outside a pattern are always subscripts, so return TRUE
3648  * if we're outside a pattern and it's not { or [, then return FALSE
3649  * if we're in a pattern and the first char is a {
3650  *   {4,5} (any digits around the comma) returns FALSE
3651  * if we're in a pattern and the first char is a [
3652  *   [] returns FALSE
3653  *   [SOMETHING] has a funky algorithm to decide whether it's a
3654  *      character class or not.  It has to deal with things like
3655  *      /$foo[-3]/ and /$foo[$bar]/ as well as /$foo[$\d]+/
3656  * anything else returns TRUE
3657  */
3658
3659 /* This is the one truly awful dwimmer necessary to conflate C and sed. */
3660
3661 STATIC int
3662 S_intuit_more(pTHX_ char *s)
3663 {
3664     PERL_ARGS_ASSERT_INTUIT_MORE;
3665
3666     if (PL_lex_brackets)
3667         return TRUE;
3668     if (*s == '-' && s[1] == '>' && (s[2] == '[' || s[2] == '{'))
3669         return TRUE;
3670     if (*s == '-' && s[1] == '>'
3671      && FEATURE_POSTDEREF_QQ_IS_ENABLED
3672      && ( (s[2] == '$' && (s[3] == '*' || (s[3] == '#' && s[4] == '*')))
3673         ||(s[2] == '@' && strchr("*[{",s[3])) ))
3674         return TRUE;
3675     if (*s != '{' && *s != '[')
3676         return FALSE;
3677     if (!PL_lex_inpat)
3678         return TRUE;
3679
3680     /* In a pattern, so maybe we have {n,m}. */
3681     if (*s == '{') {
3682         if (regcurly(s)) {
3683             return FALSE;
3684         }
3685         return TRUE;
3686     }
3687
3688     /* On the other hand, maybe we have a character class */
3689
3690     s++;
3691     if (*s == ']' || *s == '^')
3692         return FALSE;
3693     else {
3694         /* this is terrifying, and it works */
3695         int weight;
3696         char seen[256];
3697         const char * const send = strchr(s,']');
3698         unsigned char un_char, last_un_char;
3699         char tmpbuf[sizeof PL_tokenbuf * 4];
3700
3701         if (!send)              /* has to be an expression */
3702             return TRUE;
3703         weight = 2;             /* let's weigh the evidence */
3704
3705         if (*s == '$')
3706             weight -= 3;
3707         else if (isDIGIT(*s)) {
3708             if (s[1] != ']') {
3709                 if (isDIGIT(s[1]) && s[2] == ']')
3710                     weight -= 10;
3711             }
3712             else
3713                 weight -= 100;
3714         }
3715         Zero(seen,256,char);
3716         un_char = 255;
3717         for (; s < send; s++) {
3718             last_un_char = un_char;
3719             un_char = (unsigned char)*s;
3720             switch (*s) {
3721             case '@':
3722             case '&':
3723             case '$':
3724                 weight -= seen[un_char] * 10;
3725                 if (isWORDCHAR_lazy_if(s+1,UTF)) {
3726                     int len;
3727                     char *tmp = PL_bufend;
3728                     PL_bufend = (char*)send;
3729                     scan_ident(s, tmpbuf, sizeof tmpbuf, FALSE);
3730                     PL_bufend = tmp;
3731                     len = (int)strlen(tmpbuf);
3732                     if (len > 1 && gv_fetchpvn_flags(tmpbuf, len,
3733                                                     UTF ? SVf_UTF8 : 0, SVt_PV))
3734                         weight -= 100;
3735                     else
3736                         weight -= 10;
3737                 }
3738                 else if (*s == '$' && s[1] &&
3739                   strchr("[#!%*<>()-=",s[1])) {
3740                     if (/*{*/ strchr("])} =",s[2]))
3741                         weight -= 10;
3742                     else
3743                         weight -= 1;
3744                 }
3745                 break;
3746             case '\\':
3747                 un_char = 254;
3748                 if (s[1]) {
3749                     if (strchr("wds]",s[1]))
3750                         weight += 100;
3751                     else if (seen[(U8)'\''] || seen[(U8)'"'])
3752                         weight += 1;
3753                     else if (strchr("rnftbxcav",s[1]))
3754                         weight += 40;
3755                     else if (isDIGIT(s[1])) {
3756                         weight += 40;
3757                         while (s[1] && isDIGIT(s[1]))
3758                             s++;
3759                     }
3760                 }
3761                 else
3762                     weight += 100;
3763                 break;
3764             case '-':
3765                 if (s[1] == '\\')
3766                     weight += 50;
3767                 if (strchr("aA01! ",last_un_char))
3768                     weight += 30;
3769                 if (strchr("zZ79~",s[1]))
3770                     weight += 30;
3771                 if (last_un_char == 255 && (isDIGIT(s[1]) || s[1] == '$'))
3772                     weight -= 5;        /* cope with negative subscript */
3773                 break;
3774             default:
3775                 if (!isWORDCHAR(last_un_char)
3776                     && !(last_un_char == '$' || last_un_char == '@'
3777                          || last_un_char == '&')
3778                     && isALPHA(*s) && s[1] && isALPHA(s[1])) {
3779                     char *d = tmpbuf;
3780                     while (isALPHA(*s))
3781                         *d++ = *s++;
3782                     *d = '\0';
3783                     if (keyword(tmpbuf, d - tmpbuf, 0))
3784                         weight -= 150;
3785                 }
3786                 if (un_char == last_un_char + 1)
3787                     weight += 5;
3788                 weight -= seen[un_char];
3789                 break;
3790             }
3791             seen[un_char]++;
3792         }
3793         if (weight >= 0)        /* probably a character class */
3794             return FALSE;
3795     }
3796
3797     return TRUE;
3798 }
3799
3800 /*
3801  * S_intuit_method
3802  *
3803  * Does all the checking to disambiguate
3804  *   foo bar
3805  * between foo(bar) and bar->foo.  Returns 0 if not a method, otherwise
3806  * FUNCMETH (bar->foo(args)) or METHOD (bar->foo args).
3807  *
3808  * First argument is the stuff after the first token, e.g. "bar".
3809  *
3810  * Not a method if foo is a filehandle.
3811  * Not a method if foo is a subroutine prototyped to take a filehandle.
3812  * Not a method if it's really "Foo $bar"
3813  * Method if it's "foo $bar"
3814  * Not a method if it's really "print foo $bar"
3815  * Method if it's really "foo package::" (interpreted as package->foo)
3816  * Not a method if bar is known to be a subroutine ("sub bar; foo bar")
3817  * Not a method if bar is a filehandle or package, but is quoted with
3818  *   =>
3819  */
3820
3821 STATIC int
3822 S_intuit_method(pTHX_ char *start, GV *gv, CV *cv)
3823 {
3824     char *s = start + (*start == '$');
3825     char tmpbuf[sizeof PL_tokenbuf];
3826     STRLEN len;
3827     GV* indirgv;
3828
3829     PERL_ARGS_ASSERT_INTUIT_METHOD;
3830
3831     if (gv && SvTYPE(gv) == SVt_PVGV && GvIO(gv))
3832             return 0;
3833     if (cv && SvPOK(cv)) {
3834         const char *proto = CvPROTO(cv);
3835         if (proto) {
3836             while (*proto && (isSPACE(*proto) || *proto == ';'))
3837                 proto++;
3838             if (*proto == '*')
3839                 return 0;
3840         }
3841     }
3842
3843     if (*start == '$') {
3844         if (cv || PL_last_lop_op == OP_PRINT || PL_last_lop_op == OP_SAY ||
3845                 isUPPER(*PL_tokenbuf))
3846             return 0;
3847         s = PEEKSPACE(s);
3848         PL_bufptr = start;
3849         PL_expect = XREF;
3850         return *s == '(' ? FUNCMETH : METHOD;
3851     }
3852
3853     s = scan_word(s, tmpbuf, sizeof tmpbuf, TRUE, &len);
3854     /* start is the beginning of the possible filehandle/object,
3855      * and s is the end of it
3856      * tmpbuf is a copy of it (but with single quotes as double colons)
3857      */
3858
3859     if (!keyword(tmpbuf, len, 0)) {
3860         if (len > 2 && tmpbuf[len - 2] == ':' && tmpbuf[len - 1] == ':') {
3861             len -= 2;
3862             tmpbuf[len] = '\0';
3863             goto bare_package;
3864         }
3865         indirgv = gv_fetchpvn_flags(tmpbuf, len, ( UTF ? SVf_UTF8 : 0 ), SVt_PVCV);
3866         if (indirgv && GvCVu(indirgv))
3867             return 0;
3868         /* filehandle or package name makes it a method */
3869         if (!cv || GvIO(indirgv) || gv_stashpvn(tmpbuf, len, UTF ? SVf_UTF8 : 0)) {
3870             s = PEEKSPACE(s);
3871             if ((PL_bufend - s) >= 2 && *s == '=' && *(s+1) == '>')
3872                 return 0;       /* no assumptions -- "=>" quotes bareword */
3873       bare_package:
3874             NEXTVAL_NEXTTOKE.opval = (OP*)newSVOP(OP_CONST, 0,
3875                                                   S_newSV_maybe_utf8(aTHX_ tmpbuf, len));
3876             NEXTVAL_NEXTTOKE.opval->op_private = OPpCONST_BARE;
3877             PL_expect = XTERM;
3878             force_next(WORD);
3879             PL_bufptr = s;
3880             return *s == '(' ? FUNCMETH : METHOD;
3881         }
3882     }
3883     return 0;
3884 }
3885
3886 /* Encoded script support. filter_add() effectively inserts a
3887  * 'pre-processing' function into the current source input stream.
3888  * Note that the filter function only applies to the current source file
3889  * (e.g., it will not affect files 'require'd or 'use'd by this one).
3890  *
3891  * The datasv parameter (which may be NULL) can be used to pass
3892  * private data to this instance of the filter. The filter function
3893  * can recover the SV using the FILTER_DATA macro and use it to
3894  * store private buffers and state information.
3895  *
3896  * The supplied datasv parameter is upgraded to a PVIO type
3897  * and the IoDIRP/IoANY field is used to store the function pointer,
3898  * and IOf_FAKE_DIRP is enabled on datasv to mark this as such.
3899  * Note that IoTOP_NAME, IoFMT_NAME, IoBOTTOM_NAME, if set for
3900  * private use must be set using malloc'd pointers.
3901  */
3902
3903 SV *
3904 Perl_filter_add(pTHX_ filter_t funcp, SV *datasv)
3905 {
3906     if (!funcp)
3907         return NULL;
3908
3909     if (!PL_parser)
3910         return NULL;
3911
3912     if (PL_parser->lex_flags & LEX_IGNORE_UTF8_HINTS)
3913         Perl_croak(aTHX_ "Source filters apply only to byte streams");
3914
3915     if (!PL_rsfp_filters)
3916         PL_rsfp_filters = newAV();
3917     if (!datasv)
3918         datasv = newSV(0);
3919     SvUPGRADE(datasv, SVt_PVIO);
3920     IoANY(datasv) = FPTR2DPTR(void *, funcp); /* stash funcp into spare field */
3921     IoFLAGS(datasv) |= IOf_FAKE_DIRP;
3922     DEBUG_P(PerlIO_printf(Perl_debug_log, "filter_add func %p (%s)\n",
3923                           FPTR2DPTR(void *, IoANY(datasv)),
3924                           SvPV_nolen(datasv)));
3925     av_unshift(PL_rsfp_filters, 1);
3926     av_store(PL_rsfp_filters, 0, datasv) ;
3927     if (
3928         !PL_parser->filtered
3929      && PL_parser->lex_flags & LEX_EVALBYTES
3930      && PL_bufptr < PL_bufend
3931     ) {
3932         const char *s = PL_bufptr;
3933         while (s < PL_bufend) {
3934             if (*s == '\n') {
3935                 SV *linestr = PL_parser->linestr;
3936                 char *buf = SvPVX(linestr);
3937                 STRLEN const bufptr_pos = PL_parser->bufptr - buf;
3938                 STRLEN const oldbufptr_pos = PL_parser->oldbufptr - buf;
3939                 STRLEN const oldoldbufptr_pos=PL_parser->oldoldbufptr-buf;
3940                 STRLEN const linestart_pos = PL_parser->linestart - buf;
3941                 STRLEN const last_uni_pos =
3942                     PL_parser->last_uni ? PL_parser->last_uni - buf : 0;
3943                 STRLEN const last_lop_pos =
3944                     PL_parser->last_lop ? PL_parser->last_lop - buf : 0;
3945                 av_push(PL_rsfp_filters, linestr);
3946                 PL_parser->linestr = 
3947                     newSVpvn(SvPVX(linestr), ++s-SvPVX(linestr));
3948                 buf = SvPVX(PL_parser->linestr);
3949                 PL_parser->bufend = buf + SvCUR(PL_parser->linestr);
3950                 PL_parser->bufptr = buf + bufptr_pos;
3951                 PL_parser->oldbufptr = buf + oldbufptr_pos;
3952                 PL_parser->oldoldbufptr = buf + oldoldbufptr_pos;
3953                 PL_parser->linestart = buf + linestart_pos;
3954                 if (PL_parser->last_uni)
3955                     PL_parser->last_uni = buf + last_uni_pos;
3956                 if (PL_parser->last_lop)
3957                     PL_parser->last_lop = buf + last_lop_pos;
3958                 SvLEN(linestr) = SvCUR(linestr);
3959                 SvCUR(linestr) = s-SvPVX(linestr);
3960                 PL_parser->filtered = 1;
3961                 break;
3962             }
3963             s++;
3964         }
3965     }
3966     return(datasv);
3967 }
3968
3969
3970 /* Delete most recently added instance of this filter function. */
3971 void
3972 Perl_filter_del(pTHX_ filter_t funcp)
3973 {
3974     SV *datasv;
3975
3976     PERL_ARGS_ASSERT_FILTER_DEL;
3977
3978 #ifdef DEBUGGING
3979     DEBUG_P(PerlIO_printf(Perl_debug_log, "filter_del func %p",
3980                           FPTR2DPTR(void*, funcp)));
3981 #endif
3982     if (!PL_parser || !PL_rsfp_filters || AvFILLp(PL_rsfp_filters)<0)
3983         return;
3984     /* if filter is on top of stack (usual case) just pop it off */
3985     datasv = FILTER_DATA(AvFILLp(PL_rsfp_filters));
3986     if (IoANY(datasv) == FPTR2DPTR(void *, funcp)) {
3987         sv_free(av_pop(PL_rsfp_filters));
3988
3989         return;
3990     }
3991     /* we need to search for the correct entry and clear it     */
3992     Perl_die(aTHX_ "filter_del can only delete in reverse order (currently)");
3993 }
3994
3995
3996 /* Invoke the idxth filter function for the current rsfp.        */
3997 /* maxlen 0 = read one text line */
3998 I32
3999 Perl_filter_read(pTHX_ int idx, SV *buf_sv, int maxlen)
4000 {
4001     filter_t funcp;
4002     SV *datasv = NULL;
4003     /* This API is bad. It should have been using unsigned int for maxlen.
4004        Not sure if we want to change the API, but if not we should sanity
4005        check the value here.  */
4006     unsigned int correct_length = maxlen < 0 ?  PERL_INT_MAX : maxlen;
4007
4008     PERL_ARGS_ASSERT_FILTER_READ;
4009
4010     if (!PL_parser || !PL_rsfp_filters)
4011         return -1;
4012     if (idx > AvFILLp(PL_rsfp_filters)) {       /* Any more filters?    */
4013         /* Provide a default input filter to make life easy.    */
4014         /* Note that we append to the line. This is handy.      */
4015         DEBUG_P(PerlIO_printf(Perl_debug_log,
4016                               "filter_read %d: from rsfp\n", idx));
4017         if (correct_length) {
4018             /* Want a block */
4019             int len ;
4020             const int old_len = SvCUR(buf_sv);
4021
4022             /* ensure buf_sv is large enough */
4023             SvGROW(buf_sv, (STRLEN)(old_len + correct_length + 1)) ;
4024             if ((len = PerlIO_read(PL_rsfp, SvPVX(buf_sv) + old_len,
4025                                    correct_length)) <= 0) {
4026                 if (PerlIO_error(PL_rsfp))
4027                     return -1;          /* error */
4028                 else
4029                     return 0 ;          /* end of file */
4030             }
4031             SvCUR_set(buf_sv, old_len + len) ;
4032             SvPVX(buf_sv)[old_len + len] = '\0';
4033         } else {
4034             /* Want a line */
4035             if (sv_gets(buf_sv, PL_rsfp, SvCUR(buf_sv)) == NULL) {
4036                 if (PerlIO_error(PL_rsfp))
4037                     return -1;          /* error */
4038                 else
4039                     return 0 ;          /* end of file */
4040             }
4041         }
4042         return SvCUR(buf_sv);
4043     }
4044     /* Skip this filter slot if filter has been deleted */
4045     if ( (datasv = FILTER_DATA(idx)) == &PL_sv_undef) {
4046         DEBUG_P(PerlIO_printf(Perl_debug_log,
4047                               "filter_read %d: skipped (filter deleted)\n",
4048                               idx));
4049         return FILTER_READ(idx+1, buf_sv, correct_length); /* recurse */
4050     }
4051     if (SvTYPE(datasv) != SVt_PVIO) {
4052         if (correct_length) {
4053             /* Want a block */
4054             const STRLEN remainder = SvLEN(datasv) - SvCUR(datasv);
4055             if (!remainder) return 0; /* eof */
4056             if (correct_length > remainder) correct_length = remainder;
4057             sv_catpvn(buf_sv, SvEND(datasv), correct_length);
4058             SvCUR_set(datasv, SvCUR(datasv) + correct_length);
4059         } else {
4060             /* Want a line */
4061             const char *s = SvEND(datasv);
4062             const char *send = SvPVX(datasv) + SvLEN(datasv);
4063             while (s < send) {
4064                 if (*s == '\n') {
4065                     s++;
4066                     break;
4067                 }
4068                 s++;
4069             }
4070             if (s == send) return 0; /* eof */
4071             sv_catpvn(buf_sv, SvEND(datasv), s-SvEND(datasv));
4072             SvCUR_set(datasv, s-SvPVX(datasv));
4073         }
4074         return SvCUR(buf_sv);
4075     }
4076     /* Get function pointer hidden within datasv        */
4077     funcp = DPTR2FPTR(filter_t, IoANY(datasv));
4078     DEBUG_P(PerlIO_printf(Perl_debug_log,
4079                           "filter_read %d: via function %p (%s)\n",
4080                           idx, (void*)datasv, SvPV_nolen_const(datasv)));
4081     /* Call function. The function is expected to       */
4082     /* call "FILTER_READ(idx+1, buf_sv)" first.         */
4083     /* Return: <0:error, =0:eof, >0:not eof             */
4084     return (*funcp)(aTHX_ idx, buf_sv, correct_length);
4085 }
4086
4087 STATIC char *
4088 S_filter_gets(pTHX_ SV *sv, STRLEN append)
4089 {
4090     PERL_ARGS_ASSERT_FILTER_GETS;
4091
4092 #ifdef PERL_CR_FILTER
4093     if (!PL_rsfp_filters) {
4094         filter_add(S_cr_textfilter,NULL);
4095     }
4096 #endif
4097     if (PL_rsfp_filters) {
4098         if (!append)
4099             SvCUR_set(sv, 0);   /* start with empty line        */
4100         if (FILTER_READ(0, sv, 0) > 0)
4101             return ( SvPVX(sv) ) ;
4102         else
4103             return NULL ;
4104     }
4105     else
4106         return (sv_gets(sv, PL_rsfp, append));
4107 }
4108
4109 STATIC HV *
4110 S_find_in_my_stash(pTHX_ const char *pkgname, STRLEN len)
4111 {
4112     GV *gv;
4113
4114     PERL_ARGS_ASSERT_FIND_IN_MY_STASH;
4115
4116     if (len == 11 && *pkgname == '_' && strEQ(pkgname, "__PACKAGE__"))
4117         return PL_curstash;
4118
4119     if (len > 2 &&
4120         (pkgname[len - 2] == ':' && pkgname[len - 1] == ':') &&
4121         (gv = gv_fetchpvn_flags(pkgname, len, ( UTF ? SVf_UTF8 : 0 ), SVt_PVHV)))
4122     {
4123         return GvHV(gv);                        /* Foo:: */
4124     }
4125
4126     /* use constant CLASS => 'MyClass' */
4127     gv = gv_fetchpvn_flags(pkgname, len, UTF ? SVf_UTF8 : 0, SVt_PVCV);
4128     if (gv && GvCV(gv)) {
4129         SV * const sv = cv_const_sv(GvCV(gv));
4130         if (sv)
4131             pkgname = SvPV_const(sv, len);
4132     }
4133
4134     return gv_stashpvn(pkgname, len, UTF ? SVf_UTF8 : 0);
4135 }
4136
4137
4138 STATIC char *
4139 S_tokenize_use(pTHX_ int is_use, char *s) {
4140     PERL_ARGS_ASSERT_TOKENIZE_USE;
4141
4142     if (PL_expect != XSTATE)
4143         yyerror(Perl_form(aTHX_ "\"%s\" not allowed in expression",
4144                     is_use ? "use" : "no"));
4145     PL_expect = XTERM;
4146     s = SKIPSPACE1(s);
4147     if (isDIGIT(*s) || (*s == 'v' && isDIGIT(s[1]))) {
4148         s = force_version(s, TRUE);
4149         if (*s == ';' || *s == '}'
4150                 || (s = SKIPSPACE1(s), (*s == ';' || *s == '}'))) {
4151             NEXTVAL_NEXTTOKE.opval = NULL;
4152             force_next(WORD);
4153         }
4154         else if (*s == 'v') {
4155             s = force_word(s,WORD,FALSE,TRUE);
4156             s = force_version(s, FALSE);
4157         }
4158     }
4159     else {
4160         s = force_word(s,WORD,FALSE,TRUE);
4161         s = force_version(s, FALSE);
4162     }
4163     pl_yylval.ival = is_use;
4164     return s;
4165 }
4166 #ifdef DEBUGGING
4167     static const char* const exp_name[] =
4168         { "OPERATOR", "TERM", "REF", "STATE", "BLOCK", "ATTRBLOCK",
4169           "ATTRTERM", "TERMBLOCK", "XBLOCKTERM", "POSTDEREF",
4170           "TERMORDORDOR"
4171         };
4172 #endif
4173
4174 #define word_takes_any_delimeter(p,l) S_word_takes_any_delimeter(p,l)
4175 STATIC bool
4176 S_word_takes_any_delimeter(char *p, STRLEN len)
4177 {
4178     return (len == 1 && strchr("msyq", p[0])) ||
4179            (len == 2 && (
4180             (p[0] == 't' && p[1] == 'r') ||
4181             (p[0] == 'q' && strchr("qwxr", p[1]))));
4182 }
4183
4184 static void
4185 S_check_scalar_slice(pTHX_ char *s)
4186 {
4187     s++;
4188     while (*s == ' ' || *s == '\t') s++;
4189     if (*s == 'q' && s[1] == 'w'
4190      && !isWORDCHAR_lazy_if(s+2,UTF))
4191         return;
4192     while (*s && (isWORDCHAR_lazy_if(s,UTF) || strchr(" \t$#+-'\"", *s)))
4193         s += UTF ? UTF8SKIP(s) : 1;
4194     if (*s == '}' || *s == ']')
4195         pl_yylval.ival = OPpSLICEWARNING;
4196 }
4197
4198 /*
4199   yylex
4200
4201   Works out what to call the token just pulled out of the input
4202   stream.  The yacc parser takes care of taking the ops we return and
4203   stitching them into a tree.
4204
4205   Returns:
4206     The type of the next token
4207
4208   Structure:
4209       Switch based on the current state:
4210           - if we already built the token before, use it
4211           - if we have a case modifier in a string, deal with that
4212           - handle other cases of interpolation inside a string
4213           - scan the next line if we are inside a format
4214       In the normal state switch on the next character:
4215           - default:
4216             if alphabetic, go to key lookup
4217             unrecoginized character - croak
4218           - 0/4/26: handle end-of-line or EOF
4219           - cases for whitespace
4220           - \n and #: handle comments and line numbers
4221           - various operators, brackets and sigils
4222           - numbers
4223           - quotes
4224           - 'v': vstrings (or go to key lookup)
4225           - 'x' repetition operator (or go to key lookup)
4226           - other ASCII alphanumerics (key lookup begins here):
4227               word before => ?
4228               keyword plugin
4229               scan built-in keyword (but do nothing with it yet)
4230               check for statement label
4231               check for lexical subs
4232                   goto just_a_word if there is one
4233               see whether built-in keyword is overridden
4234               switch on keyword number:
4235                   - default: just_a_word:
4236                       not a built-in keyword; handle bareword lookup
4237                       disambiguate between method and sub call
4238                       fall back to bareword
4239                   - cases for built-in keywords
4240 */
4241
4242
4243 int
4244 Perl_yylex(pTHX)
4245 {
4246     dVAR;
4247     char *s = PL_bufptr;
4248     char *d;
4249     STRLEN len;
4250     bool bof = FALSE;
4251     const bool saw_infix_sigil = cBOOL(PL_parser->saw_infix_sigil);
4252     U8 formbrack = 0;
4253     U32 fake_eof = 0;
4254
4255     /* orig_keyword, gvp, and gv are initialized here because
4256      * jump to the label just_a_word_zero can bypass their
4257      * initialization later. */
4258     I32 orig_keyword = 0;
4259     GV *gv = NULL;
4260     GV **gvp = NULL;
4261
4262     DEBUG_T( {
4263         SV* tmp = newSVpvs("");
4264         PerlIO_printf(Perl_debug_log, "### %"IVdf":LEX_%s/X%s %s\n",
4265             (IV)CopLINE(PL_curcop),
4266             lex_state_names[PL_lex_state],
4267             exp_name[PL_expect],
4268             pv_display(tmp, s, strlen(s), 0, 60));
4269         SvREFCNT_dec(tmp);
4270     } );
4271
4272     switch (PL_lex_state) {
4273     case LEX_NORMAL:
4274     case LEX_INTERPNORMAL:
4275         break;
4276
4277     /* when we've already built the next token, just pull it out of the queue */
4278     case LEX_KNOWNEXT:
4279         PL_nexttoke--;
4280         pl_yylval = PL_nextval[PL_nexttoke];
4281         if (!PL_nexttoke) {
4282             PL_lex_state = PL_lex_defer;
4283             PL_expect = PL_lex_expect;
4284             PL_lex_defer = LEX_NORMAL;
4285         }
4286         {
4287             I32 next_type;
4288             next_type = PL_nexttype[PL_nexttoke];
4289             if (next_type & (7<<24)) {
4290                 if (next_type & (1<<24)) {
4291                     if (PL_lex_brackets > 100)
4292                         Renew(PL_lex_brackstack, PL_lex_brackets + 10, char);
4293                     PL_lex_brackstack[PL_lex_brackets++] =
4294                         (char) ((next_type >> 16) & 0xff);
4295                 }
4296                 if (next_type & (2<<24))
4297                     PL_lex_allbrackets++;
4298                 if (next_type & (4<<24))
4299                     PL_lex_allbrackets--;
4300                 next_type &= 0xffff;
4301             }
4302             return REPORT(next_type == 'p' ? pending_ident() : next_type);
4303         }
4304
4305     /* interpolated case modifiers like \L \U, including \Q and \E.
4306        when we get here, PL_bufptr is at the \
4307     */
4308     case LEX_INTERPCASEMOD:
4309 #ifdef DEBUGGING
4310         if (PL_bufptr != PL_bufend && *PL_bufptr != '\\')
4311             Perl_croak(aTHX_
4312                        "panic: INTERPCASEMOD bufptr=%p, bufend=%p, *bufptr=%u",
4313                        PL_bufptr, PL_bufend, *PL_bufptr);
4314 #endif
4315         /* handle \E or end of string */
4316         if (PL_bufptr == PL_bufend || PL_bufptr[1] == 'E') {
4317             /* if at a \E */
4318             if (PL_lex_casemods) {
4319                 const char oldmod = PL_lex_casestack[--PL_lex_casemods];
4320                 PL_lex_casestack[PL_lex_casemods] = '\0';
4321
4322                 if (PL_bufptr != PL_bufend
4323                     && (oldmod == 'L' || oldmod == 'U' || oldmod == 'Q'
4324                         || oldmod == 'F')) {
4325                     PL_bufptr += 2;
4326                     PL_lex_state = LEX_INTERPCONCAT;
4327                 }
4328                 PL_lex_allbrackets--;
4329                 return REPORT(')');
4330             }
4331             else if ( PL_bufptr != PL_bufend && PL_bufptr[1] == 'E' ) {
4332                /* Got an unpaired \E */
4333                Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
4334                         "Useless use of \\E");
4335             }
4336             if (PL_bufptr != PL_bufend)
4337                 PL_bufptr += 2;
4338             PL_lex_state = LEX_INTERPCONCAT;
4339             return yylex();
4340         }
4341         else {
4342             DEBUG_T({ PerlIO_printf(Perl_debug_log,
4343               "### Saw case modifier\n"); });
4344             s = PL_bufptr + 1;
4345             if (s[1] == '\\' && s[2] == 'E') {
4346                 PL_bufptr = s + 3;
4347                 PL_lex_state = LEX_INTERPCONCAT;
4348                 return yylex();
4349             }
4350             else {
4351                 I32 tmp;
4352                 if (strnEQ(s, "L\\u", 3) || strnEQ(s, "U\\l", 3))
4353                     tmp = *s, *s = s[2], s[2] = (char)tmp;      /* misordered... */
4354                 if ((*s == 'L' || *s == 'U' || *s == 'F') &&
4355                     (strchr(PL_lex_casestack, 'L')
4356                         || strchr(PL_lex_casestack, 'U')
4357                         || strchr(PL_lex_casestack, 'F'))) {
4358                     PL_lex_casestack[--PL_lex_casemods] = '\0';
4359                     PL_lex_allbrackets--;
4360                     return REPORT(')');
4361                 }
4362                 if (PL_lex_casemods > 10)
4363                     Renew(PL_lex_casestack, PL_lex_casemods + 2, char);
4364                 PL_lex_casestack[PL_lex_casemods++] = *s;
4365                 PL_lex_casestack[PL_lex_casemods] = '\0';
4366                 PL_lex_state = LEX_INTERPCONCAT;
4367                 NEXTVAL_NEXTTOKE.ival = 0;
4368                 force_next((2<<24)|'(');
4369                 if (*s == 'l')
4370                     NEXTVAL_NEXTTOKE.ival = OP_LCFIRST;
4371                 else if (*s == 'u')
4372                     NEXTVAL_NEXTTOKE.ival = OP_UCFIRST;
4373                 else if (*s == 'L')
4374                     NEXTVAL_NEXTTOKE.ival = OP_LC;
4375                 else if (*s == 'U')
4376                     NEXTVAL_NEXTTOKE.ival = OP_UC;
4377                 else if (*s == 'Q')
4378                     NEXTVAL_NEXTTOKE.ival = OP_QUOTEMETA;
4379                 else if (*s == 'F')
4380                     NEXTVAL_NEXTTOKE.ival = OP_FC;
4381                 else
4382                     Perl_croak(aTHX_ "panic: yylex, *s=%u", *s);
4383                 PL_bufptr = s + 1;
4384             }
4385             force_next(FUNC);
4386             if (PL_lex_starts) {
4387                 s = PL_bufptr;
4388                 PL_lex_starts = 0;
4389                 /* commas only at base level: /$a\Ub$c/ => ($a,uc(b.$c)) */
4390                 if (PL_lex_casemods == 1 && PL_lex_inpat)
4391                     OPERATOR(',');
4392                 else
4393                     Aop(OP_CONCAT);
4394             }
4395             else
4396                 return yylex();
4397         }
4398
4399     case LEX_INTERPPUSH:
4400         return REPORT(sublex_push());
4401
4402     c