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