This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
3154fc1aabd5671b40293474befa5b28f1b60a19
[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_inline.h"
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_dojoin           (PL_parser->lex_dojoin)
56 #define PL_lex_formbrack        (PL_parser->lex_formbrack)
57 #define PL_lex_inpat            (PL_parser->lex_inpat)
58 #define PL_lex_inwhat           (PL_parser->lex_inwhat)
59 #define PL_lex_op               (PL_parser->lex_op)
60 #define PL_lex_repl             (PL_parser->lex_repl)
61 #define PL_lex_starts           (PL_parser->lex_starts)
62 #define PL_lex_stuff            (PL_parser->lex_stuff)
63 #define PL_multi_start          (PL_parser->multi_start)
64 #define PL_multi_open           (PL_parser->multi_open)
65 #define PL_multi_close          (PL_parser->multi_close)
66 #define PL_preambled            (PL_parser->preambled)
67 #define PL_linestr              (PL_parser->linestr)
68 #define PL_expect               (PL_parser->expect)
69 #define PL_copline              (PL_parser->copline)
70 #define PL_bufptr               (PL_parser->bufptr)
71 #define PL_oldbufptr            (PL_parser->oldbufptr)
72 #define PL_oldoldbufptr         (PL_parser->oldoldbufptr)
73 #define PL_linestart            (PL_parser->linestart)
74 #define PL_bufend               (PL_parser->bufend)
75 #define PL_last_uni             (PL_parser->last_uni)
76 #define PL_last_lop             (PL_parser->last_lop)
77 #define PL_last_lop_op          (PL_parser->last_lop_op)
78 #define PL_lex_state            (PL_parser->lex_state)
79 #define PL_rsfp                 (PL_parser->rsfp)
80 #define PL_rsfp_filters         (PL_parser->rsfp_filters)
81 #define PL_in_my                (PL_parser->in_my)
82 #define PL_in_my_stash          (PL_parser->in_my_stash)
83 #define PL_tokenbuf             (PL_parser->tokenbuf)
84 #define PL_multi_end            (PL_parser->multi_end)
85 #define PL_error_count          (PL_parser->error_count)
86
87 #  define PL_nexttoke           (PL_parser->nexttoke)
88 #  define PL_nexttype           (PL_parser->nexttype)
89 #  define PL_nextval            (PL_parser->nextval)
90
91
92 #define SvEVALED(sv) \
93     (SvTYPE(sv) >= SVt_PVNV \
94     && ((XPVIV*)SvANY(sv))->xiv_u.xivu_eval_seen)
95
96 static const char* const ident_too_long = "Identifier too long";
97
98 #  define NEXTVAL_NEXTTOKE PL_nextval[PL_nexttoke]
99
100 #define XENUMMASK  0x3f
101 #define XFAKEEOF   0x40
102 #define XFAKEBRACK 0x80
103
104 #ifdef USE_UTF8_SCRIPTS
105 #   define UTF cBOOL(!IN_BYTES)
106 #else
107 #   define UTF cBOOL((PL_linestr && DO_UTF8(PL_linestr)) || ( !(PL_parser->lex_flags & LEX_IGNORE_UTF8_HINTS) && (PL_hints & HINT_UTF8)))
108 #endif
109
110 /* The maximum number of characters preceding the unrecognized one to display */
111 #define UNRECOGNIZED_PRECEDE_COUNT 10
112
113 /* In variables named $^X, these are the legal values for X.
114  * 1999-02-27 mjd-perl-patch@plover.com */
115 #define isCONTROLVAR(x) (isUPPER(x) || strchr("[\\]^_?", (x)))
116
117 #define SPACE_OR_TAB(c) isBLANK_A(c)
118
119 #define HEXFP_PEEK(s)     \
120     (((s[0] == '.') && \
121       (isXDIGIT(s[1]) || isALPHA_FOLD_EQ(s[1], 'p'))) || \
122      isALPHA_FOLD_EQ(s[0], 'p'))
123
124 /* LEX_* are values for PL_lex_state, the state of the lexer.
125  * They are arranged oddly so that the guard on the switch statement
126  * can get by with a single comparison (if the compiler is smart enough).
127  *
128  * These values refer to the various states within a sublex parse,
129  * i.e. within a double quotish string
130  */
131
132 /* #define LEX_NOTPARSING               11 is done in perl.h. */
133
134 #define LEX_NORMAL              10 /* normal code (ie not within "...")     */
135 #define LEX_INTERPNORMAL         9 /* code within a string, eg "$foo[$x+1]" */
136 #define LEX_INTERPCASEMOD        8 /* expecting a \U, \Q or \E etc          */
137 #define LEX_INTERPPUSH           7 /* starting a new sublex parse level     */
138 #define LEX_INTERPSTART          6 /* expecting the start of a $var         */
139
140                                    /* at end of code, eg "$x" followed by:  */
141 #define LEX_INTERPEND            5 /* ... eg not one of [, { or ->          */
142 #define LEX_INTERPENDMAYBE       4 /* ... eg one of [, { or ->              */
143
144 #define LEX_INTERPCONCAT         3 /* expecting anything, eg at start of
145                                         string or after \E, $foo, etc       */
146 #define LEX_INTERPCONST          2 /* NOT USED */
147 #define LEX_FORMLINE             1 /* expecting a format line               */
148
149
150 #ifdef DEBUGGING
151 static const char* const lex_state_names[] = {
152     "KNOWNEXT",
153     "FORMLINE",
154     "INTERPCONST",
155     "INTERPCONCAT",
156     "INTERPENDMAYBE",
157     "INTERPEND",
158     "INTERPSTART",
159     "INTERPPUSH",
160     "INTERPCASEMOD",
161     "INTERPNORMAL",
162     "NORMAL"
163 };
164 #endif
165
166 #include "keywords.h"
167
168 /* CLINE is a macro that ensures PL_copline has a sane value */
169
170 #define CLINE (PL_copline = (CopLINE(PL_curcop) < PL_copline ? CopLINE(PL_curcop) : PL_copline))
171
172 /*
173  * Convenience functions to return different tokens and prime the
174  * lexer for the next token.  They all take an argument.
175  *
176  * TOKEN        : generic token (used for '(', DOLSHARP, etc)
177  * OPERATOR     : generic operator
178  * AOPERATOR    : assignment operator
179  * PREBLOCK     : beginning the block after an if, while, foreach, ...
180  * PRETERMBLOCK : beginning a non-code-defining {} block (eg, hash ref)
181  * PREREF       : *EXPR where EXPR is not a simple identifier
182  * TERM         : expression term
183  * POSTDEREF    : postfix dereference (->$* ->@[...] etc.)
184  * LOOPX        : loop exiting command (goto, last, dump, etc)
185  * FTST         : file test operator
186  * FUN0         : zero-argument function
187  * FUN0OP       : zero-argument function, with its op created in this file
188  * FUN1         : not used, except for not, which isn't a UNIOP
189  * BOop         : bitwise or or xor
190  * BAop         : bitwise and
191  * BCop         : bitwise complement
192  * SHop         : shift operator
193  * PWop         : power operator
194  * PMop         : pattern-matching operator
195  * Aop          : addition-level operator
196  * AopNOASSIGN  : addition-level operator that is never part of .=
197  * Mop          : multiplication-level operator
198  * Eop          : equality-testing operator
199  * Rop          : relational operator <= != gt
200  *
201  * Also see LOP and lop() below.
202  */
203
204 #ifdef DEBUGGING /* Serve -DT. */
205 #   define REPORT(retval) tokereport((I32)retval, &pl_yylval)
206 #else
207 #   define REPORT(retval) (retval)
208 #endif
209
210 #define TOKEN(retval) return ( PL_bufptr = s, REPORT(retval))
211 #define OPERATOR(retval) return (PL_expect = XTERM, PL_bufptr = s, REPORT(retval))
212 #define AOPERATOR(retval) return ao((PL_expect = XTERM, PL_bufptr = s, retval))
213 #define PREBLOCK(retval) return (PL_expect = XBLOCK,PL_bufptr = s, REPORT(retval))
214 #define PRETERMBLOCK(retval) return (PL_expect = XTERMBLOCK,PL_bufptr = s, REPORT(retval))
215 #define PREREF(retval) return (PL_expect = XREF,PL_bufptr = s, REPORT(retval))
216 #define TERM(retval) return (CLINE, PL_expect = XOPERATOR, PL_bufptr = s, REPORT(retval))
217 #define POSTDEREF(f) return (PL_bufptr = s, S_postderef(aTHX_ REPORT(f),s[1]))
218 #define LOOPX(f) return (PL_bufptr = force_word(s,BAREWORD,TRUE,FALSE), \
219                          pl_yylval.ival=f, \
220                          PL_expect = PL_nexttoke ? XOPERATOR : XTERM, \
221                          REPORT((int)LOOPEX))
222 #define FTST(f)  return (pl_yylval.ival=f, PL_expect=XTERMORDORDOR, PL_bufptr=s, REPORT((int)UNIOP))
223 #define FUN0(f)  return (pl_yylval.ival=f, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC0))
224 #define FUN0OP(f)  return (pl_yylval.opval=f, CLINE, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC0OP))
225 #define FUN1(f)  return (pl_yylval.ival=f, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC1))
226 #define BOop(f)  return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)BITOROP))
227 #define BAop(f)  return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)BITANDOP))
228 #define BCop(f) return pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr = s, \
229                        REPORT('~')
230 #define SHop(f)  return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)SHIFTOP))
231 #define PWop(f)  return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)POWOP))
232 #define PMop(f)  return(pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)MATCHOP))
233 #define Aop(f)   return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)ADDOP))
234 #define AopNOASSIGN(f) return (pl_yylval.ival=f, PL_bufptr=s, REPORT((int)ADDOP))
235 #define Mop(f)   return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (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) < 0 ? -(f) : (f); \
250         if (*s == '(') \
251             return REPORT( (int)FUNC1 ); \
252         s = skipspace(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     { BAREWORD,         TOKENTYPE_OPVAL,        "BAREWORD" },
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 (isGRAPH(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 /*
468  * S_ao
469  *
470  * This subroutine looks for an '=' next to the operator that has just been
471  * parsed and turns it into an ASSIGNOP if it finds one.
472  */
473
474 STATIC int
475 S_ao(pTHX_ int toketype)
476 {
477     if (*PL_bufptr == '=') {
478         PL_bufptr++;
479         if (toketype == ANDAND)
480             pl_yylval.ival = OP_ANDASSIGN;
481         else if (toketype == OROR)
482             pl_yylval.ival = OP_ORASSIGN;
483         else if (toketype == DORDOR)
484             pl_yylval.ival = OP_DORASSIGN;
485         toketype = ASSIGNOP;
486     }
487     return REPORT(toketype);
488 }
489
490 /*
491  * S_no_op
492  * When Perl expects an operator and finds something else, no_op
493  * prints the warning.  It always prints "<something> found where
494  * operator expected.  It prints "Missing semicolon on previous line?"
495  * if the surprise occurs at the start of the line.  "do you need to
496  * predeclare ..." is printed out for code like "sub bar; foo bar $x"
497  * where the compiler doesn't know if foo is a method call or a function.
498  * It prints "Missing operator before end of line" if there's nothing
499  * after the missing operator, or "... before <...>" if there is something
500  * after the missing operator.
501  *
502  * PL_bufptr is expected to point to the start of the thing that was found,
503  * and s after the next token or partial token.
504  */
505
506 STATIC void
507 S_no_op(pTHX_ const char *const what, char *s)
508 {
509     char * const oldbp = PL_bufptr;
510     const bool is_first = (PL_oldbufptr == PL_linestart);
511
512     PERL_ARGS_ASSERT_NO_OP;
513
514     if (!s)
515         s = oldbp;
516     else
517         PL_bufptr = s;
518     yywarn(Perl_form(aTHX_ "%s found where operator expected", what), UTF ? SVf_UTF8 : 0);
519     if (ckWARN_d(WARN_SYNTAX)) {
520         if (is_first)
521             Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
522                     "\t(Missing semicolon on previous line?)\n");
523         else if (PL_oldoldbufptr && isIDFIRST_lazy_if_safe(PL_oldoldbufptr,
524                                                            PL_bufend,
525                                                            UTF))
526         {
527             const char *t;
528             for (t = PL_oldoldbufptr;
529                  (isWORDCHAR_lazy_if_safe(t, PL_bufend, UTF) || *t == ':');
530                  t += UTF ? UTF8SKIP(t) : 1)
531             {
532                 NOOP;
533             }
534             if (t < PL_bufptr && isSPACE(*t))
535                 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
536                         "\t(Do you need to predeclare %" UTF8f "?)\n",
537                       UTF8fARG(UTF, t - PL_oldoldbufptr, PL_oldoldbufptr));
538         }
539         else {
540             assert(s >= oldbp);
541             Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
542                     "\t(Missing operator before %" UTF8f "?)\n",
543                      UTF8fARG(UTF, s - oldbp, oldbp));
544         }
545     }
546     PL_bufptr = oldbp;
547 }
548
549 /*
550  * S_missingterm
551  * Complain about missing quote/regexp/heredoc terminator.
552  * If it's called with NULL then it cauterizes the line buffer.
553  * If we're in a delimited string and the delimiter is a control
554  * character, it's reformatted into a two-char sequence like ^C.
555  * This is fatal.
556  */
557
558 STATIC void
559 S_missingterm(pTHX_ char *s)
560 {
561     char tmpbuf[UTF8_MAXBYTES + 1];
562     char q;
563     bool uni = FALSE;
564     SV *sv;
565     if (s) {
566         char * const nl = strrchr(s,'\n');
567         if (nl)
568             *nl = '\0';
569         uni = UTF;
570     }
571     else if (PL_multi_close < 32) {
572         *tmpbuf = '^';
573         tmpbuf[1] = (char)toCTRL(PL_multi_close);
574         tmpbuf[2] = '\0';
575         s = tmpbuf;
576     }
577     else {
578         if (LIKELY(PL_multi_close < 256)) {
579             *tmpbuf = (char)PL_multi_close;
580             tmpbuf[1] = '\0';
581         }
582         else {
583             uni = TRUE;
584             *uvchr_to_utf8((U8 *)tmpbuf, PL_multi_close) = 0;
585         }
586         s = tmpbuf;
587     }
588     q = strchr(s,'"') ? '\'' : '"';
589     sv = sv_2mortal(newSVpv(s,0));
590     if (uni)
591         SvUTF8_on(sv);
592     Perl_croak(aTHX_ "Can't find string terminator %c%" SVf
593                      "%c anywhere before EOF",q,SVfARG(sv),q);
594 }
595
596 #include "feature.h"
597
598 /*
599  * Check whether the named feature is enabled.
600  */
601 bool
602 Perl_feature_is_enabled(pTHX_ const char *const name, STRLEN namelen)
603 {
604     char he_name[8 + MAX_FEATURE_LEN] = "feature_";
605
606     PERL_ARGS_ASSERT_FEATURE_IS_ENABLED;
607
608     assert(CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_CUSTOM);
609
610     if (namelen > MAX_FEATURE_LEN)
611         return FALSE;
612     memcpy(&he_name[8], name, namelen);
613
614     return cBOOL(cop_hints_fetch_pvn(PL_curcop, he_name, 8 + namelen, 0,
615                                      REFCOUNTED_HE_EXISTS));
616 }
617
618 /*
619  * experimental text filters for win32 carriage-returns, utf16-to-utf8 and
620  * utf16-to-utf8-reversed.
621  */
622
623 #ifdef PERL_CR_FILTER
624 static void
625 strip_return(SV *sv)
626 {
627     const char *s = SvPVX_const(sv);
628     const char * const e = s + SvCUR(sv);
629
630     PERL_ARGS_ASSERT_STRIP_RETURN;
631
632     /* outer loop optimized to do nothing if there are no CR-LFs */
633     while (s < e) {
634         if (*s++ == '\r' && *s == '\n') {
635             /* hit a CR-LF, need to copy the rest */
636             char *d = s - 1;
637             *d++ = *s++;
638             while (s < e) {
639                 if (*s == '\r' && s[1] == '\n')
640                     s++;
641                 *d++ = *s++;
642             }
643             SvCUR(sv) -= s - d;
644             return;
645         }
646     }
647 }
648
649 STATIC I32
650 S_cr_textfilter(pTHX_ int idx, SV *sv, int maxlen)
651 {
652     const I32 count = FILTER_READ(idx+1, sv, maxlen);
653     if (count > 0 && !maxlen)
654         strip_return(sv);
655     return count;
656 }
657 #endif
658
659 /*
660 =for apidoc Amx|void|lex_start|SV *line|PerlIO *rsfp|U32 flags
661
662 Creates and initialises a new lexer/parser state object, supplying
663 a context in which to lex and parse from a new source of Perl code.
664 A pointer to the new state object is placed in L</PL_parser>.  An entry
665 is made on the save stack so that upon unwinding, the new state object
666 will be destroyed and the former value of L</PL_parser> will be restored.
667 Nothing else need be done to clean up the parsing context.
668
669 The code to be parsed comes from C<line> and C<rsfp>.  C<line>, if
670 non-null, provides a string (in SV form) containing code to be parsed.
671 A copy of the string is made, so subsequent modification of C<line>
672 does not affect parsing.  C<rsfp>, if non-null, provides an input stream
673 from which code will be read to be parsed.  If both are non-null, the
674 code in C<line> comes first and must consist of complete lines of input,
675 and C<rsfp> supplies the remainder of the source.
676
677 The C<flags> parameter is reserved for future use.  Currently it is only
678 used by perl internally, so extensions should always pass zero.
679
680 =cut
681 */
682
683 /* LEX_START_SAME_FILTER indicates that this is not a new file, so it
684    can share filters with the current parser.
685    LEX_START_DONT_CLOSE indicates that the file handle wasn't opened by the
686    caller, hence isn't owned by the parser, so shouldn't be closed on parser
687    destruction. This is used to handle the case of defaulting to reading the
688    script from the standard input because no filename was given on the command
689    line (without getting confused by situation where STDIN has been closed, so
690    the script handle is opened on fd 0)  */
691
692 void
693 Perl_lex_start(pTHX_ SV *line, PerlIO *rsfp, U32 flags)
694 {
695     const char *s = NULL;
696     yy_parser *parser, *oparser;
697
698     if (flags && flags & ~LEX_START_FLAGS)
699         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_start");
700
701     /* create and initialise a parser */
702
703     Newxz(parser, 1, yy_parser);
704     parser->old_parser = oparser = PL_parser;
705     PL_parser = parser;
706
707     parser->stack = NULL;
708     parser->stack_max1 = NULL;
709     parser->ps = NULL;
710
711     /* on scope exit, free this parser and restore any outer one */
712     SAVEPARSER(parser);
713     parser->saved_curcop = PL_curcop;
714
715     /* initialise lexer state */
716
717     parser->nexttoke = 0;
718     parser->error_count = oparser ? oparser->error_count : 0;
719     parser->copline = parser->preambling = NOLINE;
720     parser->lex_state = LEX_NORMAL;
721     parser->expect = XSTATE;
722     parser->rsfp = rsfp;
723     parser->recheck_utf8_validity = FALSE;
724     parser->rsfp_filters =
725       !(flags & LEX_START_SAME_FILTER) || !oparser
726         ? NULL
727         : MUTABLE_AV(SvREFCNT_inc(
728             oparser->rsfp_filters
729              ? oparser->rsfp_filters
730              : (oparser->rsfp_filters = newAV())
731           ));
732
733     Newx(parser->lex_brackstack, 120, char);
734     Newx(parser->lex_casestack, 12, char);
735     *parser->lex_casestack = '\0';
736     Newxz(parser->lex_shared, 1, LEXSHARED);
737
738     if (line) {
739         STRLEN len;
740         const U8* first_bad_char_loc;
741
742         s = SvPV_const(line, len);
743
744         if (   SvUTF8(line)
745             && UNLIKELY(! is_utf8_string_loc((U8 *) s,
746                                              SvCUR(line),
747                                              &first_bad_char_loc)))
748         {
749             _force_out_malformed_utf8_message(first_bad_char_loc,
750                                               (U8 *) s + SvCUR(line),
751                                               0,
752                                               1 /* 1 means die */ );
753             NOT_REACHED; /* NOTREACHED */
754         }
755
756         parser->linestr = flags & LEX_START_COPIED
757                             ? SvREFCNT_inc_simple_NN(line)
758                             : newSVpvn_flags(s, len, SvUTF8(line));
759         if (!rsfp)
760             sv_catpvs(parser->linestr, "\n;");
761     } else {
762         parser->linestr = newSVpvn("\n;", rsfp ? 1 : 2);
763     }
764
765     parser->oldoldbufptr =
766         parser->oldbufptr =
767         parser->bufptr =
768         parser->linestart = SvPVX(parser->linestr);
769     parser->bufend = parser->bufptr + SvCUR(parser->linestr);
770     parser->last_lop = parser->last_uni = NULL;
771
772     STATIC_ASSERT_STMT(FITS_IN_8_BITS(LEX_IGNORE_UTF8_HINTS|LEX_EVALBYTES
773                                                         |LEX_DONT_CLOSE_RSFP));
774     parser->lex_flags = (U8) (flags & (LEX_IGNORE_UTF8_HINTS|LEX_EVALBYTES
775                                                         |LEX_DONT_CLOSE_RSFP));
776
777     parser->in_pod = parser->filtered = 0;
778 }
779
780
781 /* delete a parser object */
782
783 void
784 Perl_parser_free(pTHX_  const yy_parser *parser)
785 {
786     PERL_ARGS_ASSERT_PARSER_FREE;
787
788     PL_curcop = parser->saved_curcop;
789     SvREFCNT_dec(parser->linestr);
790
791     if (PL_parser->lex_flags & LEX_DONT_CLOSE_RSFP)
792         PerlIO_clearerr(parser->rsfp);
793     else if (parser->rsfp && (!parser->old_parser
794           || (parser->old_parser && parser->rsfp != parser->old_parser->rsfp)))
795         PerlIO_close(parser->rsfp);
796     SvREFCNT_dec(parser->rsfp_filters);
797     SvREFCNT_dec(parser->lex_stuff);
798     SvREFCNT_dec(parser->lex_sub_repl);
799
800     Safefree(parser->lex_brackstack);
801     Safefree(parser->lex_casestack);
802     Safefree(parser->lex_shared);
803     PL_parser = parser->old_parser;
804     Safefree(parser);
805 }
806
807 void
808 Perl_parser_free_nexttoke_ops(pTHX_  yy_parser *parser, OPSLAB *slab)
809 {
810     I32 nexttoke = parser->nexttoke;
811     PERL_ARGS_ASSERT_PARSER_FREE_NEXTTOKE_OPS;
812     while (nexttoke--) {
813         if (S_is_opval_token(parser->nexttype[nexttoke] & 0xffff)
814          && parser->nextval[nexttoke].opval
815          && parser->nextval[nexttoke].opval->op_slabbed
816          && OpSLAB(parser->nextval[nexttoke].opval) == slab) {
817             op_free(parser->nextval[nexttoke].opval);
818             parser->nextval[nexttoke].opval = NULL;
819         }
820     }
821 }
822
823
824 /*
825 =for apidoc AmxU|SV *|PL_parser-E<gt>linestr
826
827 Buffer scalar containing the chunk currently under consideration of the
828 text currently being lexed.  This is always a plain string scalar (for
829 which C<SvPOK> is true).  It is not intended to be used as a scalar by
830 normal scalar means; instead refer to the buffer directly by the pointer
831 variables described below.
832
833 The lexer maintains various C<char*> pointers to things in the
834 C<PL_parser-E<gt>linestr> buffer.  If C<PL_parser-E<gt>linestr> is ever
835 reallocated, all of these pointers must be updated.  Don't attempt to
836 do this manually, but rather use L</lex_grow_linestr> if you need to
837 reallocate the buffer.
838
839 The content of the text chunk in the buffer is commonly exactly one
840 complete line of input, up to and including a newline terminator,
841 but there are situations where it is otherwise.  The octets of the
842 buffer may be intended to be interpreted as either UTF-8 or Latin-1.
843 The function L</lex_bufutf8> tells you which.  Do not use the C<SvUTF8>
844 flag on this scalar, which may disagree with it.
845
846 For direct examination of the buffer, the variable
847 L</PL_parser-E<gt>bufend> points to the end of the buffer.  The current
848 lexing position is pointed to by L</PL_parser-E<gt>bufptr>.  Direct use
849 of these pointers is usually preferable to examination of the scalar
850 through normal scalar means.
851
852 =for apidoc AmxU|char *|PL_parser-E<gt>bufend
853
854 Direct pointer to the end of the chunk of text currently being lexed, the
855 end of the lexer buffer.  This is equal to C<SvPVX(PL_parser-E<gt>linestr)
856 + SvCUR(PL_parser-E<gt>linestr)>.  A C<NUL> character (zero octet) is
857 always located at the end of the buffer, and does not count as part of
858 the buffer's contents.
859
860 =for apidoc AmxU|char *|PL_parser-E<gt>bufptr
861
862 Points to the current position of lexing inside the lexer buffer.
863 Characters around this point may be freely examined, within
864 the range delimited by C<SvPVX(L</PL_parser-E<gt>linestr>)> and
865 L</PL_parser-E<gt>bufend>.  The octets of the buffer may be intended to be
866 interpreted as either UTF-8 or Latin-1, as indicated by L</lex_bufutf8>.
867
868 Lexing code (whether in the Perl core or not) moves this pointer past
869 the characters that it consumes.  It is also expected to perform some
870 bookkeeping whenever a newline character is consumed.  This movement
871 can be more conveniently performed by the function L</lex_read_to>,
872 which handles newlines appropriately.
873
874 Interpretation of the buffer's octets can be abstracted out by
875 using the slightly higher-level functions L</lex_peek_unichar> and
876 L</lex_read_unichar>.
877
878 =for apidoc AmxU|char *|PL_parser-E<gt>linestart
879
880 Points to the start of the current line inside the lexer buffer.
881 This is useful for indicating at which column an error occurred, and
882 not much else.  This must be updated by any lexing code that consumes
883 a newline; the function L</lex_read_to> handles this detail.
884
885 =cut
886 */
887
888 /*
889 =for apidoc Amx|bool|lex_bufutf8
890
891 Indicates whether the octets in the lexer buffer
892 (L</PL_parser-E<gt>linestr>) should be interpreted as the UTF-8 encoding
893 of Unicode characters.  If not, they should be interpreted as Latin-1
894 characters.  This is analogous to the C<SvUTF8> flag for scalars.
895
896 In UTF-8 mode, it is not guaranteed that the lexer buffer actually
897 contains valid UTF-8.  Lexing code must be robust in the face of invalid
898 encoding.
899
900 The actual C<SvUTF8> flag of the L</PL_parser-E<gt>linestr> scalar
901 is significant, but not the whole story regarding the input character
902 encoding.  Normally, when a file is being read, the scalar contains octets
903 and its C<SvUTF8> flag is off, but the octets should be interpreted as
904 UTF-8 if the C<use utf8> pragma is in effect.  During a string eval,
905 however, the scalar may have the C<SvUTF8> flag on, and in this case its
906 octets should be interpreted as UTF-8 unless the C<use bytes> pragma
907 is in effect.  This logic may change in the future; use this function
908 instead of implementing the logic yourself.
909
910 =cut
911 */
912
913 bool
914 Perl_lex_bufutf8(pTHX)
915 {
916     return UTF;
917 }
918
919 /*
920 =for apidoc Amx|char *|lex_grow_linestr|STRLEN len
921
922 Reallocates the lexer buffer (L</PL_parser-E<gt>linestr>) to accommodate
923 at least C<len> octets (including terminating C<NUL>).  Returns a
924 pointer to the reallocated buffer.  This is necessary before making
925 any direct modification of the buffer that would increase its length.
926 L</lex_stuff_pvn> provides a more convenient way to insert text into
927 the buffer.
928
929 Do not use C<SvGROW> or C<sv_grow> directly on C<PL_parser-E<gt>linestr>;
930 this function updates all of the lexer's variables that point directly
931 into the buffer.
932
933 =cut
934 */
935
936 char *
937 Perl_lex_grow_linestr(pTHX_ STRLEN len)
938 {
939     SV *linestr;
940     char *buf;
941     STRLEN bufend_pos, bufptr_pos, oldbufptr_pos, oldoldbufptr_pos;
942     STRLEN linestart_pos, last_uni_pos, last_lop_pos, re_eval_start_pos;
943     bool current;
944
945     linestr = PL_parser->linestr;
946     buf = SvPVX(linestr);
947     if (len <= SvLEN(linestr))
948         return buf;
949
950     /* Is the lex_shared linestr SV the same as the current linestr SV?
951      * Only in this case does re_eval_start need adjusting, since it
952      * points within lex_shared->ls_linestr's buffer */
953     current = (   !PL_parser->lex_shared->ls_linestr
954                || linestr == PL_parser->lex_shared->ls_linestr);
955
956     bufend_pos = PL_parser->bufend - buf;
957     bufptr_pos = PL_parser->bufptr - buf;
958     oldbufptr_pos = PL_parser->oldbufptr - buf;
959     oldoldbufptr_pos = PL_parser->oldoldbufptr - buf;
960     linestart_pos = PL_parser->linestart - buf;
961     last_uni_pos = PL_parser->last_uni ? PL_parser->last_uni - buf : 0;
962     last_lop_pos = PL_parser->last_lop ? PL_parser->last_lop - buf : 0;
963     re_eval_start_pos = (current && PL_parser->lex_shared->re_eval_start) ?
964                             PL_parser->lex_shared->re_eval_start - buf : 0;
965
966     buf = sv_grow(linestr, len);
967
968     PL_parser->bufend = buf + bufend_pos;
969     PL_parser->bufptr = buf + bufptr_pos;
970     PL_parser->oldbufptr = buf + oldbufptr_pos;
971     PL_parser->oldoldbufptr = buf + oldoldbufptr_pos;
972     PL_parser->linestart = buf + linestart_pos;
973     if (PL_parser->last_uni)
974         PL_parser->last_uni = buf + last_uni_pos;
975     if (PL_parser->last_lop)
976         PL_parser->last_lop = buf + last_lop_pos;
977     if (current && PL_parser->lex_shared->re_eval_start)
978         PL_parser->lex_shared->re_eval_start  = buf + re_eval_start_pos;
979     return buf;
980 }
981
982 /*
983 =for apidoc Amx|void|lex_stuff_pvn|const char *pv|STRLEN len|U32 flags
984
985 Insert characters into the lexer buffer (L</PL_parser-E<gt>linestr>),
986 immediately after the current lexing point (L</PL_parser-E<gt>bufptr>),
987 reallocating the buffer if necessary.  This means that lexing code that
988 runs later will see the characters as if they had appeared in the input.
989 It is not recommended to do this as part of normal parsing, and most
990 uses of this facility run the risk of the inserted characters being
991 interpreted in an unintended manner.
992
993 The string to be inserted is represented by C<len> octets starting
994 at C<pv>.  These octets are interpreted as either UTF-8 or Latin-1,
995 according to whether the C<LEX_STUFF_UTF8> flag is set in C<flags>.
996 The characters are recoded for the lexer buffer, according to how the
997 buffer is currently being interpreted (L</lex_bufutf8>).  If a string
998 to be inserted is available as a Perl scalar, the L</lex_stuff_sv>
999 function is more convenient.
1000
1001 =cut
1002 */
1003
1004 void
1005 Perl_lex_stuff_pvn(pTHX_ const char *pv, STRLEN len, U32 flags)
1006 {
1007     dVAR;
1008     char *bufptr;
1009     PERL_ARGS_ASSERT_LEX_STUFF_PVN;
1010     if (flags & ~(LEX_STUFF_UTF8))
1011         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_stuff_pvn");
1012     if (UTF) {
1013         if (flags & LEX_STUFF_UTF8) {
1014             goto plain_copy;
1015         } else {
1016             STRLEN highhalf = 0;    /* Count of variants */
1017             const char *p, *e = pv+len;
1018             for (p = pv; p != e; p++) {
1019                 if (! UTF8_IS_INVARIANT(*p)) {
1020                     highhalf++;
1021                 }
1022             }
1023             if (!highhalf)
1024                 goto plain_copy;
1025             lex_grow_linestr(SvCUR(PL_parser->linestr)+1+len+highhalf);
1026             bufptr = PL_parser->bufptr;
1027             Move(bufptr, bufptr+len+highhalf, PL_parser->bufend+1-bufptr, char);
1028             SvCUR_set(PL_parser->linestr,
1029                 SvCUR(PL_parser->linestr) + len+highhalf);
1030             PL_parser->bufend += len+highhalf;
1031             for (p = pv; p != e; p++) {
1032                 U8 c = (U8)*p;
1033                 if (! UTF8_IS_INVARIANT(c)) {
1034                     *bufptr++ = UTF8_TWO_BYTE_HI(c);
1035                     *bufptr++ = UTF8_TWO_BYTE_LO(c);
1036                 } else {
1037                     *bufptr++ = (char)c;
1038                 }
1039             }
1040         }
1041     } else {
1042         if (flags & LEX_STUFF_UTF8) {
1043             STRLEN highhalf = 0;
1044             const char *p, *e = pv+len;
1045             for (p = pv; p != e; p++) {
1046                 U8 c = (U8)*p;
1047                 if (UTF8_IS_ABOVE_LATIN1(c)) {
1048                     Perl_croak(aTHX_ "Lexing code attempted to stuff "
1049                                 "non-Latin-1 character into Latin-1 input");
1050                 } else if (UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(p, e)) {
1051                     p++;
1052                     highhalf++;
1053                 } else assert(UTF8_IS_INVARIANT(c));
1054             }
1055             if (!highhalf)
1056                 goto plain_copy;
1057             lex_grow_linestr(SvCUR(PL_parser->linestr)+1+len-highhalf);
1058             bufptr = PL_parser->bufptr;
1059             Move(bufptr, bufptr+len-highhalf, PL_parser->bufend+1-bufptr, char);
1060             SvCUR_set(PL_parser->linestr,
1061                 SvCUR(PL_parser->linestr) + len-highhalf);
1062             PL_parser->bufend += len-highhalf;
1063             p = pv;
1064             while (p < e) {
1065                 if (UTF8_IS_INVARIANT(*p)) {
1066                     *bufptr++ = *p;
1067                     p++;
1068                 }
1069                 else {
1070                     assert(p < e -1 );
1071                     *bufptr++ = EIGHT_BIT_UTF8_TO_NATIVE(*p, *(p+1));
1072                     p += 2;
1073                 }
1074             }
1075         } else {
1076           plain_copy:
1077             lex_grow_linestr(SvCUR(PL_parser->linestr)+1+len);
1078             bufptr = PL_parser->bufptr;
1079             Move(bufptr, bufptr+len, PL_parser->bufend+1-bufptr, char);
1080             SvCUR_set(PL_parser->linestr, SvCUR(PL_parser->linestr) + len);
1081             PL_parser->bufend += len;
1082             Copy(pv, bufptr, len, char);
1083         }
1084     }
1085 }
1086
1087 /*
1088 =for apidoc Amx|void|lex_stuff_pv|const char *pv|U32 flags
1089
1090 Insert characters into the lexer buffer (L</PL_parser-E<gt>linestr>),
1091 immediately after the current lexing point (L</PL_parser-E<gt>bufptr>),
1092 reallocating the buffer if necessary.  This means that lexing code that
1093 runs later will see the characters as if they had appeared in the input.
1094 It is not recommended to do this as part of normal parsing, and most
1095 uses of this facility run the risk of the inserted characters being
1096 interpreted in an unintended manner.
1097
1098 The string to be inserted is represented by octets starting at C<pv>
1099 and continuing to the first nul.  These octets are interpreted as either
1100 UTF-8 or Latin-1, according to whether the C<LEX_STUFF_UTF8> flag is set
1101 in C<flags>.  The characters are recoded for the lexer buffer, according
1102 to how the buffer is currently being interpreted (L</lex_bufutf8>).
1103 If it is not convenient to nul-terminate a string to be inserted, the
1104 L</lex_stuff_pvn> function is more appropriate.
1105
1106 =cut
1107 */
1108
1109 void
1110 Perl_lex_stuff_pv(pTHX_ const char *pv, U32 flags)
1111 {
1112     PERL_ARGS_ASSERT_LEX_STUFF_PV;
1113     lex_stuff_pvn(pv, strlen(pv), flags);
1114 }
1115
1116 /*
1117 =for apidoc Amx|void|lex_stuff_sv|SV *sv|U32 flags
1118
1119 Insert characters into the lexer buffer (L</PL_parser-E<gt>linestr>),
1120 immediately after the current lexing point (L</PL_parser-E<gt>bufptr>),
1121 reallocating the buffer if necessary.  This means that lexing code that
1122 runs later will see the characters as if they had appeared in the input.
1123 It is not recommended to do this as part of normal parsing, and most
1124 uses of this facility run the risk of the inserted characters being
1125 interpreted in an unintended manner.
1126
1127 The string to be inserted is the string value of C<sv>.  The characters
1128 are recoded for the lexer buffer, according to how the buffer is currently
1129 being interpreted (L</lex_bufutf8>).  If a string to be inserted is
1130 not already a Perl scalar, the L</lex_stuff_pvn> function avoids the
1131 need to construct a scalar.
1132
1133 =cut
1134 */
1135
1136 void
1137 Perl_lex_stuff_sv(pTHX_ SV *sv, U32 flags)
1138 {
1139     char *pv;
1140     STRLEN len;
1141     PERL_ARGS_ASSERT_LEX_STUFF_SV;
1142     if (flags)
1143         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_stuff_sv");
1144     pv = SvPV(sv, len);
1145     lex_stuff_pvn(pv, len, flags | (SvUTF8(sv) ? LEX_STUFF_UTF8 : 0));
1146 }
1147
1148 /*
1149 =for apidoc Amx|void|lex_unstuff|char *ptr
1150
1151 Discards text about to be lexed, from L</PL_parser-E<gt>bufptr> up to
1152 C<ptr>.  Text following C<ptr> will be moved, and the buffer shortened.
1153 This hides the discarded text from any lexing code that runs later,
1154 as if the text had never appeared.
1155
1156 This is not the normal way to consume lexed text.  For that, use
1157 L</lex_read_to>.
1158
1159 =cut
1160 */
1161
1162 void
1163 Perl_lex_unstuff(pTHX_ char *ptr)
1164 {
1165     char *buf, *bufend;
1166     STRLEN unstuff_len;
1167     PERL_ARGS_ASSERT_LEX_UNSTUFF;
1168     buf = PL_parser->bufptr;
1169     if (ptr < buf)
1170         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_unstuff");
1171     if (ptr == buf)
1172         return;
1173     bufend = PL_parser->bufend;
1174     if (ptr > bufend)
1175         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_unstuff");
1176     unstuff_len = ptr - buf;
1177     Move(ptr, buf, bufend+1-ptr, char);
1178     SvCUR_set(PL_parser->linestr, SvCUR(PL_parser->linestr) - unstuff_len);
1179     PL_parser->bufend = bufend - unstuff_len;
1180 }
1181
1182 /*
1183 =for apidoc Amx|void|lex_read_to|char *ptr
1184
1185 Consume text in the lexer buffer, from L</PL_parser-E<gt>bufptr> up
1186 to C<ptr>.  This advances L</PL_parser-E<gt>bufptr> to match C<ptr>,
1187 performing the correct bookkeeping whenever a newline character is passed.
1188 This is the normal way to consume lexed text.
1189
1190 Interpretation of the buffer's octets can be abstracted out by
1191 using the slightly higher-level functions L</lex_peek_unichar> and
1192 L</lex_read_unichar>.
1193
1194 =cut
1195 */
1196
1197 void
1198 Perl_lex_read_to(pTHX_ char *ptr)
1199 {
1200     char *s;
1201     PERL_ARGS_ASSERT_LEX_READ_TO;
1202     s = PL_parser->bufptr;
1203     if (ptr < s || ptr > PL_parser->bufend)
1204         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_read_to");
1205     for (; s != ptr; s++)
1206         if (*s == '\n') {
1207             COPLINE_INC_WITH_HERELINES;
1208             PL_parser->linestart = s+1;
1209         }
1210     PL_parser->bufptr = ptr;
1211 }
1212
1213 /*
1214 =for apidoc Amx|void|lex_discard_to|char *ptr
1215
1216 Discards the first part of the L</PL_parser-E<gt>linestr> buffer,
1217 up to C<ptr>.  The remaining content of the buffer will be moved, and
1218 all pointers into the buffer updated appropriately.  C<ptr> must not
1219 be later in the buffer than the position of L</PL_parser-E<gt>bufptr>:
1220 it is not permitted to discard text that has yet to be lexed.
1221
1222 Normally it is not necessarily to do this directly, because it suffices to
1223 use the implicit discarding behaviour of L</lex_next_chunk> and things
1224 based on it.  However, if a token stretches across multiple lines,
1225 and the lexing code has kept multiple lines of text in the buffer for
1226 that purpose, then after completion of the token it would be wise to
1227 explicitly discard the now-unneeded earlier lines, to avoid future
1228 multi-line tokens growing the buffer without bound.
1229
1230 =cut
1231 */
1232
1233 void
1234 Perl_lex_discard_to(pTHX_ char *ptr)
1235 {
1236     char *buf;
1237     STRLEN discard_len;
1238     PERL_ARGS_ASSERT_LEX_DISCARD_TO;
1239     buf = SvPVX(PL_parser->linestr);
1240     if (ptr < buf)
1241         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_discard_to");
1242     if (ptr == buf)
1243         return;
1244     if (ptr > PL_parser->bufptr)
1245         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_discard_to");
1246     discard_len = ptr - buf;
1247     if (PL_parser->oldbufptr < ptr)
1248         PL_parser->oldbufptr = ptr;
1249     if (PL_parser->oldoldbufptr < ptr)
1250         PL_parser->oldoldbufptr = ptr;
1251     if (PL_parser->last_uni && PL_parser->last_uni < ptr)
1252         PL_parser->last_uni = NULL;
1253     if (PL_parser->last_lop && PL_parser->last_lop < ptr)
1254         PL_parser->last_lop = NULL;
1255     Move(ptr, buf, PL_parser->bufend+1-ptr, char);
1256     SvCUR_set(PL_parser->linestr, SvCUR(PL_parser->linestr) - discard_len);
1257     PL_parser->bufend -= discard_len;
1258     PL_parser->bufptr -= discard_len;
1259     PL_parser->oldbufptr -= discard_len;
1260     PL_parser->oldoldbufptr -= discard_len;
1261     if (PL_parser->last_uni)
1262         PL_parser->last_uni -= discard_len;
1263     if (PL_parser->last_lop)
1264         PL_parser->last_lop -= discard_len;
1265 }
1266
1267 void
1268 Perl_notify_parser_that_changed_to_utf8(pTHX)
1269 {
1270     /* Called when $^H is changed to indicate that HINT_UTF8 has changed from
1271      * off to on.  At compile time, this has the effect of entering a 'use
1272      * utf8' section.  This means that any input was not previously checked for
1273      * UTF-8 (because it was off), but now we do need to check it, or our
1274      * assumptions about the input being sane could be wrong, and we could
1275      * segfault.  This routine just sets a flag so that the next time we look
1276      * at the input we do the well-formed UTF-8 check.  If we aren't in the
1277      * proper phase, there may not be a parser object, but if there is, setting
1278      * the flag is harmless */
1279
1280     if (PL_parser) {
1281         PL_parser->recheck_utf8_validity = TRUE;
1282     }
1283 }
1284
1285 /*
1286 =for apidoc Amx|bool|lex_next_chunk|U32 flags
1287
1288 Reads in the next chunk of text to be lexed, appending it to
1289 L</PL_parser-E<gt>linestr>.  This should be called when lexing code has
1290 looked to the end of the current chunk and wants to know more.  It is
1291 usual, but not necessary, for lexing to have consumed the entirety of
1292 the current chunk at this time.
1293
1294 If L</PL_parser-E<gt>bufptr> is pointing to the very end of the current
1295 chunk (i.e., the current chunk has been entirely consumed), normally the
1296 current chunk will be discarded at the same time that the new chunk is
1297 read in.  If C<flags> has the C<LEX_KEEP_PREVIOUS> bit set, the current chunk
1298 will not be discarded.  If the current chunk has not been entirely
1299 consumed, then it will not be discarded regardless of the flag.
1300
1301 Returns true if some new text was added to the buffer, or false if the
1302 buffer has reached the end of the input text.
1303
1304 =cut
1305 */
1306
1307 #define LEX_FAKE_EOF 0x80000000
1308 #define LEX_NO_TERM  0x40000000 /* here-doc */
1309
1310 bool
1311 Perl_lex_next_chunk(pTHX_ U32 flags)
1312 {
1313     SV *linestr;
1314     char *buf;
1315     STRLEN old_bufend_pos, new_bufend_pos;
1316     STRLEN bufptr_pos, oldbufptr_pos, oldoldbufptr_pos;
1317     STRLEN linestart_pos, last_uni_pos, last_lop_pos;
1318     bool got_some_for_debugger = 0;
1319     bool got_some;
1320
1321     if (flags & ~(LEX_KEEP_PREVIOUS|LEX_FAKE_EOF|LEX_NO_TERM))
1322         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_next_chunk");
1323     if (!(flags & LEX_NO_TERM) && PL_lex_inwhat)
1324         return FALSE;
1325     linestr = PL_parser->linestr;
1326     buf = SvPVX(linestr);
1327     if (!(flags & LEX_KEEP_PREVIOUS)
1328           && PL_parser->bufptr == PL_parser->bufend)
1329     {
1330         old_bufend_pos = bufptr_pos = oldbufptr_pos = oldoldbufptr_pos = 0;
1331         linestart_pos = 0;
1332         if (PL_parser->last_uni != PL_parser->bufend)
1333             PL_parser->last_uni = NULL;
1334         if (PL_parser->last_lop != PL_parser->bufend)
1335             PL_parser->last_lop = NULL;
1336         last_uni_pos = last_lop_pos = 0;
1337         *buf = 0;
1338         SvCUR(linestr) = 0;
1339     } else {
1340         old_bufend_pos = PL_parser->bufend - buf;
1341         bufptr_pos = PL_parser->bufptr - buf;
1342         oldbufptr_pos = PL_parser->oldbufptr - buf;
1343         oldoldbufptr_pos = PL_parser->oldoldbufptr - buf;
1344         linestart_pos = PL_parser->linestart - buf;
1345         last_uni_pos = PL_parser->last_uni ? PL_parser->last_uni - buf : 0;
1346         last_lop_pos = PL_parser->last_lop ? PL_parser->last_lop - buf : 0;
1347     }
1348     if (flags & LEX_FAKE_EOF) {
1349         goto eof;
1350     } else if (!PL_parser->rsfp && !PL_parser->filtered) {
1351         got_some = 0;
1352     } else if (filter_gets(linestr, old_bufend_pos)) {
1353         got_some = 1;
1354         got_some_for_debugger = 1;
1355     } else if (flags & LEX_NO_TERM) {
1356         got_some = 0;
1357     } else {
1358         if (!SvPOK(linestr))   /* can get undefined by filter_gets */
1359             SvPVCLEAR(linestr);
1360         eof:
1361         /* End of real input.  Close filehandle (unless it was STDIN),
1362          * then add implicit termination.
1363          */
1364         if (PL_parser->lex_flags & LEX_DONT_CLOSE_RSFP)
1365             PerlIO_clearerr(PL_parser->rsfp);
1366         else if (PL_parser->rsfp)
1367             (void)PerlIO_close(PL_parser->rsfp);
1368         PL_parser->rsfp = NULL;
1369         PL_parser->in_pod = PL_parser->filtered = 0;
1370         if (!PL_in_eval && PL_minus_p) {
1371             sv_catpvs(linestr,
1372                 /*{*/";}continue{print or die qq(-p destination: $!\\n);}");
1373             PL_minus_n = PL_minus_p = 0;
1374         } else if (!PL_in_eval && PL_minus_n) {
1375             sv_catpvs(linestr, /*{*/";}");
1376             PL_minus_n = 0;
1377         } else
1378             sv_catpvs(linestr, ";");
1379         got_some = 1;
1380     }
1381     buf = SvPVX(linestr);
1382     new_bufend_pos = SvCUR(linestr);
1383     PL_parser->bufend = buf + new_bufend_pos;
1384     PL_parser->bufptr = buf + bufptr_pos;
1385
1386     if (UTF) {
1387         const U8* first_bad_char_loc;
1388         if (UNLIKELY(! is_utf8_string_loc(
1389                             (U8 *) PL_parser->bufptr,
1390                                    PL_parser->bufend - PL_parser->bufptr,
1391                                    &first_bad_char_loc)))
1392         {
1393             _force_out_malformed_utf8_message(first_bad_char_loc,
1394                                               (U8 *) PL_parser->bufend,
1395                                               0,
1396                                               1 /* 1 means die */ );
1397             NOT_REACHED; /* NOTREACHED */
1398         }
1399     }
1400
1401     PL_parser->oldbufptr = buf + oldbufptr_pos;
1402     PL_parser->oldoldbufptr = buf + oldoldbufptr_pos;
1403     PL_parser->linestart = buf + linestart_pos;
1404     if (PL_parser->last_uni)
1405         PL_parser->last_uni = buf + last_uni_pos;
1406     if (PL_parser->last_lop)
1407         PL_parser->last_lop = buf + last_lop_pos;
1408     if (PL_parser->preambling != NOLINE) {
1409         CopLINE_set(PL_curcop, PL_parser->preambling + 1);
1410         PL_parser->preambling = NOLINE;
1411     }
1412     if (   got_some_for_debugger
1413         && PERLDB_LINE_OR_SAVESRC
1414         && PL_curstash != PL_debstash)
1415     {
1416         /* debugger active and we're not compiling the debugger code,
1417          * so store the line into the debugger's array of lines
1418          */
1419         update_debugger_info(NULL, buf+old_bufend_pos,
1420             new_bufend_pos-old_bufend_pos);
1421     }
1422     return got_some;
1423 }
1424
1425 /*
1426 =for apidoc Amx|I32|lex_peek_unichar|U32 flags
1427
1428 Looks ahead one (Unicode) character in the text currently being lexed.
1429 Returns the codepoint (unsigned integer value) of the next character,
1430 or -1 if lexing has reached the end of the input text.  To consume the
1431 peeked character, use L</lex_read_unichar>.
1432
1433 If the next character is in (or extends into) the next chunk of input
1434 text, the next chunk will be read in.  Normally the current chunk will be
1435 discarded at the same time, but if C<flags> has the C<LEX_KEEP_PREVIOUS>
1436 bit set, then the current chunk will not be discarded.
1437
1438 If the input is being interpreted as UTF-8 and a UTF-8 encoding error
1439 is encountered, an exception is generated.
1440
1441 =cut
1442 */
1443
1444 I32
1445 Perl_lex_peek_unichar(pTHX_ U32 flags)
1446 {
1447     dVAR;
1448     char *s, *bufend;
1449     if (flags & ~(LEX_KEEP_PREVIOUS))
1450         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_peek_unichar");
1451     s = PL_parser->bufptr;
1452     bufend = PL_parser->bufend;
1453     if (UTF) {
1454         U8 head;
1455         I32 unichar;
1456         STRLEN len, retlen;
1457         if (s == bufend) {
1458             if (!lex_next_chunk(flags))
1459                 return -1;
1460             s = PL_parser->bufptr;
1461             bufend = PL_parser->bufend;
1462         }
1463         head = (U8)*s;
1464         if (UTF8_IS_INVARIANT(head))
1465             return head;
1466         if (UTF8_IS_START(head)) {
1467             len = UTF8SKIP(&head);
1468             while ((STRLEN)(bufend-s) < len) {
1469                 if (!lex_next_chunk(flags | LEX_KEEP_PREVIOUS))
1470                     break;
1471                 s = PL_parser->bufptr;
1472                 bufend = PL_parser->bufend;
1473             }
1474         }
1475         unichar = utf8n_to_uvchr((U8*)s, bufend-s, &retlen, UTF8_CHECK_ONLY);
1476         if (retlen == (STRLEN)-1) {
1477             _force_out_malformed_utf8_message((U8 *) s,
1478                                               (U8 *) bufend,
1479                                               0,
1480                                               1 /* 1 means die */ );
1481             NOT_REACHED; /* NOTREACHED */
1482         }
1483         return unichar;
1484     } else {
1485         if (s == bufend) {
1486             if (!lex_next_chunk(flags))
1487                 return -1;
1488             s = PL_parser->bufptr;
1489         }
1490         return (U8)*s;
1491     }
1492 }
1493
1494 /*
1495 =for apidoc Amx|I32|lex_read_unichar|U32 flags
1496
1497 Reads the next (Unicode) character in the text currently being lexed.
1498 Returns the codepoint (unsigned integer value) of the character read,
1499 and moves L</PL_parser-E<gt>bufptr> past the character, or returns -1
1500 if lexing has reached the end of the input text.  To non-destructively
1501 examine the next character, use L</lex_peek_unichar> instead.
1502
1503 If the next character is in (or extends into) the next chunk of input
1504 text, the next chunk will be read in.  Normally the current chunk will be
1505 discarded at the same time, but if C<flags> has the C<LEX_KEEP_PREVIOUS>
1506 bit set, then the current chunk will not be discarded.
1507
1508 If the input is being interpreted as UTF-8 and a UTF-8 encoding error
1509 is encountered, an exception is generated.
1510
1511 =cut
1512 */
1513
1514 I32
1515 Perl_lex_read_unichar(pTHX_ U32 flags)
1516 {
1517     I32 c;
1518     if (flags & ~(LEX_KEEP_PREVIOUS))
1519         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_read_unichar");
1520     c = lex_peek_unichar(flags);
1521     if (c != -1) {
1522         if (c == '\n')
1523             COPLINE_INC_WITH_HERELINES;
1524         if (UTF)
1525             PL_parser->bufptr += UTF8SKIP(PL_parser->bufptr);
1526         else
1527             ++(PL_parser->bufptr);
1528     }
1529     return c;
1530 }
1531
1532 /*
1533 =for apidoc Amx|void|lex_read_space|U32 flags
1534
1535 Reads optional spaces, in Perl style, in the text currently being
1536 lexed.  The spaces may include ordinary whitespace characters and
1537 Perl-style comments.  C<#line> directives are processed if encountered.
1538 L</PL_parser-E<gt>bufptr> is moved past the spaces, so that it points
1539 at a non-space character (or the end of the input text).
1540
1541 If spaces extend into the next chunk of input text, the next chunk will
1542 be read in.  Normally the current chunk will be discarded at the same
1543 time, but if C<flags> has the C<LEX_KEEP_PREVIOUS> bit set, then the current
1544 chunk will not be discarded.
1545
1546 =cut
1547 */
1548
1549 #define LEX_NO_INCLINE    0x40000000
1550 #define LEX_NO_NEXT_CHUNK 0x80000000
1551
1552 void
1553 Perl_lex_read_space(pTHX_ U32 flags)
1554 {
1555     char *s, *bufend;
1556     const bool can_incline = !(flags & LEX_NO_INCLINE);
1557     bool need_incline = 0;
1558     if (flags & ~(LEX_KEEP_PREVIOUS|LEX_NO_NEXT_CHUNK|LEX_NO_INCLINE))
1559         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_read_space");
1560     s = PL_parser->bufptr;
1561     bufend = PL_parser->bufend;
1562     while (1) {
1563         char c = *s;
1564         if (c == '#') {
1565             do {
1566                 c = *++s;
1567             } while (!(c == '\n' || (c == 0 && s == bufend)));
1568         } else if (c == '\n') {
1569             s++;
1570             if (can_incline) {
1571                 PL_parser->linestart = s;
1572                 if (s == bufend)
1573                     need_incline = 1;
1574                 else
1575                     incline(s);
1576             }
1577         } else if (isSPACE(c)) {
1578             s++;
1579         } else if (c == 0 && s == bufend) {
1580             bool got_more;
1581             line_t l;
1582             if (flags & LEX_NO_NEXT_CHUNK)
1583                 break;
1584             PL_parser->bufptr = s;
1585             l = CopLINE(PL_curcop);
1586             CopLINE(PL_curcop) += PL_parser->herelines + 1;
1587             got_more = lex_next_chunk(flags);
1588             CopLINE_set(PL_curcop, l);
1589             s = PL_parser->bufptr;
1590             bufend = PL_parser->bufend;
1591             if (!got_more)
1592                 break;
1593             if (can_incline && need_incline && PL_parser->rsfp) {
1594                 incline(s);
1595                 need_incline = 0;
1596             }
1597         } else if (!c) {
1598             s++;
1599         } else {
1600             break;
1601         }
1602     }
1603     PL_parser->bufptr = s;
1604 }
1605
1606 /*
1607
1608 =for apidoc EXMp|bool|validate_proto|SV *name|SV *proto|bool warn
1609
1610 This function performs syntax checking on a prototype, C<proto>.
1611 If C<warn> is true, any illegal characters or mismatched brackets
1612 will trigger illegalproto warnings, declaring that they were
1613 detected in the prototype for C<name>.
1614
1615 The return value is C<true> if this is a valid prototype, and
1616 C<false> if it is not, regardless of whether C<warn> was C<true> or
1617 C<false>.
1618
1619 Note that C<NULL> is a valid C<proto> and will always return C<true>.
1620
1621 =cut
1622
1623  */
1624
1625 bool
1626 Perl_validate_proto(pTHX_ SV *name, SV *proto, bool warn, bool curstash)
1627 {
1628     STRLEN len, origlen;
1629     char *p;
1630     bool bad_proto = FALSE;
1631     bool in_brackets = FALSE;
1632     bool after_slash = FALSE;
1633     char greedy_proto = ' ';
1634     bool proto_after_greedy_proto = FALSE;
1635     bool must_be_last = FALSE;
1636     bool underscore = FALSE;
1637     bool bad_proto_after_underscore = FALSE;
1638
1639     PERL_ARGS_ASSERT_VALIDATE_PROTO;
1640
1641     if (!proto)
1642         return TRUE;
1643
1644     p = SvPV(proto, len);
1645     origlen = len;
1646     for (; len--; p++) {
1647         if (!isSPACE(*p)) {
1648             if (must_be_last)
1649                 proto_after_greedy_proto = TRUE;
1650             if (underscore) {
1651                 if (!strchr(";@%", *p))
1652                     bad_proto_after_underscore = TRUE;
1653                 underscore = FALSE;
1654             }
1655             if (!strchr("$@%*;[]&\\_+", *p) || *p == '\0') {
1656                 bad_proto = TRUE;
1657             }
1658             else {
1659                 if (*p == '[')
1660                     in_brackets = TRUE;
1661                 else if (*p == ']')
1662                     in_brackets = FALSE;
1663                 else if ((*p == '@' || *p == '%')
1664                          && !after_slash
1665                          && !in_brackets )
1666                 {
1667                     must_be_last = TRUE;
1668                     greedy_proto = *p;
1669                 }
1670                 else if (*p == '_')
1671                     underscore = TRUE;
1672             }
1673             if (*p == '\\')
1674                 after_slash = TRUE;
1675             else
1676                 after_slash = FALSE;
1677         }
1678     }
1679
1680     if (warn) {
1681         SV *tmpsv = newSVpvs_flags("", SVs_TEMP);
1682         p -= origlen;
1683         p = SvUTF8(proto)
1684             ? sv_uni_display(tmpsv, newSVpvn_flags(p, origlen, SVs_TEMP | SVf_UTF8),
1685                              origlen, UNI_DISPLAY_ISPRINT)
1686             : pv_pretty(tmpsv, p, origlen, 60, NULL, NULL, PERL_PV_ESCAPE_NONASCII);
1687
1688         if (curstash && !memchr(SvPVX(name), ':', SvCUR(name))) {
1689             SV *name2 = sv_2mortal(newSVsv(PL_curstname));
1690             sv_catpvs(name2, "::");
1691             sv_catsv(name2, (SV *)name);
1692             name = name2;
1693         }
1694
1695         if (proto_after_greedy_proto)
1696             Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO),
1697                         "Prototype after '%c' for %" SVf " : %s",
1698                         greedy_proto, SVfARG(name), p);
1699         if (in_brackets)
1700             Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO),
1701                         "Missing ']' in prototype for %" SVf " : %s",
1702                         SVfARG(name), p);
1703         if (bad_proto)
1704             Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO),
1705                         "Illegal character in prototype for %" SVf " : %s",
1706                         SVfARG(name), p);
1707         if (bad_proto_after_underscore)
1708             Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO),
1709                         "Illegal character after '_' in prototype for %" SVf " : %s",
1710                         SVfARG(name), p);
1711     }
1712
1713     return (! (proto_after_greedy_proto || bad_proto) );
1714 }
1715
1716 /*
1717  * S_incline
1718  * This subroutine has nothing to do with tilting, whether at windmills
1719  * or pinball tables.  Its name is short for "increment line".  It
1720  * increments the current line number in CopLINE(PL_curcop) and checks
1721  * to see whether the line starts with a comment of the form
1722  *    # line 500 "foo.pm"
1723  * If so, it sets the current line number and file to the values in the comment.
1724  */
1725
1726 STATIC void
1727 S_incline(pTHX_ const char *s)
1728 {
1729     const char *t;
1730     const char *n;
1731     const char *e;
1732     line_t line_num;
1733     UV uv;
1734
1735     PERL_ARGS_ASSERT_INCLINE;
1736
1737     COPLINE_INC_WITH_HERELINES;
1738     if (!PL_rsfp && !PL_parser->filtered && PL_lex_state == LEX_NORMAL
1739      && s+1 == PL_bufend && *s == ';') {
1740         /* fake newline in string eval */
1741         CopLINE_dec(PL_curcop);
1742         return;
1743     }
1744     if (*s++ != '#')
1745         return;
1746     while (SPACE_OR_TAB(*s))
1747         s++;
1748     if (strEQs(s, "line"))
1749         s += 4;
1750     else
1751         return;
1752     if (SPACE_OR_TAB(*s))
1753         s++;
1754     else
1755         return;
1756     while (SPACE_OR_TAB(*s))
1757         s++;
1758     if (!isDIGIT(*s))
1759         return;
1760
1761     n = s;
1762     while (isDIGIT(*s))
1763         s++;
1764     if (!SPACE_OR_TAB(*s) && *s != '\r' && *s != '\n' && *s != '\0')
1765         return;
1766     while (SPACE_OR_TAB(*s))
1767         s++;
1768     if (*s == '"' && (t = strchr(s+1, '"'))) {
1769         s++;
1770         e = t + 1;
1771     }
1772     else {
1773         t = s;
1774         while (*t && !isSPACE(*t))
1775             t++;
1776         e = t;
1777     }
1778     while (SPACE_OR_TAB(*e) || *e == '\r' || *e == '\f')
1779         e++;
1780     if (*e != '\n' && *e != '\0')
1781         return;         /* false alarm */
1782
1783     if (!grok_atoUV(n, &uv, &e))
1784         return;
1785     line_num = ((line_t)uv) - 1;
1786
1787     if (t - s > 0) {
1788         const STRLEN len = t - s;
1789
1790         if (!PL_rsfp && !PL_parser->filtered) {
1791             /* must copy *{"::_<(eval N)[oldfilename:L]"}
1792              * to *{"::_<newfilename"} */
1793             /* However, the long form of evals is only turned on by the
1794                debugger - usually they're "(eval %lu)" */
1795             GV * const cfgv = CopFILEGV(PL_curcop);
1796             if (cfgv) {
1797                 char smallbuf[128];
1798                 STRLEN tmplen2 = len;
1799                 char *tmpbuf2;
1800                 GV *gv2;
1801
1802                 if (tmplen2 + 2 <= sizeof smallbuf)
1803                     tmpbuf2 = smallbuf;
1804                 else
1805                     Newx(tmpbuf2, tmplen2 + 2, char);
1806
1807                 tmpbuf2[0] = '_';
1808                 tmpbuf2[1] = '<';
1809
1810                 memcpy(tmpbuf2 + 2, s, tmplen2);
1811                 tmplen2 += 2;
1812
1813                 gv2 = *(GV**)hv_fetch(PL_defstash, tmpbuf2, tmplen2, TRUE);
1814                 if (!isGV(gv2)) {
1815                     gv_init(gv2, PL_defstash, tmpbuf2, tmplen2, FALSE);
1816                     /* adjust ${"::_<newfilename"} to store the new file name */
1817                     GvSV(gv2) = newSVpvn(tmpbuf2 + 2, tmplen2 - 2);
1818                     /* The line number may differ. If that is the case,
1819                        alias the saved lines that are in the array.
1820                        Otherwise alias the whole array. */
1821                     if (CopLINE(PL_curcop) == line_num) {
1822                         GvHV(gv2) = MUTABLE_HV(SvREFCNT_inc(GvHV(cfgv)));
1823                         GvAV(gv2) = MUTABLE_AV(SvREFCNT_inc(GvAV(cfgv)));
1824                     }
1825                     else if (GvAV(cfgv)) {
1826                         AV * const av = GvAV(cfgv);
1827                         const I32 start = CopLINE(PL_curcop)+1;
1828                         I32 items = AvFILLp(av) - start;
1829                         if (items > 0) {
1830                             AV * const av2 = GvAVn(gv2);
1831                             SV **svp = AvARRAY(av) + start;
1832                             I32 l = (I32)line_num+1;
1833                             while (items--)
1834                                 av_store(av2, l++, SvREFCNT_inc(*svp++));
1835                         }
1836                     }
1837                 }
1838
1839                 if (tmpbuf2 != smallbuf) Safefree(tmpbuf2);
1840             }
1841         }
1842         CopFILE_free(PL_curcop);
1843         CopFILE_setn(PL_curcop, s, len);
1844     }
1845     CopLINE_set(PL_curcop, line_num);
1846 }
1847
1848 STATIC void
1849 S_update_debugger_info(pTHX_ SV *orig_sv, const char *const buf, STRLEN len)
1850 {
1851     AV *av = CopFILEAVx(PL_curcop);
1852     if (av) {
1853         SV * sv;
1854         if (PL_parser->preambling == NOLINE) sv = newSV_type(SVt_PVMG);
1855         else {
1856             sv = *av_fetch(av, 0, 1);
1857             SvUPGRADE(sv, SVt_PVMG);
1858         }
1859         if (!SvPOK(sv)) SvPVCLEAR(sv);
1860         if (orig_sv)
1861             sv_catsv(sv, orig_sv);
1862         else
1863             sv_catpvn(sv, buf, len);
1864         if (!SvIOK(sv)) {
1865             (void)SvIOK_on(sv);
1866             SvIV_set(sv, 0);
1867         }
1868         if (PL_parser->preambling == NOLINE)
1869             av_store(av, CopLINE(PL_curcop), sv);
1870     }
1871 }
1872
1873 /*
1874  * skipspace
1875  * Called to gobble the appropriate amount and type of whitespace.
1876  * Skips comments as well.
1877  * Returns the next character after the whitespace that is skipped.
1878  *
1879  * peekspace
1880  * Same thing, but look ahead without incrementing line numbers or
1881  * adjusting PL_linestart.
1882  */
1883
1884 #define skipspace(s) skipspace_flags(s, 0)
1885 #define peekspace(s) skipspace_flags(s, LEX_NO_INCLINE)
1886
1887 STATIC char *
1888 S_skipspace_flags(pTHX_ char *s, U32 flags)
1889 {
1890     PERL_ARGS_ASSERT_SKIPSPACE_FLAGS;
1891     if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) {
1892         while (s < PL_bufend && (SPACE_OR_TAB(*s) || !*s))
1893             s++;
1894     } else {
1895         STRLEN bufptr_pos = PL_bufptr - SvPVX(PL_linestr);
1896         PL_bufptr = s;
1897         lex_read_space(flags | LEX_KEEP_PREVIOUS |
1898                 (PL_lex_inwhat || PL_lex_state == LEX_FORMLINE ?
1899                     LEX_NO_NEXT_CHUNK : 0));
1900         s = PL_bufptr;
1901         PL_bufptr = SvPVX(PL_linestr) + bufptr_pos;
1902         if (PL_linestart > PL_bufptr)
1903             PL_bufptr = PL_linestart;
1904         return s;
1905     }
1906     return s;
1907 }
1908
1909 /*
1910  * S_check_uni
1911  * Check the unary operators to ensure there's no ambiguity in how they're
1912  * used.  An ambiguous piece of code would be:
1913  *     rand + 5
1914  * This doesn't mean rand() + 5.  Because rand() is a unary operator,
1915  * the +5 is its argument.
1916  */
1917
1918 STATIC void
1919 S_check_uni(pTHX)
1920 {
1921     const char *s;
1922     const char *t;
1923
1924     if (PL_oldoldbufptr != PL_last_uni)
1925         return;
1926     while (isSPACE(*PL_last_uni))
1927         PL_last_uni++;
1928     s = PL_last_uni;
1929     while (isWORDCHAR_lazy_if_safe(s, PL_bufend, UTF) || *s == '-')
1930         s += UTF ? UTF8SKIP(s) : 1;
1931     if ((t = strchr(s, '(')) && t < PL_bufptr)
1932         return;
1933
1934     Perl_ck_warner_d(aTHX_ packWARN(WARN_AMBIGUOUS),
1935                      "Warning: Use of \"%" UTF8f "\" without parentheses is ambiguous",
1936                      UTF8fARG(UTF, (int)(s - PL_last_uni), PL_last_uni));
1937 }
1938
1939 /*
1940  * LOP : macro to build a list operator.  Its behaviour has been replaced
1941  * with a subroutine, S_lop() for which LOP is just another name.
1942  */
1943
1944 #define LOP(f,x) return lop(f,x,s)
1945
1946 /*
1947  * S_lop
1948  * Build a list operator (or something that might be one).  The rules:
1949  *  - if we have a next token, then it's a list operator (no parens) for
1950  *    which the next token has already been parsed; e.g.,
1951  *       sort foo @args
1952  *       sort foo (@args)
1953  *  - if the next thing is an opening paren, then it's a function
1954  *  - else it's a list operator
1955  */
1956
1957 STATIC I32
1958 S_lop(pTHX_ I32 f, U8 x, char *s)
1959 {
1960     PERL_ARGS_ASSERT_LOP;
1961
1962     pl_yylval.ival = f;
1963     CLINE;
1964     PL_bufptr = s;
1965     PL_last_lop = PL_oldbufptr;
1966     PL_last_lop_op = (OPCODE)f;
1967     if (PL_nexttoke)
1968         goto lstop;
1969     PL_expect = x;
1970     if (*s == '(')
1971         return REPORT(FUNC);
1972     s = skipspace(s);
1973     if (*s == '(')
1974         return REPORT(FUNC);
1975     else {
1976         lstop:
1977         if (!PL_lex_allbrackets && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
1978             PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
1979         return REPORT(LSTOP);
1980     }
1981 }
1982
1983 /*
1984  * S_force_next
1985  * When the lexer realizes it knows the next token (for instance,
1986  * it is reordering tokens for the parser) then it can call S_force_next
1987  * to know what token to return the next time the lexer is called.  Caller
1988  * will need to set PL_nextval[] and possibly PL_expect to ensure
1989  * the lexer handles the token correctly.
1990  */
1991
1992 STATIC void
1993 S_force_next(pTHX_ I32 type)
1994 {
1995 #ifdef DEBUGGING
1996     if (DEBUG_T_TEST) {
1997         PerlIO_printf(Perl_debug_log, "### forced token:\n");
1998         tokereport(type, &NEXTVAL_NEXTTOKE);
1999     }
2000 #endif
2001     assert(PL_nexttoke < C_ARRAY_LENGTH(PL_nexttype));
2002     PL_nexttype[PL_nexttoke] = type;
2003     PL_nexttoke++;
2004 }
2005
2006 /*
2007  * S_postderef
2008  *
2009  * This subroutine handles postfix deref syntax after the arrow has already
2010  * been emitted.  @* $* etc. are emitted as two separate token right here.
2011  * @[ @{ %[ %{ *{ are emitted also as two tokens, but this function emits
2012  * only the first, leaving yylex to find the next.
2013  */
2014
2015 static int
2016 S_postderef(pTHX_ int const funny, char const next)
2017 {
2018     assert(funny == DOLSHARP || strchr("$@%&*", funny));
2019     if (next == '*') {
2020         PL_expect = XOPERATOR;
2021         if (PL_lex_state == LEX_INTERPNORMAL && !PL_lex_brackets) {
2022             assert('@' == funny || '$' == funny || DOLSHARP == funny);
2023             PL_lex_state = LEX_INTERPEND;
2024             if ('@' == funny)
2025                 force_next(POSTJOIN);
2026         }
2027         force_next(next);
2028         PL_bufptr+=2;
2029     }
2030     else {
2031         if ('@' == funny && PL_lex_state == LEX_INTERPNORMAL
2032          && !PL_lex_brackets)
2033             PL_lex_dojoin = 2;
2034         PL_expect = XOPERATOR;
2035         PL_bufptr++;
2036     }
2037     return funny;
2038 }
2039
2040 void
2041 Perl_yyunlex(pTHX)
2042 {
2043     int yyc = PL_parser->yychar;
2044     if (yyc != YYEMPTY) {
2045         if (yyc) {
2046             NEXTVAL_NEXTTOKE = PL_parser->yylval;
2047             if (yyc == '{'/*}*/ || yyc == HASHBRACK || yyc == '['/*]*/) {
2048                 PL_lex_allbrackets--;
2049                 PL_lex_brackets--;
2050                 yyc |= (3<<24) | (PL_lex_brackstack[PL_lex_brackets] << 16);
2051             } else if (yyc == '('/*)*/) {
2052                 PL_lex_allbrackets--;
2053                 yyc |= (2<<24);
2054             }
2055             force_next(yyc);
2056         }
2057         PL_parser->yychar = YYEMPTY;
2058     }
2059 }
2060
2061 STATIC SV *
2062 S_newSV_maybe_utf8(pTHX_ const char *const start, STRLEN len)
2063 {
2064     SV * const sv = newSVpvn_utf8(start, len,
2065                           !IN_BYTES
2066                           && UTF
2067                           && !is_utf8_invariant_string((const U8*)start, len)
2068                           && is_utf8_string((const U8*)start, len));
2069     return sv;
2070 }
2071
2072 /*
2073  * S_force_word
2074  * When the lexer knows the next thing is a word (for instance, it has
2075  * just seen -> and it knows that the next char is a word char, then
2076  * it calls S_force_word to stick the next word into the PL_nexttoke/val
2077  * lookahead.
2078  *
2079  * Arguments:
2080  *   char *start : buffer position (must be within PL_linestr)
2081  *   int token   : PL_next* will be this type of bare word
2082  *                 (e.g., METHOD,BAREWORD)
2083  *   int check_keyword : if true, Perl checks to make sure the word isn't
2084  *       a keyword (do this if the word is a label, e.g. goto FOO)
2085  *   int allow_pack : if true, : characters will also be allowed (require,
2086  *       use, etc. do this)
2087  */
2088
2089 STATIC char *
2090 S_force_word(pTHX_ char *start, int token, int check_keyword, int allow_pack)
2091 {
2092     char *s;
2093     STRLEN len;
2094
2095     PERL_ARGS_ASSERT_FORCE_WORD;
2096
2097     start = skipspace(start);
2098     s = start;
2099     if (   isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)
2100         || (allow_pack && *s == ':' && s[1] == ':') )
2101     {
2102         s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, allow_pack, &len);
2103         if (check_keyword) {
2104           char *s2 = PL_tokenbuf;
2105           STRLEN len2 = len;
2106           if (allow_pack && len > 6 && strEQs(s2, "CORE::"))
2107             s2 += 6, len2 -= 6;
2108           if (keyword(s2, len2, 0))
2109             return start;
2110         }
2111         if (token == METHOD) {
2112             s = skipspace(s);
2113             if (*s == '(')
2114                 PL_expect = XTERM;
2115             else {
2116                 PL_expect = XOPERATOR;
2117             }
2118         }
2119         NEXTVAL_NEXTTOKE.opval
2120             = newSVOP(OP_CONST,0,
2121                            S_newSV_maybe_utf8(aTHX_ PL_tokenbuf, len));
2122         NEXTVAL_NEXTTOKE.opval->op_private |= OPpCONST_BARE;
2123         force_next(token);
2124     }
2125     return s;
2126 }
2127
2128 /*
2129  * S_force_ident
2130  * Called when the lexer wants $foo *foo &foo etc, but the program
2131  * text only contains the "foo" portion.  The first argument is a pointer
2132  * to the "foo", and the second argument is the type symbol to prefix.
2133  * Forces the next token to be a "BAREWORD".
2134  * Creates the symbol if it didn't already exist (via gv_fetchpv()).
2135  */
2136
2137 STATIC void
2138 S_force_ident(pTHX_ const char *s, int kind)
2139 {
2140     PERL_ARGS_ASSERT_FORCE_IDENT;
2141
2142     if (s[0]) {
2143         const STRLEN len = s[1] ? strlen(s) : 1; /* s = "\"" see yylex */
2144         OP* const o = newSVOP(OP_CONST, 0, newSVpvn_flags(s, len,
2145                                                                 UTF ? SVf_UTF8 : 0));
2146         NEXTVAL_NEXTTOKE.opval = o;
2147         force_next(BAREWORD);
2148         if (kind) {
2149             o->op_private = OPpCONST_ENTERED;
2150             /* XXX see note in pp_entereval() for why we forgo typo
2151                warnings if the symbol must be introduced in an eval.
2152                GSAR 96-10-12 */
2153             gv_fetchpvn_flags(s, len,
2154                               (PL_in_eval ? GV_ADDMULTI
2155                               : GV_ADD) | ( UTF ? SVf_UTF8 : 0 ),
2156                               kind == '$' ? SVt_PV :
2157                               kind == '@' ? SVt_PVAV :
2158                               kind == '%' ? SVt_PVHV :
2159                               SVt_PVGV
2160                               );
2161         }
2162     }
2163 }
2164
2165 static void
2166 S_force_ident_maybe_lex(pTHX_ char pit)
2167 {
2168     NEXTVAL_NEXTTOKE.ival = pit;
2169     force_next('p');
2170 }
2171
2172 NV
2173 Perl_str_to_version(pTHX_ SV *sv)
2174 {
2175     NV retval = 0.0;
2176     NV nshift = 1.0;
2177     STRLEN len;
2178     const char *start = SvPV_const(sv,len);
2179     const char * const end = start + len;
2180     const bool utf = cBOOL(SvUTF8(sv));
2181
2182     PERL_ARGS_ASSERT_STR_TO_VERSION;
2183
2184     while (start < end) {
2185         STRLEN skip;
2186         UV n;
2187         if (utf)
2188             n = utf8n_to_uvchr((U8*)start, len, &skip, 0);
2189         else {
2190             n = *(U8*)start;
2191             skip = 1;
2192         }
2193         retval += ((NV)n)/nshift;
2194         start += skip;
2195         nshift *= 1000;
2196     }
2197     return retval;
2198 }
2199
2200 /*
2201  * S_force_version
2202  * Forces the next token to be a version number.
2203  * If the next token appears to be an invalid version number, (e.g. "v2b"),
2204  * and if "guessing" is TRUE, then no new token is created (and the caller
2205  * must use an alternative parsing method).
2206  */
2207
2208 STATIC char *
2209 S_force_version(pTHX_ char *s, int guessing)
2210 {
2211     OP *version = NULL;
2212     char *d;
2213
2214     PERL_ARGS_ASSERT_FORCE_VERSION;
2215
2216     s = skipspace(s);
2217
2218     d = s;
2219     if (*d == 'v')
2220         d++;
2221     if (isDIGIT(*d)) {
2222         while (isDIGIT(*d) || *d == '_' || *d == '.')
2223             d++;
2224         if (*d == ';' || isSPACE(*d) || *d == '{' || *d == '}' || !*d) {
2225             SV *ver;
2226             s = scan_num(s, &pl_yylval);
2227             version = pl_yylval.opval;
2228             ver = cSVOPx(version)->op_sv;
2229             if (SvPOK(ver) && !SvNIOK(ver)) {
2230                 SvUPGRADE(ver, SVt_PVNV);
2231                 SvNV_set(ver, str_to_version(ver));
2232                 SvNOK_on(ver);          /* hint that it is a version */
2233             }
2234         }
2235         else if (guessing) {
2236             return s;
2237         }
2238     }
2239
2240     /* NOTE: The parser sees the package name and the VERSION swapped */
2241     NEXTVAL_NEXTTOKE.opval = version;
2242     force_next(BAREWORD);
2243
2244     return s;
2245 }
2246
2247 /*
2248  * S_force_strict_version
2249  * Forces the next token to be a version number using strict syntax rules.
2250  */
2251
2252 STATIC char *
2253 S_force_strict_version(pTHX_ char *s)
2254 {
2255     OP *version = NULL;
2256     const char *errstr = NULL;
2257
2258     PERL_ARGS_ASSERT_FORCE_STRICT_VERSION;
2259
2260     while (isSPACE(*s)) /* leading whitespace */
2261         s++;
2262
2263     if (is_STRICT_VERSION(s,&errstr)) {
2264         SV *ver = newSV(0);
2265         s = (char *)scan_version(s, ver, 0);
2266         version = newSVOP(OP_CONST, 0, ver);
2267     }
2268     else if ((*s != ';' && *s != '{' && *s != '}' )
2269              && (s = skipspace(s), (*s != ';' && *s != '{' && *s != '}' )))
2270     {
2271         PL_bufptr = s;
2272         if (errstr)
2273             yyerror(errstr); /* version required */
2274         return s;
2275     }
2276
2277     /* NOTE: The parser sees the package name and the VERSION swapped */
2278     NEXTVAL_NEXTTOKE.opval = version;
2279     force_next(BAREWORD);
2280
2281     return s;
2282 }
2283
2284 /*
2285  * S_tokeq
2286  * Turns any \\ into \ in a quoted string passed in in 'sv', returning 'sv',
2287  * modified as necessary.  However, if HINT_NEW_STRING is on, 'sv' is
2288  * unchanged, and a new SV containing the modified input is returned.
2289  */
2290
2291 STATIC SV *
2292 S_tokeq(pTHX_ SV *sv)
2293 {
2294     char *s;
2295     char *send;
2296     char *d;
2297     SV *pv = sv;
2298
2299     PERL_ARGS_ASSERT_TOKEQ;
2300
2301     assert (SvPOK(sv));
2302     assert (SvLEN(sv));
2303     assert (!SvIsCOW(sv));
2304     if (SvTYPE(sv) >= SVt_PVIV && SvIVX(sv) == -1) /* <<'heredoc' */
2305         goto finish;
2306     s = SvPVX(sv);
2307     send = SvEND(sv);
2308     /* This is relying on the SV being "well formed" with a trailing '\0'  */
2309     while (s < send && !(*s == '\\' && s[1] == '\\'))
2310         s++;
2311     if (s == send)
2312         goto finish;
2313     d = s;
2314     if ( PL_hints & HINT_NEW_STRING ) {
2315         pv = newSVpvn_flags(SvPVX_const(pv), SvCUR(sv),
2316                             SVs_TEMP | SvUTF8(sv));
2317     }
2318     while (s < send) {
2319         if (*s == '\\') {
2320             if (s + 1 < send && (s[1] == '\\'))
2321                 s++;            /* all that, just for this */
2322         }
2323         *d++ = *s++;
2324     }
2325     *d = '\0';
2326     SvCUR_set(sv, d - SvPVX_const(sv));
2327   finish:
2328     if ( PL_hints & HINT_NEW_STRING )
2329        return new_constant(NULL, 0, "q", sv, pv, "q", 1);
2330     return sv;
2331 }
2332
2333 /*
2334  * Now come three functions related to double-quote context,
2335  * S_sublex_start, S_sublex_push, and S_sublex_done.  They're used when
2336  * converting things like "\u\Lgnat" into ucfirst(lc("gnat")).  They
2337  * interact with PL_lex_state, and create fake ( ... ) argument lists
2338  * to handle functions and concatenation.
2339  * For example,
2340  *   "foo\lbar"
2341  * is tokenised as
2342  *    stringify ( const[foo] concat lcfirst ( const[bar] ) )
2343  */
2344
2345 /*
2346  * S_sublex_start
2347  * Assumes that pl_yylval.ival is the op we're creating (e.g. OP_LCFIRST).
2348  *
2349  * Pattern matching will set PL_lex_op to the pattern-matching op to
2350  * make (we return THING if pl_yylval.ival is OP_NULL, PMFUNC otherwise).
2351  *
2352  * OP_CONST is easy--just make the new op and return.
2353  *
2354  * Everything else becomes a FUNC.
2355  *
2356  * Sets PL_lex_state to LEX_INTERPPUSH unless ival was OP_NULL or we
2357  * had an OP_CONST.  This just sets us up for a
2358  * call to S_sublex_push().
2359  */
2360
2361 STATIC I32
2362 S_sublex_start(pTHX)
2363 {
2364     const I32 op_type = pl_yylval.ival;
2365
2366     if (op_type == OP_NULL) {
2367         pl_yylval.opval = PL_lex_op;
2368         PL_lex_op = NULL;
2369         return THING;
2370     }
2371     if (op_type == OP_CONST) {
2372         SV *sv = PL_lex_stuff;
2373         PL_lex_stuff = NULL;
2374         sv = tokeq(sv);
2375
2376         if (SvTYPE(sv) == SVt_PVIV) {
2377             /* Overloaded constants, nothing fancy: Convert to SVt_PV: */
2378             STRLEN len;
2379             const char * const p = SvPV_const(sv, len);
2380             SV * const nsv = newSVpvn_flags(p, len, SvUTF8(sv));
2381             SvREFCNT_dec(sv);
2382             sv = nsv;
2383         }
2384         pl_yylval.opval = newSVOP(op_type, 0, sv);
2385         return THING;
2386     }
2387
2388     PL_parser->lex_super_state = PL_lex_state;
2389     PL_parser->lex_sub_inwhat = (U16)op_type;
2390     PL_parser->lex_sub_op = PL_lex_op;
2391     PL_lex_state = LEX_INTERPPUSH;
2392
2393     PL_expect = XTERM;
2394     if (PL_lex_op) {
2395         pl_yylval.opval = PL_lex_op;
2396         PL_lex_op = NULL;
2397         return PMFUNC;
2398     }
2399     else
2400         return FUNC;
2401 }
2402
2403 /*
2404  * S_sublex_push
2405  * Create a new scope to save the lexing state.  The scope will be
2406  * ended in S_sublex_done.  Returns a '(', starting the function arguments
2407  * to the uc, lc, etc. found before.
2408  * Sets PL_lex_state to LEX_INTERPCONCAT.
2409  */
2410
2411 STATIC I32
2412 S_sublex_push(pTHX)
2413 {
2414     LEXSHARED *shared;
2415     const bool is_heredoc = PL_multi_close == '<';
2416     ENTER;
2417
2418     PL_lex_state = PL_parser->lex_super_state;
2419     SAVEI8(PL_lex_dojoin);
2420     SAVEI32(PL_lex_brackets);
2421     SAVEI32(PL_lex_allbrackets);
2422     SAVEI32(PL_lex_formbrack);
2423     SAVEI8(PL_lex_fakeeof);
2424     SAVEI32(PL_lex_casemods);
2425     SAVEI32(PL_lex_starts);
2426     SAVEI8(PL_lex_state);
2427     SAVESPTR(PL_lex_repl);
2428     SAVEVPTR(PL_lex_inpat);
2429     SAVEI16(PL_lex_inwhat);
2430     if (is_heredoc)
2431     {
2432         SAVECOPLINE(PL_curcop);
2433         SAVEI32(PL_multi_end);
2434         SAVEI32(PL_parser->herelines);
2435         PL_parser->herelines = 0;
2436     }
2437     SAVEIV(PL_multi_close);
2438     SAVEPPTR(PL_bufptr);
2439     SAVEPPTR(PL_bufend);
2440     SAVEPPTR(PL_oldbufptr);
2441     SAVEPPTR(PL_oldoldbufptr);
2442     SAVEPPTR(PL_last_lop);
2443     SAVEPPTR(PL_last_uni);
2444     SAVEPPTR(PL_linestart);
2445     SAVESPTR(PL_linestr);
2446     SAVEGENERICPV(PL_lex_brackstack);
2447     SAVEGENERICPV(PL_lex_casestack);
2448     SAVEGENERICPV(PL_parser->lex_shared);
2449     SAVEBOOL(PL_parser->lex_re_reparsing);
2450     SAVEI32(PL_copline);
2451
2452     /* The here-doc parser needs to be able to peek into outer lexing
2453        scopes to find the body of the here-doc.  So we put PL_linestr and
2454        PL_bufptr into lex_shared, to â€˜share’ those values.
2455      */
2456     PL_parser->lex_shared->ls_linestr = PL_linestr;
2457     PL_parser->lex_shared->ls_bufptr  = PL_bufptr;
2458
2459     PL_linestr = PL_lex_stuff;
2460     PL_lex_repl = PL_parser->lex_sub_repl;
2461     PL_lex_stuff = NULL;
2462     PL_parser->lex_sub_repl = NULL;
2463
2464     /* Arrange for PL_lex_stuff to be freed on scope exit, in case it gets
2465        set for an inner quote-like operator and then an error causes scope-
2466        popping.  We must not have a PL_lex_stuff value left dangling, as
2467        that breaks assumptions elsewhere.  See bug #123617.  */
2468     SAVEGENERICSV(PL_lex_stuff);
2469     SAVEGENERICSV(PL_parser->lex_sub_repl);
2470
2471     PL_bufend = PL_bufptr = PL_oldbufptr = PL_oldoldbufptr = PL_linestart
2472         = SvPVX(PL_linestr);
2473     PL_bufend += SvCUR(PL_linestr);
2474     PL_last_lop = PL_last_uni = NULL;
2475     SAVEFREESV(PL_linestr);
2476     if (PL_lex_repl) SAVEFREESV(PL_lex_repl);
2477
2478     PL_lex_dojoin = FALSE;
2479     PL_lex_brackets = PL_lex_formbrack = 0;
2480     PL_lex_allbrackets = 0;
2481     PL_lex_fakeeof = LEX_FAKEEOF_NEVER;
2482     Newx(PL_lex_brackstack, 120, char);
2483     Newx(PL_lex_casestack, 12, char);
2484     PL_lex_casemods = 0;
2485     *PL_lex_casestack = '\0';
2486     PL_lex_starts = 0;
2487     PL_lex_state = LEX_INTERPCONCAT;
2488     if (is_heredoc)
2489         CopLINE_set(PL_curcop, (line_t)PL_multi_start);
2490     PL_copline = NOLINE;
2491
2492     Newxz(shared, 1, LEXSHARED);
2493     shared->ls_prev = PL_parser->lex_shared;
2494     PL_parser->lex_shared = shared;
2495
2496     PL_lex_inwhat = PL_parser->lex_sub_inwhat;
2497     if (PL_lex_inwhat == OP_TRANSR) PL_lex_inwhat = OP_TRANS;
2498     if (PL_lex_inwhat == OP_MATCH || PL_lex_inwhat == OP_QR || PL_lex_inwhat == OP_SUBST)
2499         PL_lex_inpat = PL_parser->lex_sub_op;
2500     else
2501         PL_lex_inpat = NULL;
2502
2503     PL_parser->lex_re_reparsing = cBOOL(PL_in_eval & EVAL_RE_REPARSING);
2504     PL_in_eval &= ~EVAL_RE_REPARSING;
2505
2506     return '(';
2507 }
2508
2509 /*
2510  * S_sublex_done
2511  * Restores lexer state after a S_sublex_push.
2512  */
2513
2514 STATIC I32
2515 S_sublex_done(pTHX)
2516 {
2517     if (!PL_lex_starts++) {
2518         SV * const sv = newSVpvs("");
2519         if (SvUTF8(PL_linestr))
2520             SvUTF8_on(sv);
2521         PL_expect = XOPERATOR;
2522         pl_yylval.opval = newSVOP(OP_CONST, 0, sv);
2523         return THING;
2524     }
2525
2526     if (PL_lex_casemods) {              /* oops, we've got some unbalanced parens */
2527         PL_lex_state = LEX_INTERPCASEMOD;
2528         return yylex();
2529     }
2530
2531     /* Is there a right-hand side to take care of? (s//RHS/ or tr//RHS/) */
2532     assert(PL_lex_inwhat != OP_TRANSR);
2533     if (PL_lex_repl) {
2534         assert (PL_lex_inwhat == OP_SUBST || PL_lex_inwhat == OP_TRANS);
2535         PL_linestr = PL_lex_repl;
2536         PL_lex_inpat = 0;
2537         PL_bufend = PL_bufptr = PL_oldbufptr = PL_oldoldbufptr = PL_linestart = SvPVX(PL_linestr);
2538         PL_bufend += SvCUR(PL_linestr);
2539         PL_last_lop = PL_last_uni = NULL;
2540         PL_lex_dojoin = FALSE;
2541         PL_lex_brackets = 0;
2542         PL_lex_allbrackets = 0;
2543         PL_lex_fakeeof = LEX_FAKEEOF_NEVER;
2544         PL_lex_casemods = 0;
2545         *PL_lex_casestack = '\0';
2546         PL_lex_starts = 0;
2547         if (SvEVALED(PL_lex_repl)) {
2548             PL_lex_state = LEX_INTERPNORMAL;
2549             PL_lex_starts++;
2550             /*  we don't clear PL_lex_repl here, so that we can check later
2551                 whether this is an evalled subst; that means we rely on the
2552                 logic to ensure sublex_done() is called again only via the
2553                 branch (in yylex()) that clears PL_lex_repl, else we'll loop */
2554         }
2555         else {
2556             PL_lex_state = LEX_INTERPCONCAT;
2557             PL_lex_repl = NULL;
2558         }
2559         if (SvTYPE(PL_linestr) >= SVt_PVNV) {
2560             CopLINE(PL_curcop) +=
2561                 ((XPVNV*)SvANY(PL_linestr))->xnv_u.xnv_lines
2562                  + PL_parser->herelines;
2563             PL_parser->herelines = 0;
2564         }
2565         return '/';
2566     }
2567     else {
2568         const line_t l = CopLINE(PL_curcop);
2569         LEAVE;
2570         if (PL_multi_close == '<')
2571             PL_parser->herelines += l - PL_multi_end;
2572         PL_bufend = SvPVX(PL_linestr);
2573         PL_bufend += SvCUR(PL_linestr);
2574         PL_expect = XOPERATOR;
2575         return ')';
2576     }
2577 }
2578
2579 STATIC SV*
2580 S_get_and_check_backslash_N_name(pTHX_ const char* s, const char* const e)
2581 {
2582     /* <s> points to first character of interior of \N{}, <e> to one beyond the
2583      * interior, hence to the "}".  Finds what the name resolves to, returning
2584      * an SV* containing it; NULL if no valid one found */
2585
2586     SV* res = newSVpvn_flags(s, e - s, UTF ? SVf_UTF8 : 0);
2587
2588     HV * table;
2589     SV **cvp;
2590     SV *cv;
2591     SV *rv;
2592     HV *stash;
2593     const char* backslash_ptr = s - 3; /* Points to the <\> of \N{... */
2594
2595     PERL_ARGS_ASSERT_GET_AND_CHECK_BACKSLASH_N_NAME;
2596
2597     if (!SvCUR(res)) {
2598         SvREFCNT_dec_NN(res);
2599         /* diag_listed_as: Unknown charname '%s' */
2600         yyerror("Unknown charname ''");
2601         return NULL;
2602     }
2603
2604     res = new_constant( NULL, 0, "charnames", res, NULL, backslash_ptr,
2605                         /* include the <}> */
2606                         e - backslash_ptr + 1);
2607     if (! SvPOK(res)) {
2608         SvREFCNT_dec_NN(res);
2609         return NULL;
2610     }
2611
2612     /* See if the charnames handler is the Perl core's, and if so, we can skip
2613      * the validation needed for a user-supplied one, as Perl's does its own
2614      * validation. */
2615     table = GvHV(PL_hintgv);             /* ^H */
2616     cvp = hv_fetchs(table, "charnames", FALSE);
2617     if (cvp && (cv = *cvp) && SvROK(cv) && (rv = SvRV(cv),
2618         SvTYPE(rv) == SVt_PVCV) && ((stash = CvSTASH(rv)) != NULL))
2619     {
2620         const char * const name = HvNAME(stash);
2621         if (HvNAMELEN(stash) == sizeof("_charnames")-1
2622          && strEQ(name, "_charnames")) {
2623            return res;
2624        }
2625     }
2626
2627     /* Here, it isn't Perl's charname handler.  We can't rely on a
2628      * user-supplied handler to validate the input name.  For non-ut8 input,
2629      * look to see that the first character is legal.  Then loop through the
2630      * rest checking that each is a continuation */
2631
2632     /* This code makes the reasonable assumption that the only Latin1-range
2633      * characters that begin a character name alias are alphabetic, otherwise
2634      * would have to create a isCHARNAME_BEGIN macro */
2635
2636     if (! UTF) {
2637         if (! isALPHAU(*s)) {
2638             goto bad_charname;
2639         }
2640         s++;
2641         while (s < e) {
2642             if (! isCHARNAME_CONT(*s)) {
2643                 goto bad_charname;
2644             }
2645             if (*s == ' ' && *(s-1) == ' ') {
2646                 goto multi_spaces;
2647             }
2648             s++;
2649         }
2650     }
2651     else {
2652         /* Similarly for utf8.  For invariants can check directly; for other
2653          * Latin1, can calculate their code point and check; otherwise  use a
2654          * swash */
2655         if (UTF8_IS_INVARIANT(*s)) {
2656             if (! isALPHAU(*s)) {
2657                 goto bad_charname;
2658             }
2659             s++;
2660         } else if (UTF8_IS_DOWNGRADEABLE_START(*s)) {
2661             if (! isALPHAU(EIGHT_BIT_UTF8_TO_NATIVE(*s, *(s+1)))) {
2662                 goto bad_charname;
2663             }
2664             s += 2;
2665         }
2666         else {
2667             if (! PL_utf8_charname_begin) {
2668                 U8 flags = _CORE_SWASH_INIT_ACCEPT_INVLIST;
2669                 PL_utf8_charname_begin = _core_swash_init("utf8",
2670                                                         "_Perl_Charname_Begin",
2671                                                         &PL_sv_undef,
2672                                                         1, 0, NULL, &flags);
2673             }
2674             if (! swash_fetch(PL_utf8_charname_begin, (U8 *) s, TRUE)) {
2675                 goto bad_charname;
2676             }
2677             s += UTF8SKIP(s);
2678         }
2679
2680         while (s < e) {
2681             if (UTF8_IS_INVARIANT(*s)) {
2682                 if (! isCHARNAME_CONT(*s)) {
2683                     goto bad_charname;
2684                 }
2685                 if (*s == ' ' && *(s-1) == ' ') {
2686                     goto multi_spaces;
2687                 }
2688                 s++;
2689             }
2690             else if (UTF8_IS_DOWNGRADEABLE_START(*s)) {
2691                 if (! isCHARNAME_CONT(EIGHT_BIT_UTF8_TO_NATIVE(*s, *(s+1))))
2692                 {
2693                     goto bad_charname;
2694                 }
2695                 s += 2;
2696             }
2697             else {
2698                 if (! PL_utf8_charname_continue) {
2699                     U8 flags = _CORE_SWASH_INIT_ACCEPT_INVLIST;
2700                     PL_utf8_charname_continue = _core_swash_init("utf8",
2701                                                 "_Perl_Charname_Continue",
2702                                                 &PL_sv_undef,
2703                                                 1, 0, NULL, &flags);
2704                 }
2705                 if (! swash_fetch(PL_utf8_charname_continue, (U8 *) s, TRUE)) {
2706                     goto bad_charname;
2707                 }
2708                 s += UTF8SKIP(s);
2709             }
2710         }
2711     }
2712     if (*(s-1) == ' ') {
2713         /* diag_listed_as: charnames alias definitions may not contain
2714                            trailing white-space; marked by <-- HERE in %s
2715          */
2716         yyerror_pv(
2717             Perl_form(aTHX_
2718             "charnames alias definitions may not contain trailing "
2719             "white-space; marked by <-- HERE in %.*s<-- HERE %.*s",
2720             (int)(s - backslash_ptr + 1), backslash_ptr,
2721             (int)(e - s + 1), s + 1
2722             ),
2723         UTF ? SVf_UTF8 : 0);
2724         return NULL;
2725     }
2726
2727     if (SvUTF8(res)) { /* Don't accept malformed input */
2728         const U8* first_bad_char_loc;
2729         STRLEN len;
2730         const char* const str = SvPV_const(res, len);
2731         if (UNLIKELY(! is_utf8_string_loc((U8 *) str, len,
2732                                           &first_bad_char_loc)))
2733         {
2734             _force_out_malformed_utf8_message(first_bad_char_loc,
2735                                               (U8 *) PL_parser->bufend,
2736                                               0,
2737                                               0 /* 0 means don't die */ );
2738             /* diag_listed_as: Malformed UTF-8 returned by \N{%s}
2739                                immediately after '%s' */
2740             yyerror_pv(
2741               Perl_form(aTHX_
2742                 "Malformed UTF-8 returned by %.*s immediately after '%.*s'",
2743                  (int) (e - backslash_ptr + 1), backslash_ptr,
2744                  (int) ((char *) first_bad_char_loc - str), str
2745               ),
2746               SVf_UTF8);
2747             return NULL;
2748         }
2749     }
2750
2751     return res;
2752
2753   bad_charname: {
2754
2755         /* The final %.*s makes sure that should the trailing NUL be missing
2756          * that this print won't run off the end of the string */
2757         /* diag_listed_as: Invalid character in \N{...}; marked by <-- HERE
2758                            in \N{%s} */
2759         yyerror_pv(
2760           Perl_form(aTHX_
2761             "Invalid character in \\N{...}; marked by <-- HERE in %.*s<-- HERE %.*s",
2762             (int)(s - backslash_ptr + 1), backslash_ptr,
2763             (int)(e - s + 1), s + 1
2764           ),
2765           UTF ? SVf_UTF8 : 0);
2766         return NULL;
2767     }
2768
2769   multi_spaces:
2770         /* diag_listed_as: charnames alias definitions may not contain a
2771                            sequence of multiple spaces; marked by <-- HERE
2772                            in %s */
2773         yyerror_pv(
2774           Perl_form(aTHX_
2775             "charnames alias definitions may not contain a sequence of "
2776             "multiple spaces; marked by <-- HERE in %.*s<-- HERE %.*s",
2777             (int)(s - backslash_ptr + 1), backslash_ptr,
2778             (int)(e - s + 1), s + 1
2779           ),
2780           UTF ? SVf_UTF8 : 0);
2781         return NULL;
2782 }
2783
2784 /*
2785   scan_const
2786
2787   Extracts the next constant part of a pattern, double-quoted string,
2788   or transliteration.  This is terrifying code.
2789
2790   For example, in parsing the double-quoted string "ab\x63$d", it would
2791   stop at the '$' and return an OP_CONST containing 'abc'.
2792
2793   It looks at PL_lex_inwhat and PL_lex_inpat to find out whether it's
2794   processing a pattern (PL_lex_inpat is true), a transliteration
2795   (PL_lex_inwhat == OP_TRANS is true), or a double-quoted string.
2796
2797   Returns a pointer to the character scanned up to. If this is
2798   advanced from the start pointer supplied (i.e. if anything was
2799   successfully parsed), will leave an OP_CONST for the substring scanned
2800   in pl_yylval. Caller must intuit reason for not parsing further
2801   by looking at the next characters herself.
2802
2803   In patterns:
2804     expand:
2805       \N{FOO}  => \N{U+hex_for_character_FOO}
2806       (if FOO expands to multiple characters, expands to \N{U+xx.XX.yy ...})
2807
2808     pass through:
2809         all other \-char, including \N and \N{ apart from \N{ABC}
2810
2811     stops on:
2812         @ and $ where it appears to be a var, but not for $ as tail anchor
2813         \l \L \u \U \Q \E
2814         (?{  or  (??{
2815
2816   In transliterations:
2817     characters are VERY literal, except for - not at the start or end
2818     of the string, which indicates a range.  However some backslash sequences
2819     are recognized: \r, \n, and the like
2820                     \007 \o{}, \x{}, \N{}
2821     If all elements in the transliteration are below 256,
2822     scan_const expands the range to the full set of intermediate
2823     characters. If the range is in utf8, the hyphen is replaced with
2824     a certain range mark which will be handled by pmtrans() in op.c.
2825
2826   In double-quoted strings:
2827     backslashes:
2828       all those recognized in transliterations
2829       deprecated backrefs: \1 (in substitution replacements)
2830       case and quoting: \U \Q \E
2831     stops on @ and $
2832
2833   scan_const does *not* construct ops to handle interpolated strings.
2834   It stops processing as soon as it finds an embedded $ or @ variable
2835   and leaves it to the caller to work out what's going on.
2836
2837   embedded arrays (whether in pattern or not) could be:
2838       @foo, @::foo, @'foo, @{foo}, @$foo, @+, @-.
2839
2840   $ in double-quoted strings must be the symbol of an embedded scalar.
2841
2842   $ in pattern could be $foo or could be tail anchor.  Assumption:
2843   it's a tail anchor if $ is the last thing in the string, or if it's
2844   followed by one of "()| \r\n\t"
2845
2846   \1 (backreferences) are turned into $1 in substitutions
2847
2848   The structure of the code is
2849       while (there's a character to process) {
2850           handle transliteration ranges
2851           skip regexp comments /(?#comment)/ and codes /(?{code})/
2852           skip #-initiated comments in //x patterns
2853           check for embedded arrays
2854           check for embedded scalars
2855           if (backslash) {
2856               deprecate \1 in substitution replacements
2857               handle string-changing backslashes \l \U \Q \E, etc.
2858               switch (what was escaped) {
2859                   handle \- in a transliteration (becomes a literal -)
2860                   if a pattern and not \N{, go treat as regular character
2861                   handle \132 (octal characters)
2862                   handle \x15 and \x{1234} (hex characters)
2863                   handle \N{name} (named characters, also \N{3,5} in a pattern)
2864                   handle \cV (control characters)
2865                   handle printf-style backslashes (\f, \r, \n, etc)
2866               } (end switch)
2867               continue
2868           } (end if backslash)
2869           handle regular character
2870     } (end while character to read)
2871
2872 */
2873
2874 STATIC char *
2875 S_scan_const(pTHX_ char *start)
2876 {
2877     char *send = PL_bufend;             /* end of the constant */
2878     SV *sv = newSV(send - start);       /* sv for the constant.  See note below
2879                                            on sizing. */
2880     char *s = start;                    /* start of the constant */
2881     char *d = SvPVX(sv);                /* destination for copies */
2882     bool dorange = FALSE;               /* are we in a translit range? */
2883     bool didrange = FALSE;              /* did we just finish a range? */
2884     bool in_charclass = FALSE;          /* within /[...]/ */
2885     bool has_utf8 = FALSE;              /* Output constant is UTF8 */
2886     bool  this_utf8 = cBOOL(UTF);       /* Is the source string assumed to be
2887                                            UTF8?  But, this can show as true
2888                                            when the source isn't utf8, as for
2889                                            example when it is entirely composed
2890                                            of hex constants */
2891     STRLEN utf8_variant_count = 0;      /* When not in UTF-8, this counts the
2892                                            number of characters found so far
2893                                            that will expand (into 2 bytes)
2894                                            should we have to convert to
2895                                            UTF-8) */
2896     SV *res;                            /* result from charnames */
2897     STRLEN offset_to_max;   /* The offset in the output to where the range
2898                                high-end character is temporarily placed */
2899
2900     /* Does something require special handling in tr/// ?  This avoids extra
2901      * work in a less likely case.  As such, khw didn't feel it was worth
2902      * adding any branches to the more mainline code to handle this, which
2903      * means that this doesn't get set in some circumstances when things like
2904      * \x{100} get expanded out.  As a result there needs to be extra testing
2905      * done in the tr code */
2906     bool has_above_latin1 = FALSE;
2907
2908     /* Note on sizing:  The scanned constant is placed into sv, which is
2909      * initialized by newSV() assuming one byte of output for every byte of
2910      * input.  This routine expects newSV() to allocate an extra byte for a
2911      * trailing NUL, which this routine will append if it gets to the end of
2912      * the input.  There may be more bytes of input than output (eg., \N{LATIN
2913      * CAPITAL LETTER A}), or more output than input if the constant ends up
2914      * recoded to utf8, but each time a construct is found that might increase
2915      * the needed size, SvGROW() is called.  Its size parameter each time is
2916      * based on the best guess estimate at the time, namely the length used so
2917      * far, plus the length the current construct will occupy, plus room for
2918      * the trailing NUL, plus one byte for every input byte still unscanned */
2919
2920     UV uv = UV_MAX; /* Initialize to weird value to try to catch any uses
2921                        before set */
2922 #ifdef EBCDIC
2923     int backslash_N = 0;            /* ? was the character from \N{} */
2924     int non_portable_endpoint = 0;  /* ? In a range is an endpoint
2925                                        platform-specific like \x65 */
2926 #endif
2927
2928     PERL_ARGS_ASSERT_SCAN_CONST;
2929
2930     assert(PL_lex_inwhat != OP_TRANSR);
2931     if (PL_lex_inwhat == OP_TRANS && PL_parser->lex_sub_op) {
2932         /* If we are doing a trans and we know we want UTF8 set expectation */
2933         has_utf8   = PL_parser->lex_sub_op->op_private & (OPpTRANS_FROM_UTF|OPpTRANS_TO_UTF);
2934         this_utf8  = PL_parser->lex_sub_op->op_private & (PL_lex_repl ? OPpTRANS_FROM_UTF : OPpTRANS_TO_UTF);
2935     }
2936
2937     /* Protect sv from errors and fatal warnings. */
2938     ENTER_with_name("scan_const");
2939     SAVEFREESV(sv);
2940
2941     while (s < send
2942            || dorange   /* Handle tr/// range at right edge of input */
2943     ) {
2944
2945         /* get transliterations out of the way (they're most literal) */
2946         if (PL_lex_inwhat == OP_TRANS) {
2947
2948             /* But there isn't any special handling necessary unless there is a
2949              * range, so for most cases we just drop down and handle the value
2950              * as any other.  There are two exceptions.
2951              *
2952              * 1.  A hyphen indicates that we are actually going to have a
2953              *     range.  In this case, skip the '-', set a flag, then drop
2954              *     down to handle what should be the end range value.
2955              * 2.  After we've handled that value, the next time through, that
2956              *     flag is set and we fix up the range.
2957              *
2958              * Ranges entirely within Latin1 are expanded out entirely, in
2959              * order to make the transliteration a simple table look-up.
2960              * Ranges that extend above Latin1 have to be done differently, so
2961              * there is no advantage to expanding them here, so they are
2962              * stored here as Min, ILLEGAL_UTF8_BYTE, Max.  The illegal byte
2963              * signifies a hyphen without any possible ambiguity.  On EBCDIC
2964              * machines, if the range is expressed as Unicode, the Latin1
2965              * portion is expanded out even if the range extends above
2966              * Latin1.  This is because each code point in it has to be
2967              * processed here individually to get its native translation */
2968
2969             if (! dorange) {
2970
2971                 /* Here, we don't think we're in a range.  If the new character
2972                  * is not a hyphen; or if it is a hyphen, but it's too close to
2973                  * either edge to indicate a range, or if we haven't output any
2974                  * characters yet then it's a regular character. */
2975                 if (*s != '-' || s >= send - 1 || s == start || d == SvPVX(sv)) {
2976
2977                     /* A regular character.  Process like any other, but first
2978                      * clear any flags */
2979                     didrange = FALSE;
2980                     dorange = FALSE;
2981 #ifdef EBCDIC
2982                     non_portable_endpoint = 0;
2983                     backslash_N = 0;
2984 #endif
2985                     /* The tests here for being above Latin1 and similar ones
2986                      * in the following 'else' suffice to find all such
2987                      * occurences in the constant, except those added by a
2988                      * backslash escape sequence, like \x{100}.  Mostly, those
2989                      * set 'has_above_latin1' as appropriate */
2990                     if (this_utf8 && UTF8_IS_ABOVE_LATIN1(*s)) {
2991                         has_above_latin1 = TRUE;
2992                     }
2993
2994                     /* Drops down to generic code to process current byte */
2995                 }
2996                 else {  /* Is a '-' in the context where it means a range */
2997                     if (didrange) { /* Something like y/A-C-Z// */
2998                         Perl_croak(aTHX_ "Ambiguous range in transliteration"
2999                                          " operator");
3000                     }
3001
3002                     dorange = TRUE;
3003
3004                     s++;    /* Skip past the hyphen */
3005
3006                     /* d now points to where the end-range character will be
3007                      * placed.  Save it so won't have to go finding it later,
3008                      * and drop down to get that character.  (Actually we
3009                      * instead save the offset, to handle the case where a
3010                      * realloc in the meantime could change the actual
3011                      * pointer).  We'll finish processing the range the next
3012                      * time through the loop */
3013                     offset_to_max = d - SvPVX_const(sv);
3014
3015                     if (this_utf8 && UTF8_IS_ABOVE_LATIN1(*s)) {
3016                         has_above_latin1 = TRUE;
3017                     }
3018
3019                     /* Drops down to generic code to process current byte */
3020                 }
3021             }  /* End of not a range */
3022             else {
3023                 /* Here we have parsed a range.  Now must handle it.  At this
3024                  * point:
3025                  * 'sv' is a SV* that contains the output string we are
3026                  *      constructing.  The final two characters in that string
3027                  *      are the range start and range end, in order.
3028                  * 'd'  points to just beyond the range end in the 'sv' string,
3029                  *      where we would next place something
3030                  * 'offset_to_max' is the offset in 'sv' at which the character
3031                  *      (the range's maximum end point) before 'd'  begins.
3032                  */
3033                 char * max_ptr = SvPVX(sv) + offset_to_max;
3034                 char * min_ptr;
3035                 IV range_min;
3036                 IV range_max;   /* last character in range */
3037                 STRLEN grow;
3038                 Size_t offset_to_min = 0;
3039                 Size_t extras = 0;
3040 #ifdef EBCDIC
3041                 bool convert_unicode;
3042                 IV real_range_max = 0;
3043 #endif
3044                 /* Get the code point values of the range ends. */
3045                 if (has_utf8) {
3046                     /* We know the utf8 is valid, because we just constructed
3047                      * it ourselves in previous loop iterations */
3048                     min_ptr = (char*) utf8_hop( (U8*) max_ptr, -1);
3049                     range_min = valid_utf8_to_uvchr( (U8*) min_ptr, NULL);
3050                     range_max = valid_utf8_to_uvchr( (U8*) max_ptr, NULL);
3051
3052                     /* This compensates for not all code setting
3053                      * 'has_above_latin1', so that we don't skip stuff that
3054                      * should be executed */
3055                     if (range_max > 255) {
3056                         has_above_latin1 = TRUE;
3057                     }
3058                 }
3059                 else {
3060                     min_ptr = max_ptr - 1;
3061                     range_min = * (U8*) min_ptr;
3062                     range_max = * (U8*) max_ptr;
3063                 }
3064
3065                 /* If the range is just a single code point, like tr/a-a/.../,
3066                  * that code point is already in the output, twice.  We can
3067                  * just back up over the second instance and avoid all the rest
3068                  * of the work.  But if it is a variant character, it's been
3069                  * counted twice, so decrement.  (This unlikely scenario is
3070                  * special cased, like the one for a range of 2 code points
3071                  * below, only because the main-line code below needs a range
3072                  * of 3 or more to work without special casing.  Might as well
3073                  * get it out of the way now.) */
3074                 if (UNLIKELY(range_max == range_min)) {
3075                     d = max_ptr;
3076                     if (! has_utf8 && ! UVCHR_IS_INVARIANT(range_max)) {
3077                         utf8_variant_count--;
3078                     }
3079                     goto range_done;
3080                 }
3081
3082 #ifdef EBCDIC
3083                 /* On EBCDIC platforms, we may have to deal with portable
3084                  * ranges.  These happen if at least one range endpoint is a
3085                  * Unicode value (\N{...}), or if the range is a subset of
3086                  * [A-Z] or [a-z], and both ends are literal characters,
3087                  * like 'A', and not like \x{C1} */
3088                 convert_unicode =
3089                                cBOOL(backslash_N)   /* \N{} forces Unicode,
3090                                                        hence portable range */
3091                     || (     ! non_portable_endpoint
3092                         && ((  isLOWER_A(range_min) && isLOWER_A(range_max))
3093                            || (isUPPER_A(range_min) && isUPPER_A(range_max))));
3094                 if (convert_unicode) {
3095
3096                     /* Special handling is needed for these portable ranges.
3097                      * They are defined to be in Unicode terms, which includes
3098                      * all the Unicode code points between the end points.
3099                      * Convert to Unicode to get the Unicode range.  Later we
3100                      * will convert each code point in the range back to
3101                      * native.  */
3102                     range_min = NATIVE_TO_UNI(range_min);
3103                     range_max = NATIVE_TO_UNI(range_max);
3104                 }
3105 #endif
3106
3107                 if (range_min > range_max) {
3108 #ifdef EBCDIC
3109                     if (convert_unicode) {
3110                         /* Need to convert back to native for meaningful
3111                          * messages for this platform */
3112                         range_min = UNI_TO_NATIVE(range_min);
3113                         range_max = UNI_TO_NATIVE(range_max);
3114                     }
3115 #endif
3116                     /* Use the characters themselves for the error message if
3117                      * ASCII printables; otherwise some visible representation
3118                      * of them */
3119                     if (isPRINT_A(range_min) && isPRINT_A(range_max)) {
3120                         Perl_croak(aTHX_
3121                          "Invalid range \"%c-%c\" in transliteration operator",
3122                          (char)range_min, (char)range_max);
3123                     }
3124 #ifdef EBCDIC
3125                     else if (convert_unicode) {
3126         /* diag_listed_as: Invalid range "%s" in transliteration operator */
3127                         Perl_croak(aTHX_
3128                            "Invalid range \"\\N{U+%04" UVXf "}-\\N{U+%04"
3129                            UVXf "}\" in transliteration operator",
3130                            range_min, range_max);
3131                     }
3132 #endif
3133                     else {
3134         /* diag_listed_as: Invalid range "%s" in transliteration operator */
3135                         Perl_croak(aTHX_
3136                            "Invalid range \"\\x{%04" UVXf "}-\\x{%04" UVXf "}\""
3137                            " in transliteration operator",
3138                            range_min, range_max);
3139                     }
3140                 }
3141
3142                 /* If the range is exactly two code points long, they are
3143                  * already both in the output */
3144                 if (UNLIKELY(range_min + 1 == range_max)) {
3145                     goto range_done;
3146                 }
3147
3148                 /* Here the range contains at least 3 code points */
3149
3150                 if (has_utf8) {
3151
3152                     /* If everything in the transliteration is below 256, we
3153                      * can avoid special handling later.  A translation table
3154                      * for each of those bytes is created by op.c.  So we
3155                      * expand out all ranges to their constituent code points.
3156                      * But if we've encountered something above 255, the
3157                      * expanding won't help, so skip doing that.  But if it's
3158                      * EBCDIC, we may have to look at each character below 256
3159                      * if we have to convert to/from Unicode values */
3160                     if (   has_above_latin1
3161 #ifdef EBCDIC
3162                         && (range_min > 255 || ! convert_unicode)
3163 #endif
3164                     ) {
3165                         /* Move the high character one byte to the right; then
3166                          * insert between it and the range begin, an illegal
3167                          * byte which serves to indicate this is a range (using
3168                          * a '-' would be ambiguous). */
3169                         char *e = d++;
3170                         while (e-- > max_ptr) {
3171                             *(e + 1) = *e;
3172                         }
3173                         *(e + 1) = (char) ILLEGAL_UTF8_BYTE;
3174                         goto range_done;
3175                     }
3176
3177                     /* Here, we're going to expand out the range.  For EBCDIC
3178                      * the range can extend above 255 (not so in ASCII), so
3179                      * for EBCDIC, split it into the parts above and below
3180                      * 255/256 */
3181 #ifdef EBCDIC
3182                     if (range_max > 255) {
3183                         real_range_max = range_max;
3184                         range_max = 255;
3185                     }
3186 #endif
3187                 }
3188
3189                 /* Here we need to expand out the string to contain each
3190                  * character in the range.  Grow the output to handle this.
3191                  * For non-UTF8, we need a byte for each code point in the
3192                  * range, minus the three that we've already allocated for: the
3193                  * hyphen, the min, and the max.  For UTF-8, we need this
3194                  * plus an extra byte for each code point that occupies two
3195                  * bytes (is variant) when in UTF-8 (except we've already
3196                  * allocated for the end points, including if they are
3197                  * variants).  For ASCII platforms and Unicode ranges on EBCDIC
3198                  * platforms, it's easy to calculate a precise number.  To
3199                  * start, we count the variants in the range, which we need
3200                  * elsewhere in this function anyway.  (For the case where it
3201                  * isn't easy to calculate, 'extras' has been initialized to 0,
3202                  * and the calculation is done in a loop further down.) */
3203 #ifdef EBCDIC
3204                 if (convert_unicode)
3205 #endif
3206                 {
3207                     /* This is executed unconditionally on ASCII, and for
3208                      * Unicode ranges on EBCDIC.  Under these conditions, all
3209                      * code points above a certain value are variant; and none
3210                      * under that value are.  We just need to find out how much
3211                      * of the range is above that value.  We don't count the
3212                      * end points here, as they will already have been counted
3213                      * as they were parsed. */
3214                     if (range_min >= UTF_CONTINUATION_MARK) {
3215
3216                         /* The whole range is made up of variants */
3217                         extras = (range_max - 1) - (range_min + 1) + 1;
3218                     }
3219                     else if (range_max >= UTF_CONTINUATION_MARK) {
3220
3221                         /* Only the higher portion of the range is variants */
3222                         extras = (range_max - 1) - UTF_CONTINUATION_MARK + 1;
3223                     }
3224
3225                     utf8_variant_count += extras;
3226                 }
3227
3228                 /* The base growth is the number of code points in the range,
3229                  * not including the endpoints, which have already been sized
3230                  * for (and output).  We don't subtract for the hyphen, as it
3231                  * has been parsed but not output, and the SvGROW below is
3232                  * based only on what's been output plus what's left to parse.
3233                  * */
3234                 grow = (range_max - 1) - (range_min + 1) + 1;
3235
3236                 if (has_utf8) {
3237 #ifdef EBCDIC
3238                     /* In some cases in EBCDIC, we haven't yet calculated a
3239                      * precise amount needed for the UTF-8 variants.  Just
3240                      * assume the worst case, that everything will expand by a
3241                      * byte */
3242                     if (! convert_unicode) {
3243                         grow *= 2;
3244                     }
3245                     else
3246 #endif
3247                     {
3248                         /* Otherwise we know exactly how many variants there
3249                          * are in the range. */
3250                         grow += extras;
3251                     }
3252                 }
3253
3254                 /* Grow, but position the output to overwrite the range min end
3255                  * point, because in some cases we overwrite that */
3256                 SvCUR_set(sv, d - SvPVX_const(sv));
3257                 offset_to_min = min_ptr - SvPVX_const(sv);
3258
3259                 /* See Note on sizing above. */
3260                 d = offset_to_min + SvGROW(sv, SvCUR(sv)
3261                                              + (send - s)
3262                                              + grow
3263                                              + 1 /* Trailing NUL */ );
3264
3265                 /* Now, we can expand out the range. */
3266 #ifdef EBCDIC
3267                 if (convert_unicode) {
3268                     SSize_t i;
3269
3270                     /* Recall that the min and max are now in Unicode terms, so
3271                      * we have to convert each character to its native
3272                      * equivalent */
3273                     if (has_utf8) {
3274                         for (i = range_min; i <= range_max; i++) {
3275                             append_utf8_from_native_byte(
3276                                                     LATIN1_TO_NATIVE((U8) i),
3277                                                     (U8 **) &d);
3278                         }
3279                     }
3280                     else {
3281                         for (i = range_min; i <= range_max; i++) {
3282                             *d++ = (char)LATIN1_TO_NATIVE((U8) i);
3283                         }
3284                     }
3285                 }
3286                 else
3287 #endif
3288                 /* Always gets run for ASCII, and sometimes for EBCDIC. */
3289                 {
3290                     /* Here, no conversions are necessary, which means that the
3291                      * first character in the range is already in 'd' and
3292                      * valid, so we can skip overwriting it */
3293                     if (has_utf8) {
3294                         SSize_t i;
3295                         d += UTF8SKIP(d);
3296                         for (i = range_min + 1; i <= range_max; i++) {
3297                             append_utf8_from_native_byte((U8) i, (U8 **) &d);
3298                         }
3299                     }
3300                     else {
3301                         SSize_t i;
3302                         d++;
3303                         assert(range_min + 1 <= range_max);
3304                         for (i = range_min + 1; i < range_max; i++) {
3305 #ifdef EBCDIC
3306                             /* In this case on EBCDIC, we haven't calculated
3307                              * the variants.  Do it here, as we go along */
3308                             if (! UVCHR_IS_INVARIANT(i)) {
3309                                 utf8_variant_count++;
3310                             }
3311 #endif
3312                             *d++ = (char)i;
3313                         }
3314
3315                         /* The range_max is done outside the loop so as to
3316                          * avoid having to special case not incrementing
3317                          * 'utf8_variant_count' on EBCDIC (it's already been
3318                          * counted when originally parsed) */
3319                         *d++ = (char) range_max;
3320                     }
3321                 }
3322
3323 #ifdef EBCDIC
3324                 /* If the original range extended above 255, add in that
3325                  * portion. */
3326                 if (real_range_max) {
3327                     *d++ = (char) UTF8_TWO_BYTE_HI(0x100);
3328                     *d++ = (char) UTF8_TWO_BYTE_LO(0x100);
3329                     if (real_range_max > 0x100) {
3330                         if (real_range_max > 0x101) {
3331                             *d++ = (char) ILLEGAL_UTF8_BYTE;
3332                         }
3333                         d = (char*)uvchr_to_utf8((U8*)d, real_range_max);
3334                     }
3335                 }
3336 #endif
3337
3338               range_done:
3339                 /* mark the range as done, and continue */
3340                 didrange = TRUE;
3341                 dorange = FALSE;
3342 #ifdef EBCDIC
3343                 non_portable_endpoint = 0;
3344                 backslash_N = 0;
3345 #endif
3346                 continue;
3347             } /* End of is a range */
3348         } /* End of transliteration.  Joins main code after these else's */
3349         else if (*s == '[' && PL_lex_inpat && !in_charclass) {
3350             char *s1 = s-1;
3351             int esc = 0;
3352             while (s1 >= start && *s1-- == '\\')
3353                 esc = !esc;
3354             if (!esc)
3355                 in_charclass = TRUE;
3356         }
3357         else if (*s == ']' && PL_lex_inpat && in_charclass) {
3358             char *s1 = s-1;
3359             int esc = 0;
3360             while (s1 >= start && *s1-- == '\\')
3361                 esc = !esc;
3362             if (!esc)
3363                 in_charclass = FALSE;
3364         }
3365             /* skip for regexp comments /(?#comment)/, except for the last
3366              * char, which will be done separately.  Stop on (?{..}) and
3367              * friends */
3368         else if (*s == '(' && PL_lex_inpat && s[1] == '?' && !in_charclass) {
3369             if (s[2] == '#') {
3370                 while (s+1 < send && *s != ')')
3371                     *d++ = *s++;
3372             }
3373             else if (!PL_lex_casemods
3374                      && (    s[2] == '{' /* This should match regcomp.c */
3375                          || (s[2] == '?' && s[3] == '{')))
3376             {
3377                 break;
3378             }
3379         }
3380             /* likewise skip #-initiated comments in //x patterns */
3381         else if (*s == '#'
3382                  && PL_lex_inpat
3383                  && !in_charclass
3384                  && ((PMOP*)PL_lex_inpat)->op_pmflags & RXf_PMf_EXTENDED)
3385         {
3386             while (s < send && *s != '\n')
3387                 *d++ = *s++;
3388         }
3389             /* no further processing of single-quoted regex */
3390         else if (PL_lex_inpat && SvIVX(PL_linestr) == '\'')
3391             goto default_action;
3392
3393             /* check for embedded arrays
3394              * (@foo, @::foo, @'foo, @{foo}, @$foo, @+, @-)
3395              */
3396         else if (*s == '@' && s[1]) {
3397             if (UTF
3398                ? isIDFIRST_utf8_safe(s+1, send)
3399                : isWORDCHAR_A(s[1]))
3400             {
3401                 break;
3402             }
3403             if (strchr(":'{$", s[1]))
3404                 break;
3405             if (!PL_lex_inpat && (s[1] == '+' || s[1] == '-'))
3406                 break; /* in regexp, neither @+ nor @- are interpolated */
3407         }
3408             /* check for embedded scalars.  only stop if we're sure it's a
3409              * variable.  */
3410         else if (*s == '$') {
3411             if (!PL_lex_inpat)  /* not a regexp, so $ must be var */
3412                 break;
3413             if (s + 1 < send && !strchr("()| \r\n\t", s[1])) {
3414                 if (s[1] == '\\') {
3415                     Perl_ck_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
3416                                    "Possible unintended interpolation of $\\ in regex");
3417                 }
3418                 break;          /* in regexp, $ might be tail anchor */
3419             }
3420         }
3421
3422         /* End of else if chain - OP_TRANS rejoin rest */
3423
3424         if (UNLIKELY(s >= send)) {
3425             assert(s == send);
3426             break;
3427         }
3428
3429         /* backslashes */
3430         if (*s == '\\' && s+1 < send) {
3431             char* e;    /* Can be used for ending '}', etc. */
3432
3433             s++;
3434
3435             /* warn on \1 - \9 in substitution replacements, but note that \11
3436              * is an octal; and \19 is \1 followed by '9' */
3437             if (PL_lex_inwhat == OP_SUBST
3438                 && !PL_lex_inpat
3439                 && isDIGIT(*s)
3440                 && *s != '0'
3441                 && !isDIGIT(s[1]))
3442             {
3443                 /* diag_listed_as: \%d better written as $%d */
3444                 Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX), "\\%c better written as $%c", *s, *s);
3445                 *--s = '$';
3446                 break;
3447             }
3448
3449             /* string-change backslash escapes */
3450             if (PL_lex_inwhat != OP_TRANS && *s && strchr("lLuUEQF", *s)) {
3451                 --s;
3452                 break;
3453             }
3454             /* In a pattern, process \N, but skip any other backslash escapes.
3455              * This is because we don't want to translate an escape sequence
3456              * into a meta symbol and have the regex compiler use the meta
3457              * symbol meaning, e.g. \x{2E} would be confused with a dot.  But
3458              * in spite of this, we do have to process \N here while the proper
3459              * charnames handler is in scope.  See bugs #56444 and #62056.
3460              *
3461              * There is a complication because \N in a pattern may also stand
3462              * for 'match a non-nl', and not mean a charname, in which case its
3463              * processing should be deferred to the regex compiler.  To be a
3464              * charname it must be followed immediately by a '{', and not look
3465              * like \N followed by a curly quantifier, i.e., not something like
3466              * \N{3,}.  regcurly returns a boolean indicating if it is a legal
3467              * quantifier */
3468             else if (PL_lex_inpat
3469                     && (*s != 'N'
3470                         || s[1] != '{'
3471                         || regcurly(s + 1)))
3472             {
3473                 *d++ = '\\';
3474                 goto default_action;
3475             }
3476
3477             switch (*s) {
3478             default:
3479                 {
3480                     if ((isALPHANUMERIC(*s)))
3481                         Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
3482                                        "Unrecognized escape \\%c passed through",
3483                                        *s);
3484                     /* default action is to copy the quoted character */
3485                     goto default_action;
3486                 }
3487
3488             /* eg. \132 indicates the octal constant 0132 */
3489             case '0': case '1': case '2': case '3':
3490             case '4': case '5': case '6': case '7':
3491                 {
3492                     I32 flags = PERL_SCAN_SILENT_ILLDIGIT;
3493                     STRLEN len = 3;
3494                     uv = grok_oct(s, &len, &flags, NULL);
3495                     s += len;
3496                     if (len < 3 && s < send && isDIGIT(*s)
3497                         && ckWARN(WARN_MISC))
3498                     {
3499                         Perl_warner(aTHX_ packWARN(WARN_MISC),
3500                                     "%s", form_short_octal_warning(s, len));
3501                     }
3502                 }
3503                 goto NUM_ESCAPE_INSERT;
3504
3505             /* eg. \o{24} indicates the octal constant \024 */
3506             case 'o':
3507                 {
3508                     const char* error;
3509
3510                     bool valid = grok_bslash_o(&s, &uv, &error,
3511                                                TRUE, /* Output warning */
3512                                                FALSE, /* Not strict */
3513                                                TRUE, /* Output warnings for
3514                                                          non-portables */
3515                                                UTF);
3516                     if (! valid) {
3517                         yyerror(error);
3518                         uv = 0; /* drop through to ensure range ends are set */
3519                     }
3520                     goto NUM_ESCAPE_INSERT;
3521                 }
3522
3523             /* eg. \x24 indicates the hex constant 0x24 */
3524             case 'x':
3525                 {
3526                     const char* error;
3527
3528                     bool valid = grok_bslash_x(&s, &uv, &error,
3529                                                TRUE, /* Output warning */
3530                                                FALSE, /* Not strict */
3531                                                TRUE,  /* Output warnings for
3532                                                          non-portables */
3533                                                UTF);
3534                     if (! valid) {
3535                         yyerror(error);
3536                         uv = 0; /* drop through to ensure range ends are set */
3537                     }
3538                 }
3539
3540               NUM_ESCAPE_INSERT:
3541                 /* Insert oct or hex escaped character. */
3542
3543                 /* Here uv is the ordinal of the next character being added */
3544                 if (UVCHR_IS_INVARIANT(uv)) {
3545                     *d++ = (char) uv;
3546                 }
3547                 else {
3548                     if (!has_utf8 && uv > 255) {
3549
3550                         /* Here, 'uv' won't fit unless we convert to UTF-8.
3551                          * If we've only seen invariants so far, all we have to
3552                          * do is turn on the flag */
3553                         if (utf8_variant_count == 0) {
3554                             SvUTF8_on(sv);
3555                         }
3556                         else {
3557                             SvCUR_set(sv, d - SvPVX_const(sv));
3558                             SvPOK_on(sv);
3559                             *d = '\0';
3560
3561                             sv_utf8_upgrade_flags_grow(
3562                                            sv,
3563                                            SV_GMAGIC|SV_FORCE_UTF8_UPGRADE,
3564
3565                                            /* Since we're having to grow here,
3566                                             * make sure we have enough room for
3567                                             * this escape and a NUL, so the
3568                                             * code immediately below won't have
3569                                             * to actually grow again */
3570                                           UVCHR_SKIP(uv)
3571                                         + (STRLEN)(send - s) + 1);
3572                             d = SvPVX(sv) + SvCUR(sv);
3573                         }
3574
3575                         has_above_latin1 = TRUE;
3576                         has_utf8 = TRUE;
3577                     }
3578
3579                     if (! has_utf8) {
3580                         *d++ = (char)uv;
3581                         utf8_variant_count++;
3582                     }
3583                     else {
3584                        /* Usually, there will already be enough room in 'sv'
3585                         * since such escapes are likely longer than any UTF-8
3586                         * sequence they can end up as.  This isn't the case on
3587                         * EBCDIC where \x{40000000} contains 12 bytes, and the
3588                         * UTF-8 for it contains 14.  And, we have to allow for
3589                         * a trailing NUL.  It probably can't happen on ASCII
3590                         * platforms, but be safe.  See Note on sizing above. */
3591                         const STRLEN needed = d - SvPVX(sv)
3592                                             + UVCHR_SKIP(uv)
3593                                             + (send - s)
3594                                             + 1;
3595                         if (UNLIKELY(needed > SvLEN(sv))) {
3596                             SvCUR_set(sv, d - SvPVX_const(sv));
3597                             d = SvCUR(sv) + SvGROW(sv, needed);
3598                         }
3599
3600                         d = (char*)uvchr_to_utf8((U8*)d, uv);
3601                         if (PL_lex_inwhat == OP_TRANS
3602                             && PL_parser->lex_sub_op)
3603                         {
3604                             PL_parser->lex_sub_op->op_private |=
3605                                 (PL_lex_repl ? OPpTRANS_FROM_UTF
3606                                              : OPpTRANS_TO_UTF);
3607                         }
3608                     }
3609                 }
3610 #ifdef EBCDIC
3611                 non_portable_endpoint++;
3612 #endif
3613                 continue;
3614
3615             case 'N':
3616                 /* In a non-pattern \N must be like \N{U+0041}, or it can be a
3617                  * named character, like \N{LATIN SMALL LETTER A}, or a named
3618                  * sequence, like \N{LATIN CAPITAL LETTER A WITH MACRON AND
3619                  * GRAVE} (except y/// can't handle the latter, croaking).  For
3620                  * convenience all three forms are referred to as "named
3621                  * characters" below.
3622                  *
3623                  * For patterns, \N also can mean to match a non-newline.  Code
3624                  * before this 'switch' statement should already have handled
3625                  * this situation, and hence this code only has to deal with
3626                  * the named character cases.
3627                  *
3628                  * For non-patterns, the named characters are converted to
3629                  * their string equivalents.  In patterns, named characters are
3630                  * not converted to their ultimate forms for the same reasons
3631                  * that other escapes aren't (mainly that the ultimate
3632                  * character could be considered a meta-symbol by the regex
3633                  * compiler).  Instead, they are converted to the \N{U+...}
3634                  * form to get the value from the charnames that is in effect
3635                  * right now, while preserving the fact that it was a named
3636                  * character, so that the regex compiler knows this.
3637                  *
3638                  * The structure of this section of code (besides checking for
3639                  * errors and upgrading to utf8) is:
3640                  *    If the named character is of the form \N{U+...}, pass it
3641                  *      through if a pattern; otherwise convert the code point
3642                  *      to utf8
3643                  *    Otherwise must be some \N{NAME}: convert to
3644                  *      \N{U+c1.c2...} if a pattern; otherwise convert to utf8
3645                  *
3646                  * Transliteration is an exception.  The conversion to utf8 is
3647                  * only done if the code point requires it to be representable.
3648                  *
3649                  * Here, 's' points to the 'N'; the test below is guaranteed to
3650                  * succeed if we are being called on a pattern, as we already
3651                  * know from a test above that the next character is a '{'.  A
3652                  * non-pattern \N must mean 'named character', which requires
3653                  * braces */
3654                 s++;
3655                 if (*s != '{') {
3656                     yyerror("Missing braces on \\N{}");
3657                     *d++ = '\0';
3658                     continue;
3659                 }
3660                 s++;
3661
3662                 /* If there is no matching '}', it is an error. */
3663                 if (! (e = strchr(s, '}'))) {
3664                     if (! PL_lex_inpat) {
3665                         yyerror("Missing right brace on \\N{}");
3666                     } else {
3667                         yyerror("Missing right brace on \\N{} or unescaped left brace after \\N");
3668                     }
3669                     yyquit(); /* Have exhausted the input. */
3670                 }
3671
3672                 /* Here it looks like a named character */
3673
3674                 if (*s == 'U' && s[1] == '+') { /* \N{U+...} */
3675                     s += 2;         /* Skip to next char after the 'U+' */
3676                     if (PL_lex_inpat) {
3677
3678                         /* In patterns, we can have \N{U+xxxx.yyyy.zzzz...} */
3679                         /* Check the syntax.  */
3680                         const char *orig_s;
3681                         orig_s = s - 5;
3682                         if (!isXDIGIT(*s)) {
3683                           bad_NU:
3684                             yyerror(
3685                                 "Invalid hexadecimal number in \\N{U+...}"
3686                             );
3687                             s = e + 1;
3688                             *d++ = '\0';
3689                             continue;
3690                         }
3691                         while (++s < e) {
3692                             if (isXDIGIT(*s))
3693                                 continue;
3694                             else if ((*s == '.' || *s == '_')
3695                                   && isXDIGIT(s[1]))
3696                                 continue;
3697                             goto bad_NU;
3698                         }
3699
3700                         /* Pass everything through unchanged.
3701                          * +1 is for the '}' */
3702                         Copy(orig_s, d, e - orig_s + 1, char);
3703                         d += e - orig_s + 1;
3704                     }
3705                     else {  /* Not a pattern: convert the hex to string */
3706                         I32 flags = PERL_SCAN_ALLOW_UNDERSCORES
3707                                 | PERL_SCAN_SILENT_ILLDIGIT
3708                                 | PERL_SCAN_DISALLOW_PREFIX;
3709                         STRLEN len = e - s;
3710                         uv = grok_hex(s, &len, &flags, NULL);
3711                         if (len == 0 || (len != (STRLEN)(e - s)))
3712                             goto bad_NU;
3713
3714                          /* For non-tr///, if the destination is not in utf8,
3715                           * unconditionally recode it to be so.  This is
3716                           * because \N{} implies Unicode semantics, and scalars
3717                           * have to be in utf8 to guarantee those semantics.
3718                           * tr/// doesn't care about Unicode rules, so no need
3719                           * there to upgrade to UTF-8 for small enough code
3720                           * points */
3721                         if (! has_utf8 && (   uv > 0xFF
3722                                            || PL_lex_inwhat != OP_TRANS))
3723                         {
3724                             /* See Note on sizing above.  */
3725                             const STRLEN extra = OFFUNISKIP(uv) + (send - e) + 1;
3726
3727                             SvCUR_set(sv, d - SvPVX_const(sv));
3728                             SvPOK_on(sv);
3729                             *d = '\0';
3730
3731                             if (utf8_variant_count == 0) {
3732                                 SvUTF8_on(sv);
3733                                 d = SvCUR(sv) + SvGROW(sv, SvCUR(sv) + extra);
3734                             }
3735                             else {
3736                                 sv_utf8_upgrade_flags_grow(
3737                                                sv,
3738                                                SV_GMAGIC|SV_FORCE_UTF8_UPGRADE,
3739                                                extra);
3740                                 d = SvPVX(sv) + SvCUR(sv);
3741                             }
3742
3743                             has_utf8 = TRUE;
3744                             has_above_latin1 = TRUE;
3745                         }
3746
3747                         /* Add the (Unicode) code point to the output. */
3748                         if (! has_utf8 || OFFUNI_IS_INVARIANT(uv)) {
3749                             *d++ = (char) LATIN1_TO_NATIVE(uv);
3750                         }
3751                         else {
3752                             d = (char*) uvoffuni_to_utf8_flags((U8*)d, uv, 0);
3753                         }
3754                     }
3755                 }
3756                 else /* Here is \N{NAME} but not \N{U+...}. */
3757                      if ((res = get_and_check_backslash_N_name(s, e)))
3758                 {
3759                     STRLEN len;
3760                     const char *str = SvPV_const(res, len);
3761                     if (PL_lex_inpat) {
3762
3763                         if (! len) { /* The name resolved to an empty string */
3764                             Copy("\\N{}", d, 4, char);
3765                             d += 4;
3766                         }
3767                         else {
3768                             /* In order to not lose information for the regex
3769                             * compiler, pass the result in the specially made
3770                             * syntax: \N{U+c1.c2.c3...}, where c1 etc. are
3771                             * the code points in hex of each character
3772                             * returned by charnames */
3773
3774                             const char *str_end = str + len;
3775                             const STRLEN off = d - SvPVX_const(sv);
3776
3777                             if (! SvUTF8(res)) {
3778                                 /* For the non-UTF-8 case, we can determine the
3779                                  * exact length needed without having to parse
3780                                  * through the string.  Each character takes up
3781                                  * 2 hex digits plus either a trailing dot or
3782                                  * the "}" */
3783                                 const char initial_text[] = "\\N{U+";
3784                                 const STRLEN initial_len = sizeof(initial_text)
3785                                                            - 1;
3786                                 d = off + SvGROW(sv, off
3787                                                     + 3 * len
3788
3789                                                     /* +1 for trailing NUL */
3790                                                     + initial_len + 1
3791
3792                                                     + (STRLEN)(send - e));
3793                                 Copy(initial_text, d, initial_len, char);
3794                                 d += initial_len;
3795                                 while (str < str_end) {
3796                                     char hex_string[4];
3797                                     int len =
3798                                         my_snprintf(hex_string,
3799                                                   sizeof(hex_string),
3800                                                   "%02X.",
3801
3802                                                   /* The regex compiler is
3803                                                    * expecting Unicode, not
3804                                                    * native */
3805                                                   NATIVE_TO_LATIN1(*str));
3806                                     PERL_MY_SNPRINTF_POST_GUARD(len,
3807                                                            sizeof(hex_string));
3808                                     Copy(hex_string, d, 3, char);
3809                                     d += 3;
3810                                     str++;
3811                                 }
3812                                 d--;    /* Below, we will overwrite the final
3813                                            dot with a right brace */
3814                             }
3815                             else {
3816                                 STRLEN char_length; /* cur char's byte length */
3817
3818                                 /* and the number of bytes after this is
3819                                  * translated into hex digits */
3820                                 STRLEN output_length;
3821
3822                                 /* 2 hex per byte; 2 chars for '\N'; 2 chars
3823                                  * for max('U+', '.'); and 1 for NUL */
3824                                 char hex_string[2 * UTF8_MAXBYTES + 5];
3825
3826                                 /* Get the first character of the result. */
3827                                 U32 uv = utf8n_to_uvchr((U8 *) str,
3828                                                         len,
3829                                                         &char_length,
3830                                                         UTF8_ALLOW_ANYUV);
3831                                 /* Convert first code point to Unicode hex,
3832                                  * including the boiler plate before it. */
3833                                 output_length =
3834                                     my_snprintf(hex_string, sizeof(hex_string),
3835                                              "\\N{U+%X",
3836                                              (unsigned int) NATIVE_TO_UNI(uv));
3837
3838                                 /* Make sure there is enough space to hold it */
3839                                 d = off + SvGROW(sv, off
3840                                                     + output_length
3841                                                     + (STRLEN)(send - e)
3842                                                     + 2);       /* '}' + NUL */
3843                                 /* And output it */
3844                                 Copy(hex_string, d, output_length, char);
3845                                 d += output_length;
3846
3847                                 /* For each subsequent character, append dot and
3848                                 * its Unicode code point in hex */
3849                                 while ((str += char_length) < str_end) {
3850                                     const STRLEN off = d - SvPVX_const(sv);
3851                                     U32 uv = utf8n_to_uvchr((U8 *) str,
3852                                                             str_end - str,
3853                                                             &char_length,
3854                                                             UTF8_ALLOW_ANYUV);
3855                                     output_length =
3856                                         my_snprintf(hex_string,
3857                                              sizeof(hex_string),
3858                                              ".%X",
3859                                              (unsigned int) NATIVE_TO_UNI(uv));
3860
3861                                     d = off + SvGROW(sv, off
3862                                                         + output_length
3863                                                         + (STRLEN)(send - e)
3864                                                         + 2);   /* '}' +  NUL */
3865                                     Copy(hex_string, d, output_length, char);
3866                                     d += output_length;
3867                                 }
3868                             }
3869
3870                             *d++ = '}'; /* Done.  Add the trailing brace */
3871                         }
3872                     }
3873                     else { /* Here, not in a pattern.  Convert the name to a
3874                             * string. */
3875
3876                         if (PL_lex_inwhat == OP_TRANS) {
3877                             str = SvPV_const(res, len);
3878                             if (len > ((SvUTF8(res))
3879                                        ? UTF8SKIP(str)
3880                                        : 1U))
3881                             {
3882                                 yyerror(Perl_form(aTHX_
3883                                     "%.*s must not be a named sequence"
3884                                     " in transliteration operator",
3885                                         /*  +1 to include the "}" */
3886                                     (int) (e + 1 - start), start));
3887                                 *d++ = '\0';
3888                                 goto end_backslash_N;
3889                             }
3890
3891                             if (SvUTF8(res) && UTF8_IS_ABOVE_LATIN1(*str)) {
3892                                 has_above_latin1 = TRUE;
3893                             }
3894
3895                         }
3896                         else if (! SvUTF8(res)) {
3897                             /* Make sure \N{} return is UTF-8.  This is because
3898                              * \N{} implies Unicode semantics, and scalars have
3899                              * to be in utf8 to guarantee those semantics; but
3900                              * not needed in tr/// */
3901                             sv_utf8_upgrade_flags(res, 0);
3902                             str = SvPV_const(res, len);
3903                         }
3904
3905                          /* Upgrade destination to be utf8 if this new
3906                           * component is */
3907                         if (! has_utf8 && SvUTF8(res)) {
3908                             /* See Note on sizing above.  */
3909                             const STRLEN extra = len + (send - s) + 1;
3910
3911                             SvCUR_set(sv, d - SvPVX_const(sv));
3912                             SvPOK_on(sv);
3913                             *d = '\0';
3914
3915                             if (utf8_variant_count == 0) {
3916                                 SvUTF8_on(sv);
3917                                 d = SvCUR(sv) + SvGROW(sv, SvCUR(sv) + extra);
3918                             }
3919                             else {
3920                                 sv_utf8_upgrade_flags_grow(sv,
3921                                                 SV_GMAGIC|SV_FORCE_UTF8_UPGRADE,
3922                                                 extra);
3923                                 d = SvPVX(sv) + SvCUR(sv);
3924                             }
3925                             has_utf8 = TRUE;
3926                         } else if (len > (STRLEN)(e - s + 4)) { /* I _guess_ 4 is \N{} --jhi */
3927
3928                             /* See Note on sizing above.  (NOTE: SvCUR() is not
3929                              * set correctly here). */
3930                             const STRLEN extra = len + (send - e) + 1;
3931                             const STRLEN off = d - SvPVX_const(sv);
3932                             d = off + SvGROW(sv, off + extra);
3933                         }
3934                         Copy(str, d, len, char);
3935                         d += len;
3936                     }
3937
3938                     SvREFCNT_dec(res);
3939
3940                 } /* End \N{NAME} */
3941
3942               end_backslash_N:
3943 #ifdef EBCDIC
3944                 backslash_N++; /* \N{} is defined to be Unicode */
3945 #endif
3946                 s = e + 1;  /* Point to just after the '}' */
3947                 continue;
3948
3949             /* \c is a control character */
3950             case 'c':
3951                 s++;
3952                 if (s < send) {
3953                     *d++ = grok_bslash_c(*s, 1);
3954                 }
3955                 else {
3956                     yyerror("Missing control char name in \\c");
3957                     yyquit();   /* Are at end of input, no sense continuing */
3958                 }
3959 #ifdef EBCDIC
3960                 non_portable_endpoint++;
3961 #endif
3962                 break;
3963
3964             /* printf-style backslashes, formfeeds, newlines, etc */
3965             case 'b':
3966                 *d++ = '\b';
3967                 break;
3968             case 'n':
3969                 *d++ = '\n';
3970                 break;
3971             case 'r':
3972                 *d++ = '\r';
3973                 break;
3974             case 'f':
3975                 *d++ = '\f';
3976                 break;
3977             case 't':
3978                 *d++ = '\t';
3979                 break;
3980             case 'e':
3981                 *d++ = ESC_NATIVE;
3982                 break;
3983             case 'a':
3984                 *d++ = '\a';
3985                 break;
3986             } /* end switch */
3987
3988             s++;
3989             continue;
3990         } /* end if (backslash) */
3991
3992     default_action:
3993         /* Just copy the input to the output, though we may have to convert
3994          * to/from UTF-8.
3995          *
3996          * If the input has the same representation in UTF-8 as not, it will be
3997          * a single byte, and we don't care about UTF8ness; just copy the byte */
3998         if (NATIVE_BYTE_IS_INVARIANT((U8)(*s))) {
3999             *d++ = *s++;
4000         }
4001         else if (! this_utf8 && ! has_utf8) {
4002             /* If neither source nor output is UTF-8, is also a single byte,
4003              * just copy it; but this byte counts should we later have to
4004              * convert to UTF-8 */
4005             *d++ = *s++;
4006             utf8_variant_count++;
4007         }
4008         else if (this_utf8 && has_utf8) {   /* Both UTF-8, can just copy */
4009             const STRLEN len = UTF8SKIP(s);
4010
4011             /* We expect the source to have already been checked for
4012              * malformedness */
4013             assert(isUTF8_CHAR((U8 *) s, (U8 *) send));
4014
4015             Copy(s, d, len, U8);
4016             d += len;
4017             s += len;
4018         }
4019         else { /* UTF8ness matters and doesn't match, need to convert */
4020             STRLEN len = 1;
4021             const UV nextuv   = (this_utf8)
4022                                 ? utf8n_to_uvchr((U8*)s, send - s, &len, 0)
4023                                 : (UV) ((U8) *s);
4024             STRLEN need = UVCHR_SKIP(nextuv);
4025
4026             if (!has_utf8) {
4027                 SvCUR_set(sv, d - SvPVX_const(sv));
4028                 SvPOK_on(sv);
4029                 *d = '\0';
4030
4031                 /* See Note on sizing above. */
4032                 need += (STRLEN)(send - s) + 1;
4033
4034                 if (utf8_variant_count == 0) {
4035                     SvUTF8_on(sv);
4036                     d = SvCUR(sv) + SvGROW(sv, SvCUR(sv) + need);
4037                 }
4038                 else {
4039                     sv_utf8_upgrade_flags_grow(sv,
4040                                                SV_GMAGIC|SV_FORCE_UTF8_UPGRADE,
4041                                                need);
4042                     d = SvPVX(sv) + SvCUR(sv);
4043                 }
4044                 has_utf8 = TRUE;
4045             } else if (need > len) {
4046                 /* encoded value larger than old, may need extra space (NOTE:
4047                  * SvCUR() is not set correctly here).   See Note on sizing
4048                  * above.  */
4049                 const STRLEN extra = need + (send - s) + 1;
4050                 const STRLEN off = d - SvPVX_const(sv);
4051                 d = off + SvGROW(sv, off + extra);
4052             }
4053             s += len;
4054
4055             d = (char*)uvchr_to_utf8((U8*)d, nextuv);
4056         }
4057     } /* while loop to process each character */
4058
4059     /* terminate the string and set up the sv */
4060     *d = '\0';
4061     SvCUR_set(sv, d - SvPVX_const(sv));
4062     if (SvCUR(sv) >= SvLEN(sv))
4063         Perl_croak(aTHX_ "panic: constant overflowed allocated space, %" UVuf
4064                    " >= %" UVuf, (UV)SvCUR(sv), (UV)SvLEN(sv));
4065
4066     SvPOK_on(sv);
4067     if (has_utf8) {
4068         SvUTF8_on(sv);
4069         if (PL_lex_inwhat == OP_TRANS && PL_parser->lex_sub_op) {
4070             PL_parser->lex_sub_op->op_private |=
4071                     (PL_lex_repl ? OPpTRANS_FROM_UTF : OPpTRANS_TO_UTF);
4072         }
4073     }
4074
4075     /* shrink the sv if we allocated more than we used */
4076     if (SvCUR(sv) + 5 < SvLEN(sv)) {
4077         SvPV_shrink_to_cur(sv);
4078     }
4079
4080     /* return the substring (via pl_yylval) only if we parsed anything */
4081     if (s > start) {
4082         char *s2 = start;
4083         for (; s2 < s; s2++) {
4084             if (*s2 == '\n')
4085                 COPLINE_INC_WITH_HERELINES;
4086         }
4087         SvREFCNT_inc_simple_void_NN(sv);
4088         if (   (PL_hints & ( PL_lex_inpat ? HINT_NEW_RE : HINT_NEW_STRING ))
4089             && ! PL_parser->lex_re_reparsing)
4090         {
4091             const char *const key = PL_lex_inpat ? "qr" : "q";
4092             const STRLEN keylen = PL_lex_inpat ? 2 : 1;
4093             const char *type;
4094             STRLEN typelen;
4095
4096             if (PL_lex_inwhat == OP_TRANS) {
4097                 type = "tr";
4098                 typelen = 2;
4099             } else if (PL_lex_inwhat == OP_SUBST && !PL_lex_inpat) {
4100                 type = "s";
4101                 typelen = 1;
4102             } else if (PL_lex_inpat && SvIVX(PL_linestr) == '\'') {
4103                 type = "q";
4104                 typelen = 1;
4105             } else  {
4106                 type = "qq";
4107                 typelen = 2;
4108             }
4109
4110             sv = S_new_constant(aTHX_ start, s - start, key, keylen, sv, NULL,
4111                                 type, typelen);
4112         }
4113         pl_yylval.opval = newSVOP(OP_CONST, 0, sv);
4114     }
4115     LEAVE_with_name("scan_const");
4116     return s;
4117 }
4118
4119 /* S_intuit_more
4120  * Returns TRUE if there's more to the expression (e.g., a subscript),
4121  * FALSE otherwise.
4122  *
4123  * It deals with "$foo[3]" and /$foo[3]/ and /$foo[0123456789$]+/
4124  *
4125  * ->[ and ->{ return TRUE
4126  * ->$* ->$#* ->@* ->@[ ->@{ return TRUE if postderef_qq is enabled
4127  * { and [ outside a pattern are always subscripts, so return TRUE
4128  * if we're outside a pattern and it's not { or [, then return FALSE
4129  * if we're in a pattern and the first char is a {
4130  *   {4,5} (any digits around the comma) returns FALSE
4131  * if we're in a pattern and the first char is a [
4132  *   [] returns FALSE
4133  *   [SOMETHING] has a funky algorithm to decide whether it's a
4134  *      character class or not.  It has to deal with things like
4135  *      /$foo[-3]/ and /$foo[$bar]/ as well as /$foo[$\d]+/
4136  * anything else returns TRUE
4137  */
4138
4139 /* This is the one truly awful dwimmer necessary to conflate C and sed. */
4140
4141 STATIC int
4142 S_intuit_more(pTHX_ char *s)
4143 {
4144     PERL_ARGS_ASSERT_INTUIT_MORE;
4145
4146     if (PL_lex_brackets)
4147         return TRUE;
4148     if (*s == '-' && s[1] == '>' && (s[2] == '[' || s[2] == '{'))
4149         return TRUE;
4150     if (*s == '-' && s[1] == '>'
4151      && FEATURE_POSTDEREF_QQ_IS_ENABLED
4152      && ( (s[2] == '$' && (s[3] == '*' || (s[3] == '#' && s[4] == '*')))
4153         ||(s[2] == '@' && strchr("*[{",s[3])) ))
4154         return TRUE;
4155     if (*s != '{' && *s != '[')
4156         return FALSE;
4157     if (!PL_lex_inpat)
4158         return TRUE;
4159
4160     /* In a pattern, so maybe we have {n,m}. */
4161     if (*s == '{') {
4162         if (regcurly(s)) {
4163             return FALSE;
4164         }
4165         return TRUE;
4166     }
4167
4168     /* On the other hand, maybe we have a character class */
4169
4170     s++;
4171     if (*s == ']' || *s == '^')
4172         return FALSE;
4173     else {
4174         /* this is terrifying, and it works */
4175         int weight;
4176         char seen[256];
4177         const char * const send = strchr(s,']');
4178         unsigned char un_char, last_un_char;
4179         char tmpbuf[sizeof PL_tokenbuf * 4];
4180
4181         if (!send)              /* has to be an expression */
4182             return TRUE;
4183         weight = 2;             /* let's weigh the evidence */
4184
4185         if (*s == '$')
4186             weight -= 3;
4187         else if (isDIGIT(*s)) {
4188             if (s[1] != ']') {
4189                 if (isDIGIT(s[1]) && s[2] == ']')
4190                     weight -= 10;
4191             }
4192             else
4193                 weight -= 100;
4194         }
4195         Zero(seen,256,char);
4196         un_char = 255;
4197         for (; s < send; s++) {
4198             last_un_char = un_char;
4199             un_char = (unsigned char)*s;
4200             switch (*s) {
4201             case '@':
4202             case '&':
4203             case '$':
4204                 weight -= seen[un_char] * 10;
4205                 if (isWORDCHAR_lazy_if_safe(s+1, PL_bufend, UTF)) {
4206                     int len;
4207                     scan_ident(s, tmpbuf, sizeof tmpbuf, FALSE);
4208                     len = (int)strlen(tmpbuf);
4209                     if (len > 1 && gv_fetchpvn_flags(tmpbuf, len,
4210                                                     UTF ? SVf_UTF8 : 0, SVt_PV))
4211                         weight -= 100;
4212                     else
4213                         weight -= 10;
4214                 }
4215                 else if (*s == '$'
4216                          && s[1]
4217                          && strchr("[#!%*<>()-=",s[1]))
4218                 {
4219                     if (/*{*/ strchr("])} =",s[2]))
4220                         weight -= 10;
4221                     else
4222                         weight -= 1;
4223                 }
4224                 break;
4225             case '\\':
4226                 un_char = 254;
4227                 if (s[1]) {
4228                     if (strchr("wds]",s[1]))
4229                         weight += 100;
4230                     else if (seen[(U8)'\''] || seen[(U8)'"'])
4231                         weight += 1;
4232                     else if (strchr("rnftbxcav",s[1]))
4233                         weight += 40;
4234                     else if (isDIGIT(s[1])) {
4235                         weight += 40;
4236                         while (s[1] && isDIGIT(s[1]))
4237                             s++;
4238                     }
4239                 }
4240                 else
4241                     weight += 100;
4242                 break;
4243             case '-':
4244                 if (s[1] == '\\')
4245                     weight += 50;
4246                 if (strchr("aA01! ",last_un_char))
4247                     weight += 30;
4248                 if (strchr("zZ79~",s[1]))
4249                     weight += 30;
4250                 if (last_un_char == 255 && (isDIGIT(s[1]) || s[1] == '$'))
4251                     weight -= 5;        /* cope with negative subscript */
4252                 break;
4253             default:
4254                 if (!isWORDCHAR(last_un_char)
4255                     && !(last_un_char == '$' || last_un_char == '@'
4256                          || last_un_char == '&')
4257                     && isALPHA(*s) && s[1] && isALPHA(s[1])) {
4258                     char *d = s;
4259                     while (isALPHA(*s))
4260                         s++;
4261                     if (keyword(d, s - d, 0))
4262                         weight -= 150;
4263                 }
4264                 if (un_char == last_un_char + 1)
4265                     weight += 5;
4266                 weight -= seen[un_char];
4267                 break;
4268             }
4269             seen[un_char]++;
4270         }
4271         if (weight >= 0)        /* probably a character class */
4272             return FALSE;
4273     }
4274
4275     return TRUE;
4276 }
4277
4278 /*
4279  * S_intuit_method
4280  *
4281  * Does all the checking to disambiguate
4282  *   foo bar
4283  * between foo(bar) and bar->foo.  Returns 0 if not a method, otherwise
4284  * FUNCMETH (bar->foo(args)) or METHOD (bar->foo args).
4285  *
4286  * First argument is the stuff after the first token, e.g. "bar".
4287  *
4288  * Not a method if foo is a filehandle.
4289  * Not a method if foo is a subroutine prototyped to take a filehandle.
4290  * Not a method if it's really "Foo $bar"
4291  * Method if it's "foo $bar"
4292  * Not a method if it's really "print foo $bar"
4293  * Method if it's really "foo package::" (interpreted as package->foo)
4294  * Not a method if bar is known to be a subroutine ("sub bar; foo bar")
4295  * Not a method if bar is a filehandle or package, but is quoted with
4296  *   =>
4297  */
4298
4299 STATIC int
4300 S_intuit_method(pTHX_ char *start, SV *ioname, CV *cv)
4301 {
4302     char *s = start + (*start == '$');
4303     char tmpbuf[sizeof PL_tokenbuf];
4304     STRLEN len;
4305     GV* indirgv;
4306         /* Mustn't actually add anything to a symbol table.
4307            But also don't want to "initialise" any placeholder
4308            constants that might already be there into full
4309            blown PVGVs with attached PVCV.  */
4310     GV * const gv =
4311         ioname ? gv_fetchsv(ioname, GV_NOADD_NOINIT, SVt_PVCV) : NULL;
4312
4313     PERL_ARGS_ASSERT_INTUIT_METHOD;
4314
4315     if (gv && SvTYPE(gv) == SVt_PVGV && GvIO(gv))
4316             return 0;
4317     if (cv && SvPOK(cv)) {
4318         const char *proto = CvPROTO(cv);
4319         if (proto) {
4320             while (*proto && (isSPACE(*proto) || *proto == ';'))
4321                 proto++;
4322             if (*proto == '*')
4323                 return 0;
4324         }
4325     }
4326
4327     if (*start == '$') {
4328         SSize_t start_off = start - SvPVX(PL_linestr);
4329         if (cv || PL_last_lop_op == OP_PRINT || PL_last_lop_op == OP_SAY
4330             || isUPPER(*PL_tokenbuf))
4331             return 0;
4332         /* this could be $# */
4333         if (isSPACE(*s))
4334             s = skipspace(s);
4335         PL_bufptr = SvPVX(PL_linestr) + start_off;
4336         PL_expect = XREF;
4337         return *s == '(' ? FUNCMETH : METHOD;
4338     }
4339
4340     s = scan_word(s, tmpbuf, sizeof tmpbuf, TRUE, &len);
4341     /* start is the beginning of the possible filehandle/object,
4342      * and s is the end of it
4343      * tmpbuf is a copy of it (but with single quotes as double colons)
4344      */
4345
4346     if (!keyword(tmpbuf, len, 0)) {
4347         if (len > 2 && tmpbuf[len - 2] == ':' && tmpbuf[len - 1] == ':') {
4348             len -= 2;
4349             tmpbuf[len] = '\0';
4350             goto bare_package;
4351         }
4352         indirgv = gv_fetchpvn_flags(tmpbuf, len,
4353                                     GV_NOADD_NOINIT|( UTF ? SVf_UTF8 : 0 ),
4354                                     SVt_PVCV);
4355         if (indirgv && SvTYPE(indirgv) != SVt_NULL
4356          && (!isGV(indirgv) || GvCVu(indirgv)))
4357             return 0;
4358         /* filehandle or package name makes it a method */
4359         if (!cv || GvIO(indirgv) || gv_stashpvn(tmpbuf, len, UTF ? SVf_UTF8 : 0)) {
4360             s = skipspace(s);
4361             if ((PL_bufend - s) >= 2 && *s == '=' && *(s+1) == '>')
4362                 return 0;       /* no assumptions -- "=>" quotes bareword */
4363       bare_package:
4364             NEXTVAL_NEXTTOKE.opval = newSVOP(OP_CONST, 0,
4365                                                   S_newSV_maybe_utf8(aTHX_ tmpbuf, len));
4366             NEXTVAL_NEXTTOKE.opval->op_private = OPpCONST_BARE;
4367             PL_expect = XTERM;
4368             force_next(BAREWORD);
4369             PL_bufptr = s;
4370             return *s == '(' ? FUNCMETH : METHOD;
4371         }
4372     }
4373     return 0;
4374 }
4375
4376 /* Encoded script support. filter_add() effectively inserts a
4377  * 'pre-processing' function into the current source input stream.
4378  * Note that the filter function only applies to the current source file
4379  * (e.g., it will not affect files 'require'd or 'use'd by this one).
4380  *
4381  * The datasv parameter (which may be NULL) can be used to pass
4382  * private data to this instance of the filter. The filter function
4383  * can recover the SV using the FILTER_DATA macro and use it to
4384  * store private buffers and state information.
4385  *
4386  * The supplied datasv parameter is upgraded to a PVIO type
4387  * and the IoDIRP/IoANY field is used to store the function pointer,
4388  * and IOf_FAKE_DIRP is enabled on datasv to mark this as such.
4389  * Note that IoTOP_NAME, IoFMT_NAME, IoBOTTOM_NAME, if set for
4390  * private use must be set using malloc'd pointers.
4391  */
4392
4393 SV *
4394 Perl_filter_add(pTHX_ filter_t funcp, SV *datasv)
4395 {
4396     if (!funcp)
4397         return NULL;
4398
4399     if (!PL_parser)
4400         return NULL;
4401
4402     if (PL_parser->lex_flags & LEX_IGNORE_UTF8_HINTS)
4403         Perl_croak(aTHX_ "Source filters apply only to byte streams");
4404
4405     if (!PL_rsfp_filters)
4406         PL_rsfp_filters = newAV();
4407     if (!datasv)
4408         datasv = newSV(0);
4409     SvUPGRADE(datasv, SVt_PVIO);
4410     IoANY(datasv) = FPTR2DPTR(void *, funcp); /* stash funcp into spare field */
4411     IoFLAGS(datasv) |= IOf_FAKE_DIRP;
4412     DEBUG_P(PerlIO_printf(Perl_debug_log, "filter_add func %p (%s)\n",
4413                           FPTR2DPTR(void *, IoANY(datasv)),
4414                           SvPV_nolen(datasv)));
4415     av_unshift(PL_rsfp_filters, 1);
4416     av_store(PL_rsfp_filters, 0, datasv) ;
4417     if (
4418         !PL_parser->filtered
4419      && PL_parser->lex_flags & LEX_EVALBYTES
4420      && PL_bufptr < PL_bufend
4421     ) {
4422         const char *s = PL_bufptr;
4423         while (s < PL_bufend) {
4424             if (*s == '\n') {
4425                 SV *linestr = PL_parser->linestr;
4426                 char *buf = SvPVX(linestr);
4427                 STRLEN const bufptr_pos = PL_parser->bufptr - buf;
4428                 STRLEN const oldbufptr_pos = PL_parser->oldbufptr - buf;
4429                 STRLEN const oldoldbufptr_pos=PL_parser->oldoldbufptr-buf;
4430                 STRLEN const linestart_pos = PL_parser->linestart - buf;
4431                 STRLEN const last_uni_pos =
4432                     PL_parser->last_uni ? PL_parser->last_uni - buf : 0;
4433                 STRLEN const last_lop_pos =
4434                     PL_parser->last_lop ? PL_parser->last_lop - buf : 0;
4435                 av_push(PL_rsfp_filters, linestr);
4436                 PL_parser->linestr =
4437                     newSVpvn(SvPVX(linestr), ++s-SvPVX(linestr));
4438                 buf = SvPVX(PL_parser->linestr);
4439                 PL_parser->bufend = buf + SvCUR(PL_parser->linestr);
4440                 PL_parser->bufptr = buf + bufptr_pos;
4441                 PL_parser->oldbufptr = buf + oldbufptr_pos;
4442                 PL_parser->oldoldbufptr = buf + oldoldbufptr_pos;
4443                 PL_parser->linestart = buf + linestart_pos;
4444                 if (PL_parser->last_uni)
4445                     PL_parser->last_uni = buf + last_uni_pos;
4446                 if (PL_parser->last_lop)
4447                     PL_parser->last_lop = buf + last_lop_pos;
4448                 SvLEN_set(linestr, SvCUR(linestr));
4449                 SvCUR_set(linestr, s - SvPVX(linestr));
4450                 PL_parser->filtered = 1;
4451                 break;
4452             }
4453             s++;
4454         }
4455     }
4456     return(datasv);
4457 }
4458
4459
4460 /* Delete most recently added instance of this filter function. */
4461 void
4462 Perl_filter_del(pTHX_ filter_t funcp)
4463 {
4464     SV *datasv;
4465
4466     PERL_ARGS_ASSERT_FILTER_DEL;
4467
4468 #ifdef DEBUGGING
4469     DEBUG_P(PerlIO_printf(Perl_debug_log, "filter_del func %p",
4470                           FPTR2DPTR(void*, funcp)));
4471 #endif
4472     if (!PL_parser || !PL_rsfp_filters || AvFILLp(PL_rsfp_filters)<0)
4473         return;
4474     /* if filter is on top of stack (usual case) just pop it off */
4475     datasv = FILTER_DATA(AvFILLp(PL_rsfp_filters));
4476     if (IoANY(datasv) == FPTR2DPTR(void *, funcp)) {
4477         sv_free(av_pop(PL_rsfp_filters));
4478
4479         return;
4480     }
4481     /* we need to search for the correct entry and clear it     */
4482     Perl_die(aTHX_ "filter_del can only delete in reverse order (currently)");
4483 }
4484
4485
4486 /* Invoke the idxth filter function for the current rsfp.        */
4487 /* maxlen 0 = read one text line */
4488 I32
4489 Perl_filter_read(pTHX_ int idx, SV *buf_sv, int maxlen)
4490 {
4491     filter_t funcp;
4492     SV *datasv = NULL;
4493     /* This API is bad. It should have been using unsigned int for maxlen.
4494        Not sure if we want to change the API, but if not we should sanity
4495        check the value here.  */
4496     unsigned int correct_length = maxlen < 0 ?  PERL_INT_MAX : maxlen;
4497
4498     PERL_ARGS_ASSERT_FILTER_READ;
4499
4500     if (!PL_parser || !PL_rsfp_filters)
4501         return -1;
4502     if (idx > AvFILLp(PL_rsfp_filters)) {       /* Any more filters?    */
4503         /* Provide a default input filter to make life easy.    */
4504         /* Note that we append to the line. This is handy.      */
4505         DEBUG_P(PerlIO_printf(Perl_debug_log,
4506                               "filter_read %d: from rsfp\n", idx));
4507         if (correct_length) {
4508             /* Want a block */
4509             int len ;
4510             const int old_len = SvCUR(buf_sv);
4511
4512             /* ensure buf_sv is large enough */
4513             SvGROW(buf_sv, (STRLEN)(old_len + correct_length + 1)) ;
4514             if ((len = PerlIO_read(PL_rsfp, SvPVX(buf_sv) + old_len,
4515                                    correct_length)) <= 0) {
4516                 if (PerlIO_error(PL_rsfp))
4517                     return -1;          /* error */
4518                 else
4519                     return 0 ;          /* end of file */
4520             }
4521             SvCUR_set(buf_sv, old_len + len) ;
4522             SvPVX(buf_sv)[old_len + len] = '\0';
4523         } else {
4524             /* Want a line */
4525             if (sv_gets(buf_sv, PL_rsfp, SvCUR(buf_sv)) == NULL) {
4526                 if (PerlIO_error(PL_rsfp))
4527                     return -1;          /* error */
4528                 else
4529                     return 0 ;          /* end of file */
4530             }
4531         }
4532         return SvCUR(buf_sv);
4533     }
4534     /* Skip this filter slot if filter has been deleted */
4535     if ( (datasv = FILTER_DATA(idx)) == &PL_sv_undef) {
4536         DEBUG_P(PerlIO_printf(Perl_debug_log,
4537                               "filter_read %d: skipped (filter deleted)\n",
4538                               idx));
4539         return FILTER_READ(idx+1, buf_sv, correct_length); /* recurse */
4540     }
4541     if (SvTYPE(datasv) != SVt_PVIO) {
4542         if (correct_length) {
4543             /* Want a block */
4544             const STRLEN remainder = SvLEN(datasv) - SvCUR(datasv);
4545             if (!remainder) return 0; /* eof */
4546             if (correct_length > remainder) correct_length = remainder;
4547             sv_catpvn(buf_sv, SvEND(datasv), correct_length);
4548             SvCUR_set(datasv, SvCUR(datasv) + correct_length);
4549         } else {
4550             /* Want a line */
4551             const char *s = SvEND(datasv);
4552             const char *send = SvPVX(datasv) + SvLEN(datasv);
4553             while (s < send) {
4554                 if (*s == '\n') {
4555                     s++;
4556                     break;
4557                 }
4558                 s++;
4559             }
4560             if (s == send) return 0; /* eof */
4561             sv_catpvn(buf_sv, SvEND(datasv), s-SvEND(datasv));
4562             SvCUR_set(datasv, s-SvPVX(datasv));
4563         }
4564         return SvCUR(buf_sv);
4565     }
4566     /* Get function pointer hidden within datasv        */
4567     funcp = DPTR2FPTR(filter_t, IoANY(datasv));
4568     DEBUG_P(PerlIO_printf(Perl_debug_log,
4569                           "filter_read %d: via function %p (%s)\n",
4570                           idx, (void*)datasv, SvPV_nolen_const(datasv)));
4571     /* Call function. The function is expected to       */
4572     /* call "FILTER_READ(idx+1, buf_sv)" first.         */
4573     /* Return: <0:error, =0:eof, >0:not eof             */
4574     return (*funcp)(aTHX_ idx, buf_sv, correct_length);
4575 }
4576
4577 STATIC char *
4578 S_filter_gets(pTHX_ SV *sv, STRLEN append)
4579 {
4580     PERL_ARGS_ASSERT_FILTER_GETS;
4581
4582 #ifdef PERL_CR_FILTER
4583     if (!PL_rsfp_filters) {
4584         filter_add(S_cr_textfilter,NULL);
4585     }
4586 #endif
4587     if (PL_rsfp_filters) {
4588         if (!append)
4589             SvCUR_set(sv, 0);   /* start with empty line        */
4590         if (FILTER_READ(0, sv, 0) > 0)
4591             return ( SvPVX(sv) ) ;
4592         else
4593             return NULL ;
4594     }
4595     else
4596         return (sv_gets(sv, PL_rsfp, append));
4597 }
4598
4599 STATIC HV *
4600 S_find_in_my_stash(pTHX_ const char *pkgname, STRLEN len)
4601 {
4602     GV *gv;
4603
4604     PERL_ARGS_ASSERT_FIND_IN_MY_STASH;
4605
4606     if (len == 11 && *pkgname == '_' && strEQ(pkgname, "__PACKAGE__"))
4607         return PL_curstash;
4608
4609     if (len > 2
4610         && (pkgname[len - 2] == ':' && pkgname[len - 1] == ':')
4611         && (gv = gv_fetchpvn_flags(pkgname,
4612                                    len,
4613                                    ( UTF ? SVf_UTF8 : 0 ), SVt_PVHV)))
4614     {
4615         return GvHV(gv);                        /* Foo:: */
4616     }
4617
4618     /* use constant CLASS => 'MyClass' */
4619     gv = gv_fetchpvn_flags(pkgname, len, UTF ? SVf_UTF8 : 0, SVt_PVCV);
4620     if (gv && GvCV(gv)) {
4621         SV * const sv = cv_const_sv(GvCV(gv));
4622         if (sv)
4623             return gv_stashsv(sv, 0);
4624     }
4625
4626     return gv_stashpvn(pkgname, len, UTF ? SVf_UTF8 : 0);
4627 }
4628
4629
4630 STATIC char *
4631 S_tokenize_use(pTHX_ int is_use, char *s) {
4632     PERL_ARGS_ASSERT_TOKENIZE_USE;
4633
4634     if (PL_expect != XSTATE)
4635         /* diag_listed_as: "use" not allowed in expression */
4636         yyerror(Perl_form(aTHX_ "\"%s\" not allowed in expression",
4637                     is_use ? "use" : "no"));
4638     PL_expect = XTERM;
4639     s = skipspace(s);
4640     if (isDIGIT(*s) || (*s == 'v' && isDIGIT(s[1]))) {
4641         s = force_version(s, TRUE);
4642         if (*s == ';' || *s == '}'
4643                 || (s = skipspace(s), (*s == ';' || *s == '}'))) {
4644             NEXTVAL_NEXTTOKE.opval = NULL;
4645             force_next(BAREWORD);
4646         }
4647         else if (*s == 'v') {
4648             s = force_word(s,BAREWORD,FALSE,TRUE);
4649             s = force_version(s, FALSE);
4650         }
4651     }
4652     else {
4653         s = force_word(s,BAREWORD,FALSE,TRUE);
4654         s = force_version(s, FALSE);
4655     }
4656     pl_yylval.ival = is_use;
4657     return s;
4658 }
4659 #ifdef DEBUGGING
4660     static const char* const exp_name[] =
4661         { "OPERATOR", "TERM", "REF", "STATE", "BLOCK", "ATTRBLOCK",
4662           "ATTRTERM", "TERMBLOCK", "XBLOCKTERM", "POSTDEREF",
4663           "SIGVAR", "TERMORDORDOR"
4664         };
4665 #endif
4666
4667 #define word_takes_any_delimiter(p,l) S_word_takes_any_delimiter(p,l)
4668 STATIC bool
4669 S_word_takes_any_delimiter(char *p, STRLEN len)
4670 {
4671     return (len == 1 && strchr("msyq", p[0]))
4672             || (len == 2
4673                 && ((p[0] == 't' && p[1] == 'r')
4674                     || (p[0] == 'q' && strchr("qwxr", p[1]))));
4675 }
4676
4677 static void
4678 S_check_scalar_slice(pTHX_ char *s)
4679 {
4680     s++;
4681     while (SPACE_OR_TAB(*s)) s++;
4682     if (*s == 'q' && s[1] == 'w' && !isWORDCHAR_lazy_if_safe(s+2,
4683                                                              PL_bufend,
4684                                                              UTF))
4685     {
4686         return;
4687     }
4688     while (    isWORDCHAR_lazy_if_safe(s, PL_bufend, UTF)
4689            || (*s && strchr(" \t$#+-'\"", *s)))
4690     {
4691         s += UTF ? UTF8SKIP(s) : 1;
4692     }
4693     if (*s == '}' || *s == ']')
4694         pl_yylval.ival = OPpSLICEWARNING;
4695 }
4696
4697 #define lex_token_boundary() S_lex_token_boundary(aTHX)
4698 static void
4699 S_lex_token_boundary(pTHX)
4700 {
4701     PL_oldoldbufptr = PL_oldbufptr;
4702     PL_oldbufptr = PL_bufptr;
4703 }
4704
4705 #define vcs_conflict_marker(s) S_vcs_conflict_marker(aTHX_ s)
4706 static char *
4707 S_vcs_conflict_marker(pTHX_ char *s)
4708 {
4709     lex_token_boundary();
4710     PL_bufptr = s;
4711     yyerror("Version control conflict marker");
4712     while (s < PL_bufend && *s != '\n')
4713         s++;
4714     return s;
4715 }
4716
4717 /*
4718   yylex
4719
4720   Works out what to call the token just pulled out of the input
4721   stream.  The yacc parser takes care of taking the ops we return and
4722   stitching them into a tree.
4723
4724   Returns:
4725     The type of the next token
4726
4727   Structure:
4728       Check if we have already built the token; if so, use it.
4729       Switch based on the current state:
4730           - if we have a case modifier in a string, deal with that
4731           - handle other cases of interpolation inside a string
4732           - scan the next line if we are inside a format
4733       In the normal state, switch on the next character:
4734           - default:
4735             if alphabetic, go to key lookup
4736             unrecognized character - croak
4737           - 0/4/26: handle end-of-line or EOF
4738           - cases for whitespace
4739           - \n and #: handle comments and line numbers
4740           - various operators, brackets and sigils
4741           - numbers
4742           - quotes
4743           - 'v': vstrings (or go to key lookup)
4744           - 'x' repetition operator (or go to key lookup)
4745           - other ASCII alphanumerics (key lookup begins here):
4746               word before => ?
4747               keyword plugin
4748               scan built-in keyword (but do nothing with it yet)
4749               check for statement label
4750               check for lexical subs
4751                   goto just_a_word if there is one
4752               see whether built-in keyword is overridden
4753               switch on keyword number:
4754                   - default: just_a_word:
4755                       not a built-in keyword; handle bareword lookup
4756                       disambiguate between method and sub call
4757                       fall back to bareword
4758                   - cases for built-in keywords
4759 */
4760
4761
4762 int
4763 Perl_yylex(pTHX)
4764 {
4765     dVAR;
4766     char *s = PL_bufptr;
4767     char *d;
4768     STRLEN len;
4769     bool bof = FALSE;
4770     const bool saw_infix_sigil = cBOOL(PL_parser->saw_infix_sigil);
4771     U8 formbrack = 0;
4772     U32 fake_eof = 0;
4773
4774     /* orig_keyword, gvp, and gv are initialized here because
4775      * jump to the label just_a_word_zero can bypass their
4776      * initialization later. */
4777     I32 orig_keyword = 0;
4778     GV *gv = NULL;
4779     GV **gvp = NULL;
4780
4781     if (UNLIKELY(PL_parser->recheck_utf8_validity)) {
4782         const U8* first_bad_char_loc;
4783         if (UTF && UNLIKELY(! is_utf8_string_loc((U8 *) PL_bufptr,
4784                                                         PL_bufend - PL_bufptr,
4785                                                         &first_bad_char_loc)))
4786         {
4787             _force_out_malformed_utf8_message(first_bad_char_loc,
4788                                               (U8 *) PL_bufend,
4789                                               0,
4790                                               1 /* 1 means die */ );
4791             NOT_REACHED; /* NOTREACHED */
4792         }
4793         PL_parser->recheck_utf8_validity = FALSE;
4794     }
4795     DEBUG_T( {
4796         SV* tmp = newSVpvs("");
4797         PerlIO_printf(Perl_debug_log, "### %" IVdf ":LEX_%s/X%s %s\n",
4798             (IV)CopLINE(PL_curcop),
4799             lex_state_names[PL_lex_state],
4800             exp_name[PL_expect],
4801             pv_display(tmp, s, strlen(s), 0, 60));
4802         SvREFCNT_dec(tmp);
4803     } );
4804
4805     /* when we've already built the next token, just pull it out of the queue */
4806     if (PL_nexttoke) {
4807         PL_nexttoke--;
4808         pl_yylval = PL_nextval[PL_nexttoke];
4809         {
4810             I32 next_type;
4811             next_type = PL_nexttype[PL_nexttoke];
4812             if (next_type & (7<<24)) {
4813                 if (next_type & (1<<24)) {
4814                     if (PL_lex_brackets > 100)
4815                         Renew(PL_lex_brackstack, PL_lex_brackets + 10, char);
4816                     PL_lex_brackstack[PL_lex_brackets++] =
4817                         (char) ((next_type >> 16) & 0xff);
4818                 }
4819                 if (next_type & (2<<24))
4820                     PL_lex_allbrackets++;
4821                 if (next_type & (4<<24))
4822                     PL_lex_allbrackets--;
4823                 next_type &= 0xffff;
4824             }
4825             return REPORT(next_type == 'p' ? pending_ident() : next_type);
4826         }
4827     }
4828
4829     switch (PL_lex_state) {
4830     case LEX_NORMAL:
4831     case LEX_INTERPNORMAL:
4832         break;
4833
4834     /* interpolated case modifiers like \L \U, including \Q and \E.
4835        when we get here, PL_bufptr is at the \
4836     */
4837     case LEX_INTERPCASEMOD:
4838 #ifdef DEBUGGING
4839         if (PL_bufptr != PL_bufend && *PL_bufptr != '\\')
4840             Perl_croak(aTHX_
4841                        "panic: INTERPCASEMOD bufptr=%p, bufend=%p, *bufptr=%u",
4842                        PL_bufptr, PL_bufend, *PL_bufptr);
4843 #endif
4844         /* handle \E or end of string */
4845         if (PL_bufptr == PL_bufend || PL_bufptr[1] == 'E') {
4846             /* if at a \E */
4847             if (PL_lex_casemods) {
4848                 const char oldmod = PL_lex_casestack[--PL_lex_casemods];
4849                 PL_lex_casestack[PL_lex_casemods] = '\0';
4850
4851                 if (PL_bufptr != PL_bufend
4852                     && (oldmod == 'L' || oldmod == 'U' || oldmod == 'Q'
4853                         || oldmod == 'F')) {
4854                     PL_bufptr += 2;
4855                     PL_lex_state = LEX_INTERPCONCAT;
4856                 }
4857                 PL_lex_allbrackets--;
4858                 return REPORT(')');
4859             }
4860             else if ( PL_bufptr != PL_bufend && PL_bufptr[1] == 'E' ) {
4861                /* Got an unpaired \E */
4862                Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
4863                         "Useless use of \\E");
4864             }
4865             if (PL_bufptr != PL_bufend)
4866                 PL_bufptr += 2;
4867             PL_lex_state = LEX_INTERPCONCAT;
4868             return yylex();
4869         }
4870         else {
4871             DEBUG_T({ PerlIO_printf(Perl_debug_log,
4872               "### Saw case modifier\n"); });
4873             s = PL_bufptr + 1;
4874             if (s[1] == '\\' && s[2] == 'E') {
4875                 PL_bufptr = s + 3;
4876                 PL_lex_state = LEX_INTERPCONCAT;
4877                 return yylex();
4878             }
4879             else {
4880                 I32 tmp;
4881                 if (strnEQ(s, "L\\u", 3) || strnEQ(s, "U\\l", 3))
4882                     tmp = *s, *s = s[2], s[2] = (char)tmp;      /* misordered... */
4883                 if ((*s == 'L' || *s == 'U' || *s == 'F')
4884                     && (strpbrk(PL_lex_casestack, "LUF")))
4885                 {
4886                     PL_lex_casestack[--PL_lex_casemods] = '\0';
4887                     PL_lex_allbrackets--;
4888                     return REPORT(')');
4889                 }
4890                 if (PL_lex_casemods > 10)
4891                     Renew(PL_lex_casestack, PL_lex_casemods + 2, char);
4892                 PL_lex_casestack[PL_lex_casemods++] = *s;
4893                 PL_lex_casestack[PL_lex_casemods] = '\0';
4894                 PL_lex_state = LEX_INTERPCONCAT;
4895                 NEXTVAL_NEXTTOKE.ival = 0;
4896                 force_next((2<<24)|'(');
4897                 if (*s == 'l')
4898                     NEXTVAL_NEXTTOKE.ival = OP_LCFIRST;
4899                 else if (*s == 'u')
4900                     NEXTVAL_NEXTTOKE.ival = OP_UCFIRST;
4901                 else if (*s == 'L')
4902                     NEXTVAL_NEXTTOKE.ival = OP_LC;
4903                 else if (*s == 'U')
4904                     NEXTVAL_NEXTTOKE.ival = OP_UC;
4905                 else if (*s == 'Q')
4906                     NEXTVAL_NEXTTOKE.ival = OP_QUOTEMETA;
4907                 else if (*s == 'F')
4908                     NEXTVAL_NEXTTOKE.ival = OP_FC;
4909                 else
4910                     Perl_croak(aTHX_ "panic: yylex, *s=%u", *s);
4911                 PL_bufptr = s + 1;
4912             }
4913             force_next(FUNC);
4914             if (PL_lex_starts) {
4915                 s = PL_bufptr;
4916                 PL_lex_starts = 0;
4917                 /* commas only at base level: /$a\Ub$c/ => ($a,uc(b.$c)) */
4918                 if (PL_lex_casemods == 1 && PL_lex_inpat)
4919                     TOKEN(',');
4920                 else
4921                     AopNOASSIGN(OP_CONCAT);
4922             }
4923             else
4924                 return yylex();
4925         }
4926
4927     case LEX_INTERPPUSH:
4928         return REPORT(sublex_push());
4929
4930     case LEX_INTERPSTART:
4931         if (PL_bufptr == PL_bufend)
4932             return REPORT(sublex_done());
4933         DEBUG_T({ if(*PL_bufptr != '(') PerlIO_printf(Perl_debug_log,
4934               "### Interpolated variable\n"); });
4935         PL_expect = XTERM;
4936         /* for /@a/, we leave the joining for the regex engine to do
4937          * (unless we're within \Q etc) */
4938         PL_lex_dojoin = (*PL_bufptr == '@'
4939                             && (!PL_lex_inpat || PL_lex_casemods));
4940         PL_lex_state = LEX_INTERPNORMAL;
4941         if (PL_lex_dojoin) {
4942             NEXTVAL_NEXTTOKE.ival = 0;
4943             force_next(',');
4944             force_ident("\"", '$');
4945             NEXTVAL_NEXTTOKE.ival = 0;
4946             force_next('$');
4947             NEXTVAL_NEXTTOKE.ival = 0;
4948             force_next((2<<24)|'(');
4949             NEXTVAL_NEXTTOKE.ival = OP_JOIN;    /* emulate join($", ...) */
4950             force_next(FUNC);
4951         }
4952         /* Convert (?{...}) and friends to 'do {...}' */
4953         if (PL_lex_inpat && *PL_bufptr == '(') {
4954             PL_parser->lex_shared->re_eval_start = PL_bufptr;
4955             PL_bufptr += 2;
4956             if (*PL_bufptr != '{')
4957                 PL_bufptr++;
4958             PL_expect = XTERMBLOCK;
4959             force_next(DO);
4960         }
4961
4962         if (PL_lex_starts++) {
4963             s = PL_bufptr;
4964             /* commas only at base level: /$a\Ub$c/ => ($a,uc(b.$c)) */
4965             if (!PL_lex_casemods && PL_lex_inpat)
4966                 TOKEN(',');
4967             else
4968                 AopNOASSIGN(OP_CONCAT);
4969         }
4970         return yylex();
4971
4972     case LEX_INTERPENDMAYBE:
4973         if (intuit_more(PL_bufptr)) {
4974             PL_lex_state = LEX_INTERPNORMAL;    /* false alarm, more expr */
4975             break;
4976         }
4977         /* FALLTHROUGH */
4978
4979     case LEX_INTERPEND:
4980         if (PL_lex_dojoin) {
4981             const U8 dojoin_was = PL_lex_dojoin;
4982             PL_lex_dojoin = FALSE;
4983             PL_lex_state = LEX_INTERPCONCAT;
4984             PL_lex_allbrackets--;
4985             return REPORT(dojoin_was == 1 ? (int)')' : (int)POSTJOIN);
4986         }
4987         if (PL_lex_inwhat == OP_SUBST && PL_linestr == PL_lex_repl
4988             && SvEVALED(PL_lex_repl))
4989         {
4990             if (PL_bufptr != PL_bufend)
4991                 Perl_croak(aTHX_ "Bad evalled substitution pattern");
4992             PL_lex_repl = NULL;
4993         }
4994         /* Paranoia.  re_eval_start is adjusted when S_scan_heredoc sets
4995            re_eval_str.  If the here-doc body’s length equals the previous
4996            value of re_eval_start, re_eval_start will now be null.  So
4997            check re_eval_str as well. */
4998         if (PL_parser->lex_shared->re_eval_start
4999          || PL_parser->lex_shared->re_eval_str) {
5000             SV *sv;
5001             if (*PL_bufptr != ')')
5002                 Perl_croak(aTHX_ "Sequence (?{...}) not terminated with ')'");
5003             PL_bufptr++;
5004             /* having compiled a (?{..}) expression, return the original
5005              * text too, as a const */
5006             if (PL_parser->lex_shared->re_eval_str) {
5007                 sv = PL_parser->lex_shared->re_eval_str;
5008                 PL_parser->lex_shared->re_eval_str = NULL;
5009                 SvCUR_set(sv,
5010                          PL_bufptr - PL_parser->lex_shared->re_eval_start);
5011                 SvPV_shrink_to_cur(sv);
5012             }
5013             else sv = newSVpvn(PL_parser->lex_shared->re_eval_start,
5014                          PL_bufptr - PL_parser->lex_shared->re_eval_start);
5015             NEXTVAL_NEXTTOKE.opval =
5016                     newSVOP(OP_CONST, 0,
5017                                  sv);
5018             force_next(THING);
5019             PL_parser->lex_shared->re_eval_start = NULL;
5020             PL_expect = XTERM;
5021             return REPORT(',');
5022         }
5023
5024         /* FALLTHROUGH */
5025     case LEX_INTERPCONCAT:
5026 #ifdef DEBUGGING
5027         if (PL_lex_brackets)
5028             Perl_croak(aTHX_ "panic: INTERPCONCAT, lex_brackets=%ld",
5029                        (long) PL_lex_brackets);
5030 #endif
5031         if (PL_bufptr == PL_bufend)
5032             return REPORT(sublex_done());
5033
5034         /* m'foo' still needs to be parsed for possible (?{...}) */
5035         if (SvIVX(PL_linestr) == '\'' && !PL_lex_inpat) {
5036             SV *sv = newSVsv(PL_linestr);
5037             sv = tokeq(sv);
5038             pl_yylval.opval = newSVOP(OP_CONST, 0, sv);
5039             s = PL_bufend;
5040         }
5041         else {
5042             int save_error_count = PL_error_count;
5043
5044             s = scan_const(PL_bufptr);
5045
5046             /* Set flag if this was a pattern and there were errors.  op.c will
5047              * refuse to compile a pattern with this flag set.  Otherwise, we
5048              * could get segfaults, etc. */
5049             if (PL_lex_inpat && PL_error_count > save_error_count) {
5050                 ((PMOP*)PL_lex_inpat)->op_pmflags |= PMf_HAS_ERROR;
5051             }
5052             if (*s == '\\')
5053                 PL_lex_state = LEX_INTERPCASEMOD;
5054             else
5055                 PL_lex_state = LEX_INTERPSTART;
5056         }
5057
5058         if (s != PL_bufptr) {
5059             NEXTVAL_NEXTTOKE = pl_yylval;
5060             PL_expect = XTERM;
5061             force_next(THING);
5062             if (PL_lex_starts++) {
5063                 /* commas only at base level: /$a\Ub$c/ => ($a,uc(b.$c)) */
5064                 if (!PL_lex_casemods && PL_lex_inpat)
5065                     TOKEN(',');
5066                 else
5067                     AopNOASSIGN(OP_CONCAT);
5068             }
5069             else {
5070                 PL_bufptr = s;
5071                 return yylex();
5072             }
5073         }
5074
5075         return yylex();
5076     case LEX_FORMLINE:
5077         assert(PL_lex_formbrack);
5078         s = scan_formline(PL_bufptr);
5079         if (!PL_lex_formbrack)
5080         {
5081             formbrack = 1;
5082             goto rightbracket;
5083         }
5084         PL_bufptr = s;
5085         return yylex();
5086     }
5087
5088     /* We really do *not* want PL_linestr ever becoming a COW. */
5089     assert (!SvIsCOW(PL_linestr));
5090     s = PL_bufptr;
5091     PL_oldoldbufptr = PL_oldbufptr;
5092     PL_oldbufptr = s;
5093     PL_parser->saw_infix_sigil = 0;
5094
5095     if (PL_in_my == KEY_sigvar) {
5096         /* we expect the sigil and optional var name part of a
5097          * signature element here. Since a '$' is not necessarily
5098          * followed by a var name, handle it specially here; the general
5099          * yylex code would otherwise try to interpret whatever follows
5100          * as a var; e.g. ($, ...) would be seen as the var '$,'
5101          */
5102
5103         U8 sigil;
5104
5105         s = skipspace(s);
5106         sigil = *s++;
5107         PL_bufptr = s; /* for error reporting */
5108         switch (sigil) {
5109         case '$':
5110         case '@':
5111         case '%':
5112             /* spot stuff that looks like an prototype */
5113             if (strchr("$:@%&*;\\[]", *s)) {
5114                 yyerror("Illegal character following sigil in a subroutine signature");
5115                 break;
5116             }
5117             /* '$#' is banned, while '$ # comment' isn't */
5118             if (*s == '#') {
5119                 yyerror("'#' not allowed immediately following a sigil in a subroutine signature");
5120                 break;
5121             }
5122             s = skipspace(s);
5123             if (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)) {
5124                 char *dest = PL_tokenbuf + 1;
5125                 /* read var name, including sigil, into PL_tokenbuf */
5126                 PL_tokenbuf[0] = sigil;
5127                 parse_ident(&s, &dest, dest + sizeof(PL_tokenbuf) - 1,
5128                     0, cBOOL(UTF), FALSE);
5129                 *dest = '\0';
5130                 assert(PL_tokenbuf[1]); /* we have a variable name */
5131             }
5132             else {
5133                 *PL_tokenbuf = 0;
5134                 PL_in_my = 0;
5135             }
5136
5137             s = skipspace(s);
5138             /* parse the = for the default ourselves to avoid '+=' etc being accepted here
5139              * as the ASSIGNOP, and exclude other tokens that start with =
5140              */
5141             if (*s == '=' && (!s[1] || strchr("=~>", s[1]) == 0)) {
5142                 /* save now to report with the same context as we did when
5143                  * all ASSIGNOPS were accepted */
5144                 PL_oldbufptr = s;
5145
5146                 ++s;
5147                 NEXTVAL_NEXTTOKE.ival = 0;
5148                 force_next(ASSIGNOP);
5149                 PL_expect = XTERM;
5150             }
5151             else if (*s == ',' || *s == ')') {
5152                 PL_expect = XOPERATOR;
5153             }
5154             else {
5155                 /* make sure the context shows the unexpected character and
5156                  * hopefully a bit more */
5157                 if (*s) ++s;
5158                 while (*s && *s != '$' && *s != '@' && *s != '%' && *s != ')')
5159                     s++;
5160                 PL_bufptr = s; /* for error reporting */
5161                 yyerror("Illegal operator following parameter in a subroutine signature");
5162                 PL_in_my = 0;
5163             }
5164             if (*PL_tokenbuf) {
5165                 NEXTVAL_NEXTTOKE.ival = sigil;
5166                 force_next('p'); /* force a signature pending identifier */
5167             }
5168             break;
5169
5170         case ')':
5171             PL_expect = XBLOCK;
5172             break;
5173         case ',': /* handle ($a,,$b) */
5174             break;
5175
5176         default:
5177             PL_in_my = 0;
5178             yyerror("A signature parameter must start with '$', '@' or '%'");
5179             /* very crude error recovery: skip to likely next signature
5180              * element */
5181             while (*s && *s != '$' && *s != '@' && *s != '%' && *s != ')')
5182                 s++;
5183             break;
5184         }
5185         TOKEN(sigil);
5186     }
5187
5188   retry:
5189     switch (*s) {
5190     default:
5191         if (UTF) {
5192             if (isIDFIRST_utf8_safe(s, PL_bufend)) {
5193                 goto keylookup;
5194             }
5195         }
5196         else if (isALNUMC(*s)) {
5197             goto keylookup;
5198         }
5199     {
5200         SV *dsv = newSVpvs_flags("", SVs_TEMP);
5201         const char *c;
5202         if (UTF) {
5203             STRLEN skiplen = UTF8SKIP(s);
5204             STRLEN stravail = PL_bufend - s;
5205             c = sv_uni_display(dsv, newSVpvn_flags(s,
5206                                                    skiplen > stravail ? stravail : skiplen,
5207                                                    SVs_TEMP | SVf_UTF8),
5208                                10, UNI_DISPLAY_ISPRINT);
5209         }
5210         else {
5211             c = Perl_form(aTHX_ "\\x%02X", (unsigned char)*s);
5212         }
5213
5214         if (s >= PL_linestart) {
5215             d = PL_linestart;
5216         }
5217         else {
5218             /* somehow (probably due to a parse failure), PL_linestart has advanced
5219              * pass PL_bufptr, get a reasonable beginning of line
5220              */
5221             d = s;
5222             while (d > SvPVX(PL_linestr) && d[-1] && d[-1] != '\n')
5223                 --d;
5224         }
5225         len = UTF ? Perl_utf8_length(aTHX_ (U8 *) d, (U8 *) s) : (STRLEN) (s - d);
5226         if (len > UNRECOGNIZED_PRECEDE_COUNT) {
5227             d = UTF ? (char *) utf8_hop_back((U8 *) s, -UNRECOGNIZED_PRECEDE_COUNT, (U8 *)d) : s - UNRECOGNIZED_PRECEDE_COUNT;
5228         }
5229
5230         Perl_croak(aTHX_  "Unrecognized character %s; marked by <-- HERE after %" UTF8f "<-- HERE near column %d", c,
5231                           UTF8fARG(UTF, (s - d), d),
5232                          (int) len + 1);
5233     }
5234     case 4:
5235     case 26:
5236         goto fake_eof;                  /* emulate EOF on ^D or ^Z */
5237     case 0:
5238         if ((!PL_rsfp || PL_lex_inwhat)
5239          && (!PL_parser->filtered || s+1 < PL_bufend)) {
5240             PL_last_uni = 0;
5241             PL_last_lop = 0;
5242             if (PL_lex_brackets
5243                 && PL_lex_brackstack[PL_lex_brackets-1] != XFAKEEOF)
5244             {
5245                 yyerror((const char *)
5246                         (PL_lex_formbrack
5247                          ? "Format not terminated"
5248                          : "Missing right curly or square bracket"));
5249             }
5250             DEBUG_T( { PerlIO_printf(Perl_debug_log,
5251                         "### Tokener got EOF\n");
5252             } );
5253             TOKEN(0);
5254         }
5255         if (s++ < PL_bufend)
5256             goto retry;                 /* ignore stray nulls */
5257         PL_last_uni = 0;
5258         PL_last_lop = 0;
5259         if (!PL_in_eval && !PL_preambled) {
5260             PL_preambled = TRUE;
5261             if (PL_perldb) {
5262                 /* Generate a string of Perl code to load the debugger.
5263                  * If PERL5DB is set, it will return the contents of that,
5264                  * otherwise a compile-time require of perl5db.pl.  */
5265
5266                 const char * const pdb = PerlEnv_getenv("PERL5DB");
5267
5268                 if (pdb) {
5269                     sv_setpv(PL_linestr, pdb);
5270                     sv_catpvs(PL_linestr,";");
5271                 } else {
5272                     SETERRNO(0,SS_NORMAL);
5273                     sv_setpvs(PL_linestr, "BEGIN { require 'perl5db.pl' };");
5274                 }
5275                 PL_parser->preambling = CopLINE(PL_curcop);
5276             } else
5277                 SvPVCLEAR(PL_linestr);
5278             if (PL_preambleav) {
5279                 SV **svp = AvARRAY(PL_preambleav);
5280                 SV **const end = svp + AvFILLp(PL_preambleav);
5281                 while(svp <= end) {
5282                     sv_catsv(PL_linestr, *svp);
5283                     ++svp;
5284                     sv_catpvs(PL_linestr, ";");
5285                 }
5286                 sv_free(MUTABLE_SV(PL_preambleav));
5287                 PL_preambleav = NULL;
5288             }
5289             if (PL_minus_E)
5290                 sv_catpvs(PL_linestr,
5291                           "use feature ':5." STRINGIFY(PERL_VERSION) "';");
5292             if (PL_minus_n || PL_minus_p) {
5293                 sv_catpvs(PL_linestr, "LINE: while (<>) {"/*}*/);
5294                 if (PL_minus_l)
5295                     sv_catpvs(PL_linestr,"chomp;");
5296                 if (PL_minus_a) {
5297                     if (PL_minus_F) {
5298                         if (   (   *PL_splitstr == '/'
5299                                 || *PL_splitstr == '\''
5300                                 || *PL_splitstr == '"')
5301                             && strchr(PL_splitstr + 1, *PL_splitstr))
5302                             Perl_sv_catpvf(aTHX_ PL_linestr, "our @F=split(%s);", PL_splitstr);
5303                         else {
5304                             /* "q\0${splitstr}\0" is legal perl. Yes, even NUL
5305                                bytes can be used as quoting characters.  :-) */
5306                             const char *splits = PL_splitstr;
5307                             sv_catpvs(PL_linestr, "our @F=split(q\0");
5308                             do {
5309                                 /* Need to \ \s  */
5310                                 if (*splits == '\\')
5311                                     sv_catpvn(PL_linestr, splits, 1);
5312                                 sv_catpvn(PL_linestr, splits, 1);
5313                             } while (*splits++);
5314                             /* This loop will embed the trailing NUL of
5315                                PL_linestr as the last thing it does before
5316                                terminating.  */
5317                             sv_catpvs(PL_linestr, ");");
5318                         }
5319                     }
5320                     else
5321                         sv_catpvs(PL_linestr,"our @F=split(' ');");
5322                 }
5323             }
5324             sv_catpvs(PL_linestr, "\n");
5325             PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = SvPVX(PL_linestr);
5326             PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
5327             PL_last_lop = PL_last_uni = NULL;
5328             if (PERLDB_LINE_OR_SAVESRC && PL_curstash != PL_debstash)
5329                 update_debugger_info(PL_linestr, NULL, 0);
5330             goto retry;
5331         }
5332         do {
5333             fake_eof = 0;
5334             bof = cBOOL(PL_rsfp);
5335             if (0) {
5336               fake_eof:
5337                 fake_eof = LEX_FAKE_EOF;
5338             }
5339             PL_bufptr = PL_bufend;
5340             COPLINE_INC_WITH_HERELINES;
5341             if (!lex_next_chunk(fake_eof)) {
5342                 CopLINE_dec(PL_curcop);
5343                 s = PL_bufptr;
5344                 TOKEN(';');     /* not infinite loop because rsfp is NULL now */
5345             }
5346             CopLINE_dec(PL_curcop);
5347             s = PL_bufptr;
5348             /* If it looks like the start of a BOM or raw UTF-16,
5349              * check if it in fact is. */
5350             if (bof && PL_rsfp
5351                 && (   *s == 0
5352                     || *(U8*)s == BOM_UTF8_FIRST_BYTE
5353                     || *(U8*)s >= 0xFE
5354                     || s[1] == 0))
5355             {
5356                 Off_t offset = (IV)PerlIO_tell(PL_rsfp);
5357                 bof = (offset == (Off_t)SvCUR(PL_linestr));
5358 #if defined(PERLIO_USING_CRLF) && defined(PERL_TEXTMODE_SCRIPTS)
5359                 /* offset may include swallowed CR */
5360                 if (!bof)
5361                     bof = (offset == (Off_t)SvCUR(PL_linestr)+1);
5362 #endif
5363                 if (bof) {
5364                     PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
5365                     s = swallow_bom((U8*)s);
5366                 }
5367             }
5368             if (PL_parser->in_pod) {
5369                 /* Incest with pod. */
5370                 if (*s == '=' && strEQs(s, "=cut") && !isALPHA(s[4])) {
5371                     SvPVCLEAR(PL_linestr);
5372                     PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = SvPVX(PL_linestr);
5373                     PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
5374                     PL_last_lop = PL_last_uni = NULL;
5375                     PL_parser->in_pod = 0;
5376                 }
5377             }
5378             if (PL_rsfp || PL_parser->filtered)
5379                 incline(s);
5380         } while (PL_parser->in_pod);
5381         PL_oldoldbufptr = PL_oldbufptr = PL_bufptr = PL_linestart = s;
5382         PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
5383         PL_last_lop = PL_last_uni = NULL;
5384         if (CopLINE(PL_curcop) == 1) {
5385             while (s < PL_bufend && isSPACE(*s))
5386                 s++;
5387             if (*s == ':' && s[1] != ':') /* for csh execing sh scripts */
5388                 s++;
5389             d = NULL;
5390             if (!PL_in_eval) {
5391                 if (*s == '#' && *(s+1) == '!')
5392                     d = s + 2;
5393 #ifdef ALTERNATE_SHEBANG
5394                 else {
5395                     static char const as[] = ALTERNATE_SHEBANG;
5396                     if (*s == as[0] && strnEQ(s, as, sizeof(as) - 1))
5397                         d = s + (sizeof(as) - 1);
5398                 }
5399 #endif /* ALTERNATE_SHEBANG */
5400             }
5401             if (d) {
5402                 char *ipath;
5403                 char *ipathend;
5404
5405                 while (isSPACE(*d))
5406                     d++;
5407                 ipath = d;
5408                 while (*d && !isSPACE(*d))
5409                     d++;
5410                 ipathend = d;
5411
5412 #ifdef ARG_ZERO_IS_SCRIPT
5413                 if (ipathend > ipath) {
5414                     /*
5415                      * HP-UX (at least) sets argv[0] to the script name,
5416                      * which makes $^X incorrect.  And Digital UNIX and Linux,
5417                      * at least, set argv[0] to the basename of the Perl
5418                      * interpreter. So, having found "#!", we'll set it right.
5419                      */
5420                     SV* copfilesv = CopFILESV(PL_curcop);
5421                     if (copfilesv) {
5422                         SV * const x =
5423                             GvSV(gv_fetchpvs("\030", GV_ADD|GV_NOTQUAL,
5424                                              SVt_PV)); /* $^X */
5425                         assert(SvPOK(x) || SvGMAGICAL(x));
5426                         if (sv_eq(x, copfilesv)) {
5427                             sv_setpvn(x, ipath, ipathend - ipath);
5428                             SvSETMAGIC(x);
5429                         }
5430                         else {
5431                             STRLEN blen;
5432                             STRLEN llen;
5433                             const char *bstart = SvPV_const(copfilesv, blen);
5434                             const char * const lstart = SvPV_const(x, llen);
5435                             if (llen < blen) {
5436                                 bstart += blen - llen;
5437                                 if (strnEQ(bstart, lstart, llen) &&     bstart[-1] == '/') {
5438                                     sv_setpvn(x, ipath, ipathend - ipath);
5439                                     SvSETMAGIC(x);
5440                                 }
5441                             }
5442                         }
5443                     }
5444                     else {
5445                         /* Anything to do if no copfilesv? */
5446                     }
5447                     TAINT_NOT;  /* $^X is always tainted, but that's OK */
5448                 }
5449 #endif /* ARG_ZERO_IS_SCRIPT */
5450
5451                 /*
5452                  * Look for options.
5453                  */
5454                 d = instr(s,"perl -");
5455                 if (!d) {
5456                     d = instr(s,"perl");
5457 #if defined(DOSISH)
5458                     /* avoid getting into infinite loops when shebang
5459                      * line contains "Perl" rather than "perl" */
5460                     if (!d) {
5461                         for (d = ipathend-4; d >= ipath; --d) {
5462                             if (isALPHA_FOLD_EQ(*d, 'p')
5463                                 && !ibcmp(d, "perl", 4))
5464                             {
5465                                 break;
5466                             }
5467                         }
5468                         if (d < ipath)
5469                             d = NULL;
5470                     }
5471 #endif
5472                 }
5473 #ifdef ALTERNATE_SHEBANG
5474                 /*
5475                  * If the ALTERNATE_SHEBANG on this system starts with a
5476                  * character that can be part of a Perl expression, then if
5477                  * we see it but not "perl", we're probably looking at the
5478                  * start of Perl code, not a request to hand off to some
5479                  * other interpreter.  Similarly, if "perl" is there, but
5480                  * not in the first 'word' of the line, we assume the line
5481                  * contains the start of the Perl program.
5482                  */
5483                 if (d && *s != '#') {
5484                     const char *c = ipath;
5485                     while (*c && !strchr("; \t\r\n\f\v#", *c))
5486                         c++;
5487                     if (c < d)
5488                         d = NULL;       /* "perl" not in first word; ignore */
5489                     else
5490                         *s = '#';       /* Don't try to parse shebang line */
5491                 }
5492 #endif /* ALTERNATE_SHEBANG */
5493                 if (!d
5494                     && *s == '#'
5495                     && ipathend > ipath
5496                     && !PL_minus_c
5497                     && !instr(s,"indir")
5498                     && instr(PL_origargv[0],"perl"))
5499                 {
5500                     dVAR;
5501                     char **newargv;
5502
5503                     *ipathend = '\0';
5504                     s = ipathend + 1;
5505                     while (s < PL_bufend && isSPACE(*s))
5506                         s++;
5507                     if (s < PL_bufend) {
5508                         Newx(newargv,PL_origargc+3,char*);
5509                         newargv[1] = s;
5510                         while (s < PL_bufend && !isSPACE(*s))
5511                             s++;
5512                         *s = '\0';
5513                         Copy(PL_origargv+1, newargv+2, PL_origargc+1, char*);
5514                     }
5515                     else
5516                         newargv = PL_origargv;
5517                     newargv[0] = ipath;
5518                     PERL_FPU_PRE_EXEC
5519                     PerlProc_execv(ipath, EXEC_ARGV_CAST(newargv));
5520                     PERL_FPU_POST_EXEC
5521                     Perl_croak(aTHX_ "Can't exec %s", ipath);
5522                 }
5523                 if (d) {
5524                     while (*d && !isSPACE(*d))
5525                         d++;
5526                     while (SPACE_OR_TAB(*d))
5527                         d++;
5528
5529                     if (*d++ == '-') {
5530                         const bool switches_done = PL_doswitches;
5531                         const U32 oldpdb = PL_perldb;
5532                         const bool oldn = PL_minus_n;
5533                         const bool oldp = PL_minus_p;
5534                         const char *d1 = d;
5535
5536                         do {
5537                             bool baduni = FALSE;
5538                             if (*d1 == 'C') {
5539                                 const char *d2 = d1 + 1;
5540                                 if (parse_unicode_opts((const char **)&d2)
5541                                     != PL_unicode)
5542                                     baduni = TRUE;
5543                             }
5544                             if (baduni || isALPHA_FOLD_EQ(*d1, 'M')) {
5545                                 const char * const m = d1;
5546                                 while (*d1 && !isSPACE(*d1))
5547                                     d1++;
5548                                 Perl_croak(aTHX_ "Too late for \"-%.*s\" option",
5549                                       (int)(d1 - m), m);
5550                             }
5551                             d1 = moreswitches(d1);
5552                         } while (d1);
5553                         if (PL_doswitches && !switches_done) {
5554                             int argc = PL_origargc;
5555                             char **argv = PL_origargv;
5556                             do {
5557                                 argc--,argv++;
5558                             } while (argc && argv[0][0] == '-' && argv[0][1]);
5559                             init_argv_symbols(argc,argv);
5560                         }
5561                         if (   (PERLDB_LINE_OR_SAVESRC && !oldpdb)
5562                             || ((PL_minus_n || PL_minus_p) && !(oldn || oldp)))
5563                               /* if we have already added "LINE: while (<>) {",
5564                                  we must not do it again */
5565                         {
5566                             SvPVCLEAR(PL_linestr);
5567                             PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = SvPVX(PL_linestr);
5568                             PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
5569                             PL_last_lop = PL_last_uni = NULL;
5570                             PL_preambled = FALSE;
5571                             if (PERLDB_LINE_OR_SAVESRC)
5572                                 (void)gv_fetchfile(PL_origfilename);
5573                             goto retry;
5574                         }
5575                     }
5576                 }
5577             }
5578         }
5579         if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) {
5580             PL_lex_state = LEX_FORMLINE;
5581             force_next(FORMRBRACK);
5582             TOKEN(';');
5583         }
5584         goto retry;
5585     case '\r':
5586 #ifdef PERL_STRICT_CR
5587         Perl_warn(aTHX_ "Illegal character \\%03o (carriage return)", '\r');
5588         Perl_croak(aTHX_
5589       "\t(Maybe you didn't strip carriage returns after a network transfer?)\n");
5590 #endif
5591     case ' ': case '\t': case '\f': case '\v':
5592         s++;
5593         goto retry;
5594     case '#':
5595     case '\n':
5596         if (PL_lex_state != LEX_NORMAL
5597             || (PL_in_eval && !PL_rsfp && !PL_parser->filtered))
5598         {
5599             const bool in_comment = *s == '#';
5600             if (*s == '#' && s == PL_linestart && PL_in_eval
5601              && !PL_rsfp && !PL_parser->filtered) {
5602                 /* handle eval qq[#line 1 "foo"\n ...] */
5603                 CopLINE_dec(PL_curcop);
5604                 incline(s);
5605             }
5606             d = s;
5607             while (d < PL_bufend && *d != '\n')
5608                 d++;
5609             if (d < PL_bufend)
5610                 d++;
5611             s = d;
5612             if (in_comment && d == PL_bufend
5613                 && PL_lex_state == LEX_INTERPNORMAL
5614                 && PL_lex_inwhat == OP_SUBST && PL_lex_repl == PL_linestr
5615                 && SvEVALED(PL_lex_repl) && d[-1] == '}') s--;
5616             else
5617                 incline(s);
5618             if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) {
5619                 PL_lex_state = LEX_FORMLINE;
5620                 force_next(FORMRBRACK);
5621                 TOKEN(';');
5622             }
5623         }
5624         else {
5625             while (s < PL_bufend && *s != '\n')
5626                 s++;
5627             if (s < PL_bufend)
5628                 {
5629                     s++;
5630                     if (s < PL_bufend)
5631                         incline(s);
5632                 }
5633         }
5634         goto retry;
5635     case '-':
5636         if (s[1] && isALPHA(s[1]) && !isWORDCHAR(s[2])) {
5637             I32 ftst = 0;
5638             char tmp;
5639
5640             s++;
5641             PL_bufptr = s;
5642             tmp = *s++;
5643
5644             while (s < PL_bufend && SPACE_OR_TAB(*s))
5645                 s++;
5646
5647             if (strEQs(s,"=>")) {
5648                 s = force_word(PL_bufptr,BAREWORD,FALSE,FALSE);
5649                 DEBUG_T( { printbuf("### Saw unary minus before =>, forcing word %s\n", s); } );
5650                 OPERATOR('-');          /* unary minus */
5651             }
5652             switch (tmp) {
5653             case 'r': ftst = OP_FTEREAD;        break;
5654             case 'w': ftst = OP_FTEWRITE;       break;
5655             case 'x': ftst = OP_FTEEXEC;        break;
5656             case 'o': ftst = OP_FTEOWNED;       break;
5657             case 'R': ftst = OP_FTRREAD;        break;
5658             case 'W': ftst = OP_FTRWRITE;       break;
5659             case 'X': ftst = OP_FTREXEC;        break;
5660             case 'O': ftst = OP_FTROWNED;       break;
5661             case 'e': ftst = OP_FTIS;           break;
5662             case 'z': ftst = OP_FTZERO;         break;
5663             case 's': ftst = OP_FTSIZE;         break;
5664             case 'f': ftst = OP_FTFILE;         break;
5665             case 'd': ftst = OP_FTDIR;          break;
5666             case 'l': ftst = OP_FTLINK;         break;
5667             case 'p': ftst = OP_FTPIPE;         break;
5668             case 'S': ftst = OP_FTSOCK;         break;
5669             case 'u': ftst = OP_FTSUID;         break;
5670             case 'g': ftst = OP_FTSGID;         break;
5671             case 'k': ftst = OP_FTSVTX;         break;
5672             case 'b': ftst = OP_FTBLK;          break;
5673             case 'c': ftst = OP_FTCHR;          break;
5674             case 't': ftst = OP_FTTTY;          break;
5675             case 'T': ftst = OP_FTTEXT;         break;
5676             case 'B': ftst = OP_FTBINARY;       break;
5677             case 'M': case 'A': case 'C':
5678                 gv_fetchpvs("\024", GV_ADD|GV_NOTQUAL, SVt_PV);
5679                 switch (tmp) {
5680                 case 'M': ftst = OP_FTMTIME;    break;
5681                 case 'A': ftst = OP_FTATIME;    break;
5682                 case 'C': ftst = OP_FTCTIME;    break;
5683                 default:                        break;
5684                 }
5685                 break;
5686             default:
5687                 break;
5688             }
5689             if (ftst) {
5690                 PL_last_uni = PL_oldbufptr;
5691                 PL_last_lop_op = (OPCODE)ftst;
5692                 DEBUG_T( { PerlIO_printf(Perl_debug_log,
5693                         "### Saw file test %c\n", (int)tmp);
5694                 } );
5695                 FTST(ftst);
5696             }
5697             else {
5698                 /* Assume it was a minus followed by a one-letter named
5699                  * subroutine call (or a -bareword), then. */
5700                 DEBUG_T( { PerlIO_printf(Perl_debug_log,
5701                         "### '-%c' looked like a file test but was not\n",
5702                         (int) tmp);
5703                 } );
5704                 s = --PL_bufptr;
5705             }
5706         }
5707         {
5708             const char tmp = *s++;
5709             if (*s == tmp) {
5710                 s++;
5711                 if (PL_expect == XOPERATOR)
5712                     TERM(POSTDEC);
5713                 else
5714                     OPERATOR(PREDEC);
5715             }
5716             else if (*s == '>') {
5717                 s++;
5718                 s = skipspace(s);
5719                 if (((*s == '$' || *s == '&') && s[1] == '*')
5720                   ||(*s == '$' && s[1] == '#' && s[2] == '*')
5721                   ||((*s == '@' || *s == '%') && strchr("*[{", s[1]))
5722                   ||(*s == '*' && (s[1] == '*' || s[1] == '{'))
5723                  )
5724                 {
5725                     PL_expect = XPOSTDEREF;
5726                     TOKEN(ARROW);
5727                 }
5728                 if (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)) {
5729                     s = force_word(s,METHOD,FALSE,TRUE);
5730                     TOKEN(ARROW);
5731                 }
5732                 else if (*s == '$')
5733                     OPERATOR(ARROW);
5734                 else
5735                     TERM(ARROW);
5736             }
5737             if (PL_expect == XOPERATOR) {
5738                 if (*s == '='
5739                     && !PL_lex_allbrackets
5740                     && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
5741                 {
5742                     s--;
5743                     TOKEN(0);
5744                 }
5745                 Aop(OP_SUBTRACT);
5746             }
5747             else {
5748                 if (isSPACE(*s) || !isSPACE(*PL_bufptr))
5749                     check_uni();
5750                 OPERATOR('-');          /* unary minus */
5751             }
5752         }
5753
5754     case '+':
5755         {
5756             const char tmp = *s++;
5757             if (*s == tmp) {
5758                 s++;
5759                 if (PL_expect == XOPERATOR)
5760                     TERM(POSTINC);
5761                 else
5762                     OPERATOR(PREINC);
5763             }
5764             if (PL_expect == XOPERATOR) {
5765                 if (*s == '='
5766                     && !PL_lex_allbrackets
5767                     && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
5768                 {
5769                     s--;
5770                     TOKEN(0);
5771                 }
5772                 Aop(OP_ADD);
5773             }
5774             else {
5775                 if (isSPACE(*s) || !isSPACE(*PL_bufptr))
5776                     check_uni();
5777                 OPERATOR('+');
5778             }
5779         }
5780
5781     case '*':
5782         if (PL_expect == XPOSTDEREF) POSTDEREF('*');
5783         if (PL_expect != XOPERATOR) {
5784             s = scan_ident(s, PL_tokenbuf, sizeof PL_tokenbuf, TRUE);
5785             PL_expect = XOPERATOR;
5786             force_ident(PL_tokenbuf, '*');
5787             if (!*PL_tokenbuf)
5788                 PREREF('*');
5789             TERM('*');
5790         }
5791         s++;
5792         if (*s == '*') {
5793             s++;
5794             if (*s == '=' && !PL_lex_allbrackets
5795                 && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
5796             {
5797                 s -= 2;
5798                 TOKEN(0);
5799             }
5800             PWop(OP_POW);
5801         }
5802         if (*s == '='
5803             && !PL_lex_allbrackets
5804             && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
5805         {
5806             s--;
5807             TOKEN(0);
5808         }
5809         PL_parser->saw_infix_sigil = 1;
5810         Mop(OP_MULTIPLY);
5811
5812     case '%':
5813     {
5814         if (PL_expect == XOPERATOR) {
5815             if (s[1] == '='
5816                 && !PL_lex_allbrackets
5817                 && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
5818             {
5819                 TOKEN(0);
5820             }
5821             ++s;
5822             PL_parser->saw_infix_sigil = 1;
5823             Mop(OP_MODULO);
5824         }
5825         else if (PL_expect == XPOSTDEREF) POSTDEREF('%');
5826         PL_tokenbuf[0] = '%';
5827         s = scan_ident(s, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1, FALSE);
5828         pl_yylval.ival = 0;
5829         if (!PL_tokenbuf[1]) {
5830             PREREF('%');
5831         }
5832         if ((PL_expect != XREF || PL_oldoldbufptr == PL_last_lop) && intuit_more(s)) {
5833             if (*s == '[')
5834                 PL_tokenbuf[0] = '@';
5835         }
5836         PL_expect = XOPERATOR;
5837         force_ident_maybe_lex('%');
5838         TERM('%');
5839     }
5840     case '^':
5841         d = s;
5842         bof = FEATURE_BITWISE_IS_ENABLED;
5843         if (bof && s[1] == '.')
5844             s++;
5845         if (!PL_lex_allbrackets && PL_lex_fakeeof >=
5846                 (s[1] == '=' ? LEX_FAKEEOF_ASSIGN : LEX_FAKEEOF_BITWISE))
5847         {
5848             s = d;
5849             TOKEN(0);
5850         }
5851         s++;
5852         BOop(bof ? d == s-2 ? OP_SBIT_XOR : OP_NBIT_XOR : OP_BIT_XOR);
5853     case '[':
5854         if (PL_lex_brackets > 100)
5855             Renew(PL_lex_brackstack, PL_lex_brackets + 10, char);
5856         PL_lex_brackstack[PL_lex_brackets++] = 0;
5857         PL_lex_allbrackets++;
5858         {
5859             const char tmp = *s++;
5860             OPERATOR(tmp);
5861         }
5862     case '~':
5863         if (s[1] == '~'
5864             && (PL_expect == XOPERATOR || PL_expect == XTERMORDORDOR))
5865         {
5866             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
5867                 TOKEN(0);
5868             s += 2;
5869             Perl_ck_warner_d(aTHX_
5870                 packWARN(WARN_EXPERIMENTAL__SMARTMATCH),
5871                 "Smartmatch is experimental");
5872             Eop(OP_SMARTMATCH);
5873         }
5874         s++;
5875         if ((bof = FEATURE_BITWISE_IS_ENABLED) && *s == '.') {
5876             s++;
5877             BCop(OP_SCOMPLEMENT);
5878         }
5879         BCop(bof ? OP_NCOMPLEMENT : OP_COMPLEMENT);
5880     case ',':
5881         if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMMA)
5882             TOKEN(0);
5883         s++;
5884         OPERATOR(',');
5885     case ':':
5886         if (s[1] == ':') {
5887             len = 0;
5888             goto just_a_word_zero_gv;
5889         }
5890         s++;
5891         {
5892         OP *attrs;
5893
5894         switch (PL_expect) {
5895         case XOPERATOR:
5896             if (!PL_in_my || PL_lex_state != LEX_NORMAL)
5897                 break;
5898             PL_bufptr = s;      /* update in case we back off */
5899             if (*s == '=') {
5900                 Perl_croak(aTHX_
5901                            "Use of := for an empty attribute list is not allowed");
5902             }
5903             goto grabattrs;
5904         case XATTRBLOCK:
5905             PL_expect = XBLOCK;
5906             goto grabattrs;
5907         case XATTRTERM:
5908             PL_expect = XTERMBLOCK;
5909          grabattrs:
5910             s = skipspace(s);
5911             attrs = NULL;
5912             while (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)) {
5913                 I32 tmp;
5914                 SV *sv;
5915                 d = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE, &len);
5916                 if (isLOWER(*s) && (tmp = keyword(PL_tokenbuf, len, 0))) {
5917                     if (tmp < 0) tmp = -tmp;
5918                     switch (tmp) {
5919                     case KEY_or:
5920                     case KEY_and:
5921                     case KEY_for:
5922                     case KEY_foreach:
5923                     case KEY_unless:
5924                     case KEY_if:
5925                     case KEY_while:
5926                     case KEY_until:
5927                         goto got_attrs;
5928                     default:
5929                         break;
5930                     }
5931                 }
5932                 sv = newSVpvn_flags(s, len, UTF ? SVf_UTF8 : 0);
5933                 if (*d == '(') {
5934                     d = scan_str(d,TRUE,TRUE,FALSE,NULL);
5935                     if (!d) {
5936                         if (attrs)
5937                             op_free(attrs);
5938                         sv_free(sv);
5939                         Perl_croak(aTHX_ "Unterminated attribute parameter in attribute list");
5940                     }
5941                     COPLINE_SET_FROM_MULTI_END;
5942                 }
5943                 if (PL_lex_stuff) {
5944                     sv_catsv(sv, PL_lex_stuff);
5945                     attrs = op_append_elem(OP_LIST, attrs,
5946                                         newSVOP(OP_CONST, 0, sv));
5947                     SvREFCNT_dec_NN(PL_lex_stuff);
5948                     PL_lex_stuff = NULL;
5949                 }
5950                 else {
5951                     /* NOTE: any CV attrs applied here need to be part of
5952                        the CVf_BUILTIN_ATTRS define in cv.h! */
5953                     if (!PL_in_my && len == 6 && strnEQ(SvPVX(sv), "lvalue", len)) {
5954                         sv_free(sv);
5955                         CvLVALUE_on(PL_compcv);
5956                     }
5957                     else if (!PL_in_my && len == 6 && strnEQ(SvPVX(sv), "method", len)) {
5958                         sv_free(sv);
5959                         CvMETHOD_on(PL_compcv);
5960                     }
5961                     else if (!PL_in_my && len == 5
5962                           && strnEQ(SvPVX(sv), "const", len))
5963                     {
5964                         sv_free(sv);
5965                         Perl_ck_warner_d(aTHX_
5966                             packWARN(WARN_EXPERIMENTAL__CONST_ATTR),
5967                            ":const is experimental"
5968                         );
5969                         CvANONCONST_on(PL_compcv);
5970                         if (!CvANON(PL_compcv))
5971                             yyerror(":const is not permitted on named "
5972                                     "subroutines");
5973                     }
5974                     /* After we've set the flags, it could be argued that
5975                        we don't need to do the attributes.pm-based setting
5976                        process, and shouldn't bother appending recognized
5977                        flags.  To experiment with that, uncomment the
5978                        following "else".  (Note that's already been
5979                        uncommented.  That keeps the above-applied built-in
5980                        attributes from being intercepted (and possibly
5981                        rejected) by a package's attribute routines, but is
5982                        justified by the performance win for the common case
5983                        of applying only built-in attributes.) */
5984                     else
5985                         attrs = op_append_elem(OP_LIST, attrs,
5986                                             newSVOP(OP_CONST, 0,
5987                                                     sv));
5988                 }
5989                 s = skipspace(d);
5990                 if (*s == ':' && s[1] != ':')
5991                     s = skipspace(s+1);
5992                 else if (s == d)
5993                     break;      /* require real whitespace or :'s */
5994                 /* XXX losing whitespace on sequential attributes here */
5995             }
5996             {
5997                 if (*s != ';'
5998                     && *s != '}'
5999                     && !(PL_expect == XOPERATOR
6000                          ? (*s == '=' ||  *s == ')')
6001                          : (*s == '{' ||  *s == '(')))
6002                 {
6003                     const char q = ((*s == '\'') ? '"' : '\'');
6004                     /* If here for an expression, and parsed no attrs, back
6005                        off. */
6006                     if (PL_expect == XOPERATOR && !attrs) {
6007                         s = PL_bufptr;
6008                         break;
6009                     }
6010                     /* MUST advance bufptr here to avoid bogus "at end of line"
6011                        context messages from yyerror().
6012                     */
6013                     PL_bufptr = s;
6014                     yyerror( (const char *)
6015                              (*s
6016                               ? Perl_form(aTHX_ "Invalid separator character "
6017                                           "%c%c%c in attribute list", q, *s, q)
6018                               : "Unterminated attribute list" ) );
6019                     if (attrs)
6020                         op_free(attrs);
6021                     OPERATOR(':');
6022                 }
6023             }
6024         got_attrs:
6025             if (attrs) {
6026                 NEXTVAL_NEXTTOKE.opval = attrs;
6027                 force_next(THING);
6028             }
6029             TOKEN(COLONATTR);
6030         }
6031         }
6032         if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_CLOSING) {
6033             s--;
6034             TOKEN(0);
6035         }
6036         PL_lex_allbrackets--;
6037         OPERATOR(':');
6038     case '(':
6039         s++;
6040         if (PL_last_lop == PL_oldoldbufptr || PL_last_uni == PL_oldoldbufptr)
6041             PL_oldbufptr = PL_oldoldbufptr;             /* allow print(STDOUT 123) */
6042         else
6043             PL_expect = XTERM;
6044         s = skipspace(s);
6045         PL_lex_allbrackets++;
6046         TOKEN('(');
6047     case ';':
6048         if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
6049             TOKEN(0);
6050         CLINE;
6051         s++;
6052         PL_expect = XSTATE;
6053         TOKEN(';');
6054     case ')':
6055         if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_CLOSING)
6056             TOKEN(0);
6057         s++;
6058         PL_lex_allbrackets--;
6059         s = skipspace(s);
6060         if (*s == '{')
6061             PREBLOCK(')');
6062         TERM(')');
6063     case ']':
6064         if (PL_lex_brackets && PL_lex_brackstack[PL_lex_brackets-1] == XFAKEEOF)
6065             TOKEN(0);
6066         s++;
6067         if (PL_lex_brackets <= 0)
6068             /* diag_listed_as: Unmatched right %s bracket */
6069             yyerror("Unmatched right square bracket");
6070         else
6071             --PL_lex_brackets;
6072         PL_lex_allbrackets--;
6073         if (PL_lex_state == LEX_INTERPNORMAL) {
6074             if (PL_lex_brackets == 0) {
6075                 if (*s == '-' && s[1] == '>')
6076                     PL_lex_state = LEX_INTERPENDMAYBE;
6077                 else if (*s != '[' && *s != '{')
6078                     PL_lex_state = LEX_INTERPEND;
6079             }
6080         }
6081         TERM(']');
6082     case '{':
6083         s++;
6084       leftbracket:
6085         if (PL_lex_brackets > 100) {
6086             Renew(PL_lex_brackstack, PL_lex_brackets + 10, char);
6087         }
6088         switch (PL_expect) {
6089         case XTERM:
6090         case XTERMORDORDOR:
6091             PL_lex_brackstack[PL_lex_brackets++] = XOPERATOR;
6092             PL_lex_allbrackets++;
6093             OPERATOR(HASHBRACK);
6094         case XOPERATOR:
6095             while (s < PL_bufend && SPACE_OR_TAB(*s))
6096                 s++;
6097             d = s;
6098             PL_tokenbuf[0] = '\0';
6099             if (d < PL_bufend && *d == '-') {
6100                 PL_tokenbuf[0] = '-';
6101                 d++;
6102                 while (d < PL_bufend && SPACE_OR_TAB(*d))
6103                     d++;
6104             }
6105             if (d < PL_bufend && isIDFIRST_lazy_if_safe(d, PL_bufend, UTF)) {
6106                 d = scan_word(d, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1,
6107                               FALSE, &len);
6108                 while (d < PL_bufend && SPACE_OR_TAB(*d))
6109                     d++;
6110                 if (*d == '}') {
6111                     const char minus = (PL_tokenbuf[0] == '-');
6112                     s = force_word(s + minus, BAREWORD, FALSE, TRUE);
6113                     if (minus)
6114                         force_next('-');
6115                 }
6116             }
6117             /* FALLTHROUGH */
6118         case XATTRTERM:
6119         case XTERMBLOCK:
6120             PL_lex_brackstack[PL_lex_brackets++] = XOPERATOR;
6121             PL_lex_allbrackets++;
6122             PL_expect = XSTATE;
6123             break;
6124         case XATTRBLOCK:
6125         case XBLOCK:
6126             PL_lex_brackstack[PL_lex_brackets++] = XSTATE;
6127             PL_lex_allbrackets++;
6128             PL_expect = XSTATE;
6129             break;
6130         case XBLOCKTERM:
6131             PL_lex_brackstack[PL_lex_brackets++] = XTERM;
6132             PL_lex_allbrackets++;
6133             PL_expect = XSTATE;
6134             break;
6135         default: {
6136                 const char *t;
6137                 if (PL_oldoldbufptr == PL_last_lop)
6138                     PL_lex_brackstack[PL_lex_brackets++] = XTERM;
6139                 else
6140                     PL_lex_brackstack[PL_lex_brackets++] = XOPERATOR;
6141                 PL_lex_allbrackets++;
6142                 s = skipspace(s);
6143                 if (*s == '}') {
6144                     if (PL_expect == XREF && PL_lex_state == LEX_INTERPNORMAL) {
6145                         PL_expect = XTERM;
6146                         /* This hack is to get the ${} in the message. */
6147                         PL_bufptr = s+1;
6148                         yyerror("syntax error");
6149                         break;
6150                     }
6151                     OPERATOR(HASHBRACK);
6152                 }
6153                 if (PL_expect == XREF && PL_oldoldbufptr != PL_last_lop) {
6154                     /* ${...} or @{...} etc., but not print {...}
6155                      * Skip the disambiguation and treat this as a block.
6156                      */
6157                     goto block_expectation;
6158                 }
6159                 /* This hack serves to disambiguate a pair of curlies
6160                  * as being a block or an anon hash.  Normally, expectation
6161                  * determines that, but in cases where we're not in a
6162                  * position to expect anything in particular (like inside
6163                  * eval"") we have to resolve the ambiguity.  This code
6164                  * covers the case where the first term in the curlies is a
6165                  * quoted string.  Most other cases need to be explicitly
6166                  * disambiguated by prepending a "+" before the opening
6167                  * curly in order to force resolution as an anon hash.
6168                  *
6169                  * XXX should probably propagate the outer expectation
6170                  * into eval"" to rely less on this hack, but that could
6171                  * potentially break current behavior of eval"".
6172                  * GSAR 97-07-21
6173                  */
6174                 t = s;
6175                 if (*s == '\'' || *s == '"' || *s == '`') {
6176                     /* common case: get past first string, handling escapes */
6177                     for (t++; t < PL_bufend && *t != *s;)
6178                         if (*t++ == '\\')
6179                             t++;
6180                     t++;
6181                 }
6182                 else if (*s == 'q') {
6183                     if (++t < PL_bufend
6184                         && (!isWORDCHAR(*t)
6185                             || ((*t == 'q' || *t == 'x') && ++t < PL_bufend
6186                                 && !isWORDCHAR(*t))))
6187                     {
6188                         /* skip q//-like construct */
6189                         const char *tmps;
6190                         char open, close, term;
6191                         I32 brackets = 1;
6192
6193                         while (t < PL_bufend && isSPACE(*t))
6194                             t++;
6195                         /* check for q => */
6196                         if (t+1 < PL_bufend && t[0] == '=' && t[1] == '>') {
6197                             OPERATOR(HASHBRACK);
6198                         }
6199                         term = *t;
6200                         open = term;
6201                         if (term && (tmps = strchr("([{< )]}> )]}>",term)))
6202                             term = tmps[5];
6203                         close = term;
6204                         if (open == close)
6205                             for (t++; t < PL_bufend; t++) {
6206                                 if (*t == '\\' && t+1 < PL_bufend && open != '\\')
6207                                     t++;
6208                                 else if (*t == open)
6209                                     break;
6210                             }
6211                         else {
6212                             for (t++; t < PL_bufend; t++) {
6213                                 if (*t == '\\' && t+1 < PL_bufend)
6214                                     t++;
6215                                 else if (*t == close && --brackets <= 0)
6216                                     break;
6217                                 else if (*t == open)
6218                                     brackets++;
6219                             }
6220                         }
6221                         t++;
6222                     }
6223                     else
6224                         /* skip plain q word */
6225                         while (   t < PL_bufend
6226                                && isWORDCHAR_lazy_if_safe(t, PL_bufend, UTF))
6227                         {
6228                             t += UTF ? UTF8SKIP(t) : 1;
6229                         }
6230                 }
6231                 else if (isWORDCHAR_lazy_if_safe(t, PL_bufend, UTF)) {
6232                     t += UTF ? UTF8SKIP(t) : 1;
6233                     while (   t < PL_bufend
6234                            && isWORDCHAR_lazy_if_safe(t, PL_bufend, UTF))
6235                     {
6236                         t += UTF ? UTF8SKIP(t) : 1;
6237                     }
6238                 }
6239                 while (t < PL_bufend && isSPACE(*t))
6240                     t++;
6241                 /* if comma follows first term, call it an anon hash */
6242                 /* XXX it could be a comma expression with loop modifiers */
6243                 if (t < PL_bufend && ((*t == ',' && (*s == 'q' || !isLOWER(*s)))
6244                                    || (*t == '=' && t[1] == '>')))
6245                     OPERATOR(HASHBRACK);
6246                 if (PL_expect == XREF)
6247                 {
6248                   block_expectation:
6249                     /* If there is an opening brace or 'sub:', treat it
6250                        as a term to make ${{...}}{k} and &{sub:attr...}
6251                        dwim.  Otherwise, treat it as a statement, so
6252                        map {no strict; ...} works.
6253                      */
6254                     s = skipspace(s);
6255                     if (*s == '{') {
6256                         PL_expect = XTERM;
6257                         break;
6258                     }
6259                     if (strEQs(s, "sub")) {
6260                         PL_bufptr = s;
6261                         d = s + 3;
6262                         d = skipspace(d);
6263                         s = PL_bufptr;
6264                         if (*d == ':') {
6265                             PL_expect = XTERM;
6266                             break;
6267                         }
6268                     }
6269                     PL_expect = XSTATE;
6270                 }
6271                 else {
6272                     PL_lex_brackstack[PL_lex_brackets-1] = XSTATE;
6273                     PL_expect = XSTATE;
6274                 }
6275             }
6276             break;
6277         }
6278         pl_yylval.ival = CopLINE(PL_curcop);
6279         PL_copline = NOLINE;   /* invalidate current command line number */
6280         TOKEN(formbrack ? '=' : '{');
6281     case '}':
6282         if (PL_lex_brackets && PL_lex_brackstack[PL_lex_brackets-1] == XFAKEEOF)
6283             TOKEN(0);
6284       rightbracket:
6285         assert(s != PL_bufend);
6286         s++;
6287         if (PL_lex_brackets <= 0)
6288             /* diag_listed_as: Unmatched right %s bracket */
6289             yyerror("Unmatched right curly bracket");
6290         else
6291             PL_expect = (expectation)PL_lex_brackstack[--PL_lex_brackets];
6292         PL_lex_allbrackets--;
6293         if (PL_lex_state == LEX_INTERPNORMAL) {
6294             if (PL_lex_brackets == 0) {
6295                 if (PL_expect & XFAKEBRACK) {
6296                     PL_expect &= XENUMMASK;
6297                     PL_lex_state = LEX_INTERPEND;
6298                     PL_bufptr = s;
6299                     return yylex();     /* ignore fake brackets */
6300                 }
6301                 if (PL_lex_inwhat == OP_SUBST && PL_lex_repl == PL_linestr
6302                  && SvEVALED(PL_lex_repl))
6303                     PL_lex_state = LEX_INTERPEND;
6304                 else if (*s == '-' && s[1] == '>')
6305                     PL_lex_state = LEX_INTERPENDMAYBE;
6306                 else if (*s != '[' && *s != '{')
6307                     PL_lex_state = LEX_INTERPEND;
6308             }
6309         }
6310         if (PL_expect & XFAKEBRACK) {
6311             PL_expect &= XENUMMASK;
6312             PL_bufptr = s;
6313             return yylex();             /* ignore fake brackets */
6314         }
6315         force_next(formbrack ? '.' : '}');
6316         if (formbrack) LEAVE_with_name("lex_format");
6317         if (formbrack == 2) { /* means . where arguments were expected */
6318             force_next(';');
6319             TOKEN(FORMRBRACK);
6320         }
6321         TOKEN(';');
6322     case '&':
6323         if (PL_expect == XPOSTDEREF) POSTDEREF('&');
6324         s++;
6325         if (*s++ == '&') {
6326             if (!PL_lex_allbrackets && PL_lex_fakeeof >=
6327                     (*s == '=' ? LEX_FAKEEOF_ASSIGN : LEX_FAKEEOF_LOGIC)) {
6328                 s -= 2;
6329                 TOKEN(0);
6330             }
6331             AOPERATOR(ANDAND);
6332         }
6333         s--;
6334         if (PL_expect == XOPERATOR) {
6335             if (   PL_bufptr == PL_linestart
6336                 && ckWARN(WARN_SEMICOLON)
6337                 && isIDFIRST_lazy_if_safe(s, PL_bufend, UTF))
6338             {
6339                 CopLINE_dec(PL_curcop);
6340                 Perl_warner(aTHX_ packWARN(WARN_SEMICOLON), "%s", PL_warn_nosemi);
6341                 CopLINE_inc(PL_curcop);
6342             }
6343             d = s;
6344             if ((bof = FEATURE_BITWISE_IS_ENABLED) && *s == '.')
6345                 s++;
6346             if (!PL_lex_allbrackets && PL_lex_fakeeof >=
6347                     (*s == '=' ? LEX_FAKEEOF_ASSIGN : LEX_FAKEEOF_BITWISE)) {
6348                 s = d;
6349                 s--;
6350                 TOKEN(0);
6351             }
6352             if (d == s) {
6353                 PL_parser->saw_infix_sigil = 1;
6354                 BAop(bof ? OP_NBIT_AND : OP_BIT_AND);
6355             }
6356             else
6357                 BAop(OP_SBIT_AND);
6358         }
6359
6360         PL_tokenbuf[0] = '&';
6361         s = scan_ident(s - 1, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1, TRUE);
6362         pl_yylval.ival = (OPpENTERSUB_AMPER<<8);
6363         if (PL_tokenbuf[1]) {
6364             force_ident_maybe_lex('&');
6365         }
6366         else
6367             PREREF('&');
6368         TERM('&');
6369
6370     case '|':
6371         s++;
6372         if (*s++ == '|') {
6373             if (!PL_lex_allbrackets && PL_lex_fakeeof >=
6374                     (*s == '=' ? LEX_FAKEEOF_ASSIGN : LEX_FAKEEOF_LOGIC)) {
6375                 s -= 2;
6376                 TOKEN(0);
6377             }
6378             AOPERATOR(OROR);
6379         }
6380         s--;
6381         d = s;
6382         if ((bof = FEATURE_BITWISE_IS_ENABLED) && *s == '.')
6383             s++;
6384         if (!PL_lex_allbrackets && PL_lex_fakeeof >=
6385                 (*s == '=' ? LEX_FAKEEOF_ASSIGN : LEX_FAKEEOF_BITWISE)) {
6386             s = d - 1;
6387             TOKEN(0);
6388         }
6389         BOop(bof ? s == d ? OP_NBIT_OR : OP_SBIT_OR : OP_BIT_OR);
6390     case '=':
6391         s++;
6392         {
6393             const char tmp = *s++;
6394             if (tmp == '=') {
6395                 if ((s == PL_linestart+2 || s[-3] == '\n') && strEQs(s, "=====")) {
6396                     s = vcs_conflict_marker(s + 5);
6397                     goto retry;
6398                 }
6399                 if (!PL_lex_allbrackets
6400                     && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
6401                 {
6402                     s -= 2;
6403                     TOKEN(0);
6404                 }
6405                 Eop(OP_EQ);
6406             }
6407             if (tmp == '>') {
6408                 if (!PL_lex_allbrackets
6409                     && PL_lex_fakeeof >= LEX_FAKEEOF_COMMA)
6410                 {
6411                     s -= 2;
6412                     TOKEN(0);
6413                 }
6414                 OPERATOR(',');
6415             }
6416             if (tmp == '~')
6417                 PMop(OP_MATCH);
6418             if (tmp && isSPACE(*s) && ckWARN(WARN_SYNTAX)
6419                 && strchr("+-*/%.^&|<",tmp))
6420                 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
6421                             "Reversed %c= operator",(int)tmp);
6422             s--;
6423             if (PL_expect == XSTATE
6424                 && isALPHA(tmp)
6425                 && (s == PL_linestart+1 || s[-2] == '\n') )
6426             {
6427                 if (   (PL_in_eval && !PL_rsfp && !PL_parser->filtered)
6428                     || PL_lex_state != LEX_NORMAL)
6429                 {
6430                     d = PL_bufend;
6431                     while (s < d) {
6432                         if (*s++ == '\n') {
6433                             incline(s);
6434                             if (strEQs(s,"=cut")) {
6435                                 s = strchr(s,'\n');
6436                                 if (s)
6437                                     s++;
6438                                 else
6439                                     s = d;
6440                                 incline(s);
6441                                 goto retry;
6442                             }
6443                         }
6444                     }
6445                     goto retry;
6446                 }
6447                 s = PL_bufend;
6448                 PL_parser->in_pod = 1;
6449                 goto retry;
6450             }
6451         }
6452         if (PL_expect == XBLOCK) {
6453             const char *t = s;
6454 #ifdef PERL_STRICT_CR
6455             while (SPACE_OR_TAB(*t))
6456 #else
6457             while (SPACE_OR_TAB(*t) || *t == '\r')
6458 #endif
6459                 t++;
6460             if (*t == '\n' || *t == '#') {
6461                 formbrack = 1;
6462                 ENTER_with_name("lex_format");
6463                 SAVEI8(PL_parser->form_lex_state);
6464                 SAVEI32(PL_lex_formbrack);
6465                 PL_parser->form_lex_state = PL_lex_state;
6466                 PL_lex_formbrack = PL_lex_brackets + 1;
6467                 goto leftbracket;
6468             }
6469         }
6470         if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN) {
6471             s--;
6472             TOKEN(0);
6473         }
6474         pl_yylval.ival = 0;
6475         OPERATOR(ASSIGNOP);
6476     case '!':
6477         s++;
6478         {
6479             const char tmp = *s++;
6480             if (tmp == '=') {
6481                 /* was this !=~ where !~ was meant?
6482                  * warn on m:!=~\s+([/?]|[msy]\W|tr\W): */
6483
6484                 if (*s == '~' && ckWARN(WARN_SYNTAX)) {
6485                     const char *t = s+1;
6486
6487                     while (t < PL_bufend && isSPACE(*t))
6488                         ++t;
6489
6490                     if (*t == '/' || *t == '?'
6491                         || ((*t == 'm' || *t == 's' || *t == 'y')
6492                             && !isWORDCHAR(t[1]))
6493                         || (*t == 't' && t[1] == 'r' && !isWORDCHAR(t[2])))
6494                         Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
6495                                     "!=~ should be !~");
6496                 }
6497                 if (!PL_lex_allbrackets
6498                     && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
6499                 {
6500                     s -= 2;
6501                     TOKEN(0);
6502                 }
6503                 Eop(OP_NE);
6504             }
6505             if (tmp == '~')
6506                 PMop(OP_NOT);
6507         }
6508         s--;
6509         OPERATOR('!');
6510     case '<':
6511         if (PL_expect != XOPERATOR) {
6512             if (s[1] != '<' && !strchr(s,'>'))
6513                 check_uni();
6514             if (s[1] == '<' && s[2] != '>') {
6515                 if ((s == PL_linestart || s[-1] == '\n') && strEQs(s+2, "<<<<<")) {
6516                     s = vcs_conflict_marker(s + 7);
6517                     goto retry;
6518                 }
6519                 s = scan_heredoc(s);
6520             }
6521             else
6522                 s = scan_inputsymbol(s);
6523             PL_expect = XOPERATOR;
6524             TOKEN(sublex_start());
6525         }
6526         s++;
6527         {
6528             char tmp = *s++;
6529             if (tmp == '<') {
6530                 if ((s == PL_linestart+2 || s[-3] == '\n') && strEQs(s, "<<<<<")) {
6531                     s = vcs_conflict_marker(s + 5);
6532                     goto retry;
6533                 }
6534                 if (*s == '=' && !PL_lex_allbrackets
6535                     && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
6536                 {
6537                     s -= 2;
6538                     TOKEN(0);
6539                 }
6540                 SHop(OP_LEFT_SHIFT);
6541             }
6542             if (tmp == '=') {
6543                 tmp = *s++;
6544                 if (tmp == '>') {
6545                     if (!PL_lex_allbrackets
6546                         && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
6547                     {
6548                         s -= 3;
6549                         TOKEN(0);
6550                     }
6551                     Eop(OP_NCMP);
6552                 }
6553                 s--;
6554                 if (!PL_lex_allbrackets
6555                     && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
6556                 {
6557                     s -= 2;
6558                     TOKEN(0);
6559                 }
6560                 Rop(OP_LE);
6561             }
6562         }
6563         s--;
6564         if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE) {
6565             s--;
6566             TOKEN(0);
6567         }
6568         Rop(OP_LT);
6569     case '>':
6570         s++;
6571         {
6572             const char tmp = *s++;
6573             if (tmp == '>') {
6574                 if ((s == PL_linestart+2 || s[-3] == '\n') && strEQs(s, ">>>>>")) {
6575                     s = vcs_conflict_marker(s + 5);
6576                     goto retry;
6577                 }
6578                 if (*s == '=' && !PL_lex_allbrackets
6579                     && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
6580                 {
6581                     s -= 2;
6582                     TOKEN(0);
6583                 }
6584                 SHop(OP_RIGHT_SHIFT);
6585             }
6586             else if (tmp == '=') {
6587                 if (!PL_lex_allbrackets
6588                     && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
6589                 {
6590                     s -= 2;
6591                     TOKEN(0);
6592                 }
6593                 Rop(OP_GE);
6594             }
6595         }
6596         s--;
6597         if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE) {
6598             s--;
6599             TOKEN(0);
6600         }
6601         Rop(OP_GT);
6602
6603     case '$':
6604         CLINE;
6605
6606         if (PL_expect == XPOSTDEREF) {
6607             if (s[1] == '#') {
6608                 s++;
6609                 POSTDEREF(DOLSHARP);
6610             }
6611             POSTDEREF('$');
6612         }
6613
6614         if (   s[1] == '#'
6615             && (   isIDFIRST_lazy_if_safe(s+2, PL_bufend, UTF)
6616                 || strchr("{$:+-@", s[2])))
6617         {
6618             PL_tokenbuf[0] = '@';
6619             s = scan_ident(s + 1, PL_tokenbuf + 1,
6620                            sizeof PL_tokenbuf - 1, FALSE);
6621             if (PL_expect == XOPERATOR) {
6622                 d = s;
6623                 if (PL_bufptr > s) {
6624                     d = PL_bufptr-1;
6625                     PL_bufptr = PL_oldbufptr;
6626                 }
6627                 no_op("Array length", d);
6628             }
6629             if (!PL_tokenbuf[1])
6630                 PREREF(DOLSHARP);
6631             PL_expect = XOPERATOR;
6632             force_ident_maybe_lex('#');
6633             TOKEN(DOLSHARP);
6634         }
6635
6636         PL_tokenbuf[0] = '$';
6637         s = scan_ident(s, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1, FALSE);
6638         if (PL_expect == XOPERATOR) {
6639             d = s;
6640             if (PL_bufptr > s) {
6641                 d = PL_bufptr-1;
6642                 PL_bufptr = PL_oldbufptr;
6643             }
6644             no_op("Scalar", d);
6645         }
6646         if (!PL_tokenbuf[1]) {
6647             if (s == PL_bufend)
6648                 yyerror("Final $ should be \\$ or $name");
6649             PREREF('$');
6650         }
6651
6652         d = s;
6653         {
6654             const char tmp = *s;
6655             if (PL_lex_state == LEX_NORMAL || PL_lex_brackets)
6656                 s = skipspace(s);
6657
6658             if ((PL_expect != XREF || PL_oldoldbufptr == PL_last_lop)
6659                 && intuit_more(s)) {
6660                 if (*s == '[') {
6661                     PL_tokenbuf[0] = '@';
6662                     if (ckWARN(WARN_SYNTAX)) {
6663                         char *t = s+1;
6664
6665                         while (   isSPACE(*t)
6666                                || isWORDCHAR_lazy_if_safe(t, PL_bufend, UTF)
6667                                || *t == '$')
6668                         {
6669                             t += UTF ? UTF8SKIP(t) : 1;
6670                         }
6671                         if (*t++ == ',') {
6672                             PL_bufptr = skipspace(PL_bufptr); /* XXX can realloc */
6673                             while (t < PL_bufend && *t != ']')
6674                                 t++;
6675                             Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
6676                                         "Multidimensional syntax %" UTF8f " not supported",
6677                                         UTF8fARG(UTF,(int)((t - PL_bufptr) + 1), PL_bufptr));
6678                         }
6679                     }
6680                 }
6681                 else if (*s == '{') {
6682                     char *t;
6683                     PL_tokenbuf[0] = '%';
6684                     if (strEQ(PL_tokenbuf+1, "SIG")  && ckWARN(WARN_SYNTAX)
6685                         && (t = strchr(s, '}')) && (t = strchr(t, '=')))
6686                     {
6687                         char tmpbuf[sizeof PL_tokenbuf];
6688                         do {
6689                             t++;
6690                         } while (isSPACE(*t));
6691                         if (isIDFIRST_lazy_if_safe(t, PL_bufend, UTF)) {
6692                             STRLEN len;
6693                             t = scan_word(t, tmpbuf, sizeof tmpbuf, TRUE,
6694                                             &len);
6695                             while (isSPACE(*t))
6696                                 t++;
6697                             if (  *t == ';'
6698                                 && get_cvn_flags(tmpbuf, len, UTF
6699                                                                 ? SVf_UTF8
6700                                                                 : 0))
6701                             {
6702                                 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
6703                                     "You need to quote \"%" UTF8f "\"",
6704                                         UTF8fARG(UTF, len, tmpbuf));
6705                             }
6706                         }
6707                     }
6708                 }
6709             }
6710
6711             PL_expect = XOPERATOR;
6712             if (PL_lex_state == LEX_NORMAL && isSPACE((char)tmp)) {
6713                 const bool islop = (PL_last_lop == PL_oldoldbufptr);
6714                 if (!islop || PL_last_lop_op == OP_GREPSTART)
6715                     PL_expect = XOPERATOR;
6716                 else if (strchr("$@\"'`q", *s))
6717                     PL_expect = XTERM;          /* e.g. print $fh "foo" */
6718                 else if (   strchr("&*<%", *s)
6719                          && isIDFIRST_lazy_if_safe(s+1, PL_bufend, UTF))
6720                 {
6721                     PL_expect = XTERM;          /* e.g. print $fh &sub */
6722                 }
6723                 else if (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)) {
6724                     char tmpbuf[sizeof PL_tokenbuf];
6725                     int t2;
6726                     scan_word(s, tmpbuf, sizeof tmpbuf, TRUE, &len);
6727                     if ((t2 = keyword(tmpbuf, len, 0))) {
6728                         /* binary operators exclude handle interpretations */
6729                         switch (t2) {
6730                         case -KEY_x:
6731                         case -KEY_eq:
6732                         case -KEY_ne:
6733                         case -KEY_gt:
6734                         case -KEY_lt:
6735                         case -KEY_ge:
6736                         case -KEY_le:
6737                         case -KEY_cmp:
6738                             break;
6739                         default:
6740                             PL_expect = XTERM;  /* e.g. print $fh length() */
6741                             break;
6742                         }
6743                     }
6744                     else {
6745                         PL_expect = XTERM;      /* e.g. print $fh subr() */
6746                     }
6747                 }
6748                 else if (isDIGIT(*s))
6749                     PL_expect = XTERM;          /* e.g. print $fh 3 */
6750                 else if (*s == '.' && isDIGIT(s[1]))
6751                     PL_expect = XTERM;          /* e.g. print $fh .3 */
6752                 else if ((*s == '?' || *s == '-' || *s == '+')
6753                          && !isSPACE(s[1]) && s[1] != '=')
6754                     PL_expect = XTERM;          /* e.g. print $fh -1 */
6755                 else if (*s == '/' && !isSPACE(s[1]) && s[1] != '='
6756                          && s[1] != '/')
6757                     PL_expect = XTERM;          /* e.g. print $fh /.../
6758                                                    XXX except DORDOR operator
6759                                                 */
6760                 else if (*s == '<' && s[1] == '<' && !isSPACE(s[2])
6761                          && s[2] != '=')
6762                     PL_expect = XTERM;          /* print $fh <<"EOF" */
6763             }
6764         }
6765         force_ident_maybe_lex('$');
6766         TOKEN('$');
6767
6768     case '@':
6769         if (PL_expect == XPOSTDEREF)
6770             POSTDEREF('@');
6771         PL_tokenbuf[0] = '@';
6772         s = scan_ident(s, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1, FALSE);
6773         if (PL_expect == XOPERATOR) {
6774             d = s;
6775             if (PL_bufptr > s) {
6776                 d = PL_bufptr-1;
6777                 PL_bufptr = PL_oldbufptr;
6778             }
6779             no_op("Array", d);
6780         }
6781         pl_yylval.ival = 0;
6782         if (!PL_tokenbuf[1]) {
6783             PREREF('@');
6784         }
6785         if (PL_lex_state == LEX_NORMAL)
6786             s = skipspace(s);
6787         if ((PL_expect != XREF || PL_oldoldbufptr == PL_last_lop) && intuit_more(s)) {
6788             if (*s == '{')
6789                 PL_tokenbuf[0] = '%';
6790
6791             /* Warn about @ where they meant $. */
6792             if (*s == '[' || *s == '{') {
6793                 if (ckWARN(WARN_SYNTAX)) {
6794                     S_check_scalar_slice(aTHX_ s);
6795                 }
6796             }
6797         }
6798         PL_expect = XOPERATOR;
6799         force_ident_maybe_lex('@');
6800         TERM('@');
6801
6802      case '/':                  /* may be division, defined-or, or pattern */
6803         if ((PL_expect == XOPERATOR || PL_expect == XTERMORDORDOR) && s[1] == '/') {
6804             if (!PL_lex_allbrackets && PL_lex_fakeeof >=
6805                     (s[2] == '=' ? LEX_FAKEEOF_ASSIGN : LEX_FAKEEOF_LOGIC))
6806                 TOKEN(0);
6807             s += 2;
6808             AOPERATOR(DORDOR);
6809         }
6810         else if (PL_expect == XOPERATOR) {
6811             s++;
6812             if (*s == '=' && !PL_lex_allbrackets
6813                 && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
6814             {
6815                 s--;
6816                 TOKEN(0);
6817             }
6818             Mop(OP_DIVIDE);
6819         }
6820         else {
6821             /* Disable warning on "study /blah/" */
6822             if (    PL_oldoldbufptr == PL_last_uni
6823                 && (   *PL_last_uni != 's' || s - PL_last_uni < 5
6824                     || memNE(PL_last_uni, "study", 5)
6825                     || isWORDCHAR_lazy_if_safe(PL_last_uni+5, PL_bufend, UTF)
6826              ))
6827                 check_uni();
6828             s = scan_pat(s,OP_MATCH);
6829             TERM(sublex_start());
6830         }
6831
6832      case '?':                  /* conditional */
6833         s++;
6834         if (!PL_lex_allbrackets
6835             && PL_lex_fakeeof >= LEX_FAKEEOF_IFELSE)
6836         {
6837             s--;
6838             TOKEN(0);
6839         }
6840         PL_lex_allbrackets++;
6841         OPERATOR('?');
6842
6843     case '.':
6844         if (PL_lex_formbrack && PL_lex_brackets == PL_lex_formbrack
6845 #ifdef PERL_STRICT_CR
6846             && s[1] == '\n'
6847 #else
6848             && (s[1] == '\n' || (s[1] == '\r' && s[2] == '\n'))
6849 #endif
6850             && (s == PL_linestart || s[-1] == '\n') )
6851         {
6852             PL_expect = XSTATE;
6853             formbrack = 2; /* dot seen where arguments expected */
6854             goto rightbracket;
6855         }
6856         if (PL_expect == XSTATE && s[1] == '.' && s[2] == '.') {
6857             s += 3;
6858             TERM(YADAYADA);
6859         }
6860         if (PL_expect == XOPERATOR || !isDIGIT(s[1])) {
6861             char tmp = *s++;
6862             if (*s == tmp) {
6863                 if (!PL_lex_allbrackets
6864                     && PL_lex_fakeeof >= LEX_FAKEEOF_RANGE)
6865                 {
6866                     s--;
6867                     TOKEN(0);
6868                 }
6869                 s++;
6870                 if (*s == tmp) {
6871                     s++;
6872                     pl_yylval.ival = OPf_SPECIAL;
6873                 }
6874                 else
6875                     pl_yylval.ival = 0;
6876                 OPERATOR(DOTDOT);
6877             }
6878             if (*s == '=' && !PL_lex_allbrackets
6879                 && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
6880             {
6881                 s--;
6882                 TOKEN(0);
6883             }
6884             Aop(OP_CONCAT);
6885         }
6886         /* FALLTHROUGH */
6887     case '0': case '1': case '2': case '3': case '4':
6888     case '5': case '6': case '7': case '8': case '9':
6889         s = scan_num(s, &pl_yylval);
6890         DEBUG_T( { printbuf("### Saw number in %s\n", s); } );
6891         if (PL_expect == XOPERATOR)
6892             no_op("Number",s);
6893         TERM(THING);
6894
6895     case '\'':
6896         s = scan_str(s,FALSE,FALSE,FALSE,NULL);
6897         if (!s)
6898             missingterm(NULL);
6899         COPLINE_SET_FROM_MULTI_END;
6900         DEBUG_T( { printbuf("### Saw string before %s\n", s); } );
6901         if (PL_expect == XOPERATOR) {
6902             no_op("String",s);
6903         }
6904         pl_yylval.ival = OP_CONST;
6905         TERM(sublex_start());
6906
6907     case '"':
6908         s = scan_str(s,FALSE,FALSE,FALSE,NULL);
6909         DEBUG_T( {
6910             if (s)
6911                 printbuf("### Saw string before %s\n", s);
6912             else
6913                 PerlIO_printf(Perl_debug_log,
6914                              "### Saw unterminated string\n");
6915         } );
6916         if (PL_expect == XOPERATOR) {
6917                 no_op("String",s);
6918         }
6919         if (!s)
6920             missingterm(NULL);
6921         pl_yylval.ival = OP_CONST;
6922         /* FIXME. I think that this can be const if char *d is replaced by
6923            more localised variables.  */
6924         for (d = SvPV(PL_lex_stuff, len); len; len--, d++) {
6925             if (*d == '$' || *d == '@' || *d == '\\' || !UTF8_IS_INVARIANT((U8)*d)) {
6926                 pl_yylval.ival = OP_STRINGIFY;
6927                 break;
6928             }
6929         }
6930         if (pl_yylval.ival == OP_CONST)
6931             COPLINE_SET_FROM_MULTI_END;
6932         TERM(sublex_start());
6933
6934     case '`':
6935         s = scan_str(s,FALSE,FALSE,FALSE,NULL);
6936         DEBUG_T( {
6937             if (s)
6938                 printbuf("### Saw backtick string before %s\n", s);
6939             else
6940                 PerlIO_printf(Perl_debug_log,
6941                              "### Saw unterminated backtick string\n");
6942         } );
6943         if (PL_expect == XOPERATOR)
6944             no_op("Backticks",s);
6945         if (!s)
6946             missingterm(NULL);
6947         pl_yylval.ival = OP_BACKTICK;
6948         TERM(sublex_start());
6949
6950     case '\\':
6951         s++;
6952         if (PL_lex_inwhat == OP_SUBST && PL_lex_repl == PL_linestr
6953          && isDIGIT(*s))
6954             Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX),"Can't use \\%c to mean $%c in expression",
6955                            *s, *s);
6956         if (PL_expect == XOPERATOR)
6957             no_op("Backslash",s);
6958         OPERATOR(REFGEN);
6959
6960     case 'v':
6961         if (isDIGIT(s[1]) && PL_expect != XOPERATOR) {
6962             char *start = s + 2;
6963             while (isDIGIT(*start) || *start == '_')
6964                 start++;
6965             if (*start == '.' && isDIGIT(start[1])) {
6966                 s = scan_num(s, &pl_yylval);
6967                 TERM(THING);
6968             }
6969             else if ((*start == ':' && start[1] == ':')
6970                   || (PL_expect == XSTATE && *start == ':'))
6971                 goto keylookup;
6972             else if (PL_expect == XSTATE) {
6973                 d = start;
6974                 while (d < PL_bufend && isSPACE(*d)) d++;
6975                 if (*d == ':') goto keylookup;
6976             }
6977             /* avoid v123abc() or $h{v1}, allow C<print v10;> */
6978             if (!isALPHA(*start) && (PL_expect == XTERM
6979                         || PL_expect == XREF || PL_expect == XSTATE
6980                         || PL_expect == XTERMORDORDOR)) {
6981                 GV *const gv = gv_fetchpvn_flags(s, start - s,
6982                                                     UTF ? SVf_UTF8 : 0, SVt_PVCV);
6983                 if (!gv) {
6984                     s = scan_num(s, &pl_yylval);
6985                     TERM(THING);
6986                 }
6987             }
6988         }
6989         goto keylookup;
6990     case 'x':
6991         if (isDIGIT(s[1]) && PL_expect == XOPERATOR) {
6992             s++;
6993             Mop(OP_REPEAT);
6994         }
6995         goto keylookup;
6996
6997     case '_':
6998     case 'a': case 'A':
6999     case 'b': case 'B':
7000     case 'c': case 'C':
7001     case 'd': case 'D':
7002     case 'e': case 'E':
7003     case 'f': case 'F':
7004     case 'g': case 'G':
7005     case 'h': case 'H':
7006     case 'i': case 'I':
7007     case 'j': case 'J':
7008     case 'k': case 'K':
7009     case 'l': case 'L':
7010     case 'm': case 'M':
7011     case 'n': case 'N':
7012     case 'o': case 'O':
7013     case 'p': case 'P':
7014     case 'q': case 'Q':
7015     case 'r': case 'R':
7016     case 's': case 'S':
7017     case 't': case 'T':
7018     case 'u': case 'U':
7019               case 'V':
7020     case 'w': case 'W':
7021               case 'X':
7022     case 'y': case 'Y':
7023     case 'z': case 'Z':
7024
7025       keylookup: {
7026         bool anydelim;
7027         bool lex;
7028         I32 tmp;
7029         SV *sv;
7030         CV *cv;
7031         PADOFFSET off;
7032         OP *rv2cv_op;
7033
7034         lex = FALSE;
7035         orig_keyword = 0;
7036         off = 0;
7037         sv = NULL;
7038         cv = NULL;
7039         gv = NULL;
7040         gvp = NULL;
7041         rv2cv_op = NULL;
7042
7043         PL_bufptr = s;
7044         s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE, &len);
7045
7046         /* Some keywords can be followed by any delimiter, including ':' */
7047         anydelim = word_takes_any_delimiter(PL_tokenbuf, len);
7048
7049         /* x::* is just a word, unless x is "CORE" */
7050         if (!anydelim && *s == ':' && s[1] == ':') {
7051             if (strEQ(PL_tokenbuf, "CORE")) goto case_KEY_CORE;
7052             goto just_a_word;
7053         }
7054
7055         d = s;
7056         while (d < PL_bufend && isSPACE(*d))
7057                 d++;    /* no comments skipped here, or s### is misparsed */
7058
7059         /* Is this a word before a => operator? */
7060         if (*d == '=' && d[1] == '>') {
7061           fat_arrow:
7062             CLINE;
7063             pl_yylval.opval
7064                 = newSVOP(OP_CONST, 0,
7065                                S_newSV_maybe_utf8(aTHX_ PL_tokenbuf, len));
7066             pl_yylval.opval->op_private = OPpCONST_BARE;
7067             TERM(BAREWORD);
7068         }
7069
7070         /* Check for plugged-in keyword */
7071         {
7072             OP *o;
7073             int result;
7074             char *saved_bufptr = PL_bufptr;
7075             PL_bufptr = s;
7076             result = PL_keyword_plugin(aTHX_ PL_tokenbuf, len, &o);
7077             s = PL_bufptr;
7078             if (result == KEYWORD_PLUGIN_DECLINE) {
7079                 /* not a plugged-in keyword */
7080                 PL_bufptr = saved_bufptr;
7081             } else if (result == KEYWORD_PLUGIN_STMT) {
7082                 pl_yylval.opval = o;
7083                 CLINE;
7084                 if (!PL_nexttoke) PL_expect = XSTATE;
7085                 return REPORT(PLUGSTMT);
7086             } else if (result == KEYWORD_PLUGIN_EXPR) {
7087                 pl_yylval.opval = o;
7088                 CLINE;
7089                 if (!PL_nexttoke) PL_expect = XOPERATOR;
7090                 return REPORT(PLUGEXPR);
7091             } else {
7092                 Perl_croak(aTHX_ "Bad plugin affecting keyword '%s'",
7093                                         PL_tokenbuf);
7094             }
7095         }
7096
7097         /* Check for built-in keyword */
7098         tmp = keyword(PL_tokenbuf, len, 0);
7099
7100         /* Is this a label? */
7101         if (!anydelim && PL_expect == XSTATE
7102               && d < PL_bufend && *d == ':' && *(d + 1) != ':') {
7103             s = d + 1;
7104             pl_yylval.pval = savepvn(PL_tokenbuf, len+1);
7105             pl_yylval.pval[len] = '\0';
7106             pl_yylval.pval[len+1] = UTF ? 1 : 0;
7107             CLINE;
7108             TOKEN(LABEL);
7109         }
7110
7111         /* Check for lexical sub */
7112         if (PL_expect != XOPERATOR) {
7113             char tmpbuf[sizeof PL_tokenbuf + 1];
7114             *tmpbuf = '&';
7115             Copy(PL_tokenbuf, tmpbuf+1, len, char);
7116             off = pad_findmy_pvn(tmpbuf, len+1, 0);
7117             if (off != NOT_IN_PAD) {
7118                 assert(off); /* we assume this is boolean-true below */
7119                 if (PAD_COMPNAME_FLAGS_isOUR(off)) {
7120                     HV *  const stash = PAD_COMPNAME_OURSTASH(off);
7121                     HEK * const stashname = HvNAME_HEK(stash);
7122                     sv = newSVhek(stashname);
7123                     sv_catpvs(sv, "::");
7124                     sv_catpvn_flags(sv, PL_tokenbuf, len,
7125                                     (UTF ? SV_CATUTF8 : SV_CATBYTES));
7126                     gv = gv_fetchsv(sv, GV_NOADD_NOINIT | SvUTF8(sv),
7127                                     SVt_PVCV);
7128                     off = 0;
7129                     if (!gv) {
7130                         sv_free(sv);
7131                         sv = NULL;
7132                         goto just_a_word;
7133                     }
7134                 }
7135                 else {
7136                     rv2cv_op = newOP(OP_PADANY, 0);
7137                     rv2cv_op->op_targ = off;
7138                     cv = find_lexical_cv(off);
7139                 }
7140                 lex = TRUE;
7141                 goto just_a_word;
7142             }
7143             off = 0;
7144         }
7145
7146         if (tmp < 0) {                  /* second-class keyword? */
7147             GV *ogv = NULL;     /* override (winner) */
7148             GV *hgv = NULL;     /* hidden (loser) */
7149             if (PL_expect != XOPERATOR && (*s != ':' || s[1] != ':')) {
7150                 CV *cv;
7151                 if ((gv = gv_fetchpvn_flags(PL_tokenbuf, len,
7152                                             (UTF ? SVf_UTF8 : 0)|GV_NOTQUAL,
7153                                             SVt_PVCV))
7154                     && (cv = GvCVu(gv)))
7155                 {
7156                     if (GvIMPORTED_CV(gv))
7157                         ogv = gv;
7158                     else if (! CvMETHOD(cv))
7159                         hgv = gv;
7160                 }
7161                 if (!ogv
7162                     && (gvp = (GV**)hv_fetch(PL_globalstash, PL_tokenbuf,
7163                                                               len, FALSE))
7164                     && (gv = *gvp)
7165                     && (isGV_with_GP(gv)
7166                         ? GvCVu(gv) && GvIMPORTED_CV(gv)
7167                         :   SvPCS_IMPORTED(gv)
7168                         && (gv_init(gv, PL_globalstash, PL_tokenbuf,
7169                                                                  len, 0), 1)))
7170                 {
7171                     ogv = gv;
7172                 }
7173             }
7174             if (ogv) {
7175                 orig_keyword = tmp;
7176                 tmp = 0;                /* overridden by import or by GLOBAL */
7177             }
7178             else if (gv && !gvp
7179                      && -tmp==KEY_lock  /* XXX generalizable kludge */
7180                      && GvCVu(gv))
7181             {
7182                 tmp = 0;                /* any sub overrides "weak" keyword */
7183             }
7184             else {                      /* no override */
7185                 tmp = -tmp;
7186                 if (tmp == KEY_dump) {
7187                     Perl_ck_warner_d(aTHX_ packWARN2(WARN_MISC,WARN_DEPRECATED),
7188                                      "dump() better written as CORE::dump(). "
7189                                      "dump() will no longer be available "
7190                                      "in Perl 5.30");
7191                 }
7192                 gv = NULL;
7193                 gvp = 0;
7194                 if (hgv && tmp != KEY_x)        /* never ambiguous */
7195                     Perl_ck_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
7196                                    "Ambiguous call resolved as CORE::%s(), "
7197                                    "qualify as such or use &",
7198                                    GvENAME(hgv));
7199             }
7200         }
7201
7202         if (tmp && tmp != KEY___DATA__ && tmp != KEY___END__
7203          && (!anydelim || *s != '#')) {
7204             /* no override, and not s### either; skipspace is safe here
7205              * check for => on following line */
7206             bool arrow;
7207             STRLEN bufoff = PL_bufptr - SvPVX(PL_linestr);
7208             STRLEN   soff = s         - SvPVX(PL_linestr);
7209             s = peekspace(s);
7210             arrow = *s == '=' && s[1] == '>';
7211             PL_bufptr = SvPVX(PL_linestr) + bufoff;
7212             s         = SvPVX(PL_linestr) +   soff;
7213             if (arrow)
7214                 goto fat_arrow;
7215         }
7216
7217       reserved_word:
7218         switch (tmp) {
7219
7220             /* Trade off - by using this evil construction we can pull the
7221                variable gv into the block labelled keylookup. If not, then
7222                we have to give it function scope so that the goto from the
7223                earlier ':' case doesn't bypass the initialisation.  */
7224             just_a_word_zero_gv:
7225                 sv = NULL;
7226                 cv = NULL;
7227                 gv = NULL;
7228                 gvp = NULL;
7229                 rv2cv_op = NULL;
7230                 orig_keyword = 0;
7231                 lex = 0;
7232                 off = 0;
7233             /* FALLTHROUGH */
7234         default:                        /* not a keyword */
7235           just_a_word: {
7236                 int pkgname = 0;
7237                 const char lastchar = (PL_bufptr == PL_oldoldbufptr ? 0 : PL_bufptr[-1]);
7238                 bool safebw;
7239
7240
7241                 /* Get the rest if it looks like a package qualifier */
7242
7243                 if (*s == '\'' || (*s == ':' && s[1] == ':')) {
7244                     STRLEN morelen;
7245                     s = scan_word(s, PL_tokenbuf + len, sizeof PL_tokenbuf - len,
7246                                   TRUE, &morelen);
7247                     if (!morelen)
7248                         Perl_croak(aTHX_ "Bad name after %" UTF8f "%s",
7249                                 UTF8fARG(UTF, len, PL_tokenbuf),
7250                                 *s == '\'' ? "'" : "::");
7251                     len += morelen;
7252                     pkgname = 1;
7253                 }
7254
7255                 if (PL_expect == XOPERATOR) {
7256                     if (PL_bufptr == PL_linestart) {
7257                         CopLINE_dec(PL_curcop);
7258                         Perl_warner(aTHX_ packWARN(WARN_SEMICOLON), "%s", PL_warn_nosemi);
7259                         CopLINE_inc(PL_curcop);
7260                     }
7261                     else
7262                         no_op("Bareword",s);
7263                 }
7264
7265                 /* See if the name is "Foo::",
7266                    in which case Foo is a bareword
7267                    (and a package name). */
7268
7269                 if (len > 2
7270                     && PL_tokenbuf[len - 2] == ':'
7271                     && PL_tokenbuf[len - 1] == ':')
7272                 {
7273                     if (ckWARN(WARN_BAREWORD)
7274                         && ! gv_fetchpvn_flags(PL_tokenbuf, len, UTF ? SVf_UTF8 : 0, SVt_PVHV))
7275                         Perl_warner(aTHX_ packWARN(WARN_BAREWORD),
7276                                     "Bareword \"%" UTF8f
7277                                     "\" refers to nonexistent package",
7278                                     UTF8fARG(UTF, len, PL_tokenbuf));
7279                     len -= 2;
7280                     PL_tokenbuf[len] = '\0';
7281                     gv = NULL;
7282                     gvp = 0;
7283                     safebw = TRUE;
7284                 }
7285                 else {
7286                     safebw = FALSE;
7287                 }
7288
7289                 /* if we saw a global override before, get the right name */
7290
7291                 if (!sv)
7292                   sv = S_newSV_maybe_utf8(aTHX_ PL_tokenbuf,
7293                                                 len);
7294                 if (gvp) {
7295                     SV * const tmp_sv = sv;
7296                     sv = newSVpvs("CORE::GLOBAL::");
7297                     sv_catsv(sv, tmp_sv);
7298                     SvREFCNT_dec(tmp_sv);
7299                 }
7300
7301
7302                 /* Presume this is going to be a bareword of some sort. */
7303                 CLINE;
7304                 pl_yylval.opval = newSVOP(OP_CONST, 0, sv);
7305                 pl_yylval.opval->op_private = OPpCONST_BARE;
7306
7307                 /* And if "Foo::", then that's what it certainly is. */
7308                 if (safebw)
7309                     goto safe_bareword;
7310
7311                 if (!off)
7312                 {
7313                     OP *const_op = newSVOP(OP_CONST, 0, SvREFCNT_inc_NN(sv));
7314                     const_op->op_private = OPpCONST_BARE;
7315                     rv2cv_op =
7316                         newCVREF(OPpMAY_RETURN_CONSTANT<<8, const_op);
7317                     cv = lex
7318                         ? isGV(gv)
7319                             ? GvCV(gv)
7320                             : SvROK(gv) && SvTYPE(SvRV(gv)) == SVt_PVCV
7321                                 ? (CV *)SvRV(gv)
7322                                 : ((CV *)gv)
7323                         : rv2cv_op_cv(rv2cv_op, RV2CVOPCV_RETURN_STUB);
7324                 }
7325
7326                 /* Use this var to track whether intuit_method has been
7327                    called.  intuit_method returns 0 or > 255.  */
7328                 tmp = 1;
7329
7330                 /* See if it's the indirect object for a list operator. */
7331
7332                 if (PL_oldoldbufptr
7333                     && PL_oldoldbufptr < PL_bufptr
7334                     && (PL_oldoldbufptr == PL_last_lop
7335                         || PL_oldoldbufptr == PL_last_uni)
7336                     && /* NO SKIPSPACE BEFORE HERE! */
7337                        (PL_expect == XREF
7338                         || ((PL_opargs[PL_last_lop_op] >> OASHIFT)& 7)
7339                                                                == OA_FILEREF))
7340                 {
7341                     bool immediate_paren = *s == '(';
7342                     SSize_t s_off;
7343
7344                     /* (Now we can afford to cross potential line boundary.) */
7345                     s = skipspace(s);
7346
7347                     /* intuit_method() can indirectly call lex_next_chunk(),
7348                      * invalidating s
7349                      */
7350                     s_off = s - SvPVX(PL_linestr);
7351                     /* Two barewords in a row may indicate method call. */
7352                     if (   (   isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)
7353                             || *s == '$')
7354                         && (tmp = intuit_method(s, lex ? NULL : sv, cv)))
7355                     {
7356                         /* the code at method: doesn't use s */
7357                         goto method;
7358                     }
7359                     s = SvPVX(PL_linestr) + s_off;
7360
7361                     /* If not a declared subroutine, it's an indirect object. */
7362                     /* (But it's an indir obj regardless for sort.) */
7363                     /* Also, if "_" follows a filetest operator, it's a bareword */
7364
7365                     if (
7366                         ( !immediate_paren && (PL_last_lop_op == OP_SORT
7367                          || (!cv
7368                              && (PL_last_lop_op != OP_MAPSTART
7369                                  && PL_last_lop_op != OP_GREPSTART))))
7370                        || (PL_tokenbuf[0] == '_' && PL_tokenbuf[1] == '\0'
7371                             && ((PL_opargs[PL_last_lop_op] & OA_CLASS_MASK)
7372                                                             == OA_FILESTATOP))
7373                        )
7374                     {
7375                         PL_expect = (PL_last_lop == PL_oldoldbufptr) ? XTERM : XOPERATOR;
7376                         goto bareword;
7377                     }
7378                 }
7379
7380                 PL_expect = XOPERATOR;
7381                 s = skipspace(s);
7382
7383                 /* Is this a word before a => operator? */
7384                 if (*s == '=' && s[1] == '>' && !pkgname) {
7385                     op_free(rv2cv_op);
7386                     CLINE;
7387                     if (gvp || (lex && !off)) {
7388                         assert (cSVOPx(pl_yylval.opval)->op_sv == sv);
7389                         /* This is our own scalar, created a few lines
7390                            above, so this is safe. */
7391                         SvREADONLY_off(sv);
7392                         sv_setpv(sv, PL_tokenbuf);
7393                         if (UTF && !IN_BYTES
7394                          && is_utf8_string((U8*)PL_tokenbuf, len))
7395                               SvUTF8_on(sv);
7396                         SvREADONLY_on(sv);
7397                     }
7398                     TERM(BAREWORD);
7399                 }
7400
7401                 /* If followed by a paren, it's certainly a subroutine. */
7402                 if (*s == '(') {
7403                     CLINE;
7404                     if (cv) {
7405                         d = s + 1;
7406                         while (SPACE_OR_TAB(*d))
7407                             d++;
7408                         if (*d == ')' && (sv = cv_const_sv_or_av(cv))) {
7409                             s = d + 1;
7410                             goto its_constant;
7411                         }
7412                     }
7413                     NEXTVAL_NEXTTOKE.opval =
7414                         off ? rv2cv_op : pl_yylval.opval;
7415                     if (off)
7416                          op_free(pl_yylval.opval), force_next(PRIVATEREF);
7417                     else op_free(rv2cv_op),        force_next(BAREWORD);
7418                     pl_yylval.ival = 0;
7419                     TOKEN('&');
7420                 }
7421
7422                 /* If followed by var or block, call it a method (unless sub) */
7423
7424                 if ((*s == '$' || *s == '{') && !cv) {
7425                     op_free(rv2cv_op);
7426                     PL_last_lop = PL_oldbufptr;
7427                     PL_last_lop_op = OP_METHOD;
7428                     if (!PL_lex_allbrackets
7429                         && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
7430                     {
7431                         PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
7432                     }
7433                     PL_expect = XBLOCKTERM;
7434                     PL_bufptr = s;
7435                     return REPORT(METHOD);
7436                 }
7437
7438                 /* If followed by a bareword, see if it looks like indir obj. */
7439
7440                 if (   tmp == 1
7441                     && !orig_keyword
7442                     && (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF) || *s == '$')
7443                     && (tmp = intuit_method(s, lex ? NULL : sv, cv)))
7444                 {
7445                   method:
7446                     if (lex && !off) {
7447                         assert(cSVOPx(pl_yylval.opval)->op_sv == sv);
7448                         SvREADONLY_off(sv);
7449                         sv_setpvn(sv, PL_tokenbuf, len);
7450                         if (UTF && !IN_BYTES
7451                          && is_utf8_string((U8*)PL_tokenbuf, len))
7452                             SvUTF8_on (sv);
7453                         else SvUTF8_off(sv);
7454                     }
7455                     op_free(rv2cv_op);
7456                     if (tmp == METHOD && !PL_lex_allbrackets
7457                         && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
7458                     {
7459                         PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
7460                     }
7461                     return REPORT(tmp);
7462                 }
7463
7464                 /* Not a method, so call it a subroutine (if defined) */
7465
7466                 if (cv) {
7467                     /* Check for a constant sub */
7468                     if ((sv = cv_const_sv_or_av(cv))) {
7469                   its_constant:
7470                         op_free(rv2cv_op);
7471                         SvREFCNT_dec(((SVOP*)pl_yylval.opval)->op_sv);
7472                         ((SVOP*)pl_yylval.opval)->op_sv = SvREFCNT_inc_simple(sv);
7473                         if (SvTYPE(sv) == SVt_PVAV)
7474                             pl_yylval.opval = newUNOP(OP_RV2AV, OPf_PARENS,
7475                                                       pl_yylval.opval);
7476                         else {
7477                             pl_yylval.opval->op_private = 0;
7478                             pl_yylval.opval->op_folded = 1;
7479                             pl_yylval.opval->op_flags |= OPf_SPECIAL;
7480                         }
7481                         TOKEN(BAREWORD);
7482                     }
7483
7484                     op_free(pl_yylval.opval);
7485                     pl_yylval.opval =
7486                         off ? newCVREF(0, rv2cv_op) : rv2cv_op;
7487                     pl_yylval.opval->op_private |= OPpENTERSUB_NOPAREN;
7488                     PL_last_lop = PL_oldbufptr;
7489                     PL_last_lop_op = OP_ENTERSUB;
7490                     /* Is there a prototype? */
7491                     if (
7492                         SvPOK(cv))
7493                     {
7494                         STRLEN protolen = CvPROTOLEN(cv);
7495                         const char *proto = CvPROTO(cv);
7496                         bool optional;
7497                         proto = S_strip_spaces(aTHX_ proto, &protolen);
7498                         if (!protolen)
7499                             TERM(FUNC0SUB);
7500                         if ((optional = *proto == ';'))
7501                           do
7502                             proto++;
7503                           while (*proto == ';');
7504                         if (
7505                             (
7506                                 (
7507                                     *proto == '$' || *proto == '_'
7508                                  || *proto == '*' || *proto == '+'
7509                                 )
7510                              && proto[1] == '\0'
7511                             )
7512                          || (
7513                              *proto == '\\' && proto[1] && proto[2] == '\0'
7514                             )
7515                         )
7516                             UNIPROTO(UNIOPSUB,optional);
7517                         if (*proto == '\\' && proto[1] == '[') {
7518                             const char *p = proto + 2;
7519                             while(*p && *p != ']')
7520                                 ++p;
7521                             if(*p == ']' && !p[1])
7522                                 UNIPROTO(UNIOPSUB,optional);
7523                         }
7524                         if (*proto == '&' && *s == '{') {
7525                             if (PL_curstash)
7526                                 sv_setpvs(PL_subname, "__ANON__");
7527                             else
7528                                 sv_setpvs(PL_subname, "__ANON__::__ANON__");
7529                             if (!PL_lex_allbrackets
7530                                 && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
7531                             {
7532                                 PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
7533                             }
7534                             PREBLOCK(LSTOPSUB);
7535                         }
7536                     }
7537                     NEXTVAL_NEXTTOKE.opval = pl_yylval.opval;
7538                     PL_expect = XTERM;
7539                     force_next(off ? PRIVATEREF : BAREWORD);
7540                     if (!PL_lex_allbrackets
7541                         && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
7542                     {
7543                         PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
7544                     }
7545                     TOKEN(NOAMP);
7546                 }
7547
7548                 /* Call it a bare word */
7549
7550                 if (PL_hints & HINT_STRICT_SUBS)
7551                     pl_yylval.opval->op_private |= OPpCONST_STRICT;
7552                 else {
7553                 bareword:
7554                     /* after "print" and similar functions (corresponding to
7555                      * "F? L" in opcode.pl), whatever wasn't already parsed as
7556                      * a filehandle should be subject to "strict subs".
7557                      * Likewise for the optional indirect-object argument to system
7558                      * or exec, which can't be a bareword */
7559                     if ((PL_last_lop_op == OP_PRINT
7560                             || PL_last_lop_op == OP_PRTF
7561                             || PL_last_lop_op == OP_SAY
7562                             || PL_last_lop_op == OP_SYSTEM
7563                             || PL_last_lop_op == OP_EXEC)
7564                             && (PL_hints & HINT_STRICT_SUBS))
7565                         pl_yylval.opval->op_private |= OPpCONST_STRICT;
7566                     if (lastchar != '-') {
7567                         if (ckWARN(WARN_RESERVED)) {
7568                             d = PL_tokenbuf;
7569                             while (isLOWER(*d))
7570                                 d++;
7571                             if (!*d && !gv_stashpv(PL_tokenbuf, UTF ? SVf_UTF8 : 0))
7572                             {
7573                                 /* PL_warn_reserved is constant */
7574                                 GCC_DIAG_IGNORE(-Wformat-nonliteral);
7575                                 Perl_warner(aTHX_ packWARN(WARN_RESERVED), PL_warn_reserved,
7576                                        PL_tokenbuf);
7577                                 GCC_DIAG_RESTORE;
7578                             }
7579                         }
7580                     }
7581                 }
7582                 op_free(rv2cv_op);
7583
7584             safe_bareword:
7585                 if ((lastchar == '*' || lastchar == '%' || lastchar == '&')
7586                  && saw_infix_sigil) {
7587                     Perl_ck_warner_d(aTHX_ packWARN(WARN_AMBIGUOUS),
7588                                      "Operator or semicolon missing before %c%" UTF8f,
7589                                      lastchar,
7590                                      UTF8fARG(UTF, strlen(PL_tokenbuf),
7591                                               PL_tokenbuf));
7592                     Perl_ck_warner_d(aTHX_ packWARN(WARN_AMBIGUOUS),
7593                                      "Ambiguous use of %c resolved as operator %c",
7594                                      lastchar, lastchar);
7595                 }
7596                 TOKEN(BAREWORD);
7597             }
7598
7599         case KEY___FILE__:
7600             FUN0OP(
7601                 newSVOP(OP_CONST, 0, newSVpv(CopFILE(PL_curcop),0))
7602             );
7603
7604         case KEY___LINE__:
7605             FUN0OP(
7606                 newSVOP(OP_CONST, 0,
7607                     Perl_newSVpvf(aTHX_ "%" IVdf, (IV)CopLINE(PL_curcop)))
7608             );
7609
7610         case KEY___PACKAGE__:
7611             FUN0OP(
7612                 newSVOP(OP_CONST, 0,
7613                                         (PL_curstash
7614                                          ? newSVhek(HvNAME_HEK(PL_curstash))
7615                                          : &PL_sv_undef))
7616             );
7617
7618         case KEY___DATA__:
7619         case KEY___END__: {
7620             GV *gv;
7621             if (PL_rsfp && (!PL_in_eval || PL_tokenbuf[2] == 'D')) {
7622                 HV * const stash = PL_tokenbuf[2] == 'D' && PL_curstash
7623                                         ? PL_curstash
7624                                         : PL_defstash;
7625                 gv = (GV *)*hv_fetchs(stash, "DATA", 1);
7626                 if (!isGV(gv))
7627                     gv_init(gv,stash,"DATA",4,0);
7628                 GvMULTI_on(gv);
7629                 if (!GvIO(gv))
7630                     GvIOp(gv) = newIO();
7631                 IoIFP(GvIOp(gv)) = PL_rsfp;
7632 #if defined(HAS_FCNTL) && defined(F_SETFD) && defined(FD_CLOEXEC)
7633                 {
7634                     const int fd = PerlIO_fileno(PL_rsfp);
7635                     if (fd >= 3) {
7636                         fcntl(fd,F_SETFD, FD_CLOEXEC);
7637                     }
7638                 }
7639 #endif
7640                 /* Mark this internal pseudo-handle as clean */
7641                 IoFLAGS(GvIOp(gv)) |= IOf_UNTAINT;
7642                 if ((PerlIO*)PL_rsfp == PerlIO_stdin())
7643                     IoTYPE(GvIOp(gv)) = IoTYPE_STD;
7644                 else
7645                     IoTYPE(GvIOp(gv)) = IoTYPE_RDONLY;
7646 #if defined(WIN32) && !defined(PERL_TEXTMODE_SCRIPTS)
7647                 /* if the script was opened in binmode, we need to revert
7648                  * it to text mode for compatibility; but only iff it has CRs
7649                  * XXX this is a questionable hack at best. */
7650                 if (PL_bufend-PL_bufptr > 2
7651                     && PL_bufend[-1] == '\n' && PL_bufend[-2] == '\r')
7652                 {
7653                     Off_t loc = 0;
7654                     if (IoTYPE(GvIOp(gv)) == IoTYPE_RDONLY) {
7655                         loc = PerlIO_tell(PL_rsfp);
7656                         (void)PerlIO_seek(PL_rsfp, 0L, 0);
7657                     }
7658 #ifdef NETWARE
7659                         if (PerlLIO_setmode(PL_rsfp, O_TEXT) != -1) {
7660 #else
7661                     if (PerlLIO_setmode(PerlIO_fileno(PL_rsfp), O_TEXT) != -1) {
7662 #endif  /* NETWARE */
7663                         if (loc > 0)
7664                             PerlIO_seek(PL_rsfp, loc, 0);
7665                     }
7666                 }
7667 #endif
7668 #ifdef PERLIO_LAYERS
7669                 if (!IN_BYTES) {
7670                     if (UTF)
7671                         PerlIO_apply_layers(aTHX_ PL_rsfp, NULL, ":utf8");
7672                 }
7673 #endif
7674                 PL_rsfp = NULL;
7675             }
7676             goto fake_eof;
7677         }
7678
7679         case KEY___SUB__:
7680             FUN0OP(CvCLONE(PL_compcv)
7681                         ? newOP(OP_RUNCV, 0)
7682                         : newPVOP(OP_RUNCV,0,NULL));
7683
7684         case KEY_AUTOLOAD:
7685         case KEY_DESTROY:
7686         case KEY_BEGIN:
7687         case KEY_UNITCHECK:
7688         case KEY_CHECK:
7689         case KEY_INIT:
7690         case KEY_END:
7691             if (PL_expect == XSTATE) {
7692                 s = PL_bufptr;
7693                 goto really_sub;
7694             }
7695             goto just_a_word;
7696
7697         case_KEY_CORE:
7698             {
7699                 STRLEN olen = len;
7700                 d = s;
7701                 s += 2;
7702                 s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE, &len);
7703                 if ((*s == ':' && s[1] == ':')
7704                  || (!(tmp = keyword(PL_tokenbuf, len, 1)) && *s == '\''))
7705                 {
7706                     s = d;
7707                     len = olen;
7708                     Copy(PL_bufptr, PL_tokenbuf, olen, char);
7709                     goto just_a_word;
7710                 }
7711                 if (!tmp)
7712                     Perl_croak(aTHX_ "CORE::%" UTF8f " is not a keyword",
7713                                       UTF8fARG(UTF, len, PL_tokenbuf));
7714                 if (tmp < 0)
7715                     tmp = -tmp;
7716                 else if (tmp == KEY_require || tmp == KEY_do
7717                       || tmp == KEY_glob)
7718                     /* that's a way to remember we saw "CORE::" */
7719                     orig_keyword = tmp;
7720                 goto reserved_word;
7721             }
7722
7723         case KEY_abs:
7724             UNI(OP_ABS);
7725
7726         case KEY_alarm:
7727             UNI(OP_ALARM);
7728
7729         case KEY_accept:
7730             LOP(OP_ACCEPT,XTERM);
7731
7732         case KEY_and:
7733             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_LOWLOGIC)
7734                 return REPORT(0);
7735             OPERATOR(ANDOP);
7736
7737         case KEY_atan2:
7738             LOP(OP_ATAN2,XTERM);
7739
7740         case KEY_bind:
7741             LOP(OP_BIND,XTERM);
7742
7743         case KEY_binmode:
7744             LOP(OP_BINMODE,XTERM);
7745
7746         case KEY_bless:
7747             LOP(OP_BLESS,XTERM);
7748
7749         case KEY_break:
7750             FUN0(OP_BREAK);
7751
7752         case KEY_chop:
7753             UNI(OP_CHOP);
7754
7755         case KEY_continue:
7756                     /* We have to disambiguate the two senses of
7757                       "continue". If the next token is a '{' then
7758                       treat it as the start of a continue block;
7759                       otherwise treat it as a control operator.
7760                      */
7761                     s = skipspace(s);
7762                     if (*s == '{')
7763             PREBLOCK(CONTINUE);
7764                     else
7765                         FUN0(OP_CONTINUE);
7766
7767         case KEY_chdir:
7768             /* may use HOME */
7769             (void)gv_fetchpvs("ENV", GV_ADD|GV_NOTQUAL, SVt_PVHV);
7770             UNI(OP_CHDIR);
7771
7772         case KEY_close:
7773             UNI(OP_CLOSE);
7774
7775         case KEY_closedir:
7776             UNI(OP_CLOSEDIR);
7777
7778         case KEY_cmp:
7779             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
7780                 return REPORT(0);
7781             Eop(OP_SCMP);
7782
7783         case KEY_caller:
7784             UNI(OP_CALLER);
7785
7786         case KEY_crypt:
7787 #ifdef FCRYPT
7788             if (!PL_cryptseen) {
7789                 PL_cryptseen = TRUE;
7790                 init_des();
7791             }
7792 #endif
7793             LOP(OP_CRYPT,XTERM);
7794
7795         case KEY_chmod:
7796             LOP(OP_CHMOD,XTERM);
7797
7798         case KEY_chown:
7799             LOP(OP_CHOWN,XTERM);
7800
7801         case KEY_connect:
7802             LOP(OP_CONNECT,XTERM);
7803
7804         case KEY_chr:
7805             UNI(OP_CHR);
7806
7807         case KEY_cos:
7808             UNI(OP_COS);
7809
7810         case KEY_chroot:
7811             UNI(OP_CHROOT);
7812
7813         case KEY_default:
7814             PREBLOCK(DEFAULT);
7815
7816         case KEY_do:
7817             s = skipspace(s);
7818             if (*s == '{')
7819                 PRETERMBLOCK(DO);
7820             if (*s != '\'') {
7821                 *PL_tokenbuf = '&';
7822                 d = scan_word(s, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1,
7823                               1, &len);
7824                 if (len && (len != 4 || strNE(PL_tokenbuf+1, "CORE"))
7825                  && !keyword(PL_tokenbuf + 1, len, 0)) {
7826                     SSize_t off = s-SvPVX(PL_linestr);
7827                     d = skipspace(d);
7828                     s = SvPVX(PL_linestr)+off;
7829                     if (*d == '(') {
7830                         force_ident_maybe_lex('&');
7831                         s = d;
7832                     }
7833                 }
7834             }
7835             if (orig_keyword == KEY_do) {
7836                 orig_keyword = 0;
7837                 pl_yylval.ival = 1;
7838             }
7839             else
7840                 pl_yylval.ival = 0;
7841             OPERATOR(DO);
7842
7843         case KEY_die:
7844             PL_hints |= HINT_BLOCK_SCOPE;
7845             LOP(OP_DIE,XTERM);
7846
7847         case KEY_defined:
7848             UNI(OP_DEFINED);
7849
7850         case KEY_delete:
7851             UNI(OP_DELETE);
7852
7853         case KEY_dbmopen:
7854             Perl_populate_isa(aTHX_ STR_WITH_LEN("AnyDBM_File::ISA"),
7855                               STR_WITH_LEN("NDBM_File::"),
7856                               STR_WITH_LEN("DB_File::"),
7857                               STR_WITH_LEN("GDBM_File::"),
7858                               STR_WITH_LEN("SDBM_File::"),
7859                               STR_WITH_LEN("ODBM_File::"),
7860                               NULL);
7861             LOP(OP_DBMOPEN,XTERM);
7862
7863         case KEY_dbmclose:
7864             UNI(OP_DBMCLOSE);
7865
7866         case KEY_dump:
7867             LOOPX(OP_DUMP);
7868
7869         case KEY_else:
7870             PREBLOCK(ELSE);
7871
7872         case KEY_elsif:
7873             pl_yylval.ival = CopLINE(PL_curcop);
7874             OPERATOR(ELSIF);
7875
7876         case KEY_eq:
7877             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
7878                 return REPORT(0);
7879             Eop(OP_SEQ);
7880
7881         case KEY_exists:
7882             UNI(OP_EXISTS);
7883
7884         case KEY_exit:
7885             UNI(OP_EXIT);
7886
7887         case KEY_eval:
7888             s = skipspace(s);
7889             if (*s == '{') { /* block eval */
7890                 PL_expect = XTERMBLOCK;
7891                 UNIBRACK(OP_ENTERTRY);
7892             }
7893             else { /* string eval */
7894                 PL_expect = XTERM;
7895                 UNIBRACK(OP_ENTEREVAL);
7896             }
7897
7898         case KEY_evalbytes:
7899             PL_expect = XTERM;
7900             UNIBRACK(-OP_ENTEREVAL);
7901
7902         case KEY_eof:
7903             UNI(OP_EOF);
7904
7905         case KEY_exp:
7906             UNI(OP_EXP);
7907
7908         case KEY_each:
7909             UNI(OP_EACH);
7910
7911         case KEY_exec:
7912             LOP(OP_EXEC,XREF);
7913
7914         case KEY_endhostent:
7915             FUN0(OP_EHOSTENT);
7916
7917         case KEY_endnetent:
7918             FUN0(OP_ENETENT);
7919
7920         case KEY_endservent:
7921             FUN0(OP_ESERVENT);
7922
7923         case KEY_endprotoent:
7924             FUN0(OP_EPROTOENT);
7925
7926         case KEY_endpwent:
7927             FUN0(OP_EPWENT);
7928
7929         case KEY_endgrent:
7930             FUN0(OP_EGRENT);
7931
7932         case KEY_for:
7933         case KEY_foreach:
7934             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
7935                 return REPORT(0);
7936             pl_yylval.ival = CopLINE(PL_curcop);
7937             s = skipspace(s);
7938             if (   PL_expect == XSTATE
7939                 && isIDFIRST_lazy_if_safe(s, PL_bufend, UTF))
7940             {
7941                 char *p = s;
7942                 SSize_t s_off = s - SvPVX(PL_linestr);
7943
7944                 if ((PL_bufend - p) >= 3
7945                     && strEQs(p, "my") && isSPACE(*(p + 2)))
7946                 {
7947                     p += 2;
7948                 }
7949                 else if ((PL_bufend - p) >= 4
7950                          && strEQs(p, "our") && isSPACE(*(p + 3)))
7951                     p += 3;
7952                 p = skipspace(p);
7953                 /* skip optional package name, as in "for my abc $x (..)" */
7954                 if (isIDFIRST_lazy_if_safe(p, PL_bufend, UTF)) {
7955                     p = scan_word(p, PL_tokenbuf, sizeof PL_tokenbuf, TRUE, &len);
7956                     p = skipspace(p);
7957                 }
7958                 if (*p != '$' && *p != '\\')
7959                     Perl_croak(aTHX_ "Missing $ on loop variable");
7960
7961                 /* The buffer may have been reallocated, update s */
7962                 s = SvPVX(PL_linestr) + s_off;
7963             }
7964             OPERATOR(FOR);
7965
7966         case KEY_formline:
7967             LOP(OP_FORMLINE,XTERM);
7968
7969         case KEY_fork:
7970             FUN0(OP_FORK);
7971
7972         case KEY_fc:
7973             UNI(OP_FC);
7974
7975         case KEY_fcntl:
7976             LOP(OP_FCNTL,XTERM);
7977
7978         case KEY_fileno:
7979             UNI(OP_FILENO);
7980
7981         case KEY_flock:
7982             LOP(OP_FLOCK,XTERM);
7983
7984         case KEY_gt:
7985             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
7986                 return REPORT(0);
7987             Rop(OP_SGT);
7988
7989         case KEY_ge:
7990             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
7991                 return REPORT(0);
7992             Rop(OP_SGE);
7993
7994         case KEY_grep:
7995             LOP(OP_GREPSTART, XREF);
7996
7997         case KEY_goto:
7998             LOOPX(OP_GOTO);
7999
8000         case KEY_gmtime:
8001             UNI(OP_GMTIME);
8002
8003         case KEY_getc:
8004             UNIDOR(OP_GETC);
8005
8006         case KEY_getppid:
8007             FUN0(OP_GETPPID);
8008
8009         case KEY_getpgrp:
8010             UNI(OP_GETPGRP);
8011
8012         case KEY_getpriority:
8013             LOP(OP_GETPRIORITY,XTERM);
8014
8015         case KEY_getprotobyname:
8016             UNI(OP_GPBYNAME);
8017
8018         case KEY_getprotobynumber:
8019             LOP(OP_GPBYNUMBER,XTERM);
8020
8021         case KEY_getprotoent:
8022             FUN0(OP_GPROTOENT);
8023
8024         case KEY_getpwent:
8025             FUN0(OP_GPWENT);
8026
8027         case KEY_getpwnam:
8028             UNI(OP_GPWNAM);
8029
8030         case KEY_getpwuid:
8031             UNI(OP_GPWUID);
8032
8033         case KEY_getpeername:
8034             UNI(OP_GETPEERNAME);
8035
8036         case KEY_gethostbyname:
8037             UNI(OP_GHBYNAME);
8038
8039         case KEY_gethostbyaddr:
8040             LOP(OP_GHBYADDR,XTERM);
8041
8042         case KEY_gethostent:
8043             FUN0(OP_GHOSTENT);
8044
8045         case KEY_getnetbyname:
8046             UNI(OP_GNBYNAME);
8047
8048         case KEY_getnetbyaddr:
8049             LOP(OP_GNBYADDR,XTERM);
8050
8051         case KEY_getnetent:
8052             FUN0(OP_GNETENT);
8053
8054         case KEY_getservbyname:
8055             LOP(OP_GSBYNAME,XTERM);
8056
8057         case KEY_getservbyport:
8058             LOP(OP_GSBYPORT,XTERM);
8059
8060         case KEY_getservent:
8061             FUN0(OP_GSERVENT);
8062
8063         case KEY_getsockname:
8064             UNI(OP_GETSOCKNAME);
8065
8066         case KEY_getsockopt:
8067             LOP(OP_GSOCKOPT,XTERM);
8068
8069         case KEY_getgrent:
8070             FUN0(OP_GGRENT);
8071
8072         case KEY_getgrnam:
8073             UNI(OP_GGRNAM);
8074
8075         case KEY_getgrgid:
8076             UNI(OP_GGRGID);
8077
8078         case KEY_getlogin:
8079             FUN0(OP_GETLOGIN);
8080
8081         case KEY_given:
8082             pl_yylval.ival = CopLINE(PL_curcop);
8083             Perl_ck_warner_d(aTHX_
8084                 packWARN(WARN_EXPERIMENTAL__SMARTMATCH),
8085                 "given is experimental");
8086             OPERATOR(GIVEN);
8087
8088         case KEY_glob:
8089             LOP(
8090              orig_keyword==KEY_glob ? -OP_GLOB : OP_GLOB,
8091              XTERM
8092             );
8093
8094         case KEY_hex:
8095             UNI(OP_HEX);
8096
8097         case KEY_if:
8098             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
8099                 return REPORT(0);
8100             pl_yylval.ival = CopLINE(PL_curcop);
8101             OPERATOR(IF);
8102
8103         case KEY_index:
8104             LOP(OP_INDEX,XTERM);
8105
8106         case KEY_int:
8107             UNI(OP_INT);
8108
8109         case KEY_ioctl:
8110             LOP(OP_IOCTL,XTERM);
8111
8112         case KEY_join:
8113             LOP(OP_JOIN,XTERM);
8114
8115         case KEY_keys:
8116             UNI(OP_KEYS);
8117
8118         case KEY_kill:
8119             LOP(OP_KILL,XTERM);
8120
8121         case KEY_last:
8122             LOOPX(OP_LAST);
8123
8124         case KEY_lc:
8125             UNI(OP_LC);
8126
8127         case KEY_lcfirst:
8128             UNI(OP_LCFIRST);
8129
8130         case KEY_local:
8131             OPERATOR(LOCAL);
8132
8133         case KEY_length:
8134             UNI(OP_LENGTH);
8135
8136         case KEY_lt:
8137             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
8138                 return REPORT(0);
8139             Rop(OP_SLT);
8140
8141         case KEY_le:
8142             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
8143                 return REPORT(0);
8144             Rop(OP_SLE);
8145
8146         case KEY_localtime:
8147             UNI(OP_LOCALTIME);
8148
8149         case KEY_log:
8150             UNI(OP_LOG);
8151
8152         case KEY_link:
8153             LOP(OP_LINK,XTERM);
8154
8155         case KEY_listen:
8156             LOP(OP_LISTEN,XTERM);
8157
8158         case KEY_lock:
8159             UNI(OP_LOCK);
8160
8161         case KEY_lstat:
8162             UNI(OP_LSTAT);
8163
8164         case KEY_m:
8165             s = scan_pat(s,OP_MATCH);
8166             TERM(sublex_start());
8167
8168         case KEY_map:
8169             LOP(OP_MAPSTART, XREF);
8170
8171         case KEY_mkdir:
8172             LOP(OP_MKDIR,XTERM);
8173
8174         case KEY_msgctl:
8175             LOP(OP_MSGCTL,XTERM);
8176
8177         case KEY_msgget:
8178             LOP(OP_MSGGET,XTERM);
8179
8180         case KEY_msgrcv:
8181             LOP(OP_MSGRCV,XTERM);
8182
8183         case KEY_msgsnd:
8184             LOP(OP_MSGSND,XTERM);
8185
8186         case KEY_our:
8187         case KEY_my:
8188         case KEY_state:
8189             if (PL_in_my) {
8190                 PL_bufptr = s;
8191                 yyerror(Perl_form(aTHX_
8192                                   "Can't redeclare \"%s\" in \"%s\"",
8193                                    tmp      == KEY_my    ? "my" :
8194                                    tmp      == KEY_state ? "state" : "our",
8195                                    PL_in_my == KEY_my    ? "my" :
8196                                    PL_in_my == KEY_state ? "state" : "our"));
8197             }
8198             PL_in_my = (U16)tmp;
8199             s = skipspace(s);
8200             if (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)) {
8201                 s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, TRUE, &len);
8202                 if (len == 3 && strEQs(PL_tokenbuf, "sub"))
8203                     goto really_sub;
8204                 PL_in_my_stash = find_in_my_stash(PL_tokenbuf, len);
8205                 if (!PL_in_my_stash) {
8206                     char tmpbuf[1024];
8207                     int len;
8208                     PL_bufptr = s;
8209                     len = my_snprintf(tmpbuf, sizeof(tmpbuf), "No such class %.1000s", PL_tokenbuf);
8210                     PERL_MY_SNPRINTF_POST_GUARD(len, sizeof(tmpbuf));
8211                     yyerror_pv(tmpbuf, UTF ? SVf_UTF8 : 0);
8212                 }
8213             }
8214             else if (*s == '\\') {
8215                 if (!FEATURE_MYREF_IS_ENABLED)
8216                     Perl_croak(aTHX_ "The experimental declared_refs "
8217                                      "feature is not enabled");
8218                 Perl_ck_warner_d(aTHX_
8219                      packWARN(WARN_EXPERIMENTAL__DECLARED_REFS),
8220                     "Declaring references is experimental");
8221             }
8222             OPERATOR(MY);
8223
8224         case KEY_next:
8225             LOOPX(OP_NEXT);
8226
8227         case KEY_ne:
8228             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
8229                 return REPORT(0);
8230             Eop(OP_SNE);
8231
8232         case KEY_no:
8233             s = tokenize_use(0, s);
8234             TOKEN(USE);
8235
8236         case KEY_not:
8237             if (*s == '(' || (s = skipspace(s), *s == '('))
8238                 FUN1(OP_NOT);
8239             else {
8240                 if (!PL_lex_allbrackets
8241                     && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
8242                 {
8243                     PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
8244                 }
8245                 OPERATOR(NOTOP);
8246             }
8247
8248         case KEY_open:
8249             s = skipspace(s);
8250             if (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)) {
8251                 const char *t;
8252                 d = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE,
8253                               &len);
8254                 for (t=d; isSPACE(*t);)
8255                     t++;
8256                 if ( *t && strchr("|&*+-=!?:.", *t) && ckWARN_d(WARN_PRECEDENCE)
8257                     /* [perl #16184] */
8258                     && !(t[0] == '=' && t[1] == '>')
8259                     && !(t[0] == ':' && t[1] == ':')
8260                     && !keyword(s, d-s, 0)
8261                 ) {
8262                     Perl_warner(aTHX_ packWARN(WARN_PRECEDENCE),
8263                        "Precedence problem: open %" UTF8f " should be open(%" UTF8f ")",
8264                         UTF8fARG(UTF, d-s, s), UTF8fARG(UTF, d-s, s));
8265                 }
8266             }
8267             LOP(OP_OPEN,XTERM);
8268
8269         case KEY_or:
8270             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_LOWLOGIC)
8271                 return REPORT(0);
8272             pl_yylval.ival = OP_OR;
8273             OPERATOR(OROP);
8274
8275         case KEY_ord:
8276             UNI(OP_ORD);
8277
8278         case KEY_oct:
8279             UNI(OP_OCT);
8280
8281         case KEY_opendir:
8282             LOP(OP_OPEN_DIR,XTERM);
8283
8284         case KEY_print:
8285             checkcomma(s,PL_tokenbuf,"filehandle");
8286             LOP(OP_PRINT,XREF);
8287
8288         case KEY_printf:
8289             checkcomma(s,PL_tokenbuf,"filehandle");
8290             LOP(OP_PRTF,XREF);
8291
8292         case KEY_prototype:
8293             UNI(OP_PROTOTYPE);
8294
8295         case KEY_push:
8296             LOP(OP_PUSH,XTERM);
8297
8298         case KEY_pop:
8299             UNIDOR(OP_POP);
8300
8301         case KEY_pos:
8302             UNIDOR(OP_POS);
8303
8304         case KEY_pack:
8305             LOP(OP_PACK,XTERM);
8306
8307         case KEY_package:
8308             s = force_word(s,BAREWORD,FALSE,TRUE);
8309             s = skipspace(s);
8310             s = force_strict_version(s);
8311             PREBLOCK(PACKAGE);
8312
8313         case KEY_pipe:
8314             LOP(OP_PIPE_OP,XTERM);
8315
8316         case KEY_q:
8317             s = scan_str(s,FALSE,FALSE,FALSE,NULL);
8318             if (!s)
8319                 missingterm(NULL);
8320             COPLINE_SET_FROM_MULTI_END;
8321             pl_yylval.ival = OP_CONST;
8322             TERM(sublex_start());
8323
8324         case KEY_quotemeta:
8325             UNI(OP_QUOTEMETA);
8326
8327         case KEY_qw: {
8328             OP *words = NULL;
8329             s = scan_str(s,FALSE,FALSE,FALSE,NULL);
8330             if (!s)
8331                 missingterm(NULL);
8332             COPLINE_SET_FROM_MULTI_END;
8333             PL_expect = XOPERATOR;
8334             if (SvCUR(PL_lex_stuff)) {
8335                 int warned_comma = !ckWARN(WARN_QW);
8336                 int warned_comment = warned_comma;
8337                 d = SvPV_force(PL_lex_stuff, len);
8338                 while (len) {
8339                     for (; isSPACE(*d) && len; --len, ++d)
8340                         /**/;
8341                     if (len) {
8342                         SV *sv;
8343                         const char *b = d;
8344                         if (!warned_comma || !warned_comment) {
8345                             for (; !isSPACE(*d) && len; --len, ++d) {
8346                                 if (!warned_comma && *d == ',') {
8347                                     Perl_warner(aTHX_ packWARN(WARN_QW),
8348                                         "Possible attempt to separate words with commas");
8349                                     ++warned_comma;
8350                                 }
8351                                 else if (!warned_comment && *d == '#') {
8352                                     Perl_warner(aTHX_ packWARN(WARN_QW),
8353                                         "Possible attempt to put comments in qw() list");
8354                                     ++warned_comment;
8355                                 }
8356                             }
8357                         }
8358                         else {
8359                             for (; !isSPACE(*d) && len; --len, ++d)
8360                                 /**/;
8361                         }
8362                         sv = newSVpvn_utf8(b, d-b, DO_UTF8(PL_lex_stuff));
8363                         words = op_append_elem(OP_LIST, words,
8364                                             newSVOP(OP_CONST, 0, tokeq(sv)));
8365                     }
8366                 }
8367             }
8368             if (!words)
8369                 words = newNULLLIST();
8370             SvREFCNT_dec_NN(PL_lex_stuff);
8371             PL_lex_stuff = NULL;
8372             PL_expect = XOPERATOR;
8373             pl_yylval.opval = sawparens(words);
8374             TOKEN(QWLIST);
8375         }
8376
8377         case KEY_qq:
8378             s = scan_str(s,FALSE,FALSE,FALSE,NULL);
8379             if (!s)
8380                 missingterm(NULL);
8381             pl_yylval.ival = OP_STRINGIFY;
8382             if (SvIVX(PL_lex_stuff) == '\'')
8383                 SvIV_set(PL_lex_stuff, 0);      /* qq'$foo' should interpolate */
8384             TERM(sublex_start());
8385
8386         case KEY_qr:
8387             s = scan_pat(s,OP_QR);
8388             TERM(sublex_start());
8389
8390         case KEY_qx:
8391             s = scan_str(s,FALSE,FALSE,FALSE,NULL);
8392             if (!s)
8393                 missingterm(NULL);
8394             pl_yylval.ival = OP_BACKTICK;
8395             TERM(sublex_start());
8396
8397         case KEY_return:
8398             OLDLOP(OP_RETURN);
8399
8400         case KEY_require:
8401             s = skipspace(s);
8402             if (isDIGIT(*s)) {
8403                 s = force_version(s, FALSE);
8404             }
8405             else if (*s != 'v' || !isDIGIT(s[1])
8406                     || (s = force_version(s, TRUE), *s == 'v'))
8407             {
8408                 *PL_tokenbuf = '\0';
8409                 s = force_word(s,BAREWORD,TRUE,TRUE);
8410                 if (isIDFIRST_lazy_if_safe(PL_tokenbuf,
8411                                            PL_tokenbuf + sizeof(PL_tokenbuf),
8412                                            UTF))
8413                 {
8414                     gv_stashpvn(PL_tokenbuf, strlen(PL_tokenbuf),
8415                                 GV_ADD | (UTF ? SVf_UTF8 : 0));
8416                 }
8417                 else if (*s == '<')
8418                     yyerror("<> at require-statement should be quotes");
8419             }
8420             if (orig_keyword == KEY_require) {
8421                 orig_keyword = 0;
8422                 pl_yylval.ival = 1;
8423             }
8424             else
8425                 pl_yylval.ival = 0;
8426             PL_expect = PL_nexttoke ? XOPERATOR : XTERM;
8427             PL_bufptr = s;
8428             PL_last_uni = PL_oldbufptr;
8429             PL_last_lop_op = OP_REQUIRE;
8430             s = skipspace(s);
8431             return REPORT( (int)REQUIRE );
8432
8433         case KEY_reset:
8434             UNI(OP_RESET);
8435
8436         case KEY_redo:
8437             LOOPX(OP_REDO);
8438
8439         case KEY_rename:
8440             LOP(OP_RENAME,XTERM);
8441
8442         case KEY_rand:
8443             UNI(OP_RAND);
8444
8445         case KEY_rmdir:
8446             UNI(OP_RMDIR);
8447
8448         case KEY_rindex:
8449             LOP(OP_RINDEX,XTERM);
8450
8451         case KEY_read:
8452             LOP(OP_READ,XTERM);
8453
8454         case KEY_readdir:
8455             UNI(OP_READDIR);
8456
8457         case KEY_readline:
8458             UNIDOR(OP_READLINE);
8459
8460         case KEY_readpipe:
8461             UNIDOR(OP_BACKTICK);
8462
8463         case KEY_rewinddir:
8464             UNI(OP_REWINDDIR);
8465
8466         case KEY_recv:
8467             LOP(OP_RECV,XTERM);
8468
8469         case KEY_reverse:
8470             LOP(OP_REVERSE,XTERM);
8471
8472         case KEY_readlink:
8473             UNIDOR(OP_READLINK);
8474
8475         case KEY_ref:
8476             UNI(OP_REF);
8477
8478         case KEY_s:
8479             s = scan_subst(s);
8480             if (pl_yylval.opval)
8481                 TERM(sublex_start());
8482             else
8483                 TOKEN(1);       /* force error */
8484
8485         case KEY_say:
8486             checkcomma(s,PL_tokenbuf,"filehandle");
8487             LOP(OP_SAY,XREF);
8488
8489         case KEY_chomp:
8490             UNI(OP_CHOMP);
8491
8492         case KEY_scalar:
8493             UNI(OP_SCALAR);
8494
8495         case KEY_select:
8496             LOP(OP_SELECT,XTERM);
8497
8498         case KEY_seek:
8499             LOP(OP_SEEK,XTERM);
8500
8501         case KEY_semctl:
8502             LOP(OP_SEMCTL,XTERM);
8503
8504         case KEY_semget:
8505             LOP(OP_SEMGET,XTERM);
8506
8507         case KEY_semop:
8508             LOP(OP_SEMOP,XTERM);
8509
8510         case KEY_send:
8511             LOP(OP_SEND,XTERM);
8512
8513         case KEY_setpgrp:
8514             LOP(OP_SETPGRP,XTERM);
8515
8516         case KEY_setpriority:
8517             LOP(OP_SETPRIORITY,XTERM);
8518
8519         case KEY_sethostent:
8520             UNI(OP_SHOSTENT);
8521
8522         case KEY_setnetent:
8523             UNI(OP_SNETENT);
8524
8525         case KEY_setservent:
8526             UNI(OP_SSERVENT);
8527
8528         case KEY_setprotoent:
8529             UNI(OP_SPROTOENT);
8530
8531         case KEY_setpwent:
8532             FUN0(OP_SPWENT);
8533
8534         case KEY_setgrent:
8535             FUN0(OP_SGRENT);
8536
8537         case KEY_seekdir:
8538             LOP(OP_SEEKDIR,XTERM);
8539
8540         case KEY_setsockopt:
8541             LOP(OP_SSOCKOPT,XTERM);
8542
8543         case KEY_shift:
8544             UNIDOR(OP_SHIFT);
8545
8546         case KEY_shmctl:
8547             LOP(OP_SHMCTL,XTERM);
8548
8549         case KEY_shmget:
8550             LOP(OP_SHMGET,XTERM);
8551
8552         case KEY_shmread:
8553             LOP(OP_SHMREAD,XTERM);
8554
8555         case KEY_shmwrite:
8556             LOP(OP_SHMWRITE,XTERM);
8557
8558         case KEY_shutdown:
8559             LOP(OP_SHUTDOWN,XTERM);
8560
8561         case KEY_sin:
8562             UNI(OP_SIN);
8563
8564         case KEY_sleep:
8565             UNI(OP_SLEEP);
8566
8567         case KEY_socket:
8568             LOP(OP_SOCKET,XTERM);
8569
8570         case KEY_socketpair:
8571             LOP(OP_SOCKPAIR,XTERM);
8572
8573         case KEY_sort:
8574             checkcomma(s,PL_tokenbuf,"subroutine name");
8575             s = skipspace(s);
8576             PL_expect = XTERM;
8577             s = force_word(s,BAREWORD,TRUE,TRUE);
8578             LOP(OP_SORT,XREF);
8579
8580         case KEY_split:
8581             LOP(OP_SPLIT,XTERM);
8582
8583         case KEY_sprintf:
8584             LOP(OP_SPRINTF,XTERM);
8585
8586         case KEY_splice:
8587             LOP(OP_SPLICE,XTERM);
8588
8589         case KEY_sqrt:
8590             UNI(OP_SQRT);
8591
8592         case KEY_srand:
8593             UNI(OP_SRAND);
8594
8595         case KEY_stat:
8596             UNI(OP_STAT);
8597
8598         case KEY_study:
8599             UNI(OP_STUDY);
8600
8601         case KEY_substr:
8602             LOP(OP_SUBSTR,XTERM);
8603
8604         case KEY_format:
8605         case KEY_sub:
8606           really_sub:
8607             {
8608                 char * const tmpbuf = PL_tokenbuf + 1;
8609                 expectation attrful;
8610                 bool have_name, have_proto;
8611                 const int key = tmp;
8612                 SV *format_name = NULL;
8613
8614                 SSize_t off = s-SvPVX(PL_linestr);
8615                 s = skipspace(s);
8616                 d = SvPVX(PL_linestr)+off;
8617
8618                 if (   isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)
8619                     || *s == '\''
8620                     || (*s == ':' && s[1] == ':'))
8621                 {
8622
8623                     PL_expect = XBLOCK;
8624                     attrful = XATTRBLOCK;
8625                     d = scan_word(s, tmpbuf, sizeof PL_tokenbuf - 1, TRUE,
8626                                   &len);
8627                     if (key == KEY_format)
8628                         format_name = S_newSV_maybe_utf8(aTHX_ s, d - s);
8629                     *PL_tokenbuf = '&';
8630                     if (memchr(tmpbuf, ':', len) || key != KEY_sub
8631                      || pad_findmy_pvn(
8632                             PL_tokenbuf, len + 1, 0
8633                         ) != NOT_IN_PAD)
8634                         sv_setpvn(PL_subname, tmpbuf, len);
8635                     else {
8636                         sv_setsv(PL_subname,PL_curstname);
8637                         sv_catpvs(PL_subname,"::");
8638                         sv_catpvn(PL_subname,tmpbuf,len);
8639                     }
8640                     if (SvUTF8(PL_linestr))
8641                         SvUTF8_on(PL_subname);
8642                     have_name = TRUE;
8643
8644
8645                     s = skipspace(d);
8646                 }
8647                 else {
8648                     if (key == KEY_my || key == KEY_our || key==KEY_state)
8649                     {
8650                         *d = '\0';
8651                         /* diag_listed_as: Missing name in "%s sub" */
8652                         Perl_croak(aTHX_
8653                                   "Missing name in \"%s\"", PL_bufptr);
8654                     }
8655                     PL_expect = XTERMBLOCK;
8656                     attrful = XATTRTERM;
8657                     sv_setpvs(PL_subname,"?");
8658                     have_name = FALSE;
8659                 }
8660
8661                 if (key == KEY_format) {
8662                     if (format_name) {
8663                         NEXTVAL_NEXTTOKE.opval
8664                             = newSVOP(OP_CONST,0, format_name);
8665                         NEXTVAL_NEXTTOKE.opval->op_private |= OPpCONST_BARE;
8666                         force_next(BAREWORD);
8667                     }
8668                     PREBLOCK(FORMAT);
8669                 }
8670
8671                 /* Look for a prototype */
8672                 if (*s == '(' && !FEATURE_SIGNATURES_IS_ENABLED) {
8673                     s = scan_str(s,FALSE,FALSE,FALSE,NULL);
8674                     COPLINE_SET_FROM_MULTI_END;
8675                     if (!s)
8676                         Perl_croak(aTHX_ "Prototype not terminated");
8677                     (void)validate_proto(PL_subname, PL_lex_stuff,
8678                                          ckWARN(WARN_ILLEGALPROTO), 0);
8679                     have_proto = TRUE;
8680
8681                     s = skipspace(s);
8682                 }
8683                 else
8684                     have_proto = FALSE;
8685
8686                 if (*s == ':' && s[1] != ':')
8687                     PL_expect = attrful;
8688                 else if ((*s != '{' && *s != '(') && key != KEY_format) {
8689                     assert(key == KEY_sub || key == KEY_AUTOLOAD ||
8690                            key == KEY_DESTROY || key == KEY_BEGIN ||
8691                            key == KEY_UNITCHECK || key == KEY_CHECK ||
8692                            key == KEY_INIT || key == KEY_END ||
8693                            key == KEY_my || key == KEY_state ||
8694                            key == KEY_our);
8695                     if (!have_name)
8696                         Perl_croak(aTHX_ "Illegal declaration of anonymous subroutine");
8697                     else if (*s != ';' && *s != '}')
8698                         Perl_croak(aTHX_ "Illegal declaration of subroutine %" SVf, SVfARG(PL_subname));
8699                 }
8700
8701                 if (have_proto) {
8702                     NEXTVAL_NEXTTOKE.opval =
8703                         newSVOP(OP_CONST, 0, PL_lex_stuff);
8704                     PL_lex_stuff = NULL;
8705                     force_next(THING);
8706                 }
8707                 if (!have_name) {
8708                     if (PL_curstash)
8709                         sv_setpvs(PL_subname, "__ANON__");
8710                     else
8711                         sv_setpvs(PL_subname, "__ANON__::__ANON__");
8712                     TOKEN(ANONSUB);
8713                 }
8714                 force_ident_maybe_lex('&');
8715                 TOKEN(SUB);
8716             }
8717
8718         case KEY_system:
8719             LOP(OP_SYSTEM,XREF);
8720
8721         case KEY_symlink:
8722             LOP(OP_SYMLINK,XTERM);
8723
8724         case KEY_syscall:
8725             LOP(OP_SYSCALL,XTERM);
8726
8727         case KEY_sysopen:
8728             LOP(OP_SYSOPEN,XTERM);
8729
8730         case KEY_sysseek:
8731             LOP(OP_SYSSEEK,XTERM);
8732
8733         case KEY_sysread:
8734             LOP(OP_SYSREAD,XTERM);
8735
8736         case KEY_syswrite:
8737             LOP(OP_SYSWRITE,XTERM);
8738
8739         case KEY_tr:
8740         case KEY_y:
8741             s = scan_trans(s);
8742             TERM(sublex_start());
8743
8744         case KEY_tell:
8745             UNI(OP_TELL);
8746
8747         case KEY_telldir:
8748             UNI(OP_TELLDIR);
8749
8750         case KEY_tie:
8751             LOP(OP_TIE,XTERM);
8752
8753         case KEY_tied:
8754             UNI(OP_TIED);
8755
8756         case KEY_time:
8757             FUN0(OP_TIME);
8758
8759         case KEY_times:
8760             FUN0(OP_TMS);
8761
8762         case KEY_truncate:
8763             LOP(OP_TRUNCATE,XTERM);
8764
8765         case KEY_uc:
8766             UNI(OP_UC);
8767
8768         case KEY_ucfirst:
8769             UNI(OP_UCFIRST);
8770
8771         case KEY_untie:
8772             UNI(OP_UNTIE);
8773
8774         case KEY_until:
8775             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
8776                 return REPORT(0);
8777             pl_yylval.ival = CopLINE(PL_curcop);
8778             OPERATOR(UNTIL);
8779
8780         case KEY_unless:
8781             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
8782                 return REPORT(0);
8783             pl_yylval.ival = CopLINE(PL_curcop);
8784             OPERATOR(UNLESS);
8785
8786         case KEY_unlink:
8787             LOP(OP_UNLINK,XTERM);
8788
8789         case KEY_undef:
8790             UNIDOR(OP_UNDEF);
8791
8792         case KEY_unpack:
8793             LOP(OP_UNPACK,XTERM);
8794
8795         case KEY_utime:
8796             LOP(OP_UTIME,XTERM);
8797
8798         case KEY_umask:
8799             UNIDOR(OP_UMASK);
8800
8801         case KEY_unshift:
8802             LOP(OP_UNSHIFT,XTERM);
8803
8804         case KEY_use:
8805             s = tokenize_use(1, s);
8806             TOKEN(USE);
8807
8808         case KEY_values:
8809             UNI(OP_VALUES);
8810
8811         case KEY_vec:
8812             LOP(OP_VEC,XTERM);
8813
8814         case KEY_when:
8815             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
8816                 return REPORT(0);
8817             pl_yylval.ival = CopLINE(PL_curcop);
8818             Perl_ck_warner_d(aTHX_
8819                 packWARN(WARN_EXPERIMENTAL__SMARTMATCH),
8820                 "when is experimental");
8821             OPERATOR(WHEN);
8822
8823         case KEY_while:
8824             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
8825                 return REPORT(0);
8826             pl_yylval.ival = CopLINE(PL_curcop);
8827             OPERATOR(WHILE);
8828
8829         case KEY_warn:
8830             PL_hints |= HINT_BLOCK_SCOPE;
8831             LOP(OP_WARN,XTERM);
8832
8833         case KEY_wait:
8834             FUN0(OP_WAIT);
8835
8836         case KEY_waitpid:
8837             LOP(OP_WAITPID,XTERM);
8838
8839         case KEY_wantarray:
8840             FUN0(OP_WANTARRAY);
8841
8842         case KEY_write:
8843             /* Make sure $^L is defined. 0x0C is CTRL-L on ASCII platforms, and
8844              * we use the same number on EBCDIC */
8845             gv_fetchpvs("\x0C", GV_ADD|GV_NOTQUAL, SVt_PV);
8846             UNI(OP_ENTERWRITE);
8847
8848         case KEY_x:
8849             if (PL_expect == XOPERATOR) {
8850                 if (*s == '=' && !PL_lex_allbrackets
8851                     && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
8852                 {
8853                     return REPORT(0);
8854                 }
8855                 Mop(OP_REPEAT);
8856             }
8857             check_uni();
8858             goto just_a_word;
8859
8860         case KEY_xor:
8861             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_LOWLOGIC)
8862                 return REPORT(0);
8863             pl_yylval.ival = OP_XOR;
8864             OPERATOR(OROP);
8865         }
8866     }}
8867 }
8868
8869 /*
8870   S_pending_ident
8871
8872   Looks up an identifier in the pad or in a package
8873
8874   is_sig indicates that this is a subroutine signature variable
8875   rather than a plain pad var.
8876
8877   Returns:
8878     PRIVATEREF if this is a lexical name.
8879     BAREWORD   if this belongs to a package.
8880
8881   Structure:
8882       if we're in a my declaration
8883           croak if they tried to say my($foo::bar)
8884           build the ops for a my() declaration
8885       if it's an access to a my() variable
8886           build ops for access to a my() variable
8887       if in a dq string, and they've said @foo and we can't find @foo
8888           warn
8889       build ops for a bareword
8890 */
8891
8892 static int
8893 S_pending_ident(pTHX)
8894 {
8895     PADOFFSET tmp = 0;
8896     const char pit = (char)pl_yylval.ival;
8897     const STRLEN tokenbuf_len = strlen(PL_tokenbuf);
8898     /* All routes through this function want to know if there is a colon.  */
8899     const char *const has_colon = (const char*) memchr (PL_tokenbuf, ':', tokenbuf_len);
8900
8901     DEBUG_T({ PerlIO_printf(Perl_debug_log,
8902           "### Pending identifier '%s'\n", PL_tokenbuf); });
8903
8904     /* if we're in a my(), we can't allow dynamics here.
8905        $foo'bar has already been turned into $foo::bar, so
8906        just check for colons.
8907
8908        if it's a legal name, the OP is a PADANY.
8909     */
8910     if (PL_in_my) {
8911         if (PL_in_my == KEY_our) {      /* "our" is merely analogous to "my" */
8912             if (has_colon)
8913                 /* diag_listed_as: No package name allowed for variable %s
8914                                    in "our" */
8915                 yyerror_pv(Perl_form(aTHX_ "No package name allowed for "
8916                                   "%se %s in \"our\"",
8917                                   *PL_tokenbuf=='&' ?"subroutin":"variabl",
8918                                   PL_tokenbuf), UTF ? SVf_UTF8 : 0);
8919             tmp = allocmy(PL_tokenbuf, tokenbuf_len, UTF ? SVf_UTF8 : 0);
8920         }
8921         else {
8922             OP *o;
8923             if (has_colon) {
8924                 /* "my" variable %s can't be in a package */
8925                 /* PL_no_myglob is constant */
8926                 GCC_DIAG_IGNORE(-Wformat-nonliteral);
8927                 yyerror_pv(Perl_form(aTHX_ PL_no_myglob,
8928                             PL_in_my == KEY_my ? "my" : "state",
8929                             *PL_tokenbuf == '&' ? "subroutin" : "variabl",
8930                             PL_tokenbuf),
8931                             UTF ? SVf_UTF8 : 0);
8932                 GCC_DIAG_RESTORE;
8933             }
8934
8935             if (PL_in_my == KEY_sigvar) {
8936                 /* A signature 'padop' needs in addition, an op_first to
8937                  * point to a child sigdefelem, and an extra field to hold
8938                  * the signature index. We can achieve both by using an
8939                  * UNOP_AUX and (ab)using the op_aux field to hold the
8940                  * index. If we ever need more fields, use a real malloced
8941                  * aux strut instead.
8942                  */
8943                 o = newUNOP_AUX(OP_ARGELEM, 0, NULL,
8944                                     INT2PTR(UNOP_AUX_item *,
8945                                         (PL_parser->sig_elems)));
8946                 o->op_private |= (  PL_tokenbuf[0] == '$' ? OPpARGELEM_SV
8947                                   : PL_tokenbuf[0] == '@' ? OPpARGELEM_AV
8948                                   :                         OPpARGELEM_HV);
8949             }
8950             else
8951                 o = newOP(OP_PADANY, 0);
8952             o->op_targ = allocmy(PL_tokenbuf, tokenbuf_len,
8953                                                         UTF ? SVf_UTF8 : 0);
8954             if (PL_in_my == KEY_sigvar)
8955                 PL_in_my = 0;
8956
8957             pl_yylval.opval = o;
8958             return PRIVATEREF;
8959         }
8960     }
8961
8962     /*
8963        build the ops for accesses to a my() variable.
8964     */
8965
8966     if (!has_colon) {
8967         if (!PL_in_my)
8968             tmp = pad_findmy_pvn(PL_tokenbuf, tokenbuf_len,
8969                                  0);
8970         if (tmp != NOT_IN_PAD) {
8971             /* might be an "our" variable" */
8972             if (PAD_COMPNAME_FLAGS_isOUR(tmp)) {
8973                 /* build ops for a bareword */
8974                 HV *  const stash = PAD_COMPNAME_OURSTASH(tmp);
8975                 HEK * const stashname = HvNAME_HEK(stash);
8976                 SV *  const sym = newSVhek(stashname);
8977                 sv_catpvs(sym, "::");
8978                 sv_catpvn_flags(sym, PL_tokenbuf+1, tokenbuf_len - 1, (UTF ? SV_CATUTF8 : SV_CATBYTES ));
8979                 pl_yylval.opval = newSVOP(OP_CONST, 0, sym);
8980                 pl_yylval.opval->op_private = OPpCONST_ENTERED;
8981                 if (pit != '&')
8982                   gv_fetchsv(sym,
8983                     GV_ADDMULTI,
8984                     ((PL_tokenbuf[0] == '$') ? SVt_PV
8985                      : (PL_tokenbuf[0] == '@') ? SVt_PVAV
8986                      : SVt_PVHV));
8987                 return BAREWORD;
8988             }
8989
8990             pl_yylval.opval = newOP(OP_PADANY, 0);
8991             pl_yylval.opval->op_targ = tmp;
8992             return PRIVATEREF;
8993         }
8994     }
8995
8996     /*
8997        Whine if they've said @foo or @foo{key} in a doublequoted string,
8998        and @foo (or %foo) isn't a variable we can find in the symbol
8999        table.
9000     */
9001     if (ckWARN(WARN_AMBIGUOUS)
9002         && pit == '@'
9003         && PL_lex_state != LEX_NORMAL
9004         && !PL_lex_brackets)
9005     {
9006         GV *const gv = gv_fetchpvn_flags(PL_tokenbuf + 1, tokenbuf_len - 1,
9007                                          ( UTF ? SVf_UTF8 : 0 ) | GV_ADDMG,
9008                                          SVt_PVAV);
9009         if ((!gv || ((PL_tokenbuf[0] == '@') ? !GvAV(gv) : !GvHV(gv)))
9010            )
9011         {
9012             /* Downgraded from fatal to warning 20000522 mjd */
9013             Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
9014                         "Possible unintended interpolation of %" UTF8f
9015                         " in string",
9016                         UTF8fARG(UTF, tokenbuf_len, PL_tokenbuf));
9017         }
9018     }
9019
9020     /* build ops for a bareword */
9021     pl_yylval.opval = newSVOP(OP_CONST, 0,
9022                                    newSVpvn_flags(PL_tokenbuf + 1,
9023                                                       tokenbuf_len - 1,
9024                                                       UTF ? SVf_UTF8 : 0 ));
9025     pl_yylval.opval->op_private = OPpCONST_ENTERED;
9026     if (pit != '&')
9027         gv_fetchpvn_flags(PL_tokenbuf+1, tokenbuf_len - 1,
9028                      (PL_in_eval ? GV_ADDMULTI : GV_ADD)
9029                      | ( UTF ? SVf_UTF8 : 0 ),
9030                      ((PL_tokenbuf[0] == '$') ? SVt_PV
9031                       : (PL_tokenbuf[0] == '@') ? SVt_PVAV
9032                       : SVt_PVHV));
9033     return BAREWORD;
9034 }
9035
9036 STATIC void
9037 S_checkcomma(pTHX_ const char *s, const char *name, const char *what)
9038 {
9039     PERL_ARGS_ASSERT_CHECKCOMMA;
9040
9041     if (*s == ' ' && s[1] == '(') {     /* XXX gotta be a better way */
9042         if (ckWARN(WARN_SYNTAX)) {
9043             int level = 1;
9044             const char *w;
9045             for (w = s+2; *w && level; w++) {
9046                 if (*w == '(')
9047                     ++level;
9048                 else if (*w == ')')
9049                     --level;
9050             }
9051             while (isSPACE(*w))
9052                 ++w;
9053             /* the list of chars below is for end of statements or
9054              * block / parens, boolean operators (&&, ||, //) and branch
9055              * constructs (or, and, if, until, unless, while, err, for).
9056              * Not a very solid hack... */
9057             if (!*w || !strchr(";&/|})]oaiuwef!=", *w))
9058                 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
9059                             "%s (...) interpreted as function",name);
9060         }
9061     }
9062     while (s < PL_bufend && isSPACE(*s))
9063         s++;
9064     if (*s == '(')
9065         s++;
9066     while (s < PL_bufend && isSPACE(*s))
9067         s++;
9068     if (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)) {
9069         const char * const w = s;
9070         s += UTF ? UTF8SKIP(s) : 1;
9071         while (isWORDCHAR_lazy_if_safe(s, PL_bufend, UTF))
9072             s += UTF ? UTF8SKIP(s) : 1;
9073         while (s < PL_bufend && isSPACE(*s))
9074             s++;
9075         if (*s == ',') {
9076             GV* gv;
9077             if (keyword(w, s - w, 0))
9078                 return;
9079
9080             gv = gv_fetchpvn_flags(w, s - w, ( UTF ? SVf_UTF8 : 0 ), SVt_PVCV);
9081             if (gv && GvCVu(gv))
9082                 return;
9083             if (s - w <= 254) {
9084                 PADOFFSET off;
9085                 char tmpbuf[256];
9086                 Copy(w, tmpbuf+1, s - w, char);
9087                 *tmpbuf = '&';
9088                 off = pad_findmy_pvn(tmpbuf, s-w+1, 0);
9089                 if (off != NOT_IN_PAD) return;
9090             }
9091             Perl_croak(aTHX_ "No comma allowed after %s", what);
9092         }
9093     }
9094 }
9095
9096 /* S_new_constant(): do any overload::constant lookup.
9097
9098    Either returns sv, or mortalizes/frees sv and returns a new SV*.
9099    Best used as sv=new_constant(..., sv, ...).
9100    If s, pv are NULL, calls subroutine with one argument,
9101    and <type> is used with error messages only.
9102    <type> is assumed to be well formed UTF-8 */
9103
9104 STATIC SV *
9105 S_new_constant(pTHX_ const char *s, STRLEN len, const char *key, STRLEN keylen,
9106                SV *sv, SV *pv, const char *type, STRLEN typelen)
9107 {
9108     dSP;
9109     HV * table = GvHV(PL_hintgv);                /* ^H */
9110     SV *res;
9111     SV *errsv = NULL;
9112     SV **cvp;
9113     SV *cv, *typesv;
9114     const char *why1 = "", *why2 = "", *why3 = "";
9115
9116     PERL_ARGS_ASSERT_NEW_CONSTANT;
9117     /* We assume that this is true: */
9118     if (*key == 'c') { assert (strEQ(key, "charnames")); }
9119     assert(type || s);
9120
9121     /* charnames doesn't work well if there have been errors found */
9122     if (PL_error_count > 0 && *key == 'c')
9123     {
9124         SvREFCNT_dec_NN(sv);
9125         return &PL_sv_undef;
9126     }
9127
9128     sv_2mortal(sv);                     /* Parent created it permanently */
9129     if (!table
9130         || ! (PL_hints & HINT_LOCALIZE_HH)
9131         || ! (cvp = hv_fetch(table, key, keylen, FALSE))
9132         || ! SvOK(*cvp))
9133     {
9134         char *msg;
9135
9136         /* Here haven't found what we're looking for.  If it is charnames,
9137          * perhaps it needs to be loaded.  Try doing that before giving up */
9138         if (*key == 'c') {
9139             Perl_load_module(aTHX_
9140                             0,
9141                             newSVpvs("_charnames"),
9142                              /* version parameter; no need to specify it, as if
9143                               * we get too early a version, will fail anyway,
9144                               * not being able to find '_charnames' */
9145                             NULL,
9146                             newSVpvs(":full"),
9147                             newSVpvs(":short"),
9148                             NULL);
9149             assert(sp == PL_stack_sp);
9150             table = GvHV(PL_hintgv);
9151             if (table
9152                 && (PL_hints & HINT_LOCALIZE_HH)
9153                 && (cvp = hv_fetch(table, key, keylen, FALSE))
9154                 && SvOK(*cvp))
9155             {
9156                 goto now_ok;
9157             }
9158         }
9159         if (!table || !(PL_hints & HINT_LOCALIZE_HH)) {
9160             msg = Perl_form(aTHX_
9161                                "Constant(%.*s) unknown",
9162                                 (int)(type ? typelen : len),
9163                                 (type ? type: s));
9164         }
9165         else {
9166             why1 = "$^H{";
9167             why2 = key;
9168             why3 = "} is not defined";
9169         report:
9170             if (*key == 'c') {
9171                 msg = Perl_form(aTHX_
9172                             /* The +3 is for '\N{'; -4 for that, plus '}' */
9173                             "Unknown charname '%.*s'", (int)typelen - 4, type + 3
9174                       );
9175             }
9176             else {
9177                 msg = Perl_form(aTHX_ "Constant(%.*s): %s%s%s",
9178                                     (int)(type ? typelen : len),
9179                                     (type ? type: s), why1, why2, why3);
9180             }
9181         }
9182         yyerror_pv(msg, UTF ? SVf_UTF8 : 0);
9183         return SvREFCNT_inc_simple_NN(sv);
9184     }
9185   now_ok:
9186     cv = *cvp;
9187     if (!pv && s)
9188         pv = newSVpvn_flags(s, len, SVs_TEMP);
9189     if (type && pv)
9190         typesv = newSVpvn_flags(type, typelen, SVs_TEMP);
9191     else
9192         typesv = &PL_sv_undef;
9193
9194     PUSHSTACKi(PERLSI_OVERLOAD);
9195     ENTER ;
9196     SAVETMPS;
9197
9198     PUSHMARK(SP) ;
9199     EXTEND(sp, 3);
9200     if (pv)
9201         PUSHs(pv);
9202     PUSHs(sv);
9203     if (pv)
9204         PUSHs(typesv);
9205     PUTBACK;
9206     call_sv(cv, G_SCALAR | ( PL_in_eval ? 0 : G_EVAL));
9207
9208     SPAGAIN ;
9209
9210     /* Check the eval first */
9211     if (!PL_in_eval && ((errsv = ERRSV), SvTRUE_NN(errsv))) {
9212         STRLEN errlen;
9213         const char * errstr;
9214         sv_catpvs(errsv, "Propagated");
9215         errstr = SvPV_const(errsv, errlen);
9216         yyerror_pvn(errstr, errlen, 0); /* Duplicates the message inside eval */
9217         (void)POPs;
9218         res = SvREFCNT_inc_simple_NN(sv);
9219     }
9220     else {
9221         res = POPs;
9222         SvREFCNT_inc_simple_void_NN(res);
9223     }
9224
9225     PUTBACK ;
9226     FREETMPS ;
9227     LEAVE ;
9228     POPSTACK;
9229
9230     if (!SvOK(res)) {
9231         why1 = "Call to &{$^H{";
9232         why2 = key;
9233         why3 = "}} did not return a defined value";
9234         sv = res;
9235         (void)sv_2mortal(sv);
9236         goto report;
9237     }
9238
9239     return res;
9240 }
9241
9242 PERL_STATIC_INLINE void
9243 S_parse_ident(pTHX_ char **s, char **d, char * const e, int allow_package,
9244                     bool is_utf8, bool check_dollar)
9245 {
9246     PERL_ARGS_ASSERT_PARSE_IDENT;
9247
9248     while (*s < PL_bufend) {
9249         if (*d >= e)
9250             Perl_croak(aTHX_ "%s", ident_too_long);
9251         if (is_utf8 && isIDFIRST_utf8_safe(*s, PL_bufend)) {
9252              /* The UTF-8 case must come first, otherwise things
9253              * like c\N{COMBINING TILDE} would start failing, as the
9254              * isWORDCHAR_A case below would gobble the 'c' up.
9255              */
9256
9257             char *t = *s + UTF8SKIP(*s);
9258             while (isIDCONT_utf8_safe((const U8*) t, (const U8*) PL_bufend)) {
9259                 t += UTF8SKIP(t);
9260             }
9261             if (*d + (t - *s) > e)
9262                 Perl_croak(aTHX_ "%s", ident_too_long);
9263             Copy(*s, *d, t - *s, char);
9264             *d += t - *s;
9265             *s = t;
9266         }
9267         else if ( isWORDCHAR_A(**s) ) {
9268             do {
9269                 *(*d)++ = *(*s)++;
9270             } while (isWORDCHAR_A(**s) && *d < e);
9271         }
9272         else if (   allow_package
9273                  && **s == '\''
9274                  && isIDFIRST_lazy_if_safe((*s)+1, PL_bufend, is_utf8))
9275         {
9276             *(*d)++ = ':';
9277             *(*d)++ = ':';
9278             (*s)++;
9279         }
9280         else if (allow_package && **s == ':' && (*s)[1] == ':'
9281            /* Disallow things like Foo::$bar. For the curious, this is
9282             * the code path that triggers the "Bad name after" warning
9283             * when looking for barewords.
9284             */
9285            && !(check_dollar && (*s)[2] == '$')) {
9286             *(*d)++ = *(*s)++;
9287             *(*d)++ = *(*s)++;
9288         }
9289         else
9290             break;
9291     }
9292     return;
9293 }
9294
9295 /* Returns a NUL terminated string, with the length of the string written to
9296    *slp
9297    */
9298 STATIC char *
9299 S_scan_word(pTHX_ char *s, char *dest, STRLEN destlen, int allow_package, STRLEN *slp)
9300 {
9301     char *d = dest;
9302     char * const e = d + destlen - 3;  /* two-character token, ending NUL */
9303     bool is_utf8 = cBOOL(UTF);
9304
9305     PERL_ARGS_ASSERT_SCAN_WORD;
9306
9307     parse_ident(&s, &d, e, allow_package, is_utf8, TRUE);
9308     *d = '\0';
9309     *slp = d - dest;
9310     return s;
9311 }
9312
9313 /* Is the byte 'd' a legal single character identifier name?  'u' is true
9314  * iff Unicode semantics are to be used.  The legal ones are any of:
9315  *  a) all ASCII characters except:
9316  *          1) control and space-type ones, like NUL, SOH, \t, and SPACE;
9317  *          2) '{'
9318  *     The final case currently doesn't get this far in the program, so we
9319  *     don't test for it.  If that were to change, it would be ok to allow it.
9320  *  b) When not under Unicode rules, any upper Latin1 character
9321  *  c) Otherwise, when unicode rules are used, all XIDS characters.
9322  *
9323  *      Because all ASCII characters have the same representation whether
9324  *      encoded in UTF-8 or not, we can use the foo_A macros below and '\0' and
9325  *      '{' without knowing if is UTF-8 or not. */
9326 #define VALID_LEN_ONE_IDENT(s, e, is_utf8)                                  \
9327     (isGRAPH_A(*(s)) || ((is_utf8)                                          \
9328                          ? isIDFIRST_utf8_safe(s, e)                        \
9329                          : (isGRAPH_L1(*s)                                  \
9330                             && LIKELY((U8) *(s) != LATIN1_TO_NATIVE(0xAD)))))
9331
9332 STATIC char *
9333 S_scan_ident(pTHX_ char *s, char *dest, STRLEN destlen, I32 ck_uni)
9334 {
9335     I32 herelines = PL_parser->herelines;
9336     SSize_t bracket = -1;
9337     char funny = *s++;
9338     char *d = dest;
9339     char * const e = d + destlen - 3;    /* two-character token, ending NUL */
9340     bool is_utf8 = cBOOL(UTF);
9341     I32 orig_copline = 0, tmp_copline = 0;
9342
9343     PERL_ARGS_ASSERT_SCAN_IDENT;
9344
9345     if (isSPACE(*s) || !*s)
9346         s = skipspace(s);
9347     if (isDIGIT(*s)) {
9348         while (isDIGIT(*s)) {
9349             if (d >= e)
9350                 Perl_croak(aTHX_ "%s", ident_too_long);
9351             *d++ = *s++;
9352         }
9353     }
9354     else {  /* See if it is a "normal" identifier */
9355         parse_ident(&s, &d, e, 1, is_utf8, FALSE);
9356     }
9357     *d = '\0';
9358     d = dest;
9359     if (*d) {
9360         /* Either a digit variable, or parse_ident() found an identifier
9361            (anything valid as a bareword), so job done and return.  */
9362         if (PL_lex_state != LEX_NORMAL)
9363             PL_lex_state = LEX_INTERPENDMAYBE;
9364         return s;
9365     }
9366
9367     /* Here, it is not a run-of-the-mill identifier name */
9368
9369     if (*s == '$' && s[1]
9370         && (   isIDFIRST_lazy_if_safe(s+1, PL_bufend, is_utf8)
9371             || isDIGIT_A((U8)s[1])
9372             || s[1] == '$'
9373             || s[1] == '{'
9374             || strEQs(s+1,"::")) )
9375     {
9376         /* Dereferencing a value in a scalar variable.
9377            The alternatives are different syntaxes for a scalar variable.
9378            Using ' as a leading package separator isn't allowed. :: is.   */
9379         return s;
9380     }
9381     /* Handle the opening { of @{...}, &{...}, *{...}, %{...}, ${...}  */
9382     if (*s == '{') {
9383         bracket = s - SvPVX(PL_linestr);
9384         s++;
9385         orig_copline = CopLINE(PL_curcop);
9386         if (s < PL_bufend && isSPACE(*s)) {
9387             s = skipspace(s);
9388         }
9389     }
9390     if ((s <= PL_bufend - (is_utf8)
9391                           ? UTF8SKIP(s)
9392                           : 1)
9393         && VALID_LEN_ONE_IDENT(s, PL_bufend, is_utf8))
9394     {
9395         if (is_utf8) {
9396             const STRLEN skip = UTF8SKIP(s);
9397             STRLEN i;
9398             d[skip] = '\0';
9399             for ( i = 0; i < skip; i++ )
9400                 d[i] = *s++;
9401         }
9402         else {
9403             *d = *s++;
9404             d[1] = '\0';
9405         }
9406     }
9407     /* Convert $^F, ${^F} and the ^F of ${^FOO} to control characters */
9408     if (*d == '^' && *s && isCONTROLVAR(*s)) {
9409         *d = toCTRL(*s);
9410         s++;
9411     }
9412     /* Warn about ambiguous code after unary operators if {...} notation isn't
9413        used.  There's no difference in ambiguity; it's merely a heuristic
9414        about when not to warn.  */
9415     else if (ck_uni && bracket == -1)
9416         check_uni();
9417     if (bracket != -1) {
9418         bool skip;
9419         char *s2;
9420         /* If we were processing {...} notation then...  */
9421         if (isIDFIRST_lazy_if_safe(d, e, is_utf8)
9422             || (!isPRINT(*d) /* isCNTRL(d), plus all non-ASCII */
9423                  && isWORDCHAR(*s))
9424         ) {
9425             /* note we have to check for a normal identifier first,
9426              * as it handles utf8 symbols, and only after that has
9427              * been ruled out can we look at the caret words */
9428             if (isIDFIRST_lazy_if_safe(d, e, is_utf8) ) {
9429                 /* if it starts as a valid identifier, assume that it is one.
9430                    (the later check for } being at the expected point will trap
9431                    cases where this doesn't pan out.)  */
9432                 d += is_utf8 ? UTF8SKIP(d) : 1;
9433                 parse_ident(&s, &d, e, 1, is_utf8, TRUE);
9434                 *d = '\0';
9435             }
9436             else { /* caret word: ${^Foo} ${^CAPTURE[0]} */
9437                 d++;
9438                 while (isWORDCHAR(*s) && d < e) {
9439                     *d++ = *s++;
9440                 }
9441                 if (d >= e)
9442                     Perl_croak(aTHX_ "%s", ident_too_long);
9443                 *d = '\0';
9444             }
9445             tmp_copline = CopLINE(PL_curcop);
9446             if (s < PL_bufend && isSPACE(*s)) {
9447                 s = skipspace(s);
9448             }
9449             if ((*s == '[' || (*s == '{' && strNE(dest, "sub")))) {
9450                 /* ${foo[0]} and ${foo{bar}} and ${^CAPTURE[0]} notation.  */
9451                 if (ckWARN(WARN_AMBIGUOUS) && keyword(dest, d - dest, 0)) {
9452                     const char * const brack =
9453                         (const char *)
9454                         ((*s == '[') ? "[...]" : "{...}");
9455                     orig_copline = CopLINE(PL_curcop);
9456                     CopLINE_set(PL_curcop, tmp_copline);
9457    /* diag_listed_as: Ambiguous use of %c{%s[...]} resolved to %c%s[...] */
9458                     Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
9459                         "Ambiguous use of %c{%s%s} resolved to %c%s%s",
9460                         funny, dest, brack, funny, dest, brack);
9461                     CopLINE_set(PL_curcop, orig_copline);
9462                 }
9463                 bracket++;
9464                 PL_lex_brackstack[PL_lex_brackets++] = (char)(XOPERATOR | XFAKEBRACK);
9465                 PL_lex_allbrackets++;
9466                 return s;
9467             }
9468         }
9469
9470         if ( !tmp_copline )
9471             tmp_copline = CopLINE(PL_curcop);
9472         if ((skip = s < PL_bufend && isSPACE(*s))) {
9473             /* Avoid incrementing line numbers or resetting PL_linestart,
9474                in case we have to back up.  */
9475             STRLEN s_off = s - SvPVX(PL_linestr);
9476             s2 = peekspace(s);
9477             s = SvPVX(PL_linestr) + s_off;
9478         }
9479         else
9480             s2 = s;
9481
9482         /* Expect to find a closing } after consuming any trailing whitespace.
9483          */
9484         if (*s2 == '}') {
9485             /* Now increment line numbers if applicable.  */
9486             if (skip)
9487                 s = skipspace(s);
9488             s++;
9489             if (PL_lex_state == LEX_INTERPNORMAL && !PL_lex_brackets) {
9490                 PL_lex_state = LEX_INTERPEND;
9491                 PL_expect = XREF;
9492             }
9493             if (PL_lex_state == LEX_NORMAL) {
9494                 if (ckWARN(WARN_AMBIGUOUS)
9495                     && (keyword(dest, d - dest, 0)
9496                         || get_cvn_flags(dest, d - dest, is_utf8
9497                            ? SVf_UTF8
9498                            : 0)))
9499                 {
9500                     SV *tmp = newSVpvn_flags( dest, d - dest,
9501                                         SVs_TEMP | (is_utf8 ? SVf_UTF8 : 0) );
9502                     if (funny == '#')
9503                         funny = '@';
9504                     orig_copline = CopLINE(PL_curcop);
9505                     CopLINE_set(PL_curcop, tmp_copline);
9506                     Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
9507                         "Ambiguous use of %c{%" SVf "} resolved to %c%" SVf,
9508                         funny, SVfARG(tmp), funny, SVfARG(tmp));
9509                     CopLINE_set(PL_curcop, orig_copline);
9510                 }
9511             }
9512         }
9513         else {
9514             /* Didn't find the closing } at the point we expected, so restore
9515                state such that the next thing to process is the opening { and */
9516             s = SvPVX(PL_linestr) + bracket; /* let the parser handle it */
9517             CopLINE_set(PL_curcop, orig_copline);
9518             PL_parser->herelines = herelines;
9519             *dest = '\0';
9520         }
9521     }
9522     else if (PL_lex_state == LEX_INTERPNORMAL && !PL_lex_brackets && !intuit_more(s))
9523         PL_lex_state = LEX_INTERPEND;
9524     return s;
9525 }
9526
9527 static bool
9528 S_pmflag(pTHX_ const char* const valid_flags, U32 * pmfl, char** s, char* charset, unsigned int * x_mod_count) {
9529
9530     /* Adds, subtracts to/from 'pmfl' based on the next regex modifier flag
9531      * found in the parse starting at 's', based on the subset that are valid
9532      * in this context input to this routine in 'valid_flags'. Advances s.
9533      * Returns TRUE if the input should be treated as a valid flag, so the next
9534      * char may be as well; otherwise FALSE. 'charset' should point to a NUL
9535      * upon first call on the current regex.  This routine will set it to any
9536      * charset modifier found.  The caller shouldn't change it.  This way,
9537      * another charset modifier encountered in the parse can be detected as an
9538      * error, as we have decided to allow only one */
9539
9540     const char c = **s;
9541     STRLEN charlen = UTF ? UTF8SKIP(*s) : 1;
9542
9543     if ( charlen != 1 || ! strchr(valid_flags, c) ) {
9544         if (isWORDCHAR_lazy_if_safe( *s, PL_bufend, UTF)) {
9545             yyerror_pv(Perl_form(aTHX_ "Unknown regexp modifier \"/%.*s\"", (int)charlen, *s),
9546                        UTF ? SVf_UTF8 : 0);
9547             (*s) += charlen;
9548             /* Pretend that it worked, so will continue processing before
9549              * dieing */
9550             return TRUE;
9551         }
9552         return FALSE;
9553     }
9554
9555     switch (c) {
9556
9557         CASE_STD_PMMOD_FLAGS_PARSE_SET(pmfl, *x_mod_count);
9558         case GLOBAL_PAT_MOD:      *pmfl |= PMf_GLOBAL; break;
9559         case CONTINUE_PAT_MOD:    *pmfl |= PMf_CONTINUE; break;
9560         case ONCE_PAT_MOD:        *pmfl |= PMf_KEEP; break;
9561         case KEEPCOPY_PAT_MOD:    *pmfl |= RXf_PMf_KEEPCOPY; break;
9562         case NONDESTRUCT_PAT_MOD: *pmfl |= PMf_NONDESTRUCT; break;
9563         case LOCALE_PAT_MOD:
9564             if (*charset) {
9565                 goto multiple_charsets;
9566             }
9567             set_regex_charset(pmfl, REGEX_LOCALE_CHARSET);
9568             *charset = c;
9569             break;
9570         case UNICODE_PAT_MOD:
9571             if (*charset) {
9572                 goto multiple_charsets;
9573             }
9574             set_regex_charset(pmfl, REGEX_UNICODE_CHARSET);
9575             *charset = c;
9576             break;
9577         case ASCII_RESTRICT_PAT_MOD:
9578             if (! *charset) {
9579                 set_regex_charset(pmfl, REGEX_ASCII_RESTRICTED_CHARSET);
9580             }
9581             else {
9582
9583                 /* Error if previous modifier wasn't an 'a', but if it was, see
9584                  * if, and accept, a second occurrence (only) */
9585                 if (*charset != 'a'
9586                     || get_regex_charset(*pmfl)
9587                         != REGEX_ASCII_RESTRICTED_CHARSET)
9588                 {
9589                         goto multiple_charsets;
9590                 }
9591                 set_regex_charset(pmfl, REGEX_ASCII_MORE_RESTRICTED_CHARSET);
9592             }
9593             *charset = c;
9594             break;
9595         case DEPENDS_PAT_MOD:
9596             if (*charset) {
9597                 goto multiple_charsets;
9598             }
9599             set_regex_charset(pmfl, REGEX_DEPENDS_CHARSET);
9600             *charset = c;
9601             break;
9602     }
9603
9604     (*s)++;
9605     return TRUE;
9606
9607     multiple_charsets:
9608         if (*charset != c) {
9609             yyerror(Perl_form(aTHX_ "Regexp modifiers \"/%c\" and \"/%c\" are mutually exclusive", *charset, c));
9610         }
9611         else if (c == 'a') {
9612   /* diag_listed_as: Regexp modifier "/%c" may appear a maximum of twice */
9613             yyerror("Regexp modifier \"/a\" may appear a maximum of twice");
9614         }
9615         else {
9616             yyerror(Perl_form(aTHX_ "Regexp modifier \"/%c\" may not appear twice", c));
9617         }
9618
9619         /* Pretend that it worked, so will continue processing before dieing */
9620         (*s)++;
9621         return TRUE;
9622 }
9623
9624 STATIC char *
9625 S_scan_pat(pTHX_ char *start, I32 type)
9626 {
9627     PMOP *pm;
9628     char *s;
9629     const char * const valid_flags =
9630         (const char *)((type == OP_QR) ? QR_PAT_MODS : M_PAT_MODS);
9631     char charset = '\0';    /* character set modifier */
9632     unsigned int x_mod_count = 0;
9633
9634     PERL_ARGS_ASSERT_SCAN_PAT;
9635
9636     s = scan_str(start,TRUE,FALSE, (PL_in_eval & EVAL_RE_REPARSING), NULL);
9637     if (!s)
9638         Perl_croak(aTHX_ "Search pattern not terminated");
9639
9640     pm = (PMOP*)newPMOP(type, 0);
9641     if (PL_multi_open == '?') {
9642         /* This is the only point in the code that sets PMf_ONCE:  */
9643         pm->op_pmflags |= PMf_ONCE;
9644
9645         /* Hence it's safe to do this bit of PMOP book-keeping here, which
9646            allows us to restrict the list needed by reset to just the ??
9647            matches.  */
9648         assert(type != OP_TRANS);
9649         if (PL_curstash) {
9650             MAGIC *mg = mg_find((const SV *)PL_curstash, PERL_MAGIC_symtab);
9651             U32 elements;
9652             if (!mg) {
9653                 mg = sv_magicext(MUTABLE_SV(PL_curstash), 0, PERL_MAGIC_symtab, 0, 0,
9654                                  0);
9655             }
9656             elements = mg->mg_len / sizeof(PMOP**);
9657             Renewc(mg->mg_ptr, elements + 1, PMOP*, char);
9658             ((PMOP**)mg->mg_ptr) [elements++] = pm;
9659             mg->mg_len = elements * sizeof(PMOP**);
9660             PmopSTASH_set(pm,PL_curstash);
9661         }
9662     }
9663
9664     /* if qr/...(?{..}).../, then need to parse the pattern within a new
9665      * anon CV. False positives like qr/[(?{]/ are harmless */
9666
9667     if (type == OP_QR) {
9668         STRLEN len;
9669         char *e, *p = SvPV(PL_lex_stuff, len);
9670         e = p + len;
9671         for (; p < e; p++) {
9672             if (p[0] == '(' && p[1] == '?'
9673                 && (p[2] == '{' || (p[2] == '?' && p[3] == '{')))
9674             {
9675                 pm->op_pmflags |= PMf_HAS_CV;
9676                 break;
9677             }
9678         }
9679         pm->op_pmflags |= PMf_IS_QR;
9680     }
9681
9682     while (*s && S_pmflag(aTHX_ valid_flags, &(pm->op_pmflags),
9683                                 &s, &charset, &x_mod_count))
9684     {};
9685     /* issue a warning if /c is specified,but /g is not */
9686     if ((pm->op_pmflags & PMf_CONTINUE) && !(pm->op_pmflags & PMf_GLOBAL))
9687     {
9688         Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP),
9689                        "Use of /c modifier is meaningless without /g" );
9690     }
9691
9692     PL_lex_op = (OP*)pm;
9693     pl_yylval.ival = OP_MATCH;
9694     return s;
9695 }
9696
9697 STATIC char *
9698 S_scan_subst(pTHX_ char *start)
9699 {
9700     char *s;
9701     PMOP *pm;
9702     I32 first_start;
9703     line_t first_line;
9704     line_t linediff = 0;
9705     I32 es = 0;
9706     char charset = '\0';    /* character set modifier */
9707     unsigned int x_mod_count = 0;
9708     char *t;
9709
9710     PERL_ARGS_ASSERT_SCAN_SUBST;
9711
9712     pl_yylval.ival = OP_NULL;
9713
9714     s = scan_str(start, TRUE, FALSE, FALSE, &t);
9715
9716     if (!s)
9717         Perl_croak(aTHX_ "Substitution pattern not terminated");
9718
9719     s = t;
9720
9721     first_start = PL_multi_start;
9722     first_line = CopLINE(PL_curcop);
9723     s = scan_str(s,FALSE,FALSE,FALSE,NULL);
9724     if (!s) {
9725         SvREFCNT_dec_NN(PL_lex_stuff);
9726         PL_lex_stuff = NULL;
9727         Perl_croak(aTHX_ "Substitution replacement not terminated");
9728     }
9729     PL_multi_start = first_start;       /* so whole substitution is taken together */
9730
9731     pm = (PMOP*)newPMOP(OP_SUBST, 0);
9732
9733
9734     while (*s) {
9735         if (*s == EXEC_PAT_MOD) {
9736             s++;
9737             es++;
9738         }
9739         else if (! S_pmflag(aTHX_ S_PAT_MODS, &(pm->op_pmflags),
9740                                   &s, &charset, &x_mod_count))
9741         {
9742             break;
9743         }
9744     }
9745
9746     if ((pm->op_pmflags & PMf_CONTINUE)) {
9747         Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), "Use of /c modifier is meaningless in s///" );
9748     }
9749
9750     if (es) {
9751         SV * const repl = newSVpvs("");
9752
9753         PL_multi_end = 0;
9754         pm->op_pmflags |= PMf_EVAL;
9755         for (; es > 1; es--) {
9756             sv_catpvs(repl, "eval ");
9757         }
9758         sv_catpvs(repl, "do {");
9759         sv_catsv(repl, PL_parser->lex_sub_repl);
9760         sv_catpvs(repl, "}");
9761         SvREFCNT_dec(PL_parser->lex_sub_repl);
9762         PL_parser->lex_sub_repl = repl;
9763     }
9764
9765
9766     linediff = CopLINE(PL_curcop) - first_line;
9767     if (linediff)
9768         CopLINE_set(PL_curcop, first_line);
9769
9770     if (linediff || es) {
9771         /* the IVX field indicates that the replacement string is a s///e;
9772          * the NVX field indicates how many src code lines the replacement
9773          * spreads over */
9774         sv_upgrade(PL_parser->lex_sub_repl, SVt_PVNV);
9775         ((XPVNV*)SvANY(PL_parser->lex_sub_repl))->xnv_u.xnv_lines = 0;
9776         ((XPVIV*)SvANY(PL_parser->lex_sub_repl))->xiv_u.xivu_eval_seen =
9777                                                                     cBOOL(es);
9778     }
9779
9780     PL_lex_op = (OP*)pm;
9781     pl_yylval.ival = OP_SUBST;
9782     return s;
9783 }
9784
9785 STATIC char *
9786 S_scan_trans(pTHX_ char *start)
9787 {
9788     char* s;
9789     OP *o;
9790     U8 squash;
9791     U8 del;
9792     U8 complement;
9793     bool nondestruct = 0;
9794     char *t;
9795
9796     PERL_ARGS_ASSERT_SCAN_TRANS;
9797
9798     pl_yylval.ival = OP_NULL;
9799
9800     s = scan_str(start,FALSE,FALSE,FALSE,&t);
9801     if (!s)
9802         Perl_croak(aTHX_ "Transliteration pattern not terminated");
9803
9804     s = t;
9805
9806     s = scan_str(s,FALSE,FALSE,FALSE,NULL);
9807     if (!s) {
9808         SvREFCNT_dec_NN(PL_lex_stuff);
9809         PL_lex_stuff = NULL;
9810         Perl_croak(aTHX_ "Transliteration replacement not terminated");
9811     }
9812
9813     complement = del = squash = 0;
9814     while (1) {
9815         switch (*s) {
9816         case 'c':
9817             complement = OPpTRANS_COMPLEMENT;
9818             break;
9819         case 'd':
9820             del = OPpTRANS_DELETE;
9821             break;
9822         case 's':
9823             squash = OPpTRANS_SQUASH;
9824             break;
9825         case 'r':
9826             nondestruct = 1;
9827             break;
9828         default:
9829             goto no_more;
9830         }
9831         s++;
9832     }
9833   no_more:
9834
9835     o = newPVOP(nondestruct ? OP_TRANSR : OP_TRANS, 0, (char*)NULL);
9836     o->op_private &= ~OPpTRANS_ALL;
9837     o->op_private |= del|squash|complement|
9838       (DO_UTF8(PL_lex_stuff)? OPpTRANS_FROM_UTF : 0)|
9839       (DO_UTF8(PL_parser->lex_sub_repl) ? OPpTRANS_TO_UTF   : 0);
9840
9841     PL_lex_op = o;
9842     pl_yylval.ival = nondestruct ? OP_TRANSR : OP_TRANS;
9843
9844
9845     return s;
9846 }
9847
9848 /* scan_heredoc
9849    Takes a pointer to the first < in <<FOO.
9850    Returns a pointer to the byte following <<FOO.
9851
9852    This function scans a heredoc, which involves different methods
9853    depending on whether we are in a string eval, quoted construct, etc.
9854    This is because PL_linestr could containing a single line of input, or
9855    a whole string being evalled, or the contents of the current quote-
9856    like operator.
9857
9858    The two basic methods are:
9859     - Steal lines from the input stream
9860     - Scan the heredoc in PL_linestr and remove it therefrom
9861
9862    In a file scope or filtered eval, the first method is used; in a
9863    string eval, the second.
9864
9865    In a quote-like operator, we have to choose between the two,
9866    depending on where we can find a newline.  We peek into outer lex-
9867    ing scopes until we find one with a newline in it.  If we reach the
9868    outermost lexing scope and it is a file, we use the stream method.
9869    Otherwise it is treated as an eval.
9870 */
9871
9872 STATIC char *
9873 S_scan_heredoc(pTHX_ char *s)
9874 {
9875     I32 op_type = OP_SCALAR;
9876     I32 len;
9877     SV *tmpstr;
9878     char term;
9879     char *d;
9880     char *e;
9881     char *peek;
9882     char *indent = 0;
9883     I32 indent_len = 0;
9884     bool indented = FALSE;
9885     const bool infile = PL_rsfp || PL_parser->filtered;
9886     const line_t origline = CopLINE(PL_curcop);
9887     LEXSHARED *shared = PL_parser->lex_shared;
9888
9889     PERL_ARGS_ASSERT_SCAN_HEREDOC;
9890
9891     s += 2;
9892     d = PL_tokenbuf + 1;
9893     e = PL_tokenbuf + sizeof PL_tokenbuf - 1;
9894     *PL_tokenbuf = '\n';
9895     peek = s;
9896     if (*peek == '~') {
9897         indented = TRUE;
9898         peek++; s++;
9899     }
9900     while (SPACE_OR_TAB(*peek))
9901         peek++;
9902     if (*peek == '`' || *peek == '\'' || *peek =='"') {
9903         s = peek;
9904         term = *s++;
9905         s = delimcpy(d, e, s, PL_bufend, term, &len);
9906         if (s == PL_bufend)
9907             Perl_croak(aTHX_ "Unterminated delimiter for here document");
9908         d += len;
9909         s++;
9910     }
9911     else {
9912         if (*s == '\\')
9913             /* <<\FOO is equivalent to <<'FOO' */
9914             s++, term = '\'';
9915         else
9916             term = '"';
9917         if (! isWORDCHAR_lazy_if_safe(s, PL_bufend, UTF))
9918             Perl_croak(aTHX_ "Use of bare << to mean <<\"\" is forbidden");
9919         peek = s;
9920         while (isWORDCHAR_lazy_if_safe(peek, PL_bufend, UTF)) {
9921             peek += UTF ? UTF8SKIP(peek) : 1;
9922         }
9923         len = (peek - s >= e - d) ? (e - d) : (peek - s);
9924         Copy(s, d, len, char);
9925         s += len;
9926         d += len;
9927     }
9928     if (d >= PL_tokenbuf + sizeof PL_tokenbuf - 1)
9929         Perl_croak(aTHX_ "Delimiter for here document is too long");
9930     *d++ = '\n';
9931     *d = '\0';
9932     len = d - PL_tokenbuf;
9933
9934 #ifndef PERL_STRICT_CR
9935     d = strchr(s, '\r');
9936     if (d) {
9937         char * const olds = s;
9938         s = d;
9939         while (s < PL_bufend) {
9940             if (*s == '\r') {
9941                 *d++ = '\n';
9942                 if (*++s == '\n')
9943                     s++;
9944             }
9945             else if (*s == '\n' && s[1] == '\r') {      /* \015\013 on a mac? */
9946                 *d++ = *s++;
9947                 s++;
9948             }
9949             else
9950                 *d++ = *s++;
9951         }
9952         *d = '\0';
9953         PL_bufend = d;
9954         SvCUR_set(PL_linestr, PL_bufend - SvPVX_const(PL_linestr));
9955         s = olds;
9956     }
9957 #endif
9958
9959     tmpstr = newSV_type(SVt_PVIV);
9960     SvGROW(tmpstr, 80);
9961     if (term == '\'') {
9962         op_type = OP_CONST;
9963         SvIV_set(tmpstr, -1);
9964     }
9965     else if (term == '`') {
9966         op_type = OP_BACKTICK;
9967         SvIV_set(tmpstr, '\\');
9968     }
9969
9970     PL_multi_start = origline + 1 + PL_parser->herelines;
9971     PL_multi_open = PL_multi_close = '<';
9972     /* inside a string eval or quote-like operator */
9973     if (!infile || PL_lex_inwhat) {
9974         SV *linestr;
9975         char *bufend;
9976         char * const olds = s;
9977         PERL_CONTEXT * const cx = CX_CUR();
9978         /* These two fields are not set until an inner lexing scope is
9979            entered.  But we need them set here. */
9980         shared->ls_bufptr  = s;
9981         shared->ls_linestr = PL_linestr;
9982         if (PL_lex_inwhat)
9983           /* Look for a newline.  If the current buffer does not have one,
9984              peek into the line buffer of the parent lexing scope, going
9985              up as many levels as necessary to find one with a newline
9986              after bufptr.
9987            */
9988           while (!(s = (char *)memchr(
9989                     (void *)shared->ls_bufptr, '\n',
9990                     SvEND(shared->ls_linestr)-shared->ls_bufptr
9991                 ))) {
9992             shared = shared->ls_prev;
9993             /* shared is only null if we have gone beyond the outermost
9994                lexing scope.  In a file, we will have broken out of the
9995                loop in the previous iteration.  In an eval, the string buf-
9996                fer ends with "\n;", so the while condition above will have
9997                evaluated to false.  So shared can never be null.  Or so you
9998                might think.  Odd syntax errors like s;@{<<; can gobble up
9999                the implicit semicolon at the end of a flie, causing the
10000                file handle to be closed even when we are not in a string
10001                eval.  So shared may be null in that case.
10002                (Closing '}' here to balance the earlier open brace for
10003                editors that look for matched pairs.) */
10004             if (UNLIKELY(!shared))
10005                 goto interminable;
10006             /* A LEXSHARED struct with a null ls_prev pointer is the outer-
10007                most lexing scope.  In a file, shared->ls_linestr at that
10008                level is just one line, so there is no body to steal. */
10009             if (infile && !shared->ls_prev) {
10010                 s = olds;
10011                 goto streaming;
10012             }
10013           }
10014         else {  /* eval or we've already hit EOF */
10015             s = (char*)memchr((void*)s, '\n', PL_bufend - s);
10016             if (!s)
10017                 goto interminable;
10018         }
10019         linestr = shared->ls_linestr;
10020         bufend = SvEND(linestr);
10021         d = s;
10022         if (indented) {
10023             char *myolds = s;
10024
10025             while (s < bufend - len + 1) {
10026                 if (*s++ == '\n')
10027                     ++PL_parser->herelines;
10028
10029                 if (memEQ(s, PL_tokenbuf + 1, len - 1)) {
10030                     char *backup = s;
10031                     indent_len = 0;
10032
10033                     /* Only valid if it's preceded by whitespace only */
10034                     while (backup != myolds && --backup >= myolds) {
10035                         if (! SPACE_OR_TAB(*backup)) {
10036                             break;
10037                         }
10038
10039                         indent_len++;
10040                     }
10041
10042                     /* No whitespace or all! */
10043                     if (backup == s || *backup == '\n') {
10044                         Newxz(indent, indent_len + 1, char);
10045                         memcpy(indent, backup + 1, indent_len);
10046                         s--; /* before our delimiter */
10047                         PL_parser->herelines--; /* this line doesn't count */
10048                         break;
10049                     }
10050                 }
10051             }
10052         } else {
10053             while (s < bufend - len + 1
10054                    && memNE(s,PL_tokenbuf,len) )
10055             {
10056                 if (*s++ == '\n')
10057                     ++PL_parser->herelines;
10058             }
10059         }
10060
10061         if (s >= bufend - len + 1) {
10062             goto interminable;
10063         }
10064         sv_setpvn(tmpstr,d+1,s-d);
10065         s += len - 1;
10066         /* the preceding stmt passes a newline */
10067         PL_parser->herelines++;
10068
10069         /* s now points to the newline after the heredoc terminator.
10070            d points to the newline before the body of the heredoc.
10071          */
10072
10073         /* We are going to modify linestr in place here, so set
10074            aside copies of the string if necessary for re-evals or
10075            (caller $n)[6]. */
10076         /* See the Paranoia note in case LEX_INTERPEND in yylex, for why we
10077            check shared->re_eval_str. */
10078         if (shared->re_eval_start || shared->re_eval_str) {
10079             /* Set aside the rest of the regexp */
10080             if (!shared->re_eval_str)
10081                 shared->re_eval_str =
10082                        newSVpvn(shared->re_eval_start,
10083                                 bufend - shared->re_eval_start);
10084             shared->re_eval_start -= s-d;
10085         }
10086         if (cxstack_ix >= 0
10087             && CxTYPE(cx) == CXt_EVAL
10088             && CxOLD_OP_TYPE(cx) == OP_ENTEREVAL
10089             && cx->blk_eval.cur_text == linestr)
10090         {
10091             cx->blk_eval.cur_text = newSVsv(linestr);
10092             cx->blk_u16 |= 0x40; /* indicate cur_text is ref counted */
10093         }
10094         /* Copy everything from s onwards back to d. */
10095         Move(s,d,bufend-s + 1,char);
10096         SvCUR_set(linestr, SvCUR(linestr) - (s-d));
10097         /* Setting PL_bufend only applies when we have not dug deeper
10098            into other scopes, because sublex_done sets PL_bufend to
10099            SvEND(PL_linestr). */
10100         if (shared == PL_parser->lex_shared) PL_bufend = SvEND(linestr);
10101         s = olds;
10102     }
10103     else
10104     {
10105       SV *linestr_save;
10106       char *oldbufptr_save;
10107       char *oldoldbufptr_save;
10108      streaming:
10109       SvPVCLEAR(tmpstr);   /* avoid "uninitialized" warning */
10110       term = PL_tokenbuf[1];
10111       len--;
10112       linestr_save = PL_linestr; /* must restore this afterwards */
10113       d = s;                     /* and this */
10114       oldbufptr_save = PL_oldbufptr;
10115       oldoldbufptr_save = PL_oldoldbufptr;
10116       PL_linestr = newSVpvs("");
10117       PL_bufend = SvPVX(PL_linestr);
10118       while (1) {
10119         PL_bufptr = PL_bufend;
10120         CopLINE_set(PL_curcop,
10121                     origline + 1 + PL_parser->herelines);
10122         if (!lex_next_chunk(LEX_NO_TERM)
10123          && (!SvCUR(tmpstr) || SvEND(tmpstr)[-1] != '\n')) {
10124             /* Simply freeing linestr_save might seem simpler here, as it
10125                does not matter what PL_linestr points to, since we are
10126                about to croak; but in a quote-like op, linestr_save
10127                will have been prospectively freed already, via
10128                SAVEFREESV(PL_linestr) in sublex_push, so it’s easier to
10129                restore PL_linestr. */
10130             SvREFCNT_dec_NN(PL_linestr);
10131             PL_linestr = linestr_save;
10132             PL_oldbufptr = oldbufptr_save;
10133             PL_oldoldbufptr = oldoldbufptr_save;
10134             goto interminable;
10135         }
10136         CopLINE_set(PL_curcop, origline);
10137         if (!SvCUR(PL_linestr) || PL_bufend[-1] != '\n') {
10138             s = lex_grow_linestr(SvLEN(PL_linestr) + 3);
10139             /* ^That should be enough to avoid this needing to grow:  */
10140             sv_catpvs(PL_linestr, "\n\0");
10141             assert(s == SvPVX(PL_linestr));
10142             PL_bufend = SvEND(PL_linestr);
10143         }
10144         s = PL_bufptr;
10145         PL_parser->herelines++;
10146         PL_last_lop = PL_last_uni = NULL;
10147 #ifndef PERL_STRICT_CR
10148         if (PL_bufend - PL_linestart >= 2) {
10149             if (   (PL_bufend[-2] == '\r' && PL_bufend[-1] == '\n')
10150                 || (PL_bufend[-2] == '\n' && PL_bufend[-1] == '\r'))
10151             {
10152                 PL_bufend[-2] = '\n';
10153                 PL_bufend--;
10154                 SvCUR_set(PL_linestr, PL_bufend - SvPVX_const(PL_linestr));
10155             }
10156             else if (PL_bufend[-1] == '\r')
10157                 PL_bufend[-1] = '\n';
10158         }
10159         else if (PL_bufend - PL_linestart == 1 && PL_bufend[-1] == '\r')
10160             PL_bufend[-1] = '\n';
10161 #endif
10162         if (indented && (PL_bufend-s) >= len) {
10163             char * found = ninstr(s, PL_bufend, (PL_tokenbuf + 1), (PL_tokenbuf +1 + len));
10164
10165             if (found) {
10166                 char *backup = found;
10167                 indent_len = 0;
10168
10169                 /* Only valid if it's preceded by whitespace only */
10170                 while (backup != s && --backup >= s) {
10171                     if (! SPACE_OR_TAB(*backup)) {
10172                         break;
10173                     }
10174                     indent_len++;
10175                 }
10176
10177                 /* All whitespace or none! */
10178                 if (backup == found || SPACE_OR_TAB(*backup)) {
10179                     Newxz(indent, indent_len + 1, char);
10180                     memcpy(indent, backup, indent_len);
10181                     SvREFCNT_dec(PL_linestr);
10182                     PL_linestr = linestr_save;
10183                     PL_linestart = SvPVX(linestr_save);
10184                     PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
10185                     PL_oldbufptr = oldbufptr_save;
10186                     PL_oldoldbufptr = oldoldbufptr_save;
10187                     s = d;
10188                     break;
10189                 }
10190             }
10191
10192             /* Didn't find it */
10193             sv_catsv(tmpstr,PL_linestr);
10194         } else {
10195             if (*s == term && PL_bufend-s >= len
10196                 && memEQ(s,PL_tokenbuf + 1,len))
10197             {
10198                 SvREFCNT_dec(PL_linestr);
10199                 PL_linestr = linestr_save;
10200                 PL_linestart = SvPVX(linestr_save);
10201                 PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
10202                 PL_oldbufptr = oldbufptr_save;
10203                 PL_oldoldbufptr = oldoldbufptr_save;
10204                 s = d;
10205                 break;
10206             } else {
10207                 sv_catsv(tmpstr,PL_linestr);
10208             }
10209         }
10210       }
10211     }
10212     PL_multi_end = origline + PL_parser->herelines;
10213     if (indented && indent) {
10214         STRLEN linecount = 1;
10215         STRLEN herelen = SvCUR(tmpstr);
10216         char *ss = SvPVX(tmpstr);
10217         char *se = ss + herelen;
10218         SV *newstr = newSV(herelen+1);
10219         SvPOK_on(newstr);
10220
10221         /* Trim leading whitespace */
10222         while (ss < se) {
10223             /* newline only? Copy and move on */
10224             if (*ss == '\n') {
10225                 sv_catpv(newstr,"\n");
10226                 ss++;
10227                 linecount++;
10228
10229             /* Found our indentation? Strip it */
10230             } else if (se - ss >= indent_len
10231                        && memEQ(ss, indent, indent_len))
10232             {
10233                 STRLEN le = 0;
10234
10235                 ss += indent_len;
10236
10237                 while ((ss + le) < se && *(ss + le) != '\n')
10238                     le++;
10239
10240                 sv_catpvn(newstr, ss, le);
10241
10242                 ss += le;
10243
10244             /* Line doesn't begin with our indentation? Croak */
10245             } else {
10246                 Perl_croak(aTHX_
10247                     "Indentation on line %d of here-doc doesn't match delimiter",
10248                     (int)linecount
10249                 );
10250             }
10251         }
10252         /* avoid sv_setsv() as we dont wan't to COW here */
10253         sv_setpvn(tmpstr,SvPVX(newstr),SvCUR(newstr));
10254         Safefree(indent);
10255         SvREFCNT_dec_NN(newstr);
10256     }
10257     if (SvCUR(tmpstr) + 5 < SvLEN(tmpstr)) {
10258         SvPV_shrink_to_cur(tmpstr);
10259     }
10260     if (!IN_BYTES) {
10261         if (UTF && is_utf8_string((U8*)SvPVX_const(tmpstr), SvCUR(tmpstr)))
10262             SvUTF8_on(tmpstr);
10263     }
10264     PL_lex_stuff = tmpstr;
10265     pl_yylval.ival = op_type;
10266     return s;
10267
10268   interminable:
10269     SvREFCNT_dec(tmpstr);
10270     CopLINE_set(PL_curcop, origline);
10271     missingterm(PL_tokenbuf + 1);
10272 }
10273
10274 /* scan_inputsymbol
10275    takes: position of first '<' in input buffer
10276    returns: position of first char following the matching '>' in
10277             input buffer
10278    side-effects: pl_yylval and lex_op are set.
10279
10280    This code handles:
10281
10282    <>           read from ARGV
10283    <<>>         read from ARGV without magic open
10284    <FH>         read from filehandle
10285    <pkg::FH>    read from package qualified filehandle
10286    <pkg'FH>     read from package qualified filehandle
10287    <$fh>        read from filehandle in $fh
10288    <*.h>        filename glob
10289
10290 */
10291
10292 STATIC char *
10293 S_scan_inputsymbol(pTHX_ char *start)
10294 {
10295     char *s = start;            /* current position in buffer */
10296     char *end;
10297     I32 len;
10298     bool nomagicopen = FALSE;
10299     char *d = PL_tokenbuf;                                      /* start of temp holding space */
10300     const char * const e = PL_tokenbuf + sizeof PL_tokenbuf;    /* end of temp holding space */
10301
10302     PERL_ARGS_ASSERT_SCAN_INPUTSYMBOL;
10303
10304     end = strchr(s, '\n');
10305     if (!end)
10306         end = PL_bufend;
10307     if (s[1] == '<' && s[2] == '>' && s[3] == '>') {
10308         nomagicopen = TRUE;
10309         *d = '\0';
10310         len = 0;
10311         s += 3;
10312     }
10313     else
10314         s = delimcpy(d, e, s + 1, end, '>', &len);      /* extract until > */
10315
10316     /* die if we didn't have space for the contents of the <>,
10317        or if it didn't end, or if we see a newline
10318     */
10319
10320     if (len >= (I32)sizeof PL_tokenbuf)
10321         Perl_croak(aTHX_ "Excessively long <> operator");
10322     if (s >= end)
10323         Perl_croak(aTHX_ "Unterminated <> operator");
10324
10325     s++;
10326
10327     /* check for <$fh>
10328        Remember, only scalar variables are interpreted as filehandles by
10329        this code.  Anything more complex (e.g., <$fh{$num}>) will be
10330        treated as a glob() call.
10331        This code makes use of the fact that except for the $ at the front,
10332        a scalar variable and a filehandle look the same.
10333     */
10334     if (*d == '$' && d[1]) d++;
10335
10336     /* allow <Pkg'VALUE> or <Pkg::VALUE> */
10337     while (isWORDCHAR_lazy_if_safe(d, e, UTF) || *d == '\'' || *d == ':') {
10338         d += UTF ? UTF8SKIP(d) : 1;
10339     }
10340
10341     /* If we've tried to read what we allow filehandles to look like, and
10342        there's still text left, then it must be a glob() and not a getline.
10343        Use scan_str to pull out the stuff between the <> and treat it
10344        as nothing more than a string.
10345     */
10346
10347     if (d - PL_tokenbuf != len) {
10348         pl_yylval.ival = OP_GLOB;
10349         s = scan_str(start,FALSE,FALSE,FALSE,NULL);
10350         if (!s)
10351            Perl_croak(aTHX_ "Glob not terminated");
10352         return s;
10353     }
10354     else {
10355         bool readline_overriden = FALSE;
10356         GV *gv_readline;
10357         /* we're in a filehandle read situation */
10358         d = PL_tokenbuf;
10359
10360         /* turn <> into <ARGV> */
10361         if (!len)
10362             Copy("ARGV",d,5,char);
10363
10364         /* Check whether readline() is overriden */
10365         if ((gv_readline = gv_override("readline",8)))
10366             readline_overriden = TRUE;
10367
10368         /* if <$fh>, create the ops to turn the variable into a
10369            filehandle
10370         */
10371         if (*d == '$') {
10372             /* try to find it in the pad for this block, otherwise find
10373                add symbol table ops
10374             */
10375             const PADOFFSET tmp = pad_findmy_pvn(d, len, 0);
10376             if (tmp != NOT_IN_PAD) {
10377                 if (PAD_COMPNAME_FLAGS_isOUR(tmp)) {
10378                     HV * const stash = PAD_COMPNAME_OURSTASH(tmp);
10379                     HEK * const stashname = HvNAME_HEK(stash);
10380                     SV * const sym = sv_2mortal(newSVhek(stashname));
10381                     sv_catpvs(sym, "::");
10382                     sv_catpv(sym, d+1);
10383                     d = SvPVX(sym);
10384                     goto intro_sym;
10385                 }
10386                 else {
10387                     OP * const o = newOP(OP_PADSV, 0);
10388                     o->op_targ = tmp;
10389                     PL_lex_op = readline_overriden
10390                         ? newUNOP(OP_ENTERSUB, OPf_STACKED,
10391                                 op_append_elem(OP_LIST, o,
10392                                     newCVREF(0, newGVOP(OP_GV,0,gv_readline))))
10393                         : newUNOP(OP_READLINE, 0, o);
10394                 }
10395             }
10396             else {
10397                 GV *gv;
10398                 ++d;
10399               intro_sym:
10400                 gv = gv_fetchpv(d,
10401                                 GV_ADDMULTI | ( UTF ? SVf_UTF8 : 0 ),
10402                                 SVt_PV);
10403                 PL_lex_op = readline_overriden
10404                     ? newUNOP(OP_ENTERSUB, OPf_STACKED,
10405                             op_append_elem(OP_LIST,
10406                                 newUNOP(OP_RV2SV, 0, newGVOP(OP_GV, 0, gv)),
10407                                 newCVREF(0, newGVOP(OP_GV, 0, gv_readline))))
10408                     : newUNOP(OP_READLINE, 0,
10409                             newUNOP(OP_RV2SV, 0,
10410                                 newGVOP(OP_GV, 0, gv)));
10411             }
10412             /* we created the ops in PL_lex_op, so make pl_yylval.ival a null op */
10413             pl_yylval.ival = OP_NULL;
10414         }
10415
10416         /* If it's none of the above, it must be a literal filehandle
10417            (<Foo::BAR> or <FOO>) so build a simple readline OP */
10418         else {
10419             GV * const gv = gv_fetchpv(d, GV_ADD | ( UTF ? SVf_UTF8 : 0 ), SVt_PVIO);
10420             PL_lex_op = readline_overriden
10421                 ? newUNOP(OP_ENTERSUB, OPf_STACKED,
10422                         op_append_elem(OP_LIST,
10423                             newGVOP(OP_GV, 0, gv),
10424                             newCVREF(0, newGVOP(OP_GV, 0, gv_readline))))
10425                 : newUNOP(OP_READLINE, nomagicopen ? OPf_SPECIAL : 0, newGVOP(OP_GV, 0, gv));
10426             pl_yylval.ival = OP_NULL;
10427         }
10428     }
10429
10430     return s;
10431 }
10432
10433
10434 /* scan_str
10435    takes:
10436         start                   position in buffer
10437         keep_bracketed_quoted   preserve \ quoting of embedded delimiters, but
10438                                 only if they are of the open/close form
10439         keep_delims             preserve the delimiters around the string
10440         re_reparse              compiling a run-time /(?{})/:
10441                                    collapse // to /,  and skip encoding src
10442         delimp                  if non-null, this is set to the position of
10443                                 the closing delimiter, or just after it if
10444                                 the closing and opening delimiters differ
10445                                 (i.e., the opening delimiter of a substitu-
10446                                 tion replacement)
10447    returns: position to continue reading from buffer
10448    side-effects: multi_start, multi_close, lex_repl or lex_stuff, and
10449         updates the read buffer.
10450
10451    This subroutine pulls a string out of the input.  It is called for:
10452         q               single quotes           q(literal text)
10453         '               single quotes           'literal text'
10454         qq              double quotes           qq(interpolate $here please)
10455         "               double quotes           "interpolate $here please"
10456         qx              backticks               qx(/bin/ls -l)
10457         `               backticks               `/bin/ls -l`
10458         qw              quote words             @EXPORT_OK = qw( func() $spam )
10459         m//             regexp match            m/this/
10460         s///            regexp substitute       s/this/that/
10461         tr///           string transliterate    tr/this/that/
10462         y///            string transliterate    y/this/that/
10463         ($*@)           sub prototypes          sub foo ($)
10464         (stuff)         sub attr parameters     sub foo : attr(stuff)
10465         <>              readline or globs       <FOO>, <>, <$fh>, or <*.c>
10466
10467    In most of these cases (all but <>, patterns and transliterate)
10468    yylex() calls scan_str().  m// makes yylex() call scan_pat() which
10469    calls scan_str().  s/// makes yylex() call scan_subst() which calls
10470    scan_str().  tr/// and y/// make yylex() call scan_trans() which
10471    calls scan_str().
10472
10473    It skips whitespace before the string starts, and treats the first
10474    character as the delimiter.  If the delimiter is one of ([{< then
10475    the corresponding "close" character )]}> is used as the closing
10476    delimiter.  It allows quoting of delimiters, and if the string has
10477    balanced delimiters ([{<>}]) it allows nesting.
10478
10479    On success, the SV with the resulting string is put into lex_stuff or,
10480    if that is already non-NULL, into lex_repl. The second case occurs only
10481    when parsing the RHS of the special constructs s/// and tr/// (y///).
10482    For convenience, the terminating delimiter character is stuffed into
10483    SvIVX of the SV.
10484 */
10485
10486 STATIC char *
10487 S_scan_str(pTHX_ char *start, int keep_bracketed_quoted, int keep_delims, int re_reparse,
10488                  char **delimp
10489     )
10490 {
10491     SV *sv;                     /* scalar value: string */
10492     const char *tmps;           /* temp string, used for delimiter matching */
10493     char *s = start;            /* current position in the buffer */
10494     char term;                  /* terminating character */
10495     char *to;                   /* current position in the sv's data */
10496     I32 brackets = 1;           /* bracket nesting level */
10497     bool has_utf8 = FALSE;      /* is there any utf8 content? */
10498     IV termcode;                /* terminating char. code */
10499     U8 termstr[UTF8_MAXBYTES];  /* terminating string */
10500     STRLEN termlen;             /* length of terminating string */
10501     line_t herelines;
10502
10503     /* The delimiters that have a mirror-image closing one */
10504     const char * opening_delims = "([{<";
10505     const char * closing_delims = ")]}>";
10506
10507     const char * non_grapheme_msg = "Use of unassigned code point or"
10508                                     " non-standalone grapheme for a delimiter"
10509                                     " will be a fatal error starting in Perl"
10510                                     " 5.30";
10511     /* The only non-UTF character that isn't a stand alone grapheme is
10512      * white-space, hence can't be a delimiter.  So can skip for non-UTF-8 */
10513     bool check_grapheme = UTF && ckWARN_d(WARN_DEPRECATED);
10514
10515     PERL_ARGS_ASSERT_SCAN_STR;
10516
10517     /* skip space before the delimiter */
10518     if (isSPACE(*s)) {
10519         s = skipspace(s);
10520     }
10521
10522     /* mark where we are, in case we need to report errors */
10523     CLINE;
10524
10525     /* after skipping whitespace, the next character is the terminator */
10526     term = *s;
10527     if (!UTF || UTF8_IS_INVARIANT(term)) {
10528         termcode = termstr[0] = term;
10529         termlen = 1;
10530     }
10531     else {
10532         termcode = utf8_to_uvchr_buf((U8*)s, (U8*)PL_bufend, &termlen);
10533         if (check_grapheme) {
10534             if (   UNLIKELY(UNICODE_IS_SUPER(termcode))
10535                 || UNLIKELY(UNICODE_IS_NONCHAR(termcode)))
10536             {
10537                 /* These are considered graphemes, and since the ending
10538                  * delimiter will be the same, we don't have to check the other
10539                  * end */
10540                 check_grapheme = FALSE;
10541             }
10542             else if (UNLIKELY(! _is_grapheme((U8 *) start,
10543                                              (U8 *) s,
10544                                              (U8 *) PL_bufend,
10545                                              termcode)))
10546             {
10547                 Perl_warner(aTHX_ packWARN(WARN_DEPRECATED), "%s", non_grapheme_msg);
10548
10549                 /* Don't have to check the other end, as have already warned at
10550                  * this one */
10551                 check_grapheme = FALSE;
10552             }
10553         }
10554
10555         Copy(s, termstr, termlen, U8);
10556     }
10557
10558     /* mark where we are */
10559     PL_multi_start = CopLINE(PL_curcop);
10560     PL_multi_open = termcode;
10561     herelines = PL_parser->herelines;
10562
10563     /* If the delimiter has a mirror-image closing one, get it */
10564     if (term && (tmps = strchr(opening_delims, term))) {
10565         termcode = termstr[0] = term = closing_delims[tmps - opening_delims];
10566     }
10567
10568     PL_multi_close = termcode;
10569
10570     if (PL_multi_open == PL_multi_close) {
10571         keep_bracketed_quoted = FALSE;
10572     }
10573
10574     /* create a new SV to hold the contents.  79 is the SV's initial length.
10575        What a random number. */
10576     sv = newSV_type(SVt_PVIV);
10577     SvGROW(sv, 80);
10578     SvIV_set(sv, termcode);
10579     (void)SvPOK_only(sv);               /* validate pointer */
10580
10581     /* move past delimiter and try to read a complete string */
10582     if (keep_delims)
10583         sv_catpvn(sv, s, termlen);
10584     s += termlen;
10585     for (;;) {
10586         /* extend sv if need be */
10587         SvGROW(sv, SvCUR(sv) + (PL_bufend - s) + 1);
10588         /* set 'to' to the next character in the sv's string */
10589         to = SvPVX(sv)+SvCUR(sv);
10590
10591         /* if open delimiter is the close delimiter read unbridle */
10592         if (PL_multi_open == PL_multi_close) {
10593             for (; s < PL_bufend; s++,to++) {
10594                 /* embedded newlines increment the current line number */
10595                 if (*s == '\n' && !PL_rsfp && !PL_parser->filtered)
10596                     COPLINE_INC_WITH_HERELINES;
10597                 /* handle quoted delimiters */
10598                 if (*s == '\\' && s+1 < PL_bufend && term != '\\') {
10599                     if (!keep_bracketed_quoted
10600                         && (s[1] == term
10601                             || (re_reparse && s[1] == '\\'))
10602                     )
10603                         s++;
10604                     else /* any other quotes are simply copied straight through */
10605                         *to++ = *s++;
10606                 }
10607                 /* terminate when run out of buffer (the for() condition), or
10608                    have found the terminator */
10609                 else if (*s == term) {  /* First byte of terminator matches */
10610                     if (termlen == 1)   /* If is the only byte, are done */
10611                         break;
10612
10613                     /* If the remainder of the terminator matches, also are
10614                      * done, after checking that is a separate grapheme */
10615                     if (   s + termlen <= PL_bufend
10616                         && memEQ(s + 1, (char*)termstr + 1, termlen - 1))
10617                     {
10618                         if (   check_grapheme
10619                             && UNLIKELY(! _is_grapheme((U8 *) start,
10620                                                               (U8 *) s,
10621                                                               (U8 *) PL_bufend,
10622                                                               termcode)))
10623                         {
10624                             Perl_warner(aTHX_ packWARN(WARN_DEPRECATED),
10625                                         "%s", non_grapheme_msg);
10626                         }
10627                         break;
10628                     }
10629                 }
10630                 else if (!has_utf8 && !UTF8_IS_INVARIANT((U8)*s) && UTF) {
10631                     has_utf8 = TRUE;
10632                 }
10633
10634                 *to = *s;
10635             }
10636         }
10637
10638         /* if the terminator isn't the same as the start character (e.g.,
10639            matched brackets), we have to allow more in the quoting, and
10640            be prepared for nested brackets.
10641         */
10642         else {
10643             /* read until we run out of string, or we find the terminator */
10644             for (; s < PL_bufend; s++,to++) {
10645                 /* embedded newlines increment the line count */
10646                 if (*s == '\n' && !PL_rsfp && !PL_parser->filtered)
10647                     COPLINE_INC_WITH_HERELINES;
10648                 /* backslashes can escape the open or closing characters */
10649                 if (*s == '\\' && s+1 < PL_bufend) {
10650                     if (!keep_bracketed_quoted
10651                        && ( ((UV)s[1] == PL_multi_open)
10652                          || ((UV)s[1] == PL_multi_close) ))
10653                     {
10654                         s++;
10655                     }
10656                     else
10657                         *to++ = *s++;
10658                 }
10659                 /* allow nested opens and closes */
10660                 else if ((UV)*s == PL_multi_close && --brackets <= 0)
10661                     break;
10662                 else if ((UV)*s == PL_multi_open)
10663                     brackets++;
10664                 else if (!has_utf8 && !UTF8_IS_INVARIANT((U8)*s) && UTF)
10665                     has_utf8 = TRUE;
10666                 *to = *s;
10667             }
10668         }
10669         /* terminate the copied string and update the sv's end-of-string */
10670         *to = '\0';
10671         SvCUR_set(sv, to - SvPVX_const(sv));
10672
10673         /*
10674          * this next chunk reads more into the buffer if we're not done yet
10675          */
10676
10677         if (s < PL_bufend)
10678             break;              /* handle case where we are done yet :-) */
10679
10680 #ifndef PERL_STRICT_CR
10681         if (to - SvPVX_const(sv) >= 2) {
10682             if (   (to[-2] == '\r' && to[-1] == '\n')
10683                 || (to[-2] == '\n' && to[-1] == '\r'))
10684             {
10685                 to[-2] = '\n';
10686                 to--;
10687                 SvCUR_set(sv, to - SvPVX_const(sv));
10688             }
10689             else if (to[-1] == '\r')
10690                 to[-1] = '\n';
10691         }
10692         else if (to - SvPVX_const(sv) == 1 && to[-1] == '\r')
10693             to[-1] = '\n';
10694 #endif
10695
10696         /* if we're out of file, or a read fails, bail and reset the current
10697            line marker so we can report where the unterminated string began
10698         */
10699         COPLINE_INC_WITH_HERELINES;
10700         PL_bufptr = PL_bufend;
10701         if (!lex_next_chunk(0)) {
10702             sv_free(sv);
10703             CopLINE_set(PL_curcop, (line_t)PL_multi_start);
10704             return NULL;
10705         }
10706         s = start = PL_bufptr;
10707     }
10708
10709     /* at this point, we have successfully read the delimited string */
10710
10711     if (keep_delims)
10712             sv_catpvn(sv, s, termlen);
10713     s += termlen;
10714
10715     if (has_utf8)
10716         SvUTF8_on(sv);
10717
10718     PL_multi_end = CopLINE(PL_curcop);
10719     CopLINE_set(PL_curcop, PL_multi_start);
10720     PL_parser->herelines = herelines;
10721
10722     /* if we allocated too much space, give some back */
10723     if (SvCUR(sv) + 5 < SvLEN(sv)) {
10724         SvLEN_set(sv, SvCUR(sv) + 1);
10725         SvPV_renew(sv, SvLEN(sv));
10726     }
10727
10728     /* decide whether this is the first or second quoted string we've read
10729        for this op
10730     */
10731
10732     if (PL_lex_stuff)
10733         PL_parser->lex_sub_repl = sv;
10734     else
10735         PL_lex_stuff = sv;
10736     if (delimp) *delimp = PL_multi_open == PL_multi_close ? s-termlen : s;
10737     return s;
10738 }
10739
10740 /*
10741   scan_num
10742   takes: pointer to position in buffer
10743   returns: pointer to new position in buffer
10744   side-effects: builds ops for the constant in pl_yylval.op
10745
10746   Read a number in any of the formats that Perl accepts:
10747
10748   \d(_?\d)*(\.(\d(_?\d)*)?)?[Ee][\+\-]?(\d(_?\d)*)      12 12.34 12.
10749   \.\d(_?\d)*[Ee][\+\-]?(\d(_?\d)*)                     .34
10750   0b[01](_?[01])*                                       binary integers
10751   0[0-7](_?[0-7])*                                      octal integers
10752   0x[0-9A-Fa-f](_?[0-9A-Fa-f])*                         hexadecimal integers
10753   0x[0-9A-Fa-f](_?[0-9A-Fa-f])*(?:\.\d*)?p[+-]?[0-9]+   hexadecimal floats
10754
10755   Like most scan_ routines, it uses the PL_tokenbuf buffer to hold the
10756   thing it reads.
10757
10758   If it reads a number without a decimal point or an exponent, it will
10759   try converting the number to an integer and see if it can do so
10760   without loss of precision.
10761 */
10762
10763 char *
10764 Perl_scan_num(pTHX_ const char *start, YYSTYPE* lvalp)
10765 {
10766     const char *s = start;      /* current position in buffer */
10767     char *d;                    /* destination in temp buffer */
10768     char *e;                    /* end of temp buffer */
10769     NV nv;                              /* number read, as a double */
10770     SV *sv = NULL;                      /* place to put the converted number */
10771     bool floatit;                       /* boolean: int or float? */
10772     const char *lastub = NULL;          /* position of last underbar */
10773     static const char* const number_too_long = "Number too long";
10774     bool warned_about_underscore = 0;
10775 #define WARN_ABOUT_UNDERSCORE() \
10776         do { \
10777             if (!warned_about_underscore) { \
10778                 warned_about_underscore = 1; \
10779                 Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX), \
10780                                "Misplaced _ in number"); \
10781             } \
10782         } while(0)
10783     /* Hexadecimal floating point.
10784      *
10785      * In many places (where we have quads and NV is IEEE 754 double)
10786      * we can fit the mantissa bits of a NV into an unsigned quad.
10787      * (Note that UVs might not be quads even when we have quads.)
10788      * This will not work everywhere, though (either no quads, or
10789      * using long doubles), in which case we have to resort to NV,
10790      * which will probably mean horrible loss of precision due to
10791      * multiple fp operations. */
10792     bool hexfp = FALSE;
10793     int total_bits = 0;
10794     int significant_bits = 0;
10795 #if NVSIZE == 8 && defined(HAS_QUAD) && defined(Uquad_t)
10796 #  define HEXFP_UQUAD
10797     Uquad_t hexfp_uquad = 0;
10798     int hexfp_frac_bits = 0;
10799 #else
10800 #  define HEXFP_NV
10801     NV hexfp_nv = 0.0;
10802 #endif
10803     NV hexfp_mult = 1.0;
10804     UV high_non_zero = 0; /* highest digit */
10805     int non_zero_integer_digits = 0;
10806
10807     PERL_ARGS_ASSERT_SCAN_NUM;
10808
10809     /* We use the first character to decide what type of number this is */
10810
10811     switch (*s) {
10812     default:
10813         Perl_croak(aTHX_ "panic: scan_num, *s=%d", *s);
10814
10815     /* if it starts with a 0, it could be an octal number, a decimal in
10816        0.13 disguise, or a hexadecimal number, or a binary number. */
10817     case '0':
10818         {
10819           /* variables:
10820              u          holds the "number so far"
10821              shift      the power of 2 of the base
10822                         (hex == 4, octal == 3, binary == 1)
10823              overflowed was the number more than we can hold?
10824
10825              Shift is used when we add a digit.  It also serves as an "are
10826              we in octal/hex/binary?" indicator to disallow hex characters
10827              when in octal mode.
10828            */
10829             NV n = 0.0;
10830             UV u = 0;
10831             I32 shift;
10832             bool overflowed = FALSE;
10833             bool just_zero  = TRUE;     /* just plain 0 or binary number? */
10834             static const NV nvshift[5] = { 1.0, 2.0, 4.0, 8.0, 16.0 };
10835             static const char* const bases[5] =
10836               { "", "binary", "", "octal", "hexadecimal" };
10837             static const char* const Bases[5] =
10838               { "", "Binary", "", "Octal", "Hexadecimal" };
10839             static const char* const maxima[5] =
10840               { "",
10841                 "0b11111111111111111111111111111111",
10842                 "",
10843                 "037777777777",
10844                 "0xffffffff" };
10845             const char *base, *Base, *max;
10846
10847             /* check for hex */
10848             if (isALPHA_FOLD_EQ(s[1], 'x')) {
10849                 shift = 4;
10850                 s += 2;
10851                 just_zero = FALSE;
10852             } else if (isALPHA_FOLD_EQ(s[1], 'b')) {
10853                 shift = 1;
10854                 s += 2;
10855                 just_zero = FALSE;
10856             }
10857             /* check for a decimal in disguise */
10858             else if (s[1] == '.' || isALPHA_FOLD_EQ(s[1], 'e'))
10859                 goto decimal;
10860             /* so it must be octal */
10861             else {
10862                 shift = 3;
10863                 s++;
10864             }
10865
10866             if (*s == '_') {
10867                 WARN_ABOUT_UNDERSCORE();
10868                lastub = s++;
10869             }
10870
10871             base = bases[shift];
10872             Base = Bases[shift];
10873             max  = maxima[shift];
10874
10875             /* read the rest of the number */
10876             for (;;) {
10877                 /* x is used in the overflow test,
10878                    b is the digit we're adding on. */
10879                 UV x, b;
10880
10881                 switch (*s) {
10882
10883                 /* if we don't mention it, we're done */
10884                 default:
10885                     goto out;
10886
10887                 /* _ are ignored -- but warned about if consecutive */
10888                 case '_':
10889                     if (lastub && s == lastub + 1)
10890                         WARN_ABOUT_UNDERSCORE();
10891                     lastub = s++;
10892                     break;
10893
10894                 /* 8 and 9 are not octal */
10895                 case '8': case '9':
10896                     if (shift == 3)
10897                         yyerror(Perl_form(aTHX_ "Illegal octal digit '%c'", *s));
10898                     /* FALLTHROUGH */
10899
10900                 /* octal digits */
10901                 case '2': case '3': case '4':
10902                 case '5': case '6': case '7':
10903                     if (shift == 1)
10904                         yyerror(Perl_form(aTHX_ "Illegal binary digit '%c'", *s));
10905                     /* FALLTHROUGH */
10906
10907                 case '0': case '1':
10908                     b = *s++ & 15;              /* ASCII digit -> value of digit */
10909                     goto digit;
10910
10911                 /* hex digits */
10912                 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
10913                 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
10914                     /* make sure they said 0x */
10915                     if (shift != 4)
10916                         goto out;
10917                     b = (*s++ & 7) + 9;
10918
10919                     /* Prepare to put the digit we have onto the end
10920                        of the number so far.  We check for overflows.
10921                     */
10922
10923                   digit:
10924                     just_zero = FALSE;
10925                     if (!overflowed) {
10926                         x = u << shift; /* make room for the digit */
10927
10928                         total_bits += shift;
10929
10930                         if ((x >> shift) != u
10931                             && !(PL_hints & HINT_NEW_BINARY)) {
10932                             overflowed = TRUE;
10933                             n = (NV) u;
10934                             Perl_ck_warner_d(aTHX_ packWARN(WARN_OVERFLOW),
10935                                              "Integer overflow in %s number",
10936                                              base);
10937                         } else
10938                             u = x | b;          /* add the digit to the end */
10939                     }
10940                     if (overflowed) {
10941                         n *= nvshift[shift];
10942                         /* If an NV has not enough bits in its
10943                          * mantissa to represent an UV this summing of
10944                          * small low-order numbers is a waste of time
10945                          * (because the NV cannot preserve the
10946                          * low-order bits anyway): we could just
10947                          * remember when did we overflow and in the
10948                          * end just multiply n by the right
10949                          * amount. */
10950                         n += (NV) b;
10951                     }
10952
10953                     if (high_non_zero == 0 && b > 0)
10954                         high_non_zero = b;
10955
10956                     if (high_non_zero)
10957                         non_zero_integer_digits++;
10958
10959                     /* this could be hexfp, but peek ahead
10960                      * to avoid matching ".." */
10961                     if (UNLIKELY(HEXFP_PEEK(s))) {
10962                         goto out;
10963                     }
10964
10965                     break;
10966                 }
10967             }
10968
10969           /* if we get here, we had success: make a scalar value from
10970              the number.
10971           */
10972           out:
10973
10974             /* final misplaced underbar check */
10975             if (s[-1] == '_')
10976                 WARN_ABOUT_UNDERSCORE();
10977
10978             if (UNLIKELY(HEXFP_PEEK(s))) {
10979                 /* Do sloppy (on the underbars) but quick detection
10980                  * (and value construction) for hexfp, the decimal
10981                  * detection will shortly be more thorough with the
10982                  * underbar checks. */
10983                 const char* h = s;
10984                 significant_bits = non_zero_integer_digits * shift;
10985 #ifdef HEXFP_UQUAD
10986                 hexfp_uquad = u;
10987 #else /* HEXFP_NV */
10988                 hexfp_nv = u;
10989 #endif
10990                 /* Ignore the leading zero bits of
10991                  * the high (first) non-zero digit. */
10992                 if (high_non_zero) {
10993                     if (high_non_zero < 0x8)
10994                         significant_bits--;
10995                     if (high_non_zero < 0x4)
10996                         significant_bits--;
10997                     if (high_non_zero < 0x2)
10998                         significant_bits--;
10999                 }
11000
11001                 if (*h == '.') {
11002 #ifdef HEXFP_NV
11003                     NV nv_mult = 1.0;
11004 #endif
11005                     bool accumulate = TRUE;
11006                     for (h++; (isXDIGIT(*h) || *h == '_'); h++) {
11007                         if (isXDIGIT(*h)) {
11008                             U8 b = XDIGIT_VALUE(*h);
11009                             significant_bits += shift;
11010 #ifdef HEXFP_UQUAD
11011                             if (accumulate) {
11012                                 if (significant_bits < NV_MANT_DIG) {
11013                                     /* We are in the long "run" of xdigits,
11014                                      * accumulate the full four bits. */
11015                                     hexfp_uquad <<= shift;
11016                                     hexfp_uquad |= b;
11017                                     hexfp_frac_bits += shift;
11018                                 } else {
11019                                     /* We are at a hexdigit either at,
11020                                      * or straddling, the edge of mantissa.
11021                                      * We will try grabbing as many as
11022                                      * possible bits. */
11023                                     int tail =
11024                                       significant_bits - NV_MANT_DIG;
11025                                     if (tail <= 0)
11026                                        tail += shift;
11027                                     hexfp_uquad <<= tail;
11028                                     hexfp_uquad |= b >> (shift - tail);
11029                                     hexfp_frac_bits += tail;
11030
11031                                     /* Ignore the trailing zero bits
11032                                      * of the last non-zero xdigit.
11033                                      *
11034                                      * The assumption here is that if
11035                                      * one has input of e.g. the xdigit
11036                                      * eight (0x8), there is only one
11037                                      * bit being input, not the full
11038                                      * four bits.  Conversely, if one
11039                                      * specifies a zero xdigit, the
11040                                      * assumption is that one really
11041                                      * wants all those bits to be zero. */
11042                                     if (b) {
11043                                         if ((b & 0x1) == 0x0) {
11044                                             significant_bits--;
11045                                             if ((b & 0x2) == 0x0) {
11046                                                 significant_bits--;
11047                                                 if ((b & 0x4) == 0x0) {
11048                                                     significant_bits--;
11049                                                 }
11050                                             }
11051                                         }
11052                                     }
11053
11054                                     accumulate = FALSE;
11055                                 }
11056                             } else {
11057                                 /* Keep skipping the xdigits, and
11058                                  * accumulating the significant bits,
11059                                  * but do not shift the uquad
11060                                  * (which would catastrophically drop
11061                                  * high-order bits) or accumulate the
11062                                  * xdigits anymore. */
11063                             }
11064 #else /* HEXFP_NV */
11065                             if (accumulate) {
11066                                 nv_mult /= 16.0;
11067                                 if (nv_mult > 0.0)
11068                                     hexfp_nv += b * nv_mult;
11069                                 else
11070                                     accumulate = FALSE;
11071                             }
11072 #endif
11073                         }
11074                         if (significant_bits >= NV_MANT_DIG)
11075                             accumulate = FALSE;
11076                     }
11077                 }
11078
11079                 if ((total_bits > 0 || significant_bits > 0) &&
11080                     isALPHA_FOLD_EQ(*h, 'p')) {
11081                     bool negexp = FALSE;
11082                     h++;
11083                     if (*h == '+')
11084                         h++;
11085                     else if (*h == '-') {
11086                         negexp = TRUE;
11087                         h++;
11088                     }
11089                     if (isDIGIT(*h)) {
11090                         I32 hexfp_exp = 0;
11091                         while (isDIGIT(*h) || *h == '_') {
11092                             if (isDIGIT(*h)) {
11093                                 hexfp_exp *= 10;
11094                                 hexfp_exp += *h - '0';
11095 #ifdef NV_MIN_EXP
11096                                 if (negexp
11097                                     && -hexfp_exp < NV_MIN_EXP - 1) {
11098                                     /* NOTE: this means that the exponent
11099                                      * underflow warning happens for
11100                                      * the IEEE 754 subnormals (denormals),
11101                                      * because DBL_MIN_EXP etc are the lowest
11102                                      * possible binary (or, rather, DBL_RADIX-base)
11103                                      * exponent for normals, not subnormals.
11104                                      *
11105                                      * This may or may not be a good thing. */
11106                                     Perl_ck_warner(aTHX_ packWARN(WARN_OVERFLOW),
11107                                                    "Hexadecimal float: exponent underflow");
11108                                     break;
11109                                 }
11110 #endif
11111 #ifdef NV_MAX_EXP
11112                                 if (!negexp
11113                                     && hexfp_exp > NV_MAX_EXP - 1) {
11114                                     Perl_ck_warner(aTHX_ packWARN(WARN_OVERFLOW),
11115                                                    "Hexadecimal float: exponent overflow");
11116                                     break;
11117                                 }
11118 #endif
11119                             }
11120                             h++;
11121                         }
11122                         if (negexp)
11123                             hexfp_exp = -hexfp_exp;
11124 #ifdef HEXFP_UQUAD
11125                         hexfp_exp -= hexfp_frac_bits;
11126 #endif
11127                         hexfp_mult = Perl_pow(2.0, hexfp_exp);
11128                         hexfp = TRUE;
11129                         goto decimal;
11130                     }
11131                 }
11132             }
11133
11134             if (overflowed) {
11135                 if (n > 4294967295.0)
11136                     Perl_ck_warner(aTHX_ packWARN(WARN_PORTABLE),
11137                                    "%s number > %s non-portable",
11138                                    Base, max);
11139                 sv = newSVnv(n);
11140             }
11141             else {
11142 #if UVSIZE > 4
11143                 if (u > 0xffffffff)
11144                     Perl_ck_warner(aTHX_ packWARN(WARN_PORTABLE),
11145                                    "%s number > %s non-portable",
11146                                    Base, max);
11147 #endif
11148                 sv = newSVuv(u);
11149             }
11150             if (just_zero && (PL_hints & HINT_NEW_INTEGER))
11151                 sv = new_constant(start, s - start, "integer",
11152                                   sv, NULL, NULL, 0);
11153             else if (PL_hints & HINT_NEW_BINARY)
11154                 sv = new_constant(start, s - start, "binary", sv, NULL, NULL, 0);
11155         }
11156         break;
11157
11158     /*
11159       handle decimal numbers.
11160       we're also sent here when we read a 0 as the first digit
11161     */
11162     case '1': case '2': case '3': case '4': case '5':
11163     case '6': case '7': case '8': case '9': case '.':
11164       decimal:
11165         d = PL_tokenbuf;
11166         e = PL_tokenbuf + sizeof PL_tokenbuf - 6; /* room for various punctuation */
11167         floatit = FALSE;
11168         if (hexfp) {
11169             floatit = TRUE;
11170             *d++ = '0';
11171             *d++ = 'x';
11172             s = start + 2;
11173         }
11174
11175         /* read next group of digits and _ and copy into d */
11176         while (isDIGIT(*s)
11177                || *s == '_'
11178                || UNLIKELY(hexfp && isXDIGIT(*s)))
11179         {
11180             /* skip underscores, checking for misplaced ones
11181                if -w is on
11182             */
11183             if (*s == '_') {
11184                 if (lastub && s == lastub + 1)
11185                     WARN_ABOUT_UNDERSCORE();
11186                 lastub = s++;
11187             }
11188             else {
11189                 /* check for end of fixed-length buffer */
11190                 if (d >= e)
11191                     Perl_croak(aTHX_ "%s", number_too_long);
11192                 /* if we're ok, copy the character */
11193                 *d++ = *s++;
11194             }
11195         }
11196
11197         /* final misplaced underbar check */
11198         if (lastub && s == lastub + 1)
11199             WARN_ABOUT_UNDERSCORE();
11200
11201         /* read a decimal portion if there is one.  avoid
11202            3..5 being interpreted as the number 3. followed
11203            by .5
11204         */
11205         if (*s == '.' && s[1] != '.') {
11206             floatit = TRUE;
11207             *d++ = *s++;
11208
11209             if (*s == '_') {
11210                 WARN_ABOUT_UNDERSCORE();
11211                 lastub = s;
11212             }
11213
11214             /* copy, ignoring underbars, until we run out of digits.
11215             */
11216             for (; isDIGIT(*s)
11217                    || *s == '_'
11218                    || UNLIKELY(hexfp && isXDIGIT(*s));
11219                  s++)
11220             {
11221                 /* fixed length buffer check */
11222                 if (d >= e)
11223                     Perl_croak(aTHX_ "%s", number_too_long);
11224                 if (*s == '_') {
11225                    if (lastub && s == lastub + 1)
11226                         WARN_ABOUT_UNDERSCORE();
11227                    lastub = s;
11228                 }
11229                 else
11230                     *d++ = *s;
11231             }
11232             /* fractional part ending in underbar? */
11233             if (s[-1] == '_')
11234                 WARN_ABOUT_UNDERSCORE();
11235             if (*s == '.' && isDIGIT(s[1])) {
11236                 /* oops, it's really a v-string, but without the "v" */
11237                 s = start;
11238                 goto vstring;
11239             }
11240         }
11241
11242         /* read exponent part, if present */
11243         if ((isALPHA_FOLD_EQ(*s, 'e')
11244               || UNLIKELY(hexfp && isALPHA_FOLD_EQ(*s, 'p')))
11245             && strchr("+-0123456789_", s[1]))
11246         {
11247             int exp_digits = 0;
11248             const char *save_s = s;
11249             char * save_d = d;
11250
11251             /* regardless of whether user said 3E5 or 3e5, use lower 'e',
11252                ditto for p (hexfloats) */
11253             if ((isALPHA_FOLD_EQ(*s, 'e'))) {
11254                 /* At least some Mach atof()s don't grok 'E' */
11255                 *d++ = 'e';
11256             }
11257             else if (UNLIKELY(hexfp && (isALPHA_FOLD_EQ(*s, 'p')))) {
11258                 *d++ = 'p';
11259             }
11260
11261             s++;
11262
11263
11264             /* stray preinitial _ */
11265             if (*s == '_') {
11266                 WARN_ABOUT_UNDERSCORE();
11267                 lastub = s++;
11268             }
11269
11270             /* allow positive or negative exponent */
11271             if (*s == '+' || *s == '-')
11272                 *d++ = *s++;
11273
11274             /* stray initial _ */
11275             if (*s == '_') {
11276                 WARN_ABOUT_UNDERSCORE();
11277                 lastub = s++;
11278             }
11279
11280             /* read digits of exponent */
11281             while (isDIGIT(*s) || *s == '_') {
11282                 if (isDIGIT(*s)) {
11283                     ++exp_digits;
11284                     if (d >= e)
11285                         Perl_croak(aTHX_ "%s", number_too_long);
11286                     *d++ = *s++;
11287                 }
11288                 else {
11289                    if (((lastub && s == lastub + 1)
11290                         || (!isDIGIT(s[1]) && s[1] != '_')))
11291                         WARN_ABOUT_UNDERSCORE();
11292                    lastub = s++;
11293                 }
11294             }
11295
11296             if (!exp_digits) {
11297                 /* no exponent digits, the [eEpP] could be for something else,
11298                  * though in practice we don't get here for p since that's preparsed
11299                  * earlier, and results in only the 0xX being consumed, so behave similarly
11300                  * for decimal floats and consume only the D.DD, leaving the [eE] to the
11301                  * next token.
11302                  */
11303                 s = save_s;
11304                 d = save_d;
11305             }
11306             else {
11307                 floatit = TRUE;
11308             }
11309         }
11310
11311
11312         /*
11313            We try to do an integer conversion first if no characters
11314            indicating "float" have been found.
11315          */
11316
11317         if (!floatit) {
11318             UV uv;
11319             const int flags = grok_number (PL_tokenbuf, d - PL_tokenbuf, &uv);
11320
11321             if (flags == IS_NUMBER_IN_UV) {
11322               if (uv <= IV_MAX)
11323                 sv = newSViv(uv); /* Prefer IVs over UVs. */
11324               else
11325                 sv = newSVuv(uv);
11326             } else if (flags == (IS_NUMBER_IN_UV | IS_NUMBER_NEG)) {
11327               if (uv <= (UV) IV_MIN)
11328                 sv = newSViv(-(IV)uv);
11329               else
11330                 floatit = TRUE;
11331             } else
11332               floatit = TRUE;
11333         }
11334         if (floatit) {
11335             STORE_LC_NUMERIC_UNDERLYING_SET_STANDARD();
11336             /* terminate the string */
11337             *d = '\0';
11338             if (UNLIKELY(hexfp)) {
11339 #  ifdef NV_MANT_DIG
11340                 if (significant_bits > NV_MANT_DIG)
11341                     Perl_ck_warner(aTHX_ packWARN(WARN_OVERFLOW),
11342                                    "Hexadecimal float: mantissa overflow");
11343 #  endif
11344 #ifdef HEXFP_UQUAD
11345                 nv = hexfp_uquad * hexfp_mult;
11346 #else /* HEXFP_NV */
11347                 nv = hexfp_nv * hexfp_mult;
11348 #endif
11349             } else {
11350                 nv = Atof(PL_tokenbuf);
11351             }
11352             RESTORE_LC_NUMERIC_UNDERLYING();
11353             sv = newSVnv(nv);
11354         }
11355
11356         if ( floatit
11357              ? (PL_hints & HINT_NEW_FLOAT) : (PL_hints & HINT_NEW_INTEGER) ) {
11358             const char *const key = floatit ? "float" : "integer";
11359             const STRLEN keylen = floatit ? 5 : 7;
11360             sv = S_new_constant(aTHX_ PL_tokenbuf, d - PL_tokenbuf,
11361                                 key, keylen, sv, NULL, NULL, 0);
11362         }
11363         break;
11364
11365     /* if it starts with a v, it could be a v-string */
11366     case 'v':
11367     vstring:
11368                 sv = newSV(5); /* preallocate storage space */
11369                 ENTER_with_name("scan_vstring");
11370                 SAVEFREESV(sv);
11371                 s = scan_vstring(s, PL_bufend, sv);
11372                 SvREFCNT_inc_simple_void_NN(sv);
11373                 LEAVE_with_name("scan_vstring");
11374         break;
11375     }
11376
11377     /* make the op for the constant and return */
11378
11379     if (sv)
11380         lvalp->opval = newSVOP(OP_CONST, 0, sv);
11381     else
11382         lvalp->opval = NULL;
11383
11384     return (char *)s;
11385 }
11386
11387 STATIC char *
11388 S_scan_formline(pTHX_ char *s)
11389 {
11390     SV * const stuff = newSVpvs("");
11391     bool needargs = FALSE;
11392     bool eofmt = FALSE;
11393
11394     PERL_ARGS_ASSERT_SCAN_FORMLINE;
11395
11396     while (!needargs) {
11397         char *eol;
11398         if (*s == '.') {
11399             char *t = s+1;
11400 #ifdef PERL_STRICT_CR
11401             while (SPACE_OR_TAB(*t))
11402                 t++;
11403 #else
11404             while (SPACE_OR_TAB(*t) || *t == '\r')
11405                 t++;
11406 #endif
11407             if (*t == '\n' || t == PL_bufend) {
11408                 eofmt = TRUE;
11409                 break;
11410             }
11411         }
11412         eol = (char *) memchr(s,'\n',PL_bufend-s);
11413         if (!eol++)
11414                 eol = PL_bufend;
11415         if (*s != '#') {
11416             char *t;
11417             for (t = s; t < eol; t++) {
11418                 if (*t == '~' && t[1] == '~' && SvCUR(stuff)) {
11419                     needargs = FALSE;
11420                     goto enough;        /* ~~ must be first line in formline */
11421                 }
11422                 if (*t == '@' || *t == '^')
11423                     needargs = TRUE;
11424             }
11425             if (eol > s) {
11426                 sv_catpvn(stuff, s, eol-s);
11427 #ifndef PERL_STRICT_CR
11428                 if (eol-s > 1 && eol[-2] == '\r' && eol[-1] == '\n') {
11429                     char *end = SvPVX(stuff) + SvCUR(stuff);
11430                     end[-2] = '\n';
11431                     end[-1] = '\0';
11432                     SvCUR_set(stuff, SvCUR(stuff) - 1);
11433                 }
11434 #endif
11435             }
11436             else
11437               break;
11438         }
11439         s = (char*)eol;
11440         if ((PL_rsfp || PL_parser->filtered)
11441          && PL_parser->form_lex_state == LEX_NORMAL) {
11442             bool got_some;
11443             PL_bufptr = PL_bufend;
11444             COPLINE_INC_WITH_HERELINES;
11445             got_some = lex_next_chunk(0);
11446             CopLINE_dec(PL_curcop);
11447             s = PL_bufptr;
11448             if (!got_some)
11449                 break;
11450         }
11451         incline(s);
11452     }
11453   enough:
11454     if (!SvCUR(stuff) || needargs)
11455         PL_lex_state = PL_parser->form_lex_state;
11456     if (SvCUR(stuff)) {
11457         PL_expect = XSTATE;
11458         if (needargs) {
11459             const char *s2 = s;
11460             while (isSPACE(*s2) && *s2 != '\n')
11461                 s2++;
11462             if (*s2 == '{') {
11463                 PL_expect = XTERMBLOCK;
11464                 NEXTVAL_NEXTTOKE.ival = 0;
11465                 force_next(DO);
11466             }
11467             NEXTVAL_NEXTTOKE.ival = 0;
11468             force_next(FORMLBRACK);
11469         }
11470         if (!IN_BYTES) {
11471             if (UTF && is_utf8_string((U8*)SvPVX_const(stuff), SvCUR(stuff)))
11472                 SvUTF8_on(stuff);
11473         }
11474         NEXTVAL_NEXTTOKE.opval = newSVOP(OP_CONST, 0, stuff);
11475         force_next(THING);
11476     }
11477     else {
11478         SvREFCNT_dec(stuff);
11479         if (eofmt)
11480             PL_lex_formbrack = 0;
11481     }
11482     return s;
11483 }
11484
11485 I32
11486 Perl_start_subparse(pTHX_ I32 is_format, U32 flags)
11487 {
11488     const I32 oldsavestack_ix = PL_savestack_ix;
11489     CV* const outsidecv = PL_compcv;
11490
11491     SAVEI32(PL_subline);
11492     save_item(PL_subname);
11493     SAVESPTR(PL_compcv);
11494
11495     PL_compcv = MUTABLE_CV(newSV_type(is_format ? SVt_PVFM : SVt_PVCV));
11496     CvFLAGS(PL_compcv) |= flags;
11497
11498     PL_subline = CopLINE(PL_curcop);
11499     CvPADLIST(PL_compcv) = pad_new(padnew_SAVE|padnew_SAVESUB);
11500     CvOUTSIDE(PL_compcv) = MUTABLE_CV(SvREFCNT_inc_simple(outsidecv));
11501     CvOUTSIDE_SEQ(PL_compcv) = PL_cop_seqmax;
11502     if (outsidecv && CvPADLIST(outsidecv))
11503         CvPADLIST(PL_compcv)->xpadl_outid = CvPADLIST(outsidecv)->xpadl_id;
11504
11505     return oldsavestack_ix;
11506 }
11507
11508 static int
11509 S_yywarn(pTHX_ const char *const s, U32 flags)
11510 {
11511     PERL_ARGS_ASSERT_YYWARN;
11512
11513     PL_in_eval |= EVAL_WARNONLY;
11514     yyerror_pv(s, flags);
11515     return 0;
11516 }
11517
11518 void
11519 Perl_abort_execution(pTHX_ const char * const msg, const char * const name)
11520 {
11521     PERL_ARGS_ASSERT_ABORT_EXECUTION;
11522
11523     if (PL_minus_c)
11524         Perl_croak(aTHX_ "%s%s had compilation errors.\n", msg, name);
11525     else {
11526         Perl_croak(aTHX_
11527                 "%sExecution of %s aborted due to compilation errors.\n", msg, name);
11528     }
11529     NOT_REACHED; /* NOTREACHED */
11530 }
11531
11532 void
11533 Perl_yyquit(pTHX)
11534 {
11535     /* Called, after at least one error has been found, to abort the parse now,
11536      * instead of trying to forge ahead */
11537
11538     yyerror_pvn(NULL, 0, 0);
11539 }
11540
11541 int
11542 Perl_yyerror(pTHX_ const char *const s)
11543 {
11544     PERL_ARGS_ASSERT_YYERROR;
11545     return yyerror_pvn(s, strlen(s), 0);
11546 }
11547
11548 int
11549 Perl_yyerror_pv(pTHX_ const char *const s, U32 flags)
11550 {
11551     PERL_ARGS_ASSERT_YYERROR_PV;
11552     return yyerror_pvn(s, strlen(s), flags);
11553 }
11554
11555 int
11556 Perl_yyerror_pvn(pTHX_ const char *const s, STRLEN len, U32 flags)
11557 {
11558     const char *context = NULL;
11559     int contlen = -1;
11560     SV *msg;
11561     SV * const where_sv = newSVpvs_flags("", SVs_TEMP);
11562     int yychar  = PL_parser->yychar;
11563
11564     /* Output error message 's' with length 'len'.  'flags' are SV flags that
11565      * apply.  If the number of errors found is large enough, it abandons
11566      * parsing.  If 's' is NULL, there is no message, and it abandons
11567      * processing unconditionally */
11568
11569     if (s != NULL) {
11570         if (!yychar || (yychar == ';' && !PL_rsfp))
11571             sv_catpvs(where_sv, "at EOF");
11572         else if (   PL_oldoldbufptr
11573                  && PL_bufptr > PL_oldoldbufptr
11574                  && PL_bufptr - PL_oldoldbufptr < 200
11575                  && PL_oldoldbufptr != PL_oldbufptr
11576                  && PL_oldbufptr != PL_bufptr)
11577         {
11578             /*
11579                     Only for NetWare:
11580                     The code below is removed for NetWare because it
11581                     abends/crashes on NetWare when the script has error such as
11582                     not having the closing quotes like:
11583                         if ($var eq "value)
11584                     Checking of white spaces is anyway done in NetWare code.
11585             */
11586 #ifndef NETWARE
11587             while (isSPACE(*PL_oldoldbufptr))
11588                 PL_oldoldbufptr++;
11589 #endif
11590             context = PL_oldoldbufptr;
11591             contlen = PL_bufptr - PL_oldoldbufptr;
11592         }
11593         else if (  PL_oldbufptr
11594                 && PL_bufptr > PL_oldbufptr
11595                 && PL_bufptr - PL_oldbufptr < 200
11596                 && PL_oldbufptr != PL_bufptr) {
11597             /*
11598                     Only for NetWare:
11599                     The code below is removed for NetWare because it
11600                     abends/crashes on NetWare when the script has error such as
11601                     not having the closing quotes like:
11602                         if ($var eq "value)
11603                     Checking of white spaces is anyway done in NetWare code.
11604             */
11605 #ifndef NETWARE
11606             while (isSPACE(*PL_oldbufptr))
11607                 PL_oldbufptr++;
11608 #endif
11609             context = PL_oldbufptr;
11610             contlen = PL_bufptr - PL_oldbufptr;
11611         }
11612         else if (yychar > 255)
11613             sv_catpvs(where_sv, "next token ???");
11614         else if (yychar == YYEMPTY) {
11615             if (PL_lex_state == LEX_NORMAL)
11616                 sv_catpvs(where_sv, "at end of line");
11617             else if (PL_lex_inpat)
11618                 sv_catpvs(where_sv, "within pattern");
11619             else
11620                 sv_catpvs(where_sv, "within string");
11621         }
11622         else {
11623             sv_catpvs(where_sv, "next char ");
11624             if (yychar < 32)
11625                 Perl_sv_catpvf(aTHX_ where_sv, "^%c", toCTRL(yychar));
11626             else if (isPRINT_LC(yychar)) {
11627                 const char string = yychar;
11628                 sv_catpvn(where_sv, &string, 1);
11629             }
11630             else
11631                 Perl_sv_catpvf(aTHX_ where_sv, "\\%03o", yychar & 255);
11632         }
11633         msg = newSVpvn_flags(s, len, (flags & SVf_UTF8) | SVs_TEMP);
11634         Perl_sv_catpvf(aTHX_ msg, " at %s line %" IVdf ", ",
11635             OutCopFILE(PL_curcop),
11636             (IV)(PL_parser->preambling == NOLINE
11637                    ? CopLINE(PL_curcop)
11638                    : PL_parser->preambling));
11639         if (context)
11640             Perl_sv_catpvf(aTHX_ msg, "near \"%" UTF8f "\"\n",
11641                                  UTF8fARG(UTF, contlen, context));
11642         else
11643             Perl_sv_catpvf(aTHX_ msg, "%" SVf "\n", SVfARG(where_sv));
11644         if (   PL_multi_start < PL_multi_end
11645             && (U32)(CopLINE(PL_curcop) - PL_multi_end) <= 1)
11646         {
11647             Perl_sv_catpvf(aTHX_ msg,
11648             "  (Might be a runaway multi-line %c%c string starting on"
11649             " line %" IVdf ")\n",
11650                     (int)PL_multi_open,(int)PL_multi_close,(IV)PL_multi_start);
11651             PL_multi_end = 0;
11652         }
11653         if (PL_in_eval & EVAL_WARNONLY) {
11654             PL_in_eval &= ~EVAL_WARNONLY;
11655             Perl_ck_warner_d(aTHX_ packWARN(WARN_SYNTAX), "%" SVf, SVfARG(msg));
11656         }
11657         else {
11658             qerror(msg);
11659         }
11660     }
11661     if (s == NULL || PL_error_count >= 10) {
11662         const char * msg = "";
11663         const char * const name = OutCopFILE(PL_curcop);
11664
11665         if (PL_in_eval) {
11666             SV * errsv = ERRSV;
11667             if (SvCUR(errsv)) {
11668                 msg = Perl_form(aTHX_ "%" SVf, SVfARG(errsv));
11669             }
11670         }
11671
11672         if (s == NULL) {
11673             abort_execution(msg, name);
11674         }
11675         else {
11676             Perl_croak(aTHX_ "%s%s has too many errors.\n", msg, name);
11677         }
11678     }
11679     PL_in_my = 0;
11680     PL_in_my_stash = NULL;
11681     return 0;
11682 }
11683
11684 STATIC char*
11685 S_swallow_bom(pTHX_ U8 *s)
11686 {
11687     const STRLEN slen = SvCUR(PL_linestr);
11688
11689     PERL_ARGS_ASSERT_SWALLOW_BOM;
11690
11691     switch (s[0]) {
11692     case 0xFF:
11693         if (s[1] == 0xFE) {
11694             /* UTF-16 little-endian? (or UTF-32LE?) */
11695             if (s[2] == 0 && s[3] == 0)  /* UTF-32 little-endian */
11696                 /* diag_listed_as: Unsupported script encoding %s */
11697                 Perl_croak(aTHX_ "Unsupported script encoding UTF-32LE");
11698 #ifndef PERL_NO_UTF16_FILTER
11699 #ifdef DEBUGGING
11700             if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-16LE script encoding (BOM)\n");
11701 #endif
11702             s += 2;
11703             if (PL_bufend > (char*)s) {
11704                 s = add_utf16_textfilter(s, TRUE);
11705             }
11706 #else
11707             /* diag_listed_as: Unsupported script encoding %s */
11708             Perl_croak(aTHX_ "Unsupported script encoding UTF-16LE");
11709 #endif
11710         }
11711         break;
11712     case 0xFE:
11713         if (s[1] == 0xFF) {   /* UTF-16 big-endian? */
11714 #ifndef PERL_NO_UTF16_FILTER
11715 #ifdef DEBUGGING
11716             if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-16BE script encoding (BOM)\n");
11717 #endif
11718             s += 2;
11719             if (PL_bufend > (char *)s) {
11720                 s = add_utf16_textfilter(s, FALSE);
11721             }
11722 #else
11723             /* diag_listed_as: Unsupported script encoding %s */
11724             Perl_croak(aTHX_ "Unsupported script encoding UTF-16BE");
11725 #endif
11726         }
11727         break;
11728     case BOM_UTF8_FIRST_BYTE: {
11729         const STRLEN len = sizeof(BOM_UTF8_TAIL) - 1; /* Exclude trailing NUL */
11730         if (slen > len && memEQ(s+1, BOM_UTF8_TAIL, len)) {
11731 #ifdef DEBUGGING
11732             if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-8 script encoding (BOM)\n");
11733 #endif
11734             s += len + 1;                      /* UTF-8 */
11735         }
11736         break;
11737     }
11738     case 0:
11739         if (slen > 3) {
11740              if (s[1] == 0) {
11741                   if (s[2] == 0xFE && s[3] == 0xFF) {
11742                        /* UTF-32 big-endian */
11743                        /* diag_listed_as: Unsupported script encoding %s */
11744                        Perl_croak(aTHX_ "Unsupported script encoding UTF-32BE");
11745                   }
11746              }
11747              else if (s[2] == 0 && s[3] != 0) {
11748                   /* Leading bytes
11749                    * 00 xx 00 xx
11750                    * are a good indicator of UTF-16BE. */
11751 #ifndef PERL_NO_UTF16_FILTER
11752 #ifdef DEBUGGING
11753                   if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-16BE script encoding (no BOM)\n");
11754 #endif
11755                   s = add_utf16_textfilter(s, FALSE);
11756 #else
11757                   /* diag_listed_as: Unsupported script encoding %s */
11758                   Perl_croak(aTHX_ "Unsupported script encoding UTF-16BE");
11759 #endif
11760              }
11761         }
11762         break;
11763
11764     default:
11765          if (slen > 3 && s[1] == 0 && s[2] != 0 && s[3] == 0) {
11766                   /* Leading bytes
11767                    * xx 00 xx 00
11768                    * are a good indicator of UTF-16LE. */
11769 #ifndef PERL_NO_UTF16_FILTER
11770 #ifdef DEBUGGING
11771               if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-16LE script encoding (no BOM)\n");
11772 #endif
11773               s = add_utf16_textfilter(s, TRUE);
11774 #else
11775               /* diag_listed_as: Unsupported script encoding %s */
11776               Perl_croak(aTHX_ "Unsupported script encoding UTF-16LE");
11777 #endif
11778          }
11779     }
11780     return (char*)s;
11781 }
11782
11783
11784 #ifndef PERL_NO_UTF16_FILTER
11785 static I32
11786 S_utf16_textfilter(pTHX_ int idx, SV *sv, int maxlen)
11787 {
11788     SV *const filter = FILTER_DATA(idx);
11789     /* We re-use this each time round, throwing the contents away before we
11790        return.  */
11791     SV *const utf16_buffer = MUTABLE_SV(IoTOP_GV(filter));
11792     SV *const utf8_buffer = filter;
11793     IV status = IoPAGE(filter);
11794     const bool reverse = cBOOL(IoLINES(filter));
11795     I32 retval;
11796
11797     PERL_ARGS_ASSERT_UTF16_TEXTFILTER;
11798
11799     /* As we're automatically added, at the lowest level, and hence only called
11800        from this file, we can be sure that we're not called in block mode. Hence
11801        don't bother writing code to deal with block mode.  */
11802     if (maxlen) {
11803         Perl_croak(aTHX_ "panic: utf16_textfilter called in block mode (for %d characters)", maxlen);
11804     }
11805     if (status < 0) {
11806         Perl_croak(aTHX_ "panic: utf16_textfilter called after error (status=%" IVdf ")", status);
11807     }
11808     DEBUG_P(PerlIO_printf(Perl_debug_log,
11809                           "utf16_textfilter(%p,%ce): idx=%d maxlen=%d status=%" IVdf " utf16=%" UVuf " utf8=%" UVuf "\n",
11810                           FPTR2DPTR(void *, S_utf16_textfilter),
11811                           reverse ? 'l' : 'b', idx, maxlen, status,
11812                           (UV)SvCUR(utf16_buffer), (UV)SvCUR(utf8_buffer)));
11813
11814     while (1) {
11815         STRLEN chars;
11816         STRLEN have;
11817         I32 newlen;
11818         U8 *end;
11819         /* First, look in our buffer of existing UTF-8 data:  */
11820         char *nl = (char *)memchr(SvPVX(utf8_buffer), '\n', SvCUR(utf8_buffer));
11821
11822         if (nl) {
11823             ++nl;
11824         } else if (status == 0) {
11825             /* EOF */
11826             IoPAGE(filter) = 0;
11827             nl = SvEND(utf8_buffer);
11828         }
11829         if (nl) {
11830             STRLEN got = nl - SvPVX(utf8_buffer);
11831             /* Did we have anything to append?  */
11832             retval = got != 0;
11833             sv_catpvn(sv, SvPVX(utf8_buffer), got);
11834             /* Everything else in this code works just fine if SVp_POK isn't
11835                set.  This, however, needs it, and we need it to work, else
11836                we loop infinitely because the buffer is never consumed.  */
11837             sv_chop(utf8_buffer, nl);
11838             break;
11839         }
11840
11841         /* OK, not a complete line there, so need to read some more UTF-16.
11842            Read an extra octect if the buffer currently has an odd number. */
11843         while (1) {
11844             if (status <= 0)
11845                 break;
11846             if (SvCUR(utf16_buffer) >= 2) {
11847                 /* Location of the high octet of the last complete code point.
11848                    Gosh, UTF-16 is a pain. All the benefits of variable length,
11849                    *coupled* with all the benefits of partial reads and
11850                    endianness.  */
11851                 const U8 *const last_hi = (U8*)SvPVX(utf16_buffer)
11852                     + ((SvCUR(utf16_buffer) & ~1) - (reverse ? 1 : 2));
11853
11854                 if (*last_hi < 0xd8 || *last_hi > 0xdb) {
11855                     break;
11856                 }
11857
11858                 /* We have the first half of a surrogate. Read more.  */
11859                 DEBUG_P(PerlIO_printf(Perl_debug_log, "utf16_textfilter partial surrogate detected at %p\n", last_hi));
11860             }
11861
11862             status = FILTER_READ(idx + 1, utf16_buffer,
11863                                  160 + (SvCUR(utf16_buffer) & 1));
11864             DEBUG_P(PerlIO_printf(Perl_debug_log, "utf16_textfilter status=%" IVdf " SvCUR(sv)=%" UVuf "\n", status, (UV)SvCUR(utf16_buffer)));
11865             DEBUG_P({ sv_dump(utf16_buffer); sv_dump(utf8_buffer);});
11866             if (status < 0) {
11867                 /* Error */
11868                 IoPAGE(filter) = status;
11869                 return status;
11870             }
11871         }
11872
11873         chars = SvCUR(utf16_buffer) >> 1;
11874         have = SvCUR(utf8_buffer);
11875         SvGROW(utf8_buffer, have + chars * 3 + 1);
11876
11877         if (reverse) {
11878             end = utf16_to_utf8_reversed((U8*)SvPVX(utf16_buffer),
11879                                          (U8*)SvPVX_const(utf8_buffer) + have,
11880                                          chars * 2, &newlen);
11881         } else {
11882             end = utf16_to_utf8((U8*)SvPVX(utf16_buffer),
11883                                 (U8*)SvPVX_const(utf8_buffer) + have,
11884                                 chars * 2, &newlen);
11885         }
11886         SvCUR_set(utf8_buffer, have + newlen);
11887         *end = '\0';
11888
11889         /* No need to keep this SV "well-formed" with a '\0' after the end, as
11890            it's private to us, and utf16_to_utf8{,reversed} take a
11891            (pointer,length) pair, rather than a NUL-terminated string.  */
11892         if(SvCUR(utf16_buffer) & 1) {
11893             *SvPVX(utf16_buffer) = SvEND(utf16_buffer)[-1];
11894             SvCUR_set(utf16_buffer, 1);
11895         } else {
11896             SvCUR_set(utf16_buffer, 0);
11897         }
11898     }
11899     DEBUG_P(PerlIO_printf(Perl_debug_log,
11900                           "utf16_textfilter: returns, status=%" IVdf " utf16=%" UVuf " utf8=%" UVuf "\n",
11901                           status,
11902                           (UV)SvCUR(utf16_buffer), (UV)SvCUR(utf8_buffer)));
11903     DEBUG_P({ sv_dump(utf8_buffer); sv_dump(sv);});
11904     return retval;
11905 }
11906
11907 static U8 *
11908 S_add_utf16_textfilter(pTHX_ U8 *const s, bool reversed)
11909 {
11910     SV *filter = filter_add(S_utf16_textfilter, NULL);
11911
11912     PERL_ARGS_ASSERT_ADD_UTF16_TEXTFILTER;
11913
11914     IoTOP_GV(filter) = MUTABLE_GV(newSVpvn((char *)s, PL_bufend - (char*)s));
11915     SvPVCLEAR(filter);
11916     IoLINES(filter) = reversed;
11917     IoPAGE(filter) = 1; /* Not EOF */
11918
11919     /* Sadly, we have to return a valid pointer, come what may, so we have to
11920        ignore any error return from this.  */
11921     SvCUR_set(PL_linestr, 0);
11922     if (FILTER_READ(0, PL_linestr, 0)) {
11923         SvUTF8_on(PL_linestr);
11924     } else {
11925         SvUTF8_on(PL_linestr);
11926     }
11927     PL_bufend = SvEND(PL_linestr);
11928     return (U8*)SvPVX(PL_linestr);
11929 }
11930 #endif
11931
11932 /*
11933 Returns a pointer to the next character after the parsed
11934 vstring, as well as updating the passed in sv.
11935
11936 Function must be called like
11937
11938         sv = sv_2mortal(newSV(5));
11939         s = scan_vstring(s,e,sv);
11940
11941 where s and e are the start and end of the string.
11942 The sv should already be large enough to store the vstring
11943 passed in, for performance reasons.
11944
11945 This function may croak if fatal warnings are enabled in the
11946 calling scope, hence the sv_2mortal in the example (to prevent
11947 a leak).  Make sure to do SvREFCNT_inc afterwards if you use
11948 sv_2mortal.
11949
11950 */
11951
11952 char *
11953 Perl_scan_vstring(pTHX_ const char *s, const char *const e, SV *sv)
11954 {
11955     const char *pos = s;
11956     const char *start = s;
11957
11958     PERL_ARGS_ASSERT_SCAN_VSTRING;
11959
11960     if (*pos == 'v') pos++;  /* get past 'v' */
11961     while (pos < e && (isDIGIT(*pos) || *pos == '_'))
11962         pos++;
11963     if ( *pos != '.') {
11964         /* this may not be a v-string if followed by => */
11965         const char *next = pos;
11966         while (next < e && isSPACE(*next))
11967             ++next;
11968         if ((e - next) >= 2 && *next == '=' && next[1] == '>' ) {
11969             /* return string not v-string */
11970             sv_setpvn(sv,(char *)s,pos-s);
11971             return (char *)pos;
11972         }
11973     }
11974
11975     if (!isALPHA(*pos)) {
11976         U8 tmpbuf[UTF8_MAXBYTES+1];
11977
11978         if (*s == 'v')
11979             s++;  /* get past 'v' */
11980
11981         SvPVCLEAR(sv);
11982
11983         for (;;) {
11984             /* this is atoi() that tolerates underscores */
11985             U8 *tmpend;
11986             UV rev = 0;
11987             const char *end = pos;
11988             UV mult = 1;
11989             while (--end >= s) {
11990                 if (*end != '_') {
11991                     const UV orev = rev;
11992                     rev += (*end - '0') * mult;
11993                     mult *= 10;
11994                     if (orev > rev)
11995                         /* diag_listed_as: Integer overflow in %s number */
11996                         Perl_ck_warner_d(aTHX_ packWARN(WARN_OVERFLOW),
11997                                          "Integer overflow in decimal number");
11998                 }
11999             }
12000
12001             /* Append native character for the rev point */
12002             tmpend = uvchr_to_utf8(tmpbuf, rev);
12003             sv_catpvn(sv, (const char*)tmpbuf, tmpend - tmpbuf);
12004             if (!UVCHR_IS_INVARIANT(rev))
12005                  SvUTF8_on(sv);
12006             if (pos + 1 < e && *pos == '.' && isDIGIT(pos[1]))
12007                  s = ++pos;
12008             else {
12009                  s = pos;
12010                  break;
12011             }
12012             while (pos < e && (isDIGIT(*pos) || *pos == '_'))
12013                  pos++;
12014         }
12015         SvPOK_on(sv);
12016         sv_magic(sv,NULL,PERL_MAGIC_vstring,(const char*)start, pos-start);
12017         SvRMAGICAL_on(sv);
12018     }
12019     return (char *)s;
12020 }
12021
12022 int
12023 Perl_keyword_plugin_standard(pTHX_
12024         char *keyword_ptr, STRLEN keyword_len, OP **op_ptr)
12025 {
12026     PERL_ARGS_ASSERT_KEYWORD_PLUGIN_STANDARD;
12027     PERL_UNUSED_CONTEXT;
12028     PERL_UNUSED_ARG(keyword_ptr);
12029     PERL_UNUSED_ARG(keyword_len);
12030     PERL_UNUSED_ARG(op_ptr);
12031     return KEYWORD_PLUGIN_DECLINE;
12032 }
12033
12034 #define parse_recdescent(g,p) S_parse_recdescent(aTHX_ g,p)
12035 static void
12036 S_parse_recdescent(pTHX_ int gramtype, I32 fakeeof)
12037 {
12038     SAVEI32(PL_lex_brackets);
12039     if (PL_lex_brackets > 100)
12040         Renew(PL_lex_brackstack, PL_lex_brackets + 10, char);
12041     PL_lex_brackstack[PL_lex_brackets++] = XFAKEEOF;
12042     SAVEI32(PL_lex_allbrackets);
12043     PL_lex_allbrackets = 0;
12044     SAVEI8(PL_lex_fakeeof);
12045     PL_lex_fakeeof = (U8)fakeeof;
12046     if(yyparse(gramtype) && !PL_parser->error_count)
12047         qerror(Perl_mess(aTHX_ "Parse error"));
12048 }
12049
12050 #define parse_recdescent_for_op(g,p) S_parse_recdescent_for_op(aTHX_ g,p)
12051 static OP *
12052 S_parse_recdescent_for_op(pTHX_ int gramtype, I32 fakeeof)
12053 {
12054     OP *o;
12055     ENTER;
12056     SAVEVPTR(PL_eval_root);
12057     PL_eval_root = NULL;
12058     parse_recdescent(gramtype, fakeeof);
12059     o = PL_eval_root;
12060     LEAVE;
12061     return o;
12062 }
12063
12064 #define parse_expr(p,f) S_parse_expr(aTHX_ p,f)
12065 static OP *
12066 S_parse_expr(pTHX_ I32 fakeeof, U32 flags)
12067 {
12068     OP *exprop;
12069     if (flags & ~PARSE_OPTIONAL)
12070         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_expr");
12071     exprop = parse_recdescent_for_op(GRAMEXPR, fakeeof);
12072     if (!exprop && !(flags & PARSE_OPTIONAL)) {
12073         if (!PL_parser->error_count)
12074             qerror(Perl_mess(aTHX_ "Parse error"));
12075         exprop = newOP(OP_NULL, 0);
12076     }
12077     return exprop;
12078 }
12079
12080 /*
12081 =for apidoc Amx|OP *|parse_arithexpr|U32 flags
12082
12083 Parse a Perl arithmetic expression.  This may contain operators of precedence
12084 down to the bit shift operators.  The expression must be followed (and thus
12085 terminated) either by a comparison or lower-precedence operator or by
12086 something that would normally terminate an expression such as semicolon.
12087 If C<flags> has the C<PARSE_OPTIONAL> bit set, then the expression is optional,
12088 otherwise it is mandatory.  It is up to the caller to ensure that the
12089 dynamic parser state (L</PL_parser> et al) is correctly set to reflect
12090 the source of the code to be parsed and the lexical context for the
12091 expression.
12092
12093 The op tree representing the expression is returned.  If an optional
12094 expression is absent, a null pointer is returned, otherwise the pointer
12095 will be non-null.
12096
12097 If an error occurs in parsing or compilation, in most cases a valid op
12098 tree is returned anyway.  The error is reflected in the parser state,
12099 normally resulting in a single exception at the top level of parsing
12100 which covers all the compilation errors that occurred.  Some compilation
12101 errors, however, will throw an exception immediately.
12102
12103 =cut
12104 */
12105
12106 OP *
12107 Perl_parse_arithexpr(pTHX_ U32 flags)
12108 {
12109     return parse_expr(LEX_FAKEEOF_COMPARE, flags);
12110 }
12111
12112 /*
12113 =for apidoc Amx|OP *|parse_termexpr|U32 flags
12114
12115 Parse a Perl term expression.  This may contain operators of precedence
12116 down to the assignment operators.  The expression must be followed (and thus
12117 terminated) either by a comma or lower-precedence operator or by
12118 something that would normally terminate an expression such as semicolon.
12119 If C<flags> has the C<PARSE_OPTIONAL> bit set, then the expression is optional,
12120 otherwise it is mandatory.  It is up to the caller to ensure that the
12121 dynamic parser state (L</PL_parser> et al) is correctly set to reflect
12122 the source of the code to be parsed and the lexical context for the
12123 expression.
12124
12125 The op tree representing the expression is returned.  If an optional
12126 expression is absent, a null pointer is returned, otherwise the pointer
12127 will be non-null.
12128
12129 If an error occurs in parsing or compilation, in most cases a valid op
12130 tree is returned anyway.  The error is reflected in the parser state,
12131 normally resulting in a single exception at the top level of parsing
12132 which covers all the compilation errors that occurred.  Some compilation
12133 errors, however, will throw an exception immediately.
12134
12135 =cut
12136 */
12137
12138 OP *
12139 Perl_parse_termexpr(pTHX_ U32 flags)
12140 {
12141     return parse_expr(LEX_FAKEEOF_COMMA, flags);
12142 }
12143
12144 /*
12145 =for apidoc Amx|OP *|parse_listexpr|U32 flags
12146
12147 Parse a Perl list expression.  This may contain operators of precedence
12148 down to the comma operator.  The expression must be followed (and thus
12149 terminated) either by a low-precedence logic operator such as C<or> or by
12150 something that would normally terminate an expression such as semicolon.
12151 If C<flags> has the C<PARSE_OPTIONAL> bit set, then the expression is optional,
12152 otherwise it is mandatory.  It is up to the caller to ensure that the
12153 dynamic parser state (L</PL_parser> et al) is correctly set to reflect
12154 the source of the code to be parsed and the lexical context for the
12155 expression.
12156
12157 The op tree representing the expression is returned.  If an optional
12158 expression is absent, a null pointer is returned, otherwise the pointer
12159 will be non-null.
12160
12161 If an error occurs in parsing or compilation, in most cases a valid op
12162 tree is returned anyway.  The error is reflected in the parser state,
12163 normally resulting in a single exception at the top level of parsing
12164 which covers all the compilation errors that occurred.  Some compilation
12165 errors, however, will throw an exception immediately.
12166
12167 =cut
12168 */
12169
12170 OP *
12171 Perl_parse_listexpr(pTHX_ U32 flags)
12172 {
12173     return parse_expr(LEX_FAKEEOF_LOWLOGIC, flags);
12174 }
12175
12176 /*
12177 =for apidoc Amx|OP *|parse_fullexpr|U32 flags
12178
12179 Parse a single complete Perl expression.  This allows the full
12180 expression grammar, including the lowest-precedence operators such
12181 as C<or>.  The expression must be followed (and thus terminated) by a
12182 token that an expression would normally be terminated by: end-of-file,
12183 closing bracketing punctuation, semicolon, or one of the keywords that
12184 signals a postfix expression-statement modifier.  If C<flags> has the
12185 C<PARSE_OPTIONAL> bit set, then the expression is optional, otherwise it is
12186 mandatory.  It is up to the caller to ensure that the dynamic parser
12187 state (L</PL_parser> et al) is correctly set to reflect the source of
12188 the code to be parsed and the lexical context for the expression.
12189
12190 The op tree representing the expression is returned.  If an optional
12191 expression is absent, a null pointer is returned, otherwise the pointer
12192 will be non-null.
12193
12194 If an error occurs in parsing or compilation, in most cases a valid op
12195 tree is returned anyway.  The error is reflected in the parser state,
12196 normally resulting in a single exception at the top level of parsing
12197 which covers all the compilation errors that occurred.  Some compilation
12198 errors, however, will throw an exception immediately.
12199
12200 =cut
12201 */
12202
12203 OP *
12204 Perl_parse_fullexpr(pTHX_ U32 flags)
12205 {
12206     return parse_expr(LEX_FAKEEOF_NONEXPR, flags);
12207 }
12208
12209 /*
12210 =for apidoc Amx|OP *|parse_block|U32 flags
12211
12212 Parse a single complete Perl code block.  This consists of an opening
12213 brace, a sequence of statements, and a closing brace.  The block
12214 constitutes a lexical scope, so C<my> variables and various compile-time
12215 effects can be contained within it.  It is up to the caller to ensure
12216 that the dynamic parser state (L</PL_parser> et al) is correctly set to
12217 reflect the source of the code to be parsed and the lexical context for
12218 the statement.
12219
12220 The op tree representing the code block is returned.  This is always a
12221 real op, never a null pointer.  It will normally be a C<lineseq> list,
12222 including C<nextstate> or equivalent ops.  No ops to construct any kind
12223 of runtime scope are included by virtue of it being a block.
12224
12225 If an error occurs in parsing or compilation, in most cases a valid op
12226 tree (most likely null) is returned anyway.  The error is reflected in
12227 the parser state, normally resulting in a single exception at the top
12228 level of parsing which covers all the compilation errors that occurred.
12229 Some compilation errors, however, will throw an exception immediately.
12230
12231 The C<flags> parameter is reserved for future use, and must always
12232 be zero.
12233
12234 =cut
12235 */
12236
12237 OP *
12238 Perl_parse_block(pTHX_ U32 flags)
12239 {
12240     if (flags)
12241         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_block");
12242     return parse_recdescent_for_op(GRAMBLOCK, LEX_FAKEEOF_NEVER);
12243 }
12244
12245 /*
12246 =for apidoc Amx|OP *|parse_barestmt|U32 flags
12247
12248 Parse a single unadorned Perl statement.  This may be a normal imperative
12249 statement or a declaration that has compile-time effect.  It does not
12250 include any label or other affixture.  It is up to the caller to ensure
12251 that the dynamic parser state (L</PL_parser> et al) is correctly set to
12252 reflect the source of the code to be parsed and the lexical context for
12253 the statement.
12254
12255 The op tree representing the statement is returned.  This may be a
12256 null pointer if the statement is null, for example if it was actually
12257 a subroutine definition (which has compile-time side effects).  If not
12258 null, it will be ops directly implementing the statement, suitable to
12259 pass to L</newSTATEOP>.  It will not normally include a C<nextstate> or
12260 equivalent op (except for those embedded in a scope contained entirely
12261 within the statement).
12262
12263 If an error occurs in parsing or compilation, in most cases a valid op
12264 tree (most likely null) is returned anyway.  The error is reflected in
12265 the parser state, normally resulting in a single exception at the top
12266 level of parsing which covers all the compilation errors that occurred.
12267 Some compilation errors, however, will throw an exception immediately.
12268
12269 The C<flags> parameter is reserved for future use, and must always
12270 be zero.
12271
12272 =cut
12273 */
12274
12275 OP *
12276 Perl_parse_barestmt(pTHX_ U32 flags)
12277 {
12278     if (flags)
12279         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_barestmt");
12280     return parse_recdescent_for_op(GRAMBARESTMT, LEX_FAKEEOF_NEVER);
12281 }
12282
12283 /*
12284 =for apidoc Amx|SV *|parse_label|U32 flags
12285
12286 Parse a single label, possibly optional, of the type that may prefix a
12287 Perl statement.  It is up to the caller to ensure that the dynamic parser
12288 state (L</PL_parser> et al) is correctly set to reflect the source of
12289 the code to be parsed.  If C<flags> has the C<PARSE_OPTIONAL> bit set, then the
12290 label is optional, otherwise it is mandatory.
12291
12292 The name of the label is returned in the form of a fresh scalar.  If an
12293 optional label is absent, a null pointer is returned.
12294
12295 If an error occurs in parsing, which can only occur if the label is
12296 mandatory, a valid label is returned anyway.  The error is reflected in
12297 the parser state, normally resulting in a single exception at the top
12298 level of parsing which covers all the compilation errors that occurred.
12299
12300 =cut
12301 */
12302
12303 SV *
12304 Perl_parse_label(pTHX_ U32 flags)
12305 {
12306     if (flags & ~PARSE_OPTIONAL)
12307         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_label");
12308     if (PL_nexttoke) {
12309         PL_parser->yychar = yylex();
12310         if (PL_parser->yychar == LABEL) {
12311             char * const lpv = pl_yylval.pval;
12312             STRLEN llen = strlen(lpv);
12313             PL_parser->yychar = YYEMPTY;
12314             return newSVpvn_flags(lpv, llen, lpv[llen+1] ? SVf_UTF8 : 0);
12315         } else {
12316             yyunlex();
12317             goto no_label;
12318         }
12319     } else {
12320         char *s, *t;
12321         STRLEN wlen, bufptr_pos;
12322         lex_read_space(0);
12323         t = s = PL_bufptr;
12324         if (!isIDFIRST_lazy_if_safe(s, PL_bufend, UTF))
12325             goto no_label;
12326         t = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE, &wlen);
12327         if (word_takes_any_delimiter(s, wlen))
12328             goto no_label;
12329         bufptr_pos = s - SvPVX(PL_linestr);
12330         PL_bufptr = t;
12331         lex_read_space(LEX_KEEP_PREVIOUS);
12332         t = PL_bufptr;
12333         s = SvPVX(PL_linestr) + bufptr_pos;
12334         if (t[0] == ':' && t[1] != ':') {
12335             PL_oldoldbufptr = PL_oldbufptr;
12336             PL_oldbufptr = s;
12337             PL_bufptr = t+1;
12338             return newSVpvn_flags(s, wlen, UTF ? SVf_UTF8 : 0);
12339         } else {
12340             PL_bufptr = s;
12341             no_label:
12342             if (flags & PARSE_OPTIONAL) {
12343                 return NULL;
12344             } else {
12345                 qerror(Perl_mess(aTHX_ "Parse error"));
12346                 return newSVpvs("x");
12347             }
12348         }
12349     }
12350 }
12351
12352 /*
12353 =for apidoc Amx|OP *|parse_fullstmt|U32 flags
12354
12355 Parse a single complete Perl statement.  This may be a normal imperative
12356 statement or a declaration that has compile-time effect, and may include
12357 optional labels.  It is up to the caller to ensure that the dynamic
12358 parser state (L</PL_parser> et al) is correctly set to reflect the source
12359 of the code to be parsed and the lexical context for the statement.
12360
12361 The op tree representing the statement is returned.  This may be a
12362 null pointer if the statement is null, for example if it was actually
12363 a subroutine definition (which has compile-time side effects).  If not
12364 null, it will be the result of a L</newSTATEOP> call, normally including
12365 a C<nextstate> or equivalent op.
12366
12367 If an error occurs in parsing or compilation, in most cases a valid op
12368 tree (most likely null) is returned anyway.  The error is reflected in
12369 the parser state, normally resulting in a single exception at the top
12370 level of parsing which covers all the compilation errors that occurred.
12371 Some compilation errors, however, will throw an exception immediately.
12372
12373 The C<flags> parameter is reserved for future use, and must always
12374 be zero.
12375
12376 =cut
12377 */
12378
12379 OP *
12380 Perl_parse_fullstmt(pTHX_ U32 flags)
12381 {
12382     if (flags)
12383         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_fullstmt");
12384     return parse_recdescent_for_op(GRAMFULLSTMT, LEX_FAKEEOF_NEVER);
12385 }
12386
12387 /*
12388 =for apidoc Amx|OP *|parse_stmtseq|U32 flags
12389
12390 Parse a sequence of zero or more Perl statements.  These may be normal
12391 imperative statements, including optional labels, or declarations
12392 that have compile-time effect, or any mixture thereof.  The statement
12393 sequence ends when a closing brace or end-of-file is encountered in a
12394 place where a new statement could have validly started.  It is up to
12395 the caller to ensure that the dynamic parser state (L</PL_parser> et al)
12396 is correctly set to reflect the source of the code to be parsed and the
12397 lexical context for the statements.
12398
12399 The op tree representing the statement sequence is returned.  This may
12400 be a null pointer if the statements were all null, for example if there
12401 were no statements or if there were only subroutine definitions (which
12402 have compile-time side effects).  If not null, it will be a C<lineseq>
12403 list, normally including C<nextstate> or equivalent ops.
12404
12405 If an error occurs in parsing or compilation, in most cases a valid op
12406 tree is returned anyway.  The error is reflected in the parser state,
12407 normally resulting in a single exception at the top level of parsing
12408 which covers all the compilation errors that occurred.  Some compilation
12409 errors, however, will throw an exception immediately.
12410
12411 The C<flags> parameter is reserved for future use, and must always
12412 be zero.
12413
12414 =cut
12415 */
12416
12417 OP *
12418 Perl_parse_stmtseq(pTHX_ U32 flags)
12419 {
12420     OP *stmtseqop;
12421     I32 c;
12422     if (flags)
12423         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_stmtseq");
12424     stmtseqop = parse_recdescent_for_op(GRAMSTMTSEQ, LEX_FAKEEOF_CLOSING);
12425     c = lex_peek_unichar(0);
12426     if (c != -1 && c != /*{*/'}')
12427         qerror(Perl_mess(aTHX_ "Parse error"));
12428     return stmtseqop;
12429 }
12430
12431 /*
12432  * ex: set ts=8 sts=4 sw=4 et:
12433  */