This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
better comment require() source.
[perl5.git] / toke.c
1 /*    toke.c
2  *
3  *    Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4  *    2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
5  *
6  *    You may distribute under the terms of either the GNU General Public
7  *    License or the Artistic License, as specified in the README file.
8  *
9  */
10
11 /*
12  *  'It all comes from here, the stench and the peril.'    --Frodo
13  *
14  *     [p.719 of _The Lord of the Rings_, IV/ix: "Shelob's Lair"]
15  */
16
17 /*
18  * This file is the lexer for Perl.  It's closely linked to the
19  * parser, perly.y.
20  *
21  * The main routine is yylex(), which returns the next token.
22  */
23
24 /*
25 =head1 Lexer interface
26 This is the lower layer of the Perl parser, managing characters and tokens.
27
28 =for apidoc AmU|yy_parser *|PL_parser
29
30 Pointer to a structure encapsulating the state of the parsing operation
31 currently in progress.  The pointer can be locally changed to perform
32 a nested parse without interfering with the state of an outer parse.
33 Individual members of C<PL_parser> have their own documentation.
34
35 =cut
36 */
37
38 #include "EXTERN.h"
39 #define PERL_IN_TOKE_C
40 #include "perl.h"
41 #include "dquote_inline.h"
42
43 #define new_constant(a,b,c,d,e,f,g)     \
44         S_new_constant(aTHX_ a,b,STR_WITH_LEN(c),d,e,f, g)
45
46 #define pl_yylval       (PL_parser->yylval)
47
48 /* XXX temporary backwards compatibility */
49 #define PL_lex_brackets         (PL_parser->lex_brackets)
50 #define PL_lex_allbrackets      (PL_parser->lex_allbrackets)
51 #define PL_lex_fakeeof          (PL_parser->lex_fakeeof)
52 #define PL_lex_brackstack       (PL_parser->lex_brackstack)
53 #define PL_lex_casemods         (PL_parser->lex_casemods)
54 #define PL_lex_casestack        (PL_parser->lex_casestack)
55 #define PL_lex_dojoin           (PL_parser->lex_dojoin)
56 #define PL_lex_formbrack        (PL_parser->lex_formbrack)
57 #define PL_lex_inpat            (PL_parser->lex_inpat)
58 #define PL_lex_inwhat           (PL_parser->lex_inwhat)
59 #define PL_lex_op               (PL_parser->lex_op)
60 #define PL_lex_repl             (PL_parser->lex_repl)
61 #define PL_lex_starts           (PL_parser->lex_starts)
62 #define PL_lex_stuff            (PL_parser->lex_stuff)
63 #define PL_multi_start          (PL_parser->multi_start)
64 #define PL_multi_open           (PL_parser->multi_open)
65 #define PL_multi_close          (PL_parser->multi_close)
66 #define PL_preambled            (PL_parser->preambled)
67 #define PL_linestr              (PL_parser->linestr)
68 #define PL_expect               (PL_parser->expect)
69 #define PL_copline              (PL_parser->copline)
70 #define PL_bufptr               (PL_parser->bufptr)
71 #define PL_oldbufptr            (PL_parser->oldbufptr)
72 #define PL_oldoldbufptr         (PL_parser->oldoldbufptr)
73 #define PL_linestart            (PL_parser->linestart)
74 #define PL_bufend               (PL_parser->bufend)
75 #define PL_last_uni             (PL_parser->last_uni)
76 #define PL_last_lop             (PL_parser->last_lop)
77 #define PL_last_lop_op          (PL_parser->last_lop_op)
78 #define PL_lex_state            (PL_parser->lex_state)
79 #define PL_rsfp                 (PL_parser->rsfp)
80 #define PL_rsfp_filters         (PL_parser->rsfp_filters)
81 #define PL_in_my                (PL_parser->in_my)
82 #define PL_in_my_stash          (PL_parser->in_my_stash)
83 #define PL_tokenbuf             (PL_parser->tokenbuf)
84 #define PL_multi_end            (PL_parser->multi_end)
85 #define PL_error_count          (PL_parser->error_count)
86
87 #  define PL_nexttoke           (PL_parser->nexttoke)
88 #  define PL_nexttype           (PL_parser->nexttype)
89 #  define PL_nextval            (PL_parser->nextval)
90
91
92 #define SvEVALED(sv) \
93     (SvTYPE(sv) >= SVt_PVNV \
94     && ((XPVIV*)SvANY(sv))->xiv_u.xivu_eval_seen)
95
96 static const char* const ident_too_long = "Identifier too long";
97
98 #  define NEXTVAL_NEXTTOKE PL_nextval[PL_nexttoke]
99
100 #define XENUMMASK  0x3f
101 #define XFAKEEOF   0x40
102 #define XFAKEBRACK 0x80
103
104 #ifdef USE_UTF8_SCRIPTS
105 #   define UTF cBOOL(!IN_BYTES)
106 #else
107 #   define UTF cBOOL((PL_linestr && DO_UTF8(PL_linestr)) || ( !(PL_parser->lex_flags & LEX_IGNORE_UTF8_HINTS) && (PL_hints & HINT_UTF8)))
108 #endif
109
110 /* The maximum number of characters preceding the unrecognized one to display */
111 #define UNRECOGNIZED_PRECEDE_COUNT 10
112
113 /* In variables named $^X, these are the legal values for X.
114  * 1999-02-27 mjd-perl-patch@plover.com */
115 #define isCONTROLVAR(x) (isUPPER(x) || strchr("[\\]^_?", (x)))
116
117 #define SPACE_OR_TAB(c) isBLANK_A(c)
118
119 #define HEXFP_PEEK(s)     \
120     (((s[0] == '.') && \
121       (isXDIGIT(s[1]) || isALPHA_FOLD_EQ(s[1], 'p'))) || \
122      isALPHA_FOLD_EQ(s[0], 'p'))
123
124 /* LEX_* are values for PL_lex_state, the state of the lexer.
125  * They are arranged oddly so that the guard on the switch statement
126  * can get by with a single comparison (if the compiler is smart enough).
127  *
128  * These values refer to the various states within a sublex parse,
129  * i.e. within a double quotish string
130  */
131
132 /* #define LEX_NOTPARSING               11 is done in perl.h. */
133
134 #define LEX_NORMAL              10 /* normal code (ie not within "...")     */
135 #define LEX_INTERPNORMAL         9 /* code within a string, eg "$foo[$x+1]" */
136 #define LEX_INTERPCASEMOD        8 /* expecting a \U, \Q or \E etc          */
137 #define LEX_INTERPPUSH           7 /* starting a new sublex parse level     */
138 #define LEX_INTERPSTART          6 /* expecting the start of a $var         */
139
140                                    /* at end of code, eg "$x" followed by:  */
141 #define LEX_INTERPEND            5 /* ... eg not one of [, { or ->          */
142 #define LEX_INTERPENDMAYBE       4 /* ... eg one of [, { or ->              */
143
144 #define LEX_INTERPCONCAT         3 /* expecting anything, eg at start of
145                                         string or after \E, $foo, etc       */
146 #define LEX_INTERPCONST          2 /* NOT USED */
147 #define LEX_FORMLINE             1 /* expecting a format line               */
148
149
150 #ifdef DEBUGGING
151 static const char* const lex_state_names[] = {
152     "KNOWNEXT",
153     "FORMLINE",
154     "INTERPCONST",
155     "INTERPCONCAT",
156     "INTERPENDMAYBE",
157     "INTERPEND",
158     "INTERPSTART",
159     "INTERPPUSH",
160     "INTERPCASEMOD",
161     "INTERPNORMAL",
162     "NORMAL"
163 };
164 #endif
165
166 #include "keywords.h"
167
168 /* CLINE is a macro that ensures PL_copline has a sane value */
169
170 #define CLINE (PL_copline = (CopLINE(PL_curcop) < PL_copline ? CopLINE(PL_curcop) : PL_copline))
171
172 /*
173  * Convenience functions to return different tokens and prime the
174  * lexer for the next token.  They all take an argument.
175  *
176  * TOKEN        : generic token (used for '(', DOLSHARP, etc)
177  * OPERATOR     : generic operator
178  * AOPERATOR    : assignment operator
179  * PREBLOCK     : beginning the block after an if, while, foreach, ...
180  * PRETERMBLOCK : beginning a non-code-defining {} block (eg, hash ref)
181  * PREREF       : *EXPR where EXPR is not a simple identifier
182  * TERM         : expression term
183  * POSTDEREF    : postfix dereference (->$* ->@[...] etc.)
184  * LOOPX        : loop exiting command (goto, last, dump, etc)
185  * FTST         : file test operator
186  * FUN0         : zero-argument function
187  * FUN0OP       : zero-argument function, with its op created in this file
188  * FUN1         : not used, except for not, which isn't a UNIOP
189  * BOop         : bitwise or or xor
190  * BAop         : bitwise and
191  * BCop         : bitwise complement
192  * SHop         : shift operator
193  * PWop         : power operator
194  * PMop         : pattern-matching operator
195  * Aop          : addition-level operator
196  * AopNOASSIGN  : addition-level operator that is never part of .=
197  * Mop          : multiplication-level operator
198  * Eop          : equality-testing operator
199  * Rop          : relational operator <= != gt
200  *
201  * Also see LOP and lop() below.
202  */
203
204 #ifdef DEBUGGING /* Serve -DT. */
205 #   define REPORT(retval) tokereport((I32)retval, &pl_yylval)
206 #else
207 #   define REPORT(retval) (retval)
208 #endif
209
210 #define TOKEN(retval) return ( PL_bufptr = s, REPORT(retval))
211 #define OPERATOR(retval) return (PL_expect = XTERM, PL_bufptr = s, REPORT(retval))
212 #define AOPERATOR(retval) return ao((PL_expect = XTERM, PL_bufptr = s, retval))
213 #define PREBLOCK(retval) return (PL_expect = XBLOCK,PL_bufptr = s, REPORT(retval))
214 #define PRETERMBLOCK(retval) return (PL_expect = XTERMBLOCK,PL_bufptr = s, REPORT(retval))
215 #define PREREF(retval) return (PL_expect = XREF,PL_bufptr = s, REPORT(retval))
216 #define TERM(retval) return (CLINE, PL_expect = XOPERATOR, PL_bufptr = s, REPORT(retval))
217 #define POSTDEREF(f) return (PL_bufptr = s, S_postderef(aTHX_ REPORT(f),s[1]))
218 #define LOOPX(f) return (PL_bufptr = force_word(s,BAREWORD,TRUE,FALSE), \
219                          pl_yylval.ival=f, \
220                          PL_expect = PL_nexttoke ? XOPERATOR : XTERM, \
221                          REPORT((int)LOOPEX))
222 #define FTST(f)  return (pl_yylval.ival=f, PL_expect=XTERMORDORDOR, PL_bufptr=s, REPORT((int)UNIOP))
223 #define FUN0(f)  return (pl_yylval.ival=f, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC0))
224 #define FUN0OP(f)  return (pl_yylval.opval=f, CLINE, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC0OP))
225 #define FUN1(f)  return (pl_yylval.ival=f, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC1))
226 #define BOop(f)  return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)BITOROP))
227 #define BAop(f)  return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)BITANDOP))
228 #define BCop(f) return pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr = s, \
229                        REPORT('~')
230 #define SHop(f)  return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)SHIFTOP))
231 #define PWop(f)  return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)POWOP))
232 #define PMop(f)  return(pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)MATCHOP))
233 #define Aop(f)   return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)ADDOP))
234 #define AopNOASSIGN(f) return (pl_yylval.ival=f, PL_bufptr=s, REPORT((int)ADDOP))
235 #define Mop(f)   return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)MULOP))
236 #define Eop(f)   return (pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)EQOP))
237 #define Rop(f)   return (pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)RELOP))
238
239 /* This bit of chicanery makes a unary function followed by
240  * a parenthesis into a function with one argument, highest precedence.
241  * The UNIDOR macro is for unary functions that can be followed by the //
242  * operator (such as C<shift // 0>).
243  */
244 #define UNI3(f,x,have_x) { \
245         pl_yylval.ival = f; \
246         if (have_x) PL_expect = x; \
247         PL_bufptr = s; \
248         PL_last_uni = PL_oldbufptr; \
249         PL_last_lop_op = (f) < 0 ? -(f) : (f); \
250         if (*s == '(') \
251             return REPORT( (int)FUNC1 ); \
252         s = skipspace(s); \
253         return REPORT( *s=='(' ? (int)FUNC1 : (int)UNIOP ); \
254         }
255 #define UNI(f)    UNI3(f,XTERM,1)
256 #define UNIDOR(f) UNI3(f,XTERMORDORDOR,1)
257 #define UNIPROTO(f,optional) { \
258         if (optional) PL_last_uni = PL_oldbufptr; \
259         OPERATOR(f); \
260         }
261
262 #define UNIBRACK(f) UNI3(f,0,0)
263
264 /* grandfather return to old style */
265 #define OLDLOP(f) \
266         do { \
267             if (!PL_lex_allbrackets && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC) \
268                 PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC; \
269             pl_yylval.ival = (f); \
270             PL_expect = XTERM; \
271             PL_bufptr = s; \
272             return (int)LSTOP; \
273         } while(0)
274
275 #define COPLINE_INC_WITH_HERELINES                  \
276     STMT_START {                                     \
277         CopLINE_inc(PL_curcop);                       \
278         if (PL_parser->herelines)                      \
279             CopLINE(PL_curcop) += PL_parser->herelines, \
280             PL_parser->herelines = 0;                    \
281     } STMT_END
282 /* Called after scan_str to update CopLINE(PL_curcop), but only when there
283  * is no sublex_push to follow. */
284 #define COPLINE_SET_FROM_MULTI_END            \
285     STMT_START {                               \
286         CopLINE_set(PL_curcop, PL_multi_end);   \
287         if (PL_multi_end != PL_multi_start)      \
288             PL_parser->herelines = 0;             \
289     } STMT_END
290
291
292 #ifdef DEBUGGING
293
294 /* how to interpret the pl_yylval associated with the token */
295 enum token_type {
296     TOKENTYPE_NONE,
297     TOKENTYPE_IVAL,
298     TOKENTYPE_OPNUM, /* pl_yylval.ival contains an opcode number */
299     TOKENTYPE_PVAL,
300     TOKENTYPE_OPVAL
301 };
302
303 static struct debug_tokens {
304     const int token;
305     enum token_type type;
306     const char *name;
307 } const debug_tokens[] =
308 {
309     { ADDOP,            TOKENTYPE_OPNUM,        "ADDOP" },
310     { ANDAND,           TOKENTYPE_NONE,         "ANDAND" },
311     { ANDOP,            TOKENTYPE_NONE,         "ANDOP" },
312     { ANONSUB,          TOKENTYPE_IVAL,         "ANONSUB" },
313     { ARROW,            TOKENTYPE_NONE,         "ARROW" },
314     { ASSIGNOP,         TOKENTYPE_OPNUM,        "ASSIGNOP" },
315     { BITANDOP,         TOKENTYPE_OPNUM,        "BITANDOP" },
316     { BITOROP,          TOKENTYPE_OPNUM,        "BITOROP" },
317     { COLONATTR,        TOKENTYPE_NONE,         "COLONATTR" },
318     { CONTINUE,         TOKENTYPE_NONE,         "CONTINUE" },
319     { DEFAULT,          TOKENTYPE_NONE,         "DEFAULT" },
320     { DO,               TOKENTYPE_NONE,         "DO" },
321     { DOLSHARP,         TOKENTYPE_NONE,         "DOLSHARP" },
322     { DORDOR,           TOKENTYPE_NONE,         "DORDOR" },
323     { DOROP,            TOKENTYPE_OPNUM,        "DOROP" },
324     { DOTDOT,           TOKENTYPE_IVAL,         "DOTDOT" },
325     { ELSE,             TOKENTYPE_NONE,         "ELSE" },
326     { ELSIF,            TOKENTYPE_IVAL,         "ELSIF" },
327     { EQOP,             TOKENTYPE_OPNUM,        "EQOP" },
328     { FOR,              TOKENTYPE_IVAL,         "FOR" },
329     { FORMAT,           TOKENTYPE_NONE,         "FORMAT" },
330     { FORMLBRACK,       TOKENTYPE_NONE,         "FORMLBRACK" },
331     { FORMRBRACK,       TOKENTYPE_NONE,         "FORMRBRACK" },
332     { FUNC,             TOKENTYPE_OPNUM,        "FUNC" },
333     { FUNC0,            TOKENTYPE_OPNUM,        "FUNC0" },
334     { FUNC0OP,          TOKENTYPE_OPVAL,        "FUNC0OP" },
335     { FUNC0SUB,         TOKENTYPE_OPVAL,        "FUNC0SUB" },
336     { FUNC1,            TOKENTYPE_OPNUM,        "FUNC1" },
337     { FUNCMETH,         TOKENTYPE_OPVAL,        "FUNCMETH" },
338     { GIVEN,            TOKENTYPE_IVAL,         "GIVEN" },
339     { HASHBRACK,        TOKENTYPE_NONE,         "HASHBRACK" },
340     { IF,               TOKENTYPE_IVAL,         "IF" },
341     { LABEL,            TOKENTYPE_PVAL,         "LABEL" },
342     { LOCAL,            TOKENTYPE_IVAL,         "LOCAL" },
343     { LOOPEX,           TOKENTYPE_OPNUM,        "LOOPEX" },
344     { LSTOP,            TOKENTYPE_OPNUM,        "LSTOP" },
345     { LSTOPSUB,         TOKENTYPE_OPVAL,        "LSTOPSUB" },
346     { MATCHOP,          TOKENTYPE_OPNUM,        "MATCHOP" },
347     { METHOD,           TOKENTYPE_OPVAL,        "METHOD" },
348     { MULOP,            TOKENTYPE_OPNUM,        "MULOP" },
349     { MY,               TOKENTYPE_IVAL,         "MY" },
350     { NOAMP,            TOKENTYPE_NONE,         "NOAMP" },
351     { NOTOP,            TOKENTYPE_NONE,         "NOTOP" },
352     { OROP,             TOKENTYPE_IVAL,         "OROP" },
353     { OROR,             TOKENTYPE_NONE,         "OROR" },
354     { PACKAGE,          TOKENTYPE_NONE,         "PACKAGE" },
355     { PLUGEXPR,         TOKENTYPE_OPVAL,        "PLUGEXPR" },
356     { PLUGSTMT,         TOKENTYPE_OPVAL,        "PLUGSTMT" },
357     { PMFUNC,           TOKENTYPE_OPVAL,        "PMFUNC" },
358     { POSTJOIN,         TOKENTYPE_NONE,         "POSTJOIN" },
359     { POSTDEC,          TOKENTYPE_NONE,         "POSTDEC" },
360     { POSTINC,          TOKENTYPE_NONE,         "POSTINC" },
361     { POWOP,            TOKENTYPE_OPNUM,        "POWOP" },
362     { PREDEC,           TOKENTYPE_NONE,         "PREDEC" },
363     { PREINC,           TOKENTYPE_NONE,         "PREINC" },
364     { PRIVATEREF,       TOKENTYPE_OPVAL,        "PRIVATEREF" },
365     { QWLIST,           TOKENTYPE_OPVAL,        "QWLIST" },
366     { REFGEN,           TOKENTYPE_NONE,         "REFGEN" },
367     { RELOP,            TOKENTYPE_OPNUM,        "RELOP" },
368     { REQUIRE,          TOKENTYPE_NONE,         "REQUIRE" },
369     { SHIFTOP,          TOKENTYPE_OPNUM,        "SHIFTOP" },
370     { SUB,              TOKENTYPE_NONE,         "SUB" },
371     { THING,            TOKENTYPE_OPVAL,        "THING" },
372     { UMINUS,           TOKENTYPE_NONE,         "UMINUS" },
373     { UNIOP,            TOKENTYPE_OPNUM,        "UNIOP" },
374     { UNIOPSUB,         TOKENTYPE_OPVAL,        "UNIOPSUB" },
375     { UNLESS,           TOKENTYPE_IVAL,         "UNLESS" },
376     { UNTIL,            TOKENTYPE_IVAL,         "UNTIL" },
377     { USE,              TOKENTYPE_IVAL,         "USE" },
378     { WHEN,             TOKENTYPE_IVAL,         "WHEN" },
379     { WHILE,            TOKENTYPE_IVAL,         "WHILE" },
380     { BAREWORD,         TOKENTYPE_OPVAL,        "BAREWORD" },
381     { YADAYADA,         TOKENTYPE_IVAL,         "YADAYADA" },
382     { 0,                TOKENTYPE_NONE,         NULL }
383 };
384
385 /* dump the returned token in rv, plus any optional arg in pl_yylval */
386
387 STATIC int
388 S_tokereport(pTHX_ I32 rv, const YYSTYPE* lvalp)
389 {
390     PERL_ARGS_ASSERT_TOKEREPORT;
391
392     if (DEBUG_T_TEST) {
393         const char *name = NULL;
394         enum token_type type = TOKENTYPE_NONE;
395         const struct debug_tokens *p;
396         SV* const report = newSVpvs("<== ");
397
398         for (p = debug_tokens; p->token; p++) {
399             if (p->token == (int)rv) {
400                 name = p->name;
401                 type = p->type;
402                 break;
403             }
404         }
405         if (name)
406             Perl_sv_catpv(aTHX_ report, name);
407         else if (isGRAPH(rv))
408         {
409             Perl_sv_catpvf(aTHX_ report, "'%c'", (char)rv);
410             if ((char)rv == 'p')
411                 sv_catpvs(report, " (pending identifier)");
412         }
413         else if (!rv)
414             sv_catpvs(report, "EOF");
415         else
416             Perl_sv_catpvf(aTHX_ report, "?? %" IVdf, (IV)rv);
417         switch (type) {
418         case TOKENTYPE_NONE:
419             break;
420         case TOKENTYPE_IVAL:
421             Perl_sv_catpvf(aTHX_ report, "(ival=%" IVdf ")", (IV)lvalp->ival);
422             break;
423         case TOKENTYPE_OPNUM:
424             Perl_sv_catpvf(aTHX_ report, "(ival=op_%s)",
425                                     PL_op_name[lvalp->ival]);
426             break;
427         case TOKENTYPE_PVAL:
428             Perl_sv_catpvf(aTHX_ report, "(pval=\"%s\")", lvalp->pval);
429             break;
430         case TOKENTYPE_OPVAL:
431             if (lvalp->opval) {
432                 Perl_sv_catpvf(aTHX_ report, "(opval=op_%s)",
433                                     PL_op_name[lvalp->opval->op_type]);
434                 if (lvalp->opval->op_type == OP_CONST) {
435                     Perl_sv_catpvf(aTHX_ report, " %s",
436                         SvPEEK(cSVOPx_sv(lvalp->opval)));
437                 }
438
439             }
440             else
441                 sv_catpvs(report, "(opval=null)");
442             break;
443         }
444         PerlIO_printf(Perl_debug_log, "### %s\n\n", SvPV_nolen_const(report));
445     };
446     return (int)rv;
447 }
448
449
450 /* print the buffer with suitable escapes */
451
452 STATIC void
453 S_printbuf(pTHX_ const char *const fmt, const char *const s)
454 {
455     SV* const tmp = newSVpvs("");
456
457     PERL_ARGS_ASSERT_PRINTBUF;
458
459     GCC_DIAG_IGNORE(-Wformat-nonliteral); /* fmt checked by caller */
460     PerlIO_printf(Perl_debug_log, fmt, pv_display(tmp, s, strlen(s), 0, 60));
461     GCC_DIAG_RESTORE;
462     SvREFCNT_dec(tmp);
463 }
464
465 #endif
466
467 static int
468 S_deprecate_commaless_var_list(pTHX) {
469     PL_expect = XTERM;
470     deprecate_fatal_in("5.28", "Use of comma-less variable list is deprecated");
471     return REPORT(','); /* grandfather non-comma-format format */
472 }
473
474 /*
475  * S_ao
476  *
477  * This subroutine looks for an '=' next to the operator that has just been
478  * parsed and turns it into an ASSIGNOP if it finds one.
479  */
480
481 STATIC int
482 S_ao(pTHX_ int toketype)
483 {
484     if (*PL_bufptr == '=') {
485         PL_bufptr++;
486         if (toketype == ANDAND)
487             pl_yylval.ival = OP_ANDASSIGN;
488         else if (toketype == OROR)
489             pl_yylval.ival = OP_ORASSIGN;
490         else if (toketype == DORDOR)
491             pl_yylval.ival = OP_DORASSIGN;
492         toketype = ASSIGNOP;
493     }
494     return REPORT(toketype);
495 }
496
497 /*
498  * S_no_op
499  * When Perl expects an operator and finds something else, no_op
500  * prints the warning.  It always prints "<something> found where
501  * operator expected.  It prints "Missing semicolon on previous line?"
502  * if the surprise occurs at the start of the line.  "do you need to
503  * predeclare ..." is printed out for code like "sub bar; foo bar $x"
504  * where the compiler doesn't know if foo is a method call or a function.
505  * It prints "Missing operator before end of line" if there's nothing
506  * after the missing operator, or "... before <...>" if there is something
507  * after the missing operator.
508  *
509  * PL_bufptr is expected to point to the start of the thing that was found,
510  * and s after the next token or partial token.
511  */
512
513 STATIC void
514 S_no_op(pTHX_ const char *const what, char *s)
515 {
516     char * const oldbp = PL_bufptr;
517     const bool is_first = (PL_oldbufptr == PL_linestart);
518
519     PERL_ARGS_ASSERT_NO_OP;
520
521     if (!s)
522         s = oldbp;
523     else
524         PL_bufptr = s;
525     yywarn(Perl_form(aTHX_ "%s found where operator expected", what), UTF ? SVf_UTF8 : 0);
526     if (ckWARN_d(WARN_SYNTAX)) {
527         if (is_first)
528             Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
529                     "\t(Missing semicolon on previous line?)\n");
530         else if (PL_oldoldbufptr && isIDFIRST_lazy_if_safe(PL_oldoldbufptr,
531                                                            PL_bufend,
532                                                            UTF))
533         {
534             const char *t;
535             for (t = PL_oldoldbufptr;
536                  (isWORDCHAR_lazy_if_safe(t, PL_bufend, UTF) || *t == ':');
537                  t += UTF ? UTF8SKIP(t) : 1)
538             {
539                 NOOP;
540             }
541             if (t < PL_bufptr && isSPACE(*t))
542                 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
543                         "\t(Do you need to predeclare %" UTF8f "?)\n",
544                       UTF8fARG(UTF, t - PL_oldoldbufptr, PL_oldoldbufptr));
545         }
546         else {
547             assert(s >= oldbp);
548             Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
549                     "\t(Missing operator before %" UTF8f "?)\n",
550                      UTF8fARG(UTF, s - oldbp, oldbp));
551         }
552     }
553     PL_bufptr = oldbp;
554 }
555
556 /*
557  * S_missingterm
558  * Complain about missing quote/regexp/heredoc terminator.
559  * If it's called with NULL then it cauterizes the line buffer.
560  * If we're in a delimited string and the delimiter is a control
561  * character, it's reformatted into a two-char sequence like ^C.
562  * This is fatal.
563  */
564
565 STATIC void
566 S_missingterm(pTHX_ char *s)
567 {
568     char tmpbuf[UTF8_MAXBYTES + 1];
569     char q;
570     bool uni = FALSE;
571     SV *sv;
572     if (s) {
573         char * const nl = strrchr(s,'\n');
574         if (nl)
575             *nl = '\0';
576         uni = UTF;
577     }
578     else if (PL_multi_close < 32) {
579         *tmpbuf = '^';
580         tmpbuf[1] = (char)toCTRL(PL_multi_close);
581         tmpbuf[2] = '\0';
582         s = tmpbuf;
583     }
584     else {
585         if (LIKELY(PL_multi_close < 256)) {
586             *tmpbuf = (char)PL_multi_close;
587             tmpbuf[1] = '\0';
588         }
589         else {
590             uni = TRUE;
591             *uvchr_to_utf8((U8 *)tmpbuf, PL_multi_close) = 0;
592         }
593         s = tmpbuf;
594     }
595     q = strchr(s,'"') ? '\'' : '"';
596     sv = sv_2mortal(newSVpv(s,0));
597     if (uni)
598         SvUTF8_on(sv);
599     Perl_croak(aTHX_ "Can't find string terminator %c%" SVf
600                      "%c anywhere before EOF",q,SVfARG(sv),q);
601 }
602
603 #include "feature.h"
604
605 /*
606  * Check whether the named feature is enabled.
607  */
608 bool
609 Perl_feature_is_enabled(pTHX_ const char *const name, STRLEN namelen)
610 {
611     char he_name[8 + MAX_FEATURE_LEN] = "feature_";
612
613     PERL_ARGS_ASSERT_FEATURE_IS_ENABLED;
614
615     assert(CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_CUSTOM);
616
617     if (namelen > MAX_FEATURE_LEN)
618         return FALSE;
619     memcpy(&he_name[8], name, namelen);
620
621     return cBOOL(cop_hints_fetch_pvn(PL_curcop, he_name, 8 + namelen, 0,
622                                      REFCOUNTED_HE_EXISTS));
623 }
624
625 /*
626  * experimental text filters for win32 carriage-returns, utf16-to-utf8 and
627  * utf16-to-utf8-reversed.
628  */
629
630 #ifdef PERL_CR_FILTER
631 static void
632 strip_return(SV *sv)
633 {
634     const char *s = SvPVX_const(sv);
635     const char * const e = s + SvCUR(sv);
636
637     PERL_ARGS_ASSERT_STRIP_RETURN;
638
639     /* outer loop optimized to do nothing if there are no CR-LFs */
640     while (s < e) {
641         if (*s++ == '\r' && *s == '\n') {
642             /* hit a CR-LF, need to copy the rest */
643             char *d = s - 1;
644             *d++ = *s++;
645             while (s < e) {
646                 if (*s == '\r' && s[1] == '\n')
647                     s++;
648                 *d++ = *s++;
649             }
650             SvCUR(sv) -= s - d;
651             return;
652         }
653     }
654 }
655
656 STATIC I32
657 S_cr_textfilter(pTHX_ int idx, SV *sv, int maxlen)
658 {
659     const I32 count = FILTER_READ(idx+1, sv, maxlen);
660     if (count > 0 && !maxlen)
661         strip_return(sv);
662     return count;
663 }
664 #endif
665
666 /*
667 =for apidoc Amx|void|lex_start|SV *line|PerlIO *rsfp|U32 flags
668
669 Creates and initialises a new lexer/parser state object, supplying
670 a context in which to lex and parse from a new source of Perl code.
671 A pointer to the new state object is placed in L</PL_parser>.  An entry
672 is made on the save stack so that upon unwinding, the new state object
673 will be destroyed and the former value of L</PL_parser> will be restored.
674 Nothing else need be done to clean up the parsing context.
675
676 The code to be parsed comes from C<line> and C<rsfp>.  C<line>, if
677 non-null, provides a string (in SV form) containing code to be parsed.
678 A copy of the string is made, so subsequent modification of C<line>
679 does not affect parsing.  C<rsfp>, if non-null, provides an input stream
680 from which code will be read to be parsed.  If both are non-null, the
681 code in C<line> comes first and must consist of complete lines of input,
682 and C<rsfp> supplies the remainder of the source.
683
684 The C<flags> parameter is reserved for future use.  Currently it is only
685 used by perl internally, so extensions should always pass zero.
686
687 =cut
688 */
689
690 /* LEX_START_SAME_FILTER indicates that this is not a new file, so it
691    can share filters with the current parser.
692    LEX_START_DONT_CLOSE indicates that the file handle wasn't opened by the
693    caller, hence isn't owned by the parser, so shouldn't be closed on parser
694    destruction. This is used to handle the case of defaulting to reading the
695    script from the standard input because no filename was given on the command
696    line (without getting confused by situation where STDIN has been closed, so
697    the script handle is opened on fd 0)  */
698
699 void
700 Perl_lex_start(pTHX_ SV *line, PerlIO *rsfp, U32 flags)
701 {
702     const char *s = NULL;
703     yy_parser *parser, *oparser;
704
705     if (flags && flags & ~LEX_START_FLAGS)
706         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_start");
707
708     /* create and initialise a parser */
709
710     Newxz(parser, 1, yy_parser);
711     parser->old_parser = oparser = PL_parser;
712     PL_parser = parser;
713
714     parser->stack = NULL;
715     parser->stack_max1 = NULL;
716     parser->ps = NULL;
717
718     /* on scope exit, free this parser and restore any outer one */
719     SAVEPARSER(parser);
720     parser->saved_curcop = PL_curcop;
721
722     /* initialise lexer state */
723
724     parser->nexttoke = 0;
725     parser->error_count = oparser ? oparser->error_count : 0;
726     parser->copline = parser->preambling = NOLINE;
727     parser->lex_state = LEX_NORMAL;
728     parser->expect = XSTATE;
729     parser->rsfp = rsfp;
730     parser->recheck_utf8_validity = FALSE;
731     parser->rsfp_filters =
732       !(flags & LEX_START_SAME_FILTER) || !oparser
733         ? NULL
734         : MUTABLE_AV(SvREFCNT_inc(
735             oparser->rsfp_filters
736              ? oparser->rsfp_filters
737              : (oparser->rsfp_filters = newAV())
738           ));
739
740     Newx(parser->lex_brackstack, 120, char);
741     Newx(parser->lex_casestack, 12, char);
742     *parser->lex_casestack = '\0';
743     Newxz(parser->lex_shared, 1, LEXSHARED);
744
745     if (line) {
746         STRLEN len;
747         const U8* first_bad_char_loc;
748
749         s = SvPV_const(line, len);
750
751         if (   SvUTF8(line)
752             && UNLIKELY(! is_utf8_string_loc((U8 *) s,
753                                              SvCUR(line),
754                                              &first_bad_char_loc)))
755         {
756             _force_out_malformed_utf8_message(first_bad_char_loc,
757                                               (U8 *) s + SvCUR(line),
758                                               0,
759                                               1 /* 1 means die */ );
760             NOT_REACHED; /* NOTREACHED */
761         }
762
763         parser->linestr = flags & LEX_START_COPIED
764                             ? SvREFCNT_inc_simple_NN(line)
765                             : newSVpvn_flags(s, len, SvUTF8(line));
766         if (!rsfp)
767             sv_catpvs(parser->linestr, "\n;");
768     } else {
769         parser->linestr = newSVpvn("\n;", rsfp ? 1 : 2);
770     }
771
772     parser->oldoldbufptr =
773         parser->oldbufptr =
774         parser->bufptr =
775         parser->linestart = SvPVX(parser->linestr);
776     parser->bufend = parser->bufptr + SvCUR(parser->linestr);
777     parser->last_lop = parser->last_uni = NULL;
778
779     STATIC_ASSERT_STMT(FITS_IN_8_BITS(LEX_IGNORE_UTF8_HINTS|LEX_EVALBYTES
780                                                         |LEX_DONT_CLOSE_RSFP));
781     parser->lex_flags = (U8) (flags & (LEX_IGNORE_UTF8_HINTS|LEX_EVALBYTES
782                                                         |LEX_DONT_CLOSE_RSFP));
783
784     parser->in_pod = parser->filtered = 0;
785 }
786
787
788 /* delete a parser object */
789
790 void
791 Perl_parser_free(pTHX_  const yy_parser *parser)
792 {
793     PERL_ARGS_ASSERT_PARSER_FREE;
794
795     PL_curcop = parser->saved_curcop;
796     SvREFCNT_dec(parser->linestr);
797
798     if (PL_parser->lex_flags & LEX_DONT_CLOSE_RSFP)
799         PerlIO_clearerr(parser->rsfp);
800     else if (parser->rsfp && (!parser->old_parser
801           || (parser->old_parser && parser->rsfp != parser->old_parser->rsfp)))
802         PerlIO_close(parser->rsfp);
803     SvREFCNT_dec(parser->rsfp_filters);
804     SvREFCNT_dec(parser->lex_stuff);
805     SvREFCNT_dec(parser->lex_sub_repl);
806
807     Safefree(parser->lex_brackstack);
808     Safefree(parser->lex_casestack);
809     Safefree(parser->lex_shared);
810     PL_parser = parser->old_parser;
811     Safefree(parser);
812 }
813
814 void
815 Perl_parser_free_nexttoke_ops(pTHX_  yy_parser *parser, OPSLAB *slab)
816 {
817     I32 nexttoke = parser->nexttoke;
818     PERL_ARGS_ASSERT_PARSER_FREE_NEXTTOKE_OPS;
819     while (nexttoke--) {
820         if (S_is_opval_token(parser->nexttype[nexttoke] & 0xffff)
821          && parser->nextval[nexttoke].opval
822          && parser->nextval[nexttoke].opval->op_slabbed
823          && OpSLAB(parser->nextval[nexttoke].opval) == slab) {
824             op_free(parser->nextval[nexttoke].opval);
825             parser->nextval[nexttoke].opval = NULL;
826         }
827     }
828 }
829
830
831 /*
832 =for apidoc AmxU|SV *|PL_parser-E<gt>linestr
833
834 Buffer scalar containing the chunk currently under consideration of the
835 text currently being lexed.  This is always a plain string scalar (for
836 which C<SvPOK> is true).  It is not intended to be used as a scalar by
837 normal scalar means; instead refer to the buffer directly by the pointer
838 variables described below.
839
840 The lexer maintains various C<char*> pointers to things in the
841 C<PL_parser-E<gt>linestr> buffer.  If C<PL_parser-E<gt>linestr> is ever
842 reallocated, all of these pointers must be updated.  Don't attempt to
843 do this manually, but rather use L</lex_grow_linestr> if you need to
844 reallocate the buffer.
845
846 The content of the text chunk in the buffer is commonly exactly one
847 complete line of input, up to and including a newline terminator,
848 but there are situations where it is otherwise.  The octets of the
849 buffer may be intended to be interpreted as either UTF-8 or Latin-1.
850 The function L</lex_bufutf8> tells you which.  Do not use the C<SvUTF8>
851 flag on this scalar, which may disagree with it.
852
853 For direct examination of the buffer, the variable
854 L</PL_parser-E<gt>bufend> points to the end of the buffer.  The current
855 lexing position is pointed to by L</PL_parser-E<gt>bufptr>.  Direct use
856 of these pointers is usually preferable to examination of the scalar
857 through normal scalar means.
858
859 =for apidoc AmxU|char *|PL_parser-E<gt>bufend
860
861 Direct pointer to the end of the chunk of text currently being lexed, the
862 end of the lexer buffer.  This is equal to C<SvPVX(PL_parser-E<gt>linestr)
863 + SvCUR(PL_parser-E<gt>linestr)>.  A C<NUL> character (zero octet) is
864 always located at the end of the buffer, and does not count as part of
865 the buffer's contents.
866
867 =for apidoc AmxU|char *|PL_parser-E<gt>bufptr
868
869 Points to the current position of lexing inside the lexer buffer.
870 Characters around this point may be freely examined, within
871 the range delimited by C<SvPVX(L</PL_parser-E<gt>linestr>)> and
872 L</PL_parser-E<gt>bufend>.  The octets of the buffer may be intended to be
873 interpreted as either UTF-8 or Latin-1, as indicated by L</lex_bufutf8>.
874
875 Lexing code (whether in the Perl core or not) moves this pointer past
876 the characters that it consumes.  It is also expected to perform some
877 bookkeeping whenever a newline character is consumed.  This movement
878 can be more conveniently performed by the function L</lex_read_to>,
879 which handles newlines appropriately.
880
881 Interpretation of the buffer's octets can be abstracted out by
882 using the slightly higher-level functions L</lex_peek_unichar> and
883 L</lex_read_unichar>.
884
885 =for apidoc AmxU|char *|PL_parser-E<gt>linestart
886
887 Points to the start of the current line inside the lexer buffer.
888 This is useful for indicating at which column an error occurred, and
889 not much else.  This must be updated by any lexing code that consumes
890 a newline; the function L</lex_read_to> handles this detail.
891
892 =cut
893 */
894
895 /*
896 =for apidoc Amx|bool|lex_bufutf8
897
898 Indicates whether the octets in the lexer buffer
899 (L</PL_parser-E<gt>linestr>) should be interpreted as the UTF-8 encoding
900 of Unicode characters.  If not, they should be interpreted as Latin-1
901 characters.  This is analogous to the C<SvUTF8> flag for scalars.
902
903 In UTF-8 mode, it is not guaranteed that the lexer buffer actually
904 contains valid UTF-8.  Lexing code must be robust in the face of invalid
905 encoding.
906
907 The actual C<SvUTF8> flag of the L</PL_parser-E<gt>linestr> scalar
908 is significant, but not the whole story regarding the input character
909 encoding.  Normally, when a file is being read, the scalar contains octets
910 and its C<SvUTF8> flag is off, but the octets should be interpreted as
911 UTF-8 if the C<use utf8> pragma is in effect.  During a string eval,
912 however, the scalar may have the C<SvUTF8> flag on, and in this case its
913 octets should be interpreted as UTF-8 unless the C<use bytes> pragma
914 is in effect.  This logic may change in the future; use this function
915 instead of implementing the logic yourself.
916
917 =cut
918 */
919
920 bool
921 Perl_lex_bufutf8(pTHX)
922 {
923     return UTF;
924 }
925
926 /*
927 =for apidoc Amx|char *|lex_grow_linestr|STRLEN len
928
929 Reallocates the lexer buffer (L</PL_parser-E<gt>linestr>) to accommodate
930 at least C<len> octets (including terminating C<NUL>).  Returns a
931 pointer to the reallocated buffer.  This is necessary before making
932 any direct modification of the buffer that would increase its length.
933 L</lex_stuff_pvn> provides a more convenient way to insert text into
934 the buffer.
935
936 Do not use C<SvGROW> or C<sv_grow> directly on C<PL_parser-E<gt>linestr>;
937 this function updates all of the lexer's variables that point directly
938 into the buffer.
939
940 =cut
941 */
942
943 char *
944 Perl_lex_grow_linestr(pTHX_ STRLEN len)
945 {
946     SV *linestr;
947     char *buf;
948     STRLEN bufend_pos, bufptr_pos, oldbufptr_pos, oldoldbufptr_pos;
949     STRLEN linestart_pos, last_uni_pos, last_lop_pos, re_eval_start_pos;
950     bool current;
951
952     linestr = PL_parser->linestr;
953     buf = SvPVX(linestr);
954     if (len <= SvLEN(linestr))
955         return buf;
956
957     /* Is the lex_shared linestr SV the same as the current linestr SV?
958      * Only in this case does re_eval_start need adjusting, since it
959      * points within lex_shared->ls_linestr's buffer */
960     current = (   !PL_parser->lex_shared->ls_linestr
961                || linestr == PL_parser->lex_shared->ls_linestr);
962
963     bufend_pos = PL_parser->bufend - buf;
964     bufptr_pos = PL_parser->bufptr - buf;
965     oldbufptr_pos = PL_parser->oldbufptr - buf;
966     oldoldbufptr_pos = PL_parser->oldoldbufptr - buf;
967     linestart_pos = PL_parser->linestart - buf;
968     last_uni_pos = PL_parser->last_uni ? PL_parser->last_uni - buf : 0;
969     last_lop_pos = PL_parser->last_lop ? PL_parser->last_lop - buf : 0;
970     re_eval_start_pos = (current && PL_parser->lex_shared->re_eval_start) ?
971                             PL_parser->lex_shared->re_eval_start - buf : 0;
972
973     buf = sv_grow(linestr, len);
974
975     PL_parser->bufend = buf + bufend_pos;
976     PL_parser->bufptr = buf + bufptr_pos;
977     PL_parser->oldbufptr = buf + oldbufptr_pos;
978     PL_parser->oldoldbufptr = buf + oldoldbufptr_pos;
979     PL_parser->linestart = buf + linestart_pos;
980     if (PL_parser->last_uni)
981         PL_parser->last_uni = buf + last_uni_pos;
982     if (PL_parser->last_lop)
983         PL_parser->last_lop = buf + last_lop_pos;
984     if (current && PL_parser->lex_shared->re_eval_start)
985         PL_parser->lex_shared->re_eval_start  = buf + re_eval_start_pos;
986     return buf;
987 }
988
989 /*
990 =for apidoc Amx|void|lex_stuff_pvn|const char *pv|STRLEN len|U32 flags
991
992 Insert characters into the lexer buffer (L</PL_parser-E<gt>linestr>),
993 immediately after the current lexing point (L</PL_parser-E<gt>bufptr>),
994 reallocating the buffer if necessary.  This means that lexing code that
995 runs later will see the characters as if they had appeared in the input.
996 It is not recommended to do this as part of normal parsing, and most
997 uses of this facility run the risk of the inserted characters being
998 interpreted in an unintended manner.
999
1000 The string to be inserted is represented by C<len> octets starting
1001 at C<pv>.  These octets are interpreted as either UTF-8 or Latin-1,
1002 according to whether the C<LEX_STUFF_UTF8> flag is set in C<flags>.
1003 The characters are recoded for the lexer buffer, according to how the
1004 buffer is currently being interpreted (L</lex_bufutf8>).  If a string
1005 to be inserted is available as a Perl scalar, the L</lex_stuff_sv>
1006 function is more convenient.
1007
1008 =cut
1009 */
1010
1011 void
1012 Perl_lex_stuff_pvn(pTHX_ const char *pv, STRLEN len, U32 flags)
1013 {
1014     dVAR;
1015     char *bufptr;
1016     PERL_ARGS_ASSERT_LEX_STUFF_PVN;
1017     if (flags & ~(LEX_STUFF_UTF8))
1018         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_stuff_pvn");
1019     if (UTF) {
1020         if (flags & LEX_STUFF_UTF8) {
1021             goto plain_copy;
1022         } else {
1023             STRLEN highhalf = 0;    /* Count of variants */
1024             const char *p, *e = pv+len;
1025             for (p = pv; p != e; p++) {
1026                 if (! UTF8_IS_INVARIANT(*p)) {
1027                     highhalf++;
1028                 }
1029             }
1030             if (!highhalf)
1031                 goto plain_copy;
1032             lex_grow_linestr(SvCUR(PL_parser->linestr)+1+len+highhalf);
1033             bufptr = PL_parser->bufptr;
1034             Move(bufptr, bufptr+len+highhalf, PL_parser->bufend+1-bufptr, char);
1035             SvCUR_set(PL_parser->linestr,
1036                 SvCUR(PL_parser->linestr) + len+highhalf);
1037             PL_parser->bufend += len+highhalf;
1038             for (p = pv; p != e; p++) {
1039                 U8 c = (U8)*p;
1040                 if (! UTF8_IS_INVARIANT(c)) {
1041                     *bufptr++ = UTF8_TWO_BYTE_HI(c);
1042                     *bufptr++ = UTF8_TWO_BYTE_LO(c);
1043                 } else {
1044                     *bufptr++ = (char)c;
1045                 }
1046             }
1047         }
1048     } else {
1049         if (flags & LEX_STUFF_UTF8) {
1050             STRLEN highhalf = 0;
1051             const char *p, *e = pv+len;
1052             for (p = pv; p != e; p++) {
1053                 U8 c = (U8)*p;
1054                 if (UTF8_IS_ABOVE_LATIN1(c)) {
1055                     Perl_croak(aTHX_ "Lexing code attempted to stuff "
1056                                 "non-Latin-1 character into Latin-1 input");
1057                 } else if (UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(p, e)) {
1058                     p++;
1059                     highhalf++;
1060                 } else assert(UTF8_IS_INVARIANT(c));
1061             }
1062             if (!highhalf)
1063                 goto plain_copy;
1064             lex_grow_linestr(SvCUR(PL_parser->linestr)+1+len-highhalf);
1065             bufptr = PL_parser->bufptr;
1066             Move(bufptr, bufptr+len-highhalf, PL_parser->bufend+1-bufptr, char);
1067             SvCUR_set(PL_parser->linestr,
1068                 SvCUR(PL_parser->linestr) + len-highhalf);
1069             PL_parser->bufend += len-highhalf;
1070             p = pv;
1071             while (p < e) {
1072                 if (UTF8_IS_INVARIANT(*p)) {
1073                     *bufptr++ = *p;
1074                     p++;
1075                 }
1076                 else {
1077                     assert(p < e -1 );
1078                     *bufptr++ = EIGHT_BIT_UTF8_TO_NATIVE(*p, *(p+1));
1079                     p += 2;
1080                 }
1081             }
1082         } else {
1083           plain_copy:
1084             lex_grow_linestr(SvCUR(PL_parser->linestr)+1+len);
1085             bufptr = PL_parser->bufptr;
1086             Move(bufptr, bufptr+len, PL_parser->bufend+1-bufptr, char);
1087             SvCUR_set(PL_parser->linestr, SvCUR(PL_parser->linestr) + len);
1088             PL_parser->bufend += len;
1089             Copy(pv, bufptr, len, char);
1090         }
1091     }
1092 }
1093
1094 /*
1095 =for apidoc Amx|void|lex_stuff_pv|const char *pv|U32 flags
1096
1097 Insert characters into the lexer buffer (L</PL_parser-E<gt>linestr>),
1098 immediately after the current lexing point (L</PL_parser-E<gt>bufptr>),
1099 reallocating the buffer if necessary.  This means that lexing code that
1100 runs later will see the characters as if they had appeared in the input.
1101 It is not recommended to do this as part of normal parsing, and most
1102 uses of this facility run the risk of the inserted characters being
1103 interpreted in an unintended manner.
1104
1105 The string to be inserted is represented by octets starting at C<pv>
1106 and continuing to the first nul.  These octets are interpreted as either
1107 UTF-8 or Latin-1, according to whether the C<LEX_STUFF_UTF8> flag is set
1108 in C<flags>.  The characters are recoded for the lexer buffer, according
1109 to how the buffer is currently being interpreted (L</lex_bufutf8>).
1110 If it is not convenient to nul-terminate a string to be inserted, the
1111 L</lex_stuff_pvn> function is more appropriate.
1112
1113 =cut
1114 */
1115
1116 void
1117 Perl_lex_stuff_pv(pTHX_ const char *pv, U32 flags)
1118 {
1119     PERL_ARGS_ASSERT_LEX_STUFF_PV;
1120     lex_stuff_pvn(pv, strlen(pv), flags);
1121 }
1122
1123 /*
1124 =for apidoc Amx|void|lex_stuff_sv|SV *sv|U32 flags
1125
1126 Insert characters into the lexer buffer (L</PL_parser-E<gt>linestr>),
1127 immediately after the current lexing point (L</PL_parser-E<gt>bufptr>),
1128 reallocating the buffer if necessary.  This means that lexing code that
1129 runs later will see the characters as if they had appeared in the input.
1130 It is not recommended to do this as part of normal parsing, and most
1131 uses of this facility run the risk of the inserted characters being
1132 interpreted in an unintended manner.
1133
1134 The string to be inserted is the string value of C<sv>.  The characters
1135 are recoded for the lexer buffer, according to how the buffer is currently
1136 being interpreted (L</lex_bufutf8>).  If a string to be inserted is
1137 not already a Perl scalar, the L</lex_stuff_pvn> function avoids the
1138 need to construct a scalar.
1139
1140 =cut
1141 */
1142
1143 void
1144 Perl_lex_stuff_sv(pTHX_ SV *sv, U32 flags)
1145 {
1146     char *pv;
1147     STRLEN len;
1148     PERL_ARGS_ASSERT_LEX_STUFF_SV;
1149     if (flags)
1150         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_stuff_sv");
1151     pv = SvPV(sv, len);
1152     lex_stuff_pvn(pv, len, flags | (SvUTF8(sv) ? LEX_STUFF_UTF8 : 0));
1153 }
1154
1155 /*
1156 =for apidoc Amx|void|lex_unstuff|char *ptr
1157
1158 Discards text about to be lexed, from L</PL_parser-E<gt>bufptr> up to
1159 C<ptr>.  Text following C<ptr> will be moved, and the buffer shortened.
1160 This hides the discarded text from any lexing code that runs later,
1161 as if the text had never appeared.
1162
1163 This is not the normal way to consume lexed text.  For that, use
1164 L</lex_read_to>.
1165
1166 =cut
1167 */
1168
1169 void
1170 Perl_lex_unstuff(pTHX_ char *ptr)
1171 {
1172     char *buf, *bufend;
1173     STRLEN unstuff_len;
1174     PERL_ARGS_ASSERT_LEX_UNSTUFF;
1175     buf = PL_parser->bufptr;
1176     if (ptr < buf)
1177         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_unstuff");
1178     if (ptr == buf)
1179         return;
1180     bufend = PL_parser->bufend;
1181     if (ptr > bufend)
1182         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_unstuff");
1183     unstuff_len = ptr - buf;
1184     Move(ptr, buf, bufend+1-ptr, char);
1185     SvCUR_set(PL_parser->linestr, SvCUR(PL_parser->linestr) - unstuff_len);
1186     PL_parser->bufend = bufend - unstuff_len;
1187 }
1188
1189 /*
1190 =for apidoc Amx|void|lex_read_to|char *ptr
1191
1192 Consume text in the lexer buffer, from L</PL_parser-E<gt>bufptr> up
1193 to C<ptr>.  This advances L</PL_parser-E<gt>bufptr> to match C<ptr>,
1194 performing the correct bookkeeping whenever a newline character is passed.
1195 This is the normal way to consume lexed text.
1196
1197 Interpretation of the buffer's octets can be abstracted out by
1198 using the slightly higher-level functions L</lex_peek_unichar> and
1199 L</lex_read_unichar>.
1200
1201 =cut
1202 */
1203
1204 void
1205 Perl_lex_read_to(pTHX_ char *ptr)
1206 {
1207     char *s;
1208     PERL_ARGS_ASSERT_LEX_READ_TO;
1209     s = PL_parser->bufptr;
1210     if (ptr < s || ptr > PL_parser->bufend)
1211         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_read_to");
1212     for (; s != ptr; s++)
1213         if (*s == '\n') {
1214             COPLINE_INC_WITH_HERELINES;
1215             PL_parser->linestart = s+1;
1216         }
1217     PL_parser->bufptr = ptr;
1218 }
1219
1220 /*
1221 =for apidoc Amx|void|lex_discard_to|char *ptr
1222
1223 Discards the first part of the L</PL_parser-E<gt>linestr> buffer,
1224 up to C<ptr>.  The remaining content of the buffer will be moved, and
1225 all pointers into the buffer updated appropriately.  C<ptr> must not
1226 be later in the buffer than the position of L</PL_parser-E<gt>bufptr>:
1227 it is not permitted to discard text that has yet to be lexed.
1228
1229 Normally it is not necessarily to do this directly, because it suffices to
1230 use the implicit discarding behaviour of L</lex_next_chunk> and things
1231 based on it.  However, if a token stretches across multiple lines,
1232 and the lexing code has kept multiple lines of text in the buffer for
1233 that purpose, then after completion of the token it would be wise to
1234 explicitly discard the now-unneeded earlier lines, to avoid future
1235 multi-line tokens growing the buffer without bound.
1236
1237 =cut
1238 */
1239
1240 void
1241 Perl_lex_discard_to(pTHX_ char *ptr)
1242 {
1243     char *buf;
1244     STRLEN discard_len;
1245     PERL_ARGS_ASSERT_LEX_DISCARD_TO;
1246     buf = SvPVX(PL_parser->linestr);
1247     if (ptr < buf)
1248         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_discard_to");
1249     if (ptr == buf)
1250         return;
1251     if (ptr > PL_parser->bufptr)
1252         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_discard_to");
1253     discard_len = ptr - buf;
1254     if (PL_parser->oldbufptr < ptr)
1255         PL_parser->oldbufptr = ptr;
1256     if (PL_parser->oldoldbufptr < ptr)
1257         PL_parser->oldoldbufptr = ptr;
1258     if (PL_parser->last_uni && PL_parser->last_uni < ptr)
1259         PL_parser->last_uni = NULL;
1260     if (PL_parser->last_lop && PL_parser->last_lop < ptr)
1261         PL_parser->last_lop = NULL;
1262     Move(ptr, buf, PL_parser->bufend+1-ptr, char);
1263     SvCUR_set(PL_parser->linestr, SvCUR(PL_parser->linestr) - discard_len);
1264     PL_parser->bufend -= discard_len;
1265     PL_parser->bufptr -= discard_len;
1266     PL_parser->oldbufptr -= discard_len;
1267     PL_parser->oldoldbufptr -= discard_len;
1268     if (PL_parser->last_uni)
1269         PL_parser->last_uni -= discard_len;
1270     if (PL_parser->last_lop)
1271         PL_parser->last_lop -= discard_len;
1272 }
1273
1274 void
1275 Perl_notify_parser_that_changed_to_utf8(pTHX)
1276 {
1277     /* Called when $^H is changed to indicate that HINT_UTF8 has changed from
1278      * off to on.  At compile time, this has the effect of entering a 'use
1279      * utf8' section.  This means that any input was not previously checked for
1280      * UTF-8 (because it was off), but now we do need to check it, or our
1281      * assumptions about the input being sane could be wrong, and we could
1282      * segfault.  This routine just sets a flag so that the next time we look
1283      * at the input we do the well-formed UTF-8 check.  If we aren't in the
1284      * proper phase, there may not be a parser object, but if there is, setting
1285      * the flag is harmless */
1286
1287     if (PL_parser) {
1288         PL_parser->recheck_utf8_validity = TRUE;
1289     }
1290 }
1291
1292 /*
1293 =for apidoc Amx|bool|lex_next_chunk|U32 flags
1294
1295 Reads in the next chunk of text to be lexed, appending it to
1296 L</PL_parser-E<gt>linestr>.  This should be called when lexing code has
1297 looked to the end of the current chunk and wants to know more.  It is
1298 usual, but not necessary, for lexing to have consumed the entirety of
1299 the current chunk at this time.
1300
1301 If L</PL_parser-E<gt>bufptr> is pointing to the very end of the current
1302 chunk (i.e., the current chunk has been entirely consumed), normally the
1303 current chunk will be discarded at the same time that the new chunk is
1304 read in.  If C<flags> has the C<LEX_KEEP_PREVIOUS> bit set, the current chunk
1305 will not be discarded.  If the current chunk has not been entirely
1306 consumed, then it will not be discarded regardless of the flag.
1307
1308 Returns true if some new text was added to the buffer, or false if the
1309 buffer has reached the end of the input text.
1310
1311 =cut
1312 */
1313
1314 #define LEX_FAKE_EOF 0x80000000
1315 #define LEX_NO_TERM  0x40000000 /* here-doc */
1316
1317 bool
1318 Perl_lex_next_chunk(pTHX_ U32 flags)
1319 {
1320     SV *linestr;
1321     char *buf;
1322     STRLEN old_bufend_pos, new_bufend_pos;
1323     STRLEN bufptr_pos, oldbufptr_pos, oldoldbufptr_pos;
1324     STRLEN linestart_pos, last_uni_pos, last_lop_pos;
1325     bool got_some_for_debugger = 0;
1326     bool got_some;
1327
1328     if (flags & ~(LEX_KEEP_PREVIOUS|LEX_FAKE_EOF|LEX_NO_TERM))
1329         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_next_chunk");
1330     if (!(flags & LEX_NO_TERM) && PL_lex_inwhat)
1331         return FALSE;
1332     linestr = PL_parser->linestr;
1333     buf = SvPVX(linestr);
1334     if (!(flags & LEX_KEEP_PREVIOUS)
1335           && PL_parser->bufptr == PL_parser->bufend)
1336     {
1337         old_bufend_pos = bufptr_pos = oldbufptr_pos = oldoldbufptr_pos = 0;
1338         linestart_pos = 0;
1339         if (PL_parser->last_uni != PL_parser->bufend)
1340             PL_parser->last_uni = NULL;
1341         if (PL_parser->last_lop != PL_parser->bufend)
1342             PL_parser->last_lop = NULL;
1343         last_uni_pos = last_lop_pos = 0;
1344         *buf = 0;
1345         SvCUR(linestr) = 0;
1346     } else {
1347         old_bufend_pos = PL_parser->bufend - buf;
1348         bufptr_pos = PL_parser->bufptr - buf;
1349         oldbufptr_pos = PL_parser->oldbufptr - buf;
1350         oldoldbufptr_pos = PL_parser->oldoldbufptr - buf;
1351         linestart_pos = PL_parser->linestart - buf;
1352         last_uni_pos = PL_parser->last_uni ? PL_parser->last_uni - buf : 0;
1353         last_lop_pos = PL_parser->last_lop ? PL_parser->last_lop - buf : 0;
1354     }
1355     if (flags & LEX_FAKE_EOF) {
1356         goto eof;
1357     } else if (!PL_parser->rsfp && !PL_parser->filtered) {
1358         got_some = 0;
1359     } else if (filter_gets(linestr, old_bufend_pos)) {
1360         got_some = 1;
1361         got_some_for_debugger = 1;
1362     } else if (flags & LEX_NO_TERM) {
1363         got_some = 0;
1364     } else {
1365         if (!SvPOK(linestr))   /* can get undefined by filter_gets */
1366             SvPVCLEAR(linestr);
1367         eof:
1368         /* End of real input.  Close filehandle (unless it was STDIN),
1369          * then add implicit termination.
1370          */
1371         if (PL_parser->lex_flags & LEX_DONT_CLOSE_RSFP)
1372             PerlIO_clearerr(PL_parser->rsfp);
1373         else if (PL_parser->rsfp)
1374             (void)PerlIO_close(PL_parser->rsfp);
1375         PL_parser->rsfp = NULL;
1376         PL_parser->in_pod = PL_parser->filtered = 0;
1377         if (!PL_in_eval && PL_minus_p) {
1378             sv_catpvs(linestr,
1379                 /*{*/";}continue{print or die qq(-p destination: $!\\n);}");
1380             PL_minus_n = PL_minus_p = 0;
1381         } else if (!PL_in_eval && PL_minus_n) {
1382             sv_catpvs(linestr, /*{*/";}");
1383             PL_minus_n = 0;
1384         } else
1385             sv_catpvs(linestr, ";");
1386         got_some = 1;
1387     }
1388     buf = SvPVX(linestr);
1389     new_bufend_pos = SvCUR(linestr);
1390     PL_parser->bufend = buf + new_bufend_pos;
1391     PL_parser->bufptr = buf + bufptr_pos;
1392
1393     if (UTF) {
1394         const U8* first_bad_char_loc;
1395         if (UNLIKELY(! is_utf8_string_loc(
1396                             (U8 *) PL_parser->bufptr,
1397                                    PL_parser->bufend - PL_parser->bufptr,
1398                                    &first_bad_char_loc)))
1399         {
1400             _force_out_malformed_utf8_message(first_bad_char_loc,
1401                                               (U8 *) PL_parser->bufend,
1402                                               0,
1403                                               1 /* 1 means die */ );
1404             NOT_REACHED; /* NOTREACHED */
1405         }
1406     }
1407
1408     PL_parser->oldbufptr = buf + oldbufptr_pos;
1409     PL_parser->oldoldbufptr = buf + oldoldbufptr_pos;
1410     PL_parser->linestart = buf + linestart_pos;
1411     if (PL_parser->last_uni)
1412         PL_parser->last_uni = buf + last_uni_pos;
1413     if (PL_parser->last_lop)
1414         PL_parser->last_lop = buf + last_lop_pos;
1415     if (PL_parser->preambling != NOLINE) {
1416         CopLINE_set(PL_curcop, PL_parser->preambling + 1);
1417         PL_parser->preambling = NOLINE;
1418     }
1419     if (   got_some_for_debugger
1420         && PERLDB_LINE_OR_SAVESRC
1421         && PL_curstash != PL_debstash)
1422     {
1423         /* debugger active and we're not compiling the debugger code,
1424          * so store the line into the debugger's array of lines
1425          */
1426         update_debugger_info(NULL, buf+old_bufend_pos,
1427             new_bufend_pos-old_bufend_pos);
1428     }
1429     return got_some;
1430 }
1431
1432 /*
1433 =for apidoc Amx|I32|lex_peek_unichar|U32 flags
1434
1435 Looks ahead one (Unicode) character in the text currently being lexed.
1436 Returns the codepoint (unsigned integer value) of the next character,
1437 or -1 if lexing has reached the end of the input text.  To consume the
1438 peeked character, use L</lex_read_unichar>.
1439
1440 If the next character is in (or extends into) the next chunk of input
1441 text, the next chunk will be read in.  Normally the current chunk will be
1442 discarded at the same time, but if C<flags> has the C<LEX_KEEP_PREVIOUS>
1443 bit set, then the current chunk will not be discarded.
1444
1445 If the input is being interpreted as UTF-8 and a UTF-8 encoding error
1446 is encountered, an exception is generated.
1447
1448 =cut
1449 */
1450
1451 I32
1452 Perl_lex_peek_unichar(pTHX_ U32 flags)
1453 {
1454     dVAR;
1455     char *s, *bufend;
1456     if (flags & ~(LEX_KEEP_PREVIOUS))
1457         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_peek_unichar");
1458     s = PL_parser->bufptr;
1459     bufend = PL_parser->bufend;
1460     if (UTF) {
1461         U8 head;
1462         I32 unichar;
1463         STRLEN len, retlen;
1464         if (s == bufend) {
1465             if (!lex_next_chunk(flags))
1466                 return -1;
1467             s = PL_parser->bufptr;
1468             bufend = PL_parser->bufend;
1469         }
1470         head = (U8)*s;
1471         if (UTF8_IS_INVARIANT(head))
1472             return head;
1473         if (UTF8_IS_START(head)) {
1474             len = UTF8SKIP(&head);
1475             while ((STRLEN)(bufend-s) < len) {
1476                 if (!lex_next_chunk(flags | LEX_KEEP_PREVIOUS))
1477                     break;
1478                 s = PL_parser->bufptr;
1479                 bufend = PL_parser->bufend;
1480             }
1481         }
1482         unichar = utf8n_to_uvchr((U8*)s, bufend-s, &retlen, UTF8_CHECK_ONLY);
1483         if (retlen == (STRLEN)-1) {
1484             _force_out_malformed_utf8_message((U8 *) s,
1485                                               (U8 *) bufend,
1486                                               0,
1487                                               1 /* 1 means die */ );
1488             NOT_REACHED; /* NOTREACHED */
1489         }
1490         return unichar;
1491     } else {
1492         if (s == bufend) {
1493             if (!lex_next_chunk(flags))
1494                 return -1;
1495             s = PL_parser->bufptr;
1496         }
1497         return (U8)*s;
1498     }
1499 }
1500
1501 /*
1502 =for apidoc Amx|I32|lex_read_unichar|U32 flags
1503
1504 Reads the next (Unicode) character in the text currently being lexed.
1505 Returns the codepoint (unsigned integer value) of the character read,
1506 and moves L</PL_parser-E<gt>bufptr> past the character, or returns -1
1507 if lexing has reached the end of the input text.  To non-destructively
1508 examine the next character, use L</lex_peek_unichar> instead.
1509
1510 If the next character is in (or extends into) the next chunk of input
1511 text, the next chunk will be read in.  Normally the current chunk will be
1512 discarded at the same time, but if C<flags> has the C<LEX_KEEP_PREVIOUS>
1513 bit set, then the current chunk will not be discarded.
1514
1515 If the input is being interpreted as UTF-8 and a UTF-8 encoding error
1516 is encountered, an exception is generated.
1517
1518 =cut
1519 */
1520
1521 I32
1522 Perl_lex_read_unichar(pTHX_ U32 flags)
1523 {
1524     I32 c;
1525     if (flags & ~(LEX_KEEP_PREVIOUS))
1526         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_read_unichar");
1527     c = lex_peek_unichar(flags);
1528     if (c != -1) {
1529         if (c == '\n')
1530             COPLINE_INC_WITH_HERELINES;
1531         if (UTF)
1532             PL_parser->bufptr += UTF8SKIP(PL_parser->bufptr);
1533         else
1534             ++(PL_parser->bufptr);
1535     }
1536     return c;
1537 }
1538
1539 /*
1540 =for apidoc Amx|void|lex_read_space|U32 flags
1541
1542 Reads optional spaces, in Perl style, in the text currently being
1543 lexed.  The spaces may include ordinary whitespace characters and
1544 Perl-style comments.  C<#line> directives are processed if encountered.
1545 L</PL_parser-E<gt>bufptr> is moved past the spaces, so that it points
1546 at a non-space character (or the end of the input text).
1547
1548 If spaces extend into the next chunk of input text, the next chunk will
1549 be read in.  Normally the current chunk will be discarded at the same
1550 time, but if C<flags> has the C<LEX_KEEP_PREVIOUS> bit set, then the current
1551 chunk will not be discarded.
1552
1553 =cut
1554 */
1555
1556 #define LEX_NO_INCLINE    0x40000000
1557 #define LEX_NO_NEXT_CHUNK 0x80000000
1558
1559 void
1560 Perl_lex_read_space(pTHX_ U32 flags)
1561 {
1562     char *s, *bufend;
1563     const bool can_incline = !(flags & LEX_NO_INCLINE);
1564     bool need_incline = 0;
1565     if (flags & ~(LEX_KEEP_PREVIOUS|LEX_NO_NEXT_CHUNK|LEX_NO_INCLINE))
1566         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_read_space");
1567     s = PL_parser->bufptr;
1568     bufend = PL_parser->bufend;
1569     while (1) {
1570         char c = *s;
1571         if (c == '#') {
1572             do {
1573                 c = *++s;
1574             } while (!(c == '\n' || (c == 0 && s == bufend)));
1575         } else if (c == '\n') {
1576             s++;
1577             if (can_incline) {
1578                 PL_parser->linestart = s;
1579                 if (s == bufend)
1580                     need_incline = 1;
1581                 else
1582                     incline(s);
1583             }
1584         } else if (isSPACE(c)) {
1585             s++;
1586         } else if (c == 0 && s == bufend) {
1587             bool got_more;
1588             line_t l;
1589             if (flags & LEX_NO_NEXT_CHUNK)
1590                 break;
1591             PL_parser->bufptr = s;
1592             l = CopLINE(PL_curcop);
1593             CopLINE(PL_curcop) += PL_parser->herelines + 1;
1594             got_more = lex_next_chunk(flags);
1595             CopLINE_set(PL_curcop, l);
1596             s = PL_parser->bufptr;
1597             bufend = PL_parser->bufend;
1598             if (!got_more)
1599                 break;
1600             if (can_incline && need_incline && PL_parser->rsfp) {
1601                 incline(s);
1602                 need_incline = 0;
1603             }
1604         } else if (!c) {
1605             s++;
1606         } else {
1607             break;
1608         }
1609     }
1610     PL_parser->bufptr = s;
1611 }
1612
1613 /*
1614
1615 =for apidoc EXMp|bool|validate_proto|SV *name|SV *proto|bool warn
1616
1617 This function performs syntax checking on a prototype, C<proto>.
1618 If C<warn> is true, any illegal characters or mismatched brackets
1619 will trigger illegalproto warnings, declaring that they were
1620 detected in the prototype for C<name>.
1621
1622 The return value is C<true> if this is a valid prototype, and
1623 C<false> if it is not, regardless of whether C<warn> was C<true> or
1624 C<false>.
1625
1626 Note that C<NULL> is a valid C<proto> and will always return C<true>.
1627
1628 =cut
1629
1630  */
1631
1632 bool
1633 Perl_validate_proto(pTHX_ SV *name, SV *proto, bool warn)
1634 {
1635     STRLEN len, origlen;
1636     char *p;
1637     bool bad_proto = FALSE;
1638     bool in_brackets = FALSE;
1639     bool after_slash = FALSE;
1640     char greedy_proto = ' ';
1641     bool proto_after_greedy_proto = FALSE;
1642     bool must_be_last = FALSE;
1643     bool underscore = FALSE;
1644     bool bad_proto_after_underscore = FALSE;
1645
1646     PERL_ARGS_ASSERT_VALIDATE_PROTO;
1647
1648     if (!proto)
1649         return TRUE;
1650
1651     p = SvPV(proto, len);
1652     origlen = len;
1653     for (; len--; p++) {
1654         if (!isSPACE(*p)) {
1655             if (must_be_last)
1656                 proto_after_greedy_proto = TRUE;
1657             if (underscore) {
1658                 if (!strchr(";@%", *p))
1659                     bad_proto_after_underscore = TRUE;
1660                 underscore = FALSE;
1661             }
1662             if (!strchr("$@%*;[]&\\_+", *p) || *p == '\0') {
1663                 bad_proto = TRUE;
1664             }
1665             else {
1666                 if (*p == '[')
1667                     in_brackets = TRUE;
1668                 else if (*p == ']')
1669                     in_brackets = FALSE;
1670                 else if ((*p == '@' || *p == '%')
1671                          && !after_slash
1672                          && !in_brackets )
1673                 {
1674                     must_be_last = TRUE;
1675                     greedy_proto = *p;
1676                 }
1677                 else if (*p == '_')
1678                     underscore = TRUE;
1679             }
1680             if (*p == '\\')
1681                 after_slash = TRUE;
1682             else
1683                 after_slash = FALSE;
1684         }
1685     }
1686
1687     if (warn) {
1688         SV *tmpsv = newSVpvs_flags("", SVs_TEMP);
1689         p -= origlen;
1690         p = SvUTF8(proto)
1691             ? sv_uni_display(tmpsv, newSVpvn_flags(p, origlen, SVs_TEMP | SVf_UTF8),
1692                              origlen, UNI_DISPLAY_ISPRINT)
1693             : pv_pretty(tmpsv, p, origlen, 60, NULL, NULL, PERL_PV_ESCAPE_NONASCII);
1694
1695         if (proto_after_greedy_proto)
1696             Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO),
1697                         "Prototype after '%c' for %" SVf " : %s",
1698                         greedy_proto, SVfARG(name), p);
1699         if (in_brackets)
1700             Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO),
1701                         "Missing ']' in prototype for %" SVf " : %s",
1702                         SVfARG(name), p);
1703         if (bad_proto)
1704             Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO),
1705                         "Illegal character in prototype for %" SVf " : %s",
1706                         SVfARG(name), p);
1707         if (bad_proto_after_underscore)
1708             Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO),
1709                         "Illegal character after '_' in prototype for %" SVf " : %s",
1710                         SVfARG(name), p);
1711     }
1712
1713     return (! (proto_after_greedy_proto || bad_proto) );
1714 }
1715
1716 /*
1717  * S_incline
1718  * This subroutine has nothing to do with tilting, whether at windmills
1719  * or pinball tables.  Its name is short for "increment line".  It
1720  * increments the current line number in CopLINE(PL_curcop) and checks
1721  * to see whether the line starts with a comment of the form
1722  *    # line 500 "foo.pm"
1723  * If so, it sets the current line number and file to the values in the comment.
1724  */
1725
1726 STATIC void
1727 S_incline(pTHX_ const char *s)
1728 {
1729     const char *t;
1730     const char *n;
1731     const char *e;
1732     line_t line_num;
1733     UV uv;
1734
1735     PERL_ARGS_ASSERT_INCLINE;
1736
1737     COPLINE_INC_WITH_HERELINES;
1738     if (!PL_rsfp && !PL_parser->filtered && PL_lex_state == LEX_NORMAL
1739      && s+1 == PL_bufend && *s == ';') {
1740         /* fake newline in string eval */
1741         CopLINE_dec(PL_curcop);
1742         return;
1743     }
1744     if (*s++ != '#')
1745         return;
1746     while (SPACE_OR_TAB(*s))
1747         s++;
1748     if (strEQs(s, "line"))
1749         s += 4;
1750     else
1751         return;
1752     if (SPACE_OR_TAB(*s))
1753         s++;
1754     else
1755         return;
1756     while (SPACE_OR_TAB(*s))
1757         s++;
1758     if (!isDIGIT(*s))
1759         return;
1760
1761     n = s;
1762     while (isDIGIT(*s))
1763         s++;
1764     if (!SPACE_OR_TAB(*s) && *s != '\r' && *s != '\n' && *s != '\0')
1765         return;
1766     while (SPACE_OR_TAB(*s))
1767         s++;
1768     if (*s == '"' && (t = strchr(s+1, '"'))) {
1769         s++;
1770         e = t + 1;
1771     }
1772     else {
1773         t = s;
1774         while (*t && !isSPACE(*t))
1775             t++;
1776         e = t;
1777     }
1778     while (SPACE_OR_TAB(*e) || *e == '\r' || *e == '\f')
1779         e++;
1780     if (*e != '\n' && *e != '\0')
1781         return;         /* false alarm */
1782
1783     if (!grok_atoUV(n, &uv, &e))
1784         return;
1785     line_num = ((line_t)uv) - 1;
1786
1787     if (t - s > 0) {
1788         const STRLEN len = t - s;
1789
1790         if (!PL_rsfp && !PL_parser->filtered) {
1791             /* must copy *{"::_<(eval N)[oldfilename:L]"}
1792              * to *{"::_<newfilename"} */
1793             /* However, the long form of evals is only turned on by the
1794                debugger - usually they're "(eval %lu)" */
1795             GV * const cfgv = CopFILEGV(PL_curcop);
1796             if (cfgv) {
1797                 char smallbuf[128];
1798                 STRLEN tmplen2 = len;
1799                 char *tmpbuf2;
1800                 GV *gv2;
1801
1802                 if (tmplen2 + 2 <= sizeof smallbuf)
1803                     tmpbuf2 = smallbuf;
1804                 else
1805                     Newx(tmpbuf2, tmplen2 + 2, char);
1806
1807                 tmpbuf2[0] = '_';
1808                 tmpbuf2[1] = '<';
1809
1810                 memcpy(tmpbuf2 + 2, s, tmplen2);
1811                 tmplen2 += 2;
1812
1813                 gv2 = *(GV**)hv_fetch(PL_defstash, tmpbuf2, tmplen2, TRUE);
1814                 if (!isGV(gv2)) {
1815                     gv_init(gv2, PL_defstash, tmpbuf2, tmplen2, FALSE);
1816                     /* adjust ${"::_<newfilename"} to store the new file name */
1817                     GvSV(gv2) = newSVpvn(tmpbuf2 + 2, tmplen2 - 2);
1818                     /* The line number may differ. If that is the case,
1819                        alias the saved lines that are in the array.
1820                        Otherwise alias the whole array. */
1821                     if (CopLINE(PL_curcop) == line_num) {
1822                         GvHV(gv2) = MUTABLE_HV(SvREFCNT_inc(GvHV(cfgv)));
1823                         GvAV(gv2) = MUTABLE_AV(SvREFCNT_inc(GvAV(cfgv)));
1824                     }
1825                     else if (GvAV(cfgv)) {
1826                         AV * const av = GvAV(cfgv);
1827                         const I32 start = CopLINE(PL_curcop)+1;
1828                         I32 items = AvFILLp(av) - start;
1829                         if (items > 0) {
1830                             AV * const av2 = GvAVn(gv2);
1831                             SV **svp = AvARRAY(av) + start;
1832                             I32 l = (I32)line_num+1;
1833                             while (items--)
1834                                 av_store(av2, l++, SvREFCNT_inc(*svp++));
1835                         }
1836                     }
1837                 }
1838
1839                 if (tmpbuf2 != smallbuf) Safefree(tmpbuf2);
1840             }
1841         }
1842         CopFILE_free(PL_curcop);
1843         CopFILE_setn(PL_curcop, s, len);
1844     }
1845     CopLINE_set(PL_curcop, line_num);
1846 }
1847
1848 STATIC void
1849 S_update_debugger_info(pTHX_ SV *orig_sv, const char *const buf, STRLEN len)
1850 {
1851     AV *av = CopFILEAVx(PL_curcop);
1852     if (av) {
1853         SV * sv;
1854         if (PL_parser->preambling == NOLINE) sv = newSV_type(SVt_PVMG);
1855         else {
1856             sv = *av_fetch(av, 0, 1);
1857             SvUPGRADE(sv, SVt_PVMG);
1858         }
1859         if (!SvPOK(sv)) SvPVCLEAR(sv);
1860         if (orig_sv)
1861             sv_catsv(sv, orig_sv);
1862         else
1863             sv_catpvn(sv, buf, len);
1864         if (!SvIOK(sv)) {
1865             (void)SvIOK_on(sv);
1866             SvIV_set(sv, 0);
1867         }
1868         if (PL_parser->preambling == NOLINE)
1869             av_store(av, CopLINE(PL_curcop), sv);
1870     }
1871 }
1872
1873 /*
1874  * skipspace
1875  * Called to gobble the appropriate amount and type of whitespace.
1876  * Skips comments as well.
1877  * Returns the next character after the whitespace that is skipped.
1878  *
1879  * peekspace
1880  * Same thing, but look ahead without incrementing line numbers or
1881  * adjusting PL_linestart.
1882  */
1883
1884 #define skipspace(s) skipspace_flags(s, 0)
1885 #define peekspace(s) skipspace_flags(s, LEX_NO_INCLINE)
1886
1887 STATIC char *
1888 S_skipspace_flags(pTHX_ char *s, U32 flags)
1889 {
1890     PERL_ARGS_ASSERT_SKIPSPACE_FLAGS;
1891     if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) {
1892         while (s < PL_bufend && (SPACE_OR_TAB(*s) || !*s))
1893             s++;
1894     } else {
1895         STRLEN bufptr_pos = PL_bufptr - SvPVX(PL_linestr);
1896         PL_bufptr = s;
1897         lex_read_space(flags | LEX_KEEP_PREVIOUS |
1898                 (PL_lex_inwhat || PL_lex_state == LEX_FORMLINE ?
1899                     LEX_NO_NEXT_CHUNK : 0));
1900         s = PL_bufptr;
1901         PL_bufptr = SvPVX(PL_linestr) + bufptr_pos;
1902         if (PL_linestart > PL_bufptr)
1903             PL_bufptr = PL_linestart;
1904         return s;
1905     }
1906     return s;
1907 }
1908
1909 /*
1910  * S_check_uni
1911  * Check the unary operators to ensure there's no ambiguity in how they're
1912  * used.  An ambiguous piece of code would be:
1913  *     rand + 5
1914  * This doesn't mean rand() + 5.  Because rand() is a unary operator,
1915  * the +5 is its argument.
1916  */
1917
1918 STATIC void
1919 S_check_uni(pTHX)
1920 {
1921     const char *s;
1922     const char *t;
1923
1924     if (PL_oldoldbufptr != PL_last_uni)
1925         return;
1926     while (isSPACE(*PL_last_uni))
1927         PL_last_uni++;
1928     s = PL_last_uni;
1929     while (isWORDCHAR_lazy_if_safe(s, PL_bufend, UTF) || *s == '-')
1930         s += UTF ? UTF8SKIP(s) : 1;
1931     if ((t = strchr(s, '(')) && t < PL_bufptr)
1932         return;
1933
1934     Perl_ck_warner_d(aTHX_ packWARN(WARN_AMBIGUOUS),
1935                      "Warning: Use of \"%" UTF8f "\" without parentheses is ambiguous",
1936                      UTF8fARG(UTF, (int)(s - PL_last_uni), PL_last_uni));
1937 }
1938
1939 /*
1940  * LOP : macro to build a list operator.  Its behaviour has been replaced
1941  * with a subroutine, S_lop() for which LOP is just another name.
1942  */
1943
1944 #define LOP(f,x) return lop(f,x,s)
1945
1946 /*
1947  * S_lop
1948  * Build a list operator (or something that might be one).  The rules:
1949  *  - if we have a next token, then it's a list operator (no parens) for
1950  *    which the next token has already been parsed; e.g.,
1951  *       sort foo @args
1952  *       sort foo (@args)
1953  *  - if the next thing is an opening paren, then it's a function
1954  *  - else it's a list operator
1955  */
1956
1957 STATIC I32
1958 S_lop(pTHX_ I32 f, U8 x, char *s)
1959 {
1960     PERL_ARGS_ASSERT_LOP;
1961
1962     pl_yylval.ival = f;
1963     CLINE;
1964     PL_bufptr = s;
1965     PL_last_lop = PL_oldbufptr;
1966     PL_last_lop_op = (OPCODE)f;
1967     if (PL_nexttoke)
1968         goto lstop;
1969     PL_expect = x;
1970     if (*s == '(')
1971         return REPORT(FUNC);
1972     s = skipspace(s);
1973     if (*s == '(')
1974         return REPORT(FUNC);
1975     else {
1976         lstop:
1977         if (!PL_lex_allbrackets && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
1978             PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
1979         return REPORT(LSTOP);
1980     }
1981 }
1982
1983 /*
1984  * S_force_next
1985  * When the lexer realizes it knows the next token (for instance,
1986  * it is reordering tokens for the parser) then it can call S_force_next
1987  * to know what token to return the next time the lexer is called.  Caller
1988  * will need to set PL_nextval[] and possibly PL_expect to ensure
1989  * the lexer handles the token correctly.
1990  */
1991
1992 STATIC void
1993 S_force_next(pTHX_ I32 type)
1994 {
1995 #ifdef DEBUGGING
1996     if (DEBUG_T_TEST) {
1997         PerlIO_printf(Perl_debug_log, "### forced token:\n");
1998         tokereport(type, &NEXTVAL_NEXTTOKE);
1999     }
2000 #endif
2001     assert(PL_nexttoke < C_ARRAY_LENGTH(PL_nexttype));
2002     PL_nexttype[PL_nexttoke] = type;
2003     PL_nexttoke++;
2004 }
2005
2006 /*
2007  * S_postderef
2008  *
2009  * This subroutine handles postfix deref syntax after the arrow has already
2010  * been emitted.  @* $* etc. are emitted as two separate token right here.
2011  * @[ @{ %[ %{ *{ are emitted also as two tokens, but this function emits
2012  * only the first, leaving yylex to find the next.
2013  */
2014
2015 static int
2016 S_postderef(pTHX_ int const funny, char const next)
2017 {
2018     assert(funny == DOLSHARP || strchr("$@%&*", funny));
2019     if (next == '*') {
2020         PL_expect = XOPERATOR;
2021         if (PL_lex_state == LEX_INTERPNORMAL && !PL_lex_brackets) {
2022             assert('@' == funny || '$' == funny || DOLSHARP == funny);
2023             PL_lex_state = LEX_INTERPEND;
2024             if ('@' == funny)
2025                 force_next(POSTJOIN);
2026         }
2027         force_next(next);
2028         PL_bufptr+=2;
2029     }
2030     else {
2031         if ('@' == funny && PL_lex_state == LEX_INTERPNORMAL
2032          && !PL_lex_brackets)
2033             PL_lex_dojoin = 2;
2034         PL_expect = XOPERATOR;
2035         PL_bufptr++;
2036     }
2037     return funny;
2038 }
2039
2040 void
2041 Perl_yyunlex(pTHX)
2042 {
2043     int yyc = PL_parser->yychar;
2044     if (yyc != YYEMPTY) {
2045         if (yyc) {
2046             NEXTVAL_NEXTTOKE = PL_parser->yylval;
2047             if (yyc == '{'/*}*/ || yyc == HASHBRACK || yyc == '['/*]*/) {
2048                 PL_lex_allbrackets--;
2049                 PL_lex_brackets--;
2050                 yyc |= (3<<24) | (PL_lex_brackstack[PL_lex_brackets] << 16);
2051             } else if (yyc == '('/*)*/) {
2052                 PL_lex_allbrackets--;
2053                 yyc |= (2<<24);
2054             }
2055             force_next(yyc);
2056         }
2057         PL_parser->yychar = YYEMPTY;
2058     }
2059 }
2060
2061 STATIC SV *
2062 S_newSV_maybe_utf8(pTHX_ const char *const start, STRLEN len)
2063 {
2064     SV * const sv = newSVpvn_utf8(start, len,
2065                           !IN_BYTES
2066                           && UTF
2067                           && !is_utf8_invariant_string((const U8*)start, len)
2068                           && is_utf8_string((const U8*)start, len));
2069     return sv;
2070 }
2071
2072 /*
2073  * S_force_word
2074  * When the lexer knows the next thing is a word (for instance, it has
2075  * just seen -> and it knows that the next char is a word char, then
2076  * it calls S_force_word to stick the next word into the PL_nexttoke/val
2077  * lookahead.
2078  *
2079  * Arguments:
2080  *   char *start : buffer position (must be within PL_linestr)
2081  *   int token   : PL_next* will be this type of bare word
2082  *                 (e.g., METHOD,BAREWORD)
2083  *   int check_keyword : if true, Perl checks to make sure the word isn't
2084  *       a keyword (do this if the word is a label, e.g. goto FOO)
2085  *   int allow_pack : if true, : characters will also be allowed (require,
2086  *       use, etc. do this)
2087  */
2088
2089 STATIC char *
2090 S_force_word(pTHX_ char *start, int token, int check_keyword, int allow_pack)
2091 {
2092     char *s;
2093     STRLEN len;
2094
2095     PERL_ARGS_ASSERT_FORCE_WORD;
2096
2097     start = skipspace(start);
2098     s = start;
2099     if (   isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)
2100         || (allow_pack && *s == ':' && s[1] == ':') )
2101     {
2102         s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, allow_pack, &len);
2103         if (check_keyword) {
2104           char *s2 = PL_tokenbuf;
2105           STRLEN len2 = len;
2106           if (allow_pack && len > 6 && strEQs(s2, "CORE::"))
2107             s2 += 6, len2 -= 6;
2108           if (keyword(s2, len2, 0))
2109             return start;
2110         }
2111         if (token == METHOD) {
2112             s = skipspace(s);
2113             if (*s == '(')
2114                 PL_expect = XTERM;
2115             else {
2116                 PL_expect = XOPERATOR;
2117             }
2118         }
2119         NEXTVAL_NEXTTOKE.opval
2120             = newSVOP(OP_CONST,0,
2121                            S_newSV_maybe_utf8(aTHX_ PL_tokenbuf, len));
2122         NEXTVAL_NEXTTOKE.opval->op_private |= OPpCONST_BARE;
2123         force_next(token);
2124     }
2125     return s;
2126 }
2127
2128 /*
2129  * S_force_ident
2130  * Called when the lexer wants $foo *foo &foo etc, but the program
2131  * text only contains the "foo" portion.  The first argument is a pointer
2132  * to the "foo", and the second argument is the type symbol to prefix.
2133  * Forces the next token to be a "BAREWORD".
2134  * Creates the symbol if it didn't already exist (via gv_fetchpv()).
2135  */
2136
2137 STATIC void
2138 S_force_ident(pTHX_ const char *s, int kind)
2139 {
2140     PERL_ARGS_ASSERT_FORCE_IDENT;
2141
2142     if (s[0]) {
2143         const STRLEN len = s[1] ? strlen(s) : 1; /* s = "\"" see yylex */
2144         OP* const o = newSVOP(OP_CONST, 0, newSVpvn_flags(s, len,
2145                                                                 UTF ? SVf_UTF8 : 0));
2146         NEXTVAL_NEXTTOKE.opval = o;
2147         force_next(BAREWORD);
2148         if (kind) {
2149             o->op_private = OPpCONST_ENTERED;
2150             /* XXX see note in pp_entereval() for why we forgo typo
2151                warnings if the symbol must be introduced in an eval.
2152                GSAR 96-10-12 */
2153             gv_fetchpvn_flags(s, len,
2154                               (PL_in_eval ? GV_ADDMULTI
2155                               : GV_ADD) | ( UTF ? SVf_UTF8 : 0 ),
2156                               kind == '$' ? SVt_PV :
2157                               kind == '@' ? SVt_PVAV :
2158                               kind == '%' ? SVt_PVHV :
2159                               SVt_PVGV
2160                               );
2161         }
2162     }
2163 }
2164
2165 static void
2166 S_force_ident_maybe_lex(pTHX_ char pit)
2167 {
2168     NEXTVAL_NEXTTOKE.ival = pit;
2169     force_next('p');
2170 }
2171
2172 NV
2173 Perl_str_to_version(pTHX_ SV *sv)
2174 {
2175     NV retval = 0.0;
2176     NV nshift = 1.0;
2177     STRLEN len;
2178     const char *start = SvPV_const(sv,len);
2179     const char * const end = start + len;
2180     const bool utf = cBOOL(SvUTF8(sv));
2181
2182     PERL_ARGS_ASSERT_STR_TO_VERSION;
2183
2184     while (start < end) {
2185         STRLEN skip;
2186         UV n;
2187         if (utf)
2188             n = utf8n_to_uvchr((U8*)start, len, &skip, 0);
2189         else {
2190             n = *(U8*)start;
2191             skip = 1;
2192         }
2193         retval += ((NV)n)/nshift;
2194         start += skip;
2195         nshift *= 1000;
2196     }
2197     return retval;
2198 }
2199
2200 /*
2201  * S_force_version
2202  * Forces the next token to be a version number.
2203  * If the next token appears to be an invalid version number, (e.g. "v2b"),
2204  * and if "guessing" is TRUE, then no new token is created (and the caller
2205  * must use an alternative parsing method).
2206  */
2207
2208 STATIC char *
2209 S_force_version(pTHX_ char *s, int guessing)
2210 {
2211     OP *version = NULL;
2212     char *d;
2213
2214     PERL_ARGS_ASSERT_FORCE_VERSION;
2215
2216     s = skipspace(s);
2217
2218     d = s;
2219     if (*d == 'v')
2220         d++;
2221     if (isDIGIT(*d)) {
2222         while (isDIGIT(*d) || *d == '_' || *d == '.')
2223             d++;
2224         if (*d == ';' || isSPACE(*d) || *d == '{' || *d == '}' || !*d) {
2225             SV *ver;
2226             s = scan_num(s, &pl_yylval);
2227             version = pl_yylval.opval;
2228             ver = cSVOPx(version)->op_sv;
2229             if (SvPOK(ver) && !SvNIOK(ver)) {
2230                 SvUPGRADE(ver, SVt_PVNV);
2231                 SvNV_set(ver, str_to_version(ver));
2232                 SvNOK_on(ver);          /* hint that it is a version */
2233             }
2234         }
2235         else if (guessing) {
2236             return s;
2237         }
2238     }
2239
2240     /* NOTE: The parser sees the package name and the VERSION swapped */
2241     NEXTVAL_NEXTTOKE.opval = version;
2242     force_next(BAREWORD);
2243
2244     return s;
2245 }
2246
2247 /*
2248  * S_force_strict_version
2249  * Forces the next token to be a version number using strict syntax rules.
2250  */
2251
2252 STATIC char *
2253 S_force_strict_version(pTHX_ char *s)
2254 {
2255     OP *version = NULL;
2256     const char *errstr = NULL;
2257
2258     PERL_ARGS_ASSERT_FORCE_STRICT_VERSION;
2259
2260     while (isSPACE(*s)) /* leading whitespace */
2261         s++;
2262
2263     if (is_STRICT_VERSION(s,&errstr)) {
2264         SV *ver = newSV(0);
2265         s = (char *)scan_version(s, ver, 0);
2266         version = newSVOP(OP_CONST, 0, ver);
2267     }
2268     else if ((*s != ';' && *s != '{' && *s != '}' )
2269              && (s = skipspace(s), (*s != ';' && *s != '{' && *s != '}' )))
2270     {
2271         PL_bufptr = s;
2272         if (errstr)
2273             yyerror(errstr); /* version required */
2274         return s;
2275     }
2276
2277     /* NOTE: The parser sees the package name and the VERSION swapped */
2278     NEXTVAL_NEXTTOKE.opval = version;
2279     force_next(BAREWORD);
2280
2281     return s;
2282 }
2283
2284 /*
2285  * S_tokeq
2286  * Turns any \\ into \ in a quoted string passed in in 'sv', returning 'sv',
2287  * modified as necessary.  However, if HINT_NEW_STRING is on, 'sv' is
2288  * unchanged, and a new SV containing the modified input is returned.
2289  */
2290
2291 STATIC SV *
2292 S_tokeq(pTHX_ SV *sv)
2293 {
2294     char *s;
2295     char *send;
2296     char *d;
2297     SV *pv = sv;
2298
2299     PERL_ARGS_ASSERT_TOKEQ;
2300
2301     assert (SvPOK(sv));
2302     assert (SvLEN(sv));
2303     assert (!SvIsCOW(sv));
2304     if (SvTYPE(sv) >= SVt_PVIV && SvIVX(sv) == -1) /* <<'heredoc' */
2305         goto finish;
2306     s = SvPVX(sv);
2307     send = SvEND(sv);
2308     /* This is relying on the SV being "well formed" with a trailing '\0'  */
2309     while (s < send && !(*s == '\\' && s[1] == '\\'))
2310         s++;
2311     if (s == send)
2312         goto finish;
2313     d = s;
2314     if ( PL_hints & HINT_NEW_STRING ) {
2315         pv = newSVpvn_flags(SvPVX_const(pv), SvCUR(sv),
2316                             SVs_TEMP | SvUTF8(sv));
2317     }
2318     while (s < send) {
2319         if (*s == '\\') {
2320             if (s + 1 < send && (s[1] == '\\'))
2321                 s++;            /* all that, just for this */
2322         }
2323         *d++ = *s++;
2324     }
2325     *d = '\0';
2326     SvCUR_set(sv, d - SvPVX_const(sv));
2327   finish:
2328     if ( PL_hints & HINT_NEW_STRING )
2329        return new_constant(NULL, 0, "q", sv, pv, "q", 1);
2330     return sv;
2331 }
2332
2333 /*
2334  * Now come three functions related to double-quote context,
2335  * S_sublex_start, S_sublex_push, and S_sublex_done.  They're used when
2336  * converting things like "\u\Lgnat" into ucfirst(lc("gnat")).  They
2337  * interact with PL_lex_state, and create fake ( ... ) argument lists
2338  * to handle functions and concatenation.
2339  * For example,
2340  *   "foo\lbar"
2341  * is tokenised as
2342  *    stringify ( const[foo] concat lcfirst ( const[bar] ) )
2343  */
2344
2345 /*
2346  * S_sublex_start
2347  * Assumes that pl_yylval.ival is the op we're creating (e.g. OP_LCFIRST).
2348  *
2349  * Pattern matching will set PL_lex_op to the pattern-matching op to
2350  * make (we return THING if pl_yylval.ival is OP_NULL, PMFUNC otherwise).
2351  *
2352  * OP_CONST is easy--just make the new op and return.
2353  *
2354  * Everything else becomes a FUNC.
2355  *
2356  * Sets PL_lex_state to LEX_INTERPPUSH unless ival was OP_NULL or we
2357  * had an OP_CONST.  This just sets us up for a
2358  * call to S_sublex_push().
2359  */
2360
2361 STATIC I32
2362 S_sublex_start(pTHX)
2363 {
2364     const I32 op_type = pl_yylval.ival;
2365
2366     if (op_type == OP_NULL) {
2367         pl_yylval.opval = PL_lex_op;
2368         PL_lex_op = NULL;
2369         return THING;
2370     }
2371     if (op_type == OP_CONST) {
2372         SV *sv = PL_lex_stuff;
2373         PL_lex_stuff = NULL;
2374         sv = tokeq(sv);
2375
2376         if (SvTYPE(sv) == SVt_PVIV) {
2377             /* Overloaded constants, nothing fancy: Convert to SVt_PV: */
2378             STRLEN len;
2379             const char * const p = SvPV_const(sv, len);
2380             SV * const nsv = newSVpvn_flags(p, len, SvUTF8(sv));
2381             SvREFCNT_dec(sv);
2382             sv = nsv;
2383         }
2384         pl_yylval.opval = newSVOP(op_type, 0, sv);
2385         return THING;
2386     }
2387
2388     PL_parser->lex_super_state = PL_lex_state;
2389     PL_parser->lex_sub_inwhat = (U16)op_type;
2390     PL_parser->lex_sub_op = PL_lex_op;
2391     PL_lex_state = LEX_INTERPPUSH;
2392
2393     PL_expect = XTERM;
2394     if (PL_lex_op) {
2395         pl_yylval.opval = PL_lex_op;
2396         PL_lex_op = NULL;
2397         return PMFUNC;
2398     }
2399     else
2400         return FUNC;
2401 }
2402
2403 /*
2404  * S_sublex_push
2405  * Create a new scope to save the lexing state.  The scope will be
2406  * ended in S_sublex_done.  Returns a '(', starting the function arguments
2407  * to the uc, lc, etc. found before.
2408  * Sets PL_lex_state to LEX_INTERPCONCAT.
2409  */
2410
2411 STATIC I32
2412 S_sublex_push(pTHX)
2413 {
2414     LEXSHARED *shared;
2415     const bool is_heredoc = PL_multi_close == '<';
2416     ENTER;
2417
2418     PL_lex_state = PL_parser->lex_super_state;
2419     SAVEI8(PL_lex_dojoin);
2420     SAVEI32(PL_lex_brackets);
2421     SAVEI32(PL_lex_allbrackets);
2422     SAVEI32(PL_lex_formbrack);
2423     SAVEI8(PL_lex_fakeeof);
2424     SAVEI32(PL_lex_casemods);
2425     SAVEI32(PL_lex_starts);
2426     SAVEI8(PL_lex_state);
2427     SAVESPTR(PL_lex_repl);
2428     SAVEVPTR(PL_lex_inpat);
2429     SAVEI16(PL_lex_inwhat);
2430     if (is_heredoc)
2431     {
2432         SAVECOPLINE(PL_curcop);
2433         SAVEI32(PL_multi_end);
2434         SAVEI32(PL_parser->herelines);
2435         PL_parser->herelines = 0;
2436     }
2437     SAVEIV(PL_multi_close);
2438     SAVEPPTR(PL_bufptr);
2439     SAVEPPTR(PL_bufend);
2440     SAVEPPTR(PL_oldbufptr);
2441     SAVEPPTR(PL_oldoldbufptr);
2442     SAVEPPTR(PL_last_lop);
2443     SAVEPPTR(PL_last_uni);
2444     SAVEPPTR(PL_linestart);
2445     SAVESPTR(PL_linestr);
2446     SAVEGENERICPV(PL_lex_brackstack);
2447     SAVEGENERICPV(PL_lex_casestack);
2448     SAVEGENERICPV(PL_parser->lex_shared);
2449     SAVEBOOL(PL_parser->lex_re_reparsing);
2450     SAVEI32(PL_copline);
2451
2452     /* The here-doc parser needs to be able to peek into outer lexing
2453        scopes to find the body of the here-doc.  So we put PL_linestr and
2454        PL_bufptr into lex_shared, to â€˜share’ those values.
2455      */
2456     PL_parser->lex_shared->ls_linestr = PL_linestr;
2457     PL_parser->lex_shared->ls_bufptr  = PL_bufptr;
2458
2459     PL_linestr = PL_lex_stuff;
2460     PL_lex_repl = PL_parser->lex_sub_repl;
2461     PL_lex_stuff = NULL;
2462     PL_parser->lex_sub_repl = NULL;
2463
2464     /* Arrange for PL_lex_stuff to be freed on scope exit, in case it gets
2465        set for an inner quote-like operator and then an error causes scope-
2466        popping.  We must not have a PL_lex_stuff value left dangling, as
2467        that breaks assumptions elsewhere.  See bug #123617.  */
2468     SAVEGENERICSV(PL_lex_stuff);
2469     SAVEGENERICSV(PL_parser->lex_sub_repl);
2470
2471     PL_bufend = PL_bufptr = PL_oldbufptr = PL_oldoldbufptr = PL_linestart
2472         = SvPVX(PL_linestr);
2473     PL_bufend += SvCUR(PL_linestr);
2474     PL_last_lop = PL_last_uni = NULL;
2475     SAVEFREESV(PL_linestr);
2476     if (PL_lex_repl) SAVEFREESV(PL_lex_repl);
2477
2478     PL_lex_dojoin = FALSE;
2479     PL_lex_brackets = PL_lex_formbrack = 0;
2480     PL_lex_allbrackets = 0;
2481     PL_lex_fakeeof = LEX_FAKEEOF_NEVER;
2482     Newx(PL_lex_brackstack, 120, char);
2483     Newx(PL_lex_casestack, 12, char);
2484     PL_lex_casemods = 0;
2485     *PL_lex_casestack = '\0';
2486     PL_lex_starts = 0;
2487     PL_lex_state = LEX_INTERPCONCAT;
2488     if (is_heredoc)
2489         CopLINE_set(PL_curcop, (line_t)PL_multi_start);
2490     PL_copline = NOLINE;
2491
2492     Newxz(shared, 1, LEXSHARED);
2493     shared->ls_prev = PL_parser->lex_shared;
2494     PL_parser->lex_shared = shared;
2495
2496     PL_lex_inwhat = PL_parser->lex_sub_inwhat;
2497     if (PL_lex_inwhat == OP_TRANSR) PL_lex_inwhat = OP_TRANS;
2498     if (PL_lex_inwhat == OP_MATCH || PL_lex_inwhat == OP_QR || PL_lex_inwhat == OP_SUBST)
2499         PL_lex_inpat = PL_parser->lex_sub_op;
2500     else
2501         PL_lex_inpat = NULL;
2502
2503     PL_parser->lex_re_reparsing = cBOOL(PL_in_eval & EVAL_RE_REPARSING);
2504     PL_in_eval &= ~EVAL_RE_REPARSING;
2505
2506     return '(';
2507 }
2508
2509 /*
2510  * S_sublex_done
2511  * Restores lexer state after a S_sublex_push.
2512  */
2513
2514 STATIC I32
2515 S_sublex_done(pTHX)
2516 {
2517     if (!PL_lex_starts++) {
2518         SV * const sv = newSVpvs("");
2519         if (SvUTF8(PL_linestr))
2520             SvUTF8_on(sv);
2521         PL_expect = XOPERATOR;
2522         pl_yylval.opval = newSVOP(OP_CONST, 0, sv);
2523         return THING;
2524     }
2525
2526     if (PL_lex_casemods) {              /* oops, we've got some unbalanced parens */
2527         PL_lex_state = LEX_INTERPCASEMOD;
2528         return yylex();
2529     }
2530
2531     /* Is there a right-hand side to take care of? (s//RHS/ or tr//RHS/) */
2532     assert(PL_lex_inwhat != OP_TRANSR);
2533     if (PL_lex_repl) {
2534         assert (PL_lex_inwhat == OP_SUBST || PL_lex_inwhat == OP_TRANS);
2535         PL_linestr = PL_lex_repl;
2536         PL_lex_inpat = 0;
2537         PL_bufend = PL_bufptr = PL_oldbufptr = PL_oldoldbufptr = PL_linestart = SvPVX(PL_linestr);
2538         PL_bufend += SvCUR(PL_linestr);
2539         PL_last_lop = PL_last_uni = NULL;
2540         PL_lex_dojoin = FALSE;
2541         PL_lex_brackets = 0;
2542         PL_lex_allbrackets = 0;
2543         PL_lex_fakeeof = LEX_FAKEEOF_NEVER;
2544         PL_lex_casemods = 0;
2545         *PL_lex_casestack = '\0';
2546         PL_lex_starts = 0;
2547         if (SvEVALED(PL_lex_repl)) {
2548             PL_lex_state = LEX_INTERPNORMAL;
2549             PL_lex_starts++;
2550             /*  we don't clear PL_lex_repl here, so that we can check later
2551                 whether this is an evalled subst; that means we rely on the
2552                 logic to ensure sublex_done() is called again only via the
2553                 branch (in yylex()) that clears PL_lex_repl, else we'll loop */
2554         }
2555         else {
2556             PL_lex_state = LEX_INTERPCONCAT;
2557             PL_lex_repl = NULL;
2558         }
2559         if (SvTYPE(PL_linestr) >= SVt_PVNV) {
2560             CopLINE(PL_curcop) +=
2561                 ((XPVNV*)SvANY(PL_linestr))->xnv_u.xnv_lines
2562                  + PL_parser->herelines;
2563             PL_parser->herelines = 0;
2564         }
2565         return '/';
2566     }
2567     else {
2568         const line_t l = CopLINE(PL_curcop);
2569         LEAVE;
2570         if (PL_multi_close == '<')
2571             PL_parser->herelines += l - PL_multi_end;
2572         PL_bufend = SvPVX(PL_linestr);
2573         PL_bufend += SvCUR(PL_linestr);
2574         PL_expect = XOPERATOR;
2575         return ')';
2576     }
2577 }
2578
2579 STATIC SV*
2580 S_get_and_check_backslash_N_name(pTHX_ const char* s, const char* const e)
2581 {
2582     /* <s> points to first character of interior of \N{}, <e> to one beyond the
2583      * interior, hence to the "}".  Finds what the name resolves to, returning
2584      * an SV* containing it; NULL if no valid one found */
2585
2586     SV* res = newSVpvn_flags(s, e - s, UTF ? SVf_UTF8 : 0);
2587
2588     HV * table;
2589     SV **cvp;
2590     SV *cv;
2591     SV *rv;
2592     HV *stash;
2593     const char* backslash_ptr = s - 3; /* Points to the <\> of \N{... */
2594
2595     PERL_ARGS_ASSERT_GET_AND_CHECK_BACKSLASH_N_NAME;
2596
2597     if (!SvCUR(res)) {
2598         deprecate_fatal_in("5.28", "Unknown charname '' is deprecated");
2599         return res;
2600     }
2601
2602     res = new_constant( NULL, 0, "charnames", res, NULL, backslash_ptr,
2603                         /* include the <}> */
2604                         e - backslash_ptr + 1);
2605     if (! SvPOK(res)) {
2606         SvREFCNT_dec_NN(res);
2607         return NULL;
2608     }
2609
2610     /* See if the charnames handler is the Perl core's, and if so, we can skip
2611      * the validation needed for a user-supplied one, as Perl's does its own
2612      * validation. */
2613     table = GvHV(PL_hintgv);             /* ^H */
2614     cvp = hv_fetchs(table, "charnames", FALSE);
2615     if (cvp && (cv = *cvp) && SvROK(cv) && (rv = SvRV(cv),
2616         SvTYPE(rv) == SVt_PVCV) && ((stash = CvSTASH(rv)) != NULL))
2617     {
2618         const char * const name = HvNAME(stash);
2619         if (HvNAMELEN(stash) == sizeof("_charnames")-1
2620          && strEQ(name, "_charnames")) {
2621            return res;
2622        }
2623     }
2624
2625     /* Here, it isn't Perl's charname handler.  We can't rely on a
2626      * user-supplied handler to validate the input name.  For non-ut8 input,
2627      * look to see that the first character is legal.  Then loop through the
2628      * rest checking that each is a continuation */
2629
2630     /* This code makes the reasonable assumption that the only Latin1-range
2631      * characters that begin a character name alias are alphabetic, otherwise
2632      * would have to create a isCHARNAME_BEGIN macro */
2633
2634     if (! UTF) {
2635         if (! isALPHAU(*s)) {
2636             goto bad_charname;
2637         }
2638         s++;
2639         while (s < e) {
2640             if (! isCHARNAME_CONT(*s)) {
2641                 goto bad_charname;
2642             }
2643             if (*s == ' ' && *(s-1) == ' ') {
2644                 goto multi_spaces;
2645             }
2646             s++;
2647         }
2648     }
2649     else {
2650         /* Similarly for utf8.  For invariants can check directly; for other
2651          * Latin1, can calculate their code point and check; otherwise  use a
2652          * swash */
2653         if (UTF8_IS_INVARIANT(*s)) {
2654             if (! isALPHAU(*s)) {
2655                 goto bad_charname;
2656             }
2657             s++;
2658         } else if (UTF8_IS_DOWNGRADEABLE_START(*s)) {
2659             if (! isALPHAU(EIGHT_BIT_UTF8_TO_NATIVE(*s, *(s+1)))) {
2660                 goto bad_charname;
2661             }
2662             s += 2;
2663         }
2664         else {
2665             if (! PL_utf8_charname_begin) {
2666                 U8 flags = _CORE_SWASH_INIT_ACCEPT_INVLIST;
2667                 PL_utf8_charname_begin = _core_swash_init("utf8",
2668                                                         "_Perl_Charname_Begin",
2669                                                         &PL_sv_undef,
2670                                                         1, 0, NULL, &flags);
2671             }
2672             if (! swash_fetch(PL_utf8_charname_begin, (U8 *) s, TRUE)) {
2673                 goto bad_charname;
2674             }
2675             s += UTF8SKIP(s);
2676         }
2677
2678         while (s < e) {
2679             if (UTF8_IS_INVARIANT(*s)) {
2680                 if (! isCHARNAME_CONT(*s)) {
2681                     goto bad_charname;
2682                 }
2683                 if (*s == ' ' && *(s-1) == ' ') {
2684                     goto multi_spaces;
2685                 }
2686                 s++;
2687             }
2688             else if (UTF8_IS_DOWNGRADEABLE_START(*s)) {
2689                 if (! isCHARNAME_CONT(EIGHT_BIT_UTF8_TO_NATIVE(*s, *(s+1))))
2690                 {
2691                     goto bad_charname;
2692                 }
2693                 s += 2;
2694             }
2695             else {
2696                 if (! PL_utf8_charname_continue) {
2697                     U8 flags = _CORE_SWASH_INIT_ACCEPT_INVLIST;
2698                     PL_utf8_charname_continue = _core_swash_init("utf8",
2699                                                 "_Perl_Charname_Continue",
2700                                                 &PL_sv_undef,
2701                                                 1, 0, NULL, &flags);
2702                 }
2703                 if (! swash_fetch(PL_utf8_charname_continue, (U8 *) s, TRUE)) {
2704                     goto bad_charname;
2705                 }
2706                 s += UTF8SKIP(s);
2707             }
2708         }
2709     }
2710     if (*(s-1) == ' ') {
2711         yyerror_pv(
2712             Perl_form(aTHX_
2713             "charnames alias definitions may not contain trailing "
2714             "white-space; marked by <-- HERE in %.*s<-- HERE %.*s",
2715             (int)(s - backslash_ptr + 1), backslash_ptr,
2716             (int)(e - s + 1), s + 1
2717             ),
2718         UTF ? SVf_UTF8 : 0);
2719         return NULL;
2720     }
2721
2722     if (SvUTF8(res)) { /* Don't accept malformed input */
2723         const U8* first_bad_char_loc;
2724         STRLEN len;
2725         const char* const str = SvPV_const(res, len);
2726         if (UNLIKELY(! is_utf8_string_loc((U8 *) str, len,
2727                                           &first_bad_char_loc)))
2728         {
2729             _force_out_malformed_utf8_message(first_bad_char_loc,
2730                                               (U8 *) PL_parser->bufend,
2731                                               0,
2732                                               0 /* 0 means don't die */ );
2733             yyerror_pv(
2734               Perl_form(aTHX_
2735                 "Malformed UTF-8 returned by %.*s immediately after '%.*s'",
2736                  (int) (e - backslash_ptr + 1), backslash_ptr,
2737                  (int) ((char *) first_bad_char_loc - str), str
2738               ),
2739               SVf_UTF8);
2740             return NULL;
2741         }
2742     }
2743
2744     return res;
2745
2746   bad_charname: {
2747
2748         /* The final %.*s makes sure that should the trailing NUL be missing
2749          * that this print won't run off the end of the string */
2750         yyerror_pv(
2751           Perl_form(aTHX_
2752             "Invalid character in \\N{...}; marked by <-- HERE in %.*s<-- HERE %.*s",
2753             (int)(s - backslash_ptr + 1), backslash_ptr,
2754             (int)(e - s + 1), s + 1
2755           ),
2756           UTF ? SVf_UTF8 : 0);
2757         return NULL;
2758     }
2759
2760   multi_spaces:
2761         yyerror_pv(
2762           Perl_form(aTHX_
2763             "charnames alias definitions may not contain a sequence of "
2764             "multiple spaces; marked by <-- HERE in %.*s<-- HERE %.*s",
2765             (int)(s - backslash_ptr + 1), backslash_ptr,
2766             (int)(e - s + 1), s + 1
2767           ),
2768           UTF ? SVf_UTF8 : 0);
2769         return NULL;
2770 }
2771
2772 /*
2773   scan_const
2774
2775   Extracts the next constant part of a pattern, double-quoted string,
2776   or transliteration.  This is terrifying code.
2777
2778   For example, in parsing the double-quoted string "ab\x63$d", it would
2779   stop at the '$' and return an OP_CONST containing 'abc'.
2780
2781   It looks at PL_lex_inwhat and PL_lex_inpat to find out whether it's
2782   processing a pattern (PL_lex_inpat is true), a transliteration
2783   (PL_lex_inwhat == OP_TRANS is true), or a double-quoted string.
2784
2785   Returns a pointer to the character scanned up to. If this is
2786   advanced from the start pointer supplied (i.e. if anything was
2787   successfully parsed), will leave an OP_CONST for the substring scanned
2788   in pl_yylval. Caller must intuit reason for not parsing further
2789   by looking at the next characters herself.
2790
2791   In patterns:
2792     expand:
2793       \N{FOO}  => \N{U+hex_for_character_FOO}
2794       (if FOO expands to multiple characters, expands to \N{U+xx.XX.yy ...})
2795
2796     pass through:
2797         all other \-char, including \N and \N{ apart from \N{ABC}
2798
2799     stops on:
2800         @ and $ where it appears to be a var, but not for $ as tail anchor
2801         \l \L \u \U \Q \E
2802         (?{  or  (??{
2803
2804   In transliterations:
2805     characters are VERY literal, except for - not at the start or end
2806     of the string, which indicates a range.  However some backslash sequences
2807     are recognized: \r, \n, and the like
2808                     \007 \o{}, \x{}, \N{}
2809     If all elements in the transliteration are below 256,
2810     scan_const expands the range to the full set of intermediate
2811     characters. If the range is in utf8, the hyphen is replaced with
2812     a certain range mark which will be handled by pmtrans() in op.c.
2813
2814   In double-quoted strings:
2815     backslashes:
2816       all those recognized in transliterations
2817       deprecated backrefs: \1 (in substitution replacements)
2818       case and quoting: \U \Q \E
2819     stops on @ and $
2820
2821   scan_const does *not* construct ops to handle interpolated strings.
2822   It stops processing as soon as it finds an embedded $ or @ variable
2823   and leaves it to the caller to work out what's going on.
2824
2825   embedded arrays (whether in pattern or not) could be:
2826       @foo, @::foo, @'foo, @{foo}, @$foo, @+, @-.
2827
2828   $ in double-quoted strings must be the symbol of an embedded scalar.
2829
2830   $ in pattern could be $foo or could be tail anchor.  Assumption:
2831   it's a tail anchor if $ is the last thing in the string, or if it's
2832   followed by one of "()| \r\n\t"
2833
2834   \1 (backreferences) are turned into $1 in substitutions
2835
2836   The structure of the code is
2837       while (there's a character to process) {
2838           handle transliteration ranges
2839           skip regexp comments /(?#comment)/ and codes /(?{code})/
2840           skip #-initiated comments in //x patterns
2841           check for embedded arrays
2842           check for embedded scalars
2843           if (backslash) {
2844               deprecate \1 in substitution replacements
2845               handle string-changing backslashes \l \U \Q \E, etc.
2846               switch (what was escaped) {
2847                   handle \- in a transliteration (becomes a literal -)
2848                   if a pattern and not \N{, go treat as regular character
2849                   handle \132 (octal characters)
2850                   handle \x15 and \x{1234} (hex characters)
2851                   handle \N{name} (named characters, also \N{3,5} in a pattern)
2852                   handle \cV (control characters)
2853                   handle printf-style backslashes (\f, \r, \n, etc)
2854               } (end switch)
2855               continue
2856           } (end if backslash)
2857           handle regular character
2858     } (end while character to read)
2859
2860 */
2861
2862 STATIC char *
2863 S_scan_const(pTHX_ char *start)
2864 {
2865     char *send = PL_bufend;             /* end of the constant */
2866     SV *sv = newSV(send - start);       /* sv for the constant.  See note below
2867                                            on sizing. */
2868     char *s = start;                    /* start of the constant */
2869     char *d = SvPVX(sv);                /* destination for copies */
2870     bool dorange = FALSE;               /* are we in a translit range? */
2871     bool didrange = FALSE;              /* did we just finish a range? */
2872     bool in_charclass = FALSE;          /* within /[...]/ */
2873     bool has_utf8 = FALSE;              /* Output constant is UTF8 */
2874     bool  this_utf8 = cBOOL(UTF);       /* Is the source string assumed to be
2875                                            UTF8?  But, this can show as true
2876                                            when the source isn't utf8, as for
2877                                            example when it is entirely composed
2878                                            of hex constants */
2879     STRLEN utf8_variant_count = 0;      /* When not in UTF-8, this counts the
2880                                            number of characters found so far
2881                                            that will expand (into 2 bytes)
2882                                            should we have to convert to
2883                                            UTF-8) */
2884     SV *res;                            /* result from charnames */
2885     STRLEN offset_to_max;   /* The offset in the output to where the range
2886                                high-end character is temporarily placed */
2887
2888     /* Does something require special handling in tr/// ?  This avoids extra
2889      * work in a less likely case.  As such, khw didn't feel it was worth
2890      * adding any branches to the more mainline code to handle this, which
2891      * means that this doesn't get set in some circumstances when things like
2892      * \x{100} get expanded out.  As a result there needs to be extra testing
2893      * done in the tr code */
2894     bool has_above_latin1 = FALSE;
2895
2896     /* Note on sizing:  The scanned constant is placed into sv, which is
2897      * initialized by newSV() assuming one byte of output for every byte of
2898      * input.  This routine expects newSV() to allocate an extra byte for a
2899      * trailing NUL, which this routine will append if it gets to the end of
2900      * the input.  There may be more bytes of input than output (eg., \N{LATIN
2901      * CAPITAL LETTER A}), or more output than input if the constant ends up
2902      * recoded to utf8, but each time a construct is found that might increase
2903      * the needed size, SvGROW() is called.  Its size parameter each time is
2904      * based on the best guess estimate at the time, namely the length used so
2905      * far, plus the length the current construct will occupy, plus room for
2906      * the trailing NUL, plus one byte for every input byte still unscanned */
2907
2908     UV uv = UV_MAX; /* Initialize to weird value to try to catch any uses
2909                        before set */
2910 #ifdef EBCDIC
2911     int backslash_N = 0;            /* ? was the character from \N{} */
2912     int non_portable_endpoint = 0;  /* ? In a range is an endpoint
2913                                        platform-specific like \x65 */
2914 #endif
2915
2916     PERL_ARGS_ASSERT_SCAN_CONST;
2917
2918     assert(PL_lex_inwhat != OP_TRANSR);
2919     if (PL_lex_inwhat == OP_TRANS && PL_parser->lex_sub_op) {
2920         /* If we are doing a trans and we know we want UTF8 set expectation */
2921         has_utf8   = PL_parser->lex_sub_op->op_private & (OPpTRANS_FROM_UTF|OPpTRANS_TO_UTF);
2922         this_utf8  = PL_parser->lex_sub_op->op_private & (PL_lex_repl ? OPpTRANS_FROM_UTF : OPpTRANS_TO_UTF);
2923     }
2924
2925     /* Protect sv from errors and fatal warnings. */
2926     ENTER_with_name("scan_const");
2927     SAVEFREESV(sv);
2928
2929     while (s < send
2930            || dorange   /* Handle tr/// range at right edge of input */
2931     ) {
2932
2933         /* get transliterations out of the way (they're most literal) */
2934         if (PL_lex_inwhat == OP_TRANS) {
2935
2936             /* But there isn't any special handling necessary unless there is a
2937              * range, so for most cases we just drop down and handle the value
2938              * as any other.  There are two exceptions.
2939              *
2940              * 1.  A hyphen indicates that we are actually going to have a
2941              *     range.  In this case, skip the '-', set a flag, then drop
2942              *     down to handle what should be the end range value.
2943              * 2.  After we've handled that value, the next time through, that
2944              *     flag is set and we fix up the range.
2945              *
2946              * Ranges entirely within Latin1 are expanded out entirely, in
2947              * order to make the transliteration a simple table look-up.
2948              * Ranges that extend above Latin1 have to be done differently, so
2949              * there is no advantage to expanding them here, so they are
2950              * stored here as Min, ILLEGAL_UTF8_BYTE, Max.  The illegal byte
2951              * signifies a hyphen without any possible ambiguity.  On EBCDIC
2952              * machines, if the range is expressed as Unicode, the Latin1
2953              * portion is expanded out even if the range extends above
2954              * Latin1.  This is because each code point in it has to be
2955              * processed here individually to get its native translation */
2956
2957             if (! dorange) {
2958
2959                 /* Here, we don't think we're in a range.  If the new character
2960                  * is not a hyphen; or if it is a hyphen, but it's too close to
2961                  * either edge to indicate a range, then it's a regular
2962                  * character. */
2963                 if (*s != '-' || s >= send - 1 || s == start) {
2964
2965                     /* A regular character.  Process like any other, but first
2966                      * clear any flags */
2967                     didrange = FALSE;
2968                     dorange = FALSE;
2969 #ifdef EBCDIC
2970                     non_portable_endpoint = 0;
2971                     backslash_N = 0;
2972 #endif
2973                     /* The tests here for being above Latin1 and similar ones
2974                      * in the following 'else' suffice to find all such
2975                      * occurences in the constant, except those added by a
2976                      * backslash escape sequence, like \x{100}.  Mostly, those
2977                      * set 'has_above_latin1' as appropriate */
2978                     if (this_utf8 && UTF8_IS_ABOVE_LATIN1(*s)) {
2979                         has_above_latin1 = TRUE;
2980                     }
2981
2982                     /* Drops down to generic code to process current byte */
2983                 }
2984                 else {  /* Is a '-' in the context where it means a range */
2985                     if (didrange) { /* Something like y/A-C-Z// */
2986                         Perl_croak(aTHX_ "Ambiguous range in transliteration"
2987                                          " operator");
2988                     }
2989
2990                     dorange = TRUE;
2991
2992                     s++;    /* Skip past the hyphen */
2993
2994                     /* d now points to where the end-range character will be
2995                      * placed.  Save it so won't have to go finding it later,
2996                      * and drop down to get that character.  (Actually we
2997                      * instead save the offset, to handle the case where a
2998                      * realloc in the meantime could change the actual
2999                      * pointer).  We'll finish processing the range the next
3000                      * time through the loop */
3001                     offset_to_max = d - SvPVX_const(sv);
3002
3003                     if (this_utf8 && UTF8_IS_ABOVE_LATIN1(*s)) {
3004                         has_above_latin1 = TRUE;
3005                     }
3006
3007                     /* Drops down to generic code to process current byte */
3008                 }
3009             }  /* End of not a range */
3010             else {
3011                 /* Here we have parsed a range.  Now must handle it.  At this
3012                  * point:
3013                  * 'sv' is a SV* that contains the output string we are
3014                  *      constructing.  The final two characters in that string
3015                  *      are the range start and range end, in order.
3016                  * 'd'  points to just beyond the range end in the 'sv' string,
3017                  *      where we would next place something
3018                  * 'offset_to_max' is the offset in 'sv' at which the character
3019                  *      (the range's maximum end point) before 'd'  begins.
3020                  */
3021                 char * max_ptr = SvPVX(sv) + offset_to_max;
3022                 char * min_ptr;
3023                 IV range_min;
3024                 IV range_max;   /* last character in range */
3025                 STRLEN grow;
3026                 Size_t offset_to_min = 0;
3027                 Size_t extras = 0;
3028 #ifdef EBCDIC
3029                 bool convert_unicode;
3030                 IV real_range_max = 0;
3031 #endif
3032                 /* Get the code point values of the range ends. */
3033                 if (has_utf8) {
3034                     /* We know the utf8 is valid, because we just constructed
3035                      * it ourselves in previous loop iterations */
3036                     min_ptr = (char*) utf8_hop( (U8*) max_ptr, -1);
3037                     range_min = valid_utf8_to_uvchr( (U8*) min_ptr, NULL);
3038                     range_max = valid_utf8_to_uvchr( (U8*) max_ptr, NULL);
3039
3040                     /* This compensates for not all code setting
3041                      * 'has_above_latin1', so that we don't skip stuff that
3042                      * should be executed */
3043                     if (range_max > 255) {
3044                         has_above_latin1 = TRUE;
3045                     }
3046                 }
3047                 else {
3048                     min_ptr = max_ptr - 1;
3049                     range_min = * (U8*) min_ptr;
3050                     range_max = * (U8*) max_ptr;
3051                 }
3052
3053                 /* If the range is just a single code point, like tr/a-a/.../,
3054                  * that code point is already in the output, twice.  We can
3055                  * just back up over the second instance and avoid all the rest
3056                  * of the work.  But if it is a variant character, it's been
3057                  * counted twice, so decrement.  (This unlikely scenario is
3058                  * special cased, like the one for a range of 2 code points
3059                  * below, only because the main-line code below needs a range
3060                  * of 3 or more to work without special casing.  Might as well
3061                  * get it out of the way now.) */
3062                 if (UNLIKELY(range_max == range_min)) {
3063                     d = max_ptr;
3064                     if (! has_utf8 && ! UVCHR_IS_INVARIANT(range_max)) {
3065                         utf8_variant_count--;
3066                     }
3067                     goto range_done;
3068                 }
3069
3070 #ifdef EBCDIC
3071                 /* On EBCDIC platforms, we may have to deal with portable
3072                  * ranges.  These happen if at least one range endpoint is a
3073                  * Unicode value (\N{...}), or if the range is a subset of
3074                  * [A-Z] or [a-z], and both ends are literal characters,
3075                  * like 'A', and not like \x{C1} */
3076                 convert_unicode =
3077                                cBOOL(backslash_N)   /* \N{} forces Unicode,
3078                                                        hence portable range */
3079                     || (     ! non_portable_endpoint
3080                         && ((  isLOWER_A(range_min) && isLOWER_A(range_max))
3081                            || (isUPPER_A(range_min) && isUPPER_A(range_max))));
3082                 if (convert_unicode) {
3083
3084                     /* Special handling is needed for these portable ranges.
3085                      * They are defined to be in Unicode terms, which includes
3086                      * all the Unicode code points between the end points.
3087                      * Convert to Unicode to get the Unicode range.  Later we
3088                      * will convert each code point in the range back to
3089                      * native.  */
3090                     range_min = NATIVE_TO_UNI(range_min);
3091                     range_max = NATIVE_TO_UNI(range_max);
3092                 }
3093 #endif
3094
3095                 if (range_min > range_max) {
3096 #ifdef EBCDIC
3097                     if (convert_unicode) {
3098                         /* Need to convert back to native for meaningful
3099                          * messages for this platform */
3100                         range_min = UNI_TO_NATIVE(range_min);
3101                         range_max = UNI_TO_NATIVE(range_max);
3102                     }
3103 #endif
3104                     /* Use the characters themselves for the error message if
3105                      * ASCII printables; otherwise some visible representation
3106                      * of them */
3107                     if (isPRINT_A(range_min) && isPRINT_A(range_max)) {
3108                         Perl_croak(aTHX_
3109                          "Invalid range \"%c-%c\" in transliteration operator",
3110                          (char)range_min, (char)range_max);
3111                     }
3112 #ifdef EBCDIC
3113                     else if (convert_unicode) {
3114         /* diag_listed_as: Invalid range "%s" in transliteration operator */
3115                         Perl_croak(aTHX_
3116                            "Invalid range \"\\N{U+%04" UVXf "}-\\N{U+%04"
3117                            UVXf "}\" in transliteration operator",
3118                            range_min, range_max);
3119                     }
3120 #endif
3121                     else {
3122         /* diag_listed_as: Invalid range "%s" in transliteration operator */
3123                         Perl_croak(aTHX_
3124                            "Invalid range \"\\x{%04" UVXf "}-\\x{%04" UVXf "}\""
3125                            " in transliteration operator",
3126                            range_min, range_max);
3127                     }
3128                 }
3129
3130                 /* If the range is exactly two code points long, they are
3131                  * already both in the output */
3132                 if (UNLIKELY(range_min + 1 == range_max)) {
3133                     goto range_done;
3134                 }
3135
3136                 /* Here the range contains at least 3 code points */
3137
3138                 if (has_utf8) {
3139
3140                     /* If everything in the transliteration is below 256, we
3141                      * can avoid special handling later.  A translation table
3142                      * for each of those bytes is created by op.c.  So we
3143                      * expand out all ranges to their constituent code points.
3144                      * But if we've encountered something above 255, the
3145                      * expanding won't help, so skip doing that.  But if it's
3146                      * EBCDIC, we may have to look at each character below 256
3147                      * if we have to convert to/from Unicode values */
3148                     if (   has_above_latin1
3149 #ifdef EBCDIC
3150                         && (range_min > 255 || ! convert_unicode)
3151 #endif
3152                     ) {
3153                         /* Move the high character one byte to the right; then
3154                          * insert between it and the range begin, an illegal
3155                          * byte which serves to indicate this is a range (using
3156                          * a '-' would be ambiguous). */
3157                         char *e = d++;
3158                         while (e-- > max_ptr) {
3159                             *(e + 1) = *e;
3160                         }
3161                         *(e + 1) = (char) ILLEGAL_UTF8_BYTE;
3162                         goto range_done;
3163                     }
3164
3165                     /* Here, we're going to expand out the range.  For EBCDIC
3166                      * the range can extend above 255 (not so in ASCII), so
3167                      * for EBCDIC, split it into the parts above and below
3168                      * 255/256 */
3169 #ifdef EBCDIC
3170                     if (range_max > 255) {
3171                         real_range_max = range_max;
3172                         range_max = 255;
3173                     }
3174 #endif
3175                 }
3176
3177                 /* Here we need to expand out the string to contain each
3178                  * character in the range.  Grow the output to handle this.
3179                  * For non-UTF8, we need a byte for each code point in the
3180                  * range, minus the three that we've already allocated for: the
3181                  * hyphen, the min, and the max.  For UTF-8, we need this
3182                  * plus an extra byte for each code point that occupies two
3183                  * bytes (is variant) when in UTF-8 (except we've already
3184                  * allocated for the end points, including if they are
3185                  * variants).  For ASCII platforms and Unicode ranges on EBCDIC
3186                  * platforms, it's easy to calculate a precise number.  To
3187                  * start, we count the variants in the range, which we need
3188                  * elsewhere in this function anyway.  (For the case where it
3189                  * isn't easy to calculate, 'extras' has been initialized to 0,
3190                  * and the calculation is done in a loop further down.) */
3191 #ifdef EBCDIC
3192                 if (convert_unicode)
3193 #endif
3194                 {
3195                     /* This is executed unconditionally on ASCII, and for
3196                      * Unicode ranges on EBCDIC.  Under these conditions, all
3197                      * code points above a certain value are variant; and none
3198                      * under that value are.  We just need to find out how much
3199                      * of the range is above that value.  We don't count the
3200                      * end points here, as they will already have been counted
3201                      * as they were parsed. */
3202                     if (range_min >= UTF_CONTINUATION_MARK) {
3203
3204                         /* The whole range is made up of variants */
3205                         extras = (range_max - 1) - (range_min + 1) + 1;
3206                     }
3207                     else if (range_max >= UTF_CONTINUATION_MARK) {
3208
3209                         /* Only the higher portion of the range is variants */
3210                         extras = (range_max - 1) - UTF_CONTINUATION_MARK + 1;
3211                     }
3212
3213                     utf8_variant_count += extras;
3214                 }
3215
3216                 /* The base growth is the number of code points in the range,
3217                  * not including the endpoints, which have already been sized
3218                  * for (and output).  We don't subtract for the hyphen, as it
3219                  * has been parsed but not output, and the SvGROW below is
3220                  * based only on what's been output plus what's left to parse.
3221                  * */
3222                 grow = (range_max - 1) - (range_min + 1) + 1;
3223
3224                 if (has_utf8) {
3225 #ifdef EBCDIC
3226                     /* In some cases in EBCDIC, we haven't yet calculated a
3227                      * precise amount needed for the UTF-8 variants.  Just
3228                      * assume the worst case, that everything will expand by a
3229                      * byte */
3230                     if (! convert_unicode) {
3231                         grow *= 2;
3232                     }
3233                     else
3234 #endif
3235                     {
3236                         /* Otherwise we know exactly how many variants there
3237                          * are in the range. */
3238                         grow += extras;
3239                     }
3240                 }
3241
3242                 /* Grow, but position the output to overwrite the range min end
3243                  * point, because in some cases we overwrite that */
3244                 SvCUR_set(sv, d - SvPVX_const(sv));
3245                 offset_to_min = min_ptr - SvPVX_const(sv);
3246
3247                 /* See Note on sizing above. */
3248                 d = offset_to_min + SvGROW(sv, SvCUR(sv)
3249                                              + (send - s)
3250                                              + grow
3251                                              + 1 /* Trailing NUL */ );
3252
3253                 /* Now, we can expand out the range. */
3254 #ifdef EBCDIC
3255                 if (convert_unicode) {
3256                     SSize_t i;
3257
3258                     /* Recall that the min and max are now in Unicode terms, so
3259                      * we have to convert each character to its native
3260                      * equivalent */
3261                     if (has_utf8) {
3262                         for (i = range_min; i <= range_max; i++) {
3263                             append_utf8_from_native_byte(
3264                                                     LATIN1_TO_NATIVE((U8) i),
3265                                                     (U8 **) &d);
3266                         }
3267                     }
3268                     else {
3269                         for (i = range_min; i <= range_max; i++) {
3270                             *d++ = (char)LATIN1_TO_NATIVE((U8) i);
3271                         }
3272                     }
3273                 }
3274                 else
3275 #endif
3276                 /* Always gets run for ASCII, and sometimes for EBCDIC. */
3277                 {
3278                     /* Here, no conversions are necessary, which means that the
3279                      * first character in the range is already in 'd' and
3280                      * valid, so we can skip overwriting it */
3281                     if (has_utf8) {
3282                         SSize_t i;
3283                         d += UTF8SKIP(d);
3284                         for (i = range_min + 1; i <= range_max; i++) {
3285                             append_utf8_from_native_byte((U8) i, (U8 **) &d);
3286                         }
3287                     }
3288                     else {
3289                         SSize_t i;
3290                         d++;
3291                         assert(range_min + 1 <= range_max);
3292                         for (i = range_min + 1; i < range_max; i++) {
3293 #ifdef EBCDIC
3294                             /* In this case on EBCDIC, we haven't calculated
3295                              * the variants.  Do it here, as we go along */
3296                             if (! UVCHR_IS_INVARIANT(i)) {
3297                                 utf8_variant_count++;
3298                             }
3299 #endif
3300                             *d++ = (char)i;
3301                         }
3302
3303                         /* The range_max is done outside the loop so as to
3304                          * avoid having to special case not incrementing
3305                          * 'utf8_variant_count' on EBCDIC (it's already been
3306                          * counted when originally parsed) */
3307                         *d++ = (char) range_max;
3308                     }
3309                 }
3310
3311 #ifdef EBCDIC
3312                 /* If the original range extended above 255, add in that
3313                  * portion. */
3314                 if (real_range_max) {
3315                     *d++ = (char) UTF8_TWO_BYTE_HI(0x100);
3316                     *d++ = (char) UTF8_TWO_BYTE_LO(0x100);
3317                     if (real_range_max > 0x100) {
3318                         if (real_range_max > 0x101) {
3319                             *d++ = (char) ILLEGAL_UTF8_BYTE;
3320                         }
3321                         d = (char*)uvchr_to_utf8((U8*)d, real_range_max);
3322                     }
3323                 }
3324 #endif
3325
3326               range_done:
3327                 /* mark the range as done, and continue */
3328                 didrange = TRUE;
3329                 dorange = FALSE;
3330 #ifdef EBCDIC
3331                 non_portable_endpoint = 0;
3332                 backslash_N = 0;
3333 #endif
3334                 continue;
3335             } /* End of is a range */
3336         } /* End of transliteration.  Joins main code after these else's */
3337         else if (*s == '[' && PL_lex_inpat && !in_charclass) {
3338             char *s1 = s-1;
3339             int esc = 0;
3340             while (s1 >= start && *s1-- == '\\')
3341                 esc = !esc;
3342             if (!esc)
3343                 in_charclass = TRUE;
3344         }
3345         else if (*s == ']' && PL_lex_inpat && in_charclass) {
3346             char *s1 = s-1;
3347             int esc = 0;
3348             while (s1 >= start && *s1-- == '\\')
3349                 esc = !esc;
3350             if (!esc)
3351                 in_charclass = FALSE;
3352         }
3353             /* skip for regexp comments /(?#comment)/, except for the last
3354              * char, which will be done separately.  Stop on (?{..}) and
3355              * friends */
3356         else if (*s == '(' && PL_lex_inpat && s[1] == '?' && !in_charclass) {
3357             if (s[2] == '#') {
3358                 while (s+1 < send && *s != ')')
3359                     *d++ = *s++;
3360             }
3361             else if (!PL_lex_casemods
3362                      && (    s[2] == '{' /* This should match regcomp.c */
3363                          || (s[2] == '?' && s[3] == '{')))
3364             {
3365                 break;
3366             }
3367         }
3368             /* likewise skip #-initiated comments in //x patterns */
3369         else if (*s == '#'
3370                  && PL_lex_inpat
3371                  && !in_charclass
3372                  && ((PMOP*)PL_lex_inpat)->op_pmflags & RXf_PMf_EXTENDED)
3373         {
3374             while (s < send && *s != '\n')
3375                 *d++ = *s++;
3376         }
3377             /* no further processing of single-quoted regex */
3378         else if (PL_lex_inpat && SvIVX(PL_linestr) == '\'')
3379             goto default_action;
3380
3381             /* check for embedded arrays
3382              * (@foo, @::foo, @'foo, @{foo}, @$foo, @+, @-)
3383              */
3384         else if (*s == '@' && s[1]) {
3385             if (UTF
3386                ? isIDFIRST_utf8_safe(s+1, send)
3387                : isWORDCHAR_A(s[1]))
3388             {
3389                 break;
3390             }
3391             if (strchr(":'{$", s[1]))
3392                 break;
3393             if (!PL_lex_inpat && (s[1] == '+' || s[1] == '-'))
3394                 break; /* in regexp, neither @+ nor @- are interpolated */
3395         }
3396             /* check for embedded scalars.  only stop if we're sure it's a
3397              * variable.  */
3398         else if (*s == '$') {
3399             if (!PL_lex_inpat)  /* not a regexp, so $ must be var */
3400                 break;
3401             if (s + 1 < send && !strchr("()| \r\n\t", s[1])) {
3402                 if (s[1] == '\\') {
3403                     Perl_ck_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
3404                                    "Possible unintended interpolation of $\\ in regex");
3405                 }
3406                 break;          /* in regexp, $ might be tail anchor */
3407             }
3408         }
3409
3410         /* End of else if chain - OP_TRANS rejoin rest */
3411
3412         if (UNLIKELY(s >= send)) {
3413             assert(s == send);
3414             break;
3415         }
3416
3417         /* backslashes */
3418         if (*s == '\\' && s+1 < send) {
3419             char* e;    /* Can be used for ending '}', etc. */
3420
3421             s++;
3422
3423             /* warn on \1 - \9 in substitution replacements, but note that \11
3424              * is an octal; and \19 is \1 followed by '9' */
3425             if (PL_lex_inwhat == OP_SUBST
3426                 && !PL_lex_inpat
3427                 && isDIGIT(*s)
3428                 && *s != '0'
3429                 && !isDIGIT(s[1]))
3430             {
3431                 /* diag_listed_as: \%d better written as $%d */
3432                 Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX), "\\%c better written as $%c", *s, *s);
3433                 *--s = '$';
3434                 break;
3435             }
3436
3437             /* string-change backslash escapes */
3438             if (PL_lex_inwhat != OP_TRANS && *s && strchr("lLuUEQF", *s)) {
3439                 --s;
3440                 break;
3441             }
3442             /* In a pattern, process \N, but skip any other backslash escapes.
3443              * This is because we don't want to translate an escape sequence
3444              * into a meta symbol and have the regex compiler use the meta
3445              * symbol meaning, e.g. \x{2E} would be confused with a dot.  But
3446              * in spite of this, we do have to process \N here while the proper
3447              * charnames handler is in scope.  See bugs #56444 and #62056.
3448              *
3449              * There is a complication because \N in a pattern may also stand
3450              * for 'match a non-nl', and not mean a charname, in which case its
3451              * processing should be deferred to the regex compiler.  To be a
3452              * charname it must be followed immediately by a '{', and not look
3453              * like \N followed by a curly quantifier, i.e., not something like
3454              * \N{3,}.  regcurly returns a boolean indicating if it is a legal
3455              * quantifier */
3456             else if (PL_lex_inpat
3457                     && (*s != 'N'
3458                         || s[1] != '{'
3459                         || regcurly(s + 1)))
3460             {
3461                 *d++ = '\\';
3462                 goto default_action;
3463             }
3464
3465             switch (*s) {
3466             default:
3467                 {
3468                     if ((isALPHANUMERIC(*s)))
3469                         Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
3470                                        "Unrecognized escape \\%c passed through",
3471                                        *s);
3472                     /* default action is to copy the quoted character */
3473                     goto default_action;
3474                 }
3475
3476             /* eg. \132 indicates the octal constant 0132 */
3477             case '0': case '1': case '2': case '3':
3478             case '4': case '5': case '6': case '7':
3479                 {
3480                     I32 flags = PERL_SCAN_SILENT_ILLDIGIT;
3481                     STRLEN len = 3;
3482                     uv = grok_oct(s, &len, &flags, NULL);
3483                     s += len;
3484                     if (len < 3 && s < send && isDIGIT(*s)
3485                         && ckWARN(WARN_MISC))
3486                     {
3487                         Perl_warner(aTHX_ packWARN(WARN_MISC),
3488                                     "%s", form_short_octal_warning(s, len));
3489                     }
3490                 }
3491                 goto NUM_ESCAPE_INSERT;
3492
3493             /* eg. \o{24} indicates the octal constant \024 */
3494             case 'o':
3495                 {
3496                     const char* error;
3497
3498                     bool valid = grok_bslash_o(&s, &uv, &error,
3499                                                TRUE, /* Output warning */
3500                                                FALSE, /* Not strict */
3501                                                TRUE, /* Output warnings for
3502                                                          non-portables */
3503                                                UTF);
3504                     if (! valid) {
3505                         yyerror(error);
3506                         uv = 0; /* drop through to ensure range ends are set */
3507                     }
3508                     goto NUM_ESCAPE_INSERT;
3509                 }
3510
3511             /* eg. \x24 indicates the hex constant 0x24 */
3512             case 'x':
3513                 {
3514                     const char* error;
3515
3516                     bool valid = grok_bslash_x(&s, &uv, &error,
3517                                                TRUE, /* Output warning */
3518                                                FALSE, /* Not strict */
3519                                                TRUE,  /* Output warnings for
3520                                                          non-portables */
3521                                                UTF);
3522                     if (! valid) {
3523                         yyerror(error);
3524                         uv = 0; /* drop through to ensure range ends are set */
3525                     }
3526                 }
3527
3528               NUM_ESCAPE_INSERT:
3529                 /* Insert oct or hex escaped character. */
3530
3531                 /* Here uv is the ordinal of the next character being added */
3532                 if (UVCHR_IS_INVARIANT(uv)) {
3533                     *d++ = (char) uv;
3534                 }
3535                 else {
3536                     if (!has_utf8 && uv > 255) {
3537
3538                         /* Here, 'uv' won't fit unless we convert to UTF-8.
3539                          * If we've only seen invariants so far, all we have to
3540                          * do is turn on the flag */
3541                         if (utf8_variant_count == 0) {
3542                             SvUTF8_on(sv);
3543                         }
3544                         else {
3545                             SvCUR_set(sv, d - SvPVX_const(sv));
3546                             SvPOK_on(sv);
3547                             *d = '\0';
3548
3549                             sv_utf8_upgrade_flags_grow(
3550                                            sv,
3551                                            SV_GMAGIC|SV_FORCE_UTF8_UPGRADE,
3552
3553                                            /* Since we're having to grow here,
3554                                             * make sure we have enough room for
3555                                             * this escape and a NUL, so the
3556                                             * code immediately below won't have
3557                                             * to actually grow again */
3558                                           UVCHR_SKIP(uv)
3559                                         + (STRLEN)(send - s) + 1);
3560                             d = SvPVX(sv) + SvCUR(sv);
3561                         }
3562
3563                         has_above_latin1 = TRUE;
3564                         has_utf8 = TRUE;
3565                     }
3566
3567                     if (! has_utf8) {
3568                         *d++ = (char)uv;
3569                         utf8_variant_count++;
3570                     }
3571                     else {
3572                        /* Usually, there will already be enough room in 'sv'
3573                         * since such escapes are likely longer than any UTF-8
3574                         * sequence they can end up as.  This isn't the case on
3575                         * EBCDIC where \x{40000000} contains 12 bytes, and the
3576                         * UTF-8 for it contains 14.  And, we have to allow for
3577                         * a trailing NUL.  It probably can't happen on ASCII
3578                         * platforms, but be safe.  See Note on sizing above. */
3579                         const STRLEN needed = d - SvPVX(sv)
3580                                             + UVCHR_SKIP(uv)
3581                                             + (send - s)
3582                                             + 1;
3583                         if (UNLIKELY(needed > SvLEN(sv))) {
3584                             SvCUR_set(sv, d - SvPVX_const(sv));
3585                             d = SvCUR(sv) + SvGROW(sv, needed);
3586                         }
3587
3588                         d = (char*)uvchr_to_utf8((U8*)d, uv);
3589                         if (PL_lex_inwhat == OP_TRANS
3590                             && PL_parser->lex_sub_op)
3591                         {
3592                             PL_parser->lex_sub_op->op_private |=
3593                                 (PL_lex_repl ? OPpTRANS_FROM_UTF
3594                                              : OPpTRANS_TO_UTF);
3595                         }
3596                     }
3597                 }
3598 #ifdef EBCDIC
3599                 non_portable_endpoint++;
3600 #endif
3601                 continue;
3602
3603             case 'N':
3604                 /* In a non-pattern \N must be like \N{U+0041}, or it can be a
3605                  * named character, like \N{LATIN SMALL LETTER A}, or a named
3606                  * sequence, like \N{LATIN CAPITAL LETTER A WITH MACRON AND
3607                  * GRAVE} (except y/// can't handle the latter, croaking).  For
3608                  * convenience all three forms are referred to as "named
3609                  * characters" below.
3610                  *
3611                  * For patterns, \N also can mean to match a non-newline.  Code
3612                  * before this 'switch' statement should already have handled
3613                  * this situation, and hence this code only has to deal with
3614                  * the named character cases.
3615                  *
3616                  * For non-patterns, the named characters are converted to
3617                  * their string equivalents.  In patterns, named characters are
3618                  * not converted to their ultimate forms for the same reasons
3619                  * that other escapes aren't.  Instead, they are converted to
3620                  * the \N{U+...} form to get the value from the charnames that
3621                  * is in effect right now, while preserving the fact that it
3622                  * was a named character, so that the regex compiler knows
3623                  * this.
3624                  *
3625                  * The structure of this section of code (besides checking for
3626                  * errors and upgrading to utf8) is:
3627                  *    If the named character is of the form \N{U+...}, pass it
3628                  *      through if a pattern; otherwise convert the code point
3629                  *      to utf8
3630                  *    Otherwise must be some \N{NAME}: convert to
3631                  *      \N{U+c1.c2...} if a pattern; otherwise convert to utf8
3632                  *
3633                  * Transliteration is an exception.  The conversion to utf8 is
3634                  * only done if the code point requires it to be representable.
3635                  *
3636                  * Here, 's' points to the 'N'; the test below is guaranteed to
3637                  * succeed if we are being called on a pattern, as we already
3638                  * know from a test above that the next character is a '{'.  A
3639                  * non-pattern \N must mean 'named character', which requires
3640                  * braces */
3641                 s++;
3642                 if (*s != '{') {
3643                     yyerror("Missing braces on \\N{}");
3644                     *d++ = '\0';
3645                     continue;
3646                 }
3647                 s++;
3648
3649                 /* If there is no matching '}', it is an error. */
3650                 if (! (e = strchr(s, '}'))) {
3651                     if (! PL_lex_inpat) {
3652                         yyerror("Missing right brace on \\N{}");
3653                     } else {
3654                         yyerror("Missing right brace on \\N{} or unescaped left brace after \\N");
3655                     }
3656                     yyquit(); /* Have exhausted the input. */
3657                 }
3658
3659                 /* Here it looks like a named character */
3660
3661                 if (*s == 'U' && s[1] == '+') { /* \N{U+...} */
3662                     s += 2;         /* Skip to next char after the 'U+' */
3663                     if (PL_lex_inpat) {
3664
3665                         /* In patterns, we can have \N{U+xxxx.yyyy.zzzz...} */
3666                         /* Check the syntax.  */
3667                         const char *orig_s;
3668                         orig_s = s - 5;
3669                         if (!isXDIGIT(*s)) {
3670                           bad_NU:
3671                             yyerror(
3672                                 "Invalid hexadecimal number in \\N{U+...}"
3673                             );
3674                             s = e + 1;
3675                             *d++ = '\0';
3676                             continue;
3677                         }
3678                         while (++s < e) {
3679                             if (isXDIGIT(*s))
3680                                 continue;
3681                             else if ((*s == '.' || *s == '_')
3682                                   && isXDIGIT(s[1]))
3683                                 continue;
3684                             goto bad_NU;
3685                         }
3686
3687                         /* Pass everything through unchanged.
3688                          * +1 is for the '}' */
3689                         Copy(orig_s, d, e - orig_s + 1, char);
3690                         d += e - orig_s + 1;
3691                     }
3692                     else {  /* Not a pattern: convert the hex to string */
3693                         I32 flags = PERL_SCAN_ALLOW_UNDERSCORES
3694                                 | PERL_SCAN_SILENT_ILLDIGIT
3695                                 | PERL_SCAN_DISALLOW_PREFIX;
3696                         STRLEN len = e - s;
3697                         uv = grok_hex(s, &len, &flags, NULL);
3698                         if (len == 0 || (len != (STRLEN)(e - s)))
3699                             goto bad_NU;
3700
3701                          /* For non-tr///, if the destination is not in utf8,
3702                           * unconditionally recode it to be so.  This is
3703                           * because \N{} implies Unicode semantics, and scalars
3704                           * have to be in utf8 to guarantee those semantics.
3705                           * tr/// doesn't care about Unicode rules, so no need
3706                           * there to upgrade to UTF-8 for small enough code
3707                           * points */
3708                         if (! has_utf8 && (   uv > 0xFF
3709                                            || PL_lex_inwhat != OP_TRANS))
3710                         {
3711                             /* See Note on sizing above.  */
3712                             const STRLEN extra = OFFUNISKIP(uv) + (send - e) + 1;
3713
3714                             SvCUR_set(sv, d - SvPVX_const(sv));
3715                             SvPOK_on(sv);
3716                             *d = '\0';
3717
3718                             if (utf8_variant_count == 0) {
3719                                 SvUTF8_on(sv);
3720                                 d = SvCUR(sv) + SvGROW(sv, SvCUR(sv) + extra);
3721                             }
3722                             else {
3723                                 sv_utf8_upgrade_flags_grow(
3724                                                sv,
3725                                                SV_GMAGIC|SV_FORCE_UTF8_UPGRADE,
3726                                                extra);
3727                                 d = SvPVX(sv) + SvCUR(sv);
3728                             }
3729
3730                             has_utf8 = TRUE;
3731                             has_above_latin1 = TRUE;
3732                         }
3733
3734                         /* Add the (Unicode) code point to the output. */
3735                         if (! has_utf8 || OFFUNI_IS_INVARIANT(uv)) {
3736                             *d++ = (char) LATIN1_TO_NATIVE(uv);
3737                         }
3738                         else {
3739                             d = (char*) uvoffuni_to_utf8_flags((U8*)d, uv, 0);
3740                         }
3741                     }
3742                 }
3743                 else /* Here is \N{NAME} but not \N{U+...}. */
3744                      if ((res = get_and_check_backslash_N_name(s, e)))
3745                 {
3746                     STRLEN len;
3747                     const char *str = SvPV_const(res, len);
3748                     if (PL_lex_inpat) {
3749
3750                         if (! len) { /* The name resolved to an empty string */
3751                             Copy("\\N{}", d, 4, char);
3752                             d += 4;
3753                         }
3754                         else {
3755                             /* In order to not lose information for the regex
3756                             * compiler, pass the result in the specially made
3757                             * syntax: \N{U+c1.c2.c3...}, where c1 etc. are
3758                             * the code points in hex of each character
3759                             * returned by charnames */
3760
3761                             const char *str_end = str + len;
3762                             const STRLEN off = d - SvPVX_const(sv);
3763
3764                             if (! SvUTF8(res)) {
3765                                 /* For the non-UTF-8 case, we can determine the
3766                                  * exact length needed without having to parse
3767                                  * through the string.  Each character takes up
3768                                  * 2 hex digits plus either a trailing dot or
3769                                  * the "}" */
3770                                 const char initial_text[] = "\\N{U+";
3771                                 const STRLEN initial_len = sizeof(initial_text)
3772                                                            - 1;
3773                                 d = off + SvGROW(sv, off
3774                                                     + 3 * len
3775
3776                                                     /* +1 for trailing NUL */
3777                                                     + initial_len + 1
3778
3779                                                     + (STRLEN)(send - e));
3780                                 Copy(initial_text, d, initial_len, char);
3781                                 d += initial_len;
3782                                 while (str < str_end) {
3783                                     char hex_string[4];
3784                                     int len =
3785                                         my_snprintf(hex_string,
3786                                                   sizeof(hex_string),
3787                                                   "%02X.",
3788
3789                                                   /* The regex compiler is
3790                                                    * expecting Unicode, not
3791                                                    * native */
3792                                                   NATIVE_TO_LATIN1(*str));
3793                                     PERL_MY_SNPRINTF_POST_GUARD(len,
3794                                                            sizeof(hex_string));
3795                                     Copy(hex_string, d, 3, char);
3796                                     d += 3;
3797                                     str++;
3798                                 }
3799                                 d--;    /* Below, we will overwrite the final
3800                                            dot with a right brace */
3801                             }
3802                             else {
3803                                 STRLEN char_length; /* cur char's byte length */
3804
3805                                 /* and the number of bytes after this is
3806                                  * translated into hex digits */
3807                                 STRLEN output_length;
3808
3809                                 /* 2 hex per byte; 2 chars for '\N'; 2 chars
3810                                  * for max('U+', '.'); and 1 for NUL */
3811                                 char hex_string[2 * UTF8_MAXBYTES + 5];
3812
3813                                 /* Get the first character of the result. */
3814                                 U32 uv = utf8n_to_uvchr((U8 *) str,
3815                                                         len,
3816                                                         &char_length,
3817                                                         UTF8_ALLOW_ANYUV);
3818                                 /* Convert first code point to Unicode hex,
3819                                  * including the boiler plate before it. */
3820                                 output_length =
3821                                     my_snprintf(hex_string, sizeof(hex_string),
3822                                              "\\N{U+%X",
3823                                              (unsigned int) NATIVE_TO_UNI(uv));
3824
3825                                 /* Make sure there is enough space to hold it */
3826                                 d = off + SvGROW(sv, off
3827                                                     + output_length
3828                                                     + (STRLEN)(send - e)
3829                                                     + 2);       /* '}' + NUL */
3830                                 /* And output it */
3831                                 Copy(hex_string, d, output_length, char);
3832                                 d += output_length;
3833
3834                                 /* For each subsequent character, append dot and
3835                                 * its Unicode code point in hex */
3836                                 while ((str += char_length) < str_end) {
3837                                     const STRLEN off = d - SvPVX_const(sv);
3838                                     U32 uv = utf8n_to_uvchr((U8 *) str,
3839                                                             str_end - str,
3840                                                             &char_length,
3841                                                             UTF8_ALLOW_ANYUV);
3842                                     output_length =
3843                                         my_snprintf(hex_string,
3844                                              sizeof(hex_string),
3845                                              ".%X",
3846                                              (unsigned int) NATIVE_TO_UNI(uv));
3847
3848                                     d = off + SvGROW(sv, off
3849                                                         + output_length
3850                                                         + (STRLEN)(send - e)
3851                                                         + 2);   /* '}' +  NUL */
3852                                     Copy(hex_string, d, output_length, char);
3853                                     d += output_length;
3854                                 }
3855                             }
3856
3857                             *d++ = '}'; /* Done.  Add the trailing brace */
3858                         }
3859                     }
3860                     else { /* Here, not in a pattern.  Convert the name to a
3861                             * string. */
3862
3863                         if (PL_lex_inwhat == OP_TRANS) {
3864                             str = SvPV_const(res, len);
3865                             if (len > ((SvUTF8(res))
3866                                        ? UTF8SKIP(str)
3867                                        : 1U))
3868                             {
3869                                 yyerror(Perl_form(aTHX_
3870                                     "%.*s must not be a named sequence"
3871                                     " in transliteration operator",
3872                                         /*  +1 to include the "}" */
3873                                     (int) (e + 1 - start), start));
3874                                 *d++ = '\0';
3875                                 goto end_backslash_N;
3876                             }
3877
3878                             if (SvUTF8(res) && UTF8_IS_ABOVE_LATIN1(*str)) {
3879                                 has_above_latin1 = TRUE;
3880                             }
3881
3882                         }
3883                         else if (! SvUTF8(res)) {
3884                             /* Make sure \N{} return is UTF-8.  This is because
3885                              * \N{} implies Unicode semantics, and scalars have
3886                              * to be in utf8 to guarantee those semantics; but
3887                              * not needed in tr/// */
3888                             sv_utf8_upgrade_flags(res, 0);
3889                             str = SvPV_const(res, len);
3890                         }
3891
3892                          /* Upgrade destination to be utf8 if this new
3893                           * component is */
3894                         if (! has_utf8 && SvUTF8(res)) {
3895                             /* See Note on sizing above.  */
3896                             const STRLEN extra = len + (send - s) + 1;
3897
3898                             SvCUR_set(sv, d - SvPVX_const(sv));
3899                             SvPOK_on(sv);
3900                             *d = '\0';
3901
3902                             if (utf8_variant_count == 0) {
3903                                 SvUTF8_on(sv);
3904                                 d = SvCUR(sv) + SvGROW(sv, SvCUR(sv) + extra);
3905                             }
3906                             else {
3907                                 sv_utf8_upgrade_flags_grow(sv,
3908                                                 SV_GMAGIC|SV_FORCE_UTF8_UPGRADE,
3909                                                 extra);
3910                                 d = SvPVX(sv) + SvCUR(sv);
3911                             }
3912                             has_utf8 = TRUE;
3913                         } else if (len > (STRLEN)(e - s + 4)) { /* I _guess_ 4 is \N{} --jhi */
3914
3915                             /* See Note on sizing above.  (NOTE: SvCUR() is not
3916                              * set correctly here). */
3917                             const STRLEN extra = len + (send - e) + 1;
3918                             const STRLEN off = d - SvPVX_const(sv);
3919                             d = off + SvGROW(sv, off + extra);
3920                         }
3921                         Copy(str, d, len, char);
3922                         d += len;
3923                     }
3924
3925                     SvREFCNT_dec(res);
3926
3927                 } /* End \N{NAME} */
3928
3929               end_backslash_N:
3930 #ifdef EBCDIC
3931                 backslash_N++; /* \N{} is defined to be Unicode */
3932 #endif
3933                 s = e + 1;  /* Point to just after the '}' */
3934                 continue;
3935
3936             /* \c is a control character */
3937             case 'c':
3938                 s++;
3939                 if (s < send) {
3940                     *d++ = grok_bslash_c(*s, 1);
3941                 }
3942                 else {
3943                     yyerror("Missing control char name in \\c");
3944                     yyquit();   /* Are at end of input, no sense continuing */
3945                 }
3946 #ifdef EBCDIC
3947                 non_portable_endpoint++;
3948 #endif
3949                 break;
3950
3951             /* printf-style backslashes, formfeeds, newlines, etc */
3952             case 'b':
3953                 *d++ = '\b';
3954                 break;
3955             case 'n':
3956                 *d++ = '\n';
3957                 break;
3958             case 'r':
3959                 *d++ = '\r';
3960                 break;
3961             case 'f':
3962                 *d++ = '\f';
3963                 break;
3964             case 't':
3965                 *d++ = '\t';
3966                 break;
3967             case 'e':
3968                 *d++ = ESC_NATIVE;
3969                 break;
3970             case 'a':
3971                 *d++ = '\a';
3972                 break;
3973             } /* end switch */
3974
3975             s++;
3976             continue;
3977         } /* end if (backslash) */
3978
3979     default_action:
3980         /* Just copy the input to the output, though we may have to convert
3981          * to/from UTF-8.
3982          *
3983          * If the input has the same representation in UTF-8 as not, it will be
3984          * a single byte, and we don't care about UTF8ness; just copy the byte */
3985         if (NATIVE_BYTE_IS_INVARIANT((U8)(*s))) {
3986             *d++ = *s++;
3987         }
3988         else if (! this_utf8 && ! has_utf8) {
3989             /* If neither source nor output is UTF-8, is also a single byte,
3990              * just copy it; but this byte counts should we later have to
3991              * convert to UTF-8 */
3992             *d++ = *s++;
3993             utf8_variant_count++;
3994         }
3995         else if (this_utf8 && has_utf8) {   /* Both UTF-8, can just copy */
3996             const STRLEN len = UTF8SKIP(s);
3997
3998             /* We expect the source to have already been checked for
3999              * malformedness */
4000             assert(isUTF8_CHAR((U8 *) s, (U8 *) send));
4001
4002             Copy(s, d, len, U8);
4003             d += len;
4004             s += len;
4005         }
4006         else { /* UTF8ness matters and doesn't match, need to convert */
4007             STRLEN len = 1;
4008             const UV nextuv   = (this_utf8)
4009                                 ? utf8n_to_uvchr((U8*)s, send - s, &len, 0)
4010                                 : (UV) ((U8) *s);
4011             STRLEN need = UVCHR_SKIP(nextuv);
4012
4013             if (!has_utf8) {
4014                 SvCUR_set(sv, d - SvPVX_const(sv));
4015                 SvPOK_on(sv);
4016                 *d = '\0';
4017
4018                 /* See Note on sizing above. */
4019                 need += (STRLEN)(send - s) + 1;
4020
4021                 if (utf8_variant_count == 0) {
4022                     SvUTF8_on(sv);
4023                     d = SvCUR(sv) + SvGROW(sv, SvCUR(sv) + need);
4024                 }
4025                 else {
4026                     sv_utf8_upgrade_flags_grow(sv,
4027                                                SV_GMAGIC|SV_FORCE_UTF8_UPGRADE,
4028                                                need);
4029                     d = SvPVX(sv) + SvCUR(sv);
4030                 }
4031                 has_utf8 = TRUE;
4032             } else if (need > len) {
4033                 /* encoded value larger than old, may need extra space (NOTE:
4034                  * SvCUR() is not set correctly here).   See Note on sizing
4035                  * above.  */
4036                 const STRLEN extra = need + (send - s) + 1;
4037                 const STRLEN off = d - SvPVX_const(sv);
4038                 d = off + SvGROW(sv, off + extra);
4039             }
4040             s += len;
4041
4042             d = (char*)uvchr_to_utf8((U8*)d, nextuv);
4043         }
4044     } /* while loop to process each character */
4045
4046     /* terminate the string and set up the sv */
4047     *d = '\0';
4048     SvCUR_set(sv, d - SvPVX_const(sv));
4049     if (SvCUR(sv) >= SvLEN(sv))
4050         Perl_croak(aTHX_ "panic: constant overflowed allocated space, %" UVuf
4051                    " >= %" UVuf, (UV)SvCUR(sv), (UV)SvLEN(sv));
4052
4053     SvPOK_on(sv);
4054     if (has_utf8) {
4055         SvUTF8_on(sv);
4056         if (PL_lex_inwhat == OP_TRANS && PL_parser->lex_sub_op) {
4057             PL_parser->lex_sub_op->op_private |=
4058                     (PL_lex_repl ? OPpTRANS_FROM_UTF : OPpTRANS_TO_UTF);
4059         }
4060     }
4061
4062     /* shrink the sv if we allocated more than we used */
4063     if (SvCUR(sv) + 5 < SvLEN(sv)) {
4064         SvPV_shrink_to_cur(sv);
4065     }
4066
4067     /* return the substring (via pl_yylval) only if we parsed anything */
4068     if (s > start) {
4069         char *s2 = start;
4070         for (; s2 < s; s2++) {
4071             if (*s2 == '\n')
4072                 COPLINE_INC_WITH_HERELINES;
4073         }
4074         SvREFCNT_inc_simple_void_NN(sv);
4075         if (   (PL_hints & ( PL_lex_inpat ? HINT_NEW_RE : HINT_NEW_STRING ))
4076             && ! PL_parser->lex_re_reparsing)
4077         {
4078             const char *const key = PL_lex_inpat ? "qr" : "q";
4079             const STRLEN keylen = PL_lex_inpat ? 2 : 1;
4080             const char *type;
4081             STRLEN typelen;
4082
4083             if (PL_lex_inwhat == OP_TRANS) {
4084                 type = "tr";
4085                 typelen = 2;
4086             } else if (PL_lex_inwhat == OP_SUBST && !PL_lex_inpat) {
4087                 type = "s";
4088                 typelen = 1;
4089             } else if (PL_lex_inpat && SvIVX(PL_linestr) == '\'') {
4090                 type = "q";
4091                 typelen = 1;
4092             } else  {
4093                 type = "qq";
4094                 typelen = 2;
4095             }
4096
4097             sv = S_new_constant(aTHX_ start, s - start, key, keylen, sv, NULL,
4098                                 type, typelen);
4099         }
4100         pl_yylval.opval = newSVOP(OP_CONST, 0, sv);
4101     }
4102     LEAVE_with_name("scan_const");
4103     return s;
4104 }
4105
4106 /* S_intuit_more
4107  * Returns TRUE if there's more to the expression (e.g., a subscript),
4108  * FALSE otherwise.
4109  *
4110  * It deals with "$foo[3]" and /$foo[3]/ and /$foo[0123456789$]+/
4111  *
4112  * ->[ and ->{ return TRUE
4113  * ->$* ->$#* ->@* ->@[ ->@{ return TRUE if postderef_qq is enabled
4114  * { and [ outside a pattern are always subscripts, so return TRUE
4115  * if we're outside a pattern and it's not { or [, then return FALSE
4116  * if we're in a pattern and the first char is a {
4117  *   {4,5} (any digits around the comma) returns FALSE
4118  * if we're in a pattern and the first char is a [
4119  *   [] returns FALSE
4120  *   [SOMETHING] has a funky algorithm to decide whether it's a
4121  *      character class or not.  It has to deal with things like
4122  *      /$foo[-3]/ and /$foo[$bar]/ as well as /$foo[$\d]+/
4123  * anything else returns TRUE
4124  */
4125
4126 /* This is the one truly awful dwimmer necessary to conflate C and sed. */
4127
4128 STATIC int
4129 S_intuit_more(pTHX_ char *s)
4130 {
4131     PERL_ARGS_ASSERT_INTUIT_MORE;
4132
4133     if (PL_lex_brackets)
4134         return TRUE;
4135     if (*s == '-' && s[1] == '>' && (s[2] == '[' || s[2] == '{'))
4136         return TRUE;
4137     if (*s == '-' && s[1] == '>'
4138      && FEATURE_POSTDEREF_QQ_IS_ENABLED
4139      && ( (s[2] == '$' && (s[3] == '*' || (s[3] == '#' && s[4] == '*')))
4140         ||(s[2] == '@' && strchr("*[{",s[3])) ))
4141         return TRUE;
4142     if (*s != '{' && *s != '[')
4143         return FALSE;
4144     if (!PL_lex_inpat)
4145         return TRUE;
4146
4147     /* In a pattern, so maybe we have {n,m}. */
4148     if (*s == '{') {
4149         if (regcurly(s)) {
4150             return FALSE;
4151         }
4152         return TRUE;
4153     }
4154
4155     /* On the other hand, maybe we have a character class */
4156
4157     s++;
4158     if (*s == ']' || *s == '^')
4159         return FALSE;
4160     else {
4161         /* this is terrifying, and it works */
4162         int weight;
4163         char seen[256];
4164         const char * const send = strchr(s,']');
4165         unsigned char un_char, last_un_char;
4166         char tmpbuf[sizeof PL_tokenbuf * 4];
4167
4168         if (!send)              /* has to be an expression */
4169             return TRUE;
4170         weight = 2;             /* let's weigh the evidence */
4171
4172         if (*s == '$')
4173             weight -= 3;
4174         else if (isDIGIT(*s)) {
4175             if (s[1] != ']') {
4176                 if (isDIGIT(s[1]) && s[2] == ']')
4177                     weight -= 10;
4178             }
4179             else
4180                 weight -= 100;
4181         }
4182         Zero(seen,256,char);
4183         un_char = 255;
4184         for (; s < send; s++) {
4185             last_un_char = un_char;
4186             un_char = (unsigned char)*s;
4187             switch (*s) {
4188             case '@':
4189             case '&':
4190             case '$':
4191                 weight -= seen[un_char] * 10;
4192                 if (isWORDCHAR_lazy_if_safe(s+1, PL_bufend, UTF)) {
4193                     int len;
4194                     scan_ident(s, tmpbuf, sizeof tmpbuf, FALSE);
4195                     len = (int)strlen(tmpbuf);
4196                     if (len > 1 && gv_fetchpvn_flags(tmpbuf, len,
4197                                                     UTF ? SVf_UTF8 : 0, SVt_PV))
4198                         weight -= 100;
4199                     else
4200                         weight -= 10;
4201                 }
4202                 else if (*s == '$'
4203                          && s[1]
4204                          && strchr("[#!%*<>()-=",s[1]))
4205                 {
4206                     if (/*{*/ strchr("])} =",s[2]))
4207                         weight -= 10;
4208                     else
4209                         weight -= 1;
4210                 }
4211                 break;
4212             case '\\':
4213                 un_char = 254;
4214                 if (s[1]) {
4215                     if (strchr("wds]",s[1]))
4216                         weight += 100;
4217                     else if (seen[(U8)'\''] || seen[(U8)'"'])
4218                         weight += 1;
4219                     else if (strchr("rnftbxcav",s[1]))
4220                         weight += 40;
4221                     else if (isDIGIT(s[1])) {
4222                         weight += 40;
4223                         while (s[1] && isDIGIT(s[1]))
4224                             s++;
4225                     }
4226                 }
4227                 else
4228                     weight += 100;
4229                 break;
4230             case '-':
4231                 if (s[1] == '\\')
4232                     weight += 50;
4233                 if (strchr("aA01! ",last_un_char))
4234                     weight += 30;
4235                 if (strchr("zZ79~",s[1]))
4236                     weight += 30;
4237                 if (last_un_char == 255 && (isDIGIT(s[1]) || s[1] == '$'))
4238                     weight -= 5;        /* cope with negative subscript */
4239                 break;
4240             default:
4241                 if (!isWORDCHAR(last_un_char)
4242                     && !(last_un_char == '$' || last_un_char == '@'
4243                          || last_un_char == '&')
4244                     && isALPHA(*s) && s[1] && isALPHA(s[1])) {
4245                     char *d = s;
4246                     while (isALPHA(*s))
4247                         s++;
4248                     if (keyword(d, s - d, 0))
4249                         weight -= 150;
4250                 }
4251                 if (un_char == last_un_char + 1)
4252                     weight += 5;
4253                 weight -= seen[un_char];
4254                 break;
4255             }
4256             seen[un_char]++;
4257         }
4258         if (weight >= 0)        /* probably a character class */
4259             return FALSE;
4260     }
4261
4262     return TRUE;
4263 }
4264
4265 /*
4266  * S_intuit_method
4267  *
4268  * Does all the checking to disambiguate
4269  *   foo bar
4270  * between foo(bar) and bar->foo.  Returns 0 if not a method, otherwise
4271  * FUNCMETH (bar->foo(args)) or METHOD (bar->foo args).
4272  *
4273  * First argument is the stuff after the first token, e.g. "bar".
4274  *
4275  * Not a method if foo is a filehandle.
4276  * Not a method if foo is a subroutine prototyped to take a filehandle.
4277  * Not a method if it's really "Foo $bar"
4278  * Method if it's "foo $bar"
4279  * Not a method if it's really "print foo $bar"
4280  * Method if it's really "foo package::" (interpreted as package->foo)
4281  * Not a method if bar is known to be a subroutine ("sub bar; foo bar")
4282  * Not a method if bar is a filehandle or package, but is quoted with
4283  *   =>
4284  */
4285
4286 STATIC int
4287 S_intuit_method(pTHX_ char *start, SV *ioname, CV *cv)
4288 {
4289     char *s = start + (*start == '$');
4290     char tmpbuf[sizeof PL_tokenbuf];
4291     STRLEN len;
4292     GV* indirgv;
4293         /* Mustn't actually add anything to a symbol table.
4294            But also don't want to "initialise" any placeholder
4295            constants that might already be there into full
4296            blown PVGVs with attached PVCV.  */
4297     GV * const gv =
4298         ioname ? gv_fetchsv(ioname, GV_NOADD_NOINIT, SVt_PVCV) : NULL;
4299
4300     PERL_ARGS_ASSERT_INTUIT_METHOD;
4301
4302     if (gv && SvTYPE(gv) == SVt_PVGV && GvIO(gv))
4303             return 0;
4304     if (cv && SvPOK(cv)) {
4305         const char *proto = CvPROTO(cv);
4306         if (proto) {
4307             while (*proto && (isSPACE(*proto) || *proto == ';'))
4308                 proto++;
4309             if (*proto == '*')
4310                 return 0;
4311         }
4312     }
4313
4314     if (*start == '$') {
4315         SSize_t start_off = start - SvPVX(PL_linestr);
4316         if (cv || PL_last_lop_op == OP_PRINT || PL_last_lop_op == OP_SAY
4317             || isUPPER(*PL_tokenbuf))
4318             return 0;
4319         /* this could be $# */
4320         if (isSPACE(*s))
4321             s = skipspace(s);
4322         PL_bufptr = SvPVX(PL_linestr) + start_off;
4323         PL_expect = XREF;
4324         return *s == '(' ? FUNCMETH : METHOD;
4325     }
4326
4327     s = scan_word(s, tmpbuf, sizeof tmpbuf, TRUE, &len);
4328     /* start is the beginning of the possible filehandle/object,
4329      * and s is the end of it
4330      * tmpbuf is a copy of it (but with single quotes as double colons)
4331      */
4332
4333     if (!keyword(tmpbuf, len, 0)) {
4334         if (len > 2 && tmpbuf[len - 2] == ':' && tmpbuf[len - 1] == ':') {
4335             len -= 2;
4336             tmpbuf[len] = '\0';
4337             goto bare_package;
4338         }
4339         indirgv = gv_fetchpvn_flags(tmpbuf, len,
4340                                     GV_NOADD_NOINIT|( UTF ? SVf_UTF8 : 0 ),
4341                                     SVt_PVCV);
4342         if (indirgv && SvTYPE(indirgv) != SVt_NULL
4343          && (!isGV(indirgv) || GvCVu(indirgv)))
4344             return 0;
4345         /* filehandle or package name makes it a method */
4346         if (!cv || GvIO(indirgv) || gv_stashpvn(tmpbuf, len, UTF ? SVf_UTF8 : 0)) {
4347             s = skipspace(s);
4348             if ((PL_bufend - s) >= 2 && *s == '=' && *(s+1) == '>')
4349                 return 0;       /* no assumptions -- "=>" quotes bareword */
4350       bare_package:
4351             NEXTVAL_NEXTTOKE.opval = newSVOP(OP_CONST, 0,
4352                                                   S_newSV_maybe_utf8(aTHX_ tmpbuf, len));
4353             NEXTVAL_NEXTTOKE.opval->op_private = OPpCONST_BARE;
4354             PL_expect = XTERM;
4355             force_next(BAREWORD);
4356             PL_bufptr = s;
4357             return *s == '(' ? FUNCMETH : METHOD;
4358         }
4359     }
4360     return 0;
4361 }
4362
4363 /* Encoded script support. filter_add() effectively inserts a
4364  * 'pre-processing' function into the current source input stream.
4365  * Note that the filter function only applies to the current source file
4366  * (e.g., it will not affect files 'require'd or 'use'd by this one).
4367  *
4368  * The datasv parameter (which may be NULL) can be used to pass
4369  * private data to this instance of the filter. The filter function
4370  * can recover the SV using the FILTER_DATA macro and use it to
4371  * store private buffers and state information.
4372  *
4373  * The supplied datasv parameter is upgraded to a PVIO type
4374  * and the IoDIRP/IoANY field is used to store the function pointer,
4375  * and IOf_FAKE_DIRP is enabled on datasv to mark this as such.
4376  * Note that IoTOP_NAME, IoFMT_NAME, IoBOTTOM_NAME, if set for
4377  * private use must be set using malloc'd pointers.
4378  */
4379
4380 SV *
4381 Perl_filter_add(pTHX_ filter_t funcp, SV *datasv)
4382 {
4383     if (!funcp)
4384         return NULL;
4385
4386     if (!PL_parser)
4387         return NULL;
4388
4389     if (PL_parser->lex_flags & LEX_IGNORE_UTF8_HINTS)
4390         Perl_croak(aTHX_ "Source filters apply only to byte streams");
4391
4392     if (!PL_rsfp_filters)
4393         PL_rsfp_filters = newAV();
4394     if (!datasv)
4395         datasv = newSV(0);
4396     SvUPGRADE(datasv, SVt_PVIO);
4397     IoANY(datasv) = FPTR2DPTR(void *, funcp); /* stash funcp into spare field */
4398     IoFLAGS(datasv) |= IOf_FAKE_DIRP;
4399     DEBUG_P(PerlIO_printf(Perl_debug_log, "filter_add func %p (%s)\n",
4400                           FPTR2DPTR(void *, IoANY(datasv)),
4401                           SvPV_nolen(datasv)));
4402     av_unshift(PL_rsfp_filters, 1);
4403     av_store(PL_rsfp_filters, 0, datasv) ;
4404     if (
4405         !PL_parser->filtered
4406      && PL_parser->lex_flags & LEX_EVALBYTES
4407      && PL_bufptr < PL_bufend
4408     ) {
4409         const char *s = PL_bufptr;
4410         while (s < PL_bufend) {
4411             if (*s == '\n') {
4412                 SV *linestr = PL_parser->linestr;
4413                 char *buf = SvPVX(linestr);
4414                 STRLEN const bufptr_pos = PL_parser->bufptr - buf;
4415                 STRLEN const oldbufptr_pos = PL_parser->oldbufptr - buf;
4416                 STRLEN const oldoldbufptr_pos=PL_parser->oldoldbufptr-buf;
4417                 STRLEN const linestart_pos = PL_parser->linestart - buf;
4418                 STRLEN const last_uni_pos =
4419                     PL_parser->last_uni ? PL_parser->last_uni - buf : 0;
4420                 STRLEN const last_lop_pos =
4421                     PL_parser->last_lop ? PL_parser->last_lop - buf : 0;
4422                 av_push(PL_rsfp_filters, linestr);
4423                 PL_parser->linestr =
4424                     newSVpvn(SvPVX(linestr), ++s-SvPVX(linestr));
4425                 buf = SvPVX(PL_parser->linestr);
4426                 PL_parser->bufend = buf + SvCUR(PL_parser->linestr);
4427                 PL_parser->bufptr = buf + bufptr_pos;
4428                 PL_parser->oldbufptr = buf + oldbufptr_pos;
4429                 PL_parser->oldoldbufptr = buf + oldoldbufptr_pos;
4430                 PL_parser->linestart = buf + linestart_pos;
4431                 if (PL_parser->last_uni)
4432                     PL_parser->last_uni = buf + last_uni_pos;
4433                 if (PL_parser->last_lop)
4434                     PL_parser->last_lop = buf + last_lop_pos;
4435                 SvLEN(linestr) = SvCUR(linestr);
4436                 SvCUR(linestr) = s-SvPVX(linestr);
4437                 PL_parser->filtered = 1;
4438                 break;
4439             }
4440             s++;
4441         }
4442     }
4443     return(datasv);
4444 }
4445
4446
4447 /* Delete most recently added instance of this filter function. */
4448 void
4449 Perl_filter_del(pTHX_ filter_t funcp)
4450 {
4451     SV *datasv;
4452
4453     PERL_ARGS_ASSERT_FILTER_DEL;
4454
4455 #ifdef DEBUGGING
4456     DEBUG_P(PerlIO_printf(Perl_debug_log, "filter_del func %p",
4457                           FPTR2DPTR(void*, funcp)));
4458 #endif
4459     if (!PL_parser || !PL_rsfp_filters || AvFILLp(PL_rsfp_filters)<0)
4460         return;
4461     /* if filter is on top of stack (usual case) just pop it off */
4462     datasv = FILTER_DATA(AvFILLp(PL_rsfp_filters));
4463     if (IoANY(datasv) == FPTR2DPTR(void *, funcp)) {
4464         sv_free(av_pop(PL_rsfp_filters));
4465
4466         return;
4467     }
4468     /* we need to search for the correct entry and clear it     */
4469     Perl_die(aTHX_ "filter_del can only delete in reverse order (currently)");
4470 }
4471
4472
4473 /* Invoke the idxth filter function for the current rsfp.        */
4474 /* maxlen 0 = read one text line */
4475 I32
4476 Perl_filter_read(pTHX_ int idx, SV *buf_sv, int maxlen)
4477 {
4478     filter_t funcp;
4479     SV *datasv = NULL;
4480     /* This API is bad. It should have been using unsigned int for maxlen.
4481        Not sure if we want to change the API, but if not we should sanity
4482        check the value here.  */
4483     unsigned int correct_length = maxlen < 0 ?  PERL_INT_MAX : maxlen;
4484
4485     PERL_ARGS_ASSERT_FILTER_READ;
4486
4487     if (!PL_parser || !PL_rsfp_filters)
4488         return -1;
4489     if (idx > AvFILLp(PL_rsfp_filters)) {       /* Any more filters?    */
4490         /* Provide a default input filter to make life easy.    */
4491         /* Note that we append to the line. This is handy.      */
4492         DEBUG_P(PerlIO_printf(Perl_debug_log,
4493                               "filter_read %d: from rsfp\n", idx));
4494         if (correct_length) {
4495             /* Want a block */
4496             int len ;
4497             const int old_len = SvCUR(buf_sv);
4498
4499             /* ensure buf_sv is large enough */
4500             SvGROW(buf_sv, (STRLEN)(old_len + correct_length + 1)) ;
4501             if ((len = PerlIO_read(PL_rsfp, SvPVX(buf_sv) + old_len,
4502                                    correct_length)) <= 0) {
4503                 if (PerlIO_error(PL_rsfp))
4504                     return -1;          /* error */
4505                 else
4506                     return 0 ;          /* end of file */
4507             }
4508             SvCUR_set(buf_sv, old_len + len) ;
4509             SvPVX(buf_sv)[old_len + len] = '\0';
4510         } else {
4511             /* Want a line */
4512             if (sv_gets(buf_sv, PL_rsfp, SvCUR(buf_sv)) == NULL) {
4513                 if (PerlIO_error(PL_rsfp))
4514                     return -1;          /* error */
4515                 else
4516                     return 0 ;          /* end of file */
4517             }
4518         }
4519         return SvCUR(buf_sv);
4520     }
4521     /* Skip this filter slot if filter has been deleted */
4522     if ( (datasv = FILTER_DATA(idx)) == &PL_sv_undef) {
4523         DEBUG_P(PerlIO_printf(Perl_debug_log,
4524                               "filter_read %d: skipped (filter deleted)\n",
4525                               idx));
4526         return FILTER_READ(idx+1, buf_sv, correct_length); /* recurse */
4527     }
4528     if (SvTYPE(datasv) != SVt_PVIO) {
4529         if (correct_length) {
4530             /* Want a block */
4531             const STRLEN remainder = SvLEN(datasv) - SvCUR(datasv);
4532             if (!remainder) return 0; /* eof */
4533             if (correct_length > remainder) correct_length = remainder;
4534             sv_catpvn(buf_sv, SvEND(datasv), correct_length);
4535             SvCUR_set(datasv, SvCUR(datasv) + correct_length);
4536         } else {
4537             /* Want a line */
4538             const char *s = SvEND(datasv);
4539             const char *send = SvPVX(datasv) + SvLEN(datasv);
4540             while (s < send) {
4541                 if (*s == '\n') {
4542                     s++;
4543                     break;
4544                 }
4545                 s++;
4546             }
4547             if (s == send) return 0; /* eof */
4548             sv_catpvn(buf_sv, SvEND(datasv), s-SvEND(datasv));
4549             SvCUR_set(datasv, s-SvPVX(datasv));
4550         }
4551         return SvCUR(buf_sv);
4552     }
4553     /* Get function pointer hidden within datasv        */
4554     funcp = DPTR2FPTR(filter_t, IoANY(datasv));
4555     DEBUG_P(PerlIO_printf(Perl_debug_log,
4556                           "filter_read %d: via function %p (%s)\n",
4557                           idx, (void*)datasv, SvPV_nolen_const(datasv)));
4558     /* Call function. The function is expected to       */
4559     /* call "FILTER_READ(idx+1, buf_sv)" first.         */
4560     /* Return: <0:error, =0:eof, >0:not eof             */
4561     return (*funcp)(aTHX_ idx, buf_sv, correct_length);
4562 }
4563
4564 STATIC char *
4565 S_filter_gets(pTHX_ SV *sv, STRLEN append)
4566 {
4567     PERL_ARGS_ASSERT_FILTER_GETS;
4568
4569 #ifdef PERL_CR_FILTER
4570     if (!PL_rsfp_filters) {
4571         filter_add(S_cr_textfilter,NULL);
4572     }
4573 #endif
4574     if (PL_rsfp_filters) {
4575         if (!append)
4576             SvCUR_set(sv, 0);   /* start with empty line        */
4577         if (FILTER_READ(0, sv, 0) > 0)
4578             return ( SvPVX(sv) ) ;
4579         else
4580             return NULL ;
4581     }
4582     else
4583         return (sv_gets(sv, PL_rsfp, append));
4584 }
4585
4586 STATIC HV *
4587 S_find_in_my_stash(pTHX_ const char *pkgname, STRLEN len)
4588 {
4589     GV *gv;
4590
4591     PERL_ARGS_ASSERT_FIND_IN_MY_STASH;
4592
4593     if (len == 11 && *pkgname == '_' && strEQ(pkgname, "__PACKAGE__"))
4594         return PL_curstash;
4595
4596     if (len > 2
4597         && (pkgname[len - 2] == ':' && pkgname[len - 1] == ':')
4598         && (gv = gv_fetchpvn_flags(pkgname,
4599                                    len,
4600                                    ( UTF ? SVf_UTF8 : 0 ), SVt_PVHV)))
4601     {
4602         return GvHV(gv);                        /* Foo:: */
4603     }
4604
4605     /* use constant CLASS => 'MyClass' */
4606     gv = gv_fetchpvn_flags(pkgname, len, UTF ? SVf_UTF8 : 0, SVt_PVCV);
4607     if (gv && GvCV(gv)) {
4608         SV * const sv = cv_const_sv(GvCV(gv));
4609         if (sv)
4610             return gv_stashsv(sv, 0);
4611     }
4612
4613     return gv_stashpvn(pkgname, len, UTF ? SVf_UTF8 : 0);
4614 }
4615
4616
4617 STATIC char *
4618 S_tokenize_use(pTHX_ int is_use, char *s) {
4619     PERL_ARGS_ASSERT_TOKENIZE_USE;
4620
4621     if (PL_expect != XSTATE)
4622         yyerror(Perl_form(aTHX_ "\"%s\" not allowed in expression",
4623                     is_use ? "use" : "no"));
4624     PL_expect = XTERM;
4625     s = skipspace(s);
4626     if (isDIGIT(*s) || (*s == 'v' && isDIGIT(s[1]))) {
4627         s = force_version(s, TRUE);
4628         if (*s == ';' || *s == '}'
4629                 || (s = skipspace(s), (*s == ';' || *s == '}'))) {
4630             NEXTVAL_NEXTTOKE.opval = NULL;
4631             force_next(BAREWORD);
4632         }
4633         else if (*s == 'v') {
4634             s = force_word(s,BAREWORD,FALSE,TRUE);
4635             s = force_version(s, FALSE);
4636         }
4637     }
4638     else {
4639         s = force_word(s,BAREWORD,FALSE,TRUE);
4640         s = force_version(s, FALSE);
4641     }
4642     pl_yylval.ival = is_use;
4643     return s;
4644 }
4645 #ifdef DEBUGGING
4646     static const char* const exp_name[] =
4647         { "OPERATOR", "TERM", "REF", "STATE", "BLOCK", "ATTRBLOCK",
4648           "ATTRTERM", "TERMBLOCK", "XBLOCKTERM", "POSTDEREF",
4649           "SIGVAR", "TERMORDORDOR"
4650         };
4651 #endif
4652
4653 #define word_takes_any_delimiter(p,l) S_word_takes_any_delimiter(p,l)
4654 STATIC bool
4655 S_word_takes_any_delimiter(char *p, STRLEN len)
4656 {
4657     return (len == 1 && strchr("msyq", p[0]))
4658             || (len == 2
4659                 && ((p[0] == 't' && p[1] == 'r')
4660                     || (p[0] == 'q' && strchr("qwxr", p[1]))));
4661 }
4662
4663 static void
4664 S_check_scalar_slice(pTHX_ char *s)
4665 {
4666     s++;
4667     while (SPACE_OR_TAB(*s)) s++;
4668     if (*s == 'q' && s[1] == 'w' && !isWORDCHAR_lazy_if_safe(s+2,
4669                                                              PL_bufend,
4670                                                              UTF))
4671     {
4672         return;
4673     }
4674     while (    isWORDCHAR_lazy_if_safe(s, PL_bufend, UTF)
4675            || (*s && strchr(" \t$#+-'\"", *s)))
4676     {
4677         s += UTF ? UTF8SKIP(s) : 1;
4678     }
4679     if (*s == '}' || *s == ']')
4680         pl_yylval.ival = OPpSLICEWARNING;
4681 }
4682
4683 #define lex_token_boundary() S_lex_token_boundary(aTHX)
4684 static void
4685 S_lex_token_boundary(pTHX)
4686 {
4687     PL_oldoldbufptr = PL_oldbufptr;
4688     PL_oldbufptr = PL_bufptr;
4689 }
4690
4691 #define vcs_conflict_marker(s) S_vcs_conflict_marker(aTHX_ s)
4692 static char *
4693 S_vcs_conflict_marker(pTHX_ char *s)
4694 {
4695     lex_token_boundary();
4696     PL_bufptr = s;
4697     yyerror("Version control conflict marker");
4698     while (s < PL_bufend && *s != '\n')
4699         s++;
4700     return s;
4701 }
4702
4703 /*
4704   yylex
4705
4706   Works out what to call the token just pulled out of the input
4707   stream.  The yacc parser takes care of taking the ops we return and
4708   stitching them into a tree.
4709
4710   Returns:
4711     The type of the next token
4712
4713   Structure:
4714       Check if we have already built the token; if so, use it.
4715       Switch based on the current state:
4716           - if we have a case modifier in a string, deal with that
4717           - handle other cases of interpolation inside a string
4718           - scan the next line if we are inside a format
4719       In the normal state, switch on the next character:
4720           - default:
4721             if alphabetic, go to key lookup
4722             unrecognized character - croak
4723           - 0/4/26: handle end-of-line or EOF
4724           - cases for whitespace
4725           - \n and #: handle comments and line numbers
4726           - various operators, brackets and sigils
4727           - numbers
4728           - quotes
4729           - 'v': vstrings (or go to key lookup)
4730           - 'x' repetition operator (or go to key lookup)
4731           - other ASCII alphanumerics (key lookup begins here):
4732               word before => ?
4733               keyword plugin
4734               scan built-in keyword (but do nothing with it yet)
4735               check for statement label
4736               check for lexical subs
4737                   goto just_a_word if there is one
4738               see whether built-in keyword is overridden
4739               switch on keyword number:
4740                   - default: just_a_word:
4741                       not a built-in keyword; handle bareword lookup
4742                       disambiguate between method and sub call
4743                       fall back to bareword
4744                   - cases for built-in keywords
4745 */
4746
4747
4748 int
4749 Perl_yylex(pTHX)
4750 {
4751     dVAR;
4752     char *s = PL_bufptr;
4753     char *d;
4754     STRLEN len;
4755     bool bof = FALSE;
4756     const bool saw_infix_sigil = cBOOL(PL_parser->saw_infix_sigil);
4757     U8 formbrack = 0;
4758     U32 fake_eof = 0;
4759
4760     /* orig_keyword, gvp, and gv are initialized here because
4761      * jump to the label just_a_word_zero can bypass their
4762      * initialization later. */
4763     I32 orig_keyword = 0;
4764     GV *gv = NULL;
4765     GV **gvp = NULL;
4766
4767     if (UNLIKELY(PL_parser->recheck_utf8_validity)) {
4768         const U8* first_bad_char_loc;
4769         if (UTF && UNLIKELY(! is_utf8_string_loc((U8 *) PL_bufptr,
4770                                                         PL_bufend - PL_bufptr,
4771                                                         &first_bad_char_loc)))
4772         {
4773             _force_out_malformed_utf8_message(first_bad_char_loc,
4774                                               (U8 *) PL_bufend,
4775                                               0,
4776                                               1 /* 1 means die */ );
4777             NOT_REACHED; /* NOTREACHED */
4778         }
4779         PL_parser->recheck_utf8_validity = FALSE;
4780     }
4781     DEBUG_T( {
4782         SV* tmp = newSVpvs("");
4783         PerlIO_printf(Perl_debug_log, "### %" IVdf ":LEX_%s/X%s %s\n",
4784             (IV)CopLINE(PL_curcop),
4785             lex_state_names[PL_lex_state],
4786             exp_name[PL_expect],
4787             pv_display(tmp, s, strlen(s), 0, 60));
4788         SvREFCNT_dec(tmp);
4789     } );
4790
4791     /* when we've already built the next token, just pull it out of the queue */
4792     if (PL_nexttoke) {
4793         PL_nexttoke--;
4794         pl_yylval = PL_nextval[PL_nexttoke];
4795         {
4796             I32 next_type;
4797             next_type = PL_nexttype[PL_nexttoke];
4798             if (next_type & (7<<24)) {
4799                 if (next_type & (1<<24)) {
4800                     if (PL_lex_brackets > 100)
4801                         Renew(PL_lex_brackstack, PL_lex_brackets + 10, char);
4802                     PL_lex_brackstack[PL_lex_brackets++] =
4803                         (char) ((next_type >> 16) & 0xff);
4804                 }
4805                 if (next_type & (2<<24))
4806                     PL_lex_allbrackets++;
4807                 if (next_type & (4<<24))
4808                     PL_lex_allbrackets--;
4809                 next_type &= 0xffff;
4810             }
4811             return REPORT(next_type == 'p' ? pending_ident() : next_type);
4812         }
4813     }
4814
4815     switch (PL_lex_state) {
4816     case LEX_NORMAL:
4817     case LEX_INTERPNORMAL:
4818         break;
4819
4820     /* interpolated case modifiers like \L \U, including \Q and \E.
4821        when we get here, PL_bufptr is at the \
4822     */
4823     case LEX_INTERPCASEMOD:
4824 #ifdef DEBUGGING
4825         if (PL_bufptr != PL_bufend && *PL_bufptr != '\\')
4826             Perl_croak(aTHX_
4827                        "panic: INTERPCASEMOD bufptr=%p, bufend=%p, *bufptr=%u",
4828                        PL_bufptr, PL_bufend, *PL_bufptr);
4829 #endif
4830         /* handle \E or end of string */
4831         if (PL_bufptr == PL_bufend || PL_bufptr[1] == 'E') {
4832             /* if at a \E */
4833             if (PL_lex_casemods) {
4834                 const char oldmod = PL_lex_casestack[--PL_lex_casemods];
4835                 PL_lex_casestack[PL_lex_casemods] = '\0';
4836
4837                 if (PL_bufptr != PL_bufend
4838                     && (oldmod == 'L' || oldmod == 'U' || oldmod == 'Q'
4839                         || oldmod == 'F')) {
4840                     PL_bufptr += 2;
4841                     PL_lex_state = LEX_INTERPCONCAT;
4842                 }
4843                 PL_lex_allbrackets--;
4844                 return REPORT(')');
4845             }
4846             else if ( PL_bufptr != PL_bufend && PL_bufptr[1] == 'E' ) {
4847                /* Got an unpaired \E */
4848                Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
4849                         "Useless use of \\E");
4850             }
4851             if (PL_bufptr != PL_bufend)
4852                 PL_bufptr += 2;
4853             PL_lex_state = LEX_INTERPCONCAT;
4854             return yylex();
4855         }
4856         else {
4857             DEBUG_T({ PerlIO_printf(Perl_debug_log,
4858               "### Saw case modifier\n"); });
4859             s = PL_bufptr + 1;
4860             if (s[1] == '\\' && s[2] == 'E') {
4861                 PL_bufptr = s + 3;
4862                 PL_lex_state = LEX_INTERPCONCAT;
4863                 return yylex();
4864             }
4865             else {
4866                 I32 tmp;
4867                 if (strnEQ(s, "L\\u", 3) || strnEQ(s, "U\\l", 3))
4868                     tmp = *s, *s = s[2], s[2] = (char)tmp;      /* misordered... */
4869                 if ((*s == 'L' || *s == 'U' || *s == 'F')
4870                     && (strpbrk(PL_lex_casestack, "LUF")))
4871                 {
4872                     PL_lex_casestack[--PL_lex_casemods] = '\0';
4873                     PL_lex_allbrackets--;
4874                     return REPORT(')');
4875                 }
4876                 if (PL_lex_casemods > 10)
4877                     Renew(PL_lex_casestack, PL_lex_casemods + 2, char);
4878                 PL_lex_casestack[PL_lex_casemods++] = *s;
4879                 PL_lex_casestack[PL_lex_casemods] = '\0';
4880                 PL_lex_state = LEX_INTERPCONCAT;
4881                 NEXTVAL_NEXTTOKE.ival = 0;
4882                 force_next((2<<24)|'(');
4883                 if (*s == 'l')
4884                     NEXTVAL_NEXTTOKE.ival = OP_LCFIRST;
4885                 else if (*s == 'u')
4886                     NEXTVAL_NEXTTOKE.ival = OP_UCFIRST;
4887                 else if (*s == 'L')
4888                     NEXTVAL_NEXTTOKE.ival = OP_LC;
4889                 else if (*s == 'U')
4890                     NEXTVAL_NEXTTOKE.ival = OP_UC;
4891                 else if (*s == 'Q')
4892                     NEXTVAL_NEXTTOKE.ival = OP_QUOTEMETA;
4893                 else if (*s == 'F')
4894                     NEXTVAL_NEXTTOKE.ival = OP_FC;
4895                 else
4896                     Perl_croak(aTHX_ "panic: yylex, *s=%u", *s);
4897                 PL_bufptr = s + 1;
4898             }
4899             force_next(FUNC);
4900             if (PL_lex_starts) {
4901                 s = PL_bufptr;
4902                 PL_lex_starts = 0;
4903                 /* commas only at base level: /$a\Ub$c/ => ($a,uc(b.$c)) */
4904                 if (PL_lex_casemods == 1 && PL_lex_inpat)
4905                     TOKEN(',');
4906                 else
4907                     AopNOASSIGN(OP_CONCAT);
4908             }
4909             else
4910                 return yylex();
4911         }
4912
4913     case LEX_INTERPPUSH:
4914         return REPORT(sublex_push());
4915
4916     case LEX_INTERPSTART:
4917         if (PL_bufptr == PL_bufend)
4918             return REPORT(sublex_done());
4919         DEBUG_T({ if(*PL_bufptr != '(') PerlIO_printf(Perl_debug_log,
4920               "### Interpolated variable\n"); });
4921         PL_expect = XTERM;
4922         /* for /@a/, we leave the joining for the regex engine to do
4923          * (unless we're within \Q etc) */
4924         PL_lex_dojoin = (*PL_bufptr == '@'
4925                             && (!PL_lex_inpat || PL_lex_casemods));
4926         PL_lex_state = LEX_INTERPNORMAL;
4927         if (PL_lex_dojoin) {
4928             NEXTVAL_NEXTTOKE.ival = 0;
4929             force_next(',');
4930             force_ident("\"", '$');
4931             NEXTVAL_NEXTTOKE.ival = 0;
4932             force_next('$');
4933             NEXTVAL_NEXTTOKE.ival = 0;
4934             force_next((2<<24)|'(');
4935             NEXTVAL_NEXTTOKE.ival = OP_JOIN;    /* emulate join($", ...) */
4936             force_next(FUNC);
4937         }
4938         /* Convert (?{...}) and friends to 'do {...}' */
4939         if (PL_lex_inpat && *PL_bufptr == '(') {
4940             PL_parser->lex_shared->re_eval_start = PL_bufptr;
4941             PL_bufptr += 2;
4942             if (*PL_bufptr != '{')
4943                 PL_bufptr++;
4944             PL_expect = XTERMBLOCK;
4945             force_next(DO);
4946         }
4947
4948         if (PL_lex_starts++) {
4949             s = PL_bufptr;
4950             /* commas only at base level: /$a\Ub$c/ => ($a,uc(b.$c)) */
4951             if (!PL_lex_casemods && PL_lex_inpat)
4952                 TOKEN(',');
4953             else
4954                 AopNOASSIGN(OP_CONCAT);
4955         }
4956         return yylex();
4957
4958     case LEX_INTERPENDMAYBE:
4959         if (intuit_more(PL_bufptr)) {
4960             PL_lex_state = LEX_INTERPNORMAL;    /* false alarm, more expr */
4961             break;
4962         }
4963         /* FALLTHROUGH */
4964
4965     case LEX_INTERPEND:
4966         if (PL_lex_dojoin) {
4967             const U8 dojoin_was = PL_lex_dojoin;
4968             PL_lex_dojoin = FALSE;
4969             PL_lex_state = LEX_INTERPCONCAT;
4970             PL_lex_allbrackets--;
4971             return REPORT(dojoin_was == 1 ? (int)')' : (int)POSTJOIN);
4972         }
4973         if (PL_lex_inwhat == OP_SUBST && PL_linestr == PL_lex_repl
4974             && SvEVALED(PL_lex_repl))
4975         {
4976             if (PL_bufptr != PL_bufend)
4977                 Perl_croak(aTHX_ "Bad evalled substitution pattern");
4978             PL_lex_repl = NULL;
4979         }
4980         /* Paranoia.  re_eval_start is adjusted when S_scan_heredoc sets
4981            re_eval_str.  If the here-doc body’s length equals the previous
4982            value of re_eval_start, re_eval_start will now be null.  So
4983            check re_eval_str as well. */
4984         if (PL_parser->lex_shared->re_eval_start
4985          || PL_parser->lex_shared->re_eval_str) {
4986             SV *sv;
4987             if (*PL_bufptr != ')')
4988                 Perl_croak(aTHX_ "Sequence (?{...}) not terminated with ')'");
4989             PL_bufptr++;
4990             /* having compiled a (?{..}) expression, return the original
4991              * text too, as a const */
4992             if (PL_parser->lex_shared->re_eval_str) {
4993                 sv = PL_parser->lex_shared->re_eval_str;
4994                 PL_parser->lex_shared->re_eval_str = NULL;
4995                 SvCUR_set(sv,
4996                          PL_bufptr - PL_parser->lex_shared->re_eval_start);
4997                 SvPV_shrink_to_cur(sv);
4998             }
4999             else sv = newSVpvn(PL_parser->lex_shared->re_eval_start,
5000                          PL_bufptr - PL_parser->lex_shared->re_eval_start);
5001             NEXTVAL_NEXTTOKE.opval =
5002                     newSVOP(OP_CONST, 0,
5003                                  sv);
5004             force_next(THING);
5005             PL_parser->lex_shared->re_eval_start = NULL;
5006             PL_expect = XTERM;
5007             return REPORT(',');
5008         }
5009
5010         /* FALLTHROUGH */
5011     case LEX_INTERPCONCAT:
5012 #ifdef DEBUGGING
5013         if (PL_lex_brackets)
5014             Perl_croak(aTHX_ "panic: INTERPCONCAT, lex_brackets=%ld",
5015                        (long) PL_lex_brackets);
5016 #endif
5017         if (PL_bufptr == PL_bufend)
5018             return REPORT(sublex_done());
5019
5020         /* m'foo' still needs to be parsed for possible (?{...}) */
5021         if (SvIVX(PL_linestr) == '\'' && !PL_lex_inpat) {
5022             SV *sv = newSVsv(PL_linestr);
5023             sv = tokeq(sv);
5024             pl_yylval.opval = newSVOP(OP_CONST, 0, sv);
5025             s = PL_bufend;
5026         }
5027         else {
5028             int save_error_count = PL_error_count;
5029
5030             s = scan_const(PL_bufptr);
5031
5032             /* Set flag if this was a pattern and there were errors.  op.c will
5033              * refuse to compile a pattern with this flag set.  Otherwise, we
5034              * could get segfaults, etc. */
5035             if (PL_lex_inpat && PL_error_count > save_error_count) {
5036                 ((PMOP*)PL_lex_inpat)->op_pmflags |= PMf_HAS_ERROR;
5037             }
5038             if (*s == '\\')
5039                 PL_lex_state = LEX_INTERPCASEMOD;
5040             else
5041                 PL_lex_state = LEX_INTERPSTART;
5042         }
5043
5044         if (s != PL_bufptr) {
5045             NEXTVAL_NEXTTOKE = pl_yylval;
5046             PL_expect = XTERM;
5047             force_next(THING);
5048             if (PL_lex_starts++) {
5049                 /* commas only at base level: /$a\Ub$c/ => ($a,uc(b.$c)) */
5050                 if (!PL_lex_casemods && PL_lex_inpat)
5051                     TOKEN(',');
5052                 else
5053                     AopNOASSIGN(OP_CONCAT);
5054             }
5055             else {
5056                 PL_bufptr = s;
5057                 return yylex();
5058             }
5059         }
5060
5061         return yylex();
5062     case LEX_FORMLINE:
5063         s = scan_formline(PL_bufptr);
5064         if (!PL_lex_formbrack)
5065         {
5066             formbrack = 1;
5067             goto rightbracket;
5068         }
5069         PL_bufptr = s;
5070         return yylex();
5071     }
5072
5073     /* We really do *not* want PL_linestr ever becoming a COW. */
5074     assert (!SvIsCOW(PL_linestr));
5075     s = PL_bufptr;
5076     PL_oldoldbufptr = PL_oldbufptr;
5077     PL_oldbufptr = s;
5078     PL_parser->saw_infix_sigil = 0;
5079
5080     if (PL_in_my == KEY_sigvar) {
5081         /* we expect the sigil and optional var name part of a
5082          * signature element here. Since a '$' is not necessarily
5083          * followed by a var name, handle it specially here; the general
5084          * yylex code would otherwise try to interpret whatever follows
5085          * as a var; e.g. ($, ...) would be seen as the var '$,'
5086          */
5087
5088         U8 sigil;
5089
5090         s = skipspace(s);
5091         sigil = *s++;
5092         PL_bufptr = s; /* for error reporting */
5093         switch (sigil) {
5094         case '$':
5095         case '@':
5096         case '%':
5097             /* spot stuff that looks like an prototype */
5098             if (strchr("$:@%&*;\\[]", *s)) {
5099                 yyerror("Illegal character following sigil in a subroutine signature");
5100                 break;
5101             }
5102             /* '$#' is banned, while '$ # comment' isn't */
5103             if (*s == '#') {
5104                 yyerror("'#' not allowed immediately following a sigil in a subroutine signature");
5105                 break;
5106             }
5107             s = skipspace(s);
5108             if (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)) {
5109                 char *dest = PL_tokenbuf + 1;
5110                 /* read var name, including sigil, into PL_tokenbuf */
5111                 PL_tokenbuf[0] = sigil;
5112                 parse_ident(&s, &dest, dest + sizeof(PL_tokenbuf) - 1,
5113                     0, cBOOL(UTF), FALSE);
5114                 *dest = '\0';
5115                 assert(PL_tokenbuf[1]); /* we have a variable name */
5116                 NEXTVAL_NEXTTOKE.ival = sigil;
5117                 force_next('p'); /* force a signature pending identifier */
5118             }
5119             else
5120                 PL_in_my = 0;
5121             PL_expect = XOPERATOR;
5122             break;
5123
5124         case ')':
5125             PL_expect = XBLOCK;
5126             break;
5127         case ',': /* handle ($a,,$b) */
5128             break;
5129
5130         default:
5131             PL_in_my = 0;
5132             yyerror("A signature parameter must start with '$', '@' or '%'");
5133             /* very crude error recovery: skip to likely next signature
5134              * element */
5135             while (*s && *s != '$' && *s != '@' && *s != '%' && *s != ')')
5136                 s++;
5137             break;
5138         }
5139         TOKEN(sigil);
5140     }
5141
5142   retry:
5143     switch (*s) {
5144     default:
5145         if (UTF) {
5146             if (isIDFIRST_utf8_safe(s, PL_bufend)) {
5147                 goto keylookup;
5148             }
5149         }
5150         else if (isALNUMC(*s)) {
5151             goto keylookup;
5152         }
5153     {
5154         SV *dsv = newSVpvs_flags("", SVs_TEMP);
5155         const char *c;
5156         if (UTF) {
5157             STRLEN skiplen = UTF8SKIP(s);
5158             STRLEN stravail = PL_bufend - s;
5159             c = sv_uni_display(dsv, newSVpvn_flags(s,
5160                                                    skiplen > stravail ? stravail : skiplen,
5161                                                    SVs_TEMP | SVf_UTF8),
5162                                10, UNI_DISPLAY_ISPRINT);
5163         }
5164         else {
5165             c = Perl_form(aTHX_ "\\x%02X", (unsigned char)*s);
5166         }
5167         len = UTF ? Perl_utf8_length(aTHX_ (U8 *) PL_linestart, (U8 *) s) : (STRLEN) (s - PL_linestart);
5168         if (len > UNRECOGNIZED_PRECEDE_COUNT) {
5169             d = UTF ? (char *) utf8_hop_back((U8 *) s, -UNRECOGNIZED_PRECEDE_COUNT, (U8 *)PL_linestart) : s - UNRECOGNIZED_PRECEDE_COUNT;
5170         } else {
5171             d = PL_linestart;
5172         }
5173         Perl_croak(aTHX_  "Unrecognized character %s; marked by <-- HERE after %" UTF8f "<-- HERE near column %d", c,
5174                           UTF8fARG(UTF, (s - d), d),
5175                          (int) len + 1);
5176     }
5177     case 4:
5178     case 26:
5179         goto fake_eof;                  /* emulate EOF on ^D or ^Z */
5180     case 0:
5181         if ((!PL_rsfp || PL_lex_inwhat)
5182          && (!PL_parser->filtered || s+1 < PL_bufend)) {
5183             PL_last_uni = 0;
5184             PL_last_lop = 0;
5185             if (PL_lex_brackets
5186                 && PL_lex_brackstack[PL_lex_brackets-1] != XFAKEEOF)
5187             {
5188                 yyerror((const char *)
5189                         (PL_lex_formbrack
5190                          ? "Format not terminated"
5191                          : "Missing right curly or square bracket"));
5192             }
5193             DEBUG_T( { PerlIO_printf(Perl_debug_log,
5194                         "### Tokener got EOF\n");
5195             } );
5196             TOKEN(0);
5197         }
5198         if (s++ < PL_bufend)
5199             goto retry;                 /* ignore stray nulls */
5200         PL_last_uni = 0;
5201         PL_last_lop = 0;
5202         if (!PL_in_eval && !PL_preambled) {
5203             PL_preambled = TRUE;
5204             if (PL_perldb) {
5205                 /* Generate a string of Perl code to load the debugger.
5206                  * If PERL5DB is set, it will return the contents of that,
5207                  * otherwise a compile-time require of perl5db.pl.  */
5208
5209                 const char * const pdb = PerlEnv_getenv("PERL5DB");
5210
5211                 if (pdb) {
5212                     sv_setpv(PL_linestr, pdb);
5213                     sv_catpvs(PL_linestr,";");
5214                 } else {
5215                     SETERRNO(0,SS_NORMAL);
5216                     sv_setpvs(PL_linestr, "BEGIN { require 'perl5db.pl' };");
5217                 }
5218                 PL_parser->preambling = CopLINE(PL_curcop);
5219             } else
5220                 SvPVCLEAR(PL_linestr);
5221             if (PL_preambleav) {
5222                 SV **svp = AvARRAY(PL_preambleav);
5223                 SV **const end = svp + AvFILLp(PL_preambleav);
5224                 while(svp <= end) {
5225                     sv_catsv(PL_linestr, *svp);
5226                     ++svp;
5227                     sv_catpvs(PL_linestr, ";");
5228                 }
5229                 sv_free(MUTABLE_SV(PL_preambleav));
5230                 PL_preambleav = NULL;
5231             }
5232             if (PL_minus_E)
5233                 sv_catpvs(PL_linestr,
5234                           "use feature ':5." STRINGIFY(PERL_VERSION) "';");
5235             if (PL_minus_n || PL_minus_p) {
5236                 sv_catpvs(PL_linestr, "LINE: while (<>) {"/*}*/);
5237                 if (PL_minus_l)
5238                     sv_catpvs(PL_linestr,"chomp;");
5239                 if (PL_minus_a) {
5240                     if (PL_minus_F) {
5241                         if ((*PL_splitstr == '/' || *PL_splitstr == '\''
5242                              || *PL_splitstr == '"')
5243                               && strchr(PL_splitstr + 1, *PL_splitstr))
5244                             Perl_sv_catpvf(aTHX_ PL_linestr, "our @F=split(%s);", PL_splitstr);
5245                         else {
5246                             /* "q\0${splitstr}\0" is legal perl. Yes, even NUL
5247                                bytes can be used as quoting characters.  :-) */
5248                             const char *splits = PL_splitstr;
5249                             sv_catpvs(PL_linestr, "our @F=split(q\0");
5250                             do {
5251                                 /* Need to \ \s  */
5252                                 if (*splits == '\\')
5253                                     sv_catpvn(PL_linestr, splits, 1);
5254                                 sv_catpvn(PL_linestr, splits, 1);
5255                             } while (*splits++);
5256                             /* This loop will embed the trailing NUL of
5257                                PL_linestr as the last thing it does before
5258                                terminating.  */
5259                             sv_catpvs(PL_linestr, ");");
5260                         }
5261                     }
5262                     else
5263                         sv_catpvs(PL_linestr,"our @F=split(' ');");
5264                 }
5265             }
5266             sv_catpvs(PL_linestr, "\n");
5267             PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = SvPVX(PL_linestr);
5268             PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
5269             PL_last_lop = PL_last_uni = NULL;
5270             if (PERLDB_LINE_OR_SAVESRC && PL_curstash != PL_debstash)
5271                 update_debugger_info(PL_linestr, NULL, 0);
5272             goto retry;
5273         }
5274         do {
5275             fake_eof = 0;
5276             bof = cBOOL(PL_rsfp);
5277             if (0) {
5278               fake_eof:
5279                 fake_eof = LEX_FAKE_EOF;
5280             }
5281             PL_bufptr = PL_bufend;
5282             COPLINE_INC_WITH_HERELINES;
5283             if (!lex_next_chunk(fake_eof)) {
5284                 CopLINE_dec(PL_curcop);
5285                 s = PL_bufptr;
5286                 TOKEN(';');     /* not infinite loop because rsfp is NULL now */
5287             }
5288             CopLINE_dec(PL_curcop);
5289             s = PL_bufptr;
5290             /* If it looks like the start of a BOM or raw UTF-16,
5291              * check if it in fact is. */
5292             if (bof && PL_rsfp
5293                 && (*s == 0
5294                     || *(U8*)s == BOM_UTF8_FIRST_BYTE
5295                         || *(U8*)s >= 0xFE
5296                         || s[1] == 0))
5297             {
5298                 Off_t offset = (IV)PerlIO_tell(PL_rsfp);
5299                 bof = (offset == (Off_t)SvCUR(PL_linestr));
5300 #if defined(PERLIO_USING_CRLF) && defined(PERL_TEXTMODE_SCRIPTS)
5301                 /* offset may include swallowed CR */
5302                 if (!bof)
5303                     bof = (offset == (Off_t)SvCUR(PL_linestr)+1);
5304 #endif
5305                 if (bof) {
5306                     PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
5307                     s = swallow_bom((U8*)s);
5308                 }
5309             }
5310             if (PL_parser->in_pod) {
5311                 /* Incest with pod. */
5312                 if (*s == '=' && strEQs(s, "=cut") && !isALPHA(s[4])) {
5313                     SvPVCLEAR(PL_linestr);
5314                     PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = SvPVX(PL_linestr);
5315                     PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
5316                     PL_last_lop = PL_last_uni = NULL;
5317                     PL_parser->in_pod = 0;
5318                 }
5319             }
5320             if (PL_rsfp || PL_parser->filtered)
5321                 incline(s);
5322         } while (PL_parser->in_pod);
5323         PL_oldoldbufptr = PL_oldbufptr = PL_bufptr = PL_linestart = s;
5324         PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
5325         PL_last_lop = PL_last_uni = NULL;
5326         if (CopLINE(PL_curcop) == 1) {
5327             while (s < PL_bufend && isSPACE(*s))
5328                 s++;
5329             if (*s == ':' && s[1] != ':') /* for csh execing sh scripts */
5330                 s++;
5331             d = NULL;
5332             if (!PL_in_eval) {
5333                 if (*s == '#' && *(s+1) == '!')
5334                     d = s + 2;
5335 #ifdef ALTERNATE_SHEBANG
5336                 else {
5337                     static char const as[] = ALTERNATE_SHEBANG;
5338                     if (*s == as[0] && strnEQ(s, as, sizeof(as) - 1))
5339                         d = s + (sizeof(as) - 1);
5340                 }
5341 #endif /* ALTERNATE_SHEBANG */
5342             }
5343             if (d) {
5344                 char *ipath;
5345                 char *ipathend;
5346
5347                 while (isSPACE(*d))
5348                     d++;
5349                 ipath = d;
5350                 while (*d && !isSPACE(*d))
5351                     d++;
5352                 ipathend = d;
5353
5354 #ifdef ARG_ZERO_IS_SCRIPT
5355                 if (ipathend > ipath) {
5356                     /*
5357                      * HP-UX (at least) sets argv[0] to the script name,
5358                      * which makes $^X incorrect.  And Digital UNIX and Linux,
5359                      * at least, set argv[0] to the basename of the Perl
5360                      * interpreter. So, having found "#!", we'll set it right.
5361                      */
5362                     SV* copfilesv = CopFILESV(PL_curcop);
5363                     if (copfilesv) {
5364                         SV * const x =
5365                             GvSV(gv_fetchpvs("\030", GV_ADD|GV_NOTQUAL,
5366                                              SVt_PV)); /* $^X */
5367                         assert(SvPOK(x) || SvGMAGICAL(x));
5368                         if (sv_eq(x, copfilesv)) {
5369                             sv_setpvn(x, ipath, ipathend - ipath);
5370                             SvSETMAGIC(x);
5371                         }
5372                         else {
5373                             STRLEN blen;
5374                             STRLEN llen;
5375                             const char *bstart = SvPV_const(copfilesv, blen);
5376                             const char * const lstart = SvPV_const(x, llen);
5377                             if (llen < blen) {
5378                                 bstart += blen - llen;
5379                                 if (strnEQ(bstart, lstart, llen) &&     bstart[-1] == '/') {
5380                                     sv_setpvn(x, ipath, ipathend - ipath);
5381                                     SvSETMAGIC(x);
5382                                 }
5383                             }
5384                         }
5385                     }
5386                     else {
5387                         /* Anything to do if no copfilesv? */
5388                     }
5389                     TAINT_NOT;  /* $^X is always tainted, but that's OK */
5390                 }
5391 #endif /* ARG_ZERO_IS_SCRIPT */
5392
5393                 /*
5394                  * Look for options.
5395                  */
5396                 d = instr(s,"perl -");
5397                 if (!d) {
5398                     d = instr(s,"perl");
5399 #if defined(DOSISH)
5400                     /* avoid getting into infinite loops when shebang
5401                      * line contains "Perl" rather than "perl" */
5402                     if (!d) {
5403                         for (d = ipathend-4; d >= ipath; --d) {
5404                             if (isALPHA_FOLD_EQ(*d, 'p')
5405                                 && !ibcmp(d, "perl", 4))
5406                             {
5407                                 break;
5408                             }
5409                         }
5410                         if (d < ipath)
5411                             d = NULL;
5412                     }
5413 #endif
5414                 }
5415 #ifdef ALTERNATE_SHEBANG
5416                 /*
5417                  * If the ALTERNATE_SHEBANG on this system starts with a
5418                  * character that can be part of a Perl expression, then if
5419                  * we see it but not "perl", we're probably looking at the
5420                  * start of Perl code, not a request to hand off to some
5421                  * other interpreter.  Similarly, if "perl" is there, but
5422                  * not in the first 'word' of the line, we assume the line
5423                  * contains the start of the Perl program.
5424                  */
5425                 if (d && *s != '#') {
5426                     const char *c = ipath;
5427                     while (*c && !strchr("; \t\r\n\f\v#", *c))
5428                         c++;
5429                     if (c < d)
5430                         d = NULL;       /* "perl" not in first word; ignore */
5431                     else
5432                         *s = '#';       /* Don't try to parse shebang line */
5433                 }
5434 #endif /* ALTERNATE_SHEBANG */
5435                 if (!d
5436                     && *s == '#'
5437                     && ipathend > ipath
5438                     && !PL_minus_c
5439                     && !instr(s,"indir")
5440                     && instr(PL_origargv[0],"perl"))
5441                 {
5442                     dVAR;
5443                     char **newargv;
5444
5445                     *ipathend = '\0';
5446                     s = ipathend + 1;
5447                     while (s < PL_bufend && isSPACE(*s))
5448                         s++;
5449                     if (s < PL_bufend) {
5450                         Newx(newargv,PL_origargc+3,char*);
5451                         newargv[1] = s;
5452                         while (s < PL_bufend && !isSPACE(*s))
5453                             s++;
5454                         *s = '\0';
5455                         Copy(PL_origargv+1, newargv+2, PL_origargc+1, char*);
5456                     }
5457                     else
5458                         newargv = PL_origargv;
5459                     newargv[0] = ipath;
5460                     PERL_FPU_PRE_EXEC
5461                     PerlProc_execv(ipath, EXEC_ARGV_CAST(newargv));
5462                     PERL_FPU_POST_EXEC
5463                     Perl_croak(aTHX_ "Can't exec %s", ipath);
5464                 }
5465                 if (d) {
5466                     while (*d && !isSPACE(*d))
5467                         d++;
5468                     while (SPACE_OR_TAB(*d))
5469                         d++;
5470
5471                     if (*d++ == '-') {
5472                         const bool switches_done = PL_doswitches;
5473                         const U32 oldpdb = PL_perldb;
5474                         const bool oldn = PL_minus_n;
5475                         const bool oldp = PL_minus_p;
5476                         const char *d1 = d;
5477
5478                         do {
5479                             bool baduni = FALSE;
5480                             if (*d1 == 'C') {
5481                                 const char *d2 = d1 + 1;
5482                                 if (parse_unicode_opts((const char **)&d2)
5483                                     != PL_unicode)
5484                                     baduni = TRUE;
5485                             }
5486                             if (baduni || isALPHA_FOLD_EQ(*d1, 'M')) {
5487                                 const char * const m = d1;
5488                                 while (*d1 && !isSPACE(*d1))
5489                                     d1++;
5490                                 Perl_croak(aTHX_ "Too late for \"-%.*s\" option",
5491                                       (int)(d1 - m), m);
5492                             }
5493                             d1 = moreswitches(d1);
5494                         } while (d1);
5495                         if (PL_doswitches && !switches_done) {
5496                             int argc = PL_origargc;
5497                             char **argv = PL_origargv;
5498                             do {
5499                                 argc--,argv++;
5500                             } while (argc && argv[0][0] == '-' && argv[0][1]);
5501                             init_argv_symbols(argc,argv);
5502                         }
5503                         if (   (PERLDB_LINE_OR_SAVESRC && !oldpdb)
5504                             || ((PL_minus_n || PL_minus_p) && !(oldn || oldp)))
5505                               /* if we have already added "LINE: while (<>) {",
5506                                  we must not do it again */
5507                         {
5508                             SvPVCLEAR(PL_linestr);
5509                             PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = SvPVX(PL_linestr);
5510                             PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
5511                             PL_last_lop = PL_last_uni = NULL;
5512                             PL_preambled = FALSE;
5513                             if (PERLDB_LINE_OR_SAVESRC)
5514                                 (void)gv_fetchfile(PL_origfilename);
5515                             goto retry;
5516                         }
5517                     }
5518                 }
5519             }
5520         }
5521         if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) {
5522             PL_lex_state = LEX_FORMLINE;
5523             force_next(FORMRBRACK);
5524             TOKEN(';');
5525         }
5526         goto retry;
5527     case '\r':
5528 #ifdef PERL_STRICT_CR
5529         Perl_warn(aTHX_ "Illegal character \\%03o (carriage return)", '\r');
5530         Perl_croak(aTHX_
5531       "\t(Maybe you didn't strip carriage returns after a network transfer?)\n");
5532 #endif
5533     case ' ': case '\t': case '\f': case '\v':
5534         s++;
5535         goto retry;
5536     case '#':
5537     case '\n':
5538         if (PL_lex_state != LEX_NORMAL
5539             || (PL_in_eval && !PL_rsfp && !PL_parser->filtered))
5540         {
5541             const bool in_comment = *s == '#';
5542             if (*s == '#' && s == PL_linestart && PL_in_eval
5543              && !PL_rsfp && !PL_parser->filtered) {
5544                 /* handle eval qq[#line 1 "foo"\n ...] */
5545                 CopLINE_dec(PL_curcop);
5546                 incline(s);
5547             }
5548             d = s;
5549             while (d < PL_bufend && *d != '\n')
5550                 d++;
5551             if (d < PL_bufend)
5552                 d++;
5553             else if (d > PL_bufend)
5554                 /* Found by Ilya: feed random input to Perl. */
5555                 Perl_croak(aTHX_ "panic: input overflow, %p > %p",
5556                            d, PL_bufend);
5557             s = d;
5558             if (in_comment && d == PL_bufend
5559                 && PL_lex_state == LEX_INTERPNORMAL
5560                 && PL_lex_inwhat == OP_SUBST && PL_lex_repl == PL_linestr
5561                 && SvEVALED(PL_lex_repl) && d[-1] == '}') s--;
5562             else
5563                 incline(s);
5564             if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) {
5565                 PL_lex_state = LEX_FORMLINE;
5566                 force_next(FORMRBRACK);
5567                 TOKEN(';');
5568             }
5569         }
5570         else {
5571             while (s < PL_bufend && *s != '\n')
5572                 s++;
5573             if (s < PL_bufend)
5574                 {
5575                     s++;
5576                     if (s < PL_bufend)
5577                         incline(s);
5578                 }
5579             else if (s > PL_bufend)
5580                 /* Found by Ilya: feed random input to Perl. */
5581                 Perl_croak(aTHX_ "panic: input overflow");
5582         }
5583         goto retry;
5584     case '-':
5585         if (s[1] && isALPHA(s[1]) && !isWORDCHAR(s[2])) {
5586             I32 ftst = 0;
5587             char tmp;
5588
5589             s++;
5590             PL_bufptr = s;
5591             tmp = *s++;
5592
5593             while (s < PL_bufend && SPACE_OR_TAB(*s))
5594                 s++;
5595
5596             if (strEQs(s,"=>")) {
5597                 s = force_word(PL_bufptr,BAREWORD,FALSE,FALSE);
5598                 DEBUG_T( { printbuf("### Saw unary minus before =>, forcing word %s\n", s); } );
5599                 OPERATOR('-');          /* unary minus */
5600             }
5601             switch (tmp) {
5602             case 'r': ftst = OP_FTEREAD;        break;
5603             case 'w': ftst = OP_FTEWRITE;       break;
5604             case 'x': ftst = OP_FTEEXEC;        break;
5605             case 'o': ftst = OP_FTEOWNED;       break;
5606             case 'R': ftst = OP_FTRREAD;        break;
5607             case 'W': ftst = OP_FTRWRITE;       break;
5608             case 'X': ftst = OP_FTREXEC;        break;
5609             case 'O': ftst = OP_FTROWNED;       break;
5610             case 'e': ftst = OP_FTIS;           break;
5611             case 'z': ftst = OP_FTZERO;         break;
5612             case 's': ftst = OP_FTSIZE;         break;
5613             case 'f': ftst = OP_FTFILE;         break;
5614             case 'd': ftst = OP_FTDIR;          break;
5615             case 'l': ftst = OP_FTLINK;         break;
5616             case 'p': ftst = OP_FTPIPE;         break;
5617             case 'S': ftst = OP_FTSOCK;         break;
5618             case 'u': ftst = OP_FTSUID;         break;
5619             case 'g': ftst = OP_FTSGID;         break;
5620             case 'k': ftst = OP_FTSVTX;         break;
5621             case 'b': ftst = OP_FTBLK;          break;
5622             case 'c': ftst = OP_FTCHR;          break;
5623             case 't': ftst = OP_FTTTY;          break;
5624             case 'T': ftst = OP_FTTEXT;         break;
5625             case 'B': ftst = OP_FTBINARY;       break;
5626             case 'M': case 'A': case 'C':
5627                 gv_fetchpvs("\024", GV_ADD|GV_NOTQUAL, SVt_PV);
5628                 switch (tmp) {
5629                 case 'M': ftst = OP_FTMTIME;    break;
5630                 case 'A': ftst = OP_FTATIME;    break;
5631                 case 'C': ftst = OP_FTCTIME;    break;
5632                 default:                        break;
5633                 }
5634                 break;
5635             default:
5636                 break;
5637             }
5638             if (ftst) {
5639                 PL_last_uni = PL_oldbufptr;
5640                 PL_last_lop_op = (OPCODE)ftst;
5641                 DEBUG_T( { PerlIO_printf(Perl_debug_log,
5642                         "### Saw file test %c\n", (int)tmp);
5643                 } );
5644                 FTST(ftst);
5645             }
5646             else {
5647                 /* Assume it was a minus followed by a one-letter named
5648                  * subroutine call (or a -bareword), then. */
5649                 DEBUG_T( { PerlIO_printf(Perl_debug_log,
5650                         "### '-%c' looked like a file test but was not\n",
5651                         (int) tmp);
5652                 } );
5653                 s = --PL_bufptr;
5654             }
5655         }
5656         {
5657             const char tmp = *s++;
5658             if (*s == tmp) {
5659                 s++;
5660                 if (PL_expect == XOPERATOR)
5661                     TERM(POSTDEC);
5662                 else
5663                     OPERATOR(PREDEC);
5664             }
5665             else if (*s == '>') {
5666                 s++;
5667                 s = skipspace(s);
5668                 if (((*s == '$' || *s == '&') && s[1] == '*')
5669                   ||(*s == '$' && s[1] == '#' && s[2] == '*')
5670                   ||((*s == '@' || *s == '%') && strchr("*[{", s[1]))
5671                   ||(*s == '*' && (s[1] == '*' || s[1] == '{'))
5672                  )
5673                 {
5674                     PL_expect = XPOSTDEREF;
5675                     TOKEN(ARROW);
5676                 }
5677                 if (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)) {
5678                     s = force_word(s,METHOD,FALSE,TRUE);
5679                     TOKEN(ARROW);
5680                 }
5681                 else if (*s == '$')
5682                     OPERATOR(ARROW);
5683                 else
5684                     TERM(ARROW);
5685             }
5686             if (PL_expect == XOPERATOR) {
5687                 if (*s == '='
5688                     && !PL_lex_allbrackets
5689                     && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
5690                 {
5691                     s--;
5692                     TOKEN(0);
5693                 }
5694                 Aop(OP_SUBTRACT);
5695             }
5696             else {
5697                 if (isSPACE(*s) || !isSPACE(*PL_bufptr))
5698                     check_uni();
5699                 OPERATOR('-');          /* unary minus */
5700             }
5701         }
5702
5703     case '+':
5704         {
5705             const char tmp = *s++;
5706             if (*s == tmp) {
5707                 s++;
5708                 if (PL_expect == XOPERATOR)
5709                     TERM(POSTINC);
5710                 else
5711                     OPERATOR(PREINC);
5712             }
5713             if (PL_expect == XOPERATOR) {
5714                 if (*s == '='
5715                     && !PL_lex_allbrackets
5716                     && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
5717                 {
5718                     s--;
5719                     TOKEN(0);
5720                 }
5721                 Aop(OP_ADD);
5722             }
5723             else {
5724                 if (isSPACE(*s) || !isSPACE(*PL_bufptr))
5725                     check_uni();
5726                 OPERATOR('+');
5727             }
5728         }
5729
5730     case '*':
5731         if (PL_expect == XPOSTDEREF) POSTDEREF('*');
5732         if (PL_expect != XOPERATOR) {
5733             s = scan_ident(s, PL_tokenbuf, sizeof PL_tokenbuf, TRUE);
5734             PL_expect = XOPERATOR;
5735             force_ident(PL_tokenbuf, '*');
5736             if (!*PL_tokenbuf)
5737                 PREREF('*');
5738             TERM('*');
5739         }
5740         s++;
5741         if (*s == '*') {
5742             s++;
5743             if (*s == '=' && !PL_lex_allbrackets
5744                 && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
5745             {
5746                 s -= 2;
5747                 TOKEN(0);
5748             }
5749             PWop(OP_POW);
5750         }
5751         if (*s == '='
5752             && !PL_lex_allbrackets
5753             && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
5754         {
5755             s--;
5756             TOKEN(0);
5757         }
5758         PL_parser->saw_infix_sigil = 1;
5759         Mop(OP_MULTIPLY);
5760
5761     case '%':
5762     {
5763         if (PL_expect == XOPERATOR) {
5764             if (s[1] == '='
5765                 && !PL_lex_allbrackets
5766                 && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
5767             {
5768                 TOKEN(0);
5769             }
5770             ++s;
5771             PL_parser->saw_infix_sigil = 1;
5772             Mop(OP_MODULO);
5773         }
5774         else if (PL_expect == XPOSTDEREF) POSTDEREF('%');
5775         PL_tokenbuf[0] = '%';
5776         s = scan_ident(s, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1, FALSE);
5777         pl_yylval.ival = 0;
5778         if (!PL_tokenbuf[1]) {
5779             PREREF('%');
5780         }
5781         if ((PL_expect != XREF || PL_oldoldbufptr == PL_last_lop) && intuit_more(s)) {
5782             if (*s == '[')
5783                 PL_tokenbuf[0] = '@';
5784         }
5785         PL_expect = XOPERATOR;
5786         force_ident_maybe_lex('%');
5787         TERM('%');
5788     }
5789     case '^':
5790         d = s;
5791         bof = FEATURE_BITWISE_IS_ENABLED;
5792         if (bof && s[1] == '.')
5793             s++;
5794         if (!PL_lex_allbrackets && PL_lex_fakeeof >=
5795                 (s[1] == '=' ? LEX_FAKEEOF_ASSIGN : LEX_FAKEEOF_BITWISE))
5796         {
5797             s = d;
5798             TOKEN(0);
5799         }
5800         s++;
5801         BOop(bof ? d == s-2 ? OP_SBIT_XOR : OP_NBIT_XOR : OP_BIT_XOR);
5802     case '[':
5803         if (PL_lex_brackets > 100)
5804             Renew(PL_lex_brackstack, PL_lex_brackets + 10, char);
5805         PL_lex_brackstack[PL_lex_brackets++] = 0;
5806         PL_lex_allbrackets++;
5807         {
5808             const char tmp = *s++;
5809             OPERATOR(tmp);
5810         }
5811     case '~':
5812         if (s[1] == '~'
5813             && (PL_expect == XOPERATOR || PL_expect == XTERMORDORDOR))
5814         {
5815             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
5816                 TOKEN(0);
5817             s += 2;
5818             Perl_ck_warner_d(aTHX_
5819                 packWARN(WARN_EXPERIMENTAL__SMARTMATCH),
5820                 "Smartmatch is experimental");
5821             Eop(OP_SMARTMATCH);
5822         }
5823         s++;
5824         if ((bof = FEATURE_BITWISE_IS_ENABLED) && *s == '.') {
5825             s++;
5826             BCop(OP_SCOMPLEMENT);
5827         }
5828         BCop(bof ? OP_NCOMPLEMENT : OP_COMPLEMENT);
5829     case ',':
5830         if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMMA)
5831             TOKEN(0);
5832         s++;
5833         OPERATOR(',');
5834     case ':':
5835         if (s[1] == ':') {
5836             len = 0;
5837             goto just_a_word_zero_gv;
5838         }
5839         s++;
5840         {
5841         OP *attrs;
5842
5843         switch (PL_expect) {
5844         case XOPERATOR:
5845             if (!PL_in_my || PL_lex_state != LEX_NORMAL)
5846                 break;
5847             PL_bufptr = s;      /* update in case we back off */
5848             if (*s == '=') {
5849                 Perl_croak(aTHX_
5850                            "Use of := for an empty attribute list is not allowed");
5851             }
5852             goto grabattrs;
5853         case XATTRBLOCK:
5854             PL_expect = XBLOCK;
5855             goto grabattrs;
5856         case XATTRTERM:
5857             PL_expect = XTERMBLOCK;
5858          grabattrs:
5859             s = skipspace(s);
5860             attrs = NULL;
5861             while (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)) {
5862                 I32 tmp;
5863                 SV *sv;
5864                 d = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE, &len);
5865                 if (isLOWER(*s) && (tmp = keyword(PL_tokenbuf, len, 0))) {
5866                     if (tmp < 0) tmp = -tmp;
5867                     switch (tmp) {
5868                     case KEY_or:
5869                     case KEY_and:
5870                     case KEY_for:
5871                     case KEY_foreach:
5872                     case KEY_unless:
5873                     case KEY_if:
5874                     case KEY_while:
5875                     case KEY_until:
5876                         goto got_attrs;
5877                     default:
5878                         break;
5879                     }
5880                 }
5881                 sv = newSVpvn_flags(s, len, UTF ? SVf_UTF8 : 0);
5882                 if (*d == '(') {
5883                     d = scan_str(d,TRUE,TRUE,FALSE,NULL);
5884                     if (!d) {
5885                         if (attrs)
5886                             op_free(attrs);
5887                         sv_free(sv);
5888                         Perl_croak(aTHX_ "Unterminated attribute parameter in attribute list");
5889                     }
5890                     COPLINE_SET_FROM_MULTI_END;
5891                 }
5892                 if (PL_lex_stuff) {
5893                     sv_catsv(sv, PL_lex_stuff);
5894                     attrs = op_append_elem(OP_LIST, attrs,
5895                                         newSVOP(OP_CONST, 0, sv));
5896                     SvREFCNT_dec_NN(PL_lex_stuff);
5897                     PL_lex_stuff = NULL;
5898                 }
5899                 else {
5900                     if (len == 6 && strnEQ(SvPVX(sv), "unique", len)) {
5901                         sv_free(sv);
5902                         if (PL_in_my == KEY_our) {
5903                             deprecate_disappears_in("5.28",
5904                                 "Attribute \"unique\" is deprecated");
5905                         }
5906                         else
5907                             Perl_croak(aTHX_ "The 'unique' attribute may only be applied to 'our' variables");
5908                     }
5909
5910                     /* NOTE: any CV attrs applied here need to be part of
5911                        the CVf_BUILTIN_ATTRS define in cv.h! */
5912                     else if (!PL_in_my && len == 6 && strnEQ(SvPVX(sv), "lvalue", len)) {
5913                         sv_free(sv);
5914                         CvLVALUE_on(PL_compcv);
5915                     }
5916                     else if (!PL_in_my && len == 6 && strnEQ(SvPVX(sv), "locked", len)) {
5917                         sv_free(sv);
5918                         deprecate_disappears_in("5.28",
5919                             "Attribute \"locked\" is deprecated");
5920                     }
5921                     else if (!PL_in_my && len == 6 && strnEQ(SvPVX(sv), "method", len)) {
5922                         sv_free(sv);
5923                         CvMETHOD_on(PL_compcv);
5924                     }
5925                     else if (!PL_in_my && len == 5
5926                           && strnEQ(SvPVX(sv), "const", len))
5927                     {
5928                         sv_free(sv);
5929                         Perl_ck_warner_d(aTHX_
5930                             packWARN(WARN_EXPERIMENTAL__CONST_ATTR),
5931                            ":const is experimental"
5932                         );
5933                         CvANONCONST_on(PL_compcv);
5934                         if (!CvANON(PL_compcv))
5935                             yyerror(":const is not permitted on named "
5936                                     "subroutines");
5937                     }
5938                     /* After we've set the flags, it could be argued that
5939                        we don't need to do the attributes.pm-based setting
5940                        process, and shouldn't bother appending recognized
5941                        flags.  To experiment with that, uncomment the
5942                        following "else".  (Note that's already been
5943                        uncommented.  That keeps the above-applied built-in
5944                        attributes from being intercepted (and possibly
5945                        rejected) by a package's attribute routines, but is
5946                        justified by the performance win for the common case
5947                        of applying only built-in attributes.) */
5948                     else
5949                         attrs = op_append_elem(OP_LIST, attrs,
5950                                             newSVOP(OP_CONST, 0,
5951                                                     sv));
5952                 }
5953                 s = skipspace(d);
5954                 if (*s == ':' && s[1] != ':')
5955                     s = skipspace(s+1);
5956                 else if (s == d)
5957                     break;      /* require real whitespace or :'s */
5958                 /* XXX losing whitespace on sequential attributes here */
5959             }
5960             {
5961                 if (*s != ';'
5962                     && *s != '}'
5963                     && !(PL_expect == XOPERATOR
5964                          ? (*s == '=' ||  *s == ')')
5965                          : (*s == '{' ||  *s == '(')))
5966                 {
5967                     const char q = ((*s == '\'') ? '"' : '\'');
5968                     /* If here for an expression, and parsed no attrs, back
5969                        off. */
5970                     if (PL_expect == XOPERATOR && !attrs) {
5971                         s = PL_bufptr;
5972                         break;
5973                     }
5974                     /* MUST advance bufptr here to avoid bogus "at end of line"
5975                        context messages from yyerror().
5976                     */
5977                     PL_bufptr = s;
5978                     yyerror( (const char *)
5979                              (*s
5980                               ? Perl_form(aTHX_ "Invalid separator character "
5981                                           "%c%c%c in attribute list", q, *s, q)
5982                               : "Unterminated attribute list" ) );
5983                     if (attrs)
5984                         op_free(attrs);
5985                     OPERATOR(':');
5986                 }
5987             }
5988         got_attrs:
5989             if (attrs) {
5990                 NEXTVAL_NEXTTOKE.opval = attrs;
5991                 force_next(THING);
5992             }
5993             TOKEN(COLONATTR);
5994         }
5995         }
5996         if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_CLOSING) {
5997             s--;
5998             TOKEN(0);
5999         }
6000         PL_lex_allbrackets--;
6001         OPERATOR(':');
6002     case '(':
6003         s++;
6004         if (PL_last_lop == PL_oldoldbufptr || PL_last_uni == PL_oldoldbufptr)
6005             PL_oldbufptr = PL_oldoldbufptr;             /* allow print(STDOUT 123) */
6006         else
6007             PL_expect = XTERM;
6008         s = skipspace(s);
6009         PL_lex_allbrackets++;
6010         TOKEN('(');
6011     case ';':
6012         if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
6013             TOKEN(0);
6014         CLINE;
6015         s++;
6016         PL_expect = XSTATE;
6017         TOKEN(';');
6018     case ')':
6019         if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_CLOSING)
6020             TOKEN(0);
6021         s++;
6022         PL_lex_allbrackets--;
6023         s = skipspace(s);
6024         if (*s == '{')
6025             PREBLOCK(')');
6026         TERM(')');
6027     case ']':
6028         if (PL_lex_brackets && PL_lex_brackstack[PL_lex_brackets-1] == XFAKEEOF)
6029             TOKEN(0);
6030         s++;
6031         if (PL_lex_brackets <= 0)
6032             /* diag_listed_as: Unmatched right %s bracket */
6033             yyerror("Unmatched right square bracket");
6034         else
6035             --PL_lex_brackets;
6036         PL_lex_allbrackets--;
6037         if (PL_lex_state == LEX_INTERPNORMAL) {
6038             if (PL_lex_brackets == 0) {
6039                 if (*s == '-' && s[1] == '>')
6040                     PL_lex_state = LEX_INTERPENDMAYBE;
6041                 else if (*s != '[' && *s != '{')
6042                     PL_lex_state = LEX_INTERPEND;
6043             }
6044         }
6045         TERM(']');
6046     case '{':
6047         s++;
6048       leftbracket:
6049         if (PL_lex_brackets > 100) {
6050             Renew(PL_lex_brackstack, PL_lex_brackets + 10, char);
6051         }
6052         switch (PL_expect) {
6053         case XTERM:
6054         case XTERMORDORDOR:
6055             PL_lex_brackstack[PL_lex_brackets++] = XOPERATOR;
6056             PL_lex_allbrackets++;
6057             OPERATOR(HASHBRACK);
6058         case XOPERATOR:
6059             while (s < PL_bufend && SPACE_OR_TAB(*s))
6060                 s++;
6061             d = s;
6062             PL_tokenbuf[0] = '\0';
6063             if (d < PL_bufend && *d == '-') {
6064                 PL_tokenbuf[0] = '-';
6065                 d++;
6066                 while (d < PL_bufend && SPACE_OR_TAB(*d))
6067                     d++;
6068             }
6069             if (d < PL_bufend && isIDFIRST_lazy_if_safe(d, PL_bufend, UTF)) {
6070                 d = scan_word(d, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1,
6071                               FALSE, &len);
6072                 while (d < PL_bufend && SPACE_OR_TAB(*d))
6073                     d++;
6074                 if (*d == '}') {
6075                     const char minus = (PL_tokenbuf[0] == '-');
6076                     s = force_word(s + minus, BAREWORD, FALSE, TRUE);
6077                     if (minus)
6078                         force_next('-');
6079                 }
6080             }
6081             /* FALLTHROUGH */
6082         case XATTRTERM:
6083         case XTERMBLOCK:
6084             PL_lex_brackstack[PL_lex_brackets++] = XOPERATOR;
6085             PL_lex_allbrackets++;
6086             PL_expect = XSTATE;
6087             break;
6088         case XATTRBLOCK:
6089         case XBLOCK:
6090             PL_lex_brackstack[PL_lex_brackets++] = XSTATE;
6091             PL_lex_allbrackets++;
6092             PL_expect = XSTATE;
6093             break;
6094         case XBLOCKTERM:
6095             PL_lex_brackstack[PL_lex_brackets++] = XTERM;
6096             PL_lex_allbrackets++;
6097             PL_expect = XSTATE;
6098             break;
6099         default: {
6100                 const char *t;
6101                 if (PL_oldoldbufptr == PL_last_lop)
6102                     PL_lex_brackstack[PL_lex_brackets++] = XTERM;
6103                 else
6104                     PL_lex_brackstack[PL_lex_brackets++] = XOPERATOR;
6105                 PL_lex_allbrackets++;
6106                 s = skipspace(s);
6107                 if (*s == '}') {
6108                     if (PL_expect == XREF && PL_lex_state == LEX_INTERPNORMAL) {
6109                         PL_expect = XTERM;
6110                         /* This hack is to get the ${} in the message. */
6111                         PL_bufptr = s+1;
6112                         yyerror("syntax error");
6113                         break;
6114                     }
6115                     OPERATOR(HASHBRACK);
6116                 }
6117                 if (PL_expect == XREF && PL_oldoldbufptr != PL_last_lop) {
6118                     /* ${...} or @{...} etc., but not print {...}
6119                      * Skip the disambiguation and treat this as a block.
6120                      */
6121                     goto block_expectation;
6122                 }
6123                 /* This hack serves to disambiguate a pair of curlies
6124                  * as being a block or an anon hash.  Normally, expectation
6125                  * determines that, but in cases where we're not in a
6126                  * position to expect anything in particular (like inside
6127                  * eval"") we have to resolve the ambiguity.  This code
6128                  * covers the case where the first term in the curlies is a
6129                  * quoted string.  Most other cases need to be explicitly
6130                  * disambiguated by prepending a "+" before the opening
6131                  * curly in order to force resolution as an anon hash.
6132                  *
6133                  * XXX should probably propagate the outer expectation
6134                  * into eval"" to rely less on this hack, but that could
6135                  * potentially break current behavior of eval"".
6136                  * GSAR 97-07-21
6137                  */
6138                 t = s;
6139                 if (*s == '\'' || *s == '"' || *s == '`') {
6140                     /* common case: get past first string, handling escapes */
6141                     for (t++; t < PL_bufend && *t != *s;)
6142                         if (*t++ == '\\')
6143                             t++;
6144                     t++;
6145                 }
6146                 else if (*s == 'q') {
6147                     if (++t < PL_bufend
6148                         && (!isWORDCHAR(*t)
6149                             || ((*t == 'q' || *t == 'x') && ++t < PL_bufend
6150                                 && !isWORDCHAR(*t))))
6151                     {
6152                         /* skip q//-like construct */
6153                         const char *tmps;
6154                         char open, close, term;
6155                         I32 brackets = 1;
6156
6157                         while (t < PL_bufend && isSPACE(*t))
6158                             t++;
6159                         /* check for q => */
6160                         if (t+1 < PL_bufend && t[0] == '=' && t[1] == '>') {
6161                             OPERATOR(HASHBRACK);
6162                         }
6163                         term = *t;
6164                         open = term;
6165                         if (term && (tmps = strchr("([{< )]}> )]}>",term)))
6166                             term = tmps[5];
6167                         close = term;
6168                         if (open == close)
6169                             for (t++; t < PL_bufend; t++) {
6170                                 if (*t == '\\' && t+1 < PL_bufend && open != '\\')
6171                                     t++;
6172                                 else if (*t == open)
6173                                     break;
6174                             }
6175                         else {
6176                             for (t++; t < PL_bufend; t++) {
6177                                 if (*t == '\\' && t+1 < PL_bufend)
6178                                     t++;
6179                                 else if (*t == close && --brackets <= 0)
6180                                     break;
6181                                 else if (*t == open)
6182                                     brackets++;
6183                             }
6184                         }
6185                         t++;
6186                     }
6187                     else
6188                         /* skip plain q word */
6189                         while (   t < PL_bufend
6190                                && isWORDCHAR_lazy_if_safe(t, PL_bufend, UTF))
6191                         {
6192                             t += UTF ? UTF8SKIP(t) : 1;
6193                         }
6194                 }
6195                 else if (isWORDCHAR_lazy_if_safe(t, PL_bufend, UTF)) {
6196                     t += UTF ? UTF8SKIP(t) : 1;
6197                     while (   t < PL_bufend
6198                            && isWORDCHAR_lazy_if_safe(t, PL_bufend, UTF))
6199                     {
6200                         t += UTF ? UTF8SKIP(t) : 1;
6201                     }
6202                 }
6203                 while (t < PL_bufend && isSPACE(*t))
6204                     t++;
6205                 /* if comma follows first term, call it an anon hash */
6206                 /* XXX it could be a comma expression with loop modifiers */
6207                 if (t < PL_bufend && ((*t == ',' && (*s == 'q' || !isLOWER(*s)))
6208                                    || (*t == '=' && t[1] == '>')))
6209                     OPERATOR(HASHBRACK);
6210                 if (PL_expect == XREF)
6211                 {
6212                   block_expectation:
6213                     /* If there is an opening brace or 'sub:', treat it
6214                        as a term to make ${{...}}{k} and &{sub:attr...}
6215                        dwim.  Otherwise, treat it as a statement, so
6216                        map {no strict; ...} works.
6217                      */
6218                     s = skipspace(s);
6219                     if (*s == '{') {
6220                         PL_expect = XTERM;
6221                         break;
6222                     }
6223                     if (strEQs(s, "sub")) {
6224                         d = s + 3;
6225                         d = skipspace(d);
6226                         if (*d == ':') {
6227                             PL_expect = XTERM;
6228                             break;
6229                         }
6230                     }
6231                     PL_expect = XSTATE;
6232                 }
6233                 else {
6234                     PL_lex_brackstack[PL_lex_brackets-1] = XSTATE;
6235                     PL_expect = XSTATE;
6236                 }
6237             }
6238             break;
6239         }
6240         pl_yylval.ival = CopLINE(PL_curcop);
6241         PL_copline = NOLINE;   /* invalidate current command line number */
6242         TOKEN(formbrack ? '=' : '{');
6243     case '}':
6244         if (PL_lex_brackets && PL_lex_brackstack[PL_lex_brackets-1] == XFAKEEOF)
6245             TOKEN(0);
6246       rightbracket:
6247         s++;
6248         if (PL_lex_brackets <= 0)
6249             /* diag_listed_as: Unmatched right %s bracket */
6250             yyerror("Unmatched right curly bracket");
6251         else
6252             PL_expect = (expectation)PL_lex_brackstack[--PL_lex_brackets];
6253         PL_lex_allbrackets--;
6254         if (PL_lex_state == LEX_INTERPNORMAL) {
6255             if (PL_lex_brackets == 0) {
6256                 if (PL_expect & XFAKEBRACK) {
6257                     PL_expect &= XENUMMASK;
6258                     PL_lex_state = LEX_INTERPEND;
6259                     PL_bufptr = s;
6260                     return yylex();     /* ignore fake brackets */
6261                 }
6262                 if (PL_lex_inwhat == OP_SUBST && PL_lex_repl == PL_linestr
6263                  && SvEVALED(PL_lex_repl))
6264                     PL_lex_state = LEX_INTERPEND;
6265                 else if (*s == '-' && s[1] == '>')
6266                     PL_lex_state = LEX_INTERPENDMAYBE;
6267                 else if (*s != '[' && *s != '{')
6268                     PL_lex_state = LEX_INTERPEND;
6269             }
6270         }
6271         if (PL_expect & XFAKEBRACK) {
6272             PL_expect &= XENUMMASK;
6273             PL_bufptr = s;
6274             return yylex();             /* ignore fake brackets */
6275         }
6276         force_next(formbrack ? '.' : '}');
6277         if (formbrack) LEAVE;
6278         if (formbrack == 2) { /* means . where arguments were expected */
6279             force_next(';');
6280             TOKEN(FORMRBRACK);
6281         }
6282         TOKEN(';');
6283     case '&':
6284         if (PL_expect == XPOSTDEREF) POSTDEREF('&');
6285         s++;
6286         if (*s++ == '&') {
6287             if (!PL_lex_allbrackets && PL_lex_fakeeof >=
6288                     (*s == '=' ? LEX_FAKEEOF_ASSIGN : LEX_FAKEEOF_LOGIC)) {
6289                 s -= 2;
6290                 TOKEN(0);
6291             }
6292             AOPERATOR(ANDAND);
6293         }
6294         s--;
6295         if (PL_expect == XOPERATOR) {
6296             if (   PL_bufptr == PL_linestart
6297                 && ckWARN(WARN_SEMICOLON)
6298                 && isIDFIRST_lazy_if_safe(s, PL_bufend, UTF))
6299             {
6300                 CopLINE_dec(PL_curcop);
6301                 Perl_warner(aTHX_ packWARN(WARN_SEMICOLON), "%s", PL_warn_nosemi);
6302                 CopLINE_inc(PL_curcop);
6303             }
6304             d = s;
6305             if ((bof = FEATURE_BITWISE_IS_ENABLED) && *s == '.')
6306                 s++;
6307             if (!PL_lex_allbrackets && PL_lex_fakeeof >=
6308                     (*s == '=' ? LEX_FAKEEOF_ASSIGN : LEX_FAKEEOF_BITWISE)) {
6309                 s = d;
6310                 s--;
6311                 TOKEN(0);
6312             }
6313             if (d == s) {
6314                 PL_parser->saw_infix_sigil = 1;
6315                 BAop(bof ? OP_NBIT_AND : OP_BIT_AND);
6316             }
6317             else
6318                 BAop(OP_SBIT_AND);
6319         }
6320
6321         PL_tokenbuf[0] = '&';
6322         s = scan_ident(s - 1, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1, TRUE);
6323         pl_yylval.ival = (OPpENTERSUB_AMPER<<8);
6324         if (PL_tokenbuf[1]) {
6325             force_ident_maybe_lex('&');
6326         }
6327         else
6328             PREREF('&');
6329         TERM('&');
6330
6331     case '|':
6332         s++;
6333         if (*s++ == '|') {
6334             if (!PL_lex_allbrackets && PL_lex_fakeeof >=
6335                     (*s == '=' ? LEX_FAKEEOF_ASSIGN : LEX_FAKEEOF_LOGIC)) {
6336                 s -= 2;
6337                 TOKEN(0);
6338             }
6339             AOPERATOR(OROR);
6340         }
6341         s--;
6342         d = s;
6343         if ((bof = FEATURE_BITWISE_IS_ENABLED) && *s == '.')
6344             s++;
6345         if (!PL_lex_allbrackets && PL_lex_fakeeof >=
6346                 (*s == '=' ? LEX_FAKEEOF_ASSIGN : LEX_FAKEEOF_BITWISE)) {
6347             s = d - 1;
6348             TOKEN(0);
6349         }
6350         BOop(bof ? s == d ? OP_NBIT_OR : OP_SBIT_OR : OP_BIT_OR);
6351     case '=':
6352         s++;
6353         {
6354             const char tmp = *s++;
6355             if (tmp == '=') {
6356                 if ((s == PL_linestart+2 || s[-3] == '\n') && strEQs(s, "=====")) {
6357                     s = vcs_conflict_marker(s + 5);
6358                     goto retry;
6359                 }
6360                 if (!PL_lex_allbrackets
6361                     && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
6362                 {
6363                     s -= 2;
6364                     TOKEN(0);
6365                 }
6366                 Eop(OP_EQ);
6367             }
6368             if (tmp == '>') {
6369                 if (!PL_lex_allbrackets
6370                     && PL_lex_fakeeof >= LEX_FAKEEOF_COMMA)
6371                 {
6372                     s -= 2;
6373                     TOKEN(0);
6374                 }
6375                 OPERATOR(',');
6376             }
6377             if (tmp == '~')
6378                 PMop(OP_MATCH);
6379             if (tmp && isSPACE(*s) && ckWARN(WARN_SYNTAX)
6380                 && strchr("+-*/%.^&|<",tmp))
6381                 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
6382                             "Reversed %c= operator",(int)tmp);
6383             s--;
6384             if (PL_expect == XSTATE
6385                 && isALPHA(tmp)
6386                 && (s == PL_linestart+1 || s[-2] == '\n') )
6387             {
6388                 if ((PL_in_eval && !PL_rsfp && !PL_parser->filtered)
6389                     || PL_lex_state != LEX_NORMAL) {
6390                     d = PL_bufend;
6391                     while (s < d) {
6392                         if (*s++ == '\n') {
6393                             incline(s);
6394                             if (strEQs(s,"=cut")) {
6395                                 s = strchr(s,'\n');
6396                                 if (s)
6397                                     s++;
6398                                 else
6399                                     s = d;
6400                                 incline(s);
6401                                 goto retry;
6402                             }
6403                         }
6404                     }
6405                     goto retry;
6406                 }
6407                 s = PL_bufend;
6408                 PL_parser->in_pod = 1;
6409                 goto retry;
6410             }
6411         }
6412         if (PL_expect == XBLOCK) {
6413             const char *t = s;
6414 #ifdef PERL_STRICT_CR
6415             while (SPACE_OR_TAB(*t))
6416 #else
6417             while (SPACE_OR_TAB(*t) || *t == '\r')
6418 #endif
6419                 t++;
6420             if (*t == '\n' || *t == '#') {
6421                 formbrack = 1;
6422                 ENTER;
6423                 SAVEI8(PL_parser->form_lex_state);
6424                 SAVEI32(PL_lex_formbrack);
6425                 PL_parser->form_lex_state = PL_lex_state;
6426                 PL_lex_formbrack = PL_lex_brackets + 1;
6427                 goto leftbracket;
6428             }
6429         }
6430         if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN) {
6431             s--;
6432             TOKEN(0);
6433         }
6434         pl_yylval.ival = 0;
6435         OPERATOR(ASSIGNOP);
6436     case '!':
6437         s++;
6438         {
6439             const char tmp = *s++;
6440             if (tmp == '=') {
6441                 /* was this !=~ where !~ was meant?
6442                  * warn on m:!=~\s+([/?]|[msy]\W|tr\W): */
6443
6444                 if (*s == '~' && ckWARN(WARN_SYNTAX)) {
6445                     const char *t = s+1;
6446
6447                     while (t < PL_bufend && isSPACE(*t))
6448                         ++t;
6449
6450                     if (*t == '/' || *t == '?'
6451                         || ((*t == 'm' || *t == 's' || *t == 'y')
6452                             && !isWORDCHAR(t[1]))
6453                         || (*t == 't' && t[1] == 'r' && !isWORDCHAR(t[2])))
6454                         Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
6455                                     "!=~ should be !~");
6456                 }
6457                 if (!PL_lex_allbrackets
6458                     && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
6459                 {
6460                     s -= 2;
6461                     TOKEN(0);
6462                 }
6463                 Eop(OP_NE);
6464             }
6465             if (tmp == '~')
6466                 PMop(OP_NOT);
6467         }
6468         s--;
6469         OPERATOR('!');
6470     case '<':
6471         if (PL_expect != XOPERATOR) {
6472             if (s[1] != '<' && !strchr(s,'>'))
6473                 check_uni();
6474             if (s[1] == '<' && s[2] != '>') {
6475                 if ((s == PL_linestart || s[-1] == '\n') && strEQs(s+2, "<<<<<")) {
6476                     s = vcs_conflict_marker(s + 7);
6477                     goto retry;
6478                 }
6479                 s = scan_heredoc(s);
6480             }
6481             else
6482                 s = scan_inputsymbol(s);
6483             PL_expect = XOPERATOR;
6484             TOKEN(sublex_start());
6485         }
6486         s++;
6487         {
6488             char tmp = *s++;
6489             if (tmp == '<') {
6490                 if ((s == PL_linestart+2 || s[-3] == '\n') && strEQs(s, "<<<<<")) {
6491                     s = vcs_conflict_marker(s + 5);
6492                     goto retry;
6493                 }
6494                 if (*s == '=' && !PL_lex_allbrackets
6495                     && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
6496                 {
6497                     s -= 2;
6498                     TOKEN(0);
6499                 }
6500                 SHop(OP_LEFT_SHIFT);
6501             }
6502             if (tmp == '=') {
6503                 tmp = *s++;
6504                 if (tmp == '>') {
6505                     if (!PL_lex_allbrackets
6506                         && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
6507                     {
6508                         s -= 3;
6509                         TOKEN(0);
6510                     }
6511                     Eop(OP_NCMP);
6512                 }
6513                 s--;
6514                 if (!PL_lex_allbrackets
6515                     && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
6516                 {
6517                     s -= 2;
6518                     TOKEN(0);
6519                 }
6520                 Rop(OP_LE);
6521             }
6522         }
6523         s--;
6524         if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE) {
6525             s--;
6526             TOKEN(0);
6527         }
6528         Rop(OP_LT);
6529     case '>':
6530         s++;
6531         {
6532             const char tmp = *s++;
6533             if (tmp == '>') {
6534                 if ((s == PL_linestart+2 || s[-3] == '\n') && strEQs(s, ">>>>>")) {
6535                     s = vcs_conflict_marker(s + 5);
6536                     goto retry;
6537                 }
6538                 if (*s == '=' && !PL_lex_allbrackets
6539                     && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
6540                 {
6541                     s -= 2;
6542                     TOKEN(0);
6543                 }
6544                 SHop(OP_RIGHT_SHIFT);
6545             }
6546             else if (tmp == '=') {
6547                 if (!PL_lex_allbrackets
6548                     && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
6549                 {
6550                     s -= 2;
6551                     TOKEN(0);
6552                 }
6553                 Rop(OP_GE);
6554             }
6555         }
6556         s--;
6557         if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE) {
6558             s--;
6559             TOKEN(0);
6560         }
6561         Rop(OP_GT);
6562
6563     case '$':
6564         CLINE;
6565
6566         if (PL_expect == XOPERATOR) {
6567             if (PL_lex_formbrack && PL_lex_brackets == PL_lex_formbrack) {
6568                 return deprecate_commaless_var_list();
6569             }
6570         }
6571         else if (PL_expect == XPOSTDEREF) {
6572             if (s[1] == '#') {
6573                 s++;
6574                 POSTDEREF(DOLSHARP);
6575             }
6576             POSTDEREF('$');
6577         }
6578
6579         if (   s[1] == '#'
6580             && (   isIDFIRST_lazy_if_safe(s+2, PL_bufend, UTF)
6581                 || strchr("{$:+-@", s[2])))
6582         {
6583             PL_tokenbuf[0] = '@';
6584             s = scan_ident(s + 1, PL_tokenbuf + 1,
6585                            sizeof PL_tokenbuf - 1, FALSE);
6586             if (PL_expect == XOPERATOR) {
6587                 d = s;
6588                 if (PL_bufptr > s) {
6589                     d = PL_bufptr-1;
6590                     PL_bufptr = PL_oldbufptr;
6591                 }
6592                 no_op("Array length", d);
6593             }
6594             if (!PL_tokenbuf[1])
6595                 PREREF(DOLSHARP);
6596             PL_expect = XOPERATOR;
6597             force_ident_maybe_lex('#');
6598             TOKEN(DOLSHARP);
6599         }
6600
6601         PL_tokenbuf[0] = '$';
6602         s = scan_ident(s, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1, FALSE);
6603         if (PL_expect == XOPERATOR) {
6604             d = s;
6605             if (PL_bufptr > s) {
6606                 d = PL_bufptr-1;
6607                 PL_bufptr = PL_oldbufptr;
6608             }
6609             no_op("Scalar", d);
6610         }
6611         if (!PL_tokenbuf[1]) {
6612             if (s == PL_bufend)
6613                 yyerror("Final $ should be \\$ or $name");
6614             PREREF('$');
6615         }
6616
6617         d = s;
6618         {
6619             const char tmp = *s;
6620             if (PL_lex_state == LEX_NORMAL || PL_lex_brackets)
6621                 s = skipspace(s);
6622
6623             if ((PL_expect != XREF || PL_oldoldbufptr == PL_last_lop)
6624                 && intuit_more(s)) {
6625                 if (*s == '[') {
6626                     PL_tokenbuf[0] = '@';
6627                     if (ckWARN(WARN_SYNTAX)) {
6628                         char *t = s+1;
6629
6630                         while (   isSPACE(*t)
6631                                || isWORDCHAR_lazy_if_safe(t, PL_bufend, UTF)
6632                                || *t == '$')
6633                         {
6634                             t += UTF ? UTF8SKIP(t) : 1;
6635                         }
6636                         if (*t++ == ',') {
6637                             PL_bufptr = skipspace(PL_bufptr); /* XXX can realloc */
6638                             while (t < PL_bufend && *t != ']')
6639                                 t++;
6640                             Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
6641                                         "Multidimensional syntax %" UTF8f " not supported",
6642                                         UTF8fARG(UTF,(int)((t - PL_bufptr) + 1), PL_bufptr));
6643                         }
6644                     }
6645                 }
6646                 else if (*s == '{') {
6647                     char *t;
6648                     PL_tokenbuf[0] = '%';
6649                     if (strEQ(PL_tokenbuf+1, "SIG")  && ckWARN(WARN_SYNTAX)
6650                         && (t = strchr(s, '}')) && (t = strchr(t, '=')))
6651                         {
6652                             char tmpbuf[sizeof PL_tokenbuf];
6653                             do {
6654                                 t++;
6655                             } while (isSPACE(*t));
6656                             if (isIDFIRST_lazy_if_safe(t, PL_bufend, UTF)) {
6657                                 STRLEN len;
6658                                 t = scan_word(t, tmpbuf, sizeof tmpbuf, TRUE,
6659                                               &len);
6660                                 while (isSPACE(*t))
6661                                     t++;
6662                                 if (  *t == ';'
6663                                     && get_cvn_flags(tmpbuf, len, UTF
6664                                                                   ? SVf_UTF8
6665                                                                   : 0))
6666                                 {
6667                                     Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
6668                                         "You need to quote \"%" UTF8f "\"",
6669                                          UTF8fARG(UTF, len, tmpbuf));
6670                                 }
6671                             }
6672                         }
6673                 }
6674             }
6675
6676             PL_expect = XOPERATOR;
6677             if (PL_lex_state == LEX_NORMAL && isSPACE((char)tmp)) {
6678                 const bool islop = (PL_last_lop == PL_oldoldbufptr);
6679                 if (!islop || PL_last_lop_op == OP_GREPSTART)
6680                     PL_expect = XOPERATOR;
6681                 else if (strchr("$@\"'`q", *s))
6682                     PL_expect = XTERM;          /* e.g. print $fh "foo" */
6683                 else if (   strchr("&*<%", *s)
6684                          && isIDFIRST_lazy_if_safe(s+1, PL_bufend, UTF))
6685                 {
6686                     PL_expect = XTERM;          /* e.g. print $fh &sub */
6687                 }
6688                 else if (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)) {
6689                     char tmpbuf[sizeof PL_tokenbuf];
6690                     int t2;
6691                     scan_word(s, tmpbuf, sizeof tmpbuf, TRUE, &len);
6692                     if ((t2 = keyword(tmpbuf, len, 0))) {
6693                         /* binary operators exclude handle interpretations */
6694                         switch (t2) {
6695                         case -KEY_x:
6696                         case -KEY_eq:
6697                         case -KEY_ne:
6698                         case -KEY_gt:
6699                         case -KEY_lt:
6700                         case -KEY_ge:
6701                         case -KEY_le:
6702                         case -KEY_cmp:
6703                             break;
6704                         default:
6705                             PL_expect = XTERM;  /* e.g. print $fh length() */
6706                             break;
6707                         }
6708                     }
6709                     else {
6710                         PL_expect = XTERM;      /* e.g. print $fh subr() */
6711                     }
6712                 }
6713                 else if (isDIGIT(*s))
6714                     PL_expect = XTERM;          /* e.g. print $fh 3 */
6715                 else if (*s == '.' && isDIGIT(s[1]))
6716                     PL_expect = XTERM;          /* e.g. print $fh .3 */
6717                 else if ((*s == '?' || *s == '-' || *s == '+')
6718                          && !isSPACE(s[1]) && s[1] != '=')
6719                     PL_expect = XTERM;          /* e.g. print $fh -1 */
6720                 else if (*s == '/' && !isSPACE(s[1]) && s[1] != '='
6721                          && s[1] != '/')
6722                     PL_expect = XTERM;          /* e.g. print $fh /.../
6723                                                    XXX except DORDOR operator
6724                                                 */
6725                 else if (*s == '<' && s[1] == '<' && !isSPACE(s[2])
6726                          && s[2] != '=')
6727                     PL_expect = XTERM;          /* print $fh <<"EOF" */
6728             }
6729         }
6730         force_ident_maybe_lex('$');
6731         TOKEN('$');
6732
6733     case '@':
6734         if (PL_expect == XPOSTDEREF)
6735             POSTDEREF('@');
6736         PL_tokenbuf[0] = '@';
6737         s = scan_ident(s, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1, FALSE);
6738         if (PL_expect == XOPERATOR) {
6739             d = s;
6740             if (PL_bufptr > s) {
6741                 d = PL_bufptr-1;
6742                 PL_bufptr = PL_oldbufptr;
6743             }
6744             no_op("Array", d);
6745         }
6746         pl_yylval.ival = 0;
6747         if (!PL_tokenbuf[1]) {
6748             PREREF('@');
6749         }
6750         if (PL_lex_state == LEX_NORMAL)
6751             s = skipspace(s);
6752         if ((PL_expect != XREF || PL_oldoldbufptr == PL_last_lop) && intuit_more(s)) {
6753             if (*s == '{')
6754                 PL_tokenbuf[0] = '%';
6755
6756             /* Warn about @ where they meant $. */
6757             if (*s == '[' || *s == '{') {
6758                 if (ckWARN(WARN_SYNTAX)) {
6759                     S_check_scalar_slice(aTHX_ s);
6760                 }
6761             }
6762         }
6763         PL_expect = XOPERATOR;
6764         force_ident_maybe_lex('@');
6765         TERM('@');
6766
6767      case '/':                  /* may be division, defined-or, or pattern */
6768         if ((PL_expect == XOPERATOR || PL_expect == XTERMORDORDOR) && s[1] == '/') {
6769             if (!PL_lex_allbrackets && PL_lex_fakeeof >=
6770                     (s[2] == '=' ? LEX_FAKEEOF_ASSIGN : LEX_FAKEEOF_LOGIC))
6771                 TOKEN(0);
6772             s += 2;
6773             AOPERATOR(DORDOR);
6774         }
6775         else if (PL_expect == XOPERATOR) {
6776             s++;
6777             if (*s == '=' && !PL_lex_allbrackets
6778                 && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
6779             {
6780                 s--;
6781                 TOKEN(0);
6782             }
6783             Mop(OP_DIVIDE);
6784         }
6785         else {
6786             /* Disable warning on "study /blah/" */
6787             if (    PL_oldoldbufptr == PL_last_uni
6788                 && (   *PL_last_uni != 's' || s - PL_last_uni < 5
6789                     || memNE(PL_last_uni, "study", 5)
6790                     || isWORDCHAR_lazy_if_safe(PL_last_uni+5, PL_bufend, UTF)
6791              ))
6792                 check_uni();
6793             s = scan_pat(s,OP_MATCH);
6794             TERM(sublex_start());
6795         }
6796
6797      case '?':                  /* conditional */
6798         s++;
6799         if (!PL_lex_allbrackets
6800             && PL_lex_fakeeof >= LEX_FAKEEOF_IFELSE)
6801         {
6802             s--;
6803             TOKEN(0);
6804         }
6805         PL_lex_allbrackets++;
6806         OPERATOR('?');
6807
6808     case '.':
6809         if (PL_lex_formbrack && PL_lex_brackets == PL_lex_formbrack
6810 #ifdef PERL_STRICT_CR
6811             && s[1] == '\n'
6812 #else
6813             && (s[1] == '\n' || (s[1] == '\r' && s[2] == '\n'))
6814 #endif
6815             && (s == PL_linestart || s[-1] == '\n') )
6816         {
6817             PL_expect = XSTATE;
6818             formbrack = 2; /* dot seen where arguments expected */
6819             goto rightbracket;
6820         }
6821         if (PL_expect == XSTATE && s[1] == '.' && s[2] == '.') {
6822             s += 3;
6823             OPERATOR(YADAYADA);
6824         }
6825         if (PL_expect == XOPERATOR || !isDIGIT(s[1])) {
6826             char tmp = *s++;
6827             if (*s == tmp) {
6828                 if (!PL_lex_allbrackets
6829                     && PL_lex_fakeeof >= LEX_FAKEEOF_RANGE)
6830                 {
6831                     s--;
6832                     TOKEN(0);
6833                 }
6834                 s++;
6835                 if (*s == tmp) {
6836                     s++;
6837                     pl_yylval.ival = OPf_SPECIAL;
6838                 }
6839                 else
6840                     pl_yylval.ival = 0;
6841                 OPERATOR(DOTDOT);
6842             }
6843             if (*s == '=' && !PL_lex_allbrackets
6844                 && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
6845             {
6846                 s--;
6847                 TOKEN(0);
6848             }
6849             Aop(OP_CONCAT);
6850         }
6851         /* FALLTHROUGH */
6852     case '0': case '1': case '2': case '3': case '4':
6853     case '5': case '6': case '7': case '8': case '9':
6854         s = scan_num(s, &pl_yylval);
6855         DEBUG_T( { printbuf("### Saw number in %s\n", s); } );
6856         if (PL_expect == XOPERATOR)
6857             no_op("Number",s);
6858         TERM(THING);
6859
6860     case '\'':
6861         if (   PL_expect == XOPERATOR
6862             && (PL_lex_formbrack && PL_lex_brackets == PL_lex_formbrack))
6863                 return deprecate_commaless_var_list();
6864
6865         s = scan_str(s,FALSE,FALSE,FALSE,NULL);
6866         if (!s)
6867             missingterm(NULL);
6868         COPLINE_SET_FROM_MULTI_END;
6869         DEBUG_T( { printbuf("### Saw string before %s\n", s); } );
6870         if (PL_expect == XOPERATOR) {
6871             no_op("String",s);
6872         }
6873         pl_yylval.ival = OP_CONST;
6874         TERM(sublex_start());
6875
6876     case '"':
6877         if (   PL_expect == XOPERATOR
6878             && (PL_lex_formbrack && PL_lex_brackets == PL_lex_formbrack))
6879                 return deprecate_commaless_var_list();
6880
6881         s = scan_str(s,FALSE,FALSE,FALSE,NULL);
6882         DEBUG_T( {
6883             if (s)
6884                 printbuf("### Saw string before %s\n", s);
6885             else
6886                 PerlIO_printf(Perl_debug_log,
6887                              "### Saw unterminated string\n");
6888         } );
6889         if (PL_expect == XOPERATOR) {
6890                 no_op("String",s);
6891         }
6892         if (!s)
6893             missingterm(NULL);
6894         pl_yylval.ival = OP_CONST;
6895         /* FIXME. I think that this can be const if char *d is replaced by
6896            more localised variables.  */
6897         for (d = SvPV(PL_lex_stuff, len); len; len--, d++) {
6898             if (*d == '$' || *d == '@' || *d == '\\' || !UTF8_IS_INVARIANT((U8)*d)) {
6899                 pl_yylval.ival = OP_STRINGIFY;
6900                 break;
6901             }
6902         }
6903         if (pl_yylval.ival == OP_CONST)
6904             COPLINE_SET_FROM_MULTI_END;
6905         TERM(sublex_start());
6906
6907     case '`':
6908         s = scan_str(s,FALSE,FALSE,FALSE,NULL);
6909         DEBUG_T( {
6910             if (s)
6911                 printbuf("### Saw backtick string before %s\n", s);
6912             else
6913                 PerlIO_printf(Perl_debug_log,
6914                              "### Saw unterminated backtick string\n");
6915         } );
6916         if (PL_expect == XOPERATOR)
6917             no_op("Backticks",s);
6918         if (!s)
6919             missingterm(NULL);
6920         pl_yylval.ival = OP_BACKTICK;
6921         TERM(sublex_start());
6922
6923     case '\\':
6924         s++;
6925         if (PL_lex_inwhat == OP_SUBST && PL_lex_repl == PL_linestr
6926          && isDIGIT(*s))
6927             Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX),"Can't use \\%c to mean $%c in expression",
6928                            *s, *s);
6929         if (PL_expect == XOPERATOR)
6930             no_op("Backslash",s);
6931         OPERATOR(REFGEN);
6932
6933     case 'v':
6934         if (isDIGIT(s[1]) && PL_expect != XOPERATOR) {
6935             char *start = s + 2;
6936             while (isDIGIT(*start) || *start == '_')
6937                 start++;
6938             if (*start == '.' && isDIGIT(start[1])) {
6939                 s = scan_num(s, &pl_yylval);
6940                 TERM(THING);
6941             }
6942             else if ((*start == ':' && start[1] == ':')
6943                   || (PL_expect == XSTATE && *start == ':'))
6944                 goto keylookup;
6945             else if (PL_expect == XSTATE) {
6946                 d = start;
6947                 while (d < PL_bufend && isSPACE(*d)) d++;
6948                 if (*d == ':') goto keylookup;
6949             }
6950             /* avoid v123abc() or $h{v1}, allow C<print v10;> */
6951             if (!isALPHA(*start) && (PL_expect == XTERM
6952                         || PL_expect == XREF || PL_expect == XSTATE
6953                         || PL_expect == XTERMORDORDOR)) {
6954                 GV *const gv = gv_fetchpvn_flags(s, start - s,
6955                                                     UTF ? SVf_UTF8 : 0, SVt_PVCV);
6956                 if (!gv) {
6957                     s = scan_num(s, &pl_yylval);
6958                     TERM(THING);
6959                 }
6960             }
6961         }
6962         goto keylookup;
6963     case 'x':
6964         if (isDIGIT(s[1]) && PL_expect == XOPERATOR) {
6965             s++;
6966             Mop(OP_REPEAT);
6967         }
6968         goto keylookup;
6969
6970     case '_':
6971     case 'a': case 'A':
6972     case 'b': case 'B':
6973     case 'c': case 'C':
6974     case 'd': case 'D':
6975     case 'e': case 'E':
6976     case 'f': case 'F':
6977     case 'g': case 'G':
6978     case 'h': case 'H':
6979     case 'i': case 'I':
6980     case 'j': case 'J':
6981     case 'k': case 'K':
6982     case 'l': case 'L':
6983     case 'm': case 'M':
6984     case 'n': case 'N':
6985     case 'o': case 'O':
6986     case 'p': case 'P':
6987     case 'q': case 'Q':
6988     case 'r': case 'R':
6989     case 's': case 'S':
6990     case 't': case 'T':
6991     case 'u': case 'U':
6992               case 'V':
6993     case 'w': case 'W':
6994               case 'X':
6995     case 'y': case 'Y':
6996     case 'z': case 'Z':
6997
6998       keylookup: {
6999         bool anydelim;
7000         bool lex;
7001         I32 tmp;
7002         SV *sv;
7003         CV *cv;
7004         PADOFFSET off;
7005         OP *rv2cv_op;
7006
7007         lex = FALSE;
7008         orig_keyword = 0;
7009         off = 0;
7010         sv = NULL;
7011         cv = NULL;
7012         gv = NULL;
7013         gvp = NULL;
7014         rv2cv_op = NULL;
7015
7016         PL_bufptr = s;
7017         s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE, &len);
7018
7019         /* Some keywords can be followed by any delimiter, including ':' */
7020         anydelim = word_takes_any_delimiter(PL_tokenbuf, len);
7021
7022         /* x::* is just a word, unless x is "CORE" */
7023         if (!anydelim && *s == ':' && s[1] == ':') {
7024             if (strEQ(PL_tokenbuf, "CORE")) goto case_KEY_CORE;
7025             goto just_a_word;
7026         }
7027
7028         d = s;
7029         while (d < PL_bufend && isSPACE(*d))
7030                 d++;    /* no comments skipped here, or s### is misparsed */
7031
7032         /* Is this a word before a => operator? */
7033         if (*d == '=' && d[1] == '>') {
7034           fat_arrow:
7035             CLINE;
7036             pl_yylval.opval
7037                 = newSVOP(OP_CONST, 0,
7038                                S_newSV_maybe_utf8(aTHX_ PL_tokenbuf, len));
7039             pl_yylval.opval->op_private = OPpCONST_BARE;
7040             TERM(BAREWORD);
7041         }
7042
7043         /* Check for plugged-in keyword */
7044         {
7045             OP *o;
7046             int result;
7047             char *saved_bufptr = PL_bufptr;
7048             PL_bufptr = s;
7049             result = PL_keyword_plugin(aTHX_ PL_tokenbuf, len, &o);
7050             s = PL_bufptr;
7051             if (result == KEYWORD_PLUGIN_DECLINE) {
7052                 /* not a plugged-in keyword */
7053                 PL_bufptr = saved_bufptr;
7054             } else if (result == KEYWORD_PLUGIN_STMT) {
7055                 pl_yylval.opval = o;
7056                 CLINE;
7057                 if (!PL_nexttoke) PL_expect = XSTATE;
7058                 return REPORT(PLUGSTMT);
7059             } else if (result == KEYWORD_PLUGIN_EXPR) {
7060                 pl_yylval.opval = o;
7061                 CLINE;
7062                 if (!PL_nexttoke) PL_expect = XOPERATOR;
7063                 return REPORT(PLUGEXPR);
7064             } else {
7065                 Perl_croak(aTHX_ "Bad plugin affecting keyword '%s'",
7066                                         PL_tokenbuf);
7067             }
7068         }
7069
7070         /* Check for built-in keyword */
7071         tmp = keyword(PL_tokenbuf, len, 0);
7072
7073         /* Is this a label? */
7074         if (!anydelim && PL_expect == XSTATE
7075               && d < PL_bufend && *d == ':' && *(d + 1) != ':') {
7076             s = d + 1;
7077             pl_yylval.pval = savepvn(PL_tokenbuf, len+1);
7078             pl_yylval.pval[len] = '\0';
7079             pl_yylval.pval[len+1] = UTF ? 1 : 0;
7080             CLINE;
7081             TOKEN(LABEL);
7082         }
7083
7084         /* Check for lexical sub */
7085         if (PL_expect != XOPERATOR) {
7086             char tmpbuf[sizeof PL_tokenbuf + 1];
7087             *tmpbuf = '&';
7088             Copy(PL_tokenbuf, tmpbuf+1, len, char);
7089             off = pad_findmy_pvn(tmpbuf, len+1, 0);
7090             if (off != NOT_IN_PAD) {
7091                 assert(off); /* we assume this is boolean-true below */
7092                 if (PAD_COMPNAME_FLAGS_isOUR(off)) {
7093                     HV *  const stash = PAD_COMPNAME_OURSTASH(off);
7094                     HEK * const stashname = HvNAME_HEK(stash);
7095                     sv = newSVhek(stashname);
7096                     sv_catpvs(sv, "::");
7097                     sv_catpvn_flags(sv, PL_tokenbuf, len,
7098                                     (UTF ? SV_CATUTF8 : SV_CATBYTES));
7099                     gv = gv_fetchsv(sv, GV_NOADD_NOINIT | SvUTF8(sv),
7100                                     SVt_PVCV);
7101                     off = 0;
7102                     if (!gv) {
7103                         sv_free(sv);
7104                         sv = NULL;
7105                         goto just_a_word;
7106                     }
7107                 }
7108                 else {
7109                     rv2cv_op = newOP(OP_PADANY, 0);
7110                     rv2cv_op->op_targ = off;
7111                     cv = find_lexical_cv(off);
7112                 }
7113                 lex = TRUE;
7114                 goto just_a_word;
7115             }
7116             off = 0;
7117         }
7118
7119         if (tmp < 0) {                  /* second-class keyword? */
7120             GV *ogv = NULL;     /* override (winner) */
7121             GV *hgv = NULL;     /* hidden (loser) */
7122             if (PL_expect != XOPERATOR && (*s != ':' || s[1] != ':')) {
7123                 CV *cv;
7124                 if ((gv = gv_fetchpvn_flags(PL_tokenbuf, len,
7125                                             (UTF ? SVf_UTF8 : 0)|GV_NOTQUAL,
7126                                             SVt_PVCV))
7127                     && (cv = GvCVu(gv)))
7128                 {
7129                     if (GvIMPORTED_CV(gv))
7130                         ogv = gv;
7131                     else if (! CvMETHOD(cv))
7132                         hgv = gv;
7133                 }
7134                 if (!ogv
7135                     && (gvp = (GV**)hv_fetch(PL_globalstash, PL_tokenbuf,
7136                                                               len, FALSE))
7137                     && (gv = *gvp)
7138                     && (isGV_with_GP(gv)
7139                         ? GvCVu(gv) && GvIMPORTED_CV(gv)
7140                         :   SvPCS_IMPORTED(gv)
7141                         && (gv_init(gv, PL_globalstash, PL_tokenbuf,
7142                                                                  len, 0), 1)))
7143                 {
7144                     ogv = gv;
7145                 }
7146             }
7147             if (ogv) {
7148                 orig_keyword = tmp;
7149                 tmp = 0;                /* overridden by import or by GLOBAL */
7150             }
7151             else if (gv && !gvp
7152                      && -tmp==KEY_lock  /* XXX generalizable kludge */
7153                      && GvCVu(gv))
7154             {
7155                 tmp = 0;                /* any sub overrides "weak" keyword */
7156             }
7157             else {                      /* no override */
7158                 tmp = -tmp;
7159                 if (tmp == KEY_dump) {
7160                     Perl_ck_warner_d(aTHX_ packWARN2(WARN_MISC,WARN_DEPRECATED),
7161                                      "dump() better written as CORE::dump(). "
7162                                      "dump() will no longer be available "
7163                                      "in Perl 5.30");
7164                 }
7165                 gv = NULL;
7166                 gvp = 0;
7167                 if (hgv && tmp != KEY_x)        /* never ambiguous */
7168                     Perl_ck_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
7169                                    "Ambiguous call resolved as CORE::%s(), "
7170                                    "qualify as such or use &",
7171                                    GvENAME(hgv));
7172             }
7173         }
7174
7175         if (tmp && tmp != KEY___DATA__ && tmp != KEY___END__
7176          && (!anydelim || *s != '#')) {
7177             /* no override, and not s### either; skipspace is safe here
7178              * check for => on following line */
7179             bool arrow;
7180             STRLEN bufoff = PL_bufptr - SvPVX(PL_linestr);
7181             STRLEN   soff = s         - SvPVX(PL_linestr);
7182             s = peekspace(s);
7183             arrow = *s == '=' && s[1] == '>';
7184             PL_bufptr = SvPVX(PL_linestr) + bufoff;
7185             s         = SvPVX(PL_linestr) +   soff;
7186             if (arrow)
7187                 goto fat_arrow;
7188         }
7189
7190       reserved_word:
7191         switch (tmp) {
7192
7193             /* Trade off - by using this evil construction we can pull the
7194                variable gv into the block labelled keylookup. If not, then
7195                we have to give it function scope so that the goto from the
7196                earlier ':' case doesn't bypass the initialisation.  */
7197             just_a_word_zero_gv:
7198                 sv = NULL;
7199                 cv = NULL;
7200                 gv = NULL;
7201                 gvp = NULL;
7202                 rv2cv_op = NULL;
7203                 orig_keyword = 0;
7204                 lex = 0;
7205                 off = 0;
7206         default:                        /* not a keyword */
7207           just_a_word: {
7208                 int pkgname = 0;
7209                 const char lastchar = (PL_bufptr == PL_oldoldbufptr ? 0 : PL_bufptr[-1]);
7210                 bool safebw;
7211
7212
7213                 /* Get the rest if it looks like a package qualifier */
7214
7215                 if (*s == '\'' || (*s == ':' && s[1] == ':')) {
7216                     STRLEN morelen;
7217                     s = scan_word(s, PL_tokenbuf + len, sizeof PL_tokenbuf - len,
7218                                   TRUE, &morelen);
7219                     if (!morelen)
7220                         Perl_croak(aTHX_ "Bad name after %" UTF8f "%s",
7221                                 UTF8fARG(UTF, len, PL_tokenbuf),
7222                                 *s == '\'' ? "'" : "::");
7223                     len += morelen;
7224                     pkgname = 1;
7225                 }
7226
7227                 if (PL_expect == XOPERATOR) {
7228                     if (PL_bufptr == PL_linestart) {
7229                         CopLINE_dec(PL_curcop);
7230                         Perl_warner(aTHX_ packWARN(WARN_SEMICOLON), "%s", PL_warn_nosemi);
7231                         CopLINE_inc(PL_curcop);
7232                     }
7233                     else
7234                         no_op("Bareword",s);
7235                 }
7236
7237                 /* See if the name is "Foo::",
7238                    in which case Foo is a bareword
7239                    (and a package name). */
7240
7241                 if (len > 2
7242                     && PL_tokenbuf[len - 2] == ':'
7243                     && PL_tokenbuf[len - 1] == ':')
7244                 {
7245                     if (ckWARN(WARN_BAREWORD)
7246                         && ! gv_fetchpvn_flags(PL_tokenbuf, len, UTF ? SVf_UTF8 : 0, SVt_PVHV))
7247                         Perl_warner(aTHX_ packWARN(WARN_BAREWORD),
7248                                     "Bareword \"%" UTF8f
7249                                     "\" refers to nonexistent package",
7250                                     UTF8fARG(UTF, len, PL_tokenbuf));
7251                     len -= 2;
7252                     PL_tokenbuf[len] = '\0';
7253                     gv = NULL;
7254                     gvp = 0;
7255                     safebw = TRUE;
7256                 }
7257                 else {
7258                     safebw = FALSE;
7259                 }
7260
7261                 /* if we saw a global override before, get the right name */
7262
7263                 if (!sv)
7264                   sv = S_newSV_maybe_utf8(aTHX_ PL_tokenbuf,
7265                                                 len);
7266                 if (gvp) {
7267                     SV * const tmp_sv = sv;
7268                     sv = newSVpvs("CORE::GLOBAL::");
7269                     sv_catsv(sv, tmp_sv);
7270                     SvREFCNT_dec(tmp_sv);
7271                 }
7272
7273
7274                 /* Presume this is going to be a bareword of some sort. */
7275                 CLINE;
7276                 pl_yylval.opval = newSVOP(OP_CONST, 0, sv);
7277                 pl_yylval.opval->op_private = OPpCONST_BARE;
7278
7279                 /* And if "Foo::", then that's what it certainly is. */
7280                 if (safebw)
7281                     goto safe_bareword;
7282
7283                 if (!off)
7284                 {
7285                     OP *const_op = newSVOP(OP_CONST, 0, SvREFCNT_inc_NN(sv));
7286                     const_op->op_private = OPpCONST_BARE;
7287                     rv2cv_op =
7288                         newCVREF(OPpMAY_RETURN_CONSTANT<<8, const_op);
7289                     cv = lex
7290                         ? isGV(gv)
7291                             ? GvCV(gv)
7292                             : SvROK(gv) && SvTYPE(SvRV(gv)) == SVt_PVCV
7293                                 ? (CV *)SvRV(gv)
7294                                 : ((CV *)gv)
7295                         : rv2cv_op_cv(rv2cv_op, RV2CVOPCV_RETURN_STUB);
7296                 }
7297
7298                 /* Use this var to track whether intuit_method has been
7299                    called.  intuit_method returns 0 or > 255.  */
7300                 tmp = 1;
7301
7302                 /* See if it's the indirect object for a list operator. */
7303
7304                 if (PL_oldoldbufptr
7305                     && PL_oldoldbufptr < PL_bufptr
7306                     && (PL_oldoldbufptr == PL_last_lop
7307                         || PL_oldoldbufptr == PL_last_uni)
7308                     && /* NO SKIPSPACE BEFORE HERE! */
7309                        (PL_expect == XREF
7310                         || ((PL_opargs[PL_last_lop_op] >> OASHIFT)& 7)
7311                                                                == OA_FILEREF))
7312                 {
7313                     bool immediate_paren = *s == '(';
7314                     SSize_t s_off;
7315
7316                     /* (Now we can afford to cross potential line boundary.) */
7317                     s = skipspace(s);
7318
7319                     /* intuit_method() can indirectly call lex_next_chunk(),
7320                      * invalidating s
7321                      */
7322                     s_off = s - SvPVX(PL_linestr);
7323                     /* Two barewords in a row may indicate method call. */
7324                     if (   (   isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)
7325                             || *s == '$')
7326                         && (tmp = intuit_method(s, lex ? NULL : sv, cv)))
7327                     {
7328                         /* the code at method: doesn't use s */
7329                         goto method;
7330                     }
7331                     s = SvPVX(PL_linestr) + s_off;
7332
7333                     /* If not a declared subroutine, it's an indirect object. */
7334                     /* (But it's an indir obj regardless for sort.) */
7335                     /* Also, if "_" follows a filetest operator, it's a bareword */
7336
7337                     if (
7338                         ( !immediate_paren && (PL_last_lop_op == OP_SORT
7339                          || (!cv
7340                              && (PL_last_lop_op != OP_MAPSTART
7341                                  && PL_last_lop_op != OP_GREPSTART))))
7342                        || (PL_tokenbuf[0] == '_' && PL_tokenbuf[1] == '\0'
7343                             && ((PL_opargs[PL_last_lop_op] & OA_CLASS_MASK)
7344                                                             == OA_FILESTATOP))
7345                        )
7346                     {
7347                         PL_expect = (PL_last_lop == PL_oldoldbufptr) ? XTERM : XOPERATOR;
7348                         goto bareword;
7349                     }
7350                 }
7351
7352                 PL_expect = XOPERATOR;
7353                 s = skipspace(s);
7354
7355                 /* Is this a word before a => operator? */
7356                 if (*s == '=' && s[1] == '>' && !pkgname) {
7357                     op_free(rv2cv_op);
7358                     CLINE;
7359                     if (gvp || (lex && !off)) {
7360                         assert (cSVOPx(pl_yylval.opval)->op_sv == sv);
7361                         /* This is our own scalar, created a few lines
7362                            above, so this is safe. */
7363                         SvREADONLY_off(sv);
7364                         sv_setpv(sv, PL_tokenbuf);
7365                         if (UTF && !IN_BYTES
7366                          && is_utf8_string((U8*)PL_tokenbuf, len))
7367                               SvUTF8_on(sv);
7368                         SvREADONLY_on(sv);
7369                     }
7370                     TERM(BAREWORD);
7371                 }
7372
7373                 /* If followed by a paren, it's certainly a subroutine. */
7374                 if (*s == '(') {
7375                     CLINE;
7376                     if (cv) {
7377                         d = s + 1;
7378                         while (SPACE_OR_TAB(*d))
7379                             d++;
7380                         if (*d == ')' && (sv = cv_const_sv_or_av(cv))) {
7381                             s = d + 1;
7382                             goto its_constant;
7383                         }
7384                     }
7385                     NEXTVAL_NEXTTOKE.opval =
7386                         off ? rv2cv_op : pl_yylval.opval;
7387                     if (off)
7388                          op_free(pl_yylval.opval), force_next(PRIVATEREF);
7389                     else op_free(rv2cv_op),        force_next(BAREWORD);
7390                     pl_yylval.ival = 0;
7391                     TOKEN('&');
7392                 }
7393
7394                 /* If followed by var or block, call it a method (unless sub) */
7395
7396                 if ((*s == '$' || *s == '{') && !cv) {
7397                     op_free(rv2cv_op);
7398                     PL_last_lop = PL_oldbufptr;
7399                     PL_last_lop_op = OP_METHOD;
7400                     if (!PL_lex_allbrackets
7401                         && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
7402                     {
7403                         PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
7404                     }
7405                     PL_expect = XBLOCKTERM;
7406                     PL_bufptr = s;
7407                     return REPORT(METHOD);
7408                 }
7409
7410                 /* If followed by a bareword, see if it looks like indir obj. */
7411
7412                 if (   tmp == 1
7413                     && !orig_keyword
7414                     && (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF) || *s == '$')
7415                     && (tmp = intuit_method(s, lex ? NULL : sv, cv)))
7416                 {
7417                   method:
7418                     if (lex && !off) {
7419                         assert(cSVOPx(pl_yylval.opval)->op_sv == sv);
7420                         SvREADONLY_off(sv);
7421                         sv_setpvn(sv, PL_tokenbuf, len);
7422                         if (UTF && !IN_BYTES
7423                          && is_utf8_string((U8*)PL_tokenbuf, len))
7424                             SvUTF8_on (sv);
7425                         else SvUTF8_off(sv);
7426                     }
7427                     op_free(rv2cv_op);
7428                     if (tmp == METHOD && !PL_lex_allbrackets
7429                         && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
7430                     {
7431                         PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
7432                     }
7433                     return REPORT(tmp);
7434                 }
7435
7436                 /* Not a method, so call it a subroutine (if defined) */
7437
7438                 if (cv) {
7439                     /* Check for a constant sub */
7440                     if ((sv = cv_const_sv_or_av(cv))) {
7441                   its_constant:
7442                         op_free(rv2cv_op);
7443                         SvREFCNT_dec(((SVOP*)pl_yylval.opval)->op_sv);
7444                         ((SVOP*)pl_yylval.opval)->op_sv = SvREFCNT_inc_simple(sv);
7445                         if (SvTYPE(sv) == SVt_PVAV)
7446                             pl_yylval.opval = newUNOP(OP_RV2AV, OPf_PARENS,
7447                                                       pl_yylval.opval);
7448                         else {
7449                             pl_yylval.opval->op_private = 0;
7450                             pl_yylval.opval->op_folded = 1;
7451                             pl_yylval.opval->op_flags |= OPf_SPECIAL;
7452                         }
7453                         TOKEN(BAREWORD);
7454                     }
7455
7456                     op_free(pl_yylval.opval);
7457                     pl_yylval.opval =
7458                         off ? newCVREF(0, rv2cv_op) : rv2cv_op;
7459                     pl_yylval.opval->op_private |= OPpENTERSUB_NOPAREN;
7460                     PL_last_lop = PL_oldbufptr;
7461                     PL_last_lop_op = OP_ENTERSUB;
7462                     /* Is there a prototype? */
7463                     if (
7464                         SvPOK(cv))
7465                     {
7466                         STRLEN protolen = CvPROTOLEN(cv);
7467                         const char *proto = CvPROTO(cv);
7468                         bool optional;
7469                         proto = S_strip_spaces(aTHX_ proto, &protolen);
7470                         if (!protolen)
7471                             TERM(FUNC0SUB);
7472                         if ((optional = *proto == ';'))
7473                           do
7474                             proto++;
7475                           while (*proto == ';');
7476                         if (
7477                             (
7478                                 (
7479                                     *proto == '$' || *proto == '_'
7480                                  || *proto == '*' || *proto == '+'
7481                                 )
7482                              && proto[1] == '\0'
7483                             )
7484                          || (
7485                              *proto == '\\' && proto[1] && proto[2] == '\0'
7486                             )
7487                         )
7488                             UNIPROTO(UNIOPSUB,optional);
7489                         if (*proto == '\\' && proto[1] == '[') {
7490                             const char *p = proto + 2;
7491                             while(*p && *p != ']')
7492                                 ++p;
7493                             if(*p == ']' && !p[1])
7494                                 UNIPROTO(UNIOPSUB,optional);
7495                         }
7496                         if (*proto == '&' && *s == '{') {
7497                             if (PL_curstash)
7498                                 sv_setpvs(PL_subname, "__ANON__");
7499                             else
7500                                 sv_setpvs(PL_subname, "__ANON__::__ANON__");
7501                             if (!PL_lex_allbrackets
7502                                 && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
7503                             {
7504                                 PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
7505                             }
7506                             PREBLOCK(LSTOPSUB);
7507                         }
7508                     }
7509                     NEXTVAL_NEXTTOKE.opval = pl_yylval.opval;
7510                     PL_expect = XTERM;
7511                     force_next(off ? PRIVATEREF : BAREWORD);
7512                     if (!PL_lex_allbrackets
7513                         && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
7514                     {
7515                         PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
7516                     }
7517                     TOKEN(NOAMP);
7518                 }
7519
7520                 /* Call it a bare word */
7521
7522                 if (PL_hints & HINT_STRICT_SUBS)
7523                     pl_yylval.opval->op_private |= OPpCONST_STRICT;
7524                 else {
7525                 bareword:
7526                     /* after "print" and similar functions (corresponding to
7527                      * "F? L" in opcode.pl), whatever wasn't already parsed as
7528                      * a filehandle should be subject to "strict subs".
7529                      * Likewise for the optional indirect-object argument to system
7530                      * or exec, which can't be a bareword */
7531                     if ((PL_last_lop_op == OP_PRINT
7532                             || PL_last_lop_op == OP_PRTF
7533                             || PL_last_lop_op == OP_SAY
7534                             || PL_last_lop_op == OP_SYSTEM
7535                             || PL_last_lop_op == OP_EXEC)
7536                             && (PL_hints & HINT_STRICT_SUBS))
7537                         pl_yylval.opval->op_private |= OPpCONST_STRICT;
7538                     if (lastchar != '-') {
7539                         if (ckWARN(WARN_RESERVED)) {
7540                             d = PL_tokenbuf;
7541                             while (isLOWER(*d))
7542                                 d++;
7543                             if (!*d && !gv_stashpv(PL_tokenbuf, UTF ? SVf_UTF8 : 0))
7544                             {
7545                                 /* PL_warn_reserved is constant */
7546                                 GCC_DIAG_IGNORE(-Wformat-nonliteral);
7547                                 Perl_warner(aTHX_ packWARN(WARN_RESERVED), PL_warn_reserved,
7548                                        PL_tokenbuf);
7549                                 GCC_DIAG_RESTORE;
7550                             }
7551                         }
7552                     }
7553                 }
7554                 op_free(rv2cv_op);
7555
7556             safe_bareword:
7557                 if ((lastchar == '*' || lastchar == '%' || lastchar == '&')
7558                  && saw_infix_sigil) {
7559                     Perl_ck_warner_d(aTHX_ packWARN(WARN_AMBIGUOUS),
7560                                      "Operator or semicolon missing before %c%" UTF8f,
7561                                      lastchar,
7562                                      UTF8fARG(UTF, strlen(PL_tokenbuf),
7563                                               PL_tokenbuf));
7564                     Perl_ck_warner_d(aTHX_ packWARN(WARN_AMBIGUOUS),
7565                                      "Ambiguous use of %c resolved as operator %c",
7566                                      lastchar, lastchar);
7567                 }
7568                 TOKEN(BAREWORD);
7569             }
7570
7571         case KEY___FILE__:
7572             FUN0OP(
7573                 newSVOP(OP_CONST, 0, newSVpv(CopFILE(PL_curcop),0))
7574             );
7575
7576         case KEY___LINE__:
7577             FUN0OP(
7578                 newSVOP(OP_CONST, 0,
7579                     Perl_newSVpvf(aTHX_ "%" IVdf, (IV)CopLINE(PL_curcop)))
7580             );
7581
7582         case KEY___PACKAGE__:
7583             FUN0OP(
7584                 newSVOP(OP_CONST, 0,
7585                                         (PL_curstash
7586                                          ? newSVhek(HvNAME_HEK(PL_curstash))
7587                                          : &PL_sv_undef))
7588             );
7589
7590         case KEY___DATA__:
7591         case KEY___END__: {
7592             GV *gv;
7593             if (PL_rsfp && (!PL_in_eval || PL_tokenbuf[2] == 'D')) {
7594                 HV * const stash = PL_tokenbuf[2] == 'D' && PL_curstash
7595                                         ? PL_curstash
7596                                         : PL_defstash;
7597                 gv = (GV *)*hv_fetchs(stash, "DATA", 1);
7598                 if (!isGV(gv))
7599                     gv_init(gv,stash,"DATA",4,0);
7600                 GvMULTI_on(gv);
7601                 if (!GvIO(gv))
7602                     GvIOp(gv) = newIO();
7603                 IoIFP(GvIOp(gv)) = PL_rsfp;
7604 #if defined(HAS_FCNTL) && defined(F_SETFD) && defined(FD_CLOEXEC)
7605                 {
7606                     const int fd = PerlIO_fileno(PL_rsfp);
7607                     if (fd >= 3) {
7608                         fcntl(fd,F_SETFD, FD_CLOEXEC);
7609                     }
7610                 }
7611 #endif
7612                 /* Mark this internal pseudo-handle as clean */
7613                 IoFLAGS(GvIOp(gv)) |= IOf_UNTAINT;
7614                 if ((PerlIO*)PL_rsfp == PerlIO_stdin())
7615                     IoTYPE(GvIOp(gv)) = IoTYPE_STD;
7616                 else
7617                     IoTYPE(GvIOp(gv)) = IoTYPE_RDONLY;
7618 #if defined(WIN32) && !defined(PERL_TEXTMODE_SCRIPTS)
7619                 /* if the script was opened in binmode, we need to revert
7620                  * it to text mode for compatibility; but only iff it has CRs
7621                  * XXX this is a questionable hack at best. */
7622                 if (PL_bufend-PL_bufptr > 2
7623                     && PL_bufend[-1] == '\n' && PL_bufend[-2] == '\r')
7624                 {
7625                     Off_t loc = 0;
7626                     if (IoTYPE(GvIOp(gv)) == IoTYPE_RDONLY) {
7627                         loc = PerlIO_tell(PL_rsfp);
7628                         (void)PerlIO_seek(PL_rsfp, 0L, 0);
7629                     }
7630 #ifdef NETWARE
7631                         if (PerlLIO_setmode(PL_rsfp, O_TEXT) != -1) {
7632 #else
7633                     if (PerlLIO_setmode(PerlIO_fileno(PL_rsfp), O_TEXT) != -1) {
7634 #endif  /* NETWARE */
7635                         if (loc > 0)
7636                             PerlIO_seek(PL_rsfp, loc, 0);
7637                     }
7638                 }
7639 #endif
7640 #ifdef PERLIO_LAYERS
7641                 if (!IN_BYTES) {
7642                     if (UTF)
7643                         PerlIO_apply_layers(aTHX_ PL_rsfp, NULL, ":utf8");
7644                 }
7645 #endif
7646                 PL_rsfp = NULL;
7647             }
7648             goto fake_eof;
7649         }
7650
7651         case KEY___SUB__:
7652             FUN0OP(CvCLONE(PL_compcv)
7653                         ? newOP(OP_RUNCV, 0)
7654                         : newPVOP(OP_RUNCV,0,NULL));
7655
7656         case KEY_AUTOLOAD:
7657         case KEY_DESTROY:
7658         case KEY_BEGIN:
7659         case KEY_UNITCHECK:
7660         case KEY_CHECK:
7661         case KEY_INIT:
7662         case KEY_END:
7663             if (PL_expect == XSTATE) {
7664                 s = PL_bufptr;
7665                 goto really_sub;
7666             }
7667             goto just_a_word;
7668
7669         case_KEY_CORE:
7670             {
7671                 STRLEN olen = len;
7672                 d = s;
7673                 s += 2;
7674                 s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE, &len);
7675                 if ((*s == ':' && s[1] == ':')
7676                  || (!(tmp = keyword(PL_tokenbuf, len, 1)) && *s == '\''))
7677                 {
7678                     s = d;
7679                     len = olen;
7680                     Copy(PL_bufptr, PL_tokenbuf, olen, char);
7681                     goto just_a_word;
7682                 }
7683                 if (!tmp)
7684                     Perl_croak(aTHX_ "CORE::%" UTF8f " is not a keyword",
7685                                       UTF8fARG(UTF, len, PL_tokenbuf));
7686                 if (tmp < 0)
7687                     tmp = -tmp;
7688                 else if (tmp == KEY_require || tmp == KEY_do
7689                       || tmp == KEY_glob)
7690                     /* that's a way to remember we saw "CORE::" */
7691                     orig_keyword = tmp;
7692                 goto reserved_word;
7693             }
7694
7695         case KEY_abs:
7696             UNI(OP_ABS);
7697
7698         case KEY_alarm:
7699             UNI(OP_ALARM);
7700
7701         case KEY_accept:
7702             LOP(OP_ACCEPT,XTERM);
7703
7704         case KEY_and:
7705             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_LOWLOGIC)
7706                 return REPORT(0);
7707             OPERATOR(ANDOP);
7708
7709         case KEY_atan2:
7710             LOP(OP_ATAN2,XTERM);
7711
7712         case KEY_bind:
7713             LOP(OP_BIND,XTERM);
7714
7715         case KEY_binmode:
7716             LOP(OP_BINMODE,XTERM);
7717
7718         case KEY_bless:
7719             LOP(OP_BLESS,XTERM);
7720
7721         case KEY_break:
7722             FUN0(OP_BREAK);
7723
7724         case KEY_chop:
7725             UNI(OP_CHOP);
7726
7727         case KEY_continue:
7728                     /* We have to disambiguate the two senses of
7729                       "continue". If the next token is a '{' then
7730                       treat it as the start of a continue block;
7731                       otherwise treat it as a control operator.
7732                      */
7733                     s = skipspace(s);
7734                     if (*s == '{')
7735             PREBLOCK(CONTINUE);
7736                     else
7737                         FUN0(OP_CONTINUE);
7738
7739         case KEY_chdir:
7740             /* may use HOME */
7741             (void)gv_fetchpvs("ENV", GV_ADD|GV_NOTQUAL, SVt_PVHV);
7742             UNI(OP_CHDIR);
7743
7744         case KEY_close:
7745             UNI(OP_CLOSE);
7746
7747         case KEY_closedir:
7748             UNI(OP_CLOSEDIR);
7749
7750         case KEY_cmp:
7751             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
7752                 return REPORT(0);
7753             Eop(OP_SCMP);
7754
7755         case KEY_caller:
7756             UNI(OP_CALLER);
7757
7758         case KEY_crypt:
7759 #ifdef FCRYPT
7760             if (!PL_cryptseen) {
7761                 PL_cryptseen = TRUE;
7762                 init_des();
7763             }
7764 #endif
7765             LOP(OP_CRYPT,XTERM);
7766
7767         case KEY_chmod:
7768             LOP(OP_CHMOD,XTERM);
7769
7770         case KEY_chown:
7771             LOP(OP_CHOWN,XTERM);
7772
7773         case KEY_connect:
7774             LOP(OP_CONNECT,XTERM);
7775
7776         case KEY_chr:
7777             UNI(OP_CHR);
7778
7779         case KEY_cos:
7780             UNI(OP_COS);
7781
7782         case KEY_chroot:
7783             UNI(OP_CHROOT);
7784
7785         case KEY_default:
7786             PREBLOCK(DEFAULT);
7787
7788         case KEY_do:
7789             s = skipspace(s);
7790             if (*s == '{')
7791                 PRETERMBLOCK(DO);
7792             if (*s != '\'') {
7793                 *PL_tokenbuf = '&';
7794                 d = scan_word(s, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1,
7795                               1, &len);
7796                 if (len && (len != 4 || strNE(PL_tokenbuf+1, "CORE"))
7797                  && !keyword(PL_tokenbuf + 1, len, 0)) {
7798                     SSize_t off = s-SvPVX(PL_linestr);
7799                     d = skipspace(d);
7800                     s = SvPVX(PL_linestr)+off;
7801                     if (*d == '(') {
7802                         force_ident_maybe_lex('&');
7803                         s = d;
7804                     }
7805                 }
7806             }
7807             if (orig_keyword == KEY_do) {
7808                 orig_keyword = 0;
7809                 pl_yylval.ival = 1;
7810             }
7811             else
7812                 pl_yylval.ival = 0;
7813             OPERATOR(DO);
7814
7815         case KEY_die:
7816             PL_hints |= HINT_BLOCK_SCOPE;
7817             LOP(OP_DIE,XTERM);
7818
7819         case KEY_defined:
7820             UNI(OP_DEFINED);
7821
7822         case KEY_delete:
7823             UNI(OP_DELETE);
7824
7825         case KEY_dbmopen:
7826             Perl_populate_isa(aTHX_ STR_WITH_LEN("AnyDBM_File::ISA"),
7827                               STR_WITH_LEN("NDBM_File::"),
7828                               STR_WITH_LEN("DB_File::"),
7829                               STR_WITH_LEN("GDBM_File::"),
7830                               STR_WITH_LEN("SDBM_File::"),
7831                               STR_WITH_LEN("ODBM_File::"),
7832                               NULL);
7833             LOP(OP_DBMOPEN,XTERM);
7834
7835         case KEY_dbmclose:
7836             UNI(OP_DBMCLOSE);
7837
7838         case KEY_dump:
7839             LOOPX(OP_DUMP);
7840
7841         case KEY_else:
7842             PREBLOCK(ELSE);
7843
7844         case KEY_elsif:
7845             pl_yylval.ival = CopLINE(PL_curcop);
7846             OPERATOR(ELSIF);
7847
7848         case KEY_eq:
7849             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
7850                 return REPORT(0);
7851             Eop(OP_SEQ);
7852
7853         case KEY_exists:
7854             UNI(OP_EXISTS);
7855
7856         case KEY_exit:
7857             UNI(OP_EXIT);
7858
7859         case KEY_eval:
7860             s = skipspace(s);
7861             if (*s == '{') { /* block eval */
7862                 PL_expect = XTERMBLOCK;
7863                 UNIBRACK(OP_ENTERTRY);
7864             }
7865             else { /* string eval */
7866                 PL_expect = XTERM;
7867                 UNIBRACK(OP_ENTEREVAL);
7868             }
7869
7870         case KEY_evalbytes:
7871             PL_expect = XTERM;
7872             UNIBRACK(-OP_ENTEREVAL);
7873
7874         case KEY_eof:
7875             UNI(OP_EOF);
7876
7877         case KEY_exp:
7878             UNI(OP_EXP);
7879
7880         case KEY_each:
7881             UNI(OP_EACH);
7882
7883         case KEY_exec:
7884             LOP(OP_EXEC,XREF);
7885
7886         case KEY_endhostent:
7887             FUN0(OP_EHOSTENT);
7888
7889         case KEY_endnetent:
7890             FUN0(OP_ENETENT);
7891
7892         case KEY_endservent:
7893             FUN0(OP_ESERVENT);
7894
7895         case KEY_endprotoent:
7896             FUN0(OP_EPROTOENT);
7897
7898         case KEY_endpwent:
7899             FUN0(OP_EPWENT);
7900
7901         case KEY_endgrent:
7902             FUN0(OP_EGRENT);
7903
7904         case KEY_for:
7905         case KEY_foreach:
7906             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
7907                 return REPORT(0);
7908             pl_yylval.ival = CopLINE(PL_curcop);
7909             s = skipspace(s);
7910             if (   PL_expect == XSTATE
7911                 && isIDFIRST_lazy_if_safe(s, PL_bufend, UTF))
7912             {
7913                 char *p = s;
7914                 SSize_t s_off = s - SvPVX(PL_linestr);
7915
7916                 if ((PL_bufend - p) >= 3
7917                     && strEQs(p, "my") && isSPACE(*(p + 2)))
7918                 {
7919                     p += 2;
7920                 }
7921                 else if ((PL_bufend - p) >= 4
7922                          && strEQs(p, "our") && isSPACE(*(p + 3)))
7923                     p += 3;
7924                 p = skipspace(p);
7925                 /* skip optional package name, as in "for my abc $x (..)" */
7926                 if (isIDFIRST_lazy_if_safe(p, PL_bufend, UTF)) {
7927                     p = scan_word(p, PL_tokenbuf, sizeof PL_tokenbuf, TRUE, &len);
7928                     p = skipspace(p);
7929                 }
7930                 if (*p != '$' && *p != '\\')
7931                     Perl_croak(aTHX_ "Missing $ on loop variable");
7932
7933                 /* The buffer may have been reallocated, update s */
7934                 s = SvPVX(PL_linestr) + s_off;
7935             }
7936             OPERATOR(FOR);
7937
7938         case KEY_formline:
7939             LOP(OP_FORMLINE,XTERM);
7940
7941         case KEY_fork:
7942             FUN0(OP_FORK);
7943
7944         case KEY_fc:
7945             UNI(OP_FC);
7946
7947         case KEY_fcntl:
7948             LOP(OP_FCNTL,XTERM);
7949
7950         case KEY_fileno:
7951             UNI(OP_FILENO);
7952
7953         case KEY_flock:
7954             LOP(OP_FLOCK,XTERM);
7955
7956         case KEY_gt:
7957             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
7958                 return REPORT(0);
7959             Rop(OP_SGT);
7960
7961         case KEY_ge:
7962             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
7963                 return REPORT(0);
7964             Rop(OP_SGE);
7965
7966         case KEY_grep:
7967             LOP(OP_GREPSTART, XREF);
7968
7969         case KEY_goto:
7970             LOOPX(OP_GOTO);
7971
7972         case KEY_gmtime:
7973             UNI(OP_GMTIME);
7974
7975         case KEY_getc:
7976             UNIDOR(OP_GETC);
7977
7978         case KEY_getppid:
7979             FUN0(OP_GETPPID);
7980
7981         case KEY_getpgrp:
7982             UNI(OP_GETPGRP);
7983
7984         case KEY_getpriority:
7985             LOP(OP_GETPRIORITY,XTERM);
7986
7987         case KEY_getprotobyname:
7988             UNI(OP_GPBYNAME);
7989
7990         case KEY_getprotobynumber:
7991             LOP(OP_GPBYNUMBER,XTERM);
7992
7993         case KEY_getprotoent:
7994             FUN0(OP_GPROTOENT);
7995
7996         case KEY_getpwent:
7997             FUN0(OP_GPWENT);
7998
7999         case KEY_getpwnam:
8000             UNI(OP_GPWNAM);
8001
8002         case KEY_getpwuid:
8003             UNI(OP_GPWUID);
8004
8005         case KEY_getpeername:
8006             UNI(OP_GETPEERNAME);
8007
8008         case KEY_gethostbyname:
8009             UNI(OP_GHBYNAME);
8010
8011         case KEY_gethostbyaddr:
8012             LOP(OP_GHBYADDR,XTERM);
8013
8014         case KEY_gethostent:
8015             FUN0(OP_GHOSTENT);
8016
8017         case KEY_getnetbyname:
8018             UNI(OP_GNBYNAME);
8019
8020         case KEY_getnetbyaddr:
8021             LOP(OP_GNBYADDR,XTERM);
8022
8023         case KEY_getnetent:
8024             FUN0(OP_GNETENT);
8025
8026         case KEY_getservbyname:
8027             LOP(OP_GSBYNAME,XTERM);
8028
8029         case KEY_getservbyport:
8030             LOP(OP_GSBYPORT,XTERM);
8031
8032         case KEY_getservent:
8033             FUN0(OP_GSERVENT);
8034
8035         case KEY_getsockname:
8036             UNI(OP_GETSOCKNAME);
8037
8038         case KEY_getsockopt:
8039             LOP(OP_GSOCKOPT,XTERM);
8040
8041         case KEY_getgrent:
8042             FUN0(OP_GGRENT);
8043
8044         case KEY_getgrnam:
8045             UNI(OP_GGRNAM);
8046
8047         case KEY_getgrgid:
8048             UNI(OP_GGRGID);
8049
8050         case KEY_getlogin:
8051             FUN0(OP_GETLOGIN);
8052
8053         case KEY_given:
8054             pl_yylval.ival = CopLINE(PL_curcop);
8055             Perl_ck_warner_d(aTHX_
8056                 packWARN(WARN_EXPERIMENTAL__SMARTMATCH),
8057                 "given is experimental");
8058             OPERATOR(GIVEN);
8059
8060         case KEY_glob:
8061             LOP(
8062              orig_keyword==KEY_glob ? -OP_GLOB : OP_GLOB,
8063              XTERM
8064             );
8065
8066         case KEY_hex:
8067             UNI(OP_HEX);
8068
8069         case KEY_if:
8070             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
8071                 return REPORT(0);
8072             pl_yylval.ival = CopLINE(PL_curcop);
8073             OPERATOR(IF);
8074
8075         case KEY_index:
8076             LOP(OP_INDEX,XTERM);
8077
8078         case KEY_int:
8079             UNI(OP_INT);
8080
8081         case KEY_ioctl:
8082             LOP(OP_IOCTL,XTERM);
8083
8084         case KEY_join:
8085             LOP(OP_JOIN,XTERM);
8086
8087         case KEY_keys:
8088             UNI(OP_KEYS);
8089
8090         case KEY_kill:
8091             LOP(OP_KILL,XTERM);
8092
8093         case KEY_last:
8094             LOOPX(OP_LAST);
8095
8096         case KEY_lc:
8097             UNI(OP_LC);
8098
8099         case KEY_lcfirst:
8100             UNI(OP_LCFIRST);
8101
8102         case KEY_local:
8103             OPERATOR(LOCAL);
8104
8105         case KEY_length:
8106             UNI(OP_LENGTH);
8107
8108         case KEY_lt:
8109             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
8110                 return REPORT(0);
8111             Rop(OP_SLT);
8112
8113         case KEY_le:
8114             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
8115                 return REPORT(0);
8116             Rop(OP_SLE);
8117
8118         case KEY_localtime:
8119             UNI(OP_LOCALTIME);
8120
8121         case KEY_log:
8122             UNI(OP_LOG);
8123
8124         case KEY_link:
8125             LOP(OP_LINK,XTERM);
8126
8127         case KEY_listen:
8128             LOP(OP_LISTEN,XTERM);
8129
8130         case KEY_lock:
8131             UNI(OP_LOCK);
8132
8133         case KEY_lstat:
8134             UNI(OP_LSTAT);
8135
8136         case KEY_m:
8137             s = scan_pat(s,OP_MATCH);
8138             TERM(sublex_start());
8139
8140         case KEY_map:
8141             LOP(OP_MAPSTART, XREF);
8142
8143         case KEY_mkdir:
8144             LOP(OP_MKDIR,XTERM);
8145
8146         case KEY_msgctl:
8147             LOP(OP_MSGCTL,XTERM);
8148
8149         case KEY_msgget:
8150             LOP(OP_MSGGET,XTERM);
8151
8152         case KEY_msgrcv:
8153             LOP(OP_MSGRCV,XTERM);
8154
8155         case KEY_msgsnd:
8156             LOP(OP_MSGSND,XTERM);
8157
8158         case KEY_our:
8159         case KEY_my:
8160         case KEY_state:
8161             if (PL_in_my) {
8162                 PL_bufptr = s;
8163                 yyerror(Perl_form(aTHX_
8164                                   "Can't redeclare \"%s\" in \"%s\"",
8165                                    tmp      == KEY_my    ? "my" :
8166                                    tmp      == KEY_state ? "state" : "our",
8167                                    PL_in_my == KEY_my    ? "my" :
8168                                    PL_in_my == KEY_state ? "state" : "our"));
8169             }
8170             PL_in_my = (U16)tmp;
8171             s = skipspace(s);
8172             if (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)) {
8173                 s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, TRUE, &len);
8174                 if (len == 3 && strEQs(PL_tokenbuf, "sub"))
8175                     goto really_sub;
8176                 PL_in_my_stash = find_in_my_stash(PL_tokenbuf, len);
8177                 if (!PL_in_my_stash) {
8178                     char tmpbuf[1024];
8179                     int len;
8180                     PL_bufptr = s;
8181                     len = my_snprintf(tmpbuf, sizeof(tmpbuf), "No such class %.1000s", PL_tokenbuf);
8182                     PERL_MY_SNPRINTF_POST_GUARD(len, sizeof(tmpbuf));
8183                     yyerror_pv(tmpbuf, UTF ? SVf_UTF8 : 0);
8184                 }
8185             }
8186             else if (*s == '\\') {
8187                 if (!FEATURE_MYREF_IS_ENABLED)
8188                     Perl_croak(aTHX_ "The experimental declared_refs "
8189                                      "feature is not enabled");
8190                 Perl_ck_warner_d(aTHX_
8191                      packWARN(WARN_EXPERIMENTAL__DECLARED_REFS),
8192                     "Declaring references is experimental");
8193             }
8194             OPERATOR(MY);
8195
8196         case KEY_next:
8197             LOOPX(OP_NEXT);
8198
8199         case KEY_ne:
8200             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
8201                 return REPORT(0);
8202             Eop(OP_SNE);
8203
8204         case KEY_no:
8205             s = tokenize_use(0, s);
8206             TOKEN(USE);
8207
8208         case KEY_not:
8209             if (*s == '(' || (s = skipspace(s), *s == '('))
8210                 FUN1(OP_NOT);
8211             else {
8212                 if (!PL_lex_allbrackets
8213                     && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
8214                 {
8215                     PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
8216                 }
8217                 OPERATOR(NOTOP);
8218             }
8219
8220         case KEY_open:
8221             s = skipspace(s);
8222             if (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)) {
8223                 const char *t;
8224                 d = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE,
8225                               &len);
8226                 for (t=d; isSPACE(*t);)
8227                     t++;
8228                 if ( *t && strchr("|&*+-=!?:.", *t) && ckWARN_d(WARN_PRECEDENCE)
8229                     /* [perl #16184] */
8230                     && !(t[0] == '=' && t[1] == '>')
8231                     && !(t[0] == ':' && t[1] == ':')
8232                     && !keyword(s, d-s, 0)
8233                 ) {
8234                     Perl_warner(aTHX_ packWARN(WARN_PRECEDENCE),
8235                        "Precedence problem: open %" UTF8f " should be open(%" UTF8f ")",
8236                         UTF8fARG(UTF, d-s, s), UTF8fARG(UTF, d-s, s));
8237                 }
8238             }
8239             LOP(OP_OPEN,XTERM);
8240
8241         case KEY_or:
8242             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_LOWLOGIC)
8243                 return REPORT(0);
8244             pl_yylval.ival = OP_OR;
8245             OPERATOR(OROP);
8246
8247         case KEY_ord:
8248             UNI(OP_ORD);
8249
8250         case KEY_oct:
8251             UNI(OP_OCT);
8252
8253         case KEY_opendir:
8254             LOP(OP_OPEN_DIR,XTERM);
8255
8256         case KEY_print:
8257             checkcomma(s,PL_tokenbuf,"filehandle");
8258             LOP(OP_PRINT,XREF);
8259
8260         case KEY_printf:
8261             checkcomma(s,PL_tokenbuf,"filehandle");
8262             LOP(OP_PRTF,XREF);
8263
8264         case KEY_prototype:
8265             UNI(OP_PROTOTYPE);
8266
8267         case KEY_push:
8268             LOP(OP_PUSH,XTERM);
8269
8270         case KEY_pop:
8271             UNIDOR(OP_POP);
8272
8273         case KEY_pos:
8274             UNIDOR(OP_POS);
8275
8276         case KEY_pack:
8277             LOP(OP_PACK,XTERM);
8278
8279         case KEY_package:
8280             s = force_word(s,BAREWORD,FALSE,TRUE);
8281             s = skipspace(s);
8282             s = force_strict_version(s);
8283             PREBLOCK(PACKAGE);
8284
8285         case KEY_pipe:
8286             LOP(OP_PIPE_OP,XTERM);
8287
8288         case KEY_q:
8289             s = scan_str(s,FALSE,FALSE,FALSE,NULL);
8290             if (!s)
8291                 missingterm(NULL);
8292             COPLINE_SET_FROM_MULTI_END;
8293             pl_yylval.ival = OP_CONST;
8294             TERM(sublex_start());
8295
8296         case KEY_quotemeta:
8297             UNI(OP_QUOTEMETA);
8298
8299         case KEY_qw: {
8300             OP *words = NULL;
8301             s = scan_str(s,FALSE,FALSE,FALSE,NULL);
8302             if (!s)
8303                 missingterm(NULL);
8304             COPLINE_SET_FROM_MULTI_END;
8305             PL_expect = XOPERATOR;
8306             if (SvCUR(PL_lex_stuff)) {
8307                 int warned_comma = !ckWARN(WARN_QW);
8308                 int warned_comment = warned_comma;
8309                 d = SvPV_force(PL_lex_stuff, len);
8310                 while (len) {
8311                     for (; isSPACE(*d) && len; --len, ++d)
8312                         /**/;
8313                     if (len) {
8314                         SV *sv;
8315                         const char *b = d;
8316                         if (!warned_comma || !warned_comment) {
8317                             for (; !isSPACE(*d) && len; --len, ++d) {
8318                                 if (!warned_comma && *d == ',') {
8319                                     Perl_warner(aTHX_ packWARN(WARN_QW),
8320                                         "Possible attempt to separate words with commas");
8321                                     ++warned_comma;
8322                                 }
8323                                 else if (!warned_comment && *d == '#') {
8324                                     Perl_warner(aTHX_ packWARN(WARN_QW),
8325                                         "Possible attempt to put comments in qw() list");
8326                                     ++warned_comment;
8327                                 }
8328                             }
8329                         }
8330                         else {
8331                             for (; !isSPACE(*d) && len; --len, ++d)
8332                                 /**/;
8333                         }
8334                         sv = newSVpvn_utf8(b, d-b, DO_UTF8(PL_lex_stuff));
8335                         words = op_append_elem(OP_LIST, words,
8336                                             newSVOP(OP_CONST, 0, tokeq(sv)));
8337                     }
8338                 }
8339             }
8340             if (!words)
8341                 words = newNULLLIST();
8342             SvREFCNT_dec_NN(PL_lex_stuff);
8343             PL_lex_stuff = NULL;
8344             PL_expect = XOPERATOR;
8345             pl_yylval.opval = sawparens(words);
8346             TOKEN(QWLIST);
8347         }
8348
8349         case KEY_qq:
8350             s = scan_str(s,FALSE,FALSE,FALSE,NULL);
8351             if (!s)
8352                 missingterm(NULL);
8353             pl_yylval.ival = OP_STRINGIFY;
8354             if (SvIVX(PL_lex_stuff) == '\'')
8355                 SvIV_set(PL_lex_stuff, 0);      /* qq'$foo' should interpolate */
8356             TERM(sublex_start());
8357
8358         case KEY_qr:
8359             s = scan_pat(s,OP_QR);
8360             TERM(sublex_start());
8361
8362         case KEY_qx:
8363             s = scan_str(s,FALSE,FALSE,FALSE,NULL);
8364             if (!s)
8365                 missingterm(NULL);
8366             pl_yylval.ival = OP_BACKTICK;
8367             TERM(sublex_start());
8368
8369         case KEY_return:
8370             OLDLOP(OP_RETURN);
8371
8372         case KEY_require:
8373             s = skipspace(s);
8374             if (isDIGIT(*s)) {
8375                 s = force_version(s, FALSE);
8376             }
8377             else if (*s != 'v' || !isDIGIT(s[1])
8378                     || (s = force_version(s, TRUE), *s == 'v'))
8379             {
8380                 *PL_tokenbuf = '\0';
8381                 s = force_word(s,BAREWORD,TRUE,TRUE);
8382                 if (isIDFIRST_lazy_if_safe(PL_tokenbuf,
8383                                            PL_tokenbuf + sizeof(PL_tokenbuf),
8384                                            UTF))
8385                 {
8386                     gv_stashpvn(PL_tokenbuf, strlen(PL_tokenbuf),
8387                                 GV_ADD | (UTF ? SVf_UTF8 : 0));
8388                 }
8389                 else if (*s == '<')
8390                     yyerror("<> at require-statement should be quotes");
8391             }
8392             if (orig_keyword == KEY_require) {
8393                 orig_keyword = 0;
8394                 pl_yylval.ival = 1;
8395             }
8396             else
8397                 pl_yylval.ival = 0;
8398             PL_expect = PL_nexttoke ? XOPERATOR : XTERM;
8399             PL_bufptr = s;
8400             PL_last_uni = PL_oldbufptr;
8401             PL_last_lop_op = OP_REQUIRE;
8402             s = skipspace(s);
8403             return REPORT( (int)REQUIRE );
8404
8405         case KEY_reset:
8406             UNI(OP_RESET);
8407
8408         case KEY_redo:
8409             LOOPX(OP_REDO);
8410
8411         case KEY_rename:
8412             LOP(OP_RENAME,XTERM);
8413
8414         case KEY_rand:
8415             UNI(OP_RAND);
8416
8417         case KEY_rmdir:
8418             UNI(OP_RMDIR);
8419
8420         case KEY_rindex:
8421             LOP(OP_RINDEX,XTERM);
8422
8423         case KEY_read:
8424             LOP(OP_READ,XTERM);
8425
8426         case KEY_readdir:
8427             UNI(OP_READDIR);
8428
8429         case KEY_readline:
8430             UNIDOR(OP_READLINE);
8431
8432         case KEY_readpipe:
8433             UNIDOR(OP_BACKTICK);
8434
8435         case KEY_rewinddir:
8436             UNI(OP_REWINDDIR);
8437
8438         case KEY_recv:
8439             LOP(OP_RECV,XTERM);
8440
8441         case KEY_reverse:
8442             LOP(OP_REVERSE,XTERM);
8443
8444         case KEY_readlink:
8445             UNIDOR(OP_READLINK);
8446
8447         case KEY_ref:
8448             UNI(OP_REF);
8449
8450         case KEY_s:
8451             s = scan_subst(s);
8452             if (pl_yylval.opval)
8453                 TERM(sublex_start());
8454             else
8455                 TOKEN(1);       /* force error */
8456
8457         case KEY_say:
8458             checkcomma(s,PL_tokenbuf,"filehandle");
8459             LOP(OP_SAY,XREF);
8460
8461         case KEY_chomp:
8462             UNI(OP_CHOMP);
8463
8464         case KEY_scalar:
8465             UNI(OP_SCALAR);
8466
8467         case KEY_select:
8468             LOP(OP_SELECT,XTERM);
8469
8470         case KEY_seek:
8471             LOP(OP_SEEK,XTERM);
8472
8473         case KEY_semctl:
8474             LOP(OP_SEMCTL,XTERM);
8475
8476         case KEY_semget:
8477             LOP(OP_SEMGET,XTERM);
8478
8479         case KEY_semop:
8480             LOP(OP_SEMOP,XTERM);
8481
8482         case KEY_send:
8483             LOP(OP_SEND,XTERM);
8484
8485         case KEY_setpgrp:
8486             LOP(OP_SETPGRP,XTERM);
8487
8488         case KEY_setpriority:
8489             LOP(OP_SETPRIORITY,XTERM);
8490
8491         case KEY_sethostent:
8492             UNI(OP_SHOSTENT);
8493
8494         case KEY_setnetent:
8495             UNI(OP_SNETENT);
8496
8497         case KEY_setservent:
8498             UNI(OP_SSERVENT);
8499
8500         case KEY_setprotoent:
8501             UNI(OP_SPROTOENT);
8502
8503         case KEY_setpwent:
8504             FUN0(OP_SPWENT);
8505
8506         case KEY_setgrent:
8507             FUN0(OP_SGRENT);
8508
8509         case KEY_seekdir:
8510             LOP(OP_SEEKDIR,XTERM);
8511
8512         case KEY_setsockopt:
8513             LOP(OP_SSOCKOPT,XTERM);
8514
8515         case KEY_shift:
8516             UNIDOR(OP_SHIFT);
8517
8518         case KEY_shmctl:
8519             LOP(OP_SHMCTL,XTERM);
8520
8521         case KEY_shmget:
8522             LOP(OP_SHMGET,XTERM);
8523
8524         case KEY_shmread:
8525             LOP(OP_SHMREAD,XTERM);
8526
8527         case KEY_shmwrite:
8528             LOP(OP_SHMWRITE,XTERM);
8529
8530         case KEY_shutdown:
8531             LOP(OP_SHUTDOWN,XTERM);
8532
8533         case KEY_sin:
8534             UNI(OP_SIN);
8535
8536         case KEY_sleep:
8537             UNI(OP_SLEEP);
8538
8539         case KEY_socket:
8540             LOP(OP_SOCKET,XTERM);
8541
8542         case KEY_socketpair:
8543             LOP(OP_SOCKPAIR,XTERM);
8544
8545         case KEY_sort:
8546             checkcomma(s,PL_tokenbuf,"subroutine name");
8547             s = skipspace(s);
8548             PL_expect = XTERM;
8549             s = force_word(s,BAREWORD,TRUE,TRUE);
8550             LOP(OP_SORT,XREF);
8551
8552         case KEY_split:
8553             LOP(OP_SPLIT,XTERM);
8554
8555         case KEY_sprintf:
8556             LOP(OP_SPRINTF,XTERM);
8557
8558         case KEY_splice:
8559             LOP(OP_SPLICE,XTERM);
8560
8561         case KEY_sqrt:
8562             UNI(OP_SQRT);
8563
8564         case KEY_srand:
8565             UNI(OP_SRAND);
8566
8567         case KEY_stat:
8568             UNI(OP_STAT);
8569
8570         case KEY_study:
8571             UNI(OP_STUDY);
8572
8573         case KEY_substr:
8574             LOP(OP_SUBSTR,XTERM);
8575
8576         case KEY_format:
8577         case KEY_sub:
8578           really_sub:
8579             {
8580                 char * const tmpbuf = PL_tokenbuf + 1;
8581                 expectation attrful;
8582                 bool have_name, have_proto;
8583                 const int key = tmp;
8584                 SV *format_name = NULL;
8585
8586                 SSize_t off = s-SvPVX(PL_linestr);
8587                 s = skipspace(s);
8588                 d = SvPVX(PL_linestr)+off;
8589
8590                 if (   isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)
8591                     || *s == '\''
8592                     || (*s == ':' && s[1] == ':'))
8593                 {
8594
8595                     PL_expect = XBLOCK;
8596                     attrful = XATTRBLOCK;
8597                     d = scan_word(s, tmpbuf, sizeof PL_tokenbuf - 1, TRUE,
8598                                   &len);
8599                     if (key == KEY_format)
8600                         format_name = S_newSV_maybe_utf8(aTHX_ s, d - s);
8601                     *PL_tokenbuf = '&';
8602                     if (memchr(tmpbuf, ':', len) || key != KEY_sub
8603                      || pad_findmy_pvn(
8604                             PL_tokenbuf, len + 1, 0
8605                         ) != NOT_IN_PAD)
8606                         sv_setpvn(PL_subname, tmpbuf, len);
8607                     else {
8608                         sv_setsv(PL_subname,PL_curstname);
8609                         sv_catpvs(PL_subname,"::");
8610                         sv_catpvn(PL_subname,tmpbuf,len);
8611                     }
8612                     if (SvUTF8(PL_linestr))
8613                         SvUTF8_on(PL_subname);
8614                     have_name = TRUE;
8615
8616
8617                     s = skipspace(d);
8618                 }
8619                 else {
8620                     if (key == KEY_my || key == KEY_our || key==KEY_state)
8621                     {
8622                         *d = '\0';
8623                         /* diag_listed_as: Missing name in "%s sub" */
8624                         Perl_croak(aTHX_
8625                                   "Missing name in \"%s\"", PL_bufptr);
8626                     }
8627                     PL_expect = XTERMBLOCK;
8628                     attrful = XATTRTERM;
8629                     sv_setpvs(PL_subname,"?");
8630                     have_name = FALSE;
8631                 }
8632
8633                 if (key == KEY_format) {
8634                     if (format_name) {
8635                         NEXTVAL_NEXTTOKE.opval
8636                             = newSVOP(OP_CONST,0, format_name);
8637                         NEXTVAL_NEXTTOKE.opval->op_private |= OPpCONST_BARE;
8638                         force_next(BAREWORD);
8639                     }
8640                     PREBLOCK(FORMAT);
8641                 }
8642
8643                 /* Look for a prototype */
8644                 if (*s == '(' && !FEATURE_SIGNATURES_IS_ENABLED) {
8645                     s = scan_str(s,FALSE,FALSE,FALSE,NULL);
8646                     COPLINE_SET_FROM_MULTI_END;
8647                     if (!s)
8648                         Perl_croak(aTHX_ "Prototype not terminated");
8649                     (void)validate_proto(PL_subname, PL_lex_stuff, ckWARN(WARN_ILLEGALPROTO));
8650                     have_proto = TRUE;
8651
8652                     s = skipspace(s);
8653                 }
8654                 else
8655                     have_proto = FALSE;
8656
8657                 if (*s == ':' && s[1] != ':')
8658                     PL_expect = attrful;
8659                 else if ((*s != '{' && *s != '(') && key != KEY_format) {
8660                     assert(key == KEY_sub || key == KEY_AUTOLOAD ||
8661                            key == KEY_DESTROY || key == KEY_BEGIN ||
8662                            key == KEY_UNITCHECK || key == KEY_CHECK ||
8663                            key == KEY_INIT || key == KEY_END ||
8664                            key == KEY_my || key == KEY_state ||
8665                            key == KEY_our);
8666                     if (!have_name)
8667                         Perl_croak(aTHX_ "Illegal declaration of anonymous subroutine");
8668                     else if (*s != ';' && *s != '}')
8669                         Perl_croak(aTHX_ "Illegal declaration of subroutine %" SVf, SVfARG(PL_subname));
8670                 }
8671
8672                 if (have_proto) {
8673                     NEXTVAL_NEXTTOKE.opval =
8674                         newSVOP(OP_CONST, 0, PL_lex_stuff);
8675                     PL_lex_stuff = NULL;
8676                     force_next(THING);
8677                 }
8678                 if (!have_name) {
8679                     if (PL_curstash)
8680                         sv_setpvs(PL_subname, "__ANON__");
8681                     else
8682                         sv_setpvs(PL_subname, "__ANON__::__ANON__");
8683                     TOKEN(ANONSUB);
8684                 }
8685                 force_ident_maybe_lex('&');
8686                 TOKEN(SUB);
8687             }
8688
8689         case KEY_system:
8690             LOP(OP_SYSTEM,XREF);
8691
8692         case KEY_symlink:
8693             LOP(OP_SYMLINK,XTERM);
8694
8695         case KEY_syscall:
8696             LOP(OP_SYSCALL,XTERM);
8697
8698         case KEY_sysopen:
8699             LOP(OP_SYSOPEN,XTERM);
8700
8701         case KEY_sysseek:
8702             LOP(OP_SYSSEEK,XTERM);
8703
8704         case KEY_sysread:
8705             LOP(OP_SYSREAD,XTERM);
8706
8707         case KEY_syswrite:
8708             LOP(OP_SYSWRITE,XTERM);
8709
8710         case KEY_tr:
8711         case KEY_y:
8712             s = scan_trans(s);
8713             TERM(sublex_start());
8714
8715         case KEY_tell:
8716             UNI(OP_TELL);
8717
8718         case KEY_telldir:
8719             UNI(OP_TELLDIR);
8720
8721         case KEY_tie:
8722             LOP(OP_TIE,XTERM);
8723
8724         case KEY_tied:
8725             UNI(OP_TIED);
8726
8727         case KEY_time:
8728             FUN0(OP_TIME);
8729
8730         case KEY_times:
8731             FUN0(OP_TMS);
8732
8733         case KEY_truncate:
8734             LOP(OP_TRUNCATE,XTERM);
8735
8736         case KEY_uc:
8737             UNI(OP_UC);
8738
8739         case KEY_ucfirst:
8740             UNI(OP_UCFIRST);
8741
8742         case KEY_untie:
8743             UNI(OP_UNTIE);
8744
8745         case KEY_until:
8746             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
8747                 return REPORT(0);
8748             pl_yylval.ival = CopLINE(PL_curcop);
8749             OPERATOR(UNTIL);
8750
8751         case KEY_unless:
8752             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
8753                 return REPORT(0);
8754             pl_yylval.ival = CopLINE(PL_curcop);
8755             OPERATOR(UNLESS);
8756
8757         case KEY_unlink:
8758             LOP(OP_UNLINK,XTERM);
8759
8760         case KEY_undef:
8761             UNIDOR(OP_UNDEF);
8762
8763         case KEY_unpack:
8764             LOP(OP_UNPACK,XTERM);
8765
8766         case KEY_utime:
8767             LOP(OP_UTIME,XTERM);
8768
8769         case KEY_umask:
8770             UNIDOR(OP_UMASK);
8771
8772         case KEY_unshift:
8773             LOP(OP_UNSHIFT,XTERM);
8774
8775         case KEY_use:
8776             s = tokenize_use(1, s);
8777             TOKEN(USE);
8778
8779         case KEY_values:
8780             UNI(OP_VALUES);
8781
8782         case KEY_vec:
8783             LOP(OP_VEC,XTERM);
8784
8785         case KEY_when:
8786             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
8787                 return REPORT(0);
8788             pl_yylval.ival = CopLINE(PL_curcop);
8789             Perl_ck_warner_d(aTHX_
8790                 packWARN(WARN_EXPERIMENTAL__SMARTMATCH),
8791                 "when is experimental");
8792             OPERATOR(WHEN);
8793
8794         case KEY_while:
8795             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
8796                 return REPORT(0);
8797             pl_yylval.ival = CopLINE(PL_curcop);
8798             OPERATOR(WHILE);
8799
8800         case KEY_warn:
8801             PL_hints |= HINT_BLOCK_SCOPE;
8802             LOP(OP_WARN,XTERM);
8803
8804         case KEY_wait:
8805             FUN0(OP_WAIT);
8806
8807         case KEY_waitpid:
8808             LOP(OP_WAITPID,XTERM);
8809
8810         case KEY_wantarray:
8811             FUN0(OP_WANTARRAY);
8812
8813         case KEY_write:
8814             /* Make sure $^L is defined. 0x0C is CTRL-L on ASCII platforms, and
8815              * we use the same number on EBCDIC */
8816             gv_fetchpvs("\x0C", GV_ADD|GV_NOTQUAL, SVt_PV);
8817             UNI(OP_ENTERWRITE);
8818
8819         case KEY_x:
8820             if (PL_expect == XOPERATOR) {
8821                 if (*s == '=' && !PL_lex_allbrackets
8822                     && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
8823                 {
8824                     return REPORT(0);
8825                 }
8826                 Mop(OP_REPEAT);
8827             }
8828             check_uni();
8829             goto just_a_word;
8830
8831         case KEY_xor:
8832             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_LOWLOGIC)
8833                 return REPORT(0);
8834             pl_yylval.ival = OP_XOR;
8835             OPERATOR(OROP);
8836         }
8837     }}
8838 }
8839
8840 /*
8841   S_pending_ident
8842
8843   Looks up an identifier in the pad or in a package
8844
8845   is_sig indicates that this is a subroutine signature variable
8846   rather than a plain pad var.
8847
8848   Returns:
8849     PRIVATEREF if this is a lexical name.
8850     BAREWORD   if this belongs to a package.
8851
8852   Structure:
8853       if we're in a my declaration
8854           croak if they tried to say my($foo::bar)
8855           build the ops for a my() declaration
8856       if it's an access to a my() variable
8857           build ops for access to a my() variable
8858       if in a dq string, and they've said @foo and we can't find @foo
8859           warn
8860       build ops for a bareword
8861 */
8862
8863 static int
8864 S_pending_ident(pTHX)
8865 {
8866     PADOFFSET tmp = 0;
8867     const char pit = (char)pl_yylval.ival;
8868     const STRLEN tokenbuf_len = strlen(PL_tokenbuf);
8869     /* All routes through this function want to know if there is a colon.  */
8870     const char *const has_colon = (const char*) memchr (PL_tokenbuf, ':', tokenbuf_len);
8871
8872     DEBUG_T({ PerlIO_printf(Perl_debug_log,
8873           "### Pending identifier '%s'\n", PL_tokenbuf); });
8874
8875     /* if we're in a my(), we can't allow dynamics here.
8876        $foo'bar has already been turned into $foo::bar, so
8877        just check for colons.
8878
8879        if it's a legal name, the OP is a PADANY.
8880     */
8881     if (PL_in_my) {
8882         if (PL_in_my == KEY_our) {      /* "our" is merely analogous to "my" */
8883             if (has_colon)
8884                 yyerror_pv(Perl_form(aTHX_ "No package name allowed for "
8885                                   "variable %s in \"our\"",
8886                                   PL_tokenbuf), UTF ? SVf_UTF8 : 0);
8887             tmp = allocmy(PL_tokenbuf, tokenbuf_len, UTF ? SVf_UTF8 : 0);
8888         }
8889         else {
8890             OP *o;
8891             if (has_colon) {
8892                 /* "my" variable %s can't be in a package */
8893                 /* PL_no_myglob is constant */
8894                 GCC_DIAG_IGNORE(-Wformat-nonliteral);
8895                 yyerror_pv(Perl_form(aTHX_ PL_no_myglob,
8896                             PL_in_my == KEY_my ? "my" : "state",
8897                             *PL_tokenbuf == '&' ? "subroutin" : "variabl",
8898                             PL_tokenbuf),
8899                             UTF ? SVf_UTF8 : 0);
8900                 GCC_DIAG_RESTORE;
8901             }
8902
8903             if (PL_in_my == KEY_sigvar) {
8904                 /* A signature 'padop' needs in addition, an op_first to
8905                  * point to a child sigdefelem, and an extra field to hold
8906                  * the signature index. We can achieve both by using an
8907                  * UNOP_AUX and (ab)using the op_aux field to hold the
8908                  * index. If we ever need more fields, use a real malloced
8909                  * aux strut instead.
8910                  */
8911                 o = newUNOP_AUX(OP_ARGELEM, 0, NULL,
8912                                     INT2PTR(UNOP_AUX_item *,
8913                                         (PL_parser->sig_elems)));
8914                 o->op_private |= (  PL_tokenbuf[0] == '$' ? OPpARGELEM_SV
8915                                   : PL_tokenbuf[0] == '@' ? OPpARGELEM_AV
8916                                   :                         OPpARGELEM_HV);
8917             }
8918             else
8919                 o = newOP(OP_PADANY, 0);
8920             o->op_targ = allocmy(PL_tokenbuf, tokenbuf_len,
8921                                                         UTF ? SVf_UTF8 : 0);
8922             if (PL_in_my == KEY_sigvar)
8923                 PL_in_my = 0;
8924
8925             pl_yylval.opval = o;
8926             return PRIVATEREF;
8927         }
8928     }
8929
8930     /*
8931        build the ops for accesses to a my() variable.
8932     */
8933
8934     if (!has_colon) {
8935         if (!PL_in_my)
8936             tmp = pad_findmy_pvn(PL_tokenbuf, tokenbuf_len,
8937                                  0);
8938         if (tmp != NOT_IN_PAD) {
8939             /* might be an "our" variable" */
8940             if (PAD_COMPNAME_FLAGS_isOUR(tmp)) {
8941                 /* build ops for a bareword */
8942                 HV *  const stash = PAD_COMPNAME_OURSTASH(tmp);
8943                 HEK * const stashname = HvNAME_HEK(stash);
8944                 SV *  const sym = newSVhek(stashname);
8945                 sv_catpvs(sym, "::");
8946                 sv_catpvn_flags(sym, PL_tokenbuf+1, tokenbuf_len - 1, (UTF ? SV_CATUTF8 : SV_CATBYTES ));
8947                 pl_yylval.opval = newSVOP(OP_CONST, 0, sym);
8948                 pl_yylval.opval->op_private = OPpCONST_ENTERED;
8949                 if (pit != '&')
8950                   gv_fetchsv(sym,
8951                     GV_ADDMULTI,
8952                     ((PL_tokenbuf[0] == '$') ? SVt_PV
8953                      : (PL_tokenbuf[0] == '@') ? SVt_PVAV
8954                      : SVt_PVHV));
8955                 return BAREWORD;
8956             }
8957
8958             pl_yylval.opval = newOP(OP_PADANY, 0);
8959             pl_yylval.opval->op_targ = tmp;
8960             return PRIVATEREF;
8961         }
8962     }
8963
8964     /*
8965        Whine if they've said @foo or @foo{key} in a doublequoted string,
8966        and @foo (or %foo) isn't a variable we can find in the symbol
8967        table.
8968     */
8969     if (ckWARN(WARN_AMBIGUOUS)
8970         && pit == '@'
8971         && PL_lex_state != LEX_NORMAL
8972         && !PL_lex_brackets)
8973     {
8974         GV *const gv = gv_fetchpvn_flags(PL_tokenbuf + 1, tokenbuf_len - 1,
8975                                          ( UTF ? SVf_UTF8 : 0 ) | GV_ADDMG,
8976                                          SVt_PVAV);
8977         if ((!gv || ((PL_tokenbuf[0] == '@') ? !GvAV(gv) : !GvHV(gv)))
8978            )
8979         {
8980             /* Downgraded from fatal to warning 20000522 mjd */
8981             Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
8982                         "Possible unintended interpolation of %" UTF8f
8983                         " in string",
8984                         UTF8fARG(UTF, tokenbuf_len, PL_tokenbuf));
8985         }
8986     }
8987
8988     /* build ops for a bareword */
8989     pl_yylval.opval = newSVOP(OP_CONST, 0,
8990                                    newSVpvn_flags(PL_tokenbuf + 1,
8991                                                       tokenbuf_len - 1,
8992                                                       UTF ? SVf_UTF8 : 0 ));
8993     pl_yylval.opval->op_private = OPpCONST_ENTERED;
8994     if (pit != '&')
8995         gv_fetchpvn_flags(PL_tokenbuf+1, tokenbuf_len - 1,
8996                      (PL_in_eval ? GV_ADDMULTI : GV_ADD)
8997                      | ( UTF ? SVf_UTF8 : 0 ),
8998                      ((PL_tokenbuf[0] == '$') ? SVt_PV
8999                       : (PL_tokenbuf[0] == '@') ? SVt_PVAV
9000                       : SVt_PVHV));
9001     return BAREWORD;
9002 }
9003
9004 STATIC void
9005 S_checkcomma(pTHX_ const char *s, const char *name, const char *what)
9006 {
9007     PERL_ARGS_ASSERT_CHECKCOMMA;
9008
9009     if (*s == ' ' && s[1] == '(') {     /* XXX gotta be a better way */
9010         if (ckWARN(WARN_SYNTAX)) {
9011             int level = 1;
9012             const char *w;
9013             for (w = s+2; *w && level; w++) {
9014                 if (*w == '(')
9015                     ++level;
9016                 else if (*w == ')')
9017                     --level;
9018             }
9019             while (isSPACE(*w))
9020                 ++w;
9021             /* the list of chars below is for end of statements or
9022              * block / parens, boolean operators (&&, ||, //) and branch
9023              * constructs (or, and, if, until, unless, while, err, for).
9024              * Not a very solid hack... */
9025             if (!*w || !strchr(";&/|})]oaiuwef!=", *w))
9026                 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
9027                             "%s (...) interpreted as function",name);
9028         }
9029     }
9030     while (s < PL_bufend && isSPACE(*s))
9031         s++;
9032     if (*s == '(')
9033         s++;
9034     while (s < PL_bufend && isSPACE(*s))
9035         s++;
9036     if (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)) {
9037         const char * const w = s;
9038         s += UTF ? UTF8SKIP(s) : 1;
9039         while (isWORDCHAR_lazy_if_safe(s, PL_bufend, UTF))
9040             s += UTF ? UTF8SKIP(s) : 1;
9041         while (s < PL_bufend && isSPACE(*s))
9042             s++;
9043         if (*s == ',') {
9044             GV* gv;
9045             if (keyword(w, s - w, 0))
9046                 return;
9047
9048             gv = gv_fetchpvn_flags(w, s - w, ( UTF ? SVf_UTF8 : 0 ), SVt_PVCV);
9049             if (gv && GvCVu(gv))
9050                 return;
9051             if (s - w <= 254) {
9052                 PADOFFSET off;
9053                 char tmpbuf[256];
9054                 Copy(w, tmpbuf+1, s - w, char);
9055                 *tmpbuf = '&';
9056                 off = pad_findmy_pvn(tmpbuf, s-w+1, 0);
9057                 if (off != NOT_IN_PAD) return;
9058             }
9059             Perl_croak(aTHX_ "No comma allowed after %s", what);
9060         }
9061     }
9062 }
9063
9064 /* S_new_constant(): do any overload::constant lookup.
9065
9066    Either returns sv, or mortalizes/frees sv and returns a new SV*.
9067    Best used as sv=new_constant(..., sv, ...).
9068    If s, pv are NULL, calls subroutine with one argument,
9069    and <type> is used with error messages only.
9070    <type> is assumed to be well formed UTF-8 */
9071
9072 STATIC SV *
9073 S_new_constant(pTHX_ const char *s, STRLEN len, const char *key, STRLEN keylen,
9074                SV *sv, SV *pv, const char *type, STRLEN typelen)
9075 {
9076     dSP;
9077     HV * table = GvHV(PL_hintgv);                /* ^H */
9078     SV *res;
9079     SV *errsv = NULL;
9080     SV **cvp;
9081     SV *cv, *typesv;
9082     const char *why1 = "", *why2 = "", *why3 = "";
9083
9084     PERL_ARGS_ASSERT_NEW_CONSTANT;
9085     /* We assume that this is true: */
9086     if (*key == 'c') { assert (strEQ(key, "charnames")); }
9087     assert(type || s);
9088
9089     /* charnames doesn't work well if there have been errors found */
9090     if (PL_error_count > 0 && *key == 'c')
9091     {
9092         SvREFCNT_dec_NN(sv);
9093         return &PL_sv_undef;
9094     }
9095
9096     sv_2mortal(sv);                     /* Parent created it permanently */
9097     if (!table
9098         || ! (PL_hints & HINT_LOCALIZE_HH)
9099         || ! (cvp = hv_fetch(table, key, keylen, FALSE))
9100         || ! SvOK(*cvp))
9101     {
9102         char *msg;
9103
9104         /* Here haven't found what we're looking for.  If it is charnames,
9105          * perhaps it needs to be loaded.  Try doing that before giving up */
9106         if (*key == 'c') {
9107             Perl_load_module(aTHX_
9108                             0,
9109                             newSVpvs("_charnames"),
9110                              /* version parameter; no need to specify it, as if
9111                               * we get too early a version, will fail anyway,
9112                               * not being able to find '_charnames' */
9113                             NULL,
9114                             newSVpvs(":full"),
9115                             newSVpvs(":short"),
9116                             NULL);
9117             assert(sp == PL_stack_sp);
9118             table = GvHV(PL_hintgv);
9119             if (table
9120                 && (PL_hints & HINT_LOCALIZE_HH)
9121                 && (cvp = hv_fetch(table, key, keylen, FALSE))
9122                 && SvOK(*cvp))
9123             {
9124                 goto now_ok;
9125             }
9126         }
9127         if (!table || !(PL_hints & HINT_LOCALIZE_HH)) {
9128             msg = Perl_form(aTHX_
9129                                "Constant(%.*s) unknown",
9130                                 (int)(type ? typelen : len),
9131                                 (type ? type: s));
9132         }
9133         else {
9134             why1 = "$^H{";
9135             why2 = key;
9136             why3 = "} is not defined";
9137         report:
9138             if (*key == 'c') {
9139                 msg = Perl_form(aTHX_
9140                             /* The +3 is for '\N{'; -4 for that, plus '}' */
9141                             "Unknown charname '%.*s'", (int)typelen - 4, type + 3
9142                       );
9143             }
9144             else {
9145                 msg = Perl_form(aTHX_ "Constant(%.*s): %s%s%s",
9146                                     (int)(type ? typelen : len),
9147                                     (type ? type: s), why1, why2, why3);
9148             }
9149         }
9150         yyerror_pv(msg, UTF ? SVf_UTF8 : 0);
9151         return SvREFCNT_inc_simple_NN(sv);
9152     }
9153   now_ok:
9154     cv = *cvp;
9155     if (!pv && s)
9156         pv = newSVpvn_flags(s, len, SVs_TEMP);
9157     if (type && pv)
9158         typesv = newSVpvn_flags(type, typelen, SVs_TEMP);
9159     else
9160         typesv = &PL_sv_undef;
9161
9162     PUSHSTACKi(PERLSI_OVERLOAD);
9163     ENTER ;
9164     SAVETMPS;
9165
9166     PUSHMARK(SP) ;
9167     EXTEND(sp, 3);
9168     if (pv)
9169         PUSHs(pv);
9170     PUSHs(sv);
9171     if (pv)
9172         PUSHs(typesv);
9173     PUTBACK;
9174     call_sv(cv, G_SCALAR | ( PL_in_eval ? 0 : G_EVAL));
9175
9176     SPAGAIN ;
9177
9178     /* Check the eval first */
9179     if (!PL_in_eval && ((errsv = ERRSV), SvTRUE_NN(errsv))) {
9180         STRLEN errlen;
9181         const char * errstr;
9182         sv_catpvs(errsv, "Propagated");
9183         errstr = SvPV_const(errsv, errlen);
9184         yyerror_pvn(errstr, errlen, 0); /* Duplicates the message inside eval */
9185         (void)POPs;
9186         res = SvREFCNT_inc_simple_NN(sv);
9187     }
9188     else {
9189         res = POPs;
9190         SvREFCNT_inc_simple_void_NN(res);
9191     }
9192
9193     PUTBACK ;
9194     FREETMPS ;
9195     LEAVE ;
9196     POPSTACK;
9197
9198     if (!SvOK(res)) {
9199         why1 = "Call to &{$^H{";
9200         why2 = key;
9201         why3 = "}} did not return a defined value";
9202         sv = res;
9203         (void)sv_2mortal(sv);
9204         goto report;
9205     }
9206
9207     return res;
9208 }
9209
9210 PERL_STATIC_INLINE void
9211 S_parse_ident(pTHX_ char **s, char **d, char * const e, int allow_package,
9212                     bool is_utf8, bool check_dollar)
9213 {
9214     PERL_ARGS_ASSERT_PARSE_IDENT;
9215
9216     while (*s < PL_bufend) {
9217         if (*d >= e)
9218             Perl_croak(aTHX_ "%s", ident_too_long);
9219         if (is_utf8 && isIDFIRST_utf8_safe(*s, PL_bufend)) {
9220              /* The UTF-8 case must come first, otherwise things
9221              * like c\N{COMBINING TILDE} would start failing, as the
9222              * isWORDCHAR_A case below would gobble the 'c' up.
9223              */
9224
9225             char *t = *s + UTF8SKIP(*s);
9226             while (isIDCONT_utf8_safe((const U8*) t, (const U8*) PL_bufend)) {
9227                 t += UTF8SKIP(t);
9228             }
9229             if (*d + (t - *s) > e)
9230                 Perl_croak(aTHX_ "%s", ident_too_long);
9231             Copy(*s, *d, t - *s, char);
9232             *d += t - *s;
9233             *s = t;
9234         }
9235         else if ( isWORDCHAR_A(**s) ) {
9236             do {
9237                 *(*d)++ = *(*s)++;
9238             } while (isWORDCHAR_A(**s) && *d < e);
9239         }
9240         else if (   allow_package
9241                  && **s == '\''
9242                  && isIDFIRST_lazy_if_safe((*s)+1, PL_bufend, is_utf8))
9243         {
9244             *(*d)++ = ':';
9245             *(*d)++ = ':';
9246             (*s)++;
9247         }
9248         else if (allow_package && **s == ':' && (*s)[1] == ':'
9249            /* Disallow things like Foo::$bar. For the curious, this is
9250             * the code path that triggers the "Bad name after" warning
9251             * when looking for barewords.
9252             */
9253            && !(check_dollar && (*s)[2] == '$')) {
9254             *(*d)++ = *(*s)++;
9255             *(*d)++ = *(*s)++;
9256         }
9257         else
9258             break;
9259     }
9260     return;
9261 }
9262
9263 /* Returns a NUL terminated string, with the length of the string written to
9264    *slp
9265    */
9266 STATIC char *
9267 S_scan_word(pTHX_ char *s, char *dest, STRLEN destlen, int allow_package, STRLEN *slp)
9268 {
9269     char *d = dest;
9270     char * const e = d + destlen - 3;  /* two-character token, ending NUL */
9271     bool is_utf8 = cBOOL(UTF);
9272
9273     PERL_ARGS_ASSERT_SCAN_WORD;
9274
9275     parse_ident(&s, &d, e, allow_package, is_utf8, TRUE);
9276     *d = '\0';
9277     *slp = d - dest;
9278     return s;
9279 }
9280
9281 /* Is the byte 'd' a legal single character identifier name?  'u' is true
9282  * iff Unicode semantics are to be used.  The legal ones are any of:
9283  *  a) all ASCII characters except:
9284  *          1) control and space-type ones, like NUL, SOH, \t, and SPACE;
9285  *          2) '{'
9286  *     The final case currently doesn't get this far in the program, so we
9287  *     don't test for it.  If that were to change, it would be ok to allow it.
9288  *  b) When not under Unicode rules, any upper Latin1 character
9289  *  c) Otherwise, when unicode rules are used, all XIDS characters.
9290  *
9291  *      Because all ASCII characters have the same representation whether
9292  *      encoded in UTF-8 or not, we can use the foo_A macros below and '\0' and
9293  *      '{' without knowing if is UTF-8 or not. */
9294 #define VALID_LEN_ONE_IDENT(s, e, is_utf8)                                  \
9295     (isGRAPH_A(*(s)) || ((is_utf8)                                          \
9296                          ? isIDFIRST_utf8_safe(s, e)                        \
9297                          : (isGRAPH_L1(*s)                                  \
9298                             && LIKELY((U8) *(s) != LATIN1_TO_NATIVE(0xAD)))))
9299
9300 STATIC char *
9301 S_scan_ident(pTHX_ char *s, char *dest, STRLEN destlen, I32 ck_uni)
9302 {
9303     I32 herelines = PL_parser->herelines;
9304     SSize_t bracket = -1;
9305     char funny = *s++;
9306     char *d = dest;
9307     char * const e = d + destlen - 3;    /* two-character token, ending NUL */
9308     bool is_utf8 = cBOOL(UTF);
9309     I32 orig_copline = 0, tmp_copline = 0;
9310
9311     PERL_ARGS_ASSERT_SCAN_IDENT;
9312
9313     if (isSPACE(*s) || !*s)
9314         s = skipspace(s);
9315     if (isDIGIT(*s)) {
9316         while (isDIGIT(*s)) {
9317             if (d >= e)
9318                 Perl_croak(aTHX_ "%s", ident_too_long);
9319             *d++ = *s++;
9320         }
9321     }
9322     else {  /* See if it is a "normal" identifier */
9323         parse_ident(&s, &d, e, 1, is_utf8, FALSE);
9324     }
9325     *d = '\0';
9326     d = dest;
9327     if (*d) {
9328         /* Either a digit variable, or parse_ident() found an identifier
9329            (anything valid as a bareword), so job done and return.  */
9330         if (PL_lex_state != LEX_NORMAL)
9331             PL_lex_state = LEX_INTERPENDMAYBE;
9332         return s;
9333     }
9334
9335     /* Here, it is not a run-of-the-mill identifier name */
9336
9337     if (*s == '$' && s[1]
9338         && (   isIDFIRST_lazy_if_safe(s+1, PL_bufend, is_utf8)
9339             || isDIGIT_A((U8)s[1])
9340             || s[1] == '$'
9341             || s[1] == '{'
9342             || strEQs(s+1,"::")) )
9343     {
9344         /* Dereferencing a value in a scalar variable.
9345            The alternatives are different syntaxes for a scalar variable.
9346            Using ' as a leading package separator isn't allowed. :: is.   */
9347         return s;
9348     }
9349     /* Handle the opening { of @{...}, &{...}, *{...}, %{...}, ${...}  */
9350     if (*s == '{') {
9351         bracket = s - SvPVX(PL_linestr);
9352         s++;
9353         orig_copline = CopLINE(PL_curcop);
9354         if (s < PL_bufend && isSPACE(*s)) {
9355             s = skipspace(s);
9356         }
9357     }
9358     if ((s <= PL_bufend - (is_utf8)
9359                           ? UTF8SKIP(s)
9360                           : 1)
9361         && VALID_LEN_ONE_IDENT(s, PL_bufend, is_utf8))
9362     {
9363         if (is_utf8) {
9364             const STRLEN skip = UTF8SKIP(s);
9365             STRLEN i;
9366             d[skip] = '\0';
9367             for ( i = 0; i < skip; i++ )
9368                 d[i] = *s++;
9369         }
9370         else {
9371             *d = *s++;
9372             d[1] = '\0';
9373         }
9374     }
9375     /* Convert $^F, ${^F} and the ^F of ${^FOO} to control characters */
9376     if (*d == '^' && *s && isCONTROLVAR(*s)) {
9377         *d = toCTRL(*s);
9378         s++;
9379     }
9380     /* Warn about ambiguous code after unary operators if {...} notation isn't
9381        used.  There's no difference in ambiguity; it's merely a heuristic
9382        about when not to warn.  */
9383     else if (ck_uni && bracket == -1)
9384         check_uni();
9385     if (bracket != -1) {
9386         bool skip;
9387         char *s2;
9388         /* If we were processing {...} notation then...  */
9389         if (isIDFIRST_lazy_if_safe(d, e, is_utf8)) {
9390             /* if it starts as a valid identifier, assume that it is one.
9391                (the later check for } being at the expected point will trap
9392                cases where this doesn't pan out.)  */
9393             d += is_utf8 ? UTF8SKIP(d) : 1;
9394             parse_ident(&s, &d, e, 1, is_utf8, TRUE);
9395             *d = '\0';
9396             tmp_copline = CopLINE(PL_curcop);
9397             if (s < PL_bufend && isSPACE(*s)) {
9398                 s = skipspace(s);
9399             }
9400             if ((*s == '[' || (*s == '{' && strNE(dest, "sub")))) {
9401                 /* ${foo[0]} and ${foo{bar}} notation.  */
9402                 if (ckWARN(WARN_AMBIGUOUS) && keyword(dest, d - dest, 0)) {
9403                     const char * const brack =
9404                         (const char *)
9405                         ((*s == '[') ? "[...]" : "{...}");
9406                     orig_copline = CopLINE(PL_curcop);
9407                     CopLINE_set(PL_curcop, tmp_copline);
9408    /* diag_listed_as: Ambiguous use of %c{%s[...]} resolved to %c%s[...] */
9409                     Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
9410                         "Ambiguous use of %c{%s%s} resolved to %c%s%s",
9411                         funny, dest, brack, funny, dest, brack);
9412                     CopLINE_set(PL_curcop, orig_copline);
9413                 }
9414                 bracket++;
9415                 PL_lex_brackstack[PL_lex_brackets++] = (char)(XOPERATOR | XFAKEBRACK);
9416                 PL_lex_allbrackets++;
9417                 return s;
9418             }
9419         }
9420         /* Handle extended ${^Foo} variables
9421          * 1999-02-27 mjd-perl-patch@plover.com */
9422         else if (! isPRINT(*d) /* isCNTRL(d), plus all non-ASCII */
9423                  && isWORDCHAR(*s))
9424         {
9425             d++;
9426             while (isWORDCHAR(*s) && d < e) {
9427                 *d++ = *s++;
9428             }
9429             if (d >= e)
9430                 Perl_croak(aTHX_ "%s", ident_too_long);
9431             *d = '\0';
9432         }
9433
9434         if ( !tmp_copline )
9435             tmp_copline = CopLINE(PL_curcop);
9436         if ((skip = s < PL_bufend && isSPACE(*s)))
9437             /* Avoid incrementing line numbers or resetting PL_linestart,
9438                in case we have to back up.  */
9439             s2 = peekspace(s);
9440         else
9441             s2 = s;
9442
9443         /* Expect to find a closing } after consuming any trailing whitespace.
9444          */
9445         if (*s2 == '}') {
9446             /* Now increment line numbers if applicable.  */
9447             if (skip)
9448                 s = skipspace(s);
9449             s++;
9450             if (PL_lex_state == LEX_INTERPNORMAL && !PL_lex_brackets) {
9451                 PL_lex_state = LEX_INTERPEND;
9452                 PL_expect = XREF;
9453             }
9454             if (PL_lex_state == LEX_NORMAL) {
9455                 if (ckWARN(WARN_AMBIGUOUS)
9456                     && (keyword(dest, d - dest, 0)
9457                         || get_cvn_flags(dest, d - dest, is_utf8
9458                            ? SVf_UTF8
9459                            : 0)))
9460                 {
9461                     SV *tmp = newSVpvn_flags( dest, d - dest,
9462                                         SVs_TEMP | (is_utf8 ? SVf_UTF8 : 0) );
9463                     if (funny == '#')
9464                         funny = '@';
9465                     orig_copline = CopLINE(PL_curcop);
9466                     CopLINE_set(PL_curcop, tmp_copline);
9467                     Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
9468                         "Ambiguous use of %c{%" SVf "} resolved to %c%" SVf,
9469                         funny, SVfARG(tmp), funny, SVfARG(tmp));
9470                     CopLINE_set(PL_curcop, orig_copline);
9471                 }
9472             }
9473         }
9474         else {
9475             /* Didn't find the closing } at the point we expected, so restore
9476                state such that the next thing to process is the opening { and */
9477             s = SvPVX(PL_linestr) + bracket; /* let the parser handle it */
9478             CopLINE_set(PL_curcop, orig_copline);
9479             PL_parser->herelines = herelines;
9480             *dest = '\0';
9481         }
9482     }
9483     else if (PL_lex_state == LEX_INTERPNORMAL && !PL_lex_brackets && !intuit_more(s))
9484         PL_lex_state = LEX_INTERPEND;
9485     return s;
9486 }
9487
9488 static bool
9489 S_pmflag(pTHX_ const char* const valid_flags, U32 * pmfl, char** s, char* charset, unsigned int * x_mod_count) {
9490
9491     /* Adds, subtracts to/from 'pmfl' based on the next regex modifier flag
9492      * found in the parse starting at 's', based on the subset that are valid
9493      * in this context input to this routine in 'valid_flags'. Advances s.
9494      * Returns TRUE if the input should be treated as a valid flag, so the next
9495      * char may be as well; otherwise FALSE. 'charset' should point to a NUL
9496      * upon first call on the current regex.  This routine will set it to any
9497      * charset modifier found.  The caller shouldn't change it.  This way,
9498      * another charset modifier encountered in the parse can be detected as an
9499      * error, as we have decided to allow only one */
9500
9501     const char c = **s;
9502     STRLEN charlen = UTF ? UTF8SKIP(*s) : 1;
9503
9504     if ( charlen != 1 || ! strchr(valid_flags, c) ) {
9505         if (isWORDCHAR_lazy_if_safe( *s, PL_bufend, UTF)) {
9506             yyerror_pv(Perl_form(aTHX_ "Unknown regexp modifier \"/%.*s\"", (int)charlen, *s),
9507                        UTF ? SVf_UTF8 : 0);
9508             (*s) += charlen;
9509             /* Pretend that it worked, so will continue processing before
9510              * dieing */
9511             return TRUE;
9512         }
9513         return FALSE;
9514     }
9515
9516     switch (c) {
9517
9518         CASE_STD_PMMOD_FLAGS_PARSE_SET(pmfl, *x_mod_count);
9519         case GLOBAL_PAT_MOD:      *pmfl |= PMf_GLOBAL; break;
9520         case CONTINUE_PAT_MOD:    *pmfl |= PMf_CONTINUE; break;
9521         case ONCE_PAT_MOD:        *pmfl |= PMf_KEEP; break;
9522         case KEEPCOPY_PAT_MOD:    *pmfl |= RXf_PMf_KEEPCOPY; break;
9523         case NONDESTRUCT_PAT_MOD: *pmfl |= PMf_NONDESTRUCT; break;
9524         case LOCALE_PAT_MOD:
9525             if (*charset) {
9526                 goto multiple_charsets;
9527             }
9528             set_regex_charset(pmfl, REGEX_LOCALE_CHARSET);
9529             *charset = c;
9530             break;
9531         case UNICODE_PAT_MOD:
9532             if (*charset) {
9533                 goto multiple_charsets;
9534             }
9535             set_regex_charset(pmfl, REGEX_UNICODE_CHARSET);
9536             *charset = c;
9537             break;
9538         case ASCII_RESTRICT_PAT_MOD:
9539             if (! *charset) {
9540                 set_regex_charset(pmfl, REGEX_ASCII_RESTRICTED_CHARSET);
9541             }
9542             else {
9543
9544                 /* Error if previous modifier wasn't an 'a', but if it was, see
9545                  * if, and accept, a second occurrence (only) */
9546                 if (*charset != 'a'
9547                     || get_regex_charset(*pmfl)
9548                         != REGEX_ASCII_RESTRICTED_CHARSET)
9549                 {
9550                         goto multiple_charsets;
9551                 }
9552                 set_regex_charset(pmfl, REGEX_ASCII_MORE_RESTRICTED_CHARSET);
9553             }
9554             *charset = c;
9555             break;
9556         case DEPENDS_PAT_MOD:
9557             if (*charset) {
9558                 goto multiple_charsets;
9559             }
9560             set_regex_charset(pmfl, REGEX_DEPENDS_CHARSET);
9561             *charset = c;
9562             break;
9563     }
9564
9565     (*s)++;
9566     return TRUE;
9567
9568     multiple_charsets:
9569         if (*charset != c) {
9570             yyerror(Perl_form(aTHX_ "Regexp modifiers \"/%c\" and \"/%c\" are mutually exclusive", *charset, c));
9571         }
9572         else if (c == 'a') {
9573   /* diag_listed_as: Regexp modifier "/%c" may appear a maximum of twice */
9574             yyerror("Regexp modifier \"/a\" may appear a maximum of twice");
9575         }
9576         else {
9577             yyerror(Perl_form(aTHX_ "Regexp modifier \"/%c\" may not appear twice", c));
9578         }
9579
9580         /* Pretend that it worked, so will continue processing before dieing */
9581         (*s)++;
9582         return TRUE;
9583 }
9584
9585 STATIC char *
9586 S_scan_pat(pTHX_ char *start, I32 type)
9587 {
9588     PMOP *pm;
9589     char *s;
9590     const char * const valid_flags =
9591         (const char *)((type == OP_QR) ? QR_PAT_MODS : M_PAT_MODS);
9592     char charset = '\0';    /* character set modifier */
9593     unsigned int x_mod_count = 0;
9594
9595     PERL_ARGS_ASSERT_SCAN_PAT;
9596
9597     s = scan_str(start,TRUE,FALSE, (PL_in_eval & EVAL_RE_REPARSING), NULL);
9598     if (!s)
9599         Perl_croak(aTHX_ "Search pattern not terminated");
9600
9601     pm = (PMOP*)newPMOP(type, 0);
9602     if (PL_multi_open == '?') {
9603         /* This is the only point in the code that sets PMf_ONCE:  */
9604         pm->op_pmflags |= PMf_ONCE;
9605
9606         /* Hence it's safe to do this bit of PMOP book-keeping here, which
9607            allows us to restrict the list needed by reset to just the ??
9608            matches.  */
9609         assert(type != OP_TRANS);
9610         if (PL_curstash) {
9611             MAGIC *mg = mg_find((const SV *)PL_curstash, PERL_MAGIC_symtab);
9612             U32 elements;
9613             if (!mg) {
9614                 mg = sv_magicext(MUTABLE_SV(PL_curstash), 0, PERL_MAGIC_symtab, 0, 0,
9615                                  0);
9616             }
9617             elements = mg->mg_len / sizeof(PMOP**);
9618             Renewc(mg->mg_ptr, elements + 1, PMOP*, char);
9619             ((PMOP**)mg->mg_ptr) [elements++] = pm;
9620             mg->mg_len = elements * sizeof(PMOP**);
9621             PmopSTASH_set(pm,PL_curstash);
9622         }
9623     }
9624
9625     /* if qr/...(?{..}).../, then need to parse the pattern within a new
9626      * anon CV. False positives like qr/[(?{]/ are harmless */
9627
9628     if (type == OP_QR) {
9629         STRLEN len;
9630         char *e, *p = SvPV(PL_lex_stuff, len);
9631         e = p + len;
9632         for (; p < e; p++) {
9633             if (p[0] == '(' && p[1] == '?'
9634                 && (p[2] == '{' || (p[2] == '?' && p[3] == '{')))
9635             {
9636                 pm->op_pmflags |= PMf_HAS_CV;
9637                 break;
9638             }
9639         }
9640         pm->op_pmflags |= PMf_IS_QR;
9641     }
9642
9643     while (*s && S_pmflag(aTHX_ valid_flags, &(pm->op_pmflags),
9644                                 &s, &charset, &x_mod_count))
9645     {};
9646     /* issue a warning if /c is specified,but /g is not */
9647     if ((pm->op_pmflags & PMf_CONTINUE) && !(pm->op_pmflags & PMf_GLOBAL))
9648     {
9649         Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP),
9650                        "Use of /c modifier is meaningless without /g" );
9651     }
9652
9653     PL_lex_op = (OP*)pm;
9654     pl_yylval.ival = OP_MATCH;
9655     return s;
9656 }
9657
9658 STATIC char *
9659 S_scan_subst(pTHX_ char *start)
9660 {
9661     char *s;
9662     PMOP *pm;
9663     I32 first_start;
9664     line_t first_line;
9665     line_t linediff = 0;
9666     I32 es = 0;
9667     char charset = '\0';    /* character set modifier */
9668     unsigned int x_mod_count = 0;
9669     char *t;
9670
9671     PERL_ARGS_ASSERT_SCAN_SUBST;
9672
9673     pl_yylval.ival = OP_NULL;
9674
9675     s = scan_str(start, TRUE, FALSE, FALSE, &t);
9676
9677     if (!s)
9678         Perl_croak(aTHX_ "Substitution pattern not terminated");
9679
9680     s = t;
9681
9682     first_start = PL_multi_start;
9683     first_line = CopLINE(PL_curcop);
9684     s = scan_str(s,FALSE,FALSE,FALSE,NULL);
9685     if (!s) {
9686         SvREFCNT_dec_NN(PL_lex_stuff);
9687         PL_lex_stuff = NULL;
9688         Perl_croak(aTHX_ "Substitution replacement not terminated");
9689     }
9690     PL_multi_start = first_start;       /* so whole substitution is taken together */
9691
9692     pm = (PMOP*)newPMOP(OP_SUBST, 0);
9693
9694
9695     while (*s) {
9696         if (*s == EXEC_PAT_MOD) {
9697             s++;
9698             es++;
9699         }
9700         else if (! S_pmflag(aTHX_ S_PAT_MODS, &(pm->op_pmflags),
9701                                   &s, &charset, &x_mod_count))
9702         {
9703             break;
9704         }
9705     }
9706
9707     if ((pm->op_pmflags & PMf_CONTINUE)) {
9708         Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), "Use of /c modifier is meaningless in s///" );
9709     }
9710
9711     if (es) {
9712         SV * const repl = newSVpvs("");
9713
9714         PL_multi_end = 0;
9715         pm->op_pmflags |= PMf_EVAL;
9716         while (es-- > 0) {
9717             if (es)
9718                 sv_catpvs(repl, "eval ");
9719             else
9720                 sv_catpvs(repl, "do ");
9721         }
9722         sv_catpvs(repl, "{");
9723         sv_catsv(repl, PL_parser->lex_sub_repl);
9724         sv_catpvs(repl, "}");
9725         SvREFCNT_dec(PL_parser->lex_sub_repl);
9726         PL_parser->lex_sub_repl = repl;
9727         es = 1;
9728     }
9729
9730
9731     linediff = CopLINE(PL_curcop) - first_line;
9732     if (linediff)
9733         CopLINE_set(PL_curcop, first_line);
9734
9735     if (linediff || es) {
9736         /* the IVX field indicates that the replacement string is a s///e;
9737          * the NVX field indicates how many src code lines the replacement
9738          * spreads over */
9739         sv_upgrade(PL_parser->lex_sub_repl, SVt_PVNV);
9740         ((XPVNV*)SvANY(PL_parser->lex_sub_repl))->xnv_u.xnv_lines = 0;
9741         ((XPVIV*)SvANY(PL_parser->lex_sub_repl))->xiv_u.xivu_eval_seen =
9742                                                                     cBOOL(es);
9743     }
9744
9745     PL_lex_op = (OP*)pm;
9746     pl_yylval.ival = OP_SUBST;
9747     return s;
9748 }
9749
9750 STATIC char *
9751 S_scan_trans(pTHX_ char *start)
9752 {
9753     char* s;
9754     OP *o;
9755     U8 squash;
9756     U8 del;
9757     U8 complement;
9758     bool nondestruct = 0;
9759     char *t;
9760
9761     PERL_ARGS_ASSERT_SCAN_TRANS;
9762
9763     pl_yylval.ival = OP_NULL;
9764
9765     s = scan_str(start,FALSE,FALSE,FALSE,&t);
9766     if (!s)
9767         Perl_croak(aTHX_ "Transliteration pattern not terminated");
9768
9769     s = t;
9770
9771     s = scan_str(s,FALSE,FALSE,FALSE,NULL);
9772     if (!s) {
9773         SvREFCNT_dec_NN(PL_lex_stuff);
9774         PL_lex_stuff = NULL;
9775         Perl_croak(aTHX_ "Transliteration replacement not terminated");
9776     }
9777
9778     complement = del = squash = 0;
9779     while (1) {
9780         switch (*s) {
9781         case 'c':
9782             complement = OPpTRANS_COMPLEMENT;
9783             break;
9784         case 'd':
9785             del = OPpTRANS_DELETE;
9786             break;
9787         case 's':
9788             squash = OPpTRANS_SQUASH;
9789             break;
9790         case 'r':
9791             nondestruct = 1;
9792             break;
9793         default:
9794             goto no_more;
9795         }
9796         s++;
9797     }
9798   no_more:
9799
9800     o = newPVOP(nondestruct ? OP_TRANSR : OP_TRANS, 0, (char*)NULL);
9801     o->op_private &= ~OPpTRANS_ALL;
9802     o->op_private |= del|squash|complement|
9803       (DO_UTF8(PL_lex_stuff)? OPpTRANS_FROM_UTF : 0)|
9804       (DO_UTF8(PL_parser->lex_sub_repl) ? OPpTRANS_TO_UTF   : 0);
9805
9806     PL_lex_op = o;
9807     pl_yylval.ival = nondestruct ? OP_TRANSR : OP_TRANS;
9808
9809
9810     return s;
9811 }
9812
9813 /* scan_heredoc
9814    Takes a pointer to the first < in <<FOO.
9815    Returns a pointer to the byte following <<FOO.
9816
9817    This function scans a heredoc, which involves different methods
9818    depending on whether we are in a string eval, quoted construct, etc.
9819    This is because PL_linestr could containing a single line of input, or
9820    a whole string being evalled, or the contents of the current quote-
9821    like operator.
9822
9823    The two basic methods are:
9824     - Steal lines from the input stream
9825     - Scan the heredoc in PL_linestr and remove it therefrom
9826
9827    In a file scope or filtered eval, the first method is used; in a
9828    string eval, the second.
9829
9830    In a quote-like operator, we have to choose between the two,
9831    depending on where we can find a newline.  We peek into outer lex-
9832    ing scopes until we find one with a newline in it.  If we reach the
9833    outermost lexing scope and it is a file, we use the stream method.
9834    Otherwise it is treated as an eval.
9835 */
9836
9837 STATIC char *
9838 S_scan_heredoc(pTHX_ char *s)
9839 {
9840     I32 op_type = OP_SCALAR;
9841     I32 len;
9842     SV *tmpstr;
9843     char term;
9844     char *d;
9845     char *e;
9846     char *peek;
9847     char *indent = 0;
9848     I32 indent_len = 0;
9849     bool indented = FALSE;
9850     const bool infile = PL_rsfp || PL_parser->filtered;
9851     const line_t origline = CopLINE(PL_curcop);
9852     LEXSHARED *shared = PL_parser->lex_shared;
9853
9854     PERL_ARGS_ASSERT_SCAN_HEREDOC;
9855
9856     s += 2;
9857     d = PL_tokenbuf + 1;
9858     e = PL_tokenbuf + sizeof PL_tokenbuf - 1;
9859     *PL_tokenbuf = '\n';
9860     peek = s;
9861     if (*peek == '~') {
9862         indented = TRUE;
9863         peek++; s++;
9864     }
9865     while (SPACE_OR_TAB(*peek))
9866         peek++;
9867     if (*peek == '`' || *peek == '\'' || *peek =='"') {
9868         s = peek;
9869         term = *s++;
9870         s = delimcpy(d, e, s, PL_bufend, term, &len);
9871         if (s == PL_bufend)
9872             Perl_croak(aTHX_ "Unterminated delimiter for here document");
9873         d += len;
9874         s++;
9875     }
9876     else {
9877         if (*s == '\\')
9878             /* <<\FOO is equivalent to <<'FOO' */
9879             s++, term = '\'';
9880         else
9881             term = '"';
9882         if (! isWORDCHAR_lazy_if_safe(s, PL_bufend, UTF))
9883             deprecate_fatal_in("5.28", "Use of bare << to mean <<\"\" is deprecated");
9884         peek = s;
9885         while (
9886                isWORDCHAR_lazy_if_safe(peek, PL_bufend, UTF))
9887         {
9888             peek += UTF ? UTF8SKIP(peek) : 1;
9889         }
9890         len = (peek - s >= e - d) ? (e - d) : (peek - s);
9891         Copy(s, d, len, char);
9892         s += len;
9893         d += len;
9894     }
9895     if (d >= PL_tokenbuf + sizeof PL_tokenbuf - 1)
9896         Perl_croak(aTHX_ "Delimiter for here document is too long");
9897     *d++ = '\n';
9898     *d = '\0';
9899     len = d - PL_tokenbuf;
9900
9901 #ifndef PERL_STRICT_CR
9902     d = strchr(s, '\r');
9903     if (d) {
9904         char * const olds = s;
9905         s = d;
9906         while (s < PL_bufend) {
9907             if (*s == '\r') {
9908                 *d++ = '\n';
9909                 if (*++s == '\n')
9910                     s++;
9911             }
9912             else if (*s == '\n' && s[1] == '\r') {      /* \015\013 on a mac? */
9913                 *d++ = *s++;
9914                 s++;
9915             }
9916             else
9917                 *d++ = *s++;
9918         }
9919         *d = '\0';
9920         PL_bufend = d;
9921         SvCUR_set(PL_linestr, PL_bufend - SvPVX_const(PL_linestr));
9922         s = olds;
9923     }
9924 #endif
9925
9926     tmpstr = newSV_type(SVt_PVIV);
9927     SvGROW(tmpstr, 80);
9928     if (term == '\'') {
9929         op_type = OP_CONST;
9930         SvIV_set(tmpstr, -1);
9931     }
9932     else if (term == '`') {
9933         op_type = OP_BACKTICK;
9934         SvIV_set(tmpstr, '\\');
9935     }
9936
9937     PL_multi_start = origline + 1 + PL_parser->herelines;
9938     PL_multi_open = PL_multi_close = '<';
9939     /* inside a string eval or quote-like operator */
9940     if (!infile || PL_lex_inwhat) {
9941         SV *linestr;
9942         char *bufend;
9943         char * const olds = s;
9944         PERL_CONTEXT * const cx = CX_CUR();
9945         /* These two fields are not set until an inner lexing scope is
9946            entered.  But we need them set here. */
9947         shared->ls_bufptr  = s;
9948         shared->ls_linestr = PL_linestr;
9949         if (PL_lex_inwhat)
9950           /* Look for a newline.  If the current buffer does not have one,
9951              peek into the line buffer of the parent lexing scope, going
9952              up as many levels as necessary to find one with a newline
9953              after bufptr.
9954            */
9955           while (!(s = (char *)memchr(
9956                     (void *)shared->ls_bufptr, '\n',
9957                     SvEND(shared->ls_linestr)-shared->ls_bufptr
9958                 ))) {
9959             shared = shared->ls_prev;
9960             /* shared is only null if we have gone beyond the outermost
9961                lexing scope.  In a file, we will have broken out of the
9962                loop in the previous iteration.  In an eval, the string buf-
9963                fer ends with "\n;", so the while condition above will have
9964                evaluated to false.  So shared can never be null.  Or so you
9965                might think.  Odd syntax errors like s;@{<<; can gobble up
9966                the implicit semicolon at the end of a flie, causing the
9967                file handle to be closed even when we are not in a string
9968                eval.  So shared may be null in that case.
9969                (Closing '}' here to balance the earlier open brace for
9970                editors that look for matched pairs.) */
9971             if (UNLIKELY(!shared))
9972                 goto interminable;
9973             /* A LEXSHARED struct with a null ls_prev pointer is the outer-
9974                most lexing scope.  In a file, shared->ls_linestr at that
9975                level is just one line, so there is no body to steal. */
9976             if (infile && !shared->ls_prev) {
9977                 s = olds;
9978                 goto streaming;
9979             }
9980           }
9981         else {  /* eval or we've already hit EOF */
9982             s = (char*)memchr((void*)s, '\n', PL_bufend - s);
9983             if (!s)
9984                 goto interminable;
9985         }
9986         linestr = shared->ls_linestr;
9987         bufend = SvEND(linestr);
9988         d = s;
9989         if (indented) {
9990             char *myolds = s;
9991
9992             while (s < bufend - len + 1) {
9993                 if (*s++ == '\n')
9994                     ++PL_parser->herelines;
9995
9996                 if (memEQ(s, PL_tokenbuf + 1, len - 1)) {
9997                     char *backup = s;
9998                     indent_len = 0;
9999
10000                     /* Only valid if it's preceded by whitespace only */
10001                     while (backup != myolds && --backup >= myolds) {
10002                         if (! SPACE_OR_TAB(*backup)) {
10003                             break;
10004                         }
10005
10006                         indent_len++;
10007                     }
10008
10009                     /* No whitespace or all! */
10010                     if (backup == s || *backup == '\n') {
10011                         Newxz(indent, indent_len + 1, char);
10012                         memcpy(indent, backup + 1, indent_len);
10013                         s--; /* before our delimiter */
10014                         PL_parser->herelines--; /* this line doesn't count */
10015                         break;
10016                     }
10017                 }
10018             }
10019         } else {
10020             while (s < bufend - len + 1
10021                    && memNE(s,PL_tokenbuf,len) )
10022             {
10023                 if (*s++ == '\n')
10024                     ++PL_parser->herelines;
10025             }
10026         }
10027
10028         if (s >= bufend - len + 1) {
10029             goto interminable;
10030         }
10031         sv_setpvn(tmpstr,d+1,s-d);
10032         s += len - 1;
10033         /* the preceding stmt passes a newline */
10034         PL_parser->herelines++;
10035
10036         /* s now points to the newline after the heredoc terminator.
10037            d points to the newline before the body of the heredoc.
10038          */
10039
10040         /* We are going to modify linestr in place here, so set
10041            aside copies of the string if necessary for re-evals or
10042            (caller $n)[6]. */
10043         /* See the Paranoia note in case LEX_INTERPEND in yylex, for why we
10044            check shared->re_eval_str. */
10045         if (shared->re_eval_start || shared->re_eval_str) {
10046             /* Set aside the rest of the regexp */
10047             if (!shared->re_eval_str)
10048                 shared->re_eval_str =
10049                        newSVpvn(shared->re_eval_start,
10050                                 bufend - shared->re_eval_start);
10051             shared->re_eval_start -= s-d;
10052         }
10053         if (cxstack_ix >= 0
10054             && CxTYPE(cx) == CXt_EVAL
10055             && CxOLD_OP_TYPE(cx) == OP_ENTEREVAL
10056             && cx->blk_eval.cur_text == linestr)
10057         {
10058             cx->blk_eval.cur_text = newSVsv(linestr);
10059             cx->blk_u16 |= 0x40; /* indicate cur_text is ref counted */
10060         }
10061         /* Copy everything from s onwards back to d. */
10062         Move(s,d,bufend-s + 1,char);
10063         SvCUR_set(linestr, SvCUR(linestr) - (s-d));
10064         /* Setting PL_bufend only applies when we have not dug deeper
10065            into other scopes, because sublex_done sets PL_bufend to
10066            SvEND(PL_linestr). */
10067         if (shared == PL_parser->lex_shared) PL_bufend = SvEND(linestr);
10068         s = olds;
10069     }
10070     else
10071     {
10072       SV *linestr_save;
10073       char *oldbufptr_save;
10074       char *oldoldbufptr_save;
10075      streaming:
10076       SvPVCLEAR(tmpstr);   /* avoid "uninitialized" warning */
10077       term = PL_tokenbuf[1];
10078       len--;
10079       linestr_save = PL_linestr; /* must restore this afterwards */
10080       d = s;                     /* and this */
10081       oldbufptr_save = PL_oldbufptr;
10082       oldoldbufptr_save = PL_oldoldbufptr;
10083       PL_linestr = newSVpvs("");
10084       PL_bufend = SvPVX(PL_linestr);
10085       while (1) {
10086         PL_bufptr = PL_bufend;
10087         CopLINE_set(PL_curcop,
10088                     origline + 1 + PL_parser->herelines);
10089         if (!lex_next_chunk(LEX_NO_TERM)
10090          && (!SvCUR(tmpstr) || SvEND(tmpstr)[-1] != '\n')) {
10091             /* Simply freeing linestr_save might seem simpler here, as it
10092                does not matter what PL_linestr points to, since we are
10093                about to croak; but in a quote-like op, linestr_save
10094                will have been prospectively freed already, via
10095                SAVEFREESV(PL_linestr) in sublex_push, so it’s easier to
10096                restore PL_linestr. */
10097             SvREFCNT_dec_NN(PL_linestr);
10098             PL_linestr = linestr_save;
10099             PL_oldbufptr = oldbufptr_save;
10100             PL_oldoldbufptr = oldoldbufptr_save;
10101             goto interminable;
10102         }
10103         CopLINE_set(PL_curcop, origline);
10104         if (!SvCUR(PL_linestr) || PL_bufend[-1] != '\n') {
10105             s = lex_grow_linestr(SvLEN(PL_linestr) + 3);
10106             /* ^That should be enough to avoid this needing to grow:  */
10107             sv_catpvs(PL_linestr, "\n\0");
10108             assert(s == SvPVX(PL_linestr));
10109             PL_bufend = SvEND(PL_linestr);
10110         }
10111         s = PL_bufptr;
10112         PL_parser->herelines++;
10113         PL_last_lop = PL_last_uni = NULL;
10114 #ifndef PERL_STRICT_CR
10115         if (PL_bufend - PL_linestart >= 2) {
10116             if (   (PL_bufend[-2] == '\r' && PL_bufend[-1] == '\n')
10117                 || (PL_bufend[-2] == '\n' && PL_bufend[-1] == '\r'))
10118             {
10119                 PL_bufend[-2] = '\n';
10120                 PL_bufend--;
10121                 SvCUR_set(PL_linestr, PL_bufend - SvPVX_const(PL_linestr));
10122             }
10123             else if (PL_bufend[-1] == '\r')
10124                 PL_bufend[-1] = '\n';
10125         }
10126         else if (PL_bufend - PL_linestart == 1 && PL_bufend[-1] == '\r')
10127             PL_bufend[-1] = '\n';
10128 #endif
10129         if (indented && (PL_bufend-s) >= len) {
10130             char * found = ninstr(s, PL_bufend, (PL_tokenbuf + 1), (PL_tokenbuf +1 + len));
10131
10132             if (found) {
10133                 char *backup = found;
10134                 indent_len = 0;
10135
10136                 /* Only valid if it's preceded by whitespace only */
10137                 while (backup != s && --backup >= s) {
10138                     if (! SPACE_OR_TAB(*backup)) {
10139                         break;
10140                     }
10141                     indent_len++;
10142                 }
10143
10144                 /* All whitespace or none! */
10145                 if (backup == found || SPACE_OR_TAB(*backup)) {
10146                     Newxz(indent, indent_len + 1, char);
10147                     memcpy(indent, backup, indent_len);
10148                     SvREFCNT_dec(PL_linestr);
10149                     PL_linestr = linestr_save;
10150                     PL_linestart = SvPVX(linestr_save);
10151                     PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
10152                     PL_oldbufptr = oldbufptr_save;
10153                     PL_oldoldbufptr = oldoldbufptr_save;
10154                     s = d;
10155                     break;
10156                 }
10157             }
10158
10159             /* Didn't find it */
10160             sv_catsv(tmpstr,PL_linestr);
10161         } else {
10162             if (*s == term && PL_bufend-s >= len
10163                 && memEQ(s,PL_tokenbuf + 1,len))
10164             {
10165                 SvREFCNT_dec(PL_linestr);
10166                 PL_linestr = linestr_save;
10167                 PL_linestart = SvPVX(linestr_save);
10168                 PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
10169                 PL_oldbufptr = oldbufptr_save;
10170                 PL_oldoldbufptr = oldoldbufptr_save;
10171                 s = d;
10172                 break;
10173             } else {
10174                 sv_catsv(tmpstr,PL_linestr);
10175             }
10176         }
10177       }
10178     }
10179     PL_multi_end = origline + PL_parser->herelines;
10180     if (indented && indent) {
10181         STRLEN linecount = 1;
10182         STRLEN herelen = SvCUR(tmpstr);
10183         char *ss = SvPVX(tmpstr);
10184         char *se = ss + herelen;
10185         SV *newstr = newSV(herelen+1);
10186         SvPOK_on(newstr);
10187
10188         /* Trim leading whitespace */
10189         while (ss < se) {
10190             /* newline only? Copy and move on */
10191             if (*ss == '\n') {
10192                 sv_catpv(newstr,"\n");
10193                 ss++;
10194                 linecount++;
10195
10196             /* Found our indentation? Strip it */
10197             } else if (se - ss >= indent_len
10198                        && memEQ(ss, indent, indent_len))
10199             {
10200                 STRLEN le = 0;
10201
10202                 ss += indent_len;
10203
10204                 while ((ss + le) < se && *(ss + le) != '\n')
10205                     le++;
10206
10207                 sv_catpvn(newstr, ss, le);
10208
10209                 ss += le;
10210
10211             /* Line doesn't begin with our indentation? Croak */
10212             } else {
10213                 Perl_croak(aTHX_
10214                     "Indentation on line %d of here-doc doesn't match delimiter",
10215                     (int)linecount
10216                 );
10217             }
10218         }
10219         /* avoid sv_setsv() as we dont wan't to COW here */
10220         sv_setpvn(tmpstr,SvPVX(newstr),SvCUR(newstr));
10221         Safefree(indent);
10222         SvREFCNT_dec_NN(newstr);
10223     }
10224     if (SvCUR(tmpstr) + 5 < SvLEN(tmpstr)) {
10225         SvPV_shrink_to_cur(tmpstr);
10226     }
10227     if (!IN_BYTES) {
10228         if (UTF && is_utf8_string((U8*)SvPVX_const(tmpstr), SvCUR(tmpstr)))
10229             SvUTF8_on(tmpstr);
10230     }
10231     PL_lex_stuff = tmpstr;
10232     pl_yylval.ival = op_type;
10233     return s;
10234
10235   interminable:
10236     SvREFCNT_dec(tmpstr);
10237     CopLINE_set(PL_curcop, origline);
10238     missingterm(PL_tokenbuf + 1);
10239 }
10240
10241 /* scan_inputsymbol
10242    takes: position of first '<' in input buffer
10243    returns: position of first char following the matching '>' in
10244             input buffer
10245    side-effects: pl_yylval and lex_op are set.
10246
10247    This code handles:
10248
10249    <>           read from ARGV
10250    <<>>         read from ARGV without magic open
10251    <FH>         read from filehandle
10252    <pkg::FH>    read from package qualified filehandle
10253    <pkg'FH>     read from package qualified filehandle
10254    <$fh>        read from filehandle in $fh
10255    <*.h>        filename glob
10256
10257 */
10258
10259 STATIC char *
10260 S_scan_inputsymbol(pTHX_ char *start)
10261 {
10262     char *s = start;            /* current position in buffer */
10263     char *end;
10264     I32 len;
10265     bool nomagicopen = FALSE;
10266     char *d = PL_tokenbuf;                                      /* start of temp holding space */
10267     const char * const e = PL_tokenbuf + sizeof PL_tokenbuf;    /* end of temp holding space */
10268
10269     PERL_ARGS_ASSERT_SCAN_INPUTSYMBOL;
10270
10271     end = strchr(s, '\n');
10272     if (!end)
10273         end = PL_bufend;
10274     if (s[1] == '<' && s[2] == '>' && s[3] == '>') {
10275         nomagicopen = TRUE;
10276         *d = '\0';
10277         len = 0;
10278         s += 3;
10279     }
10280     else
10281         s = delimcpy(d, e, s + 1, end, '>', &len);      /* extract until > */
10282
10283     /* die if we didn't have space for the contents of the <>,
10284        or if it didn't end, or if we see a newline
10285     */
10286
10287     if (len >= (I32)sizeof PL_tokenbuf)
10288         Perl_croak(aTHX_ "Excessively long <> operator");
10289     if (s >= end)
10290         Perl_croak(aTHX_ "Unterminated <> operator");
10291
10292     s++;
10293
10294     /* check for <$fh>
10295        Remember, only scalar variables are interpreted as filehandles by
10296        this code.  Anything more complex (e.g., <$fh{$num}>) will be
10297        treated as a glob() call.
10298        This code makes use of the fact that except for the $ at the front,
10299        a scalar variable and a filehandle look the same.
10300     */
10301     if (*d == '$' && d[1]) d++;
10302
10303     /* allow <Pkg'VALUE> or <Pkg::VALUE> */
10304     while (isWORDCHAR_lazy_if_safe(d, e, UTF) || *d == '\'' || *d == ':') {
10305         d += UTF ? UTF8SKIP(d) : 1;
10306     }
10307
10308     /* If we've tried to read what we allow filehandles to look like, and
10309        there's still text left, then it must be a glob() and not a getline.
10310        Use scan_str to pull out the stuff between the <> and treat it
10311        as nothing more than a string.
10312     */
10313
10314     if (d - PL_tokenbuf != len) {
10315         pl_yylval.ival = OP_GLOB;
10316         s = scan_str(start,FALSE,FALSE,FALSE,NULL);
10317         if (!s)
10318            Perl_croak(aTHX_ "Glob not terminated");
10319         return s;
10320     }
10321     else {
10322         bool readline_overriden = FALSE;
10323         GV *gv_readline;
10324         /* we're in a filehandle read situation */
10325         d = PL_tokenbuf;
10326
10327         /* turn <> into <ARGV> */
10328         if (!len)
10329             Copy("ARGV",d,5,char);
10330
10331         /* Check whether readline() is overriden */
10332         if ((gv_readline = gv_override("readline",8)))
10333             readline_overriden = TRUE;
10334
10335         /* if <$fh>, create the ops to turn the variable into a
10336            filehandle
10337         */
10338         if (*d == '$') {
10339             /* try to find it in the pad for this block, otherwise find
10340                add symbol table ops
10341             */
10342             const PADOFFSET tmp = pad_findmy_pvn(d, len, 0);
10343             if (tmp != NOT_IN_PAD) {
10344                 if (PAD_COMPNAME_FLAGS_isOUR(tmp)) {
10345                     HV * const stash = PAD_COMPNAME_OURSTASH(tmp);
10346                     HEK * const stashname = HvNAME_HEK(stash);
10347                     SV * const sym = sv_2mortal(newSVhek(stashname));
10348                     sv_catpvs(sym, "::");
10349                     sv_catpv(sym, d+1);
10350                     d = SvPVX(sym);
10351                     goto intro_sym;
10352                 }
10353                 else {
10354                     OP * const o = newOP(OP_PADSV, 0);
10355                     o->op_targ = tmp;
10356                     PL_lex_op = readline_overriden
10357                         ? newUNOP(OP_ENTERSUB, OPf_STACKED,
10358                                 op_append_elem(OP_LIST, o,
10359                                     newCVREF(0, newGVOP(OP_GV,0,gv_readline))))
10360                         : newUNOP(OP_READLINE, 0, o);
10361                 }
10362             }
10363             else {
10364                 GV *gv;
10365                 ++d;
10366               intro_sym:
10367                 gv = gv_fetchpv(d,
10368                                 GV_ADDMULTI | ( UTF ? SVf_UTF8 : 0 ),
10369                                 SVt_PV);
10370                 PL_lex_op = readline_overriden
10371                     ? newUNOP(OP_ENTERSUB, OPf_STACKED,
10372                             op_append_elem(OP_LIST,
10373                                 newUNOP(OP_RV2SV, 0, newGVOP(OP_GV, 0, gv)),
10374                                 newCVREF(0, newGVOP(OP_GV, 0, gv_readline))))
10375                     : newUNOP(OP_READLINE, 0,
10376                             newUNOP(OP_RV2SV, 0,
10377                                 newGVOP(OP_GV, 0, gv)));
10378             }
10379             /* we created the ops in PL_lex_op, so make pl_yylval.ival a null op */
10380             pl_yylval.ival = OP_NULL;
10381         }
10382
10383         /* If it's none of the above, it must be a literal filehandle
10384            (<Foo::BAR> or <FOO>) so build a simple readline OP */
10385         else {
10386             GV * const gv = gv_fetchpv(d, GV_ADD | ( UTF ? SVf_UTF8 : 0 ), SVt_PVIO);
10387             PL_lex_op = readline_overriden
10388                 ? newUNOP(OP_ENTERSUB, OPf_STACKED,
10389                         op_append_elem(OP_LIST,
10390                             newGVOP(OP_GV, 0, gv),
10391                             newCVREF(0, newGVOP(OP_GV, 0, gv_readline))))
10392                 : newUNOP(OP_READLINE, nomagicopen ? OPf_SPECIAL : 0, newGVOP(OP_GV, 0, gv));
10393             pl_yylval.ival = OP_NULL;
10394         }
10395     }
10396
10397     return s;
10398 }
10399
10400
10401 /* scan_str
10402    takes:
10403         start                   position in buffer
10404         keep_bracketed_quoted   preserve \ quoting of embedded delimiters, but
10405                                 only if they are of the open/close form
10406         keep_delims             preserve the delimiters around the string
10407         re_reparse              compiling a run-time /(?{})/:
10408                                    collapse // to /,  and skip encoding src
10409         delimp                  if non-null, this is set to the position of
10410                                 the closing delimiter, or just after it if
10411                                 the closing and opening delimiters differ
10412                                 (i.e., the opening delimiter of a substitu-
10413                                 tion replacement)
10414    returns: position to continue reading from buffer
10415    side-effects: multi_start, multi_close, lex_repl or lex_stuff, and
10416         updates the read buffer.
10417
10418    This subroutine pulls a string out of the input.  It is called for:
10419         q               single quotes           q(literal text)
10420         '               single quotes           'literal text'
10421         qq              double quotes           qq(interpolate $here please)
10422         "               double quotes           "interpolate $here please"
10423         qx              backticks               qx(/bin/ls -l)
10424         `               backticks               `/bin/ls -l`
10425         qw              quote words             @EXPORT_OK = qw( func() $spam )
10426         m//             regexp match            m/this/
10427         s///            regexp substitute       s/this/that/
10428         tr///           string transliterate    tr/this/that/
10429         y///            string transliterate    y/this/that/
10430         ($*@)           sub prototypes          sub foo ($)
10431         (stuff)         sub attr parameters     sub foo : attr(stuff)
10432         <>              readline or globs       <FOO>, <>, <$fh>, or <*.c>
10433
10434    In most of these cases (all but <>, patterns and transliterate)
10435    yylex() calls scan_str().  m// makes yylex() call scan_pat() which
10436    calls scan_str().  s/// makes yylex() call scan_subst() which calls
10437    scan_str().  tr/// and y/// make yylex() call scan_trans() which
10438    calls scan_str().
10439
10440    It skips whitespace before the string starts, and treats the first
10441    character as the delimiter.  If the delimiter is one of ([{< then
10442    the corresponding "close" character )]}> is used as the closing
10443    delimiter.  It allows quoting of delimiters, and if the string has
10444    balanced delimiters ([{<>}]) it allows nesting.
10445
10446    On success, the SV with the resulting string is put into lex_stuff or,
10447    if that is already non-NULL, into lex_repl. The second case occurs only
10448    when parsing the RHS of the special constructs s/// and tr/// (y///).
10449    For convenience, the terminating delimiter character is stuffed into
10450    SvIVX of the SV.
10451 */
10452
10453 STATIC char *
10454 S_scan_str(pTHX_ char *start, int keep_bracketed_quoted, int keep_delims, int re_reparse,
10455                  char **delimp
10456     )
10457 {
10458     SV *sv;                     /* scalar value: string */
10459     const char *tmps;           /* temp string, used for delimiter matching */
10460     char *s = start;            /* current position in the buffer */
10461     char term;                  /* terminating character */
10462     char *to;                   /* current position in the sv's data */
10463     I32 brackets = 1;           /* bracket nesting level */
10464     bool has_utf8 = FALSE;      /* is there any utf8 content? */
10465     IV termcode;                /* terminating char. code */
10466     U8 termstr[UTF8_MAXBYTES];  /* terminating string */
10467     STRLEN termlen;             /* length of terminating string */
10468     line_t herelines;
10469
10470     /* The delimiters that have a mirror-image closing one */
10471     const char * opening_delims = "([{<";
10472     const char * closing_delims = ")]}>";
10473
10474     const char * non_grapheme_msg = "Use of unassigned code point or"
10475                                     " non-standalone grapheme for a delimiter"
10476                                     " will be a fatal error starting in Perl"
10477                                     " 5.30";
10478     /* The only non-UTF character that isn't a stand alone grapheme is
10479      * white-space, hence can't be a delimiter.  So can skip for non-UTF-8 */
10480     bool check_grapheme = UTF && ckWARN_d(WARN_DEPRECATED);
10481
10482     PERL_ARGS_ASSERT_SCAN_STR;
10483
10484     /* skip space before the delimiter */
10485     if (isSPACE(*s)) {
10486         s = skipspace(s);
10487     }
10488
10489     /* mark where we are, in case we need to report errors */
10490     CLINE;
10491
10492     /* after skipping whitespace, the next character is the terminator */
10493     term = *s;
10494     if (!UTF || UTF8_IS_INVARIANT(term)) {
10495         termcode = termstr[0] = term;
10496         termlen = 1;
10497     }
10498     else {
10499         termcode = utf8_to_uvchr_buf((U8*)s, (U8*)PL_bufend, &termlen);
10500         if (check_grapheme) {
10501             if (   UNLIKELY(UNICODE_IS_SUPER(termcode))
10502                 || UNLIKELY(UNICODE_IS_NONCHAR(termcode)))
10503             {
10504                 /* These are considered graphemes, and since the ending
10505                  * delimiter will be the same, we don't have to check the other
10506                  * end */
10507                 check_grapheme = FALSE;
10508             }
10509             else if (UNLIKELY(! _is_grapheme((U8 *) start,
10510                                              (U8 *) s,
10511                                              (U8 *) PL_bufend,
10512                                              termcode)))
10513             {
10514                 Perl_warner(aTHX_ packWARN(WARN_DEPRECATED), "%s", non_grapheme_msg);
10515
10516                 /* Don't have to check the other end, as have already warned at
10517                  * this one */
10518                 check_grapheme = FALSE;
10519             }
10520         }
10521
10522         Copy(s, termstr, termlen, U8);
10523     }
10524
10525     /* mark where we are */
10526     PL_multi_start = CopLINE(PL_curcop);
10527     PL_multi_open = termcode;
10528     herelines = PL_parser->herelines;
10529
10530     /* If the delimiter has a mirror-image closing one, get it */
10531     if (term && (tmps = strchr(opening_delims, term))) {
10532         termcode = termstr[0] = term = closing_delims[tmps - opening_delims];
10533     }
10534
10535     PL_multi_close = termcode;
10536
10537     if (PL_multi_open == PL_multi_close) {
10538         keep_bracketed_quoted = FALSE;
10539     }
10540
10541     /* create a new SV to hold the contents.  79 is the SV's initial length.
10542        What a random number. */
10543     sv = newSV_type(SVt_PVIV);
10544     SvGROW(sv, 80);
10545     SvIV_set(sv, termcode);
10546     (void)SvPOK_only(sv);               /* validate pointer */
10547
10548     /* move past delimiter and try to read a complete string */
10549     if (keep_delims)
10550         sv_catpvn(sv, s, termlen);
10551     s += termlen;
10552     for (;;) {
10553         /* extend sv if need be */
10554         SvGROW(sv, SvCUR(sv) + (PL_bufend - s) + 1);
10555         /* set 'to' to the next character in the sv's string */
10556         to = SvPVX(sv)+SvCUR(sv);
10557
10558         /* if open delimiter is the close delimiter read unbridle */
10559         if (PL_multi_open == PL_multi_close) {
10560             for (; s < PL_bufend; s++,to++) {
10561                 /* embedded newlines increment the current line number */
10562                 if (*s == '\n' && !PL_rsfp && !PL_parser->filtered)
10563                     COPLINE_INC_WITH_HERELINES;
10564                 /* handle quoted delimiters */
10565                 if (*s == '\\' && s+1 < PL_bufend && term != '\\') {
10566                     if (!keep_bracketed_quoted
10567                         && (s[1] == term
10568                             || (re_reparse && s[1] == '\\'))
10569                     )
10570                         s++;
10571                     else /* any other quotes are simply copied straight through */
10572                         *to++ = *s++;
10573                 }
10574                 /* terminate when run out of buffer (the for() condition), or
10575                    have found the terminator */
10576                 else if (*s == term) {  /* First byte of terminator matches */
10577                     if (termlen == 1)   /* If is the only byte, are done */
10578                         break;
10579
10580                     /* If the remainder of the terminator matches, also are
10581                      * done, after checking that is a separate grapheme */
10582                     if (   s + termlen <= PL_bufend
10583                         && memEQ(s + 1, (char*)termstr + 1, termlen - 1))
10584                     {
10585                         if (   check_grapheme
10586                             && UNLIKELY(! _is_grapheme((U8 *) start,
10587                                                               (U8 *) s,
10588                                                               (U8 *) PL_bufend,
10589                                                               termcode)))
10590                         {
10591                             Perl_warner(aTHX_ packWARN(WARN_DEPRECATED),
10592                                         "%s", non_grapheme_msg);
10593                         }
10594                         break;
10595                     }
10596                 }
10597                 else if (!has_utf8 && !UTF8_IS_INVARIANT((U8)*s) && UTF) {
10598                     has_utf8 = TRUE;
10599                 }
10600
10601                 *to = *s;
10602             }
10603         }
10604
10605         /* if the terminator isn't the same as the start character (e.g.,
10606            matched brackets), we have to allow more in the quoting, and
10607            be prepared for nested brackets.
10608         */
10609         else {
10610             /* read until we run out of string, or we find the terminator */
10611             for (; s < PL_bufend; s++,to++) {
10612                 /* embedded newlines increment the line count */
10613                 if (*s == '\n' && !PL_rsfp && !PL_parser->filtered)
10614                     COPLINE_INC_WITH_HERELINES;
10615                 /* backslashes can escape the open or closing characters */
10616                 if (*s == '\\' && s+1 < PL_bufend) {
10617                     if (!keep_bracketed_quoted
10618                        && ( ((UV)s[1] == PL_multi_open)
10619                          || ((UV)s[1] == PL_multi_close) ))
10620                     {
10621                         s++;
10622                     }
10623                     else
10624                         *to++ = *s++;
10625                 }
10626                 /* allow nested opens and closes */
10627                 else if ((UV)*s == PL_multi_close && --brackets <= 0)
10628                     break;
10629                 else if ((UV)*s == PL_multi_open)
10630                     brackets++;
10631                 else if (!has_utf8 && !UTF8_IS_INVARIANT((U8)*s) && UTF)
10632                     has_utf8 = TRUE;
10633                 *to = *s;
10634             }
10635         }
10636         /* terminate the copied string and update the sv's end-of-string */
10637         *to = '\0';
10638         SvCUR_set(sv, to - SvPVX_const(sv));
10639
10640         /*
10641          * this next chunk reads more into the buffer if we're not done yet
10642          */
10643
10644         if (s < PL_bufend)
10645             break;              /* handle case where we are done yet :-) */
10646
10647 #ifndef PERL_STRICT_CR
10648         if (to - SvPVX_const(sv) >= 2) {
10649             if (   (to[-2] == '\r' && to[-1] == '\n')
10650                 || (to[-2] == '\n' && to[-1] == '\r'))
10651             {
10652                 to[-2] = '\n';
10653                 to--;
10654                 SvCUR_set(sv, to - SvPVX_const(sv));
10655             }
10656             else if (to[-1] == '\r')
10657                 to[-1] = '\n';
10658         }
10659         else if (to - SvPVX_const(sv) == 1 && to[-1] == '\r')
10660             to[-1] = '\n';
10661 #endif
10662
10663         /* if we're out of file, or a read fails, bail and reset the current
10664            line marker so we can report where the unterminated string began
10665         */
10666         COPLINE_INC_WITH_HERELINES;
10667         PL_bufptr = PL_bufend;
10668         if (!lex_next_chunk(0)) {
10669             sv_free(sv);
10670             CopLINE_set(PL_curcop, (line_t)PL_multi_start);
10671             return NULL;
10672         }
10673         s = start = PL_bufptr;
10674     }
10675
10676     /* at this point, we have successfully read the delimited string */
10677
10678     if (keep_delims)
10679             sv_catpvn(sv, s, termlen);
10680     s += termlen;
10681
10682     if (has_utf8)
10683         SvUTF8_on(sv);
10684
10685     PL_multi_end = CopLINE(PL_curcop);
10686     CopLINE_set(PL_curcop, PL_multi_start);
10687     PL_parser->herelines = herelines;
10688
10689     /* if we allocated too much space, give some back */
10690     if (SvCUR(sv) + 5 < SvLEN(sv)) {
10691         SvLEN_set(sv, SvCUR(sv) + 1);
10692         SvPV_renew(sv, SvLEN(sv));
10693     }
10694
10695     /* decide whether this is the first or second quoted string we've read
10696        for this op
10697     */
10698
10699     if (PL_lex_stuff)
10700         PL_parser->lex_sub_repl = sv;
10701     else
10702         PL_lex_stuff = sv;
10703     if (delimp) *delimp = PL_multi_open == PL_multi_close ? s-termlen : s;
10704     return s;
10705 }
10706
10707 /*
10708   scan_num
10709   takes: pointer to position in buffer
10710   returns: pointer to new position in buffer
10711   side-effects: builds ops for the constant in pl_yylval.op
10712
10713   Read a number in any of the formats that Perl accepts:
10714
10715   \d(_?\d)*(\.(\d(_?\d)*)?)?[Ee][\+\-]?(\d(_?\d)*)      12 12.34 12.
10716   \.\d(_?\d)*[Ee][\+\-]?(\d(_?\d)*)                     .34
10717   0b[01](_?[01])*                                       binary integers
10718   0[0-7](_?[0-7])*                                      octal integers
10719   0x[0-9A-Fa-f](_?[0-9A-Fa-f])*                         hexadecimal integers
10720   0x[0-9A-Fa-f](_?[0-9A-Fa-f])*(?:\.\d*)?p[+-]?[0-9]+   hexadecimal floats
10721
10722   Like most scan_ routines, it uses the PL_tokenbuf buffer to hold the
10723   thing it reads.
10724
10725   If it reads a number without a decimal point or an exponent, it will
10726   try converting the number to an integer and see if it can do so
10727   without loss of precision.
10728 */
10729
10730 char *
10731 Perl_scan_num(pTHX_ const char *start, YYSTYPE* lvalp)
10732 {
10733     const char *s = start;      /* current position in buffer */
10734     char *d;                    /* destination in temp buffer */
10735     char *e;                    /* end of temp buffer */
10736     NV nv;                              /* number read, as a double */
10737     SV *sv = NULL;                      /* place to put the converted number */
10738     bool floatit;                       /* boolean: int or float? */
10739     const char *lastub = NULL;          /* position of last underbar */
10740     static const char* const number_too_long = "Number too long";
10741     bool warned_about_underscore = 0;
10742 #define WARN_ABOUT_UNDERSCORE() \
10743         do { \
10744             if (!warned_about_underscore) { \
10745                 warned_about_underscore = 1; \
10746                 Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX), \
10747                                "Misplaced _ in number"); \
10748             } \
10749         } while(0)
10750     /* Hexadecimal floating point.
10751      *
10752      * In many places (where we have quads and NV is IEEE 754 double)
10753      * we can fit the mantissa bits of a NV into an unsigned quad.
10754      * (Note that UVs might not be quads even when we have quads.)
10755      * This will not work everywhere, though (either no quads, or
10756      * using long doubles), in which case we have to resort to NV,
10757      * which will probably mean horrible loss of precision due to
10758      * multiple fp operations. */
10759     bool hexfp = FALSE;
10760     int total_bits = 0;
10761     int significant_bits = 0;
10762 #if NVSIZE == 8 && defined(HAS_QUAD) && defined(Uquad_t)
10763 #  define HEXFP_UQUAD
10764     Uquad_t hexfp_uquad = 0;
10765     int hexfp_frac_bits = 0;
10766 #else
10767 #  define HEXFP_NV
10768     NV hexfp_nv = 0.0;
10769 #endif
10770     NV hexfp_mult = 1.0;
10771     UV high_non_zero = 0; /* highest digit */
10772     int non_zero_integer_digits = 0;
10773
10774     PERL_ARGS_ASSERT_SCAN_NUM;
10775
10776     /* We use the first character to decide what type of number this is */
10777
10778     switch (*s) {
10779     default:
10780         Perl_croak(aTHX_ "panic: scan_num, *s=%d", *s);
10781
10782     /* if it starts with a 0, it could be an octal number, a decimal in
10783        0.13 disguise, or a hexadecimal number, or a binary number. */
10784     case '0':
10785         {
10786           /* variables:
10787              u          holds the "number so far"
10788              shift      the power of 2 of the base
10789                         (hex == 4, octal == 3, binary == 1)
10790              overflowed was the number more than we can hold?
10791
10792              Shift is used when we add a digit.  It also serves as an "are
10793              we in octal/hex/binary?" indicator to disallow hex characters
10794              when in octal mode.
10795            */
10796             NV n = 0.0;
10797             UV u = 0;
10798             I32 shift;
10799             bool overflowed = FALSE;
10800             bool just_zero  = TRUE;     /* just plain 0 or binary number? */
10801             static const NV nvshift[5] = { 1.0, 2.0, 4.0, 8.0, 16.0 };
10802             static const char* const bases[5] =
10803               { "", "binary", "", "octal", "hexadecimal" };
10804             static const char* const Bases[5] =
10805               { "", "Binary", "", "Octal", "Hexadecimal" };
10806             static const char* const maxima[5] =
10807               { "",
10808                 "0b11111111111111111111111111111111",
10809                 "",
10810                 "037777777777",
10811                 "0xffffffff" };
10812             const char *base, *Base, *max;
10813
10814             /* check for hex */
10815             if (isALPHA_FOLD_EQ(s[1], 'x')) {
10816                 shift = 4;
10817                 s += 2;
10818                 just_zero = FALSE;
10819             } else if (isALPHA_FOLD_EQ(s[1], 'b')) {
10820                 shift = 1;
10821                 s += 2;
10822                 just_zero = FALSE;
10823             }
10824             /* check for a decimal in disguise */
10825             else if (s[1] == '.' || isALPHA_FOLD_EQ(s[1], 'e'))
10826                 goto decimal;
10827             /* so it must be octal */
10828             else {
10829                 shift = 3;
10830                 s++;
10831             }
10832
10833             if (*s == '_') {
10834                 WARN_ABOUT_UNDERSCORE();
10835                lastub = s++;
10836             }
10837
10838             base = bases[shift];
10839             Base = Bases[shift];
10840             max  = maxima[shift];
10841
10842             /* read the rest of the number */
10843             for (;;) {
10844                 /* x is used in the overflow test,
10845                    b is the digit we're adding on. */
10846                 UV x, b;
10847
10848                 switch (*s) {
10849
10850                 /* if we don't mention it, we're done */
10851                 default:
10852                     goto out;
10853
10854                 /* _ are ignored -- but warned about if consecutive */
10855                 case '_':
10856                     if (lastub && s == lastub + 1)
10857                         WARN_ABOUT_UNDERSCORE();
10858                     lastub = s++;
10859                     break;
10860
10861                 /* 8 and 9 are not octal */
10862                 case '8': case '9':
10863                     if (shift == 3)
10864                         yyerror(Perl_form(aTHX_ "Illegal octal digit '%c'", *s));
10865                     /* FALLTHROUGH */
10866
10867                 /* octal digits */
10868                 case '2': case '3': case '4':
10869                 case '5': case '6': case '7':
10870                     if (shift == 1)
10871                         yyerror(Perl_form(aTHX_ "Illegal binary digit '%c'", *s));
10872                     /* FALLTHROUGH */
10873
10874                 case '0': case '1':
10875                     b = *s++ & 15;              /* ASCII digit -> value of digit */
10876                     goto digit;
10877
10878                 /* hex digits */
10879                 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
10880                 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
10881                     /* make sure they said 0x */
10882                     if (shift != 4)
10883                         goto out;
10884                     b = (*s++ & 7) + 9;
10885
10886                     /* Prepare to put the digit we have onto the end
10887                        of the number so far.  We check for overflows.
10888                     */
10889
10890                   digit:
10891                     just_zero = FALSE;
10892                     if (!overflowed) {
10893                         x = u << shift; /* make room for the digit */
10894
10895                         total_bits += shift;
10896
10897                         if ((x >> shift) != u
10898                             && !(PL_hints & HINT_NEW_BINARY)) {
10899                             overflowed = TRUE;
10900                             n = (NV) u;
10901                             Perl_ck_warner_d(aTHX_ packWARN(WARN_OVERFLOW),
10902                                              "Integer overflow in %s number",
10903                                              base);
10904                         } else
10905                             u = x | b;          /* add the digit to the end */
10906                     }
10907                     if (overflowed) {
10908                         n *= nvshift[shift];
10909                         /* If an NV has not enough bits in its
10910                          * mantissa to represent an UV this summing of
10911                          * small low-order numbers is a waste of time
10912                          * (because the NV cannot preserve the
10913                          * low-order bits anyway): we could just
10914                          * remember when did we overflow and in the
10915                          * end just multiply n by the right
10916                          * amount. */
10917                         n += (NV) b;
10918                     }
10919
10920                     if (high_non_zero == 0 && b > 0)
10921                         high_non_zero = b;
10922
10923                     if (high_non_zero)
10924                         non_zero_integer_digits++;
10925
10926                     /* this could be hexfp, but peek ahead
10927                      * to avoid matching ".." */
10928                     if (UNLIKELY(HEXFP_PEEK(s))) {
10929                         goto out;
10930                     }
10931
10932                     break;
10933                 }
10934             }
10935
10936           /* if we get here, we had success: make a scalar value from
10937              the number.
10938           */
10939           out:
10940
10941             /* final misplaced underbar check */
10942             if (s[-1] == '_')
10943                 WARN_ABOUT_UNDERSCORE();
10944
10945             if (UNLIKELY(HEXFP_PEEK(s))) {
10946                 /* Do sloppy (on the underbars) but quick detection
10947                  * (and value construction) for hexfp, the decimal
10948                  * detection will shortly be more thorough with the
10949                  * underbar checks. */
10950                 const char* h = s;
10951                 significant_bits = non_zero_integer_digits * shift;
10952 #ifdef HEXFP_UQUAD
10953                 hexfp_uquad = u;
10954 #else /* HEXFP_NV */
10955                 hexfp_nv = u;
10956 #endif
10957                 /* Ignore the leading zero bits of
10958                  * the high (first) non-zero digit. */
10959                 if (high_non_zero) {
10960                     if (high_non_zero < 0x8)
10961                         significant_bits--;
10962                     if (high_non_zero < 0x4)
10963                         significant_bits--;
10964                     if (high_non_zero < 0x2)
10965                         significant_bits--;
10966                 }
10967
10968                 if (*h == '.') {
10969 #ifdef HEXFP_NV
10970                     NV nv_mult = 1.0;
10971 #endif
10972                     bool accumulate = TRUE;
10973                     for (h++; (isXDIGIT(*h) || *h == '_'); h++) {
10974                         if (isXDIGIT(*h)) {
10975                             U8 b = XDIGIT_VALUE(*h);
10976                             significant_bits += shift;
10977 #ifdef HEXFP_UQUAD
10978                             if (accumulate) {
10979                                 if (significant_bits < NV_MANT_DIG) {
10980                                     /* We are in the long "run" of xdigits,
10981                                      * accumulate the full four bits. */
10982                                     hexfp_uquad <<= shift;
10983                                     hexfp_uquad |= b;
10984                                     hexfp_frac_bits += shift;
10985                                 } else {
10986                                     /* We are at a hexdigit either at,
10987                                      * or straddling, the edge of mantissa.
10988                                      * We will try grabbing as many as
10989                                      * possible bits. */
10990                                     int tail =
10991                                       significant_bits - NV_MANT_DIG;
10992                                     if (tail <= 0)
10993                                        tail += shift;
10994                                     hexfp_uquad <<= tail;
10995                                     hexfp_uquad |= b >> (shift - tail);
10996                                     hexfp_frac_bits += tail;
10997
10998                                     /* Ignore the trailing zero bits
10999                                      * of the last non-zero xdigit.
11000                                      *
11001                                      * The assumption here is that if
11002                                      * one has input of e.g. the xdigit
11003                                      * eight (0x8), there is only one
11004                                      * bit being input, not the full
11005                                      * four bits.  Conversely, if one
11006                                      * specifies a zero xdigit, the
11007                                      * assumption is that one really
11008                                      * wants all those bits to be zero. */
11009                                     if (b) {
11010                                         if ((b & 0x1) == 0x0) {
11011                                             significant_bits--;
11012                                             if ((b & 0x2) == 0x0) {
11013                                                 significant_bits--;
11014                                                 if ((b & 0x4) == 0x0) {
11015                                                     significant_bits--;
11016                                                 }
11017                                             }
11018                                         }
11019                                     }
11020
11021                                     accumulate = FALSE;
11022                                 }
11023                             } else {
11024                                 /* Keep skipping the xdigits, and
11025                                  * accumulating the significant bits,
11026                                  * but do not shift the uquad
11027                                  * (which would catastrophically drop
11028                                  * high-order bits) or accumulate the
11029                                  * xdigits anymore. */
11030                             }
11031 #else /* HEXFP_NV */
11032                             if (accumulate) {
11033                                 nv_mult /= 16.0;
11034                                 if (nv_mult > 0.0)
11035                                     hexfp_nv += b * nv_mult;
11036                                 else
11037                                     accumulate = FALSE;
11038                             }
11039 #endif
11040                         }
11041                         if (significant_bits >= NV_MANT_DIG)
11042                             accumulate = FALSE;
11043                     }
11044                 }
11045
11046                 if ((total_bits > 0 || significant_bits > 0) &&
11047                     isALPHA_FOLD_EQ(*h, 'p')) {
11048                     bool negexp = FALSE;
11049                     h++;
11050                     if (*h == '+')
11051                         h++;
11052                     else if (*h == '-') {
11053                         negexp = TRUE;
11054                         h++;
11055                     }
11056                     if (isDIGIT(*h)) {
11057                         I32 hexfp_exp = 0;
11058                         while (isDIGIT(*h) || *h == '_') {
11059                             if (isDIGIT(*h)) {
11060                                 hexfp_exp *= 10;
11061                                 hexfp_exp += *h - '0';
11062 #ifdef NV_MIN_EXP
11063                                 if (negexp
11064                                     && -hexfp_exp < NV_MIN_EXP - 1) {
11065                                     /* NOTE: this means that the exponent
11066                                      * underflow warning happens for
11067                                      * the IEEE 754 subnormals (denormals),
11068                                      * because DBL_MIN_EXP etc are the lowest
11069                                      * possible binary (or, rather, DBL_RADIX-base)
11070                                      * exponent for normals, not subnormals.
11071                                      *
11072                                      * This may or may not be a good thing. */
11073                                     Perl_ck_warner(aTHX_ packWARN(WARN_OVERFLOW),
11074                                                    "Hexadecimal float: exponent underflow");
11075                                     break;
11076                                 }
11077 #endif
11078 #ifdef NV_MAX_EXP
11079                                 if (!negexp
11080                                     && hexfp_exp > NV_MAX_EXP - 1) {
11081                                     Perl_ck_warner(aTHX_ packWARN(WARN_OVERFLOW),
11082                                                    "Hexadecimal float: exponent overflow");
11083                                     break;
11084                                 }
11085 #endif
11086                             }
11087                             h++;
11088                         }
11089                         if (negexp)
11090                             hexfp_exp = -hexfp_exp;
11091 #ifdef HEXFP_UQUAD
11092                         hexfp_exp -= hexfp_frac_bits;
11093 #endif
11094                         hexfp_mult = Perl_pow(2.0, hexfp_exp);
11095                         hexfp = TRUE;
11096                         goto decimal;
11097                     }
11098                 }
11099             }
11100
11101             if (overflowed) {
11102                 if (n > 4294967295.0)
11103                     Perl_ck_warner(aTHX_ packWARN(WARN_PORTABLE),
11104                                    "%s number > %s non-portable",
11105                                    Base, max);
11106                 sv = newSVnv(n);
11107             }
11108             else {
11109 #if UVSIZE > 4
11110                 if (u > 0xffffffff)
11111                     Perl_ck_warner(aTHX_ packWARN(WARN_PORTABLE),
11112                                    "%s number > %s non-portable",
11113                                    Base, max);
11114 #endif
11115                 sv = newSVuv(u);
11116             }
11117             if (just_zero && (PL_hints & HINT_NEW_INTEGER))
11118                 sv = new_constant(start, s - start, "integer",
11119                                   sv, NULL, NULL, 0);
11120             else if (PL_hints & HINT_NEW_BINARY)
11121                 sv = new_constant(start, s - start, "binary", sv, NULL, NULL, 0);
11122         }
11123         break;
11124
11125     /*
11126       handle decimal numbers.
11127       we're also sent here when we read a 0 as the first digit
11128     */
11129     case '1': case '2': case '3': case '4': case '5':
11130     case '6': case '7': case '8': case '9': case '.':
11131       decimal:
11132         d = PL_tokenbuf;
11133         e = PL_tokenbuf + sizeof PL_tokenbuf - 6; /* room for various punctuation */
11134         floatit = FALSE;
11135         if (hexfp) {
11136             floatit = TRUE;
11137             *d++ = '0';
11138             *d++ = 'x';
11139             s = start + 2;
11140         }
11141
11142         /* read next group of digits and _ and copy into d */
11143         while (isDIGIT(*s)
11144                || *s == '_'
11145                || UNLIKELY(hexfp && isXDIGIT(*s)))
11146         {
11147             /* skip underscores, checking for misplaced ones
11148                if -w is on
11149             */
11150             if (*s == '_') {
11151                 if (lastub && s == lastub + 1)
11152                     WARN_ABOUT_UNDERSCORE();
11153                 lastub = s++;
11154             }
11155             else {
11156                 /* check for end of fixed-length buffer */
11157                 if (d >= e)
11158                     Perl_croak(aTHX_ "%s", number_too_long);
11159                 /* if we're ok, copy the character */
11160                 *d++ = *s++;
11161             }
11162         }
11163
11164         /* final misplaced underbar check */
11165         if (lastub && s == lastub + 1)
11166             WARN_ABOUT_UNDERSCORE();
11167
11168         /* read a decimal portion if there is one.  avoid
11169            3..5 being interpreted as the number 3. followed
11170            by .5
11171         */
11172         if (*s == '.' && s[1] != '.') {
11173             floatit = TRUE;
11174             *d++ = *s++;
11175
11176             if (*s == '_') {
11177                 WARN_ABOUT_UNDERSCORE();
11178                 lastub = s;
11179             }
11180
11181             /* copy, ignoring underbars, until we run out of digits.
11182             */
11183             for (; isDIGIT(*s)
11184                    || *s == '_'
11185                    || UNLIKELY(hexfp && isXDIGIT(*s));
11186                  s++)
11187             {
11188                 /* fixed length buffer check */
11189                 if (d >= e)
11190                     Perl_croak(aTHX_ "%s", number_too_long);
11191                 if (*s == '_') {
11192                    if (lastub && s == lastub + 1)
11193                         WARN_ABOUT_UNDERSCORE();
11194                    lastub = s;
11195                 }
11196                 else
11197                     *d++ = *s;
11198             }
11199             /* fractional part ending in underbar? */
11200             if (s[-1] == '_')
11201                 WARN_ABOUT_UNDERSCORE();
11202             if (*s == '.' && isDIGIT(s[1])) {
11203                 /* oops, it's really a v-string, but without the "v" */
11204                 s = start;
11205                 goto vstring;
11206             }
11207         }
11208
11209         /* read exponent part, if present */
11210         if ((isALPHA_FOLD_EQ(*s, 'e')
11211               || UNLIKELY(hexfp && isALPHA_FOLD_EQ(*s, 'p')))
11212             && strchr("+-0123456789_", s[1]))
11213         {
11214             floatit = TRUE;
11215
11216             /* regardless of whether user said 3E5 or 3e5, use lower 'e',
11217                ditto for p (hexfloats) */
11218             if ((isALPHA_FOLD_EQ(*s, 'e'))) {
11219                 /* At least some Mach atof()s don't grok 'E' */
11220                 *d++ = 'e';
11221             }
11222             else if (UNLIKELY(hexfp && (isALPHA_FOLD_EQ(*s, 'p')))) {
11223                 *d++ = 'p';
11224             }
11225
11226             s++;
11227
11228
11229             /* stray preinitial _ */
11230             if (*s == '_') {
11231                 WARN_ABOUT_UNDERSCORE();
11232                 lastub = s++;
11233             }
11234
11235             /* allow positive or negative exponent */
11236             if (*s == '+' || *s == '-')
11237                 *d++ = *s++;
11238
11239             /* stray initial _ */
11240             if (*s == '_') {
11241                 WARN_ABOUT_UNDERSCORE();
11242                 lastub = s++;
11243             }
11244
11245             /* read digits of exponent */
11246             while (isDIGIT(*s) || *s == '_') {
11247                 if (isDIGIT(*s)) {
11248                     if (d >= e)
11249                         Perl_croak(aTHX_ "%s", number_too_long);
11250                     *d++ = *s++;
11251                 }
11252                 else {
11253                    if (((lastub && s == lastub + 1)
11254                         || (!isDIGIT(s[1]) && s[1] != '_')))
11255                         WARN_ABOUT_UNDERSCORE();
11256                    lastub = s++;
11257                 }
11258             }
11259         }
11260
11261
11262         /*
11263            We try to do an integer conversion first if no characters
11264            indicating "float" have been found.
11265          */
11266
11267         if (!floatit) {
11268             UV uv;
11269             const int flags = grok_number (PL_tokenbuf, d - PL_tokenbuf, &uv);
11270
11271             if (flags == IS_NUMBER_IN_UV) {
11272               if (uv <= IV_MAX)
11273                 sv = newSViv(uv); /* Prefer IVs over UVs. */
11274               else
11275                 sv = newSVuv(uv);
11276             } else if (flags == (IS_NUMBER_IN_UV | IS_NUMBER_NEG)) {
11277               if (uv <= (UV) IV_MIN)
11278                 sv = newSViv(-(IV)uv);
11279               else
11280                 floatit = TRUE;
11281             } else
11282               floatit = TRUE;
11283         }
11284         if (floatit) {
11285             STORE_LC_NUMERIC_UNDERLYING_SET_STANDARD();
11286             /* terminate the string */
11287             *d = '\0';
11288             if (UNLIKELY(hexfp)) {
11289 #  ifdef NV_MANT_DIG
11290                 if (significant_bits > NV_MANT_DIG)
11291                     Perl_ck_warner(aTHX_ packWARN(WARN_OVERFLOW),
11292                                    "Hexadecimal float: mantissa overflow");
11293 #  endif
11294 #ifdef HEXFP_UQUAD
11295                 nv = hexfp_uquad * hexfp_mult;
11296 #else /* HEXFP_NV */
11297                 nv = hexfp_nv * hexfp_mult;
11298 #endif
11299             } else {
11300                 nv = Atof(PL_tokenbuf);
11301             }
11302             RESTORE_LC_NUMERIC_UNDERLYING();
11303             sv = newSVnv(nv);
11304         }
11305
11306         if ( floatit
11307              ? (PL_hints & HINT_NEW_FLOAT) : (PL_hints & HINT_NEW_INTEGER) ) {
11308             const char *const key = floatit ? "float" : "integer";
11309             const STRLEN keylen = floatit ? 5 : 7;
11310             sv = S_new_constant(aTHX_ PL_tokenbuf, d - PL_tokenbuf,
11311                                 key, keylen, sv, NULL, NULL, 0);
11312         }
11313         break;
11314
11315     /* if it starts with a v, it could be a v-string */
11316     case 'v':
11317     vstring:
11318                 sv = newSV(5); /* preallocate storage space */
11319                 ENTER_with_name("scan_vstring");
11320                 SAVEFREESV(sv);
11321                 s = scan_vstring(s, PL_bufend, sv);
11322                 SvREFCNT_inc_simple_void_NN(sv);
11323                 LEAVE_with_name("scan_vstring");
11324         break;
11325     }
11326
11327     /* make the op for the constant and return */
11328
11329     if (sv)
11330         lvalp->opval = newSVOP(OP_CONST, 0, sv);
11331     else
11332         lvalp->opval = NULL;
11333
11334     return (char *)s;
11335 }
11336
11337 STATIC char *
11338 S_scan_formline(pTHX_ char *s)
11339 {
11340     SV * const stuff = newSVpvs("");
11341     bool needargs = FALSE;
11342     bool eofmt = FALSE;
11343
11344     PERL_ARGS_ASSERT_SCAN_FORMLINE;
11345
11346     while (!needargs) {
11347         char *eol;
11348         if (*s == '.') {
11349             char *t = s+1;
11350 #ifdef PERL_STRICT_CR
11351             while (SPACE_OR_TAB(*t))
11352                 t++;
11353 #else
11354             while (SPACE_OR_TAB(*t) || *t == '\r')
11355                 t++;
11356 #endif
11357             if (*t == '\n' || t == PL_bufend) {
11358                 eofmt = TRUE;
11359                 break;
11360             }
11361         }
11362         eol = (char *) memchr(s,'\n',PL_bufend-s);
11363         if (!eol++)
11364                 eol = PL_bufend;
11365         if (*s != '#') {
11366             char *t;
11367             for (t = s; t < eol; t++) {
11368                 if (*t == '~' && t[1] == '~' && SvCUR(stuff)) {
11369                     needargs = FALSE;
11370                     goto enough;        /* ~~ must be first line in formline */
11371                 }
11372                 if (*t == '@' || *t == '^')
11373                     needargs = TRUE;
11374             }
11375             if (eol > s) {
11376                 sv_catpvn(stuff, s, eol-s);
11377 #ifndef PERL_STRICT_CR
11378                 if (eol-s > 1 && eol[-2] == '\r' && eol[-1] == '\n') {
11379                     char *end = SvPVX(stuff) + SvCUR(stuff);
11380                     end[-2] = '\n';
11381                     end[-1] = '\0';
11382                     SvCUR_set(stuff, SvCUR(stuff) - 1);
11383                 }
11384 #endif
11385             }
11386             else
11387               break;
11388         }
11389         s = (char*)eol;
11390         if ((PL_rsfp || PL_parser->filtered)
11391          && PL_parser->form_lex_state == LEX_NORMAL) {
11392             bool got_some;
11393             PL_bufptr = PL_bufend;
11394             COPLINE_INC_WITH_HERELINES;
11395             got_some = lex_next_chunk(0);
11396             CopLINE_dec(PL_curcop);
11397             s = PL_bufptr;
11398             if (!got_some)
11399                 break;
11400         }
11401         incline(s);
11402     }
11403   enough:
11404     if (!SvCUR(stuff) || needargs)
11405         PL_lex_state = PL_parser->form_lex_state;
11406     if (SvCUR(stuff)) {
11407         PL_expect = XSTATE;
11408         if (needargs) {
11409             const char *s2 = s;
11410             while (isSPACE(*s2) && *s2 != '\n')
11411                 s2++;
11412             if (*s2 == '{') {
11413                 PL_expect = XTERMBLOCK;
11414                 NEXTVAL_NEXTTOKE.ival = 0;
11415                 force_next(DO);
11416             }
11417             NEXTVAL_NEXTTOKE.ival = 0;
11418             force_next(FORMLBRACK);
11419         }
11420         if (!IN_BYTES) {
11421             if (UTF && is_utf8_string((U8*)SvPVX_const(stuff), SvCUR(stuff)))
11422                 SvUTF8_on(stuff);
11423         }
11424         NEXTVAL_NEXTTOKE.opval = newSVOP(OP_CONST, 0, stuff);
11425         force_next(THING);
11426     }
11427     else {
11428         SvREFCNT_dec(stuff);
11429         if (eofmt)
11430             PL_lex_formbrack = 0;
11431     }
11432     return s;
11433 }
11434
11435 I32
11436 Perl_start_subparse(pTHX_ I32 is_format, U32 flags)
11437 {
11438     const I32 oldsavestack_ix = PL_savestack_ix;
11439     CV* const outsidecv = PL_compcv;
11440
11441     SAVEI32(PL_subline);
11442     save_item(PL_subname);
11443     SAVESPTR(PL_compcv);
11444
11445     PL_compcv = MUTABLE_CV(newSV_type(is_format ? SVt_PVFM : SVt_PVCV));
11446     CvFLAGS(PL_compcv) |= flags;
11447
11448     PL_subline = CopLINE(PL_curcop);
11449     CvPADLIST(PL_compcv) = pad_new(padnew_SAVE|padnew_SAVESUB);
11450     CvOUTSIDE(PL_compcv) = MUTABLE_CV(SvREFCNT_inc_simple(outsidecv));
11451     CvOUTSIDE_SEQ(PL_compcv) = PL_cop_seqmax;
11452     if (outsidecv && CvPADLIST(outsidecv))
11453         CvPADLIST(PL_compcv)->xpadl_outid = CvPADLIST(outsidecv)->xpadl_id;
11454
11455     return oldsavestack_ix;
11456 }
11457
11458 static int
11459 S_yywarn(pTHX_ const char *const s, U32 flags)
11460 {
11461     PERL_ARGS_ASSERT_YYWARN;
11462
11463     PL_in_eval |= EVAL_WARNONLY;
11464     yyerror_pv(s, flags);
11465     return 0;
11466 }
11467
11468 void
11469 Perl_abort_execution(pTHX_ const char * const msg, const char * const name)
11470 {
11471     PERL_ARGS_ASSERT_ABORT_EXECUTION;
11472
11473     if (PL_minus_c)
11474         Perl_croak(aTHX_ "%s%s had compilation errors.\n", msg, name);
11475     else {
11476         Perl_croak(aTHX_
11477                 "%sExecution of %s aborted due to compilation errors.\n", msg, name);
11478     }
11479     NOT_REACHED; /* NOTREACHED */
11480 }
11481
11482 void
11483 Perl_yyquit(pTHX)
11484 {
11485     /* Called, after at least one error has been found, to abort the parse now,
11486      * instead of trying to forge ahead */
11487
11488     yyerror_pvn(NULL, 0, 0);
11489 }
11490
11491 int
11492 Perl_yyerror(pTHX_ const char *const s)
11493 {
11494     PERL_ARGS_ASSERT_YYERROR;
11495     return yyerror_pvn(s, strlen(s), 0);
11496 }
11497
11498 int
11499 Perl_yyerror_pv(pTHX_ const char *const s, U32 flags)
11500 {
11501     PERL_ARGS_ASSERT_YYERROR_PV;
11502     return yyerror_pvn(s, strlen(s), flags);
11503 }
11504
11505 int
11506 Perl_yyerror_pvn(pTHX_ const char *const s, STRLEN len, U32 flags)
11507 {
11508     const char *context = NULL;
11509     int contlen = -1;
11510     SV *msg;
11511     SV * const where_sv = newSVpvs_flags("", SVs_TEMP);
11512     int yychar  = PL_parser->yychar;
11513
11514     /* Output error message 's' with length 'len'.  'flags' are SV flags that
11515      * apply.  If the number of errors found is large enough, it abandons
11516      * parsing.  If 's' is NULL, there is no message, and it abandons
11517      * processing unconditionally */
11518
11519     if (s != NULL) {
11520         if (!yychar || (yychar == ';' && !PL_rsfp))
11521             sv_catpvs(where_sv, "at EOF");
11522         else if (   PL_oldoldbufptr
11523                  && PL_bufptr > PL_oldoldbufptr
11524                  && PL_bufptr - PL_oldoldbufptr < 200
11525                  && PL_oldoldbufptr != PL_oldbufptr
11526                  && PL_oldbufptr != PL_bufptr)
11527         {
11528             /*
11529                     Only for NetWare:
11530                     The code below is removed for NetWare because it
11531                     abends/crashes on NetWare when the script has error such as
11532                     not having the closing quotes like:
11533                         if ($var eq "value)
11534                     Checking of white spaces is anyway done in NetWare code.
11535             */
11536 #ifndef NETWARE
11537             while (isSPACE(*PL_oldoldbufptr))
11538                 PL_oldoldbufptr++;
11539 #endif
11540             context = PL_oldoldbufptr;
11541             contlen = PL_bufptr - PL_oldoldbufptr;
11542         }
11543         else if (  PL_oldbufptr
11544                 && PL_bufptr > PL_oldbufptr
11545                 && PL_bufptr - PL_oldbufptr < 200
11546                 && PL_oldbufptr != PL_bufptr) {
11547             /*
11548                     Only for NetWare:
11549                     The code below is removed for NetWare because it
11550                     abends/crashes on NetWare when the script has error such as
11551                     not having the closing quotes like:
11552                         if ($var eq "value)
11553                     Checking of white spaces is anyway done in NetWare code.
11554             */
11555 #ifndef NETWARE
11556             while (isSPACE(*PL_oldbufptr))
11557                 PL_oldbufptr++;
11558 #endif
11559             context = PL_oldbufptr;
11560             contlen = PL_bufptr - PL_oldbufptr;
11561         }
11562         else if (yychar > 255)
11563             sv_catpvs(where_sv, "next token ???");
11564         else if (yychar == YYEMPTY) {
11565             if (PL_lex_state == LEX_NORMAL)
11566                 sv_catpvs(where_sv, "at end of line");
11567             else if (PL_lex_inpat)
11568                 sv_catpvs(where_sv, "within pattern");
11569             else
11570                 sv_catpvs(where_sv, "within string");
11571         }
11572         else {
11573             sv_catpvs(where_sv, "next char ");
11574             if (yychar < 32)
11575                 Perl_sv_catpvf(aTHX_ where_sv, "^%c", toCTRL(yychar));
11576             else if (isPRINT_LC(yychar)) {
11577                 const char string = yychar;
11578                 sv_catpvn(where_sv, &string, 1);
11579             }
11580             else
11581                 Perl_sv_catpvf(aTHX_ where_sv, "\\%03o", yychar & 255);
11582         }
11583         msg = newSVpvn_flags(s, len, (flags & SVf_UTF8) | SVs_TEMP);
11584         Perl_sv_catpvf(aTHX_ msg, " at %s line %" IVdf ", ",
11585             OutCopFILE(PL_curcop),
11586             (IV)(PL_parser->preambling == NOLINE
11587                    ? CopLINE(PL_curcop)
11588                    : PL_parser->preambling));
11589         if (context)
11590             Perl_sv_catpvf(aTHX_ msg, "near \"%" UTF8f "\"\n",
11591                                  UTF8fARG(UTF, contlen, context));
11592         else
11593             Perl_sv_catpvf(aTHX_ msg, "%" SVf "\n", SVfARG(where_sv));
11594         if (   PL_multi_start < PL_multi_end
11595             && (U32)(CopLINE(PL_curcop) - PL_multi_end) <= 1)
11596         {
11597             Perl_sv_catpvf(aTHX_ msg,
11598             "  (Might be a runaway multi-line %c%c string starting on"
11599             " line %" IVdf ")\n",
11600                     (int)PL_multi_open,(int)PL_multi_close,(IV)PL_multi_start);
11601             PL_multi_end = 0;
11602         }
11603         if (PL_in_eval & EVAL_WARNONLY) {
11604             PL_in_eval &= ~EVAL_WARNONLY;
11605             Perl_ck_warner_d(aTHX_ packWARN(WARN_SYNTAX), "%" SVf, SVfARG(msg));
11606         }
11607         else {
11608             qerror(msg);
11609         }
11610     }
11611     if (s == NULL || PL_error_count >= 10) {
11612         const char * msg = "";
11613         const char * const name = OutCopFILE(PL_curcop);
11614
11615         if (PL_in_eval) {
11616             SV * errsv = ERRSV;
11617             if (SvCUR(errsv)) {
11618                 msg = Perl_form(aTHX_ "%" SVf, SVfARG(errsv));
11619             }
11620         }
11621
11622         if (s == NULL) {
11623             abort_execution(msg, name);
11624         }
11625         else {
11626             Perl_croak(aTHX_ "%s%s has too many errors.\n", msg, name);
11627         }
11628     }
11629     PL_in_my = 0;
11630     PL_in_my_stash = NULL;
11631     return 0;
11632 }
11633
11634 STATIC char*
11635 S_swallow_bom(pTHX_ U8 *s)
11636 {
11637     const STRLEN slen = SvCUR(PL_linestr);
11638
11639     PERL_ARGS_ASSERT_SWALLOW_BOM;
11640
11641     switch (s[0]) {
11642     case 0xFF:
11643         if (s[1] == 0xFE) {
11644             /* UTF-16 little-endian? (or UTF-32LE?) */
11645             if (s[2] == 0 && s[3] == 0)  /* UTF-32 little-endian */
11646                 /* diag_listed_as: Unsupported script encoding %s */
11647                 Perl_croak(aTHX_ "Unsupported script encoding UTF-32LE");
11648 #ifndef PERL_NO_UTF16_FILTER
11649             if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-16LE script encoding (BOM)\n");
11650             s += 2;
11651             if (PL_bufend > (char*)s) {
11652                 s = add_utf16_textfilter(s, TRUE);
11653             }
11654 #else
11655             /* diag_listed_as: Unsupported script encoding %s */
11656             Perl_croak(aTHX_ "Unsupported script encoding UTF-16LE");
11657 #endif
11658         }
11659         break;
11660     case 0xFE:
11661         if (s[1] == 0xFF) {   /* UTF-16 big-endian? */
11662 #ifndef PERL_NO_UTF16_FILTER
11663             if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-16BE script encoding (BOM)\n");
11664             s += 2;
11665             if (PL_bufend > (char *)s) {
11666                 s = add_utf16_textfilter(s, FALSE);
11667             }
11668 #else
11669             /* diag_listed_as: Unsupported script encoding %s */
11670             Perl_croak(aTHX_ "Unsupported script encoding UTF-16BE");
11671 #endif
11672         }
11673         break;
11674     case BOM_UTF8_FIRST_BYTE: {
11675         const STRLEN len = sizeof(BOM_UTF8_TAIL) - 1; /* Exclude trailing NUL */
11676         if (slen > len && memEQ(s+1, BOM_UTF8_TAIL, len)) {
11677             if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-8 script encoding (BOM)\n");
11678             s += len + 1;                      /* UTF-8 */
11679         }
11680         break;
11681     }
11682     case 0:
11683         if (slen > 3) {
11684              if (s[1] == 0) {
11685                   if (s[2] == 0xFE && s[3] == 0xFF) {
11686                        /* UTF-32 big-endian */
11687                        /* diag_listed_as: Unsupported script encoding %s */
11688                        Perl_croak(aTHX_ "Unsupported script encoding UTF-32BE");
11689                   }
11690              }
11691              else if (s[2] == 0 && s[3] != 0) {
11692                   /* Leading bytes
11693                    * 00 xx 00 xx
11694                    * are a good indicator of UTF-16BE. */
11695 #ifndef PERL_NO_UTF16_FILTER
11696                   if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-16BE script encoding (no BOM)\n");
11697                   s = add_utf16_textfilter(s, FALSE);
11698 #else
11699                   /* diag_listed_as: Unsupported script encoding %s */
11700                   Perl_croak(aTHX_ "Unsupported script encoding UTF-16BE");
11701 #endif
11702              }
11703         }
11704         break;
11705
11706     default:
11707          if (slen > 3 && s[1] == 0 && s[2] != 0 && s[3] == 0) {
11708                   /* Leading bytes
11709                    * xx 00 xx 00
11710                    * are a good indicator of UTF-16LE. */
11711 #ifndef PERL_NO_UTF16_FILTER
11712               if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-16LE script encoding (no BOM)\n");
11713               s = add_utf16_textfilter(s, TRUE);
11714 #else
11715               /* diag_listed_as: Unsupported script encoding %s */
11716               Perl_croak(aTHX_ "Unsupported script encoding UTF-16LE");
11717 #endif
11718          }
11719     }
11720     return (char*)s;
11721 }
11722
11723
11724 #ifndef PERL_NO_UTF16_FILTER
11725 static I32
11726 S_utf16_textfilter(pTHX_ int idx, SV *sv, int maxlen)
11727 {
11728     SV *const filter = FILTER_DATA(idx);
11729     /* We re-use this each time round, throwing the contents away before we
11730        return.  */
11731     SV *const utf16_buffer = MUTABLE_SV(IoTOP_GV(filter));
11732     SV *const utf8_buffer = filter;
11733     IV status = IoPAGE(filter);
11734     const bool reverse = cBOOL(IoLINES(filter));
11735     I32 retval;
11736
11737     PERL_ARGS_ASSERT_UTF16_TEXTFILTER;
11738
11739     /* As we're automatically added, at the lowest level, and hence only called
11740        from this file, we can be sure that we're not called in block mode. Hence
11741        don't bother writing code to deal with block mode.  */
11742     if (maxlen) {
11743         Perl_croak(aTHX_ "panic: utf16_textfilter called in block mode (for %d characters)", maxlen);
11744     }
11745     if (status < 0) {
11746         Perl_croak(aTHX_ "panic: utf16_textfilter called after error (status=%" IVdf ")", status);
11747     }
11748     DEBUG_P(PerlIO_printf(Perl_debug_log,
11749                           "utf16_textfilter(%p,%ce): idx=%d maxlen=%d status=%" IVdf " utf16=%" UVuf " utf8=%" UVuf "\n",
11750                           FPTR2DPTR(void *, S_utf16_textfilter),
11751                           reverse ? 'l' : 'b', idx, maxlen, status,
11752                           (UV)SvCUR(utf16_buffer), (UV)SvCUR(utf8_buffer)));
11753
11754     while (1) {
11755         STRLEN chars;
11756         STRLEN have;
11757         I32 newlen;
11758         U8 *end;
11759         /* First, look in our buffer of existing UTF-8 data:  */
11760         char *nl = (char *)memchr(SvPVX(utf8_buffer), '\n', SvCUR(utf8_buffer));
11761
11762         if (nl) {
11763             ++nl;
11764         } else if (status == 0) {
11765             /* EOF */
11766             IoPAGE(filter) = 0;
11767             nl = SvEND(utf8_buffer);
11768         }
11769         if (nl) {
11770             STRLEN got = nl - SvPVX(utf8_buffer);
11771             /* Did we have anything to append?  */
11772             retval = got != 0;
11773             sv_catpvn(sv, SvPVX(utf8_buffer), got);
11774             /* Everything else in this code works just fine if SVp_POK isn't
11775                set.  This, however, needs it, and we need it to work, else
11776                we loop infinitely because the buffer is never consumed.  */
11777             sv_chop(utf8_buffer, nl);
11778             break;
11779         }
11780
11781         /* OK, not a complete line there, so need to read some more UTF-16.
11782            Read an extra octect if the buffer currently has an odd number. */
11783         while (1) {
11784             if (status <= 0)
11785                 break;
11786             if (SvCUR(utf16_buffer) >= 2) {
11787                 /* Location of the high octet of the last complete code point.
11788                    Gosh, UTF-16 is a pain. All the benefits of variable length,
11789                    *coupled* with all the benefits of partial reads and
11790                    endianness.  */
11791                 const U8 *const last_hi = (U8*)SvPVX(utf16_buffer)
11792                     + ((SvCUR(utf16_buffer) & ~1) - (reverse ? 1 : 2));
11793
11794                 if (*last_hi < 0xd8 || *last_hi > 0xdb) {
11795                     break;
11796                 }
11797
11798                 /* We have the first half of a surrogate. Read more.  */
11799                 DEBUG_P(PerlIO_printf(Perl_debug_log, "utf16_textfilter partial surrogate detected at %p\n", last_hi));
11800             }
11801
11802             status = FILTER_READ(idx + 1, utf16_buffer,
11803                                  160 + (SvCUR(utf16_buffer) & 1));
11804             DEBUG_P(PerlIO_printf(Perl_debug_log, "utf16_textfilter status=%" IVdf " SvCUR(sv)=%" UVuf "\n", status, (UV)SvCUR(utf16_buffer)));
11805             DEBUG_P({ sv_dump(utf16_buffer); sv_dump(utf8_buffer);});
11806             if (status < 0) {
11807                 /* Error */
11808                 IoPAGE(filter) = status;
11809                 return status;
11810             }
11811         }
11812
11813         chars = SvCUR(utf16_buffer) >> 1;
11814         have = SvCUR(utf8_buffer);
11815         SvGROW(utf8_buffer, have + chars * 3 + 1);
11816
11817         if (reverse) {
11818             end = utf16_to_utf8_reversed((U8*)SvPVX(utf16_buffer),
11819                                          (U8*)SvPVX_const(utf8_buffer) + have,
11820                                          chars * 2, &newlen);
11821         } else {
11822             end = utf16_to_utf8((U8*)SvPVX(utf16_buffer),
11823                                 (U8*)SvPVX_const(utf8_buffer) + have,
11824                                 chars * 2, &newlen);
11825         }
11826         SvCUR_set(utf8_buffer, have + newlen);
11827         *end = '\0';
11828
11829         /* No need to keep this SV "well-formed" with a '\0' after the end, as
11830            it's private to us, and utf16_to_utf8{,reversed} take a
11831            (pointer,length) pair, rather than a NUL-terminated string.  */
11832         if(SvCUR(utf16_buffer) & 1) {
11833             *SvPVX(utf16_buffer) = SvEND(utf16_buffer)[-1];
11834             SvCUR_set(utf16_buffer, 1);
11835         } else {
11836             SvCUR_set(utf16_buffer, 0);
11837         }
11838     }
11839     DEBUG_P(PerlIO_printf(Perl_debug_log,
11840                           "utf16_textfilter: returns, status=%" IVdf " utf16=%" UVuf " utf8=%" UVuf "\n",
11841                           status,
11842                           (UV)SvCUR(utf16_buffer), (UV)SvCUR(utf8_buffer)));
11843     DEBUG_P({ sv_dump(utf8_buffer); sv_dump(sv);});
11844     return retval;
11845 }
11846
11847 static U8 *
11848 S_add_utf16_textfilter(pTHX_ U8 *const s, bool reversed)
11849 {
11850     SV *filter = filter_add(S_utf16_textfilter, NULL);
11851
11852     PERL_ARGS_ASSERT_ADD_UTF16_TEXTFILTER;
11853
11854     IoTOP_GV(filter) = MUTABLE_GV(newSVpvn((char *)s, PL_bufend - (char*)s));
11855     SvPVCLEAR(filter);
11856     IoLINES(filter) = reversed;
11857     IoPAGE(filter) = 1; /* Not EOF */
11858
11859     /* Sadly, we have to return a valid pointer, come what may, so we have to
11860        ignore any error return from this.  */
11861     SvCUR_set(PL_linestr, 0);
11862     if (FILTER_READ(0, PL_linestr, 0)) {
11863         SvUTF8_on(PL_linestr);
11864     } else {
11865         SvUTF8_on(PL_linestr);
11866     }
11867     PL_bufend = SvEND(PL_linestr);
11868     return (U8*)SvPVX(PL_linestr);
11869 }
11870 #endif
11871
11872 /*
11873 Returns a pointer to the next character after the parsed
11874 vstring, as well as updating the passed in sv.
11875
11876 Function must be called like
11877
11878         sv = sv_2mortal(newSV(5));
11879         s = scan_vstring(s,e,sv);
11880
11881 where s and e are the start and end of the string.
11882 The sv should already be large enough to store the vstring
11883 passed in, for performance reasons.
11884
11885 This function may croak if fatal warnings are enabled in the
11886 calling scope, hence the sv_2mortal in the example (to prevent
11887 a leak).  Make sure to do SvREFCNT_inc afterwards if you use
11888 sv_2mortal.
11889
11890 */
11891
11892 char *
11893 Perl_scan_vstring(pTHX_ const char *s, const char *const e, SV *sv)
11894 {
11895     const char *pos = s;
11896     const char *start = s;
11897
11898     PERL_ARGS_ASSERT_SCAN_VSTRING;
11899
11900     if (*pos == 'v') pos++;  /* get past 'v' */
11901     while (pos < e && (isDIGIT(*pos) || *pos == '_'))
11902         pos++;
11903     if ( *pos != '.') {
11904         /* this may not be a v-string if followed by => */
11905         const char *next = pos;
11906         while (next < e && isSPACE(*next))
11907             ++next;
11908         if ((e - next) >= 2 && *next == '=' && next[1] == '>' ) {
11909             /* return string not v-string */
11910             sv_setpvn(sv,(char *)s,pos-s);
11911             return (char *)pos;
11912         }
11913     }
11914
11915     if (!isALPHA(*pos)) {
11916         U8 tmpbuf[UTF8_MAXBYTES+1];
11917
11918         if (*s == 'v')
11919             s++;  /* get past 'v' */
11920
11921         SvPVCLEAR(sv);
11922
11923         for (;;) {
11924             /* this is atoi() that tolerates underscores */
11925             U8 *tmpend;
11926             UV rev = 0;
11927             const char *end = pos;
11928             UV mult = 1;
11929             while (--end >= s) {
11930                 if (*end != '_') {
11931                     const UV orev = rev;
11932                     rev += (*end - '0') * mult;
11933                     mult *= 10;
11934                     if (orev > rev)
11935                         /* diag_listed_as: Integer overflow in %s number */
11936                         Perl_ck_warner_d(aTHX_ packWARN(WARN_OVERFLOW),
11937                                          "Integer overflow in decimal number");
11938                 }
11939             }
11940
11941             /* Append native character for the rev point */
11942             tmpend = uvchr_to_utf8(tmpbuf, rev);
11943             sv_catpvn(sv, (const char*)tmpbuf, tmpend - tmpbuf);
11944             if (!UVCHR_IS_INVARIANT(rev))
11945                  SvUTF8_on(sv);
11946             if (pos + 1 < e && *pos == '.' && isDIGIT(pos[1]))
11947                  s = ++pos;
11948             else {
11949                  s = pos;
11950                  break;
11951             }
11952             while (pos < e && (isDIGIT(*pos) || *pos == '_'))
11953                  pos++;
11954         }
11955         SvPOK_on(sv);
11956         sv_magic(sv,NULL,PERL_MAGIC_vstring,(const char*)start, pos-start);
11957         SvRMAGICAL_on(sv);
11958     }
11959     return (char *)s;
11960 }
11961
11962 int
11963 Perl_keyword_plugin_standard(pTHX_
11964         char *keyword_ptr, STRLEN keyword_len, OP **op_ptr)
11965 {
11966     PERL_ARGS_ASSERT_KEYWORD_PLUGIN_STANDARD;
11967     PERL_UNUSED_CONTEXT;
11968     PERL_UNUSED_ARG(keyword_ptr);
11969     PERL_UNUSED_ARG(keyword_len);
11970     PERL_UNUSED_ARG(op_ptr);
11971     return KEYWORD_PLUGIN_DECLINE;
11972 }
11973
11974 #define parse_recdescent(g,p) S_parse_recdescent(aTHX_ g,p)
11975 static void
11976 S_parse_recdescent(pTHX_ int gramtype, I32 fakeeof)
11977 {
11978     SAVEI32(PL_lex_brackets);
11979     if (PL_lex_brackets > 100)
11980         Renew(PL_lex_brackstack, PL_lex_brackets + 10, char);
11981     PL_lex_brackstack[PL_lex_brackets++] = XFAKEEOF;
11982     SAVEI32(PL_lex_allbrackets);
11983     PL_lex_allbrackets = 0;
11984     SAVEI8(PL_lex_fakeeof);
11985     PL_lex_fakeeof = (U8)fakeeof;
11986     if(yyparse(gramtype) && !PL_parser->error_count)
11987         qerror(Perl_mess(aTHX_ "Parse error"));
11988 }
11989
11990 #define parse_recdescent_for_op(g,p) S_parse_recdescent_for_op(aTHX_ g,p)
11991 static OP *
11992 S_parse_recdescent_for_op(pTHX_ int gramtype, I32 fakeeof)
11993 {
11994     OP *o;
11995     ENTER;
11996     SAVEVPTR(PL_eval_root);
11997     PL_eval_root = NULL;
11998     parse_recdescent(gramtype, fakeeof);
11999     o = PL_eval_root;
12000     LEAVE;
12001     return o;
12002 }
12003
12004 #define parse_expr(p,f) S_parse_expr(aTHX_ p,f)
12005 static OP *
12006 S_parse_expr(pTHX_ I32 fakeeof, U32 flags)
12007 {
12008     OP *exprop;
12009     if (flags & ~PARSE_OPTIONAL)
12010         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_expr");
12011     exprop = parse_recdescent_for_op(GRAMEXPR, fakeeof);
12012     if (!exprop && !(flags & PARSE_OPTIONAL)) {
12013         if (!PL_parser->error_count)
12014             qerror(Perl_mess(aTHX_ "Parse error"));
12015         exprop = newOP(OP_NULL, 0);
12016     }
12017     return exprop;
12018 }
12019
12020 /*
12021 =for apidoc Amx|OP *|parse_arithexpr|U32 flags
12022
12023 Parse a Perl arithmetic expression.  This may contain operators of precedence
12024 down to the bit shift operators.  The expression must be followed (and thus
12025 terminated) either by a comparison or lower-precedence operator or by
12026 something that would normally terminate an expression such as semicolon.
12027 If C<flags> has the C<PARSE_OPTIONAL> bit set, then the expression is optional,
12028 otherwise it is mandatory.  It is up to the caller to ensure that the
12029 dynamic parser state (L</PL_parser> et al) is correctly set to reflect
12030 the source of the code to be parsed and the lexical context for the
12031 expression.
12032
12033 The op tree representing the expression is returned.  If an optional
12034 expression is absent, a null pointer is returned, otherwise the pointer
12035 will be non-null.
12036
12037 If an error occurs in parsing or compilation, in most cases a valid op
12038 tree is returned anyway.  The error is reflected in the parser state,
12039 normally resulting in a single exception at the top level of parsing
12040 which covers all the compilation errors that occurred.  Some compilation
12041 errors, however, will throw an exception immediately.
12042
12043 =cut
12044 */
12045
12046 OP *
12047 Perl_parse_arithexpr(pTHX_ U32 flags)
12048 {
12049     return parse_expr(LEX_FAKEEOF_COMPARE, flags);
12050 }
12051
12052 /*
12053 =for apidoc Amx|OP *|parse_termexpr|U32 flags
12054
12055 Parse a Perl term expression.  This may contain operators of precedence
12056 down to the assignment operators.  The expression must be followed (and thus
12057 terminated) either by a comma or lower-precedence operator or by
12058 something that would normally terminate an expression such as semicolon.
12059 If C<flags> has the C<PARSE_OPTIONAL> bit set, then the expression is optional,
12060 otherwise it is mandatory.  It is up to the caller to ensure that the
12061 dynamic parser state (L</PL_parser> et al) is correctly set to reflect
12062 the source of the code to be parsed and the lexical context for the
12063 expression.
12064
12065 The op tree representing the expression is returned.  If an optional
12066 expression is absent, a null pointer is returned, otherwise the pointer
12067 will be non-null.
12068
12069 If an error occurs in parsing or compilation, in most cases a valid op
12070 tree is returned anyway.  The error is reflected in the parser state,
12071 normally resulting in a single exception at the top level of parsing
12072 which covers all the compilation errors that occurred.  Some compilation
12073 errors, however, will throw an exception immediately.
12074
12075 =cut
12076 */
12077
12078 OP *
12079 Perl_parse_termexpr(pTHX_ U32 flags)
12080 {
12081     return parse_expr(LEX_FAKEEOF_COMMA, flags);
12082 }
12083
12084 /*
12085 =for apidoc Amx|OP *|parse_listexpr|U32 flags
12086
12087 Parse a Perl list expression.  This may contain operators of precedence
12088 down to the comma operator.  The expression must be followed (and thus
12089 terminated) either by a low-precedence logic operator such as C<or> or by
12090 something that would normally terminate an expression such as semicolon.
12091 If C<flags> has the C<PARSE_OPTIONAL> bit set, then the expression is optional,
12092 otherwise it is mandatory.  It is up to the caller to ensure that the
12093 dynamic parser state (L</PL_parser> et al) is correctly set to reflect
12094 the source of the code to be parsed and the lexical context for the
12095 expression.
12096
12097 The op tree representing the expression is returned.  If an optional
12098 expression is absent, a null pointer is returned, otherwise the pointer
12099 will be non-null.
12100
12101 If an error occurs in parsing or compilation, in most cases a valid op
12102 tree is returned anyway.  The error is reflected in the parser state,
12103 normally resulting in a single exception at the top level of parsing
12104 which covers all the compilation errors that occurred.  Some compilation
12105 errors, however, will throw an exception immediately.
12106
12107 =cut
12108 */
12109
12110 OP *
12111 Perl_parse_listexpr(pTHX_ U32 flags)
12112 {
12113     return parse_expr(LEX_FAKEEOF_LOWLOGIC, flags);
12114 }
12115
12116 /*
12117 =for apidoc Amx|OP *|parse_fullexpr|U32 flags
12118
12119 Parse a single complete Perl expression.  This allows the full
12120 expression grammar, including the lowest-precedence operators such
12121 as C<or>.  The expression must be followed (and thus terminated) by a
12122 token that an expression would normally be terminated by: end-of-file,
12123 closing bracketing punctuation, semicolon, or one of the keywords that
12124 signals a postfix expression-statement modifier.  If C<flags> has the
12125 C<PARSE_OPTIONAL> bit set, then the expression is optional, otherwise it is
12126 mandatory.  It is up to the caller to ensure that the dynamic parser
12127 state (L</PL_parser> et al) is correctly set to reflect the source of
12128 the code to be parsed and the lexical context for the expression.
12129
12130 The op tree representing the expression is returned.  If an optional
12131 expression is absent, a null pointer is returned, otherwise the pointer
12132 will be non-null.
12133
12134 If an error occurs in parsing or compilation, in most cases a valid op
12135 tree is returned anyway.  The error is reflected in the parser state,
12136 normally resulting in a single exception at the top level of parsing
12137 which covers all the compilation errors that occurred.  Some compilation
12138 errors, however, will throw an exception immediately.
12139
12140 =cut
12141 */
12142
12143 OP *
12144 Perl_parse_fullexpr(pTHX_ U32 flags)
12145 {
12146     return parse_expr(LEX_FAKEEOF_NONEXPR, flags);
12147 }
12148
12149 /*
12150 =for apidoc Amx|OP *|parse_block|U32 flags
12151
12152 Parse a single complete Perl code block.  This consists of an opening
12153 brace, a sequence of statements, and a closing brace.  The block
12154 constitutes a lexical scope, so C<my> variables and various compile-time
12155 effects can be contained within it.  It is up to the caller to ensure
12156 that the dynamic parser state (L</PL_parser> et al) is correctly set to
12157 reflect the source of the code to be parsed and the lexical context for
12158 the statement.
12159
12160 The op tree representing the code block is returned.  This is always a
12161 real op, never a null pointer.  It will normally be a C<lineseq> list,
12162 including C<nextstate> or equivalent ops.  No ops to construct any kind
12163 of runtime scope are included by virtue of it being a block.
12164
12165 If an error occurs in parsing or compilation, in most cases a valid op
12166 tree (most likely null) is returned anyway.  The error is reflected in
12167 the parser state, normally resulting in a single exception at the top
12168 level of parsing which covers all the compilation errors that occurred.
12169 Some compilation errors, however, will throw an exception immediately.
12170
12171 The C<flags> parameter is reserved for future use, and must always
12172 be zero.
12173
12174 =cut
12175 */
12176
12177 OP *
12178 Perl_parse_block(pTHX_ U32 flags)
12179 {
12180     if (flags)
12181         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_block");
12182     return parse_recdescent_for_op(GRAMBLOCK, LEX_FAKEEOF_NEVER);
12183 }
12184
12185 /*
12186 =for apidoc Amx|OP *|parse_barestmt|U32 flags
12187
12188 Parse a single unadorned Perl statement.  This may be a normal imperative
12189 statement or a declaration that has compile-time effect.  It does not
12190 include any label or other affixture.  It is up to the caller to ensure
12191 that the dynamic parser state (L</PL_parser> et al) is correctly set to
12192 reflect the source of the code to be parsed and the lexical context for
12193 the statement.
12194
12195 The op tree representing the statement is returned.  This may be a
12196 null pointer if the statement is null, for example if it was actually
12197 a subroutine definition (which has compile-time side effects).  If not
12198 null, it will be ops directly implementing the statement, suitable to
12199 pass to L</newSTATEOP>.  It will not normally include a C<nextstate> or
12200 equivalent op (except for those embedded in a scope contained entirely
12201 within the statement).
12202
12203 If an error occurs in parsing or compilation, in most cases a valid op
12204 tree (most likely null) is returned anyway.  The error is reflected in
12205 the parser state, normally resulting in a single exception at the top
12206 level of parsing which covers all the compilation errors that occurred.
12207 Some compilation errors, however, will throw an exception immediately.
12208
12209 The C<flags> parameter is reserved for future use, and must always
12210 be zero.
12211
12212 =cut
12213 */
12214
12215 OP *
12216 Perl_parse_barestmt(pTHX_ U32 flags)
12217 {
12218     if (flags)
12219         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_barestmt");
12220     return parse_recdescent_for_op(GRAMBARESTMT, LEX_FAKEEOF_NEVER);
12221 }
12222
12223 /*
12224 =for apidoc Amx|SV *|parse_label|U32 flags
12225
12226 Parse a single label, possibly optional, of the type that may prefix a
12227 Perl statement.  It is up to the caller to ensure that the dynamic parser
12228 state (L</PL_parser> et al) is correctly set to reflect the source of
12229 the code to be parsed.  If C<flags> has the C<PARSE_OPTIONAL> bit set, then the
12230 label is optional, otherwise it is mandatory.
12231
12232 The name of the label is returned in the form of a fresh scalar.  If an
12233 optional label is absent, a null pointer is returned.
12234
12235 If an error occurs in parsing, which can only occur if the label is
12236 mandatory, a valid label is returned anyway.  The error is reflected in
12237 the parser state, normally resulting in a single exception at the top
12238 level of parsing which covers all the compilation errors that occurred.
12239
12240 =cut
12241 */
12242
12243 SV *
12244 Perl_parse_label(pTHX_ U32 flags)
12245 {
12246     if (flags & ~PARSE_OPTIONAL)
12247         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_label");
12248     if (PL_nexttoke) {
12249         PL_parser->yychar = yylex();
12250         if (PL_parser->yychar == LABEL) {
12251             char * const lpv = pl_yylval.pval;
12252             STRLEN llen = strlen(lpv);
12253             PL_parser->yychar = YYEMPTY;
12254             return newSVpvn_flags(lpv, llen, lpv[llen+1] ? SVf_UTF8 : 0);
12255         } else {
12256             yyunlex();
12257             goto no_label;
12258         }
12259     } else {
12260         char *s, *t;
12261         STRLEN wlen, bufptr_pos;
12262         lex_read_space(0);
12263         t = s = PL_bufptr;
12264         if (!isIDFIRST_lazy_if_safe(s, PL_bufend, UTF))
12265             goto no_label;
12266         t = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE, &wlen);
12267         if (word_takes_any_delimiter(s, wlen))
12268             goto no_label;
12269         bufptr_pos = s - SvPVX(PL_linestr);
12270         PL_bufptr = t;
12271         lex_read_space(LEX_KEEP_PREVIOUS);
12272         t = PL_bufptr;
12273         s = SvPVX(PL_linestr) + bufptr_pos;
12274         if (t[0] == ':' && t[1] != ':') {
12275             PL_oldoldbufptr = PL_oldbufptr;
12276             PL_oldbufptr = s;
12277             PL_bufptr = t+1;
12278             return newSVpvn_flags(s, wlen, UTF ? SVf_UTF8 : 0);
12279         } else {
12280             PL_bufptr = s;
12281             no_label:
12282             if (flags & PARSE_OPTIONAL) {
12283                 return NULL;
12284             } else {
12285                 qerror(Perl_mess(aTHX_ "Parse error"));
12286                 return newSVpvs("x");
12287             }
12288         }
12289     }
12290 }
12291
12292 /*
12293 =for apidoc Amx|OP *|parse_fullstmt|U32 flags
12294
12295 Parse a single complete Perl statement.  This may be a normal imperative
12296 statement or a declaration that has compile-time effect, and may include
12297 optional labels.  It is up to the caller to ensure that the dynamic
12298 parser state (L</PL_parser> et al) is correctly set to reflect the source
12299 of the code to be parsed and the lexical context for the statement.
12300
12301 The op tree representing the statement is returned.  This may be a
12302 null pointer if the statement is null, for example if it was actually
12303 a subroutine definition (which has compile-time side effects).  If not
12304 null, it will be the result of a L</newSTATEOP> call, normally including
12305 a C<nextstate> or equivalent op.
12306
12307 If an error occurs in parsing or compilation, in most cases a valid op
12308 tree (most likely null) is returned anyway.  The error is reflected in
12309 the parser state, normally resulting in a single exception at the top
12310 level of parsing which covers all the compilation errors that occurred.
12311 Some compilation errors, however, will throw an exception immediately.
12312
12313 The C<flags> parameter is reserved for future use, and must always
12314 be zero.
12315
12316 =cut
12317 */
12318
12319 OP *
12320 Perl_parse_fullstmt(pTHX_ U32 flags)
12321 {
12322     if (flags)
12323         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_fullstmt");
12324     return parse_recdescent_for_op(GRAMFULLSTMT, LEX_FAKEEOF_NEVER);
12325 }
12326
12327 /*
12328 =for apidoc Amx|OP *|parse_stmtseq|U32 flags
12329
12330 Parse a sequence of zero or more Perl statements.  These may be normal
12331 imperative statements, including optional labels, or declarations
12332 that have compile-time effect, or any mixture thereof.  The statement
12333 sequence ends when a closing brace or end-of-file is encountered in a
12334 place where a new statement could have validly started.  It is up to
12335 the caller to ensure that the dynamic parser state (L</PL_parser> et al)
12336 is correctly set to reflect the source of the code to be parsed and the
12337 lexical context for the statements.
12338
12339 The op tree representing the statement sequence is returned.  This may
12340 be a null pointer if the statements were all null, for example if there
12341 were no statements or if there were only subroutine definitions (which
12342 have compile-time side effects).  If not null, it will be a C<lineseq>
12343 list, normally including C<nextstate> or equivalent ops.
12344
12345 If an error occurs in parsing or compilation, in most cases a valid op
12346 tree is returned anyway.  The error is reflected in the parser state,
12347 normally resulting in a single exception at the top level of parsing
12348 which covers all the compilation errors that occurred.  Some compilation
12349 errors, however, will throw an exception immediately.
12350
12351 The C<flags> parameter is reserved for future use, and must always
12352 be zero.
12353
12354 =cut
12355 */
12356
12357 OP *
12358 Perl_parse_stmtseq(pTHX_ U32 flags)
12359 {
12360     OP *stmtseqop;
12361     I32 c;
12362     if (flags)
12363         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_stmtseq");
12364     stmtseqop = parse_recdescent_for_op(GRAMSTMTSEQ, LEX_FAKEEOF_CLOSING);
12365     c = lex_peek_unichar(0);
12366     if (c != -1 && c != /*{*/'}')
12367         qerror(Perl_mess(aTHX_ "Parse error"));
12368     return stmtseqop;
12369 }
12370
12371 /*
12372  * ex: set ts=8 sts=4 sw=4 et:
12373  */