This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Merge branch 'remove sizing pass' into blead
[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 #include "invlist_inline.h"
43
44 #define new_constant(a,b,c,d,e,f,g)     \
45         S_new_constant(aTHX_ a,b,STR_WITH_LEN(c),d,e,f, g)
46
47 #define pl_yylval       (PL_parser->yylval)
48
49 /* XXX temporary backwards compatibility */
50 #define PL_lex_brackets         (PL_parser->lex_brackets)
51 #define PL_lex_allbrackets      (PL_parser->lex_allbrackets)
52 #define PL_lex_fakeeof          (PL_parser->lex_fakeeof)
53 #define PL_lex_brackstack       (PL_parser->lex_brackstack)
54 #define PL_lex_casemods         (PL_parser->lex_casemods)
55 #define PL_lex_casestack        (PL_parser->lex_casestack)
56 #define PL_lex_dojoin           (PL_parser->lex_dojoin)
57 #define PL_lex_formbrack        (PL_parser->lex_formbrack)
58 #define PL_lex_inpat            (PL_parser->lex_inpat)
59 #define PL_lex_inwhat           (PL_parser->lex_inwhat)
60 #define PL_lex_op               (PL_parser->lex_op)
61 #define PL_lex_repl             (PL_parser->lex_repl)
62 #define PL_lex_starts           (PL_parser->lex_starts)
63 #define PL_lex_stuff            (PL_parser->lex_stuff)
64 #define PL_multi_start          (PL_parser->multi_start)
65 #define PL_multi_open           (PL_parser->multi_open)
66 #define PL_multi_close          (PL_parser->multi_close)
67 #define PL_preambled            (PL_parser->preambled)
68 #define PL_linestr              (PL_parser->linestr)
69 #define PL_expect               (PL_parser->expect)
70 #define PL_copline              (PL_parser->copline)
71 #define PL_bufptr               (PL_parser->bufptr)
72 #define PL_oldbufptr            (PL_parser->oldbufptr)
73 #define PL_oldoldbufptr         (PL_parser->oldoldbufptr)
74 #define PL_linestart            (PL_parser->linestart)
75 #define PL_bufend               (PL_parser->bufend)
76 #define PL_last_uni             (PL_parser->last_uni)
77 #define PL_last_lop             (PL_parser->last_lop)
78 #define PL_last_lop_op          (PL_parser->last_lop_op)
79 #define PL_lex_state            (PL_parser->lex_state)
80 #define PL_rsfp                 (PL_parser->rsfp)
81 #define PL_rsfp_filters         (PL_parser->rsfp_filters)
82 #define PL_in_my                (PL_parser->in_my)
83 #define PL_in_my_stash          (PL_parser->in_my_stash)
84 #define PL_tokenbuf             (PL_parser->tokenbuf)
85 #define PL_multi_end            (PL_parser->multi_end)
86 #define PL_error_count          (PL_parser->error_count)
87
88 #  define PL_nexttoke           (PL_parser->nexttoke)
89 #  define PL_nexttype           (PL_parser->nexttype)
90 #  define PL_nextval            (PL_parser->nextval)
91
92
93 #define SvEVALED(sv) \
94     (SvTYPE(sv) >= SVt_PVNV \
95     && ((XPVIV*)SvANY(sv))->xiv_u.xivu_eval_seen)
96
97 static const char* const ident_too_long = "Identifier too long";
98
99 #  define NEXTVAL_NEXTTOKE PL_nextval[PL_nexttoke]
100
101 #define XENUMMASK  0x3f
102 #define XFAKEEOF   0x40
103 #define XFAKEBRACK 0x80
104
105 #ifdef USE_UTF8_SCRIPTS
106 #   define UTF cBOOL(!IN_BYTES)
107 #else
108 #   define UTF cBOOL((PL_linestr && DO_UTF8(PL_linestr)) || ( !(PL_parser->lex_flags & LEX_IGNORE_UTF8_HINTS) && (PL_hints & HINT_UTF8)))
109 #endif
110
111 /* The maximum number of characters preceding the unrecognized one to display */
112 #define UNRECOGNIZED_PRECEDE_COUNT 10
113
114 /* In variables named $^X, these are the legal values for X.
115  * 1999-02-27 mjd-perl-patch@plover.com */
116 #define isCONTROLVAR(x) (isUPPER(x) || strchr("[\\]^_?", (x)))
117
118 #define SPACE_OR_TAB(c) isBLANK_A(c)
119
120 #define HEXFP_PEEK(s)     \
121     (((s[0] == '.') && \
122       (isXDIGIT(s[1]) || isALPHA_FOLD_EQ(s[1], 'p'))) || \
123      isALPHA_FOLD_EQ(s[0], 'p'))
124
125 /* LEX_* are values for PL_lex_state, the state of the lexer.
126  * They are arranged oddly so that the guard on the switch statement
127  * can get by with a single comparison (if the compiler is smart enough).
128  *
129  * These values refer to the various states within a sublex parse,
130  * i.e. within a double quotish string
131  */
132
133 /* #define LEX_NOTPARSING               11 is done in perl.h. */
134
135 #define LEX_NORMAL              10 /* normal code (ie not within "...")     */
136 #define LEX_INTERPNORMAL         9 /* code within a string, eg "$foo[$x+1]" */
137 #define LEX_INTERPCASEMOD        8 /* expecting a \U, \Q or \E etc          */
138 #define LEX_INTERPPUSH           7 /* starting a new sublex parse level     */
139 #define LEX_INTERPSTART          6 /* expecting the start of a $var         */
140
141                                    /* at end of code, eg "$x" followed by:  */
142 #define LEX_INTERPEND            5 /* ... eg not one of [, { or ->          */
143 #define LEX_INTERPENDMAYBE       4 /* ... eg one of [, { or ->              */
144
145 #define LEX_INTERPCONCAT         3 /* expecting anything, eg at start of
146                                         string or after \E, $foo, etc       */
147 #define LEX_INTERPCONST          2 /* NOT USED */
148 #define LEX_FORMLINE             1 /* expecting a format line               */
149
150
151 #ifdef DEBUGGING
152 static const char* const lex_state_names[] = {
153     "KNOWNEXT",
154     "FORMLINE",
155     "INTERPCONST",
156     "INTERPCONCAT",
157     "INTERPENDMAYBE",
158     "INTERPEND",
159     "INTERPSTART",
160     "INTERPPUSH",
161     "INTERPCASEMOD",
162     "INTERPNORMAL",
163     "NORMAL"
164 };
165 #endif
166
167 #include "keywords.h"
168
169 /* CLINE is a macro that ensures PL_copline has a sane value */
170
171 #define CLINE (PL_copline = (CopLINE(PL_curcop) < PL_copline ? CopLINE(PL_curcop) : PL_copline))
172
173 /*
174  * Convenience functions to return different tokens and prime the
175  * lexer for the next token.  They all take an argument.
176  *
177  * TOKEN        : generic token (used for '(', DOLSHARP, etc)
178  * OPERATOR     : generic operator
179  * AOPERATOR    : assignment operator
180  * PREBLOCK     : beginning the block after an if, while, foreach, ...
181  * PRETERMBLOCK : beginning a non-code-defining {} block (eg, hash ref)
182  * PREREF       : *EXPR where EXPR is not a simple identifier
183  * TERM         : expression term
184  * POSTDEREF    : postfix dereference (->$* ->@[...] etc.)
185  * LOOPX        : loop exiting command (goto, last, dump, etc)
186  * FTST         : file test operator
187  * FUN0         : zero-argument function
188  * FUN0OP       : zero-argument function, with its op created in this file
189  * FUN1         : not used, except for not, which isn't a UNIOP
190  * BOop         : bitwise or or xor
191  * BAop         : bitwise and
192  * BCop         : bitwise complement
193  * SHop         : shift operator
194  * PWop         : power operator
195  * PMop         : pattern-matching operator
196  * Aop          : addition-level operator
197  * AopNOASSIGN  : addition-level operator that is never part of .=
198  * Mop          : multiplication-level operator
199  * Eop          : equality-testing operator
200  * Rop          : relational operator <= != gt
201  *
202  * Also see LOP and lop() below.
203  */
204
205 #ifdef DEBUGGING /* Serve -DT. */
206 #   define REPORT(retval) tokereport((I32)retval, &pl_yylval)
207 #else
208 #   define REPORT(retval) (retval)
209 #endif
210
211 #define TOKEN(retval) return ( PL_bufptr = s, REPORT(retval))
212 #define OPERATOR(retval) return (PL_expect = XTERM, PL_bufptr = s, REPORT(retval))
213 #define AOPERATOR(retval) return ao((PL_expect = XTERM, PL_bufptr = s, retval))
214 #define PREBLOCK(retval) return (PL_expect = XBLOCK,PL_bufptr = s, REPORT(retval))
215 #define PRETERMBLOCK(retval) return (PL_expect = XTERMBLOCK,PL_bufptr = s, REPORT(retval))
216 #define PREREF(retval) return (PL_expect = XREF,PL_bufptr = s, REPORT(retval))
217 #define TERM(retval) return (CLINE, PL_expect = XOPERATOR, PL_bufptr = s, REPORT(retval))
218 #define POSTDEREF(f) return (PL_bufptr = s, S_postderef(aTHX_ REPORT(f),s[1]))
219 #define LOOPX(f) return (PL_bufptr = force_word(s,BAREWORD,TRUE,FALSE), \
220                          pl_yylval.ival=f, \
221                          PL_expect = PL_nexttoke ? XOPERATOR : XTERM, \
222                          REPORT((int)LOOPEX))
223 #define FTST(f)  return (pl_yylval.ival=f, PL_expect=XTERMORDORDOR, PL_bufptr=s, REPORT((int)UNIOP))
224 #define FUN0(f)  return (pl_yylval.ival=f, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC0))
225 #define FUN0OP(f)  return (pl_yylval.opval=f, CLINE, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC0OP))
226 #define FUN1(f)  return (pl_yylval.ival=f, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC1))
227 #define BOop(f)  return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)BITOROP))
228 #define BAop(f)  return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)BITANDOP))
229 #define BCop(f) return pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr = s, \
230                        REPORT('~')
231 #define SHop(f)  return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)SHIFTOP))
232 #define PWop(f)  return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)POWOP))
233 #define PMop(f)  return(pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)MATCHOP))
234 #define Aop(f)   return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)ADDOP))
235 #define AopNOASSIGN(f) return (pl_yylval.ival=f, PL_bufptr=s, REPORT((int)ADDOP))
236 #define Mop(f)   return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)MULOP))
237 #define Eop(f)   return (pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)EQOP))
238 #define Rop(f)   return (pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)RELOP))
239
240 /* This bit of chicanery makes a unary function followed by
241  * a parenthesis into a function with one argument, highest precedence.
242  * The UNIDOR macro is for unary functions that can be followed by the //
243  * operator (such as C<shift // 0>).
244  */
245 #define UNI3(f,x,have_x) { \
246         pl_yylval.ival = f; \
247         if (have_x) PL_expect = x; \
248         PL_bufptr = s; \
249         PL_last_uni = PL_oldbufptr; \
250         PL_last_lop_op = (f) < 0 ? -(f) : (f); \
251         if (*s == '(') \
252             return REPORT( (int)FUNC1 ); \
253         s = skipspace(s); \
254         return REPORT( *s=='(' ? (int)FUNC1 : (int)UNIOP ); \
255         }
256 #define UNI(f)    UNI3(f,XTERM,1)
257 #define UNIDOR(f) UNI3(f,XTERMORDORDOR,1)
258 #define UNIPROTO(f,optional) { \
259         if (optional) PL_last_uni = PL_oldbufptr; \
260         OPERATOR(f); \
261         }
262
263 #define UNIBRACK(f) UNI3(f,0,0)
264
265 /* grandfather return to old style */
266 #define OLDLOP(f) \
267         do { \
268             if (!PL_lex_allbrackets && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC) \
269                 PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC; \
270             pl_yylval.ival = (f); \
271             PL_expect = XTERM; \
272             PL_bufptr = s; \
273             return (int)LSTOP; \
274         } while(0)
275
276 #define COPLINE_INC_WITH_HERELINES                  \
277     STMT_START {                                     \
278         CopLINE_inc(PL_curcop);                       \
279         if (PL_parser->herelines)                      \
280             CopLINE(PL_curcop) += PL_parser->herelines, \
281             PL_parser->herelines = 0;                    \
282     } STMT_END
283 /* Called after scan_str to update CopLINE(PL_curcop), but only when there
284  * is no sublex_push to follow. */
285 #define COPLINE_SET_FROM_MULTI_END            \
286     STMT_START {                               \
287         CopLINE_set(PL_curcop, PL_multi_end);   \
288         if (PL_multi_end != PL_multi_start)      \
289             PL_parser->herelines = 0;             \
290     } STMT_END
291
292
293 #ifdef DEBUGGING
294
295 /* how to interpret the pl_yylval associated with the token */
296 enum token_type {
297     TOKENTYPE_NONE,
298     TOKENTYPE_IVAL,
299     TOKENTYPE_OPNUM, /* pl_yylval.ival contains an opcode number */
300     TOKENTYPE_PVAL,
301     TOKENTYPE_OPVAL
302 };
303
304 static struct debug_tokens {
305     const int token;
306     enum token_type type;
307     const char *name;
308 } const debug_tokens[] =
309 {
310     { ADDOP,            TOKENTYPE_OPNUM,        "ADDOP" },
311     { ANDAND,           TOKENTYPE_NONE,         "ANDAND" },
312     { ANDOP,            TOKENTYPE_NONE,         "ANDOP" },
313     { ANONSUB,          TOKENTYPE_IVAL,         "ANONSUB" },
314     { ANON_SIGSUB,      TOKENTYPE_IVAL,         "ANON_SIGSUB" },
315     { ARROW,            TOKENTYPE_NONE,         "ARROW" },
316     { ASSIGNOP,         TOKENTYPE_OPNUM,        "ASSIGNOP" },
317     { BITANDOP,         TOKENTYPE_OPNUM,        "BITANDOP" },
318     { BITOROP,          TOKENTYPE_OPNUM,        "BITOROP" },
319     { COLONATTR,        TOKENTYPE_NONE,         "COLONATTR" },
320     { CONTINUE,         TOKENTYPE_NONE,         "CONTINUE" },
321     { DEFAULT,          TOKENTYPE_NONE,         "DEFAULT" },
322     { DO,               TOKENTYPE_NONE,         "DO" },
323     { DOLSHARP,         TOKENTYPE_NONE,         "DOLSHARP" },
324     { DORDOR,           TOKENTYPE_NONE,         "DORDOR" },
325     { DOROP,            TOKENTYPE_OPNUM,        "DOROP" },
326     { DOTDOT,           TOKENTYPE_IVAL,         "DOTDOT" },
327     { ELSE,             TOKENTYPE_NONE,         "ELSE" },
328     { ELSIF,            TOKENTYPE_IVAL,         "ELSIF" },
329     { EQOP,             TOKENTYPE_OPNUM,        "EQOP" },
330     { FOR,              TOKENTYPE_IVAL,         "FOR" },
331     { FORMAT,           TOKENTYPE_NONE,         "FORMAT" },
332     { FORMLBRACK,       TOKENTYPE_NONE,         "FORMLBRACK" },
333     { FORMRBRACK,       TOKENTYPE_NONE,         "FORMRBRACK" },
334     { FUNC,             TOKENTYPE_OPNUM,        "FUNC" },
335     { FUNC0,            TOKENTYPE_OPNUM,        "FUNC0" },
336     { FUNC0OP,          TOKENTYPE_OPVAL,        "FUNC0OP" },
337     { FUNC0SUB,         TOKENTYPE_OPVAL,        "FUNC0SUB" },
338     { FUNC1,            TOKENTYPE_OPNUM,        "FUNC1" },
339     { FUNCMETH,         TOKENTYPE_OPVAL,        "FUNCMETH" },
340     { GIVEN,            TOKENTYPE_IVAL,         "GIVEN" },
341     { HASHBRACK,        TOKENTYPE_NONE,         "HASHBRACK" },
342     { IF,               TOKENTYPE_IVAL,         "IF" },
343     { LABEL,            TOKENTYPE_PVAL,         "LABEL" },
344     { LOCAL,            TOKENTYPE_IVAL,         "LOCAL" },
345     { LOOPEX,           TOKENTYPE_OPNUM,        "LOOPEX" },
346     { LSTOP,            TOKENTYPE_OPNUM,        "LSTOP" },
347     { LSTOPSUB,         TOKENTYPE_OPVAL,        "LSTOPSUB" },
348     { MATCHOP,          TOKENTYPE_OPNUM,        "MATCHOP" },
349     { METHOD,           TOKENTYPE_OPVAL,        "METHOD" },
350     { MULOP,            TOKENTYPE_OPNUM,        "MULOP" },
351     { MY,               TOKENTYPE_IVAL,         "MY" },
352     { NOAMP,            TOKENTYPE_NONE,         "NOAMP" },
353     { NOTOP,            TOKENTYPE_NONE,         "NOTOP" },
354     { OROP,             TOKENTYPE_IVAL,         "OROP" },
355     { OROR,             TOKENTYPE_NONE,         "OROR" },
356     { PACKAGE,          TOKENTYPE_NONE,         "PACKAGE" },
357     { PLUGEXPR,         TOKENTYPE_OPVAL,        "PLUGEXPR" },
358     { PLUGSTMT,         TOKENTYPE_OPVAL,        "PLUGSTMT" },
359     { PMFUNC,           TOKENTYPE_OPVAL,        "PMFUNC" },
360     { POSTJOIN,         TOKENTYPE_NONE,         "POSTJOIN" },
361     { POSTDEC,          TOKENTYPE_NONE,         "POSTDEC" },
362     { POSTINC,          TOKENTYPE_NONE,         "POSTINC" },
363     { POWOP,            TOKENTYPE_OPNUM,        "POWOP" },
364     { PREDEC,           TOKENTYPE_NONE,         "PREDEC" },
365     { PREINC,           TOKENTYPE_NONE,         "PREINC" },
366     { PRIVATEREF,       TOKENTYPE_OPVAL,        "PRIVATEREF" },
367     { QWLIST,           TOKENTYPE_OPVAL,        "QWLIST" },
368     { REFGEN,           TOKENTYPE_NONE,         "REFGEN" },
369     { RELOP,            TOKENTYPE_OPNUM,        "RELOP" },
370     { REQUIRE,          TOKENTYPE_NONE,         "REQUIRE" },
371     { SHIFTOP,          TOKENTYPE_OPNUM,        "SHIFTOP" },
372     { SIGSUB,           TOKENTYPE_NONE,         "SIGSUB" },
373     { SUB,              TOKENTYPE_NONE,         "SUB" },
374     { THING,            TOKENTYPE_OPVAL,        "THING" },
375     { UMINUS,           TOKENTYPE_NONE,         "UMINUS" },
376     { UNIOP,            TOKENTYPE_OPNUM,        "UNIOP" },
377     { UNIOPSUB,         TOKENTYPE_OPVAL,        "UNIOPSUB" },
378     { UNLESS,           TOKENTYPE_IVAL,         "UNLESS" },
379     { UNTIL,            TOKENTYPE_IVAL,         "UNTIL" },
380     { USE,              TOKENTYPE_IVAL,         "USE" },
381     { WHEN,             TOKENTYPE_IVAL,         "WHEN" },
382     { WHILE,            TOKENTYPE_IVAL,         "WHILE" },
383     { BAREWORD,         TOKENTYPE_OPVAL,        "BAREWORD" },
384     { YADAYADA,         TOKENTYPE_IVAL,         "YADAYADA" },
385     { 0,                TOKENTYPE_NONE,         NULL }
386 };
387
388 /* dump the returned token in rv, plus any optional arg in pl_yylval */
389
390 STATIC int
391 S_tokereport(pTHX_ I32 rv, const YYSTYPE* lvalp)
392 {
393     PERL_ARGS_ASSERT_TOKEREPORT;
394
395     if (DEBUG_T_TEST) {
396         const char *name = NULL;
397         enum token_type type = TOKENTYPE_NONE;
398         const struct debug_tokens *p;
399         SV* const report = newSVpvs("<== ");
400
401         for (p = debug_tokens; p->token; p++) {
402             if (p->token == (int)rv) {
403                 name = p->name;
404                 type = p->type;
405                 break;
406             }
407         }
408         if (name)
409             Perl_sv_catpv(aTHX_ report, name);
410         else if (isGRAPH(rv))
411         {
412             Perl_sv_catpvf(aTHX_ report, "'%c'", (char)rv);
413             if ((char)rv == 'p')
414                 sv_catpvs(report, " (pending identifier)");
415         }
416         else if (!rv)
417             sv_catpvs(report, "EOF");
418         else
419             Perl_sv_catpvf(aTHX_ report, "?? %" IVdf, (IV)rv);
420         switch (type) {
421         case TOKENTYPE_NONE:
422             break;
423         case TOKENTYPE_IVAL:
424             Perl_sv_catpvf(aTHX_ report, "(ival=%" IVdf ")", (IV)lvalp->ival);
425             break;
426         case TOKENTYPE_OPNUM:
427             Perl_sv_catpvf(aTHX_ report, "(ival=op_%s)",
428                                     PL_op_name[lvalp->ival]);
429             break;
430         case TOKENTYPE_PVAL:
431             Perl_sv_catpvf(aTHX_ report, "(pval=\"%s\")", lvalp->pval);
432             break;
433         case TOKENTYPE_OPVAL:
434             if (lvalp->opval) {
435                 Perl_sv_catpvf(aTHX_ report, "(opval=op_%s)",
436                                     PL_op_name[lvalp->opval->op_type]);
437                 if (lvalp->opval->op_type == OP_CONST) {
438                     Perl_sv_catpvf(aTHX_ report, " %s",
439                         SvPEEK(cSVOPx_sv(lvalp->opval)));
440                 }
441
442             }
443             else
444                 sv_catpvs(report, "(opval=null)");
445             break;
446         }
447         PerlIO_printf(Perl_debug_log, "### %s\n\n", SvPV_nolen_const(report));
448     };
449     return (int)rv;
450 }
451
452
453 /* print the buffer with suitable escapes */
454
455 STATIC void
456 S_printbuf(pTHX_ const char *const fmt, const char *const s)
457 {
458     SV* const tmp = newSVpvs("");
459
460     PERL_ARGS_ASSERT_PRINTBUF;
461
462     GCC_DIAG_IGNORE_STMT(-Wformat-nonliteral); /* fmt checked by caller */
463     PerlIO_printf(Perl_debug_log, fmt, pv_display(tmp, s, strlen(s), 0, 60));
464     GCC_DIAG_RESTORE_STMT;
465     SvREFCNT_dec(tmp);
466 }
467
468 #endif
469
470 /*
471  * S_ao
472  *
473  * This subroutine looks for an '=' next to the operator that has just been
474  * parsed and turns it into an ASSIGNOP if it finds one.
475  */
476
477 STATIC int
478 S_ao(pTHX_ int toketype)
479 {
480     if (*PL_bufptr == '=') {
481         PL_bufptr++;
482         if (toketype == ANDAND)
483             pl_yylval.ival = OP_ANDASSIGN;
484         else if (toketype == OROR)
485             pl_yylval.ival = OP_ORASSIGN;
486         else if (toketype == DORDOR)
487             pl_yylval.ival = OP_DORASSIGN;
488         toketype = ASSIGNOP;
489     }
490     return REPORT(toketype);
491 }
492
493 /*
494  * S_no_op
495  * When Perl expects an operator and finds something else, no_op
496  * prints the warning.  It always prints "<something> found where
497  * operator expected.  It prints "Missing semicolon on previous line?"
498  * if the surprise occurs at the start of the line.  "do you need to
499  * predeclare ..." is printed out for code like "sub bar; foo bar $x"
500  * where the compiler doesn't know if foo is a method call or a function.
501  * It prints "Missing operator before end of line" if there's nothing
502  * after the missing operator, or "... before <...>" if there is something
503  * after the missing operator.
504  *
505  * PL_bufptr is expected to point to the start of the thing that was found,
506  * and s after the next token or partial token.
507  */
508
509 STATIC void
510 S_no_op(pTHX_ const char *const what, char *s)
511 {
512     char * const oldbp = PL_bufptr;
513     const bool is_first = (PL_oldbufptr == PL_linestart);
514
515     PERL_ARGS_ASSERT_NO_OP;
516
517     if (!s)
518         s = oldbp;
519     else
520         PL_bufptr = s;
521     yywarn(Perl_form(aTHX_ "%s found where operator expected", what), UTF ? SVf_UTF8 : 0);
522     if (ckWARN_d(WARN_SYNTAX)) {
523         if (is_first)
524             Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
525                     "\t(Missing semicolon on previous line?)\n");
526         else if (PL_oldoldbufptr && isIDFIRST_lazy_if_safe(PL_oldoldbufptr,
527                                                            PL_bufend,
528                                                            UTF))
529         {
530             const char *t;
531             for (t = PL_oldoldbufptr;
532                  (isWORDCHAR_lazy_if_safe(t, PL_bufend, UTF) || *t == ':');
533                  t += UTF ? UTF8SKIP(t) : 1)
534             {
535                 NOOP;
536             }
537             if (t < PL_bufptr && isSPACE(*t))
538                 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
539                         "\t(Do you need to predeclare %" UTF8f "?)\n",
540                       UTF8fARG(UTF, t - PL_oldoldbufptr, PL_oldoldbufptr));
541         }
542         else {
543             assert(s >= oldbp);
544             Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
545                     "\t(Missing operator before %" UTF8f "?)\n",
546                      UTF8fARG(UTF, s - oldbp, oldbp));
547         }
548     }
549     PL_bufptr = oldbp;
550 }
551
552 /*
553  * S_missingterm
554  * Complain about missing quote/regexp/heredoc terminator.
555  * If it's called with NULL then it cauterizes the line buffer.
556  * If we're in a delimited string and the delimiter is a control
557  * character, it's reformatted into a two-char sequence like ^C.
558  * This is fatal.
559  */
560
561 STATIC void
562 S_missingterm(pTHX_ char *s, STRLEN len)
563 {
564     char tmpbuf[UTF8_MAXBYTES + 1];
565     char q;
566     bool uni = FALSE;
567     SV *sv;
568     if (s) {
569         char * const nl = (char *) my_memrchr(s, '\n', len);
570         if (nl) {
571             *nl = '\0';
572             len = nl - s;
573         }
574         uni = UTF;
575     }
576     else if (PL_multi_close < 32) {
577         *tmpbuf = '^';
578         tmpbuf[1] = (char)toCTRL(PL_multi_close);
579         tmpbuf[2] = '\0';
580         s = tmpbuf;
581         len = 2;
582     }
583     else {
584         if (LIKELY(PL_multi_close < 256)) {
585             *tmpbuf = (char)PL_multi_close;
586             tmpbuf[1] = '\0';
587             len = 1;
588         }
589         else {
590             char *end = (char *)uvchr_to_utf8((U8 *)tmpbuf, PL_multi_close);
591             *end = '\0';
592             len = end - tmpbuf;
593             uni = TRUE;
594         }
595         s = tmpbuf;
596     }
597     q = memchr(s, '"', len) ? '\'' : '"';
598     sv = sv_2mortal(newSVpvn(s, len));
599     if (uni)
600         SvUTF8_on(sv);
601     Perl_croak(aTHX_ "Can't find string terminator %c%" SVf "%c"
602                      " anywhere before EOF", q, SVfARG(sv), q);
603 }
604
605 #include "feature.h"
606
607 /*
608  * Check whether the named feature is enabled.
609  */
610 bool
611 Perl_feature_is_enabled(pTHX_ const char *const name, STRLEN namelen)
612 {
613     char he_name[8 + MAX_FEATURE_LEN] = "feature_";
614
615     PERL_ARGS_ASSERT_FEATURE_IS_ENABLED;
616
617     assert(CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_CUSTOM);
618
619     if (namelen > MAX_FEATURE_LEN)
620         return FALSE;
621     memcpy(&he_name[8], name, namelen);
622
623     return cBOOL(cop_hints_fetch_pvn(PL_curcop, he_name, 8 + namelen, 0,
624                                      REFCOUNTED_HE_EXISTS));
625 }
626
627 /*
628  * experimental text filters for win32 carriage-returns, utf16-to-utf8 and
629  * utf16-to-utf8-reversed.
630  */
631
632 #ifdef PERL_CR_FILTER
633 static void
634 strip_return(SV *sv)
635 {
636     const char *s = SvPVX_const(sv);
637     const char * const e = s + SvCUR(sv);
638
639     PERL_ARGS_ASSERT_STRIP_RETURN;
640
641     /* outer loop optimized to do nothing if there are no CR-LFs */
642     while (s < e) {
643         if (*s++ == '\r' && *s == '\n') {
644             /* hit a CR-LF, need to copy the rest */
645             char *d = s - 1;
646             *d++ = *s++;
647             while (s < e) {
648                 if (*s == '\r' && s[1] == '\n')
649                     s++;
650                 *d++ = *s++;
651             }
652             SvCUR(sv) -= s - d;
653             return;
654         }
655     }
656 }
657
658 STATIC I32
659 S_cr_textfilter(pTHX_ int idx, SV *sv, int maxlen)
660 {
661     const I32 count = FILTER_READ(idx+1, sv, maxlen);
662     if (count > 0 && !maxlen)
663         strip_return(sv);
664     return count;
665 }
666 #endif
667
668 /*
669 =for apidoc Amx|void|lex_start|SV *line|PerlIO *rsfp|U32 flags
670
671 Creates and initialises a new lexer/parser state object, supplying
672 a context in which to lex and parse from a new source of Perl code.
673 A pointer to the new state object is placed in L</PL_parser>.  An entry
674 is made on the save stack so that upon unwinding, the new state object
675 will be destroyed and the former value of L</PL_parser> will be restored.
676 Nothing else need be done to clean up the parsing context.
677
678 The code to be parsed comes from C<line> and C<rsfp>.  C<line>, if
679 non-null, provides a string (in SV form) containing code to be parsed.
680 A copy of the string is made, so subsequent modification of C<line>
681 does not affect parsing.  C<rsfp>, if non-null, provides an input stream
682 from which code will be read to be parsed.  If both are non-null, the
683 code in C<line> comes first and must consist of complete lines of input,
684 and C<rsfp> supplies the remainder of the source.
685
686 The C<flags> parameter is reserved for future use.  Currently it is only
687 used by perl internally, so extensions should always pass zero.
688
689 =cut
690 */
691
692 /* LEX_START_SAME_FILTER indicates that this is not a new file, so it
693    can share filters with the current parser.
694    LEX_START_DONT_CLOSE indicates that the file handle wasn't opened by the
695    caller, hence isn't owned by the parser, so shouldn't be closed on parser
696    destruction. This is used to handle the case of defaulting to reading the
697    script from the standard input because no filename was given on the command
698    line (without getting confused by situation where STDIN has been closed, so
699    the script handle is opened on fd 0)  */
700
701 void
702 Perl_lex_start(pTHX_ SV *line, PerlIO *rsfp, U32 flags)
703 {
704     const char *s = NULL;
705     yy_parser *parser, *oparser;
706
707     if (flags && flags & ~LEX_START_FLAGS)
708         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_start");
709
710     /* create and initialise a parser */
711
712     Newxz(parser, 1, yy_parser);
713     parser->old_parser = oparser = PL_parser;
714     PL_parser = parser;
715
716     parser->stack = NULL;
717     parser->stack_max1 = NULL;
718     parser->ps = NULL;
719
720     /* on scope exit, free this parser and restore any outer one */
721     SAVEPARSER(parser);
722     parser->saved_curcop = PL_curcop;
723
724     /* initialise lexer state */
725
726     parser->nexttoke = 0;
727     parser->error_count = oparser ? oparser->error_count : 0;
728     parser->copline = parser->preambling = NOLINE;
729     parser->lex_state = LEX_NORMAL;
730     parser->expect = XSTATE;
731     parser->rsfp = rsfp;
732     parser->recheck_utf8_validity = FALSE;
733     parser->rsfp_filters =
734       !(flags & LEX_START_SAME_FILTER) || !oparser
735         ? NULL
736         : MUTABLE_AV(SvREFCNT_inc(
737             oparser->rsfp_filters
738              ? oparser->rsfp_filters
739              : (oparser->rsfp_filters = newAV())
740           ));
741
742     Newx(parser->lex_brackstack, 120, char);
743     Newx(parser->lex_casestack, 12, char);
744     *parser->lex_casestack = '\0';
745     Newxz(parser->lex_shared, 1, LEXSHARED);
746
747     if (line) {
748         STRLEN len;
749         const U8* first_bad_char_loc;
750
751         s = SvPV_const(line, len);
752
753         if (   SvUTF8(line)
754             && UNLIKELY(! is_utf8_string_loc((U8 *) s,
755                                              SvCUR(line),
756                                              &first_bad_char_loc)))
757         {
758             _force_out_malformed_utf8_message(first_bad_char_loc,
759                                               (U8 *) s + SvCUR(line),
760                                               0,
761                                               1 /* 1 means die */ );
762             NOT_REACHED; /* NOTREACHED */
763         }
764
765         parser->linestr = flags & LEX_START_COPIED
766                             ? SvREFCNT_inc_simple_NN(line)
767                             : newSVpvn_flags(s, len, SvUTF8(line));
768         if (!rsfp)
769             sv_catpvs(parser->linestr, "\n;");
770     } else {
771         parser->linestr = newSVpvn("\n;", rsfp ? 1 : 2);
772     }
773
774     parser->oldoldbufptr =
775         parser->oldbufptr =
776         parser->bufptr =
777         parser->linestart = SvPVX(parser->linestr);
778     parser->bufend = parser->bufptr + SvCUR(parser->linestr);
779     parser->last_lop = parser->last_uni = NULL;
780
781     STATIC_ASSERT_STMT(FITS_IN_8_BITS(LEX_IGNORE_UTF8_HINTS|LEX_EVALBYTES
782                                                         |LEX_DONT_CLOSE_RSFP));
783     parser->lex_flags = (U8) (flags & (LEX_IGNORE_UTF8_HINTS|LEX_EVALBYTES
784                                                         |LEX_DONT_CLOSE_RSFP));
785
786     parser->in_pod = parser->filtered = 0;
787 }
788
789
790 /* delete a parser object */
791
792 void
793 Perl_parser_free(pTHX_  const yy_parser *parser)
794 {
795     PERL_ARGS_ASSERT_PARSER_FREE;
796
797     PL_curcop = parser->saved_curcop;
798     SvREFCNT_dec(parser->linestr);
799
800     if (PL_parser->lex_flags & LEX_DONT_CLOSE_RSFP)
801         PerlIO_clearerr(parser->rsfp);
802     else if (parser->rsfp && (!parser->old_parser
803           || (parser->old_parser && parser->rsfp != parser->old_parser->rsfp)))
804         PerlIO_close(parser->rsfp);
805     SvREFCNT_dec(parser->rsfp_filters);
806     SvREFCNT_dec(parser->lex_stuff);
807     SvREFCNT_dec(parser->lex_sub_repl);
808
809     Safefree(parser->lex_brackstack);
810     Safefree(parser->lex_casestack);
811     Safefree(parser->lex_shared);
812     PL_parser = parser->old_parser;
813     Safefree(parser);
814 }
815
816 void
817 Perl_parser_free_nexttoke_ops(pTHX_  yy_parser *parser, OPSLAB *slab)
818 {
819     I32 nexttoke = parser->nexttoke;
820     PERL_ARGS_ASSERT_PARSER_FREE_NEXTTOKE_OPS;
821     while (nexttoke--) {
822         if (S_is_opval_token(parser->nexttype[nexttoke] & 0xffff)
823          && parser->nextval[nexttoke].opval
824          && parser->nextval[nexttoke].opval->op_slabbed
825          && OpSLAB(parser->nextval[nexttoke].opval) == slab) {
826             op_free(parser->nextval[nexttoke].opval);
827             parser->nextval[nexttoke].opval = NULL;
828         }
829     }
830 }
831
832
833 /*
834 =for apidoc AmxU|SV *|PL_parser-E<gt>linestr
835
836 Buffer scalar containing the chunk currently under consideration of the
837 text currently being lexed.  This is always a plain string scalar (for
838 which C<SvPOK> is true).  It is not intended to be used as a scalar by
839 normal scalar means; instead refer to the buffer directly by the pointer
840 variables described below.
841
842 The lexer maintains various C<char*> pointers to things in the
843 C<PL_parser-E<gt>linestr> buffer.  If C<PL_parser-E<gt>linestr> is ever
844 reallocated, all of these pointers must be updated.  Don't attempt to
845 do this manually, but rather use L</lex_grow_linestr> if you need to
846 reallocate the buffer.
847
848 The content of the text chunk in the buffer is commonly exactly one
849 complete line of input, up to and including a newline terminator,
850 but there are situations where it is otherwise.  The octets of the
851 buffer may be intended to be interpreted as either UTF-8 or Latin-1.
852 The function L</lex_bufutf8> tells you which.  Do not use the C<SvUTF8>
853 flag on this scalar, which may disagree with it.
854
855 For direct examination of the buffer, the variable
856 L</PL_parser-E<gt>bufend> points to the end of the buffer.  The current
857 lexing position is pointed to by L</PL_parser-E<gt>bufptr>.  Direct use
858 of these pointers is usually preferable to examination of the scalar
859 through normal scalar means.
860
861 =for apidoc AmxU|char *|PL_parser-E<gt>bufend
862
863 Direct pointer to the end of the chunk of text currently being lexed, the
864 end of the lexer buffer.  This is equal to C<SvPVX(PL_parser-E<gt>linestr)
865 + SvCUR(PL_parser-E<gt>linestr)>.  A C<NUL> character (zero octet) is
866 always located at the end of the buffer, and does not count as part of
867 the buffer's contents.
868
869 =for apidoc AmxU|char *|PL_parser-E<gt>bufptr
870
871 Points to the current position of lexing inside the lexer buffer.
872 Characters around this point may be freely examined, within
873 the range delimited by C<SvPVX(L</PL_parser-E<gt>linestr>)> and
874 L</PL_parser-E<gt>bufend>.  The octets of the buffer may be intended to be
875 interpreted as either UTF-8 or Latin-1, as indicated by L</lex_bufutf8>.
876
877 Lexing code (whether in the Perl core or not) moves this pointer past
878 the characters that it consumes.  It is also expected to perform some
879 bookkeeping whenever a newline character is consumed.  This movement
880 can be more conveniently performed by the function L</lex_read_to>,
881 which handles newlines appropriately.
882
883 Interpretation of the buffer's octets can be abstracted out by
884 using the slightly higher-level functions L</lex_peek_unichar> and
885 L</lex_read_unichar>.
886
887 =for apidoc AmxU|char *|PL_parser-E<gt>linestart
888
889 Points to the start of the current line inside the lexer buffer.
890 This is useful for indicating at which column an error occurred, and
891 not much else.  This must be updated by any lexing code that consumes
892 a newline; the function L</lex_read_to> handles this detail.
893
894 =cut
895 */
896
897 /*
898 =for apidoc Amx|bool|lex_bufutf8
899
900 Indicates whether the octets in the lexer buffer
901 (L</PL_parser-E<gt>linestr>) should be interpreted as the UTF-8 encoding
902 of Unicode characters.  If not, they should be interpreted as Latin-1
903 characters.  This is analogous to the C<SvUTF8> flag for scalars.
904
905 In UTF-8 mode, it is not guaranteed that the lexer buffer actually
906 contains valid UTF-8.  Lexing code must be robust in the face of invalid
907 encoding.
908
909 The actual C<SvUTF8> flag of the L</PL_parser-E<gt>linestr> scalar
910 is significant, but not the whole story regarding the input character
911 encoding.  Normally, when a file is being read, the scalar contains octets
912 and its C<SvUTF8> flag is off, but the octets should be interpreted as
913 UTF-8 if the C<use utf8> pragma is in effect.  During a string eval,
914 however, the scalar may have the C<SvUTF8> flag on, and in this case its
915 octets should be interpreted as UTF-8 unless the C<use bytes> pragma
916 is in effect.  This logic may change in the future; use this function
917 instead of implementing the logic yourself.
918
919 =cut
920 */
921
922 bool
923 Perl_lex_bufutf8(pTHX)
924 {
925     return UTF;
926 }
927
928 /*
929 =for apidoc Amx|char *|lex_grow_linestr|STRLEN len
930
931 Reallocates the lexer buffer (L</PL_parser-E<gt>linestr>) to accommodate
932 at least C<len> octets (including terminating C<NUL>).  Returns a
933 pointer to the reallocated buffer.  This is necessary before making
934 any direct modification of the buffer that would increase its length.
935 L</lex_stuff_pvn> provides a more convenient way to insert text into
936 the buffer.
937
938 Do not use C<SvGROW> or C<sv_grow> directly on C<PL_parser-E<gt>linestr>;
939 this function updates all of the lexer's variables that point directly
940 into the buffer.
941
942 =cut
943 */
944
945 char *
946 Perl_lex_grow_linestr(pTHX_ STRLEN len)
947 {
948     SV *linestr;
949     char *buf;
950     STRLEN bufend_pos, bufptr_pos, oldbufptr_pos, oldoldbufptr_pos;
951     STRLEN linestart_pos, last_uni_pos, last_lop_pos, re_eval_start_pos;
952     bool current;
953
954     linestr = PL_parser->linestr;
955     buf = SvPVX(linestr);
956     if (len <= SvLEN(linestr))
957         return buf;
958
959     /* Is the lex_shared linestr SV the same as the current linestr SV?
960      * Only in this case does re_eval_start need adjusting, since it
961      * points within lex_shared->ls_linestr's buffer */
962     current = (   !PL_parser->lex_shared->ls_linestr
963                || linestr == PL_parser->lex_shared->ls_linestr);
964
965     bufend_pos = PL_parser->bufend - buf;
966     bufptr_pos = PL_parser->bufptr - buf;
967     oldbufptr_pos = PL_parser->oldbufptr - buf;
968     oldoldbufptr_pos = PL_parser->oldoldbufptr - buf;
969     linestart_pos = PL_parser->linestart - buf;
970     last_uni_pos = PL_parser->last_uni ? PL_parser->last_uni - buf : 0;
971     last_lop_pos = PL_parser->last_lop ? PL_parser->last_lop - buf : 0;
972     re_eval_start_pos = (current && PL_parser->lex_shared->re_eval_start) ?
973                             PL_parser->lex_shared->re_eval_start - buf : 0;
974
975     buf = sv_grow(linestr, len);
976
977     PL_parser->bufend = buf + bufend_pos;
978     PL_parser->bufptr = buf + bufptr_pos;
979     PL_parser->oldbufptr = buf + oldbufptr_pos;
980     PL_parser->oldoldbufptr = buf + oldoldbufptr_pos;
981     PL_parser->linestart = buf + linestart_pos;
982     if (PL_parser->last_uni)
983         PL_parser->last_uni = buf + last_uni_pos;
984     if (PL_parser->last_lop)
985         PL_parser->last_lop = buf + last_lop_pos;
986     if (current && PL_parser->lex_shared->re_eval_start)
987         PL_parser->lex_shared->re_eval_start  = buf + re_eval_start_pos;
988     return buf;
989 }
990
991 /*
992 =for apidoc Amx|void|lex_stuff_pvn|const char *pv|STRLEN len|U32 flags
993
994 Insert characters into the lexer buffer (L</PL_parser-E<gt>linestr>),
995 immediately after the current lexing point (L</PL_parser-E<gt>bufptr>),
996 reallocating the buffer if necessary.  This means that lexing code that
997 runs later will see the characters as if they had appeared in the input.
998 It is not recommended to do this as part of normal parsing, and most
999 uses of this facility run the risk of the inserted characters being
1000 interpreted in an unintended manner.
1001
1002 The string to be inserted is represented by C<len> octets starting
1003 at C<pv>.  These octets are interpreted as either UTF-8 or Latin-1,
1004 according to whether the C<LEX_STUFF_UTF8> flag is set in C<flags>.
1005 The characters are recoded for the lexer buffer, according to how the
1006 buffer is currently being interpreted (L</lex_bufutf8>).  If a string
1007 to be inserted is available as a Perl scalar, the L</lex_stuff_sv>
1008 function is more convenient.
1009
1010 =cut
1011 */
1012
1013 void
1014 Perl_lex_stuff_pvn(pTHX_ const char *pv, STRLEN len, U32 flags)
1015 {
1016     dVAR;
1017     char *bufptr;
1018     PERL_ARGS_ASSERT_LEX_STUFF_PVN;
1019     if (flags & ~(LEX_STUFF_UTF8))
1020         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_stuff_pvn");
1021     if (UTF) {
1022         if (flags & LEX_STUFF_UTF8) {
1023             goto plain_copy;
1024         } else {
1025             STRLEN highhalf = 0;    /* Count of variants */
1026             const char *p, *e = pv+len;
1027             for (p = pv; p != e; p++) {
1028                 if (! UTF8_IS_INVARIANT(*p)) {
1029                     highhalf++;
1030                 }
1031             }
1032             if (!highhalf)
1033                 goto plain_copy;
1034             lex_grow_linestr(SvCUR(PL_parser->linestr)+1+len+highhalf);
1035             bufptr = PL_parser->bufptr;
1036             Move(bufptr, bufptr+len+highhalf, PL_parser->bufend+1-bufptr, char);
1037             SvCUR_set(PL_parser->linestr,
1038                 SvCUR(PL_parser->linestr) + len+highhalf);
1039             PL_parser->bufend += len+highhalf;
1040             for (p = pv; p != e; p++) {
1041                 append_utf8_from_native_byte(*p, (U8 **) &bufptr);
1042             }
1043         }
1044     } else {
1045         if (flags & LEX_STUFF_UTF8) {
1046             STRLEN highhalf = 0;
1047             const char *p, *e = pv+len;
1048             for (p = pv; p != e; p++) {
1049                 U8 c = (U8)*p;
1050                 if (UTF8_IS_ABOVE_LATIN1(c)) {
1051                     Perl_croak(aTHX_ "Lexing code attempted to stuff "
1052                                 "non-Latin-1 character into Latin-1 input");
1053                 } else if (UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(p, e)) {
1054                     p++;
1055                     highhalf++;
1056                 } else assert(UTF8_IS_INVARIANT(c));
1057             }
1058             if (!highhalf)
1059                 goto plain_copy;
1060             lex_grow_linestr(SvCUR(PL_parser->linestr)+1+len-highhalf);
1061             bufptr = PL_parser->bufptr;
1062             Move(bufptr, bufptr+len-highhalf, PL_parser->bufend+1-bufptr, char);
1063             SvCUR_set(PL_parser->linestr,
1064                 SvCUR(PL_parser->linestr) + len-highhalf);
1065             PL_parser->bufend += len-highhalf;
1066             p = pv;
1067             while (p < e) {
1068                 if (UTF8_IS_INVARIANT(*p)) {
1069                     *bufptr++ = *p;
1070                     p++;
1071                 }
1072                 else {
1073                     assert(p < e -1 );
1074                     *bufptr++ = EIGHT_BIT_UTF8_TO_NATIVE(*p, *(p+1));
1075                     p += 2;
1076                 }
1077             }
1078         } else {
1079           plain_copy:
1080             lex_grow_linestr(SvCUR(PL_parser->linestr)+1+len);
1081             bufptr = PL_parser->bufptr;
1082             Move(bufptr, bufptr+len, PL_parser->bufend+1-bufptr, char);
1083             SvCUR_set(PL_parser->linestr, SvCUR(PL_parser->linestr) + len);
1084             PL_parser->bufend += len;
1085             Copy(pv, bufptr, len, char);
1086         }
1087     }
1088 }
1089
1090 /*
1091 =for apidoc Amx|void|lex_stuff_pv|const char *pv|U32 flags
1092
1093 Insert characters into the lexer buffer (L</PL_parser-E<gt>linestr>),
1094 immediately after the current lexing point (L</PL_parser-E<gt>bufptr>),
1095 reallocating the buffer if necessary.  This means that lexing code that
1096 runs later will see the characters as if they had appeared in the input.
1097 It is not recommended to do this as part of normal parsing, and most
1098 uses of this facility run the risk of the inserted characters being
1099 interpreted in an unintended manner.
1100
1101 The string to be inserted is represented by octets starting at C<pv>
1102 and continuing to the first nul.  These octets are interpreted as either
1103 UTF-8 or Latin-1, according to whether the C<LEX_STUFF_UTF8> flag is set
1104 in C<flags>.  The characters are recoded for the lexer buffer, according
1105 to how the buffer is currently being interpreted (L</lex_bufutf8>).
1106 If it is not convenient to nul-terminate a string to be inserted, the
1107 L</lex_stuff_pvn> function is more appropriate.
1108
1109 =cut
1110 */
1111
1112 void
1113 Perl_lex_stuff_pv(pTHX_ const char *pv, U32 flags)
1114 {
1115     PERL_ARGS_ASSERT_LEX_STUFF_PV;
1116     lex_stuff_pvn(pv, strlen(pv), flags);
1117 }
1118
1119 /*
1120 =for apidoc Amx|void|lex_stuff_sv|SV *sv|U32 flags
1121
1122 Insert characters into the lexer buffer (L</PL_parser-E<gt>linestr>),
1123 immediately after the current lexing point (L</PL_parser-E<gt>bufptr>),
1124 reallocating the buffer if necessary.  This means that lexing code that
1125 runs later will see the characters as if they had appeared in the input.
1126 It is not recommended to do this as part of normal parsing, and most
1127 uses of this facility run the risk of the inserted characters being
1128 interpreted in an unintended manner.
1129
1130 The string to be inserted is the string value of C<sv>.  The characters
1131 are recoded for the lexer buffer, according to how the buffer is currently
1132 being interpreted (L</lex_bufutf8>).  If a string to be inserted is
1133 not already a Perl scalar, the L</lex_stuff_pvn> function avoids the
1134 need to construct a scalar.
1135
1136 =cut
1137 */
1138
1139 void
1140 Perl_lex_stuff_sv(pTHX_ SV *sv, U32 flags)
1141 {
1142     char *pv;
1143     STRLEN len;
1144     PERL_ARGS_ASSERT_LEX_STUFF_SV;
1145     if (flags)
1146         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_stuff_sv");
1147     pv = SvPV(sv, len);
1148     lex_stuff_pvn(pv, len, flags | (SvUTF8(sv) ? LEX_STUFF_UTF8 : 0));
1149 }
1150
1151 /*
1152 =for apidoc Amx|void|lex_unstuff|char *ptr
1153
1154 Discards text about to be lexed, from L</PL_parser-E<gt>bufptr> up to
1155 C<ptr>.  Text following C<ptr> will be moved, and the buffer shortened.
1156 This hides the discarded text from any lexing code that runs later,
1157 as if the text had never appeared.
1158
1159 This is not the normal way to consume lexed text.  For that, use
1160 L</lex_read_to>.
1161
1162 =cut
1163 */
1164
1165 void
1166 Perl_lex_unstuff(pTHX_ char *ptr)
1167 {
1168     char *buf, *bufend;
1169     STRLEN unstuff_len;
1170     PERL_ARGS_ASSERT_LEX_UNSTUFF;
1171     buf = PL_parser->bufptr;
1172     if (ptr < buf)
1173         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_unstuff");
1174     if (ptr == buf)
1175         return;
1176     bufend = PL_parser->bufend;
1177     if (ptr > bufend)
1178         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_unstuff");
1179     unstuff_len = ptr - buf;
1180     Move(ptr, buf, bufend+1-ptr, char);
1181     SvCUR_set(PL_parser->linestr, SvCUR(PL_parser->linestr) - unstuff_len);
1182     PL_parser->bufend = bufend - unstuff_len;
1183 }
1184
1185 /*
1186 =for apidoc Amx|void|lex_read_to|char *ptr
1187
1188 Consume text in the lexer buffer, from L</PL_parser-E<gt>bufptr> up
1189 to C<ptr>.  This advances L</PL_parser-E<gt>bufptr> to match C<ptr>,
1190 performing the correct bookkeeping whenever a newline character is passed.
1191 This is the normal way to consume lexed text.
1192
1193 Interpretation of the buffer's octets can be abstracted out by
1194 using the slightly higher-level functions L</lex_peek_unichar> and
1195 L</lex_read_unichar>.
1196
1197 =cut
1198 */
1199
1200 void
1201 Perl_lex_read_to(pTHX_ char *ptr)
1202 {
1203     char *s;
1204     PERL_ARGS_ASSERT_LEX_READ_TO;
1205     s = PL_parser->bufptr;
1206     if (ptr < s || ptr > PL_parser->bufend)
1207         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_read_to");
1208     for (; s != ptr; s++)
1209         if (*s == '\n') {
1210             COPLINE_INC_WITH_HERELINES;
1211             PL_parser->linestart = s+1;
1212         }
1213     PL_parser->bufptr = ptr;
1214 }
1215
1216 /*
1217 =for apidoc Amx|void|lex_discard_to|char *ptr
1218
1219 Discards the first part of the L</PL_parser-E<gt>linestr> buffer,
1220 up to C<ptr>.  The remaining content of the buffer will be moved, and
1221 all pointers into the buffer updated appropriately.  C<ptr> must not
1222 be later in the buffer than the position of L</PL_parser-E<gt>bufptr>:
1223 it is not permitted to discard text that has yet to be lexed.
1224
1225 Normally it is not necessarily to do this directly, because it suffices to
1226 use the implicit discarding behaviour of L</lex_next_chunk> and things
1227 based on it.  However, if a token stretches across multiple lines,
1228 and the lexing code has kept multiple lines of text in the buffer for
1229 that purpose, then after completion of the token it would be wise to
1230 explicitly discard the now-unneeded earlier lines, to avoid future
1231 multi-line tokens growing the buffer without bound.
1232
1233 =cut
1234 */
1235
1236 void
1237 Perl_lex_discard_to(pTHX_ char *ptr)
1238 {
1239     char *buf;
1240     STRLEN discard_len;
1241     PERL_ARGS_ASSERT_LEX_DISCARD_TO;
1242     buf = SvPVX(PL_parser->linestr);
1243     if (ptr < buf)
1244         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_discard_to");
1245     if (ptr == buf)
1246         return;
1247     if (ptr > PL_parser->bufptr)
1248         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_discard_to");
1249     discard_len = ptr - buf;
1250     if (PL_parser->oldbufptr < ptr)
1251         PL_parser->oldbufptr = ptr;
1252     if (PL_parser->oldoldbufptr < ptr)
1253         PL_parser->oldoldbufptr = ptr;
1254     if (PL_parser->last_uni && PL_parser->last_uni < ptr)
1255         PL_parser->last_uni = NULL;
1256     if (PL_parser->last_lop && PL_parser->last_lop < ptr)
1257         PL_parser->last_lop = NULL;
1258     Move(ptr, buf, PL_parser->bufend+1-ptr, char);
1259     SvCUR_set(PL_parser->linestr, SvCUR(PL_parser->linestr) - discard_len);
1260     PL_parser->bufend -= discard_len;
1261     PL_parser->bufptr -= discard_len;
1262     PL_parser->oldbufptr -= discard_len;
1263     PL_parser->oldoldbufptr -= discard_len;
1264     if (PL_parser->last_uni)
1265         PL_parser->last_uni -= discard_len;
1266     if (PL_parser->last_lop)
1267         PL_parser->last_lop -= discard_len;
1268 }
1269
1270 void
1271 Perl_notify_parser_that_changed_to_utf8(pTHX)
1272 {
1273     /* Called when $^H is changed to indicate that HINT_UTF8 has changed from
1274      * off to on.  At compile time, this has the effect of entering a 'use
1275      * utf8' section.  This means that any input was not previously checked for
1276      * UTF-8 (because it was off), but now we do need to check it, or our
1277      * assumptions about the input being sane could be wrong, and we could
1278      * segfault.  This routine just sets a flag so that the next time we look
1279      * at the input we do the well-formed UTF-8 check.  If we aren't in the
1280      * proper phase, there may not be a parser object, but if there is, setting
1281      * the flag is harmless */
1282
1283     if (PL_parser) {
1284         PL_parser->recheck_utf8_validity = TRUE;
1285     }
1286 }
1287
1288 /*
1289 =for apidoc Amx|bool|lex_next_chunk|U32 flags
1290
1291 Reads in the next chunk of text to be lexed, appending it to
1292 L</PL_parser-E<gt>linestr>.  This should be called when lexing code has
1293 looked to the end of the current chunk and wants to know more.  It is
1294 usual, but not necessary, for lexing to have consumed the entirety of
1295 the current chunk at this time.
1296
1297 If L</PL_parser-E<gt>bufptr> is pointing to the very end of the current
1298 chunk (i.e., the current chunk has been entirely consumed), normally the
1299 current chunk will be discarded at the same time that the new chunk is
1300 read in.  If C<flags> has the C<LEX_KEEP_PREVIOUS> bit set, the current chunk
1301 will not be discarded.  If the current chunk has not been entirely
1302 consumed, then it will not be discarded regardless of the flag.
1303
1304 Returns true if some new text was added to the buffer, or false if the
1305 buffer has reached the end of the input text.
1306
1307 =cut
1308 */
1309
1310 #define LEX_FAKE_EOF 0x80000000
1311 #define LEX_NO_TERM  0x40000000 /* here-doc */
1312
1313 bool
1314 Perl_lex_next_chunk(pTHX_ U32 flags)
1315 {
1316     SV *linestr;
1317     char *buf;
1318     STRLEN old_bufend_pos, new_bufend_pos;
1319     STRLEN bufptr_pos, oldbufptr_pos, oldoldbufptr_pos;
1320     STRLEN linestart_pos, last_uni_pos, last_lop_pos;
1321     bool got_some_for_debugger = 0;
1322     bool got_some;
1323
1324     if (flags & ~(LEX_KEEP_PREVIOUS|LEX_FAKE_EOF|LEX_NO_TERM))
1325         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_next_chunk");
1326     if (!(flags & LEX_NO_TERM) && PL_lex_inwhat)
1327         return FALSE;
1328     linestr = PL_parser->linestr;
1329     buf = SvPVX(linestr);
1330     if (!(flags & LEX_KEEP_PREVIOUS)
1331           && PL_parser->bufptr == PL_parser->bufend)
1332     {
1333         old_bufend_pos = bufptr_pos = oldbufptr_pos = oldoldbufptr_pos = 0;
1334         linestart_pos = 0;
1335         if (PL_parser->last_uni != PL_parser->bufend)
1336             PL_parser->last_uni = NULL;
1337         if (PL_parser->last_lop != PL_parser->bufend)
1338             PL_parser->last_lop = NULL;
1339         last_uni_pos = last_lop_pos = 0;
1340         *buf = 0;
1341         SvCUR(linestr) = 0;
1342     } else {
1343         old_bufend_pos = PL_parser->bufend - buf;
1344         bufptr_pos = PL_parser->bufptr - buf;
1345         oldbufptr_pos = PL_parser->oldbufptr - buf;
1346         oldoldbufptr_pos = PL_parser->oldoldbufptr - buf;
1347         linestart_pos = PL_parser->linestart - buf;
1348         last_uni_pos = PL_parser->last_uni ? PL_parser->last_uni - buf : 0;
1349         last_lop_pos = PL_parser->last_lop ? PL_parser->last_lop - buf : 0;
1350     }
1351     if (flags & LEX_FAKE_EOF) {
1352         goto eof;
1353     } else if (!PL_parser->rsfp && !PL_parser->filtered) {
1354         got_some = 0;
1355     } else if (filter_gets(linestr, old_bufend_pos)) {
1356         got_some = 1;
1357         got_some_for_debugger = 1;
1358     } else if (flags & LEX_NO_TERM) {
1359         got_some = 0;
1360     } else {
1361         if (!SvPOK(linestr))   /* can get undefined by filter_gets */
1362             SvPVCLEAR(linestr);
1363         eof:
1364         /* End of real input.  Close filehandle (unless it was STDIN),
1365          * then add implicit termination.
1366          */
1367         if (PL_parser->lex_flags & LEX_DONT_CLOSE_RSFP)
1368             PerlIO_clearerr(PL_parser->rsfp);
1369         else if (PL_parser->rsfp)
1370             (void)PerlIO_close(PL_parser->rsfp);
1371         PL_parser->rsfp = NULL;
1372         PL_parser->in_pod = PL_parser->filtered = 0;
1373         if (!PL_in_eval && PL_minus_p) {
1374             sv_catpvs(linestr,
1375                 /*{*/";}continue{print or die qq(-p destination: $!\\n);}");
1376             PL_minus_n = PL_minus_p = 0;
1377         } else if (!PL_in_eval && PL_minus_n) {
1378             sv_catpvs(linestr, /*{*/";}");
1379             PL_minus_n = 0;
1380         } else
1381             sv_catpvs(linestr, ";");
1382         got_some = 1;
1383     }
1384     buf = SvPVX(linestr);
1385     new_bufend_pos = SvCUR(linestr);
1386     PL_parser->bufend = buf + new_bufend_pos;
1387     PL_parser->bufptr = buf + bufptr_pos;
1388
1389     if (UTF) {
1390         const U8* first_bad_char_loc;
1391         if (UNLIKELY(! is_utf8_string_loc(
1392                             (U8 *) PL_parser->bufptr,
1393                                    PL_parser->bufend - PL_parser->bufptr,
1394                                    &first_bad_char_loc)))
1395         {
1396             _force_out_malformed_utf8_message(first_bad_char_loc,
1397                                               (U8 *) PL_parser->bufend,
1398                                               0,
1399                                               1 /* 1 means die */ );
1400             NOT_REACHED; /* NOTREACHED */
1401         }
1402     }
1403
1404     PL_parser->oldbufptr = buf + oldbufptr_pos;
1405     PL_parser->oldoldbufptr = buf + oldoldbufptr_pos;
1406     PL_parser->linestart = buf + linestart_pos;
1407     if (PL_parser->last_uni)
1408         PL_parser->last_uni = buf + last_uni_pos;
1409     if (PL_parser->last_lop)
1410         PL_parser->last_lop = buf + last_lop_pos;
1411     if (PL_parser->preambling != NOLINE) {
1412         CopLINE_set(PL_curcop, PL_parser->preambling + 1);
1413         PL_parser->preambling = NOLINE;
1414     }
1415     if (   got_some_for_debugger
1416         && PERLDB_LINE_OR_SAVESRC
1417         && PL_curstash != PL_debstash)
1418     {
1419         /* debugger active and we're not compiling the debugger code,
1420          * so store the line into the debugger's array of lines
1421          */
1422         update_debugger_info(NULL, buf+old_bufend_pos,
1423             new_bufend_pos-old_bufend_pos);
1424     }
1425     return got_some;
1426 }
1427
1428 /*
1429 =for apidoc Amx|I32|lex_peek_unichar|U32 flags
1430
1431 Looks ahead one (Unicode) character in the text currently being lexed.
1432 Returns the codepoint (unsigned integer value) of the next character,
1433 or -1 if lexing has reached the end of the input text.  To consume the
1434 peeked character, use L</lex_read_unichar>.
1435
1436 If the next character is in (or extends into) the next chunk of input
1437 text, the next chunk will be read in.  Normally the current chunk will be
1438 discarded at the same time, but if C<flags> has the C<LEX_KEEP_PREVIOUS>
1439 bit set, then the current chunk will not be discarded.
1440
1441 If the input is being interpreted as UTF-8 and a UTF-8 encoding error
1442 is encountered, an exception is generated.
1443
1444 =cut
1445 */
1446
1447 I32
1448 Perl_lex_peek_unichar(pTHX_ U32 flags)
1449 {
1450     dVAR;
1451     char *s, *bufend;
1452     if (flags & ~(LEX_KEEP_PREVIOUS))
1453         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_peek_unichar");
1454     s = PL_parser->bufptr;
1455     bufend = PL_parser->bufend;
1456     if (UTF) {
1457         U8 head;
1458         I32 unichar;
1459         STRLEN len, retlen;
1460         if (s == bufend) {
1461             if (!lex_next_chunk(flags))
1462                 return -1;
1463             s = PL_parser->bufptr;
1464             bufend = PL_parser->bufend;
1465         }
1466         head = (U8)*s;
1467         if (UTF8_IS_INVARIANT(head))
1468             return head;
1469         if (UTF8_IS_START(head)) {
1470             len = UTF8SKIP(&head);
1471             while ((STRLEN)(bufend-s) < len) {
1472                 if (!lex_next_chunk(flags | LEX_KEEP_PREVIOUS))
1473                     break;
1474                 s = PL_parser->bufptr;
1475                 bufend = PL_parser->bufend;
1476             }
1477         }
1478         unichar = utf8n_to_uvchr((U8*)s, bufend-s, &retlen, UTF8_CHECK_ONLY);
1479         if (retlen == (STRLEN)-1) {
1480             _force_out_malformed_utf8_message((U8 *) s,
1481                                               (U8 *) bufend,
1482                                               0,
1483                                               1 /* 1 means die */ );
1484             NOT_REACHED; /* NOTREACHED */
1485         }
1486         return unichar;
1487     } else {
1488         if (s == bufend) {
1489             if (!lex_next_chunk(flags))
1490                 return -1;
1491             s = PL_parser->bufptr;
1492         }
1493         return (U8)*s;
1494     }
1495 }
1496
1497 /*
1498 =for apidoc Amx|I32|lex_read_unichar|U32 flags
1499
1500 Reads the next (Unicode) character in the text currently being lexed.
1501 Returns the codepoint (unsigned integer value) of the character read,
1502 and moves L</PL_parser-E<gt>bufptr> past the character, or returns -1
1503 if lexing has reached the end of the input text.  To non-destructively
1504 examine the next character, use L</lex_peek_unichar> instead.
1505
1506 If the next character is in (or extends into) the next chunk of input
1507 text, the next chunk will be read in.  Normally the current chunk will be
1508 discarded at the same time, but if C<flags> has the C<LEX_KEEP_PREVIOUS>
1509 bit set, then the current chunk will not be discarded.
1510
1511 If the input is being interpreted as UTF-8 and a UTF-8 encoding error
1512 is encountered, an exception is generated.
1513
1514 =cut
1515 */
1516
1517 I32
1518 Perl_lex_read_unichar(pTHX_ U32 flags)
1519 {
1520     I32 c;
1521     if (flags & ~(LEX_KEEP_PREVIOUS))
1522         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_read_unichar");
1523     c = lex_peek_unichar(flags);
1524     if (c != -1) {
1525         if (c == '\n')
1526             COPLINE_INC_WITH_HERELINES;
1527         if (UTF)
1528             PL_parser->bufptr += UTF8SKIP(PL_parser->bufptr);
1529         else
1530             ++(PL_parser->bufptr);
1531     }
1532     return c;
1533 }
1534
1535 /*
1536 =for apidoc Amx|void|lex_read_space|U32 flags
1537
1538 Reads optional spaces, in Perl style, in the text currently being
1539 lexed.  The spaces may include ordinary whitespace characters and
1540 Perl-style comments.  C<#line> directives are processed if encountered.
1541 L</PL_parser-E<gt>bufptr> is moved past the spaces, so that it points
1542 at a non-space character (or the end of the input text).
1543
1544 If spaces extend into the next chunk of input text, the next chunk will
1545 be read in.  Normally the current chunk will be discarded at the same
1546 time, but if C<flags> has the C<LEX_KEEP_PREVIOUS> bit set, then the current
1547 chunk will not be discarded.
1548
1549 =cut
1550 */
1551
1552 #define LEX_NO_INCLINE    0x40000000
1553 #define LEX_NO_NEXT_CHUNK 0x80000000
1554
1555 void
1556 Perl_lex_read_space(pTHX_ U32 flags)
1557 {
1558     char *s, *bufend;
1559     const bool can_incline = !(flags & LEX_NO_INCLINE);
1560     bool need_incline = 0;
1561     if (flags & ~(LEX_KEEP_PREVIOUS|LEX_NO_NEXT_CHUNK|LEX_NO_INCLINE))
1562         Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_read_space");
1563     s = PL_parser->bufptr;
1564     bufend = PL_parser->bufend;
1565     while (1) {
1566         char c = *s;
1567         if (c == '#') {
1568             do {
1569                 c = *++s;
1570             } while (!(c == '\n' || (c == 0 && s == bufend)));
1571         } else if (c == '\n') {
1572             s++;
1573             if (can_incline) {
1574                 PL_parser->linestart = s;
1575                 if (s == bufend)
1576                     need_incline = 1;
1577                 else
1578                     incline(s, bufend);
1579             }
1580         } else if (isSPACE(c)) {
1581             s++;
1582         } else if (c == 0 && s == bufend) {
1583             bool got_more;
1584             line_t l;
1585             if (flags & LEX_NO_NEXT_CHUNK)
1586                 break;
1587             PL_parser->bufptr = s;
1588             l = CopLINE(PL_curcop);
1589             CopLINE(PL_curcop) += PL_parser->herelines + 1;
1590             got_more = lex_next_chunk(flags);
1591             CopLINE_set(PL_curcop, l);
1592             s = PL_parser->bufptr;
1593             bufend = PL_parser->bufend;
1594             if (!got_more)
1595                 break;
1596             if (can_incline && need_incline && PL_parser->rsfp) {
1597                 incline(s, bufend);
1598                 need_incline = 0;
1599             }
1600         } else if (!c) {
1601             s++;
1602         } else {
1603             break;
1604         }
1605     }
1606     PL_parser->bufptr = s;
1607 }
1608
1609 /*
1610
1611 =for apidoc EXMp|bool|validate_proto|SV *name|SV *proto|bool warn
1612
1613 This function performs syntax checking on a prototype, C<proto>.
1614 If C<warn> is true, any illegal characters or mismatched brackets
1615 will trigger illegalproto warnings, declaring that they were
1616 detected in the prototype for C<name>.
1617
1618 The return value is C<true> if this is a valid prototype, and
1619 C<false> if it is not, regardless of whether C<warn> was C<true> or
1620 C<false>.
1621
1622 Note that C<NULL> is a valid C<proto> and will always return C<true>.
1623
1624 =cut
1625
1626  */
1627
1628 bool
1629 Perl_validate_proto(pTHX_ SV *name, SV *proto, bool warn, bool curstash)
1630 {
1631     STRLEN len, origlen;
1632     char *p;
1633     bool bad_proto = FALSE;
1634     bool in_brackets = FALSE;
1635     bool after_slash = FALSE;
1636     char greedy_proto = ' ';
1637     bool proto_after_greedy_proto = FALSE;
1638     bool must_be_last = FALSE;
1639     bool underscore = FALSE;
1640     bool bad_proto_after_underscore = FALSE;
1641
1642     PERL_ARGS_ASSERT_VALIDATE_PROTO;
1643
1644     if (!proto)
1645         return TRUE;
1646
1647     p = SvPV(proto, len);
1648     origlen = len;
1649     for (; len--; p++) {
1650         if (!isSPACE(*p)) {
1651             if (must_be_last)
1652                 proto_after_greedy_proto = TRUE;
1653             if (underscore) {
1654                 if (!strchr(";@%", *p))
1655                     bad_proto_after_underscore = TRUE;
1656                 underscore = FALSE;
1657             }
1658             if (!strchr("$@%*;[]&\\_+", *p) || *p == '\0') {
1659                 bad_proto = TRUE;
1660             }
1661             else {
1662                 if (*p == '[')
1663                     in_brackets = TRUE;
1664                 else if (*p == ']')
1665                     in_brackets = FALSE;
1666                 else if ((*p == '@' || *p == '%')
1667                          && !after_slash
1668                          && !in_brackets )
1669                 {
1670                     must_be_last = TRUE;
1671                     greedy_proto = *p;
1672                 }
1673                 else if (*p == '_')
1674                     underscore = TRUE;
1675             }
1676             if (*p == '\\')
1677                 after_slash = TRUE;
1678             else
1679                 after_slash = FALSE;
1680         }
1681     }
1682
1683     if (warn) {
1684         SV *tmpsv = newSVpvs_flags("", SVs_TEMP);
1685         p -= origlen;
1686         p = SvUTF8(proto)
1687             ? sv_uni_display(tmpsv, newSVpvn_flags(p, origlen, SVs_TEMP | SVf_UTF8),
1688                              origlen, UNI_DISPLAY_ISPRINT)
1689             : pv_pretty(tmpsv, p, origlen, 60, NULL, NULL, PERL_PV_ESCAPE_NONASCII);
1690
1691         if (curstash && !memchr(SvPVX(name), ':', SvCUR(name))) {
1692             SV *name2 = sv_2mortal(newSVsv(PL_curstname));
1693             sv_catpvs(name2, "::");
1694             sv_catsv(name2, (SV *)name);
1695             name = name2;
1696         }
1697
1698         if (proto_after_greedy_proto)
1699             Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO),
1700                         "Prototype after '%c' for %" SVf " : %s",
1701                         greedy_proto, SVfARG(name), p);
1702         if (in_brackets)
1703             Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO),
1704                         "Missing ']' in prototype for %" SVf " : %s",
1705                         SVfARG(name), p);
1706         if (bad_proto)
1707             Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO),
1708                         "Illegal character in prototype for %" SVf " : %s",
1709                         SVfARG(name), p);
1710         if (bad_proto_after_underscore)
1711             Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO),
1712                         "Illegal character after '_' in prototype for %" SVf " : %s",
1713                         SVfARG(name), p);
1714     }
1715
1716     return (! (proto_after_greedy_proto || bad_proto) );
1717 }
1718
1719 /*
1720  * S_incline
1721  * This subroutine has nothing to do with tilting, whether at windmills
1722  * or pinball tables.  Its name is short for "increment line".  It
1723  * increments the current line number in CopLINE(PL_curcop) and checks
1724  * to see whether the line starts with a comment of the form
1725  *    # line 500 "foo.pm"
1726  * If so, it sets the current line number and file to the values in the comment.
1727  */
1728
1729 STATIC void
1730 S_incline(pTHX_ const char *s, const char *end)
1731 {
1732     const char *t;
1733     const char *n;
1734     const char *e;
1735     line_t line_num;
1736     UV uv;
1737
1738     PERL_ARGS_ASSERT_INCLINE;
1739
1740     assert(end >= s);
1741
1742     COPLINE_INC_WITH_HERELINES;
1743     if (!PL_rsfp && !PL_parser->filtered && PL_lex_state == LEX_NORMAL
1744      && s+1 == PL_bufend && *s == ';') {
1745         /* fake newline in string eval */
1746         CopLINE_dec(PL_curcop);
1747         return;
1748     }
1749     if (*s++ != '#')
1750         return;
1751     while (SPACE_OR_TAB(*s))
1752         s++;
1753     if (memBEGINs(s, (STRLEN) (end - s), "line"))
1754         s += sizeof("line") - 1;
1755     else
1756         return;
1757     if (SPACE_OR_TAB(*s))
1758         s++;
1759     else
1760         return;
1761     while (SPACE_OR_TAB(*s))
1762         s++;
1763     if (!isDIGIT(*s))
1764         return;
1765
1766     n = s;
1767     while (isDIGIT(*s))
1768         s++;
1769     if (!SPACE_OR_TAB(*s) && *s != '\r' && *s != '\n' && *s != '\0')
1770         return;
1771     while (SPACE_OR_TAB(*s))
1772         s++;
1773     if (*s == '"' && (t = (char *) memchr(s+1, '"', end - s))) {
1774         s++;
1775         e = t + 1;
1776     }
1777     else {
1778         t = s;
1779         while (*t && !isSPACE(*t))
1780             t++;
1781         e = t;
1782     }
1783     while (SPACE_OR_TAB(*e) || *e == '\r' || *e == '\f')
1784         e++;
1785     if (*e != '\n' && *e != '\0')
1786         return;         /* false alarm */
1787
1788     if (!grok_atoUV(n, &uv, &e))
1789         return;
1790     line_num = ((line_t)uv) - 1;
1791
1792     if (t - s > 0) {
1793         const STRLEN len = t - s;
1794
1795         if (!PL_rsfp && !PL_parser->filtered) {
1796             /* must copy *{"::_<(eval N)[oldfilename:L]"}
1797              * to *{"::_<newfilename"} */
1798             /* However, the long form of evals is only turned on by the
1799                debugger - usually they're "(eval %lu)" */
1800             GV * const cfgv = CopFILEGV(PL_curcop);
1801             if (cfgv) {
1802                 char smallbuf[128];
1803                 STRLEN tmplen2 = len;
1804                 char *tmpbuf2;
1805                 GV *gv2;
1806
1807                 if (tmplen2 + 2 <= sizeof smallbuf)
1808                     tmpbuf2 = smallbuf;
1809                 else
1810                     Newx(tmpbuf2, tmplen2 + 2, char);
1811
1812                 tmpbuf2[0] = '_';
1813                 tmpbuf2[1] = '<';
1814
1815                 memcpy(tmpbuf2 + 2, s, tmplen2);
1816                 tmplen2 += 2;
1817
1818                 gv2 = *(GV**)hv_fetch(PL_defstash, tmpbuf2, tmplen2, TRUE);
1819                 if (!isGV(gv2)) {
1820                     gv_init(gv2, PL_defstash, tmpbuf2, tmplen2, FALSE);
1821                     /* adjust ${"::_<newfilename"} to store the new file name */
1822                     GvSV(gv2) = newSVpvn(tmpbuf2 + 2, tmplen2 - 2);
1823                     /* The line number may differ. If that is the case,
1824                        alias the saved lines that are in the array.
1825                        Otherwise alias the whole array. */
1826                     if (CopLINE(PL_curcop) == line_num) {
1827                         GvHV(gv2) = MUTABLE_HV(SvREFCNT_inc(GvHV(cfgv)));
1828                         GvAV(gv2) = MUTABLE_AV(SvREFCNT_inc(GvAV(cfgv)));
1829                     }
1830                     else if (GvAV(cfgv)) {
1831                         AV * const av = GvAV(cfgv);
1832                         const I32 start = CopLINE(PL_curcop)+1;
1833                         I32 items = AvFILLp(av) - start;
1834                         if (items > 0) {
1835                             AV * const av2 = GvAVn(gv2);
1836                             SV **svp = AvARRAY(av) + start;
1837                             I32 l = (I32)line_num+1;
1838                             while (items--)
1839                                 av_store(av2, l++, SvREFCNT_inc(*svp++));
1840                         }
1841                     }
1842                 }
1843
1844                 if (tmpbuf2 != smallbuf) Safefree(tmpbuf2);
1845             }
1846         }
1847         CopFILE_free(PL_curcop);
1848         CopFILE_setn(PL_curcop, s, len);
1849     }
1850     CopLINE_set(PL_curcop, line_num);
1851 }
1852
1853 STATIC void
1854 S_update_debugger_info(pTHX_ SV *orig_sv, const char *const buf, STRLEN len)
1855 {
1856     AV *av = CopFILEAVx(PL_curcop);
1857     if (av) {
1858         SV * sv;
1859         if (PL_parser->preambling == NOLINE) sv = newSV_type(SVt_PVMG);
1860         else {
1861             sv = *av_fetch(av, 0, 1);
1862             SvUPGRADE(sv, SVt_PVMG);
1863         }
1864         if (!SvPOK(sv)) SvPVCLEAR(sv);
1865         if (orig_sv)
1866             sv_catsv(sv, orig_sv);
1867         else
1868             sv_catpvn(sv, buf, len);
1869         if (!SvIOK(sv)) {
1870             (void)SvIOK_on(sv);
1871             SvIV_set(sv, 0);
1872         }
1873         if (PL_parser->preambling == NOLINE)
1874             av_store(av, CopLINE(PL_curcop), sv);
1875     }
1876 }
1877
1878 /*
1879  * skipspace
1880  * Called to gobble the appropriate amount and type of whitespace.
1881  * Skips comments as well.
1882  * Returns the next character after the whitespace that is skipped.
1883  *
1884  * peekspace
1885  * Same thing, but look ahead without incrementing line numbers or
1886  * adjusting PL_linestart.
1887  */
1888
1889 #define skipspace(s) skipspace_flags(s, 0)
1890 #define peekspace(s) skipspace_flags(s, LEX_NO_INCLINE)
1891
1892 STATIC char *
1893 S_skipspace_flags(pTHX_ char *s, U32 flags)
1894 {
1895     PERL_ARGS_ASSERT_SKIPSPACE_FLAGS;
1896     if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) {
1897         while (s < PL_bufend && (SPACE_OR_TAB(*s) || !*s))
1898             s++;
1899     } else {
1900         STRLEN bufptr_pos = PL_bufptr - SvPVX(PL_linestr);
1901         PL_bufptr = s;
1902         lex_read_space(flags | LEX_KEEP_PREVIOUS |
1903                 (PL_lex_inwhat || PL_lex_state == LEX_FORMLINE ?
1904                     LEX_NO_NEXT_CHUNK : 0));
1905         s = PL_bufptr;
1906         PL_bufptr = SvPVX(PL_linestr) + bufptr_pos;
1907         if (PL_linestart > PL_bufptr)
1908             PL_bufptr = PL_linestart;
1909         return s;
1910     }
1911     return s;
1912 }
1913
1914 /*
1915  * S_check_uni
1916  * Check the unary operators to ensure there's no ambiguity in how they're
1917  * used.  An ambiguous piece of code would be:
1918  *     rand + 5
1919  * This doesn't mean rand() + 5.  Because rand() is a unary operator,
1920  * the +5 is its argument.
1921  */
1922
1923 STATIC void
1924 S_check_uni(pTHX)
1925 {
1926     const char *s;
1927
1928     if (PL_oldoldbufptr != PL_last_uni)
1929         return;
1930     while (isSPACE(*PL_last_uni))
1931         PL_last_uni++;
1932     s = PL_last_uni;
1933     while (isWORDCHAR_lazy_if_safe(s, PL_bufend, UTF) || *s == '-')
1934         s += UTF ? UTF8SKIP(s) : 1;
1935     if (s < PL_bufptr && memchr(s, '(', PL_bufptr - s))
1936         return;
1937
1938     Perl_ck_warner_d(aTHX_ packWARN(WARN_AMBIGUOUS),
1939                      "Warning: Use of \"%" UTF8f "\" without parentheses is ambiguous",
1940                      UTF8fARG(UTF, (int)(s - PL_last_uni), PL_last_uni));
1941 }
1942
1943 /*
1944  * LOP : macro to build a list operator.  Its behaviour has been replaced
1945  * with a subroutine, S_lop() for which LOP is just another name.
1946  */
1947
1948 #define LOP(f,x) return lop(f,x,s)
1949
1950 /*
1951  * S_lop
1952  * Build a list operator (or something that might be one).  The rules:
1953  *  - if we have a next token, then it's a list operator (no parens) for
1954  *    which the next token has already been parsed; e.g.,
1955  *       sort foo @args
1956  *       sort foo (@args)
1957  *  - if the next thing is an opening paren, then it's a function
1958  *  - else it's a list operator
1959  */
1960
1961 STATIC I32
1962 S_lop(pTHX_ I32 f, U8 x, char *s)
1963 {
1964     PERL_ARGS_ASSERT_LOP;
1965
1966     pl_yylval.ival = f;
1967     CLINE;
1968     PL_bufptr = s;
1969     PL_last_lop = PL_oldbufptr;
1970     PL_last_lop_op = (OPCODE)f;
1971     if (PL_nexttoke)
1972         goto lstop;
1973     PL_expect = x;
1974     if (*s == '(')
1975         return REPORT(FUNC);
1976     s = skipspace(s);
1977     if (*s == '(')
1978         return REPORT(FUNC);
1979     else {
1980         lstop:
1981         if (!PL_lex_allbrackets && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
1982             PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
1983         return REPORT(LSTOP);
1984     }
1985 }
1986
1987 /*
1988  * S_force_next
1989  * When the lexer realizes it knows the next token (for instance,
1990  * it is reordering tokens for the parser) then it can call S_force_next
1991  * to know what token to return the next time the lexer is called.  Caller
1992  * will need to set PL_nextval[] and possibly PL_expect to ensure
1993  * the lexer handles the token correctly.
1994  */
1995
1996 STATIC void
1997 S_force_next(pTHX_ I32 type)
1998 {
1999 #ifdef DEBUGGING
2000     if (DEBUG_T_TEST) {
2001         PerlIO_printf(Perl_debug_log, "### forced token:\n");
2002         tokereport(type, &NEXTVAL_NEXTTOKE);
2003     }
2004 #endif
2005     assert(PL_nexttoke < C_ARRAY_LENGTH(PL_nexttype));
2006     PL_nexttype[PL_nexttoke] = type;
2007     PL_nexttoke++;
2008 }
2009
2010 /*
2011  * S_postderef
2012  *
2013  * This subroutine handles postfix deref syntax after the arrow has already
2014  * been emitted.  @* $* etc. are emitted as two separate tokens right here.
2015  * @[ @{ %[ %{ *{ are emitted also as two tokens, but this function emits
2016  * only the first, leaving yylex to find the next.
2017  */
2018
2019 static int
2020 S_postderef(pTHX_ int const funny, char const next)
2021 {
2022     assert(funny == DOLSHARP || strchr("$@%&*", funny));
2023     if (next == '*') {
2024         PL_expect = XOPERATOR;
2025         if (PL_lex_state == LEX_INTERPNORMAL && !PL_lex_brackets) {
2026             assert('@' == funny || '$' == funny || DOLSHARP == funny);
2027             PL_lex_state = LEX_INTERPEND;
2028             if ('@' == funny)
2029                 force_next(POSTJOIN);
2030         }
2031         force_next(next);
2032         PL_bufptr+=2;
2033     }
2034     else {
2035         if ('@' == funny && PL_lex_state == LEX_INTERPNORMAL
2036          && !PL_lex_brackets)
2037             PL_lex_dojoin = 2;
2038         PL_expect = XOPERATOR;
2039         PL_bufptr++;
2040     }
2041     return funny;
2042 }
2043
2044 void
2045 Perl_yyunlex(pTHX)
2046 {
2047     int yyc = PL_parser->yychar;
2048     if (yyc != YYEMPTY) {
2049         if (yyc) {
2050             NEXTVAL_NEXTTOKE = PL_parser->yylval;
2051             if (yyc == '{'/*}*/ || yyc == HASHBRACK || yyc == '['/*]*/) {
2052                 PL_lex_allbrackets--;
2053                 PL_lex_brackets--;
2054                 yyc |= (3<<24) | (PL_lex_brackstack[PL_lex_brackets] << 16);
2055             } else if (yyc == '('/*)*/) {
2056                 PL_lex_allbrackets--;
2057                 yyc |= (2<<24);
2058             }
2059             force_next(yyc);
2060         }
2061         PL_parser->yychar = YYEMPTY;
2062     }
2063 }
2064
2065 STATIC SV *
2066 S_newSV_maybe_utf8(pTHX_ const char *const start, STRLEN len)
2067 {
2068     SV * const sv = newSVpvn_utf8(start, len,
2069                     ! IN_BYTES
2070                   &&  UTF
2071                   &&  is_utf8_non_invariant_string((const U8*)start, len));
2072     return sv;
2073 }
2074
2075 /*
2076  * S_force_word
2077  * When the lexer knows the next thing is a word (for instance, it has
2078  * just seen -> and it knows that the next char is a word char, then
2079  * it calls S_force_word to stick the next word into the PL_nexttoke/val
2080  * lookahead.
2081  *
2082  * Arguments:
2083  *   char *start : buffer position (must be within PL_linestr)
2084  *   int token   : PL_next* will be this type of bare word
2085  *                 (e.g., METHOD,BAREWORD)
2086  *   int check_keyword : if true, Perl checks to make sure the word isn't
2087  *       a keyword (do this if the word is a label, e.g. goto FOO)
2088  *   int allow_pack : if true, : characters will also be allowed (require,
2089  *       use, etc. do this)
2090  */
2091
2092 STATIC char *
2093 S_force_word(pTHX_ char *start, int token, int check_keyword, int allow_pack)
2094 {
2095     char *s;
2096     STRLEN len;
2097
2098     PERL_ARGS_ASSERT_FORCE_WORD;
2099
2100     start = skipspace(start);
2101     s = start;
2102     if (   isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)
2103         || (allow_pack && *s == ':' && s[1] == ':') )
2104     {
2105         s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, allow_pack, &len);
2106         if (check_keyword) {
2107           char *s2 = PL_tokenbuf;
2108           STRLEN len2 = len;
2109           if (allow_pack && memBEGINPs(s2, len, "CORE::")) {
2110             s2 += sizeof("CORE::") - 1;
2111             len2 -= sizeof("CORE::") - 1;
2112           }
2113           if (keyword(s2, len2, 0))
2114             return start;
2115         }
2116         if (token == METHOD) {
2117             s = skipspace(s);
2118             if (*s == '(')
2119                 PL_expect = XTERM;
2120             else {
2121                 PL_expect = XOPERATOR;
2122             }
2123         }
2124         NEXTVAL_NEXTTOKE.opval
2125             = newSVOP(OP_CONST,0,
2126                            S_newSV_maybe_utf8(aTHX_ PL_tokenbuf, len));
2127         NEXTVAL_NEXTTOKE.opval->op_private |= OPpCONST_BARE;
2128         force_next(token);
2129     }
2130     return s;
2131 }
2132
2133 /*
2134  * S_force_ident
2135  * Called when the lexer wants $foo *foo &foo etc, but the program
2136  * text only contains the "foo" portion.  The first argument is a pointer
2137  * to the "foo", and the second argument is the type symbol to prefix.
2138  * Forces the next token to be a "BAREWORD".
2139  * Creates the symbol if it didn't already exist (via gv_fetchpv()).
2140  */
2141
2142 STATIC void
2143 S_force_ident(pTHX_ const char *s, int kind)
2144 {
2145     PERL_ARGS_ASSERT_FORCE_IDENT;
2146
2147     if (s[0]) {
2148         const STRLEN len = s[1] ? strlen(s) : 1; /* s = "\"" see yylex */
2149         OP* const o = newSVOP(OP_CONST, 0, newSVpvn_flags(s, len,
2150                                                                 UTF ? SVf_UTF8 : 0));
2151         NEXTVAL_NEXTTOKE.opval = o;
2152         force_next(BAREWORD);
2153         if (kind) {
2154             o->op_private = OPpCONST_ENTERED;
2155             /* XXX see note in pp_entereval() for why we forgo typo
2156                warnings if the symbol must be introduced in an eval.
2157                GSAR 96-10-12 */
2158             gv_fetchpvn_flags(s, len,
2159                               (PL_in_eval ? GV_ADDMULTI
2160                               : GV_ADD) | ( UTF ? SVf_UTF8 : 0 ),
2161                               kind == '$' ? SVt_PV :
2162                               kind == '@' ? SVt_PVAV :
2163                               kind == '%' ? SVt_PVHV :
2164                               SVt_PVGV
2165                               );
2166         }
2167     }
2168 }
2169
2170 static void
2171 S_force_ident_maybe_lex(pTHX_ char pit)
2172 {
2173     NEXTVAL_NEXTTOKE.ival = pit;
2174     force_next('p');
2175 }
2176
2177 NV
2178 Perl_str_to_version(pTHX_ SV *sv)
2179 {
2180     NV retval = 0.0;
2181     NV nshift = 1.0;
2182     STRLEN len;
2183     const char *start = SvPV_const(sv,len);
2184     const char * const end = start + len;
2185     const bool utf = cBOOL(SvUTF8(sv));
2186
2187     PERL_ARGS_ASSERT_STR_TO_VERSION;
2188
2189     while (start < end) {
2190         STRLEN skip;
2191         UV n;
2192         if (utf)
2193             n = utf8n_to_uvchr((U8*)start, len, &skip, 0);
2194         else {
2195             n = *(U8*)start;
2196             skip = 1;
2197         }
2198         retval += ((NV)n)/nshift;
2199         start += skip;
2200         nshift *= 1000;
2201     }
2202     return retval;
2203 }
2204
2205 /*
2206  * S_force_version
2207  * Forces the next token to be a version number.
2208  * If the next token appears to be an invalid version number, (e.g. "v2b"),
2209  * and if "guessing" is TRUE, then no new token is created (and the caller
2210  * must use an alternative parsing method).
2211  */
2212
2213 STATIC char *
2214 S_force_version(pTHX_ char *s, int guessing)
2215 {
2216     OP *version = NULL;
2217     char *d;
2218
2219     PERL_ARGS_ASSERT_FORCE_VERSION;
2220
2221     s = skipspace(s);
2222
2223     d = s;
2224     if (*d == 'v')
2225         d++;
2226     if (isDIGIT(*d)) {
2227         while (isDIGIT(*d) || *d == '_' || *d == '.')
2228             d++;
2229         if (*d == ';' || isSPACE(*d) || *d == '{' || *d == '}' || !*d) {
2230             SV *ver;
2231             s = scan_num(s, &pl_yylval);
2232             version = pl_yylval.opval;
2233             ver = cSVOPx(version)->op_sv;
2234             if (SvPOK(ver) && !SvNIOK(ver)) {
2235                 SvUPGRADE(ver, SVt_PVNV);
2236                 SvNV_set(ver, str_to_version(ver));
2237                 SvNOK_on(ver);          /* hint that it is a version */
2238             }
2239         }
2240         else if (guessing) {
2241             return s;
2242         }
2243     }
2244
2245     /* NOTE: The parser sees the package name and the VERSION swapped */
2246     NEXTVAL_NEXTTOKE.opval = version;
2247     force_next(BAREWORD);
2248
2249     return s;
2250 }
2251
2252 /*
2253  * S_force_strict_version
2254  * Forces the next token to be a version number using strict syntax rules.
2255  */
2256
2257 STATIC char *
2258 S_force_strict_version(pTHX_ char *s)
2259 {
2260     OP *version = NULL;
2261     const char *errstr = NULL;
2262
2263     PERL_ARGS_ASSERT_FORCE_STRICT_VERSION;
2264
2265     while (isSPACE(*s)) /* leading whitespace */
2266         s++;
2267
2268     if (is_STRICT_VERSION(s,&errstr)) {
2269         SV *ver = newSV(0);
2270         s = (char *)scan_version(s, ver, 0);
2271         version = newSVOP(OP_CONST, 0, ver);
2272     }
2273     else if ((*s != ';' && *s != '{' && *s != '}' )
2274              && (s = skipspace(s), (*s != ';' && *s != '{' && *s != '}' )))
2275     {
2276         PL_bufptr = s;
2277         if (errstr)
2278             yyerror(errstr); /* version required */
2279         return s;
2280     }
2281
2282     /* NOTE: The parser sees the package name and the VERSION swapped */
2283     NEXTVAL_NEXTTOKE.opval = version;
2284     force_next(BAREWORD);
2285
2286     return s;
2287 }
2288
2289 /*
2290  * S_tokeq
2291  * Turns any \\ into \ in a quoted string passed in in 'sv', returning 'sv',
2292  * modified as necessary.  However, if HINT_NEW_STRING is on, 'sv' is
2293  * unchanged, and a new SV containing the modified input is returned.
2294  */
2295
2296 STATIC SV *
2297 S_tokeq(pTHX_ SV *sv)
2298 {
2299     char *s;
2300     char *send;
2301     char *d;
2302     SV *pv = sv;
2303
2304     PERL_ARGS_ASSERT_TOKEQ;
2305
2306     assert (SvPOK(sv));
2307     assert (SvLEN(sv));
2308     assert (!SvIsCOW(sv));
2309     if (SvTYPE(sv) >= SVt_PVIV && SvIVX(sv) == -1) /* <<'heredoc' */
2310         goto finish;
2311     s = SvPVX(sv);
2312     send = SvEND(sv);
2313     /* This is relying on the SV being "well formed" with a trailing '\0'  */
2314     while (s < send && !(*s == '\\' && s[1] == '\\'))
2315         s++;
2316     if (s == send)
2317         goto finish;
2318     d = s;
2319     if ( PL_hints & HINT_NEW_STRING ) {
2320         pv = newSVpvn_flags(SvPVX_const(pv), SvCUR(sv),
2321                             SVs_TEMP | SvUTF8(sv));
2322     }
2323     while (s < send) {
2324         if (*s == '\\') {
2325             if (s + 1 < send && (s[1] == '\\'))
2326                 s++;            /* all that, just for this */
2327         }
2328         *d++ = *s++;
2329     }
2330     *d = '\0';
2331     SvCUR_set(sv, d - SvPVX_const(sv));
2332   finish:
2333     if ( PL_hints & HINT_NEW_STRING )
2334        return new_constant(NULL, 0, "q", sv, pv, "q", 1);
2335     return sv;
2336 }
2337
2338 /*
2339  * Now come three functions related to double-quote context,
2340  * S_sublex_start, S_sublex_push, and S_sublex_done.  They're used when
2341  * converting things like "\u\Lgnat" into ucfirst(lc("gnat")).  They
2342  * interact with PL_lex_state, and create fake ( ... ) argument lists
2343  * to handle functions and concatenation.
2344  * For example,
2345  *   "foo\lbar"
2346  * is tokenised as
2347  *    stringify ( const[foo] concat lcfirst ( const[bar] ) )
2348  */
2349
2350 /*
2351  * S_sublex_start
2352  * Assumes that pl_yylval.ival is the op we're creating (e.g. OP_LCFIRST).
2353  *
2354  * Pattern matching will set PL_lex_op to the pattern-matching op to
2355  * make (we return THING if pl_yylval.ival is OP_NULL, PMFUNC otherwise).
2356  *
2357  * OP_CONST is easy--just make the new op and return.
2358  *
2359  * Everything else becomes a FUNC.
2360  *
2361  * Sets PL_lex_state to LEX_INTERPPUSH unless ival was OP_NULL or we
2362  * had an OP_CONST.  This just sets us up for a
2363  * call to S_sublex_push().
2364  */
2365
2366 STATIC I32
2367 S_sublex_start(pTHX)
2368 {
2369     const I32 op_type = pl_yylval.ival;
2370
2371     if (op_type == OP_NULL) {
2372         pl_yylval.opval = PL_lex_op;
2373         PL_lex_op = NULL;
2374         return THING;
2375     }
2376     if (op_type == OP_CONST) {
2377         SV *sv = PL_lex_stuff;
2378         PL_lex_stuff = NULL;
2379         sv = tokeq(sv);
2380
2381         if (SvTYPE(sv) == SVt_PVIV) {
2382             /* Overloaded constants, nothing fancy: Convert to SVt_PV: */
2383             STRLEN len;
2384             const char * const p = SvPV_const(sv, len);
2385             SV * const nsv = newSVpvn_flags(p, len, SvUTF8(sv));
2386             SvREFCNT_dec(sv);
2387             sv = nsv;
2388         }
2389         pl_yylval.opval = newSVOP(op_type, 0, sv);
2390         return THING;
2391     }
2392
2393     PL_parser->lex_super_state = PL_lex_state;
2394     PL_parser->lex_sub_inwhat = (U16)op_type;
2395     PL_parser->lex_sub_op = PL_lex_op;
2396     PL_parser->sub_no_recover = FALSE;
2397     PL_parser->sub_error_count = PL_error_count;
2398     PL_lex_state = LEX_INTERPPUSH;
2399
2400     PL_expect = XTERM;
2401     if (PL_lex_op) {
2402         pl_yylval.opval = PL_lex_op;
2403         PL_lex_op = NULL;
2404         return PMFUNC;
2405     }
2406     else
2407         return FUNC;
2408 }
2409
2410 /*
2411  * S_sublex_push
2412  * Create a new scope to save the lexing state.  The scope will be
2413  * ended in S_sublex_done.  Returns a '(', starting the function arguments
2414  * to the uc, lc, etc. found before.
2415  * Sets PL_lex_state to LEX_INTERPCONCAT.
2416  */
2417
2418 STATIC I32
2419 S_sublex_push(pTHX)
2420 {
2421     LEXSHARED *shared;
2422     const bool is_heredoc = PL_multi_close == '<';
2423     ENTER;
2424
2425     PL_lex_state = PL_parser->lex_super_state;
2426     SAVEI8(PL_lex_dojoin);
2427     SAVEI32(PL_lex_brackets);
2428     SAVEI32(PL_lex_allbrackets);
2429     SAVEI32(PL_lex_formbrack);
2430     SAVEI8(PL_lex_fakeeof);
2431     SAVEI32(PL_lex_casemods);
2432     SAVEI32(PL_lex_starts);
2433     SAVEI8(PL_lex_state);
2434     SAVESPTR(PL_lex_repl);
2435     SAVEVPTR(PL_lex_inpat);
2436     SAVEI16(PL_lex_inwhat);
2437     if (is_heredoc)
2438     {
2439         SAVECOPLINE(PL_curcop);
2440         SAVEI32(PL_multi_end);
2441         SAVEI32(PL_parser->herelines);
2442         PL_parser->herelines = 0;
2443     }
2444     SAVEIV(PL_multi_close);
2445     SAVEPPTR(PL_bufptr);
2446     SAVEPPTR(PL_bufend);
2447     SAVEPPTR(PL_oldbufptr);
2448     SAVEPPTR(PL_oldoldbufptr);
2449     SAVEPPTR(PL_last_lop);
2450     SAVEPPTR(PL_last_uni);
2451     SAVEPPTR(PL_linestart);
2452     SAVESPTR(PL_linestr);
2453     SAVEGENERICPV(PL_lex_brackstack);
2454     SAVEGENERICPV(PL_lex_casestack);
2455     SAVEGENERICPV(PL_parser->lex_shared);
2456     SAVEBOOL(PL_parser->lex_re_reparsing);
2457     SAVEI32(PL_copline);
2458
2459     /* The here-doc parser needs to be able to peek into outer lexing
2460        scopes to find the body of the here-doc.  So we put PL_linestr and
2461        PL_bufptr into lex_shared, to â€˜share’ those values.
2462      */
2463     PL_parser->lex_shared->ls_linestr = PL_linestr;
2464     PL_parser->lex_shared->ls_bufptr  = PL_bufptr;
2465
2466     PL_linestr = PL_lex_stuff;
2467     PL_lex_repl = PL_parser->lex_sub_repl;
2468     PL_lex_stuff = NULL;
2469     PL_parser->lex_sub_repl = NULL;
2470
2471     /* Arrange for PL_lex_stuff to be freed on scope exit, in case it gets
2472        set for an inner quote-like operator and then an error causes scope-
2473        popping.  We must not have a PL_lex_stuff value left dangling, as
2474        that breaks assumptions elsewhere.  See bug #123617.  */
2475     SAVEGENERICSV(PL_lex_stuff);
2476     SAVEGENERICSV(PL_parser->lex_sub_repl);
2477
2478     PL_bufend = PL_bufptr = PL_oldbufptr = PL_oldoldbufptr = PL_linestart
2479         = SvPVX(PL_linestr);
2480     PL_bufend += SvCUR(PL_linestr);
2481     PL_last_lop = PL_last_uni = NULL;
2482     SAVEFREESV(PL_linestr);
2483     if (PL_lex_repl) SAVEFREESV(PL_lex_repl);
2484
2485     PL_lex_dojoin = FALSE;
2486     PL_lex_brackets = PL_lex_formbrack = 0;
2487     PL_lex_allbrackets = 0;
2488     PL_lex_fakeeof = LEX_FAKEEOF_NEVER;
2489     Newx(PL_lex_brackstack, 120, char);
2490     Newx(PL_lex_casestack, 12, char);
2491     PL_lex_casemods = 0;
2492     *PL_lex_casestack = '\0';
2493     PL_lex_starts = 0;
2494     PL_lex_state = LEX_INTERPCONCAT;
2495     if (is_heredoc)
2496         CopLINE_set(PL_curcop, (line_t)PL_multi_start);
2497     PL_copline = NOLINE;
2498
2499     Newxz(shared, 1, LEXSHARED);
2500     shared->ls_prev = PL_parser->lex_shared;
2501     PL_parser->lex_shared = shared;
2502
2503     PL_lex_inwhat = PL_parser->lex_sub_inwhat;
2504     if (PL_lex_inwhat == OP_TRANSR) PL_lex_inwhat = OP_TRANS;
2505     if (PL_lex_inwhat == OP_MATCH || PL_lex_inwhat == OP_QR || PL_lex_inwhat == OP_SUBST)
2506         PL_lex_inpat = PL_parser->lex_sub_op;
2507     else
2508         PL_lex_inpat = NULL;
2509
2510     PL_parser->lex_re_reparsing = cBOOL(PL_in_eval & EVAL_RE_REPARSING);
2511     PL_in_eval &= ~EVAL_RE_REPARSING;
2512
2513     return '(';
2514 }
2515
2516 /*
2517  * S_sublex_done
2518  * Restores lexer state after a S_sublex_push.
2519  */
2520
2521 STATIC I32
2522 S_sublex_done(pTHX)
2523 {
2524     if (!PL_lex_starts++) {
2525         SV * const sv = newSVpvs("");
2526         if (SvUTF8(PL_linestr))
2527             SvUTF8_on(sv);
2528         PL_expect = XOPERATOR;
2529         pl_yylval.opval = newSVOP(OP_CONST, 0, sv);
2530         return THING;
2531     }
2532
2533     if (PL_lex_casemods) {              /* oops, we've got some unbalanced parens */
2534         PL_lex_state = LEX_INTERPCASEMOD;
2535         return yylex();
2536     }
2537
2538     /* Is there a right-hand side to take care of? (s//RHS/ or tr//RHS/) */
2539     assert(PL_lex_inwhat != OP_TRANSR);
2540     if (PL_lex_repl) {
2541         assert (PL_lex_inwhat == OP_SUBST || PL_lex_inwhat == OP_TRANS);
2542         PL_linestr = PL_lex_repl;
2543         PL_lex_inpat = 0;
2544         PL_bufend = PL_bufptr = PL_oldbufptr = PL_oldoldbufptr = PL_linestart = SvPVX(PL_linestr);
2545         PL_bufend += SvCUR(PL_linestr);
2546         PL_last_lop = PL_last_uni = NULL;
2547         PL_lex_dojoin = FALSE;
2548         PL_lex_brackets = 0;
2549         PL_lex_allbrackets = 0;
2550         PL_lex_fakeeof = LEX_FAKEEOF_NEVER;
2551         PL_lex_casemods = 0;
2552         *PL_lex_casestack = '\0';
2553         PL_lex_starts = 0;
2554         if (SvEVALED(PL_lex_repl)) {
2555             PL_lex_state = LEX_INTERPNORMAL;
2556             PL_lex_starts++;
2557             /*  we don't clear PL_lex_repl here, so that we can check later
2558                 whether this is an evalled subst; that means we rely on the
2559                 logic to ensure sublex_done() is called again only via the
2560                 branch (in yylex()) that clears PL_lex_repl, else we'll loop */
2561         }
2562         else {
2563             PL_lex_state = LEX_INTERPCONCAT;
2564             PL_lex_repl = NULL;
2565         }
2566         if (SvTYPE(PL_linestr) >= SVt_PVNV) {
2567             CopLINE(PL_curcop) +=
2568                 ((XPVNV*)SvANY(PL_linestr))->xnv_u.xnv_lines
2569                  + PL_parser->herelines;
2570             PL_parser->herelines = 0;
2571         }
2572         return '/';
2573     }
2574     else {
2575         const line_t l = CopLINE(PL_curcop);
2576         LEAVE;
2577         if (PL_parser->sub_error_count != PL_error_count) {
2578             const char * const name = OutCopFILE(PL_curcop);
2579             if (PL_parser->sub_no_recover) {
2580                 const char * msg = "";
2581                 if (PL_in_eval) {
2582                     SV *errsv = ERRSV;
2583                     if (SvCUR(ERRSV)) {
2584                         msg = Perl_form(aTHX_ "%" SVf, SVfARG(errsv));
2585                     }
2586                 }
2587                 abort_execution(msg, name);
2588                 NOT_REACHED;
2589             }
2590         }
2591         if (PL_multi_close == '<')
2592             PL_parser->herelines += l - PL_multi_end;
2593         PL_bufend = SvPVX(PL_linestr);
2594         PL_bufend += SvCUR(PL_linestr);
2595         PL_expect = XOPERATOR;
2596         return ')';
2597     }
2598 }
2599
2600 STATIC SV*
2601 S_get_and_check_backslash_N_name(pTHX_ const char* s, const char* const e)
2602 {
2603     /* <s> points to first character of interior of \N{}, <e> to one beyond the
2604      * interior, hence to the "}".  Finds what the name resolves to, returning
2605      * an SV* containing it; NULL if no valid one found */
2606
2607     SV* res = newSVpvn_flags(s, e - s, UTF ? SVf_UTF8 : 0);
2608
2609     HV * table;
2610     SV **cvp;
2611     SV *cv;
2612     SV *rv;
2613     HV *stash;
2614     const char* backslash_ptr = s - 3; /* Points to the <\> of \N{... */
2615
2616     PERL_ARGS_ASSERT_GET_AND_CHECK_BACKSLASH_N_NAME;
2617
2618     if (!SvCUR(res)) {
2619         SvREFCNT_dec_NN(res);
2620         /* diag_listed_as: Unknown charname '%s' */
2621         yyerror("Unknown charname ''");
2622         return NULL;
2623     }
2624
2625     res = new_constant( NULL, 0, "charnames", res, NULL, backslash_ptr,
2626                         /* include the <}> */
2627                         e - backslash_ptr + 1);
2628     if (! SvPOK(res)) {
2629         SvREFCNT_dec_NN(res);
2630         return NULL;
2631     }
2632
2633     /* See if the charnames handler is the Perl core's, and if so, we can skip
2634      * the validation needed for a user-supplied one, as Perl's does its own
2635      * validation. */
2636     table = GvHV(PL_hintgv);             /* ^H */
2637     cvp = hv_fetchs(table, "charnames", FALSE);
2638     if (cvp && (cv = *cvp) && SvROK(cv) && (rv = SvRV(cv),
2639         SvTYPE(rv) == SVt_PVCV) && ((stash = CvSTASH(rv)) != NULL))
2640     {
2641         const char * const name = HvNAME(stash);
2642          if (memEQs(name, HvNAMELEN(stash), "_charnames")) {
2643            return res;
2644        }
2645     }
2646
2647     /* Here, it isn't Perl's charname handler.  We can't rely on a
2648      * user-supplied handler to validate the input name.  For non-ut8 input,
2649      * look to see that the first character is legal.  Then loop through the
2650      * rest checking that each is a continuation */
2651
2652     /* This code makes the reasonable assumption that the only Latin1-range
2653      * characters that begin a character name alias are alphabetic, otherwise
2654      * would have to create a isCHARNAME_BEGIN macro */
2655
2656     if (! UTF) {
2657         if (! isALPHAU(*s)) {
2658             goto bad_charname;
2659         }
2660         s++;
2661         while (s < e) {
2662             if (! isCHARNAME_CONT(*s)) {
2663                 goto bad_charname;
2664             }
2665             if (*s == ' ' && *(s-1) == ' ') {
2666                 goto multi_spaces;
2667             }
2668             s++;
2669         }
2670     }
2671     else {
2672         /* Similarly for utf8.  For invariants can check directly; for other
2673          * Latin1, can calculate their code point and check; otherwise  use a
2674          * swash */
2675         if (UTF8_IS_INVARIANT(*s)) {
2676             if (! isALPHAU(*s)) {
2677                 goto bad_charname;
2678             }
2679             s++;
2680         } else if (UTF8_IS_DOWNGRADEABLE_START(*s)) {
2681             if (! isALPHAU(EIGHT_BIT_UTF8_TO_NATIVE(*s, *(s+1)))) {
2682                 goto bad_charname;
2683             }
2684             s += 2;
2685         }
2686         else {
2687             if (! _invlist_contains_cp(PL_utf8_charname_begin,
2688                                        utf8_to_uvchr_buf((U8 *) s,
2689                                                          (U8 *) e,
2690                                                          NULL)))
2691             {
2692                 goto bad_charname;
2693             }
2694             s += UTF8SKIP(s);
2695         }
2696
2697         while (s < e) {
2698             if (UTF8_IS_INVARIANT(*s)) {
2699                 if (! isCHARNAME_CONT(*s)) {
2700                     goto bad_charname;
2701                 }
2702                 if (*s == ' ' && *(s-1) == ' ') {
2703                     goto multi_spaces;
2704                 }
2705                 s++;
2706             }
2707             else if (UTF8_IS_DOWNGRADEABLE_START(*s)) {
2708                 if (! isCHARNAME_CONT(EIGHT_BIT_UTF8_TO_NATIVE(*s, *(s+1))))
2709                 {
2710                     goto bad_charname;
2711                 }
2712                 s += 2;
2713             }
2714             else {
2715                 if (! _invlist_contains_cp(PL_utf8_charname_continue,
2716                                            utf8_to_uvchr_buf((U8 *) s,
2717                                                              (U8 *) e,
2718                                                              NULL)))
2719                 {
2720                     goto bad_charname;
2721                 }
2722                 s += UTF8SKIP(s);
2723             }
2724         }
2725     }
2726     if (*(s-1) == ' ') {
2727         /* diag_listed_as: charnames alias definitions may not contain
2728                            trailing white-space; marked by <-- HERE in %s
2729          */
2730         yyerror_pv(
2731             Perl_form(aTHX_
2732             "charnames alias definitions may not contain trailing "
2733             "white-space; marked by <-- HERE in %.*s<-- HERE %.*s",
2734             (int)(s - backslash_ptr + 1), backslash_ptr,
2735             (int)(e - s + 1), s + 1
2736             ),
2737         UTF ? SVf_UTF8 : 0);
2738         return NULL;
2739     }
2740
2741     if (SvUTF8(res)) { /* Don't accept malformed input */
2742         const U8* first_bad_char_loc;
2743         STRLEN len;
2744         const char* const str = SvPV_const(res, len);
2745         if (UNLIKELY(! is_utf8_string_loc((U8 *) str, len,
2746                                           &first_bad_char_loc)))
2747         {
2748             _force_out_malformed_utf8_message(first_bad_char_loc,
2749                                               (U8 *) PL_parser->bufend,
2750                                               0,
2751                                               0 /* 0 means don't die */ );
2752             /* diag_listed_as: Malformed UTF-8 returned by \N{%s}
2753                                immediately after '%s' */
2754             yyerror_pv(
2755               Perl_form(aTHX_
2756                 "Malformed UTF-8 returned by %.*s immediately after '%.*s'",
2757                  (int) (e - backslash_ptr + 1), backslash_ptr,
2758                  (int) ((char *) first_bad_char_loc - str), str
2759               ),
2760               SVf_UTF8);
2761             return NULL;
2762         }
2763     }
2764
2765     return res;
2766
2767   bad_charname: {
2768
2769         /* The final %.*s makes sure that should the trailing NUL be missing
2770          * that this print won't run off the end of the string */
2771         /* diag_listed_as: Invalid character in \N{...}; marked by <-- HERE
2772                            in \N{%s} */
2773         yyerror_pv(
2774           Perl_form(aTHX_
2775             "Invalid character in \\N{...}; marked by <-- HERE in %.*s<-- HERE %.*s",
2776             (int)(s - backslash_ptr + 1), backslash_ptr,
2777             (int)(e - s + 1), s + 1
2778           ),
2779           UTF ? SVf_UTF8 : 0);
2780         return NULL;
2781     }
2782
2783   multi_spaces:
2784         /* diag_listed_as: charnames alias definitions may not contain a
2785                            sequence of multiple spaces; marked by <-- HERE
2786                            in %s */
2787         yyerror_pv(
2788           Perl_form(aTHX_
2789             "charnames alias definitions may not contain a sequence of "
2790             "multiple spaces; marked by <-- HERE in %.*s<-- HERE %.*s",
2791             (int)(s - backslash_ptr + 1), backslash_ptr,
2792             (int)(e - s + 1), s + 1
2793           ),
2794           UTF ? SVf_UTF8 : 0);
2795         return NULL;
2796 }
2797
2798 /*
2799   scan_const
2800
2801   Extracts the next constant part of a pattern, double-quoted string,
2802   or transliteration.  This is terrifying code.
2803
2804   For example, in parsing the double-quoted string "ab\x63$d", it would
2805   stop at the '$' and return an OP_CONST containing 'abc'.
2806
2807   It looks at PL_lex_inwhat and PL_lex_inpat to find out whether it's
2808   processing a pattern (PL_lex_inpat is true), a transliteration
2809   (PL_lex_inwhat == OP_TRANS is true), or a double-quoted string.
2810
2811   Returns a pointer to the character scanned up to. If this is
2812   advanced from the start pointer supplied (i.e. if anything was
2813   successfully parsed), will leave an OP_CONST for the substring scanned
2814   in pl_yylval. Caller must intuit reason for not parsing further
2815   by looking at the next characters herself.
2816
2817   In patterns:
2818     expand:
2819       \N{FOO}  => \N{U+hex_for_character_FOO}
2820       (if FOO expands to multiple characters, expands to \N{U+xx.XX.yy ...})
2821
2822     pass through:
2823         all other \-char, including \N and \N{ apart from \N{ABC}
2824
2825     stops on:
2826         @ and $ where it appears to be a var, but not for $ as tail anchor
2827         \l \L \u \U \Q \E
2828         (?{  or  (??{
2829
2830   In transliterations:
2831     characters are VERY literal, except for - not at the start or end
2832     of the string, which indicates a range.  However some backslash sequences
2833     are recognized: \r, \n, and the like
2834                     \007 \o{}, \x{}, \N{}
2835     If all elements in the transliteration are below 256,
2836     scan_const expands the range to the full set of intermediate
2837     characters. If the range is in utf8, the hyphen is replaced with
2838     a certain range mark which will be handled by pmtrans() in op.c.
2839
2840   In double-quoted strings:
2841     backslashes:
2842       all those recognized in transliterations
2843       deprecated backrefs: \1 (in substitution replacements)
2844       case and quoting: \U \Q \E
2845     stops on @ and $
2846
2847   scan_const does *not* construct ops to handle interpolated strings.
2848   It stops processing as soon as it finds an embedded $ or @ variable
2849   and leaves it to the caller to work out what's going on.
2850
2851   embedded arrays (whether in pattern or not) could be:
2852       @foo, @::foo, @'foo, @{foo}, @$foo, @+, @-.
2853
2854   $ in double-quoted strings must be the symbol of an embedded scalar.
2855
2856   $ in pattern could be $foo or could be tail anchor.  Assumption:
2857   it's a tail anchor if $ is the last thing in the string, or if it's
2858   followed by one of "()| \r\n\t"
2859
2860   \1 (backreferences) are turned into $1 in substitutions
2861
2862   The structure of the code is
2863       while (there's a character to process) {
2864           handle transliteration ranges
2865           skip regexp comments /(?#comment)/ and codes /(?{code})/
2866           skip #-initiated comments in //x patterns
2867           check for embedded arrays
2868           check for embedded scalars
2869           if (backslash) {
2870               deprecate \1 in substitution replacements
2871               handle string-changing backslashes \l \U \Q \E, etc.
2872               switch (what was escaped) {
2873                   handle \- in a transliteration (becomes a literal -)
2874                   if a pattern and not \N{, go treat as regular character
2875                   handle \132 (octal characters)
2876                   handle \x15 and \x{1234} (hex characters)
2877                   handle \N{name} (named characters, also \N{3,5} in a pattern)
2878                   handle \cV (control characters)
2879                   handle printf-style backslashes (\f, \r, \n, etc)
2880               } (end switch)
2881               continue
2882           } (end if backslash)
2883           handle regular character
2884     } (end while character to read)
2885
2886 */
2887
2888 STATIC char *
2889 S_scan_const(pTHX_ char *start)
2890 {
2891     char *send = PL_bufend;             /* end of the constant */
2892     SV *sv = newSV(send - start);       /* sv for the constant.  See note below
2893                                            on sizing. */
2894     char *s = start;                    /* start of the constant */
2895     char *d = SvPVX(sv);                /* destination for copies */
2896     bool dorange = FALSE;               /* are we in a translit range? */
2897     bool didrange = FALSE;              /* did we just finish a range? */
2898     bool in_charclass = FALSE;          /* within /[...]/ */
2899     bool has_utf8 = FALSE;              /* Output constant is UTF8 */
2900     bool  this_utf8 = cBOOL(UTF);       /* Is the source string assumed to be
2901                                            UTF8?  But, this can show as true
2902                                            when the source isn't utf8, as for
2903                                            example when it is entirely composed
2904                                            of hex constants */
2905     STRLEN utf8_variant_count = 0;      /* When not in UTF-8, this counts the
2906                                            number of characters found so far
2907                                            that will expand (into 2 bytes)
2908                                            should we have to convert to
2909                                            UTF-8) */
2910     SV *res;                            /* result from charnames */
2911     STRLEN offset_to_max = 0;   /* The offset in the output to where the range
2912                                    high-end character is temporarily placed */
2913
2914     /* Does something require special handling in tr/// ?  This avoids extra
2915      * work in a less likely case.  As such, khw didn't feel it was worth
2916      * adding any branches to the more mainline code to handle this, which
2917      * means that this doesn't get set in some circumstances when things like
2918      * \x{100} get expanded out.  As a result there needs to be extra testing
2919      * done in the tr code */
2920     bool has_above_latin1 = FALSE;
2921
2922     /* Note on sizing:  The scanned constant is placed into sv, which is
2923      * initialized by newSV() assuming one byte of output for every byte of
2924      * input.  This routine expects newSV() to allocate an extra byte for a
2925      * trailing NUL, which this routine will append if it gets to the end of
2926      * the input.  There may be more bytes of input than output (eg., \N{LATIN
2927      * CAPITAL LETTER A}), or more output than input if the constant ends up
2928      * recoded to utf8, but each time a construct is found that might increase
2929      * the needed size, SvGROW() is called.  Its size parameter each time is
2930      * based on the best guess estimate at the time, namely the length used so
2931      * far, plus the length the current construct will occupy, plus room for
2932      * the trailing NUL, plus one byte for every input byte still unscanned */
2933
2934     UV uv = UV_MAX; /* Initialize to weird value to try to catch any uses
2935                        before set */
2936 #ifdef EBCDIC
2937     int backslash_N = 0;            /* ? was the character from \N{} */
2938     int non_portable_endpoint = 0;  /* ? In a range is an endpoint
2939                                        platform-specific like \x65 */
2940 #endif
2941
2942     PERL_ARGS_ASSERT_SCAN_CONST;
2943
2944     assert(PL_lex_inwhat != OP_TRANSR);
2945     if (PL_lex_inwhat == OP_TRANS && PL_parser->lex_sub_op) {
2946         /* If we are doing a trans and we know we want UTF8 set expectation */
2947         has_utf8   = PL_parser->lex_sub_op->op_private & (OPpTRANS_FROM_UTF|OPpTRANS_TO_UTF);
2948         this_utf8  = PL_parser->lex_sub_op->op_private & (PL_lex_repl ? OPpTRANS_FROM_UTF : OPpTRANS_TO_UTF);
2949     }
2950
2951     /* Protect sv from errors and fatal warnings. */
2952     ENTER_with_name("scan_const");
2953     SAVEFREESV(sv);
2954
2955     while (s < send
2956            || dorange   /* Handle tr/// range at right edge of input */
2957     ) {
2958
2959         /* get transliterations out of the way (they're most literal) */
2960         if (PL_lex_inwhat == OP_TRANS) {
2961
2962             /* But there isn't any special handling necessary unless there is a
2963              * range, so for most cases we just drop down and handle the value
2964              * as any other.  There are two exceptions.
2965              *
2966              * 1.  A hyphen indicates that we are actually going to have a
2967              *     range.  In this case, skip the '-', set a flag, then drop
2968              *     down to handle what should be the end range value.
2969              * 2.  After we've handled that value, the next time through, that
2970              *     flag is set and we fix up the range.
2971              *
2972              * Ranges entirely within Latin1 are expanded out entirely, in
2973              * order to make the transliteration a simple table look-up.
2974              * Ranges that extend above Latin1 have to be done differently, so
2975              * there is no advantage to expanding them here, so they are
2976              * stored here as Min, ILLEGAL_UTF8_BYTE, Max.  The illegal byte
2977              * signifies a hyphen without any possible ambiguity.  On EBCDIC
2978              * machines, if the range is expressed as Unicode, the Latin1
2979              * portion is expanded out even if the range extends above
2980              * Latin1.  This is because each code point in it has to be
2981              * processed here individually to get its native translation */
2982
2983             if (! dorange) {
2984
2985                 /* Here, we don't think we're in a range.  If the new character
2986                  * is not a hyphen; or if it is a hyphen, but it's too close to
2987                  * either edge to indicate a range, or if we haven't output any
2988                  * characters yet then it's a regular character. */
2989                 if (*s != '-' || s >= send - 1 || s == start || d == SvPVX(sv)) {
2990
2991                     /* A regular character.  Process like any other, but first
2992                      * clear any flags */
2993                     didrange = FALSE;
2994                     dorange = FALSE;
2995 #ifdef EBCDIC
2996                     non_portable_endpoint = 0;
2997                     backslash_N = 0;
2998 #endif
2999                     /* The tests here for being above Latin1 and similar ones
3000                      * in the following 'else' suffice to find all such
3001                      * occurences in the constant, except those added by a
3002                      * backslash escape sequence, like \x{100}.  Mostly, those
3003                      * set 'has_above_latin1' as appropriate */
3004                     if (this_utf8 && UTF8_IS_ABOVE_LATIN1(*s)) {
3005                         has_above_latin1 = TRUE;
3006                     }
3007
3008                     /* Drops down to generic code to process current byte */
3009                 }
3010                 else {  /* Is a '-' in the context where it means a range */
3011                     if (didrange) { /* Something like y/A-C-Z// */
3012                         Perl_croak(aTHX_ "Ambiguous range in transliteration"
3013                                          " operator");
3014                     }
3015
3016                     dorange = TRUE;
3017
3018                     s++;    /* Skip past the hyphen */
3019
3020                     /* d now points to where the end-range character will be
3021                      * placed.  Save it so won't have to go finding it later,
3022                      * and drop down to get that character.  (Actually we
3023                      * instead save the offset, to handle the case where a
3024                      * realloc in the meantime could change the actual
3025                      * pointer).  We'll finish processing the range the next
3026                      * time through the loop */
3027                     offset_to_max = d - SvPVX_const(sv);
3028
3029                     if (this_utf8 && UTF8_IS_ABOVE_LATIN1(*s)) {
3030                         has_above_latin1 = TRUE;
3031                     }
3032
3033                     /* Drops down to generic code to process current byte */
3034                 }
3035             }  /* End of not a range */
3036             else {
3037                 /* Here we have parsed a range.  Now must handle it.  At this
3038                  * point:
3039                  * 'sv' is a SV* that contains the output string we are
3040                  *      constructing.  The final two characters in that string
3041                  *      are the range start and range end, in order.
3042                  * 'd'  points to just beyond the range end in the 'sv' string,
3043                  *      where we would next place something
3044                  * 'offset_to_max' is the offset in 'sv' at which the character
3045                  *      (the range's maximum end point) before 'd'  begins.
3046                  */
3047                 char * max_ptr = SvPVX(sv) + offset_to_max;
3048                 char * min_ptr;
3049                 IV range_min;
3050                 IV range_max;   /* last character in range */
3051                 STRLEN grow;
3052                 Size_t offset_to_min = 0;
3053                 Size_t extras = 0;
3054 #ifdef EBCDIC
3055                 bool convert_unicode;
3056                 IV real_range_max = 0;
3057 #endif
3058                 /* Get the code point values of the range ends. */
3059                 if (has_utf8) {
3060                     /* We know the utf8 is valid, because we just constructed
3061                      * it ourselves in previous loop iterations */
3062                     min_ptr = (char*) utf8_hop( (U8*) max_ptr, -1);
3063                     range_min = valid_utf8_to_uvchr( (U8*) min_ptr, NULL);
3064                     range_max = valid_utf8_to_uvchr( (U8*) max_ptr, NULL);
3065
3066                     /* This compensates for not all code setting
3067                      * 'has_above_latin1', so that we don't skip stuff that
3068                      * should be executed */
3069                     if (range_max > 255) {
3070                         has_above_latin1 = TRUE;
3071                     }
3072                 }
3073                 else {
3074                     min_ptr = max_ptr - 1;
3075                     range_min = * (U8*) min_ptr;
3076                     range_max = * (U8*) max_ptr;
3077                 }
3078
3079                 /* If the range is just a single code point, like tr/a-a/.../,
3080                  * that code point is already in the output, twice.  We can
3081                  * just back up over the second instance and avoid all the rest
3082                  * of the work.  But if it is a variant character, it's been
3083                  * counted twice, so decrement.  (This unlikely scenario is
3084                  * special cased, like the one for a range of 2 code points
3085                  * below, only because the main-line code below needs a range
3086                  * of 3 or more to work without special casing.  Might as well
3087                  * get it out of the way now.) */
3088                 if (UNLIKELY(range_max == range_min)) {
3089                     d = max_ptr;
3090                     if (! has_utf8 && ! UVCHR_IS_INVARIANT(range_max)) {
3091                         utf8_variant_count--;
3092                     }
3093                     goto range_done;
3094                 }
3095
3096 #ifdef EBCDIC
3097                 /* On EBCDIC platforms, we may have to deal with portable
3098                  * ranges.  These happen if at least one range endpoint is a
3099                  * Unicode value (\N{...}), or if the range is a subset of
3100                  * [A-Z] or [a-z], and both ends are literal characters,
3101                  * like 'A', and not like \x{C1} */
3102                 convert_unicode =
3103                                cBOOL(backslash_N)   /* \N{} forces Unicode,
3104                                                        hence portable range */
3105                     || (     ! non_portable_endpoint
3106                         && ((  isLOWER_A(range_min) && isLOWER_A(range_max))
3107                            || (isUPPER_A(range_min) && isUPPER_A(range_max))));
3108                 if (convert_unicode) {
3109
3110                     /* Special handling is needed for these portable ranges.
3111                      * They are defined to be in Unicode terms, which includes
3112                      * all the Unicode code points between the end points.
3113                      * Convert to Unicode to get the Unicode range.  Later we
3114                      * will convert each code point in the range back to
3115                      * native.  */
3116                     range_min = NATIVE_TO_UNI(range_min);
3117                     range_max = NATIVE_TO_UNI(range_max);
3118                 }
3119 #endif
3120
3121                 if (range_min > range_max) {
3122 #ifdef EBCDIC
3123                     if (convert_unicode) {
3124                         /* Need to convert back to native for meaningful
3125                          * messages for this platform */
3126                         range_min = UNI_TO_NATIVE(range_min);
3127                         range_max = UNI_TO_NATIVE(range_max);
3128                     }
3129 #endif
3130                     /* Use the characters themselves for the error message if
3131                      * ASCII printables; otherwise some visible representation
3132                      * of them */
3133                     if (isPRINT_A(range_min) && isPRINT_A(range_max)) {
3134                         Perl_croak(aTHX_
3135                          "Invalid range \"%c-%c\" in transliteration operator",
3136                          (char)range_min, (char)range_max);
3137                     }
3138 #ifdef EBCDIC
3139                     else if (convert_unicode) {
3140         /* diag_listed_as: Invalid range "%s" in transliteration operator */
3141                         Perl_croak(aTHX_
3142                            "Invalid range \"\\N{U+%04" UVXf "}-\\N{U+%04"
3143                            UVXf "}\" in transliteration operator",
3144                            range_min, range_max);
3145                     }
3146 #endif
3147                     else {
3148         /* diag_listed_as: Invalid range "%s" in transliteration operator */
3149                         Perl_croak(aTHX_
3150                            "Invalid range \"\\x{%04" UVXf "}-\\x{%04" UVXf "}\""
3151                            " in transliteration operator",
3152                            range_min, range_max);
3153                     }
3154                 }
3155
3156                 /* If the range is exactly two code points long, they are
3157                  * already both in the output */
3158                 if (UNLIKELY(range_min + 1 == range_max)) {
3159                     goto range_done;
3160                 }
3161
3162                 /* Here the range contains at least 3 code points */
3163
3164                 if (has_utf8) {
3165
3166                     /* If everything in the transliteration is below 256, we
3167                      * can avoid special handling later.  A translation table
3168                      * for each of those bytes is created by op.c.  So we
3169                      * expand out all ranges to their constituent code points.
3170                      * But if we've encountered something above 255, the
3171                      * expanding won't help, so skip doing that.  But if it's
3172                      * EBCDIC, we may have to look at each character below 256
3173                      * if we have to convert to/from Unicode values */
3174                     if (   has_above_latin1
3175 #ifdef EBCDIC
3176                         && (range_min > 255 || ! convert_unicode)
3177 #endif
3178                     ) {
3179                         /* Move the high character one byte to the right; then
3180                          * insert between it and the range begin, an illegal
3181                          * byte which serves to indicate this is a range (using
3182                          * a '-' would be ambiguous). */
3183                         char *e = d++;
3184                         while (e-- > max_ptr) {
3185                             *(e + 1) = *e;
3186                         }
3187                         *(e + 1) = (char) ILLEGAL_UTF8_BYTE;
3188                         goto range_done;
3189                     }
3190
3191                     /* Here, we're going to expand out the range.  For EBCDIC
3192                      * the range can extend above 255 (not so in ASCII), so
3193                      * for EBCDIC, split it into the parts above and below
3194                      * 255/256 */
3195 #ifdef EBCDIC
3196                     if (range_max > 255) {
3197                         real_range_max = range_max;
3198                         range_max = 255;
3199                     }
3200 #endif
3201                 }
3202
3203                 /* Here we need to expand out the string to contain each
3204                  * character in the range.  Grow the output to handle this.
3205                  * For non-UTF8, we need a byte for each code point in the
3206                  * range, minus the three that we've already allocated for: the
3207                  * hyphen, the min, and the max.  For UTF-8, we need this
3208                  * plus an extra byte for each code point that occupies two
3209                  * bytes (is variant) when in UTF-8 (except we've already
3210                  * allocated for the end points, including if they are
3211                  * variants).  For ASCII platforms and Unicode ranges on EBCDIC
3212                  * platforms, it's easy to calculate a precise number.  To
3213                  * start, we count the variants in the range, which we need
3214                  * elsewhere in this function anyway.  (For the case where it
3215                  * isn't easy to calculate, 'extras' has been initialized to 0,
3216                  * and the calculation is done in a loop further down.) */
3217 #ifdef EBCDIC
3218                 if (convert_unicode)
3219 #endif
3220                 {
3221                     /* This is executed unconditionally on ASCII, and for
3222                      * Unicode ranges on EBCDIC.  Under these conditions, all
3223                      * code points above a certain value are variant; and none
3224                      * under that value are.  We just need to find out how much
3225                      * of the range is above that value.  We don't count the
3226                      * end points here, as they will already have been counted
3227                      * as they were parsed. */
3228                     if (range_min >= UTF_CONTINUATION_MARK) {
3229
3230                         /* The whole range is made up of variants */
3231                         extras = (range_max - 1) - (range_min + 1) + 1;
3232                     }
3233                     else if (range_max >= UTF_CONTINUATION_MARK) {
3234
3235                         /* Only the higher portion of the range is variants */
3236                         extras = (range_max - 1) - UTF_CONTINUATION_MARK + 1;
3237                     }
3238
3239                     utf8_variant_count += extras;
3240                 }
3241
3242                 /* The base growth is the number of code points in the range,
3243                  * not including the endpoints, which have already been sized
3244                  * for (and output).  We don't subtract for the hyphen, as it
3245                  * has been parsed but not output, and the SvGROW below is
3246                  * based only on what's been output plus what's left to parse.
3247                  * */
3248                 grow = (range_max - 1) - (range_min + 1) + 1;
3249
3250                 if (has_utf8) {
3251 #ifdef EBCDIC
3252                     /* In some cases in EBCDIC, we haven't yet calculated a
3253                      * precise amount needed for the UTF-8 variants.  Just
3254                      * assume the worst case, that everything will expand by a
3255                      * byte */
3256                     if (! convert_unicode) {
3257                         grow *= 2;
3258                     }
3259                     else
3260 #endif
3261                     {
3262                         /* Otherwise we know exactly how many variants there
3263                          * are in the range. */
3264                         grow += extras;
3265                     }
3266                 }
3267
3268                 /* Grow, but position the output to overwrite the range min end
3269                  * point, because in some cases we overwrite that */
3270                 SvCUR_set(sv, d - SvPVX_const(sv));
3271                 offset_to_min = min_ptr - SvPVX_const(sv);
3272
3273                 /* See Note on sizing above. */
3274                 d = offset_to_min + SvGROW(sv, SvCUR(sv)
3275                                              + (send - s)
3276                                              + grow
3277                                              + 1 /* Trailing NUL */ );
3278
3279                 /* Now, we can expand out the range. */
3280 #ifdef EBCDIC
3281                 if (convert_unicode) {
3282                     SSize_t i;
3283
3284                     /* Recall that the min and max are now in Unicode terms, so
3285                      * we have to convert each character to its native
3286                      * equivalent */
3287                     if (has_utf8) {
3288                         for (i = range_min; i <= range_max; i++) {
3289                             append_utf8_from_native_byte(
3290                                                     LATIN1_TO_NATIVE((U8) i),
3291                                                     (U8 **) &d);
3292                         }
3293                     }
3294                     else {
3295                         for (i = range_min; i <= range_max; i++) {
3296                             *d++ = (char)LATIN1_TO_NATIVE((U8) i);
3297                         }
3298                     }
3299                 }
3300                 else
3301 #endif
3302                 /* Always gets run for ASCII, and sometimes for EBCDIC. */
3303                 {
3304                     /* Here, no conversions are necessary, which means that the
3305                      * first character in the range is already in 'd' and
3306                      * valid, so we can skip overwriting it */
3307                     if (has_utf8) {
3308                         SSize_t i;
3309                         d += UTF8SKIP(d);
3310                         for (i = range_min + 1; i <= range_max; i++) {
3311                             append_utf8_from_native_byte((U8) i, (U8 **) &d);
3312                         }
3313                     }
3314                     else {
3315                         SSize_t i;
3316                         d++;
3317                         assert(range_min + 1 <= range_max);
3318                         for (i = range_min + 1; i < range_max; i++) {
3319 #ifdef EBCDIC
3320                             /* In this case on EBCDIC, we haven't calculated
3321                              * the variants.  Do it here, as we go along */
3322                             if (! UVCHR_IS_INVARIANT(i)) {
3323                                 utf8_variant_count++;
3324                             }
3325 #endif
3326                             *d++ = (char)i;
3327                         }
3328
3329                         /* The range_max is done outside the loop so as to
3330                          * avoid having to special case not incrementing
3331                          * 'utf8_variant_count' on EBCDIC (it's already been
3332                          * counted when originally parsed) */
3333                         *d++ = (char) range_max;
3334                     }
3335                 }
3336
3337 #ifdef EBCDIC
3338                 /* If the original range extended above 255, add in that
3339                  * portion. */
3340                 if (real_range_max) {
3341                     *d++ = (char) UTF8_TWO_BYTE_HI(0x100);
3342                     *d++ = (char) UTF8_TWO_BYTE_LO(0x100);
3343                     if (real_range_max > 0x100) {
3344                         if (real_range_max > 0x101) {
3345                             *d++ = (char) ILLEGAL_UTF8_BYTE;
3346                         }
3347                         d = (char*)uvchr_to_utf8((U8*)d, real_range_max);
3348                     }
3349                 }
3350 #endif
3351
3352               range_done:
3353                 /* mark the range as done, and continue */
3354                 didrange = TRUE;
3355                 dorange = FALSE;
3356 #ifdef EBCDIC
3357                 non_portable_endpoint = 0;
3358                 backslash_N = 0;
3359 #endif
3360                 continue;
3361             } /* End of is a range */
3362         } /* End of transliteration.  Joins main code after these else's */
3363         else if (*s == '[' && PL_lex_inpat && !in_charclass) {
3364             char *s1 = s-1;
3365             int esc = 0;
3366             while (s1 >= start && *s1-- == '\\')
3367                 esc = !esc;
3368             if (!esc)
3369                 in_charclass = TRUE;
3370         }
3371         else if (*s == ']' && PL_lex_inpat && in_charclass) {
3372             char *s1 = s-1;
3373             int esc = 0;
3374             while (s1 >= start && *s1-- == '\\')
3375                 esc = !esc;
3376             if (!esc)
3377                 in_charclass = FALSE;
3378         }
3379             /* skip for regexp comments /(?#comment)/, except for the last
3380              * char, which will be done separately.  Stop on (?{..}) and
3381              * friends */
3382         else if (*s == '(' && PL_lex_inpat && s[1] == '?' && !in_charclass) {
3383             if (s[2] == '#') {
3384                 while (s+1 < send && *s != ')')
3385                     *d++ = *s++;
3386             }
3387             else if (!PL_lex_casemods
3388                      && (    s[2] == '{' /* This should match regcomp.c */
3389                          || (s[2] == '?' && s[3] == '{')))
3390             {
3391                 break;
3392             }
3393         }
3394             /* likewise skip #-initiated comments in //x patterns */
3395         else if (*s == '#'
3396                  && PL_lex_inpat
3397                  && !in_charclass
3398                  && ((PMOP*)PL_lex_inpat)->op_pmflags & RXf_PMf_EXTENDED)
3399         {
3400             while (s < send && *s != '\n')
3401                 *d++ = *s++;
3402         }
3403             /* no further processing of single-quoted regex */
3404         else if (PL_lex_inpat && SvIVX(PL_linestr) == '\'')
3405             goto default_action;
3406
3407             /* check for embedded arrays
3408              * (@foo, @::foo, @'foo, @{foo}, @$foo, @+, @-)
3409              */
3410         else if (*s == '@' && s[1]) {
3411             if (UTF
3412                ? isIDFIRST_utf8_safe(s+1, send)
3413                : isWORDCHAR_A(s[1]))
3414             {
3415                 break;
3416             }
3417             if (strchr(":'{$", s[1]))
3418                 break;
3419             if (!PL_lex_inpat && (s[1] == '+' || s[1] == '-'))
3420                 break; /* in regexp, neither @+ nor @- are interpolated */
3421         }
3422             /* check for embedded scalars.  only stop if we're sure it's a
3423              * variable.  */
3424         else if (*s == '$') {
3425             if (!PL_lex_inpat)  /* not a regexp, so $ must be var */
3426                 break;
3427             if (s + 1 < send && !strchr("()| \r\n\t", s[1])) {
3428                 if (s[1] == '\\') {
3429                     Perl_ck_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
3430                                    "Possible unintended interpolation of $\\ in regex");
3431                 }
3432                 break;          /* in regexp, $ might be tail anchor */
3433             }
3434         }
3435
3436         /* End of else if chain - OP_TRANS rejoin rest */
3437
3438         if (UNLIKELY(s >= send)) {
3439             assert(s == send);
3440             break;
3441         }
3442
3443         /* backslashes */
3444         if (*s == '\\' && s+1 < send) {
3445             char* e;    /* Can be used for ending '}', etc. */
3446
3447             s++;
3448
3449             /* warn on \1 - \9 in substitution replacements, but note that \11
3450              * is an octal; and \19 is \1 followed by '9' */
3451             if (PL_lex_inwhat == OP_SUBST
3452                 && !PL_lex_inpat
3453                 && isDIGIT(*s)
3454                 && *s != '0'
3455                 && !isDIGIT(s[1]))
3456             {
3457                 /* diag_listed_as: \%d better written as $%d */
3458                 Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX), "\\%c better written as $%c", *s, *s);
3459                 *--s = '$';
3460                 break;
3461             }
3462
3463             /* string-change backslash escapes */
3464             if (PL_lex_inwhat != OP_TRANS && *s && strchr("lLuUEQF", *s)) {
3465                 --s;
3466                 break;
3467             }
3468             /* In a pattern, process \N, but skip any other backslash escapes.
3469              * This is because we don't want to translate an escape sequence
3470              * into a meta symbol and have the regex compiler use the meta
3471              * symbol meaning, e.g. \x{2E} would be confused with a dot.  But
3472              * in spite of this, we do have to process \N here while the proper
3473              * charnames handler is in scope.  See bugs #56444 and #62056.
3474              *
3475              * There is a complication because \N in a pattern may also stand
3476              * for 'match a non-nl', and not mean a charname, in which case its
3477              * processing should be deferred to the regex compiler.  To be a
3478              * charname it must be followed immediately by a '{', and not look
3479              * like \N followed by a curly quantifier, i.e., not something like
3480              * \N{3,}.  regcurly returns a boolean indicating if it is a legal
3481              * quantifier */
3482             else if (PL_lex_inpat
3483                     && (*s != 'N'
3484                         || s[1] != '{'
3485                         || regcurly(s + 1)))
3486             {
3487                 *d++ = '\\';
3488                 goto default_action;
3489             }
3490
3491             switch (*s) {
3492             default:
3493                 {
3494                     if ((isALPHANUMERIC(*s)))
3495                         Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
3496                                        "Unrecognized escape \\%c passed through",
3497                                        *s);
3498                     /* default action is to copy the quoted character */
3499                     goto default_action;
3500                 }
3501
3502             /* eg. \132 indicates the octal constant 0132 */
3503             case '0': case '1': case '2': case '3':
3504             case '4': case '5': case '6': case '7':
3505                 {
3506                     I32 flags = PERL_SCAN_SILENT_ILLDIGIT;
3507                     STRLEN len = 3;
3508                     uv = grok_oct(s, &len, &flags, NULL);
3509                     s += len;
3510                     if (len < 3 && s < send && isDIGIT(*s)
3511                         && ckWARN(WARN_MISC))
3512                     {
3513                         Perl_warner(aTHX_ packWARN(WARN_MISC),
3514                                     "%s", form_short_octal_warning(s, len));
3515                     }
3516                 }
3517                 goto NUM_ESCAPE_INSERT;
3518
3519             /* eg. \o{24} indicates the octal constant \024 */
3520             case 'o':
3521                 {
3522                     const char* error;
3523
3524                     bool valid = grok_bslash_o(&s, PL_bufend,
3525                                                &uv, &error,
3526                                                TRUE, /* Output warning */
3527                                                FALSE, /* Not strict */
3528                                                TRUE, /* Output warnings for
3529                                                          non-portables */
3530                                                UTF);
3531                     if (! valid) {
3532                         yyerror(error);
3533                         uv = 0; /* drop through to ensure range ends are set */
3534                     }
3535                     goto NUM_ESCAPE_INSERT;
3536                 }
3537
3538             /* eg. \x24 indicates the hex constant 0x24 */
3539             case 'x':
3540                 {
3541                     const char* error;
3542
3543                     bool valid = grok_bslash_x(&s, PL_bufend,
3544                                                &uv, &error,
3545                                                TRUE, /* Output warning */
3546                                                FALSE, /* Not strict */
3547                                                TRUE,  /* Output warnings for
3548                                                          non-portables */
3549                                                UTF);
3550                     if (! valid) {
3551                         yyerror(error);
3552                         uv = 0; /* drop through to ensure range ends are set */
3553                     }
3554                 }
3555
3556               NUM_ESCAPE_INSERT:
3557                 /* Insert oct or hex escaped character. */
3558
3559                 /* Here uv is the ordinal of the next character being added */
3560                 if (UVCHR_IS_INVARIANT(uv)) {
3561                     *d++ = (char) uv;
3562                 }
3563                 else {
3564                     if (!has_utf8 && uv > 255) {
3565
3566                         /* Here, 'uv' won't fit unless we convert to UTF-8.
3567                          * If we've only seen invariants so far, all we have to
3568                          * do is turn on the flag */
3569                         if (utf8_variant_count == 0) {
3570                             SvUTF8_on(sv);
3571                         }
3572                         else {
3573                             SvCUR_set(sv, d - SvPVX_const(sv));
3574                             SvPOK_on(sv);
3575                             *d = '\0';
3576
3577                             sv_utf8_upgrade_flags_grow(
3578                                            sv,
3579                                            SV_GMAGIC|SV_FORCE_UTF8_UPGRADE,
3580
3581                                            /* Since we're having to grow here,
3582                                             * make sure we have enough room for
3583                                             * this escape and a NUL, so the
3584                                             * code immediately below won't have
3585                                             * to actually grow again */
3586                                           UVCHR_SKIP(uv)
3587                                         + (STRLEN)(send - s) + 1);
3588                             d = SvPVX(sv) + SvCUR(sv);
3589                         }
3590
3591                         has_above_latin1 = TRUE;
3592                         has_utf8 = TRUE;
3593                     }
3594
3595                     if (! has_utf8) {
3596                         *d++ = (char)uv;
3597                         utf8_variant_count++;
3598                     }
3599                     else {
3600                        /* Usually, there will already be enough room in 'sv'
3601                         * since such escapes are likely longer than any UTF-8
3602                         * sequence they can end up as.  This isn't the case on
3603                         * EBCDIC where \x{40000000} contains 12 bytes, and the
3604                         * UTF-8 for it contains 14.  And, we have to allow for
3605                         * a trailing NUL.  It probably can't happen on ASCII
3606                         * platforms, but be safe.  See Note on sizing above. */
3607                         const STRLEN needed = d - SvPVX(sv)
3608                                             + UVCHR_SKIP(uv)
3609                                             + (send - s)
3610                                             + 1;
3611                         if (UNLIKELY(needed > SvLEN(sv))) {
3612                             SvCUR_set(sv, d - SvPVX_const(sv));
3613                             d = SvCUR(sv) + SvGROW(sv, needed);
3614                         }
3615
3616                         d = (char*)uvchr_to_utf8((U8*)d, uv);
3617                         if (PL_lex_inwhat == OP_TRANS
3618                             && PL_parser->lex_sub_op)
3619                         {
3620                             PL_parser->lex_sub_op->op_private |=
3621                                 (PL_lex_repl ? OPpTRANS_FROM_UTF
3622                                              : OPpTRANS_TO_UTF);
3623                         }
3624                     }
3625                 }
3626 #ifdef EBCDIC
3627                 non_portable_endpoint++;
3628 #endif
3629                 continue;
3630
3631             case 'N':
3632                 /* In a non-pattern \N must be like \N{U+0041}, or it can be a
3633                  * named character, like \N{LATIN SMALL LETTER A}, or a named
3634                  * sequence, like \N{LATIN CAPITAL LETTER A WITH MACRON AND
3635                  * GRAVE} (except y/// can't handle the latter, croaking).  For
3636                  * convenience all three forms are referred to as "named
3637                  * characters" below.
3638                  *
3639                  * For patterns, \N also can mean to match a non-newline.  Code
3640                  * before this 'switch' statement should already have handled
3641                  * this situation, and hence this code only has to deal with
3642                  * the named character cases.
3643                  *
3644                  * For non-patterns, the named characters are converted to
3645                  * their string equivalents.  In patterns, named characters are
3646                  * not converted to their ultimate forms for the same reasons
3647                  * that other escapes aren't (mainly that the ultimate
3648                  * character could be considered a meta-symbol by the regex
3649                  * compiler).  Instead, they are converted to the \N{U+...}
3650                  * form to get the value from the charnames that is in effect
3651                  * right now, while preserving the fact that it was a named
3652                  * character, so that the regex compiler knows this.
3653                  *
3654                  * The structure of this section of code (besides checking for
3655                  * errors and upgrading to utf8) is:
3656                  *    If the named character is of the form \N{U+...}, pass it
3657                  *      through if a pattern; otherwise convert the code point
3658                  *      to utf8
3659                  *    Otherwise must be some \N{NAME}: convert to
3660                  *      \N{U+c1.c2...} if a pattern; otherwise convert to utf8
3661                  *
3662                  * Transliteration is an exception.  The conversion to utf8 is
3663                  * only done if the code point requires it to be representable.
3664                  *
3665                  * Here, 's' points to the 'N'; the test below is guaranteed to
3666                  * succeed if we are being called on a pattern, as we already
3667                  * know from a test above that the next character is a '{'.  A
3668                  * non-pattern \N must mean 'named character', which requires
3669                  * braces */
3670                 s++;
3671                 if (*s != '{') {
3672                     yyerror("Missing braces on \\N{}");
3673                     *d++ = '\0';
3674                     continue;
3675                 }
3676                 s++;
3677
3678                 /* If there is no matching '}', it is an error. */
3679                 if (! (e = (char *) memchr(s, '}', send - s))) {
3680                     if (! PL_lex_inpat) {
3681                         yyerror("Missing right brace on \\N{}");
3682                     } else {
3683                         yyerror("Missing right brace on \\N{} or unescaped left brace after \\N");
3684                     }
3685                     yyquit(); /* Have exhausted the input. */
3686                 }
3687
3688                 /* Here it looks like a named character */
3689
3690                 if (*s == 'U' && s[1] == '+') { /* \N{U+...} */
3691                     s += 2;         /* Skip to next char after the 'U+' */
3692                     if (PL_lex_inpat) {
3693
3694                         /* In patterns, we can have \N{U+xxxx.yyyy.zzzz...} */
3695                         /* Check the syntax.  */
3696                         const char *orig_s;
3697                         orig_s = s - 5;
3698                         if (!isXDIGIT(*s)) {
3699                           bad_NU:
3700                             yyerror(
3701                                 "Invalid hexadecimal number in \\N{U+...}"
3702                             );
3703                             s = e + 1;
3704                             *d++ = '\0';
3705                             continue;
3706                         }
3707                         while (++s < e) {
3708                             if (isXDIGIT(*s))
3709                                 continue;
3710                             else if ((*s == '.' || *s == '_')
3711                                   && isXDIGIT(s[1]))
3712                                 continue;
3713                             goto bad_NU;
3714                         }
3715
3716                         /* Pass everything through unchanged.
3717                          * +1 is for the '}' */
3718                         Copy(orig_s, d, e - orig_s + 1, char);
3719                         d += e - orig_s + 1;
3720                     }
3721                     else {  /* Not a pattern: convert the hex to string */
3722                         I32 flags = PERL_SCAN_ALLOW_UNDERSCORES
3723                                 | PERL_SCAN_SILENT_ILLDIGIT
3724                                 | PERL_SCAN_DISALLOW_PREFIX;
3725                         STRLEN len = e - s;
3726                         uv = grok_hex(s, &len, &flags, NULL);
3727                         if (len == 0 || (len != (STRLEN)(e - s)))
3728                             goto bad_NU;
3729
3730                          /* For non-tr///, if the destination is not in utf8,
3731                           * unconditionally recode it to be so.  This is
3732                           * because \N{} implies Unicode semantics, and scalars
3733                           * have to be in utf8 to guarantee those semantics.
3734                           * tr/// doesn't care about Unicode rules, so no need
3735                           * there to upgrade to UTF-8 for small enough code
3736                           * points */
3737                         if (! has_utf8 && (   uv > 0xFF
3738                                            || PL_lex_inwhat != OP_TRANS))
3739                         {
3740                             /* See Note on sizing above.  */
3741                             const STRLEN extra = OFFUNISKIP(uv) + (send - e) + 1;
3742
3743                             SvCUR_set(sv, d - SvPVX_const(sv));
3744                             SvPOK_on(sv);
3745                             *d = '\0';
3746
3747                             if (utf8_variant_count == 0) {
3748                                 SvUTF8_on(sv);
3749                                 d = SvCUR(sv) + SvGROW(sv, SvCUR(sv) + extra);
3750                             }
3751                             else {
3752                                 sv_utf8_upgrade_flags_grow(
3753                                                sv,
3754                                                SV_GMAGIC|SV_FORCE_UTF8_UPGRADE,
3755                                                extra);
3756                                 d = SvPVX(sv) + SvCUR(sv);
3757                             }
3758
3759                             has_utf8 = TRUE;
3760                             has_above_latin1 = TRUE;
3761                         }
3762
3763                         /* Add the (Unicode) code point to the output. */
3764                         if (! has_utf8 || OFFUNI_IS_INVARIANT(uv)) {
3765                             *d++ = (char) LATIN1_TO_NATIVE(uv);
3766                         }
3767                         else {
3768                             d = (char*) uvoffuni_to_utf8_flags((U8*)d, uv, 0);
3769                         }
3770                     }
3771                 }
3772                 else /* Here is \N{NAME} but not \N{U+...}. */
3773                      if ((res = get_and_check_backslash_N_name(s, e)))
3774                 {
3775                     STRLEN len;
3776                     const char *str = SvPV_const(res, len);
3777                     if (PL_lex_inpat) {
3778
3779                         if (! len) { /* The name resolved to an empty string */
3780                             Copy("\\N{}", d, 4, char);
3781                             d += 4;
3782                         }
3783                         else {
3784                             /* In order to not lose information for the regex
3785                             * compiler, pass the result in the specially made
3786                             * syntax: \N{U+c1.c2.c3...}, where c1 etc. are
3787                             * the code points in hex of each character
3788                             * returned by charnames */
3789
3790                             const char *str_end = str + len;
3791                             const STRLEN off = d - SvPVX_const(sv);
3792
3793                             if (! SvUTF8(res)) {
3794                                 /* For the non-UTF-8 case, we can determine the
3795                                  * exact length needed without having to parse
3796                                  * through the string.  Each character takes up
3797                                  * 2 hex digits plus either a trailing dot or
3798                                  * the "}" */
3799                                 const char initial_text[] = "\\N{U+";
3800                                 const STRLEN initial_len = sizeof(initial_text)
3801                                                            - 1;
3802                                 d = off + SvGROW(sv, off
3803                                                     + 3 * len
3804
3805                                                     /* +1 for trailing NUL */
3806                                                     + initial_len + 1
3807
3808                                                     + (STRLEN)(send - e));
3809                                 Copy(initial_text, d, initial_len, char);
3810                                 d += initial_len;
3811                                 while (str < str_end) {
3812                                     char hex_string[4];
3813                                     int len =
3814                                         my_snprintf(hex_string,
3815                                                   sizeof(hex_string),
3816                                                   "%02X.",
3817
3818                                                   /* The regex compiler is
3819                                                    * expecting Unicode, not
3820                                                    * native */
3821                                                   NATIVE_TO_LATIN1(*str));
3822                                     PERL_MY_SNPRINTF_POST_GUARD(len,
3823                                                            sizeof(hex_string));
3824                                     Copy(hex_string, d, 3, char);
3825                                     d += 3;
3826                                     str++;
3827                                 }
3828                                 d--;    /* Below, we will overwrite the final
3829                                            dot with a right brace */
3830                             }
3831                             else {
3832                                 STRLEN char_length; /* cur char's byte length */
3833
3834                                 /* and the number of bytes after this is
3835                                  * translated into hex digits */
3836                                 STRLEN output_length;
3837
3838                                 /* 2 hex per byte; 2 chars for '\N'; 2 chars
3839                                  * for max('U+', '.'); and 1 for NUL */
3840                                 char hex_string[2 * UTF8_MAXBYTES + 5];
3841
3842                                 /* Get the first character of the result. */
3843                                 U32 uv = utf8n_to_uvchr((U8 *) str,
3844                                                         len,
3845                                                         &char_length,
3846                                                         UTF8_ALLOW_ANYUV);
3847                                 /* Convert first code point to Unicode hex,
3848                                  * including the boiler plate before it. */
3849                                 output_length =
3850                                     my_snprintf(hex_string, sizeof(hex_string),
3851                                              "\\N{U+%X",
3852                                              (unsigned int) NATIVE_TO_UNI(uv));
3853
3854                                 /* Make sure there is enough space to hold it */
3855                                 d = off + SvGROW(sv, off
3856                                                     + output_length
3857                                                     + (STRLEN)(send - e)
3858                                                     + 2);       /* '}' + NUL */
3859                                 /* And output it */
3860                                 Copy(hex_string, d, output_length, char);
3861                                 d += output_length;
3862
3863                                 /* For each subsequent character, append dot and
3864                                 * its Unicode code point in hex */
3865                                 while ((str += char_length) < str_end) {
3866                                     const STRLEN off = d - SvPVX_const(sv);
3867                                     U32 uv = utf8n_to_uvchr((U8 *) str,
3868                                                             str_end - str,
3869                                                             &char_length,
3870                                                             UTF8_ALLOW_ANYUV);
3871                                     output_length =
3872                                         my_snprintf(hex_string,
3873                                              sizeof(hex_string),
3874                                              ".%X",
3875                                              (unsigned int) NATIVE_TO_UNI(uv));
3876
3877                                     d = off + SvGROW(sv, off
3878                                                         + output_length
3879                                                         + (STRLEN)(send - e)
3880                                                         + 2);   /* '}' +  NUL */
3881                                     Copy(hex_string, d, output_length, char);
3882                                     d += output_length;
3883                                 }
3884                             }
3885
3886                             *d++ = '}'; /* Done.  Add the trailing brace */
3887                         }
3888                     }
3889                     else { /* Here, not in a pattern.  Convert the name to a
3890                             * string. */
3891
3892                         if (PL_lex_inwhat == OP_TRANS) {
3893                             str = SvPV_const(res, len);
3894                             if (len > ((SvUTF8(res))
3895                                        ? UTF8SKIP(str)
3896                                        : 1U))
3897                             {
3898                                 yyerror(Perl_form(aTHX_
3899                                     "%.*s must not be a named sequence"
3900                                     " in transliteration operator",
3901                                         /*  +1 to include the "}" */
3902                                     (int) (e + 1 - start), start));
3903                                 *d++ = '\0';
3904                                 goto end_backslash_N;
3905                             }
3906
3907                             if (SvUTF8(res) && UTF8_IS_ABOVE_LATIN1(*str)) {
3908                                 has_above_latin1 = TRUE;
3909                             }
3910
3911                         }
3912                         else if (! SvUTF8(res)) {
3913                             /* Make sure \N{} return is UTF-8.  This is because
3914                              * \N{} implies Unicode semantics, and scalars have
3915                              * to be in utf8 to guarantee those semantics; but
3916                              * not needed in tr/// */
3917                             sv_utf8_upgrade_flags(res, 0);
3918                             str = SvPV_const(res, len);
3919                         }
3920
3921                          /* Upgrade destination to be utf8 if this new
3922                           * component is */
3923                         if (! has_utf8 && SvUTF8(res)) {
3924                             /* See Note on sizing above.  */
3925                             const STRLEN extra = len + (send - s) + 1;
3926
3927                             SvCUR_set(sv, d - SvPVX_const(sv));
3928                             SvPOK_on(sv);
3929                             *d = '\0';
3930
3931                             if (utf8_variant_count == 0) {
3932                                 SvUTF8_on(sv);
3933                                 d = SvCUR(sv) + SvGROW(sv, SvCUR(sv) + extra);
3934                             }
3935                             else {
3936                                 sv_utf8_upgrade_flags_grow(sv,
3937                                                 SV_GMAGIC|SV_FORCE_UTF8_UPGRADE,
3938                                                 extra);
3939                                 d = SvPVX(sv) + SvCUR(sv);
3940                             }
3941                             has_utf8 = TRUE;
3942                         } else if (len > (STRLEN)(e - s + 4)) { /* I _guess_ 4 is \N{} --jhi */
3943
3944                             /* See Note on sizing above.  (NOTE: SvCUR() is not
3945                              * set correctly here). */
3946                             const STRLEN extra = len + (send - e) + 1;
3947                             const STRLEN off = d - SvPVX_const(sv);
3948                             d = off + SvGROW(sv, off + extra);
3949                         }
3950                         Copy(str, d, len, char);
3951                         d += len;
3952                     }
3953
3954                     SvREFCNT_dec(res);
3955
3956                 } /* End \N{NAME} */
3957
3958               end_backslash_N:
3959 #ifdef EBCDIC
3960                 backslash_N++; /* \N{} is defined to be Unicode */
3961 #endif
3962                 s = e + 1;  /* Point to just after the '}' */
3963                 continue;
3964
3965             /* \c is a control character */
3966             case 'c':
3967                 s++;
3968                 if (s < send) {
3969                     *d++ = grok_bslash_c(*s, 1);
3970                 }
3971                 else {
3972                     yyerror("Missing control char name in \\c");
3973                     yyquit();   /* Are at end of input, no sense continuing */
3974                 }
3975 #ifdef EBCDIC
3976                 non_portable_endpoint++;
3977 #endif
3978                 break;
3979
3980             /* printf-style backslashes, formfeeds, newlines, etc */
3981             case 'b':
3982                 *d++ = '\b';
3983                 break;
3984             case 'n':
3985                 *d++ = '\n';
3986                 break;
3987             case 'r':
3988                 *d++ = '\r';
3989                 break;
3990             case 'f':
3991                 *d++ = '\f';
3992                 break;
3993             case 't':
3994                 *d++ = '\t';
3995                 break;
3996             case 'e':
3997                 *d++ = ESC_NATIVE;
3998                 break;
3999             case 'a':
4000                 *d++ = '\a';
4001                 break;
4002             } /* end switch */
4003
4004             s++;
4005             continue;
4006         } /* end if (backslash) */
4007
4008     default_action:
4009         /* Just copy the input to the output, though we may have to convert
4010          * to/from UTF-8.
4011          *
4012          * If the input has the same representation in UTF-8 as not, it will be
4013          * a single byte, and we don't care about UTF8ness; just copy the byte */
4014         if (NATIVE_BYTE_IS_INVARIANT((U8)(*s))) {
4015             *d++ = *s++;
4016         }
4017         else if (! this_utf8 && ! has_utf8) {
4018             /* If neither source nor output is UTF-8, is also a single byte,
4019              * just copy it; but this byte counts should we later have to
4020              * convert to UTF-8 */
4021             *d++ = *s++;
4022             utf8_variant_count++;
4023         }
4024         else if (this_utf8 && has_utf8) {   /* Both UTF-8, can just copy */
4025             const STRLEN len = UTF8SKIP(s);
4026
4027             /* We expect the source to have already been checked for
4028              * malformedness */
4029             assert(isUTF8_CHAR((U8 *) s, (U8 *) send));
4030
4031             Copy(s, d, len, U8);
4032             d += len;
4033             s += len;
4034         }
4035         else { /* UTF8ness matters and doesn't match, need to convert */
4036             STRLEN len = 1;
4037             const UV nextuv   = (this_utf8)
4038                                 ? utf8n_to_uvchr((U8*)s, send - s, &len, 0)
4039                                 : (UV) ((U8) *s);
4040             STRLEN need = UVCHR_SKIP(nextuv);
4041
4042             if (!has_utf8) {
4043                 SvCUR_set(sv, d - SvPVX_const(sv));
4044                 SvPOK_on(sv);
4045                 *d = '\0';
4046
4047                 /* See Note on sizing above. */
4048                 need += (STRLEN)(send - s) + 1;
4049
4050                 if (utf8_variant_count == 0) {
4051                     SvUTF8_on(sv);
4052                     d = SvCUR(sv) + SvGROW(sv, SvCUR(sv) + need);
4053                 }
4054                 else {
4055                     sv_utf8_upgrade_flags_grow(sv,
4056                                                SV_GMAGIC|SV_FORCE_UTF8_UPGRADE,
4057                                                need);
4058                     d = SvPVX(sv) + SvCUR(sv);
4059                 }
4060                 has_utf8 = TRUE;
4061             } else if (need > len) {
4062                 /* encoded value larger than old, may need extra space (NOTE:
4063                  * SvCUR() is not set correctly here).   See Note on sizing
4064                  * above.  */
4065                 const STRLEN extra = need + (send - s) + 1;
4066                 const STRLEN off = d - SvPVX_const(sv);
4067                 d = off + SvGROW(sv, off + extra);
4068             }
4069             s += len;
4070
4071             d = (char*)uvchr_to_utf8((U8*)d, nextuv);
4072         }
4073     } /* while loop to process each character */
4074
4075     /* terminate the string and set up the sv */
4076     *d = '\0';
4077     SvCUR_set(sv, d - SvPVX_const(sv));
4078     if (SvCUR(sv) >= SvLEN(sv))
4079         Perl_croak(aTHX_ "panic: constant overflowed allocated space, %" UVuf
4080                    " >= %" UVuf, (UV)SvCUR(sv), (UV)SvLEN(sv));
4081
4082     SvPOK_on(sv);
4083     if (has_utf8) {
4084         SvUTF8_on(sv);
4085         if (PL_lex_inwhat == OP_TRANS && PL_parser->lex_sub_op) {
4086             PL_parser->lex_sub_op->op_private |=
4087                     (PL_lex_repl ? OPpTRANS_FROM_UTF : OPpTRANS_TO_UTF);
4088         }
4089     }
4090
4091     /* shrink the sv if we allocated more than we used */
4092     if (SvCUR(sv) + 5 < SvLEN(sv)) {
4093         SvPV_shrink_to_cur(sv);
4094     }
4095
4096     /* return the substring (via pl_yylval) only if we parsed anything */
4097     if (s > start) {
4098         char *s2 = start;
4099         for (; s2 < s; s2++) {
4100             if (*s2 == '\n')
4101                 COPLINE_INC_WITH_HERELINES;
4102         }
4103         SvREFCNT_inc_simple_void_NN(sv);
4104         if (   (PL_hints & ( PL_lex_inpat ? HINT_NEW_RE : HINT_NEW_STRING ))
4105             && ! PL_parser->lex_re_reparsing)
4106         {
4107             const char *const key = PL_lex_inpat ? "qr" : "q";
4108             const STRLEN keylen = PL_lex_inpat ? 2 : 1;
4109             const char *type;
4110             STRLEN typelen;
4111
4112             if (PL_lex_inwhat == OP_TRANS) {
4113                 type = "tr";
4114                 typelen = 2;
4115             } else if (PL_lex_inwhat == OP_SUBST && !PL_lex_inpat) {
4116                 type = "s";
4117                 typelen = 1;
4118             } else if (PL_lex_inpat && SvIVX(PL_linestr) == '\'') {
4119                 type = "q";
4120                 typelen = 1;
4121             } else  {
4122                 type = "qq";
4123                 typelen = 2;
4124             }
4125
4126             sv = S_new_constant(aTHX_ start, s - start, key, keylen, sv, NULL,
4127                                 type, typelen);
4128         }
4129         pl_yylval.opval = newSVOP(OP_CONST, 0, sv);
4130     }
4131     LEAVE_with_name("scan_const");
4132     return s;
4133 }
4134
4135 /* S_intuit_more
4136  * Returns TRUE if there's more to the expression (e.g., a subscript),
4137  * FALSE otherwise.
4138  *
4139  * It deals with "$foo[3]" and /$foo[3]/ and /$foo[0123456789$]+/
4140  *
4141  * ->[ and ->{ return TRUE
4142  * ->$* ->$#* ->@* ->@[ ->@{ return TRUE if postderef_qq is enabled
4143  * { and [ outside a pattern are always subscripts, so return TRUE
4144  * if we're outside a pattern and it's not { or [, then return FALSE
4145  * if we're in a pattern and the first char is a {
4146  *   {4,5} (any digits around the comma) returns FALSE
4147  * if we're in a pattern and the first char is a [
4148  *   [] returns FALSE
4149  *   [SOMETHING] has a funky algorithm to decide whether it's a
4150  *      character class or not.  It has to deal with things like
4151  *      /$foo[-3]/ and /$foo[$bar]/ as well as /$foo[$\d]+/
4152  * anything else returns TRUE
4153  */
4154
4155 /* This is the one truly awful dwimmer necessary to conflate C and sed. */
4156
4157 STATIC int
4158 S_intuit_more(pTHX_ char *s, char *e)
4159 {
4160     PERL_ARGS_ASSERT_INTUIT_MORE;
4161
4162     if (PL_lex_brackets)
4163         return TRUE;
4164     if (*s == '-' && s[1] == '>' && (s[2] == '[' || s[2] == '{'))
4165         return TRUE;
4166     if (*s == '-' && s[1] == '>'
4167      && FEATURE_POSTDEREF_QQ_IS_ENABLED
4168      && ( (s[2] == '$' && (s[3] == '*' || (s[3] == '#' && s[4] == '*')))
4169         ||(s[2] == '@' && strchr("*[{",s[3])) ))
4170         return TRUE;
4171     if (*s != '{' && *s != '[')
4172         return FALSE;
4173     PL_parser->sub_no_recover = TRUE;
4174     if (!PL_lex_inpat)
4175         return TRUE;
4176
4177     /* In a pattern, so maybe we have {n,m}. */
4178     if (*s == '{') {
4179         if (regcurly(s)) {
4180             return FALSE;
4181         }
4182         return TRUE;
4183     }
4184
4185     /* On the other hand, maybe we have a character class */
4186
4187     s++;
4188     if (*s == ']' || *s == '^')
4189         return FALSE;
4190     else {
4191         /* this is terrifying, and it works */
4192         int weight;
4193         char seen[256];
4194         const char * const send = (char *) memchr(s, ']', e - s);
4195         unsigned char un_char, last_un_char;
4196         char tmpbuf[sizeof PL_tokenbuf * 4];
4197
4198         if (!send)              /* has to be an expression */
4199             return TRUE;
4200         weight = 2;             /* let's weigh the evidence */
4201
4202         if (*s == '$')
4203             weight -= 3;
4204         else if (isDIGIT(*s)) {
4205             if (s[1] != ']') {
4206                 if (isDIGIT(s[1]) && s[2] == ']')
4207                     weight -= 10;
4208             }
4209             else
4210                 weight -= 100;
4211         }
4212         Zero(seen,256,char);
4213         un_char = 255;
4214         for (; s < send; s++) {
4215             last_un_char = un_char;
4216             un_char = (unsigned char)*s;
4217             switch (*s) {
4218             case '@':
4219             case '&':
4220             case '$':
4221                 weight -= seen[un_char] * 10;
4222                 if (isWORDCHAR_lazy_if_safe(s+1, PL_bufend, UTF)) {
4223                     int len;
4224                     scan_ident(s, tmpbuf, sizeof tmpbuf, FALSE);
4225                     len = (int)strlen(tmpbuf);
4226                     if (len > 1 && gv_fetchpvn_flags(tmpbuf, len,
4227                                                     UTF ? SVf_UTF8 : 0, SVt_PV))
4228                         weight -= 100;
4229                     else
4230                         weight -= 10;
4231                 }
4232                 else if (*s == '$'
4233                          && s[1]
4234                          && strchr("[#!%*<>()-=",s[1]))
4235                 {
4236                     if (/*{*/ strchr("])} =",s[2]))
4237                         weight -= 10;
4238                     else
4239                         weight -= 1;
4240                 }
4241                 break;
4242             case '\\':
4243                 un_char = 254;
4244                 if (s[1]) {
4245                     if (strchr("wds]",s[1]))
4246                         weight += 100;
4247                     else if (seen[(U8)'\''] || seen[(U8)'"'])
4248                         weight += 1;
4249                     else if (strchr("rnftbxcav",s[1]))
4250                         weight += 40;
4251                     else if (isDIGIT(s[1])) {
4252                         weight += 40;
4253                         while (s[1] && isDIGIT(s[1]))
4254                             s++;
4255                     }
4256                 }
4257                 else
4258                     weight += 100;
4259                 break;
4260             case '-':
4261                 if (s[1] == '\\')
4262                     weight += 50;
4263                 if (strchr("aA01! ",last_un_char))
4264                     weight += 30;
4265                 if (strchr("zZ79~",s[1]))
4266                     weight += 30;
4267                 if (last_un_char == 255 && (isDIGIT(s[1]) || s[1] == '$'))
4268                     weight -= 5;        /* cope with negative subscript */
4269                 break;
4270             default:
4271                 if (!isWORDCHAR(last_un_char)
4272                     && !(last_un_char == '$' || last_un_char == '@'
4273                          || last_un_char == '&')
4274                     && isALPHA(*s) && s[1] && isALPHA(s[1])) {
4275                     char *d = s;
4276                     while (isALPHA(*s))
4277                         s++;
4278                     if (keyword(d, s - d, 0))
4279                         weight -= 150;
4280                 }
4281                 if (un_char == last_un_char + 1)
4282                     weight += 5;
4283                 weight -= seen[un_char];
4284                 break;
4285             }
4286             seen[un_char]++;
4287         }
4288         if (weight >= 0)        /* probably a character class */
4289             return FALSE;
4290     }
4291
4292     return TRUE;
4293 }
4294
4295 /*
4296  * S_intuit_method
4297  *
4298  * Does all the checking to disambiguate
4299  *   foo bar
4300  * between foo(bar) and bar->foo.  Returns 0 if not a method, otherwise
4301  * FUNCMETH (bar->foo(args)) or METHOD (bar->foo args).
4302  *
4303  * First argument is the stuff after the first token, e.g. "bar".
4304  *
4305  * Not a method if foo is a filehandle.
4306  * Not a method if foo is a subroutine prototyped to take a filehandle.
4307  * Not a method if it's really "Foo $bar"
4308  * Method if it's "foo $bar"
4309  * Not a method if it's really "print foo $bar"
4310  * Method if it's really "foo package::" (interpreted as package->foo)
4311  * Not a method if bar is known to be a subroutine ("sub bar; foo bar")
4312  * Not a method if bar is a filehandle or package, but is quoted with
4313  *   =>
4314  */
4315
4316 STATIC int
4317 S_intuit_method(pTHX_ char *start, SV *ioname, CV *cv)
4318 {
4319     char *s = start + (*start == '$');
4320     char tmpbuf[sizeof PL_tokenbuf];
4321     STRLEN len;
4322     GV* indirgv;
4323         /* Mustn't actually add anything to a symbol table.
4324            But also don't want to "initialise" any placeholder
4325            constants that might already be there into full
4326            blown PVGVs with attached PVCV.  */
4327     GV * const gv =
4328         ioname ? gv_fetchsv(ioname, GV_NOADD_NOINIT, SVt_PVCV) : NULL;
4329
4330     PERL_ARGS_ASSERT_INTUIT_METHOD;
4331
4332     if (gv && SvTYPE(gv) == SVt_PVGV && GvIO(gv))
4333             return 0;
4334     if (cv && SvPOK(cv)) {
4335         const char *proto = CvPROTO(cv);
4336         if (proto) {
4337             while (*proto && (isSPACE(*proto) || *proto == ';'))
4338                 proto++;
4339             if (*proto == '*')
4340                 return 0;
4341         }
4342     }
4343
4344     if (*start == '$') {
4345         SSize_t start_off = start - SvPVX(PL_linestr);
4346         if (cv || PL_last_lop_op == OP_PRINT || PL_last_lop_op == OP_SAY
4347             || isUPPER(*PL_tokenbuf))
4348             return 0;
4349         /* this could be $# */
4350         if (isSPACE(*s))
4351             s = skipspace(s);
4352         PL_bufptr = SvPVX(PL_linestr) + start_off;
4353         PL_expect = XREF;
4354         return *s == '(' ? FUNCMETH : METHOD;
4355     }
4356
4357     s = scan_word(s, tmpbuf, sizeof tmpbuf, TRUE, &len);
4358     /* start is the beginning of the possible filehandle/object,
4359      * and s is the end of it
4360      * tmpbuf is a copy of it (but with single quotes as double colons)
4361      */
4362
4363     if (!keyword(tmpbuf, len, 0)) {
4364         if (len > 2 && tmpbuf[len - 2] == ':' && tmpbuf[len - 1] == ':') {
4365             len -= 2;
4366             tmpbuf[len] = '\0';
4367             goto bare_package;
4368         }
4369         indirgv = gv_fetchpvn_flags(tmpbuf, len,
4370                                     GV_NOADD_NOINIT|( UTF ? SVf_UTF8 : 0 ),
4371                                     SVt_PVCV);
4372         if (indirgv && SvTYPE(indirgv) != SVt_NULL
4373          && (!isGV(indirgv) || GvCVu(indirgv)))
4374             return 0;
4375         /* filehandle or package name makes it a method */
4376         if (!cv || GvIO(indirgv) || gv_stashpvn(tmpbuf, len, UTF ? SVf_UTF8 : 0)) {
4377             s = skipspace(s);
4378             if ((PL_bufend - s) >= 2 && *s == '=' && *(s+1) == '>')
4379                 return 0;       /* no assumptions -- "=>" quotes bareword */
4380       bare_package:
4381             NEXTVAL_NEXTTOKE.opval = newSVOP(OP_CONST, 0,
4382                                                   S_newSV_maybe_utf8(aTHX_ tmpbuf, len));
4383             NEXTVAL_NEXTTOKE.opval->op_private = OPpCONST_BARE;
4384             PL_expect = XTERM;
4385             force_next(BAREWORD);
4386             PL_bufptr = s;
4387             return *s == '(' ? FUNCMETH : METHOD;
4388         }
4389     }
4390     return 0;
4391 }
4392
4393 /* Encoded script support. filter_add() effectively inserts a
4394  * 'pre-processing' function into the current source input stream.
4395  * Note that the filter function only applies to the current source file
4396  * (e.g., it will not affect files 'require'd or 'use'd by this one).
4397  *
4398  * The datasv parameter (which may be NULL) can be used to pass
4399  * private data to this instance of the filter. The filter function
4400  * can recover the SV using the FILTER_DATA macro and use it to
4401  * store private buffers and state information.
4402  *
4403  * The supplied datasv parameter is upgraded to a PVIO type
4404  * and the IoDIRP/IoANY field is used to store the function pointer,
4405  * and IOf_FAKE_DIRP is enabled on datasv to mark this as such.
4406  * Note that IoTOP_NAME, IoFMT_NAME, IoBOTTOM_NAME, if set for
4407  * private use must be set using malloc'd pointers.
4408  */
4409
4410 SV *
4411 Perl_filter_add(pTHX_ filter_t funcp, SV *datasv)
4412 {
4413     if (!funcp)
4414         return NULL;
4415
4416     if (!PL_parser)
4417         return NULL;
4418
4419     if (PL_parser->lex_flags & LEX_IGNORE_UTF8_HINTS)
4420         Perl_croak(aTHX_ "Source filters apply only to byte streams");
4421
4422     if (!PL_rsfp_filters)
4423         PL_rsfp_filters = newAV();
4424     if (!datasv)
4425         datasv = newSV(0);
4426     SvUPGRADE(datasv, SVt_PVIO);
4427     IoANY(datasv) = FPTR2DPTR(void *, funcp); /* stash funcp into spare field */
4428     IoFLAGS(datasv) |= IOf_FAKE_DIRP;
4429     DEBUG_P(PerlIO_printf(Perl_debug_log, "filter_add func %p (%s)\n",
4430                           FPTR2DPTR(void *, IoANY(datasv)),
4431                           SvPV_nolen(datasv)));
4432     av_unshift(PL_rsfp_filters, 1);
4433     av_store(PL_rsfp_filters, 0, datasv) ;
4434     if (
4435         !PL_parser->filtered
4436      && PL_parser->lex_flags & LEX_EVALBYTES
4437      && PL_bufptr < PL_bufend
4438     ) {
4439         const char *s = PL_bufptr;
4440         while (s < PL_bufend) {
4441             if (*s == '\n') {
4442                 SV *linestr = PL_parser->linestr;
4443                 char *buf = SvPVX(linestr);
4444                 STRLEN const bufptr_pos = PL_parser->bufptr - buf;
4445                 STRLEN const oldbufptr_pos = PL_parser->oldbufptr - buf;
4446                 STRLEN const oldoldbufptr_pos=PL_parser->oldoldbufptr-buf;
4447                 STRLEN const linestart_pos = PL_parser->linestart - buf;
4448                 STRLEN const last_uni_pos =
4449                     PL_parser->last_uni ? PL_parser->last_uni - buf : 0;
4450                 STRLEN const last_lop_pos =
4451                     PL_parser->last_lop ? PL_parser->last_lop - buf : 0;
4452                 av_push(PL_rsfp_filters, linestr);
4453                 PL_parser->linestr =
4454                     newSVpvn(SvPVX(linestr), ++s-SvPVX(linestr));
4455                 buf = SvPVX(PL_parser->linestr);
4456                 PL_parser->bufend = buf + SvCUR(PL_parser->linestr);
4457                 PL_parser->bufptr = buf + bufptr_pos;
4458                 PL_parser->oldbufptr = buf + oldbufptr_pos;
4459                 PL_parser->oldoldbufptr = buf + oldoldbufptr_pos;
4460                 PL_parser->linestart = buf + linestart_pos;
4461                 if (PL_parser->last_uni)
4462                     PL_parser->last_uni = buf + last_uni_pos;
4463                 if (PL_parser->last_lop)
4464                     PL_parser->last_lop = buf + last_lop_pos;
4465                 SvLEN_set(linestr, SvCUR(linestr));
4466                 SvCUR_set(linestr, s - SvPVX(linestr));
4467                 PL_parser->filtered = 1;
4468                 break;
4469             }
4470             s++;
4471         }
4472     }
4473     return(datasv);
4474 }
4475
4476
4477 /* Delete most recently added instance of this filter function. */
4478 void
4479 Perl_filter_del(pTHX_ filter_t funcp)
4480 {
4481     SV *datasv;
4482
4483     PERL_ARGS_ASSERT_FILTER_DEL;
4484
4485 #ifdef DEBUGGING
4486     DEBUG_P(PerlIO_printf(Perl_debug_log, "filter_del func %p",
4487                           FPTR2DPTR(void*, funcp)));
4488 #endif
4489     if (!PL_parser || !PL_rsfp_filters || AvFILLp(PL_rsfp_filters)<0)
4490         return;
4491     /* if filter is on top of stack (usual case) just pop it off */
4492     datasv = FILTER_DATA(AvFILLp(PL_rsfp_filters));
4493     if (IoANY(datasv) == FPTR2DPTR(void *, funcp)) {
4494         sv_free(av_pop(PL_rsfp_filters));
4495
4496         return;
4497     }
4498     /* we need to search for the correct entry and clear it     */
4499     Perl_die(aTHX_ "filter_del can only delete in reverse order (currently)");
4500 }
4501
4502
4503 /* Invoke the idxth filter function for the current rsfp.        */
4504 /* maxlen 0 = read one text line */
4505 I32
4506 Perl_filter_read(pTHX_ int idx, SV *buf_sv, int maxlen)
4507 {
4508     filter_t funcp;
4509     I32 ret;
4510     SV *datasv = NULL;
4511     /* This API is bad. It should have been using unsigned int for maxlen.
4512        Not sure if we want to change the API, but if not we should sanity
4513        check the value here.  */
4514     unsigned int correct_length = maxlen < 0 ?  PERL_INT_MAX : maxlen;
4515
4516     PERL_ARGS_ASSERT_FILTER_READ;
4517
4518     if (!PL_parser || !PL_rsfp_filters)
4519         return -1;
4520     if (idx > AvFILLp(PL_rsfp_filters)) {       /* Any more filters?    */
4521         /* Provide a default input filter to make life easy.    */
4522         /* Note that we append to the line. This is handy.      */
4523         DEBUG_P(PerlIO_printf(Perl_debug_log,
4524                               "filter_read %d: from rsfp\n", idx));
4525         if (correct_length) {
4526             /* Want a block */
4527             int len ;
4528             const int old_len = SvCUR(buf_sv);
4529
4530             /* ensure buf_sv is large enough */
4531             SvGROW(buf_sv, (STRLEN)(old_len + correct_length + 1)) ;
4532             if ((len = PerlIO_read(PL_rsfp, SvPVX(buf_sv) + old_len,
4533                                    correct_length)) <= 0) {
4534                 if (PerlIO_error(PL_rsfp))
4535                     return -1;          /* error */
4536                 else
4537                     return 0 ;          /* end of file */
4538             }
4539             SvCUR_set(buf_sv, old_len + len) ;
4540             SvPVX(buf_sv)[old_len + len] = '\0';
4541         } else {
4542             /* Want a line */
4543             if (sv_gets(buf_sv, PL_rsfp, SvCUR(buf_sv)) == NULL) {
4544                 if (PerlIO_error(PL_rsfp))
4545                     return -1;          /* error */
4546                 else
4547                     return 0 ;          /* end of file */
4548             }
4549         }
4550         return SvCUR(buf_sv);
4551     }
4552     /* Skip this filter slot if filter has been deleted */
4553     if ( (datasv = FILTER_DATA(idx)) == &PL_sv_undef) {
4554         DEBUG_P(PerlIO_printf(Perl_debug_log,
4555                               "filter_read %d: skipped (filter deleted)\n",
4556                               idx));
4557         return FILTER_READ(idx+1, buf_sv, correct_length); /* recurse */
4558     }
4559     if (SvTYPE(datasv) != SVt_PVIO) {
4560         if (correct_length) {
4561             /* Want a block */
4562             const STRLEN remainder = SvLEN(datasv) - SvCUR(datasv);
4563             if (!remainder) return 0; /* eof */
4564             if (correct_length > remainder) correct_length = remainder;
4565             sv_catpvn(buf_sv, SvEND(datasv), correct_length);
4566             SvCUR_set(datasv, SvCUR(datasv) + correct_length);
4567         } else {
4568             /* Want a line */
4569             const char *s = SvEND(datasv);
4570             const char *send = SvPVX(datasv) + SvLEN(datasv);
4571             while (s < send) {
4572                 if (*s == '\n') {
4573                     s++;
4574                     break;
4575                 }
4576                 s++;
4577             }
4578             if (s == send) return 0; /* eof */
4579             sv_catpvn(buf_sv, SvEND(datasv), s-SvEND(datasv));
4580             SvCUR_set(datasv, s-SvPVX(datasv));
4581         }
4582         return SvCUR(buf_sv);
4583     }
4584     /* Get function pointer hidden within datasv        */
4585     funcp = DPTR2FPTR(filter_t, IoANY(datasv));
4586     DEBUG_P(PerlIO_printf(Perl_debug_log,
4587                           "filter_read %d: via function %p (%s)\n",
4588                           idx, (void*)datasv, SvPV_nolen_const(datasv)));
4589     /* Call function. The function is expected to       */
4590     /* call "FILTER_READ(idx+1, buf_sv)" first.         */
4591     /* Return: <0:error, =0:eof, >0:not eof             */
4592     ENTER;
4593     save_scalar(PL_errgv);
4594     ret = (*funcp)(aTHX_ idx, buf_sv, correct_length);
4595     LEAVE;
4596     return ret;
4597 }
4598
4599 STATIC char *
4600 S_filter_gets(pTHX_ SV *sv, STRLEN append)
4601 {
4602     PERL_ARGS_ASSERT_FILTER_GETS;
4603
4604 #ifdef PERL_CR_FILTER
4605     if (!PL_rsfp_filters) {
4606         filter_add(S_cr_textfilter,NULL);
4607     }
4608 #endif
4609     if (PL_rsfp_filters) {
4610         if (!append)
4611             SvCUR_set(sv, 0);   /* start with empty line        */
4612         if (FILTER_READ(0, sv, 0) > 0)
4613             return ( SvPVX(sv) ) ;
4614         else
4615             return NULL ;
4616     }
4617     else
4618         return (sv_gets(sv, PL_rsfp, append));
4619 }
4620
4621 STATIC HV *
4622 S_find_in_my_stash(pTHX_ const char *pkgname, STRLEN len)
4623 {
4624     GV *gv;
4625
4626     PERL_ARGS_ASSERT_FIND_IN_MY_STASH;
4627
4628     if (memEQs(pkgname, len, "__PACKAGE__"))
4629         return PL_curstash;
4630
4631     if (len > 2
4632         && (pkgname[len - 2] == ':' && pkgname[len - 1] == ':')
4633         && (gv = gv_fetchpvn_flags(pkgname,
4634                                    len,
4635                                    ( UTF ? SVf_UTF8 : 0 ), SVt_PVHV)))
4636     {
4637         return GvHV(gv);                        /* Foo:: */
4638     }
4639
4640     /* use constant CLASS => 'MyClass' */
4641     gv = gv_fetchpvn_flags(pkgname, len, UTF ? SVf_UTF8 : 0, SVt_PVCV);
4642     if (gv && GvCV(gv)) {
4643         SV * const sv = cv_const_sv(GvCV(gv));
4644         if (sv)
4645             return gv_stashsv(sv, 0);
4646     }
4647
4648     return gv_stashpvn(pkgname, len, UTF ? SVf_UTF8 : 0);
4649 }
4650
4651
4652 STATIC char *
4653 S_tokenize_use(pTHX_ int is_use, char *s) {
4654     PERL_ARGS_ASSERT_TOKENIZE_USE;
4655
4656     if (PL_expect != XSTATE)
4657         /* diag_listed_as: "use" not allowed in expression */
4658         yyerror(Perl_form(aTHX_ "\"%s\" not allowed in expression",
4659                     is_use ? "use" : "no"));
4660     PL_expect = XTERM;
4661     s = skipspace(s);
4662     if (isDIGIT(*s) || (*s == 'v' && isDIGIT(s[1]))) {
4663         s = force_version(s, TRUE);
4664         if (*s == ';' || *s == '}'
4665                 || (s = skipspace(s), (*s == ';' || *s == '}'))) {
4666             NEXTVAL_NEXTTOKE.opval = NULL;
4667             force_next(BAREWORD);
4668         }
4669         else if (*s == 'v') {
4670             s = force_word(s,BAREWORD,FALSE,TRUE);
4671             s = force_version(s, FALSE);
4672         }
4673     }
4674     else {
4675         s = force_word(s,BAREWORD,FALSE,TRUE);
4676         s = force_version(s, FALSE);
4677     }
4678     pl_yylval.ival = is_use;
4679     return s;
4680 }
4681 #ifdef DEBUGGING
4682     static const char* const exp_name[] =
4683         { "OPERATOR", "TERM", "REF", "STATE", "BLOCK", "ATTRBLOCK",
4684           "ATTRTERM", "TERMBLOCK", "XBLOCKTERM", "POSTDEREF",
4685           "SIGVAR", "TERMORDORDOR"
4686         };
4687 #endif
4688
4689 #define word_takes_any_delimiter(p,l) S_word_takes_any_delimiter(p,l)
4690 STATIC bool
4691 S_word_takes_any_delimiter(char *p, STRLEN len)
4692 {
4693     return (len == 1 && strchr("msyq", p[0]))
4694             || (len == 2
4695                 && ((p[0] == 't' && p[1] == 'r')
4696                     || (p[0] == 'q' && strchr("qwxr", p[1]))));
4697 }
4698
4699 static void
4700 S_check_scalar_slice(pTHX_ char *s)
4701 {
4702     s++;
4703     while (SPACE_OR_TAB(*s)) s++;
4704     if (*s == 'q' && s[1] == 'w' && !isWORDCHAR_lazy_if_safe(s+2,
4705                                                              PL_bufend,
4706                                                              UTF))
4707     {
4708         return;
4709     }
4710     while (    isWORDCHAR_lazy_if_safe(s, PL_bufend, UTF)
4711            || (*s && strchr(" \t$#+-'\"", *s)))
4712     {
4713         s += UTF ? UTF8SKIP(s) : 1;
4714     }
4715     if (*s == '}' || *s == ']')
4716         pl_yylval.ival = OPpSLICEWARNING;
4717 }
4718
4719 #define lex_token_boundary() S_lex_token_boundary(aTHX)
4720 static void
4721 S_lex_token_boundary(pTHX)
4722 {
4723     PL_oldoldbufptr = PL_oldbufptr;
4724     PL_oldbufptr = PL_bufptr;
4725 }
4726
4727 #define vcs_conflict_marker(s) S_vcs_conflict_marker(aTHX_ s)
4728 static char *
4729 S_vcs_conflict_marker(pTHX_ char *s)
4730 {
4731     lex_token_boundary();
4732     PL_bufptr = s;
4733     yyerror("Version control conflict marker");
4734     while (s < PL_bufend && *s != '\n')
4735         s++;
4736     return s;
4737 }
4738
4739 /*
4740   yylex
4741
4742   Works out what to call the token just pulled out of the input
4743   stream.  The yacc parser takes care of taking the ops we return and
4744   stitching them into a tree.
4745
4746   Returns:
4747     The type of the next token
4748
4749   Structure:
4750       Check if we have already built the token; if so, use it.
4751       Switch based on the current state:
4752           - if we have a case modifier in a string, deal with that
4753           - handle other cases of interpolation inside a string
4754           - scan the next line if we are inside a format
4755       In the normal state, switch on the next character:
4756           - default:
4757             if alphabetic, go to key lookup
4758             unrecognized character - croak
4759           - 0/4/26: handle end-of-line or EOF
4760           - cases for whitespace
4761           - \n and #: handle comments and line numbers
4762           - various operators, brackets and sigils
4763           - numbers
4764           - quotes
4765           - 'v': vstrings (or go to key lookup)
4766           - 'x' repetition operator (or go to key lookup)
4767           - other ASCII alphanumerics (key lookup begins here):
4768               word before => ?
4769               keyword plugin
4770               scan built-in keyword (but do nothing with it yet)
4771               check for statement label
4772               check for lexical subs
4773                   goto just_a_word if there is one
4774               see whether built-in keyword is overridden
4775               switch on keyword number:
4776                   - default: just_a_word:
4777                       not a built-in keyword; handle bareword lookup
4778                       disambiguate between method and sub call
4779                       fall back to bareword
4780                   - cases for built-in keywords
4781 */
4782
4783
4784 int
4785 Perl_yylex(pTHX)
4786 {
4787     dVAR;
4788     char *s = PL_bufptr;
4789     char *d;
4790     STRLEN len;
4791     bool bof = FALSE;
4792     const bool saw_infix_sigil = cBOOL(PL_parser->saw_infix_sigil);
4793     U8 formbrack = 0;
4794     U32 fake_eof = 0;
4795
4796     /* orig_keyword, gvp, and gv are initialized here because
4797      * jump to the label just_a_word_zero can bypass their
4798      * initialization later. */
4799     I32 orig_keyword = 0;
4800     GV *gv = NULL;
4801     GV **gvp = NULL;
4802
4803     if (UNLIKELY(PL_parser->recheck_utf8_validity)) {
4804         const U8* first_bad_char_loc;
4805         if (UTF && UNLIKELY(! is_utf8_string_loc((U8 *) PL_bufptr,
4806                                                         PL_bufend - PL_bufptr,
4807                                                         &first_bad_char_loc)))
4808         {
4809             _force_out_malformed_utf8_message(first_bad_char_loc,
4810                                               (U8 *) PL_bufend,
4811                                               0,
4812                                               1 /* 1 means die */ );
4813             NOT_REACHED; /* NOTREACHED */
4814         }
4815         PL_parser->recheck_utf8_validity = FALSE;
4816     }
4817     DEBUG_T( {
4818         SV* tmp = newSVpvs("");
4819         PerlIO_printf(Perl_debug_log, "### %" IVdf ":LEX_%s/X%s %s\n",
4820             (IV)CopLINE(PL_curcop),
4821             lex_state_names[PL_lex_state],
4822             exp_name[PL_expect],
4823             pv_display(tmp, s, strlen(s), 0, 60));
4824         SvREFCNT_dec(tmp);
4825     } );
4826
4827     /* when we've already built the next token, just pull it out of the queue */
4828     if (PL_nexttoke) {
4829         PL_nexttoke--;
4830         pl_yylval = PL_nextval[PL_nexttoke];
4831         {
4832             I32 next_type;
4833             next_type = PL_nexttype[PL_nexttoke];
4834             if (next_type & (7<<24)) {
4835                 if (next_type & (1<<24)) {
4836                     if (PL_lex_brackets > 100)
4837                         Renew(PL_lex_brackstack, PL_lex_brackets + 10, char);
4838                     PL_lex_brackstack[PL_lex_brackets++] =
4839                         (char) ((next_type >> 16) & 0xff);
4840                 }
4841                 if (next_type & (2<<24))
4842                     PL_lex_allbrackets++;
4843                 if (next_type & (4<<24))
4844                     PL_lex_allbrackets--;
4845                 next_type &= 0xffff;
4846             }
4847             return REPORT(next_type == 'p' ? pending_ident() : next_type);
4848         }
4849     }
4850
4851     switch (PL_lex_state) {
4852     case LEX_NORMAL:
4853     case LEX_INTERPNORMAL:
4854         break;
4855
4856     /* interpolated case modifiers like \L \U, including \Q and \E.
4857        when we get here, PL_bufptr is at the \
4858     */
4859     case LEX_INTERPCASEMOD:
4860 #ifdef DEBUGGING
4861         if (PL_bufptr != PL_bufend && *PL_bufptr != '\\')
4862             Perl_croak(aTHX_
4863                        "panic: INTERPCASEMOD bufptr=%p, bufend=%p, *bufptr=%u",
4864                        PL_bufptr, PL_bufend, *PL_bufptr);
4865 #endif
4866         /* handle \E or end of string */
4867         if (PL_bufptr == PL_bufend || PL_bufptr[1] == 'E') {
4868             /* if at a \E */
4869             if (PL_lex_casemods) {
4870                 const char oldmod = PL_lex_casestack[--PL_lex_casemods];
4871                 PL_lex_casestack[PL_lex_casemods] = '\0';
4872
4873                 if (PL_bufptr != PL_bufend
4874                     && (oldmod == 'L' || oldmod == 'U' || oldmod == 'Q'
4875                         || oldmod == 'F')) {
4876                     PL_bufptr += 2;
4877                     PL_lex_state = LEX_INTERPCONCAT;
4878                 }
4879                 PL_lex_allbrackets--;
4880                 return REPORT(')');
4881             }
4882             else if ( PL_bufptr != PL_bufend && PL_bufptr[1] == 'E' ) {
4883                /* Got an unpaired \E */
4884                Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
4885                         "Useless use of \\E");
4886             }
4887             if (PL_bufptr != PL_bufend)
4888                 PL_bufptr += 2;
4889             PL_lex_state = LEX_INTERPCONCAT;
4890             return yylex();
4891         }
4892         else {
4893             DEBUG_T({ PerlIO_printf(Perl_debug_log,
4894               "### Saw case modifier\n"); });
4895             s = PL_bufptr + 1;
4896             if (s[1] == '\\' && s[2] == 'E') {
4897                 PL_bufptr = s + 3;
4898                 PL_lex_state = LEX_INTERPCONCAT;
4899                 return yylex();
4900             }
4901             else {
4902                 I32 tmp;
4903                 if (   memBEGINs(s, (STRLEN) (PL_bufend - s), "L\\u")
4904                     || memBEGINs(s, (STRLEN) (PL_bufend - s), "U\\l"))
4905                 {
4906                     tmp = *s, *s = s[2], s[2] = (char)tmp;      /* misordered... */
4907                 }
4908                 if ((*s == 'L' || *s == 'U' || *s == 'F')
4909                     && (strpbrk(PL_lex_casestack, "LUF")))
4910                 {
4911                     PL_lex_casestack[--PL_lex_casemods] = '\0';
4912                     PL_lex_allbrackets--;
4913                     return REPORT(')');
4914                 }
4915                 if (PL_lex_casemods > 10)
4916                     Renew(PL_lex_casestack, PL_lex_casemods + 2, char);
4917                 PL_lex_casestack[PL_lex_casemods++] = *s;
4918                 PL_lex_casestack[PL_lex_casemods] = '\0';
4919                 PL_lex_state = LEX_INTERPCONCAT;
4920                 NEXTVAL_NEXTTOKE.ival = 0;
4921                 force_next((2<<24)|'(');
4922                 if (*s == 'l')
4923                     NEXTVAL_NEXTTOKE.ival = OP_LCFIRST;
4924                 else if (*s == 'u')
4925                     NEXTVAL_NEXTTOKE.ival = OP_UCFIRST;
4926                 else if (*s == 'L')
4927                     NEXTVAL_NEXTTOKE.ival = OP_LC;
4928                 else if (*s == 'U')
4929                     NEXTVAL_NEXTTOKE.ival = OP_UC;
4930                 else if (*s == 'Q')
4931                     NEXTVAL_NEXTTOKE.ival = OP_QUOTEMETA;
4932                 else if (*s == 'F')
4933                     NEXTVAL_NEXTTOKE.ival = OP_FC;
4934                 else
4935                     Perl_croak(aTHX_ "panic: yylex, *s=%u", *s);
4936                 PL_bufptr = s + 1;
4937             }
4938             force_next(FUNC);
4939             if (PL_lex_starts) {
4940                 s = PL_bufptr;
4941                 PL_lex_starts = 0;
4942                 /* commas only at base level: /$a\Ub$c/ => ($a,uc(b.$c)) */
4943                 if (PL_lex_casemods == 1 && PL_lex_inpat)
4944                     TOKEN(',');
4945                 else
4946                     AopNOASSIGN(OP_CONCAT);
4947             }
4948             else
4949                 return yylex();
4950         }
4951
4952     case LEX_INTERPPUSH:
4953         return REPORT(sublex_push());
4954
4955     case LEX_INTERPSTART:
4956         if (PL_bufptr == PL_bufend)
4957             return REPORT(sublex_done());
4958         DEBUG_T({ if(*PL_bufptr != '(') PerlIO_printf(Perl_debug_log,
4959               "### Interpolated variable\n"); });
4960         PL_expect = XTERM;
4961         /* for /@a/, we leave the joining for the regex engine to do
4962          * (unless we're within \Q etc) */
4963         PL_lex_dojoin = (*PL_bufptr == '@'
4964                             && (!PL_lex_inpat || PL_lex_casemods));
4965         PL_lex_state = LEX_INTERPNORMAL;
4966         if (PL_lex_dojoin) {
4967             NEXTVAL_NEXTTOKE.ival = 0;
4968             force_next(',');
4969             force_ident("\"", '$');
4970             NEXTVAL_NEXTTOKE.ival = 0;
4971             force_next('$');
4972             NEXTVAL_NEXTTOKE.ival = 0;
4973             force_next((2<<24)|'(');
4974             NEXTVAL_NEXTTOKE.ival = OP_JOIN;    /* emulate join($", ...) */
4975             force_next(FUNC);
4976         }
4977         /* Convert (?{...}) and friends to 'do {...}' */
4978         if (PL_lex_inpat && *PL_bufptr == '(') {
4979             PL_parser->lex_shared->re_eval_start = PL_bufptr;
4980             PL_bufptr += 2;
4981             if (*PL_bufptr != '{')
4982                 PL_bufptr++;
4983             PL_expect = XTERMBLOCK;
4984             force_next(DO);
4985         }
4986
4987         if (PL_lex_starts++) {
4988             s = PL_bufptr;
4989             /* commas only at base level: /$a\Ub$c/ => ($a,uc(b.$c)) */
4990             if (!PL_lex_casemods && PL_lex_inpat)
4991                 TOKEN(',');
4992             else
4993                 AopNOASSIGN(OP_CONCAT);
4994         }
4995         return yylex();
4996
4997     case LEX_INTERPENDMAYBE:
4998         if (intuit_more(PL_bufptr, PL_bufend)) {
4999             PL_lex_state = LEX_INTERPNORMAL;    /* false alarm, more expr */
5000             break;
5001         }
5002         /* FALLTHROUGH */
5003
5004     case LEX_INTERPEND:
5005         if (PL_lex_dojoin) {
5006             const U8 dojoin_was = PL_lex_dojoin;
5007             PL_lex_dojoin = FALSE;
5008             PL_lex_state = LEX_INTERPCONCAT;
5009             PL_lex_allbrackets--;
5010             return REPORT(dojoin_was == 1 ? (int)')' : (int)POSTJOIN);
5011         }
5012         if (PL_lex_inwhat == OP_SUBST && PL_linestr == PL_lex_repl
5013             && SvEVALED(PL_lex_repl))
5014         {
5015             if (PL_bufptr != PL_bufend)
5016                 Perl_croak(aTHX_ "Bad evalled substitution pattern");
5017             PL_lex_repl = NULL;
5018         }
5019         /* Paranoia.  re_eval_start is adjusted when S_scan_heredoc sets
5020            re_eval_str.  If the here-doc body’s length equals the previous
5021            value of re_eval_start, re_eval_start will now be null.  So
5022            check re_eval_str as well. */
5023         if (PL_parser->lex_shared->re_eval_start
5024          || PL_parser->lex_shared->re_eval_str) {
5025             SV *sv;
5026             if (*PL_bufptr != ')')
5027                 Perl_croak(aTHX_ "Sequence (?{...}) not terminated with ')'");
5028             PL_bufptr++;
5029             /* having compiled a (?{..}) expression, return the original
5030              * text too, as a const */
5031             if (PL_parser->lex_shared->re_eval_str) {
5032                 sv = PL_parser->lex_shared->re_eval_str;
5033                 PL_parser->lex_shared->re_eval_str = NULL;
5034                 SvCUR_set(sv,
5035                          PL_bufptr - PL_parser->lex_shared->re_eval_start);
5036                 SvPV_shrink_to_cur(sv);
5037             }
5038             else sv = newSVpvn(PL_parser->lex_shared->re_eval_start,
5039                          PL_bufptr - PL_parser->lex_shared->re_eval_start);
5040             NEXTVAL_NEXTTOKE.opval =
5041                     newSVOP(OP_CONST, 0,
5042                                  sv);
5043             force_next(THING);
5044             PL_parser->lex_shared->re_eval_start = NULL;
5045             PL_expect = XTERM;
5046             return REPORT(',');
5047         }
5048
5049         /* FALLTHROUGH */
5050     case LEX_INTERPCONCAT:
5051 #ifdef DEBUGGING
5052         if (PL_lex_brackets)
5053             Perl_croak(aTHX_ "panic: INTERPCONCAT, lex_brackets=%ld",
5054                        (long) PL_lex_brackets);
5055 #endif
5056         if (PL_bufptr == PL_bufend)
5057             return REPORT(sublex_done());
5058
5059         /* m'foo' still needs to be parsed for possible (?{...}) */
5060         if (SvIVX(PL_linestr) == '\'' && !PL_lex_inpat) {
5061             SV *sv = newSVsv(PL_linestr);
5062             sv = tokeq(sv);
5063             pl_yylval.opval = newSVOP(OP_CONST, 0, sv);
5064             s = PL_bufend;
5065         }
5066         else {
5067             int save_error_count = PL_error_count;
5068
5069             s = scan_const(PL_bufptr);
5070
5071             /* Set flag if this was a pattern and there were errors.  op.c will
5072              * refuse to compile a pattern with this flag set.  Otherwise, we
5073              * could get segfaults, etc. */
5074             if (PL_lex_inpat && PL_error_count > save_error_count) {
5075                 ((PMOP*)PL_lex_inpat)->op_pmflags |= PMf_HAS_ERROR;
5076             }
5077             if (*s == '\\')
5078                 PL_lex_state = LEX_INTERPCASEMOD;
5079             else
5080                 PL_lex_state = LEX_INTERPSTART;
5081         }
5082
5083         if (s != PL_bufptr) {
5084             NEXTVAL_NEXTTOKE = pl_yylval;
5085             PL_expect = XTERM;
5086             force_next(THING);
5087             if (PL_lex_starts++) {
5088                 /* commas only at base level: /$a\Ub$c/ => ($a,uc(b.$c)) */
5089                 if (!PL_lex_casemods && PL_lex_inpat)
5090                     TOKEN(',');
5091                 else
5092                     AopNOASSIGN(OP_CONCAT);
5093             }
5094             else {
5095                 PL_bufptr = s;
5096                 return yylex();
5097             }
5098         }
5099
5100         return yylex();
5101     case LEX_FORMLINE:
5102         assert(PL_lex_formbrack);
5103         s = scan_formline(PL_bufptr);
5104         if (!PL_lex_formbrack)
5105         {
5106             formbrack = 1;
5107             goto rightbracket;
5108         }
5109         PL_bufptr = s;
5110         return yylex();
5111     }
5112
5113     /* We really do *not* want PL_linestr ever becoming a COW. */
5114     assert (!SvIsCOW(PL_linestr));
5115     s = PL_bufptr;
5116     PL_oldoldbufptr = PL_oldbufptr;
5117     PL_oldbufptr = s;
5118     PL_parser->saw_infix_sigil = 0;
5119
5120     if (PL_in_my == KEY_sigvar) {
5121         /* we expect the sigil and optional var name part of a
5122          * signature element here. Since a '$' is not necessarily
5123          * followed by a var name, handle it specially here; the general
5124          * yylex code would otherwise try to interpret whatever follows
5125          * as a var; e.g. ($, ...) would be seen as the var '$,'
5126          */
5127
5128         U8 sigil;
5129
5130         s = skipspace(s);
5131         sigil = *s++;
5132         PL_bufptr = s; /* for error reporting */
5133         switch (sigil) {
5134         case '$':
5135         case '@':
5136         case '%':
5137             /* spot stuff that looks like an prototype */
5138             if (strchr("$:@%&*;\\[]", *s)) {
5139                 yyerror("Illegal character following sigil in a subroutine signature");
5140                 break;
5141             }
5142             /* '$#' is banned, while '$ # comment' isn't */
5143             if (*s == '#') {
5144                 yyerror("'#' not allowed immediately following a sigil in a subroutine signature");
5145                 break;
5146             }
5147             s = skipspace(s);
5148             if (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)) {
5149                 char *dest = PL_tokenbuf + 1;
5150                 /* read var name, including sigil, into PL_tokenbuf */
5151                 PL_tokenbuf[0] = sigil;
5152                 parse_ident(&s, &dest, dest + sizeof(PL_tokenbuf) - 1,
5153                     0, cBOOL(UTF), FALSE, FALSE);
5154                 *dest = '\0';
5155                 assert(PL_tokenbuf[1]); /* we have a variable name */
5156             }
5157             else {
5158                 *PL_tokenbuf = 0;
5159                 PL_in_my = 0;
5160             }
5161
5162             s = skipspace(s);
5163             /* parse the = for the default ourselves to avoid '+=' etc being accepted here
5164              * as the ASSIGNOP, and exclude other tokens that start with =
5165              */
5166             if (*s == '=' && (!s[1] || strchr("=~>", s[1]) == 0)) {
5167                 /* save now to report with the same context as we did when
5168                  * all ASSIGNOPS were accepted */
5169                 PL_oldbufptr = s;
5170
5171                 ++s;
5172                 NEXTVAL_NEXTTOKE.ival = 0;
5173                 force_next(ASSIGNOP);
5174                 PL_expect = XTERM;
5175             }
5176             else if (*s == ',' || *s == ')') {
5177                 PL_expect = XOPERATOR;
5178             }
5179             else {
5180                 /* make sure the context shows the unexpected character and
5181                  * hopefully a bit more */
5182                 if (*s) ++s;
5183                 while (*s && *s != '$' && *s != '@' && *s != '%' && *s != ')')
5184                     s++;
5185                 PL_bufptr = s; /* for error reporting */
5186                 yyerror("Illegal operator following parameter in a subroutine signature");
5187                 PL_in_my = 0;
5188             }
5189             if (*PL_tokenbuf) {
5190                 NEXTVAL_NEXTTOKE.ival = sigil;
5191                 force_next('p'); /* force a signature pending identifier */
5192             }
5193             break;
5194
5195         case ')':
5196             PL_expect = XBLOCK;
5197             break;
5198         case ',': /* handle ($a,,$b) */
5199             break;
5200
5201         default:
5202             PL_in_my = 0;
5203             yyerror("A signature parameter must start with '$', '@' or '%'");
5204             /* very crude error recovery: skip to likely next signature
5205              * element */
5206             while (*s && *s != '$' && *s != '@' && *s != '%' && *s != ')')
5207                 s++;
5208             break;
5209         }
5210         TOKEN(sigil);
5211     }
5212
5213   retry:
5214     switch (*s) {
5215     default:
5216         if (UTF) {
5217             if (isIDFIRST_utf8_safe(s, PL_bufend)) {
5218                 goto keylookup;
5219             }
5220         }
5221         else if (isALNUMC(*s)) {
5222             goto keylookup;
5223         }
5224     {
5225         SV *dsv = newSVpvs_flags("", SVs_TEMP);
5226         const char *c;
5227         if (UTF) {
5228             STRLEN skiplen = UTF8SKIP(s);
5229             STRLEN stravail = PL_bufend - s;
5230             c = sv_uni_display(dsv, newSVpvn_flags(s,
5231                                                    skiplen > stravail ? stravail : skiplen,
5232                                                    SVs_TEMP | SVf_UTF8),
5233                                10, UNI_DISPLAY_ISPRINT);
5234         }
5235         else {
5236             c = Perl_form(aTHX_ "\\x%02X", (unsigned char)*s);
5237         }
5238
5239         if (s >= PL_linestart) {
5240             d = PL_linestart;
5241         }
5242         else {
5243             /* somehow (probably due to a parse failure), PL_linestart has advanced
5244              * pass PL_bufptr, get a reasonable beginning of line
5245              */
5246             d = s;
5247             while (d > SvPVX(PL_linestr) && d[-1] && d[-1] != '\n')
5248                 --d;
5249         }
5250         len = UTF ? Perl_utf8_length(aTHX_ (U8 *) d, (U8 *) s) : (STRLEN) (s - d);
5251         if (len > UNRECOGNIZED_PRECEDE_COUNT) {
5252             d = UTF ? (char *) utf8_hop_back((U8 *) s, -UNRECOGNIZED_PRECEDE_COUNT, (U8 *)d) : s - UNRECOGNIZED_PRECEDE_COUNT;
5253         }
5254
5255         Perl_croak(aTHX_  "Unrecognized character %s; marked by <-- HERE after %" UTF8f "<-- HERE near column %d", c,
5256                           UTF8fARG(UTF, (s - d), d),
5257                          (int) len + 1);
5258     }
5259     case 4:
5260     case 26:
5261         goto fake_eof;                  /* emulate EOF on ^D or ^Z */
5262     case 0:
5263         if ((!PL_rsfp || PL_lex_inwhat)
5264          && (!PL_parser->filtered || s+1 < PL_bufend)) {
5265             PL_last_uni = 0;
5266             PL_last_lop = 0;
5267             if (PL_lex_brackets
5268                 && PL_lex_brackstack[PL_lex_brackets-1] != XFAKEEOF)
5269             {
5270                 yyerror((const char *)
5271                         (PL_lex_formbrack
5272                          ? "Format not terminated"
5273                          : "Missing right curly or square bracket"));
5274             }
5275             DEBUG_T( { PerlIO_printf(Perl_debug_log,
5276                         "### Tokener got EOF\n");
5277             } );
5278             TOKEN(0);
5279         }
5280         if (s++ < PL_bufend)
5281             goto retry;                 /* ignore stray nulls */
5282         PL_last_uni = 0;
5283         PL_last_lop = 0;
5284         if (!PL_in_eval && !PL_preambled) {
5285             PL_preambled = TRUE;
5286             if (PL_perldb) {
5287                 /* Generate a string of Perl code to load the debugger.
5288                  * If PERL5DB is set, it will return the contents of that,
5289                  * otherwise a compile-time require of perl5db.pl.  */
5290
5291                 const char * const pdb = PerlEnv_getenv("PERL5DB");
5292
5293                 if (pdb) {
5294                     sv_setpv(PL_linestr, pdb);
5295                     sv_catpvs(PL_linestr,";");
5296                 } else {
5297                     SETERRNO(0,SS_NORMAL);
5298                     sv_setpvs(PL_linestr, "BEGIN { require 'perl5db.pl' };");
5299                 }
5300                 PL_parser->preambling = CopLINE(PL_curcop);
5301             } else
5302                 SvPVCLEAR(PL_linestr);
5303             if (PL_preambleav) {
5304                 SV **svp = AvARRAY(PL_preambleav);
5305                 SV **const end = svp + AvFILLp(PL_preambleav);
5306                 while(svp <= end) {
5307                     sv_catsv(PL_linestr, *svp);
5308                     ++svp;
5309                     sv_catpvs(PL_linestr, ";");
5310                 }
5311                 sv_free(MUTABLE_SV(PL_preambleav));
5312                 PL_preambleav = NULL;
5313             }
5314             if (PL_minus_E)
5315                 sv_catpvs(PL_linestr,
5316                           "use feature ':5." STRINGIFY(PERL_VERSION) "';");
5317             if (PL_minus_n || PL_minus_p) {
5318                 sv_catpvs(PL_linestr, "LINE: while (<>) {"/*}*/);
5319                 if (PL_minus_l)
5320                     sv_catpvs(PL_linestr,"chomp;");
5321                 if (PL_minus_a) {
5322                     if (PL_minus_F) {
5323                         if (   (   *PL_splitstr == '/'
5324                                 || *PL_splitstr == '\''
5325                                 || *PL_splitstr == '"')
5326                             && strchr(PL_splitstr + 1, *PL_splitstr))
5327                         {
5328                             /* strchr is ok, because -F pattern can't contain
5329                              * embeddded NULs */
5330                             Perl_sv_catpvf(aTHX_ PL_linestr, "our @F=split(%s);", PL_splitstr);
5331                         }
5332                         else {
5333                             /* "q\0${splitstr}\0" is legal perl. Yes, even NUL
5334                                bytes can be used as quoting characters.  :-) */
5335                             const char *splits = PL_splitstr;
5336                             sv_catpvs(PL_linestr, "our @F=split(q\0");
5337                             do {
5338                                 /* Need to \ \s  */
5339                                 if (*splits == '\\')
5340                                     sv_catpvn(PL_linestr, splits, 1);
5341                                 sv_catpvn(PL_linestr, splits, 1);
5342                             } while (*splits++);
5343                             /* This loop will embed the trailing NUL of
5344                                PL_linestr as the last thing it does before
5345                                terminating.  */
5346                             sv_catpvs(PL_linestr, ");");
5347                         }
5348                     }
5349                     else
5350                         sv_catpvs(PL_linestr,"our @F=split(' ');");
5351                 }
5352             }
5353             sv_catpvs(PL_linestr, "\n");
5354             PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = SvPVX(PL_linestr);
5355             PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
5356             PL_last_lop = PL_last_uni = NULL;
5357             if (PERLDB_LINE_OR_SAVESRC && PL_curstash != PL_debstash)
5358                 update_debugger_info(PL_linestr, NULL, 0);
5359             goto retry;
5360         }
5361         do {
5362             fake_eof = 0;
5363             bof = cBOOL(PL_rsfp);
5364             if (0) {
5365               fake_eof:
5366                 fake_eof = LEX_FAKE_EOF;
5367             }
5368             PL_bufptr = PL_bufend;
5369             COPLINE_INC_WITH_HERELINES;
5370             if (!lex_next_chunk(fake_eof)) {
5371                 CopLINE_dec(PL_curcop);
5372                 s = PL_bufptr;
5373                 TOKEN(';');     /* not infinite loop because rsfp is NULL now */
5374             }
5375             CopLINE_dec(PL_curcop);
5376             s = PL_bufptr;
5377             /* If it looks like the start of a BOM or raw UTF-16,
5378              * check if it in fact is. */
5379             if (bof && PL_rsfp
5380                 && (   *s == 0
5381                     || *(U8*)s == BOM_UTF8_FIRST_BYTE
5382                     || *(U8*)s >= 0xFE
5383                     || s[1] == 0))
5384             {
5385                 Off_t offset = (IV)PerlIO_tell(PL_rsfp);
5386                 bof = (offset == (Off_t)SvCUR(PL_linestr));
5387 #if defined(PERLIO_USING_CRLF) && defined(PERL_TEXTMODE_SCRIPTS)
5388                 /* offset may include swallowed CR */
5389                 if (!bof)
5390                     bof = (offset == (Off_t)SvCUR(PL_linestr)+1);
5391 #endif
5392                 if (bof) {
5393                     PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
5394                     s = swallow_bom((U8*)s);
5395                 }
5396             }
5397             if (PL_parser->in_pod) {
5398                 /* Incest with pod. */
5399                 if (    memBEGINPs(s, (STRLEN) (PL_bufend - s), "=cut")
5400                     && !isALPHA(s[4]))
5401                 {
5402                     SvPVCLEAR(PL_linestr);
5403                     PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = SvPVX(PL_linestr);
5404                     PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
5405                     PL_last_lop = PL_last_uni = NULL;
5406                     PL_parser->in_pod = 0;
5407                 }
5408             }
5409             if (PL_rsfp || PL_parser->filtered)
5410                 incline(s, PL_bufend);
5411         } while (PL_parser->in_pod);
5412         PL_oldoldbufptr = PL_oldbufptr = PL_bufptr = PL_linestart = s;
5413         PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
5414         PL_last_lop = PL_last_uni = NULL;
5415         if (CopLINE(PL_curcop) == 1) {
5416             while (s < PL_bufend && isSPACE(*s))
5417                 s++;
5418             if (*s == ':' && s[1] != ':') /* for csh execing sh scripts */
5419                 s++;
5420             d = NULL;
5421             if (!PL_in_eval) {
5422                 if (*s == '#' && *(s+1) == '!')
5423                     d = s + 2;
5424 #ifdef ALTERNATE_SHEBANG
5425                 else {
5426                     static char const as[] = ALTERNATE_SHEBANG;
5427                     if (*s == as[0] && strnEQ(s, as, sizeof(as) - 1))
5428                         d = s + (sizeof(as) - 1);
5429                 }
5430 #endif /* ALTERNATE_SHEBANG */
5431             }
5432             if (d) {
5433                 char *ipath;
5434                 char *ipathend;
5435
5436                 while (isSPACE(*d))
5437                     d++;
5438                 ipath = d;
5439                 while (*d && !isSPACE(*d))
5440                     d++;
5441                 ipathend = d;
5442
5443 #ifdef ARG_ZERO_IS_SCRIPT
5444                 if (ipathend > ipath) {
5445                     /*
5446                      * HP-UX (at least) sets argv[0] to the script name,
5447                      * which makes $^X incorrect.  And Digital UNIX and Linux,
5448                      * at least, set argv[0] to the basename of the Perl
5449                      * interpreter. So, having found "#!", we'll set it right.
5450                      */
5451                     SV* copfilesv = CopFILESV(PL_curcop);
5452                     if (copfilesv) {
5453                         SV * const x =
5454                             GvSV(gv_fetchpvs("\030", GV_ADD|GV_NOTQUAL,
5455                                              SVt_PV)); /* $^X */
5456                         assert(SvPOK(x) || SvGMAGICAL(x));
5457                         if (sv_eq(x, copfilesv)) {
5458                             sv_setpvn(x, ipath, ipathend - ipath);
5459                             SvSETMAGIC(x);
5460                         }
5461                         else {
5462                             STRLEN blen;
5463                             STRLEN llen;
5464                             const char *bstart = SvPV_const(copfilesv, blen);
5465                             const char * const lstart = SvPV_const(x, llen);
5466                             if (llen < blen) {
5467                                 bstart += blen - llen;
5468                                 if (strnEQ(bstart, lstart, llen) &&     bstart[-1] == '/') {
5469                                     sv_setpvn(x, ipath, ipathend - ipath);
5470                                     SvSETMAGIC(x);
5471                                 }
5472                             }
5473                         }
5474                     }
5475                     else {
5476                         /* Anything to do if no copfilesv? */
5477                     }
5478                     TAINT_NOT;  /* $^X is always tainted, but that's OK */
5479                 }
5480 #endif /* ARG_ZERO_IS_SCRIPT */
5481
5482                 /*
5483                  * Look for options.
5484                  */
5485                 d = instr(s,"perl -");
5486                 if (!d) {
5487                     d = instr(s,"perl");
5488 #if defined(DOSISH)
5489                     /* avoid getting into infinite loops when shebang
5490                      * line contains "Perl" rather than "perl" */
5491                     if (!d) {
5492                         for (d = ipathend-4; d >= ipath; --d) {
5493                             if (isALPHA_FOLD_EQ(*d, 'p')
5494                                 && !ibcmp(d, "perl", 4))
5495                             {
5496                                 break;
5497                             }
5498                         }
5499                         if (d < ipath)
5500                             d = NULL;
5501                     }
5502 #endif
5503                 }
5504 #ifdef ALTERNATE_SHEBANG
5505                 /*
5506                  * If the ALTERNATE_SHEBANG on this system starts with a
5507                  * character that can be part of a Perl expression, then if
5508                  * we see it but not "perl", we're probably looking at the
5509                  * start of Perl code, not a request to hand off to some
5510                  * other interpreter.  Similarly, if "perl" is there, but
5511                  * not in the first 'word' of the line, we assume the line
5512                  * contains the start of the Perl program.
5513                  */
5514                 if (d && *s != '#') {
5515                     const char *c = ipath;
5516                     while (*c && !strchr("; \t\r\n\f\v#", *c))
5517                         c++;
5518                     if (c < d)
5519                         d = NULL;       /* "perl" not in first word; ignore */
5520                     else
5521                         *s = '#';       /* Don't try to parse shebang line */
5522                 }
5523 #endif /* ALTERNATE_SHEBANG */
5524                 if (!d
5525                     && *s == '#'
5526                     && ipathend > ipath
5527                     && !PL_minus_c
5528                     && !instr(s,"indir")
5529                     && instr(PL_origargv[0],"perl"))
5530                 {
5531                     dVAR;
5532                     char **newargv;
5533
5534                     *ipathend = '\0';
5535                     s = ipathend + 1;
5536                     while (s < PL_bufend && isSPACE(*s))
5537                         s++;
5538                     if (s < PL_bufend) {
5539                         Newx(newargv,PL_origargc+3,char*);
5540                         newargv[1] = s;
5541                         while (s < PL_bufend && !isSPACE(*s))
5542                             s++;
5543                         *s = '\0';
5544                         Copy(PL_origargv+1, newargv+2, PL_origargc+1, char*);
5545                     }
5546                     else
5547                         newargv = PL_origargv;
5548                     newargv[0] = ipath;
5549                     PERL_FPU_PRE_EXEC
5550                     PerlProc_execv(ipath, EXEC_ARGV_CAST(newargv));
5551                     PERL_FPU_POST_EXEC
5552                     Perl_croak(aTHX_ "Can't exec %s", ipath);
5553                 }
5554                 if (d) {
5555                     while (*d && !isSPACE(*d))
5556                         d++;
5557                     while (SPACE_OR_TAB(*d))
5558                         d++;
5559
5560                     if (*d++ == '-') {
5561                         const bool switches_done = PL_doswitches;
5562                         const U32 oldpdb = PL_perldb;
5563                         const bool oldn = PL_minus_n;
5564                         const bool oldp = PL_minus_p;
5565                         const char *d1 = d;
5566
5567                         do {
5568                             bool baduni = FALSE;
5569                             if (*d1 == 'C') {
5570                                 const char *d2 = d1 + 1;
5571                                 if (parse_unicode_opts((const char **)&d2)
5572                                     != PL_unicode)
5573                                     baduni = TRUE;
5574                             }
5575                             if (baduni || isALPHA_FOLD_EQ(*d1, 'M')) {
5576                                 const char * const m = d1;
5577                                 while (*d1 && !isSPACE(*d1))
5578                                     d1++;
5579                                 Perl_croak(aTHX_ "Too late for \"-%.*s\" option",
5580                                       (int)(d1 - m), m);
5581                             }
5582                             d1 = moreswitches(d1);
5583                         } while (d1);
5584                         if (PL_doswitches && !switches_done) {
5585                             int argc = PL_origargc;
5586                             char **argv = PL_origargv;
5587                             do {
5588                                 argc--,argv++;
5589                             } while (argc && argv[0][0] == '-' && argv[0][1]);
5590                             init_argv_symbols(argc,argv);
5591                         }
5592                         if (   (PERLDB_LINE_OR_SAVESRC && !oldpdb)
5593                             || ((PL_minus_n || PL_minus_p) && !(oldn || oldp)))
5594                               /* if we have already added "LINE: while (<>) {",
5595                                  we must not do it again */
5596                         {
5597                             SvPVCLEAR(PL_linestr);
5598                             PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = SvPVX(PL_linestr);
5599                             PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
5600                             PL_last_lop = PL_last_uni = NULL;
5601                             PL_preambled = FALSE;
5602                             if (PERLDB_LINE_OR_SAVESRC)
5603                                 (void)gv_fetchfile(PL_origfilename);
5604                             goto retry;
5605                         }
5606                     }
5607                 }
5608             }
5609         }
5610         if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) {
5611             PL_lex_state = LEX_FORMLINE;
5612             force_next(FORMRBRACK);
5613             TOKEN(';');
5614         }
5615         goto retry;
5616     case '\r':
5617 #ifdef PERL_STRICT_CR
5618         Perl_warn(aTHX_ "Illegal character \\%03o (carriage return)", '\r');
5619         Perl_croak(aTHX_
5620       "\t(Maybe you didn't strip carriage returns after a network transfer?)\n");
5621 #endif
5622     case ' ': case '\t': case '\f': case '\v':
5623         s++;
5624         goto retry;
5625     case '#':
5626     case '\n':
5627         if (PL_lex_state != LEX_NORMAL
5628             || (PL_in_eval && !PL_rsfp && !PL_parser->filtered))
5629         {
5630             const bool in_comment = *s == '#';
5631             if (*s == '#' && s == PL_linestart && PL_in_eval
5632              && !PL_rsfp && !PL_parser->filtered) {
5633                 /* handle eval qq[#line 1 "foo"\n ...] */
5634                 CopLINE_dec(PL_curcop);
5635                 incline(s, PL_bufend);
5636             }
5637             d = s;
5638             while (d < PL_bufend && *d != '\n')
5639                 d++;
5640             if (d < PL_bufend)
5641                 d++;
5642             s = d;
5643             if (in_comment && d == PL_bufend
5644                 && PL_lex_state == LEX_INTERPNORMAL
5645                 && PL_lex_inwhat == OP_SUBST && PL_lex_repl == PL_linestr
5646                 && SvEVALED(PL_lex_repl) && d[-1] == '}') s--;
5647             else
5648                 incline(s, PL_bufend);
5649             if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) {
5650                 PL_lex_state = LEX_FORMLINE;
5651                 force_next(FORMRBRACK);
5652                 TOKEN(';');
5653             }
5654         }
5655         else {
5656             while (s < PL_bufend && *s != '\n')
5657                 s++;
5658             if (s < PL_bufend)
5659                 {
5660                     s++;
5661                     if (s < PL_bufend)
5662                         incline(s, PL_bufend);
5663                 }
5664         }
5665         goto retry;
5666     case '-':
5667         if (s[1] && isALPHA(s[1]) && !isWORDCHAR(s[2])) {
5668             I32 ftst = 0;
5669             char tmp;
5670
5671             s++;
5672             PL_bufptr = s;
5673             tmp = *s++;
5674
5675             while (s < PL_bufend && SPACE_OR_TAB(*s))
5676                 s++;
5677
5678             if (memBEGINs(s, (STRLEN) (PL_bufend - s), "=>")) {
5679                 s = force_word(PL_bufptr,BAREWORD,FALSE,FALSE);
5680                 DEBUG_T( { printbuf("### Saw unary minus before =>, forcing word %s\n", s); } );
5681                 OPERATOR('-');          /* unary minus */
5682             }
5683             switch (tmp) {
5684             case 'r': ftst = OP_FTEREAD;        break;
5685             case 'w': ftst = OP_FTEWRITE;       break;
5686             case 'x': ftst = OP_FTEEXEC;        break;
5687             case 'o': ftst = OP_FTEOWNED;       break;
5688             case 'R': ftst = OP_FTRREAD;        break;
5689             case 'W': ftst = OP_FTRWRITE;       break;
5690             case 'X': ftst = OP_FTREXEC;        break;
5691             case 'O': ftst = OP_FTROWNED;       break;
5692             case 'e': ftst = OP_FTIS;           break;
5693             case 'z': ftst = OP_FTZERO;         break;
5694             case 's': ftst = OP_FTSIZE;         break;
5695             case 'f': ftst = OP_FTFILE;         break;
5696             case 'd': ftst = OP_FTDIR;          break;
5697             case 'l': ftst = OP_FTLINK;         break;
5698             case 'p': ftst = OP_FTPIPE;         break;
5699             case 'S': ftst = OP_FTSOCK;         break;
5700             case 'u': ftst = OP_FTSUID;         break;
5701             case 'g': ftst = OP_FTSGID;         break;
5702             case 'k': ftst = OP_FTSVTX;         break;
5703             case 'b': ftst = OP_FTBLK;          break;
5704             case 'c': ftst = OP_FTCHR;          break;
5705             case 't': ftst = OP_FTTTY;          break;
5706             case 'T': ftst = OP_FTTEXT;         break;
5707             case 'B': ftst = OP_FTBINARY;       break;
5708             case 'M': case 'A': case 'C':
5709                 gv_fetchpvs("\024", GV_ADD|GV_NOTQUAL, SVt_PV);
5710                 switch (tmp) {
5711                 case 'M': ftst = OP_FTMTIME;    break;
5712                 case 'A': ftst = OP_FTATIME;    break;
5713                 case 'C': ftst = OP_FTCTIME;    break;
5714                 default:                        break;
5715                 }
5716                 break;
5717             default:
5718                 break;
5719             }
5720             if (ftst) {
5721                 PL_last_uni = PL_oldbufptr;
5722                 PL_last_lop_op = (OPCODE)ftst;
5723                 DEBUG_T( { PerlIO_printf(Perl_debug_log,
5724                         "### Saw file test %c\n", (int)tmp);
5725                 } );
5726                 FTST(ftst);
5727             }
5728             else {
5729                 /* Assume it was a minus followed by a one-letter named
5730                  * subroutine call (or a -bareword), then. */
5731                 DEBUG_T( { PerlIO_printf(Perl_debug_log,
5732                         "### '-%c' looked like a file test but was not\n",
5733                         (int) tmp);
5734                 } );
5735                 s = --PL_bufptr;
5736             }
5737         }
5738         {
5739             const char tmp = *s++;
5740             if (*s == tmp) {
5741                 s++;
5742                 if (PL_expect == XOPERATOR)
5743                     TERM(POSTDEC);
5744                 else
5745                     OPERATOR(PREDEC);
5746             }
5747             else if (*s == '>') {
5748                 s++;
5749                 s = skipspace(s);
5750                 if (((*s == '$' || *s == '&') && s[1] == '*')
5751                   ||(*s == '$' && s[1] == '#' && s[2] == '*')
5752                   ||((*s == '@' || *s == '%') && strchr("*[{", s[1]))
5753                   ||(*s == '*' && (s[1] == '*' || s[1] == '{'))
5754                  )
5755                 {
5756                     PL_expect = XPOSTDEREF;
5757                     TOKEN(ARROW);
5758                 }
5759                 if (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)) {
5760                     s = force_word(s,METHOD,FALSE,TRUE);
5761                     TOKEN(ARROW);
5762                 }
5763                 else if (*s == '$')
5764                     OPERATOR(ARROW);
5765                 else
5766                     TERM(ARROW);
5767             }
5768             if (PL_expect == XOPERATOR) {
5769                 if (*s == '='
5770                     && !PL_lex_allbrackets
5771                     && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
5772                 {
5773                     s--;
5774                     TOKEN(0);
5775                 }
5776                 Aop(OP_SUBTRACT);
5777             }
5778             else {
5779                 if (isSPACE(*s) || !isSPACE(*PL_bufptr))
5780                     check_uni();
5781                 OPERATOR('-');          /* unary minus */
5782             }
5783         }
5784
5785     case '+':
5786         {
5787             const char tmp = *s++;
5788             if (*s == tmp) {
5789                 s++;
5790                 if (PL_expect == XOPERATOR)
5791                     TERM(POSTINC);
5792                 else
5793                     OPERATOR(PREINC);
5794             }
5795             if (PL_expect == XOPERATOR) {
5796                 if (*s == '='
5797                     && !PL_lex_allbrackets
5798                     && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
5799                 {
5800                     s--;
5801                     TOKEN(0);
5802                 }
5803                 Aop(OP_ADD);
5804             }
5805             else {
5806                 if (isSPACE(*s) || !isSPACE(*PL_bufptr))
5807                     check_uni();
5808                 OPERATOR('+');
5809             }
5810         }
5811
5812     case '*':
5813         if (PL_expect == XPOSTDEREF) POSTDEREF('*');
5814         if (PL_expect != XOPERATOR) {
5815             s = scan_ident(s, PL_tokenbuf, sizeof PL_tokenbuf, TRUE);
5816             PL_expect = XOPERATOR;
5817             force_ident(PL_tokenbuf, '*');
5818             if (!*PL_tokenbuf)
5819                 PREREF('*');
5820             TERM('*');
5821         }
5822         s++;
5823         if (*s == '*') {
5824             s++;
5825             if (*s == '=' && !PL_lex_allbrackets
5826                 && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
5827             {
5828                 s -= 2;
5829                 TOKEN(0);
5830             }
5831             PWop(OP_POW);
5832         }
5833         if (*s == '='
5834             && !PL_lex_allbrackets
5835             && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
5836         {
5837             s--;
5838             TOKEN(0);
5839         }
5840         PL_parser->saw_infix_sigil = 1;
5841         Mop(OP_MULTIPLY);
5842
5843     case '%':
5844     {
5845         if (PL_expect == XOPERATOR) {
5846             if (s[1] == '='
5847                 && !PL_lex_allbrackets
5848                 && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
5849             {
5850                 TOKEN(0);
5851             }
5852             ++s;
5853             PL_parser->saw_infix_sigil = 1;
5854             Mop(OP_MODULO);
5855         }
5856         else if (PL_expect == XPOSTDEREF) POSTDEREF('%');
5857         PL_tokenbuf[0] = '%';
5858         s = scan_ident(s, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1, FALSE);
5859         pl_yylval.ival = 0;
5860         if (!PL_tokenbuf[1]) {
5861             PREREF('%');
5862         }
5863         if (   (PL_expect != XREF || PL_oldoldbufptr == PL_last_lop)
5864             && intuit_more(s, PL_bufend)) {
5865             if (*s == '[')
5866                 PL_tokenbuf[0] = '@';
5867         }
5868         PL_expect = XOPERATOR;
5869         force_ident_maybe_lex('%');
5870         TERM('%');
5871     }
5872     case '^':
5873         d = s;
5874         bof = FEATURE_BITWISE_IS_ENABLED;
5875         if (bof && s[1] == '.')
5876             s++;
5877         if (!PL_lex_allbrackets && PL_lex_fakeeof >=
5878                 (s[1] == '=' ? LEX_FAKEEOF_ASSIGN : LEX_FAKEEOF_BITWISE))
5879         {
5880             s = d;
5881             TOKEN(0);
5882         }
5883         s++;
5884         BOop(bof ? d == s-2 ? OP_SBIT_XOR : OP_NBIT_XOR : OP_BIT_XOR);
5885     case '[':
5886         if (PL_lex_brackets > 100)
5887             Renew(PL_lex_brackstack, PL_lex_brackets + 10, char);
5888         PL_lex_brackstack[PL_lex_brackets++] = 0;
5889         PL_lex_allbrackets++;
5890         {
5891             const char tmp = *s++;
5892             OPERATOR(tmp);
5893         }
5894     case '~':
5895         if (s[1] == '~'
5896             && (PL_expect == XOPERATOR || PL_expect == XTERMORDORDOR))
5897         {
5898             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
5899                 TOKEN(0);
5900             s += 2;
5901             Perl_ck_warner_d(aTHX_
5902                 packWARN(WARN_EXPERIMENTAL__SMARTMATCH),
5903                 "Smartmatch is experimental");
5904             Eop(OP_SMARTMATCH);
5905         }
5906         s++;
5907         if ((bof = FEATURE_BITWISE_IS_ENABLED) && *s == '.') {
5908             s++;
5909             BCop(OP_SCOMPLEMENT);
5910         }
5911         BCop(bof ? OP_NCOMPLEMENT : OP_COMPLEMENT);
5912     case ',':
5913         if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMMA)
5914             TOKEN(0);
5915         s++;
5916         OPERATOR(',');
5917     case ':':
5918         if (s[1] == ':') {
5919             len = 0;
5920             goto just_a_word_zero_gv;
5921         }
5922         s++;
5923         {
5924         OP *attrs;
5925
5926         switch (PL_expect) {
5927         case XOPERATOR:
5928             if (!PL_in_my || PL_lex_state != LEX_NORMAL)
5929                 break;
5930             PL_bufptr = s;      /* update in case we back off */
5931             if (*s == '=') {
5932                 Perl_croak(aTHX_
5933                            "Use of := for an empty attribute list is not allowed");
5934             }
5935             goto grabattrs;
5936         case XATTRBLOCK:
5937             PL_expect = XBLOCK;
5938             goto grabattrs;
5939         case XATTRTERM:
5940             PL_expect = XTERMBLOCK;
5941          grabattrs:
5942             /* NB: as well as parsing normal attributes, we also end up
5943              * here if there is something looking like attributes
5944              * following a signature (which is illegal, but used to be
5945              * legal in 5.20..5.26). If the latter, we still parse the
5946              * attributes so that error messages(s) are less confusing,
5947              * but ignore them (parser->sig_seen).
5948              */
5949             s = skipspace(s);
5950             attrs = NULL;
5951             while (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)) {
5952                 bool sig = PL_parser->sig_seen;
5953                 I32 tmp;
5954                 SV *sv;
5955                 d = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE, &len);
5956                 if (isLOWER(*s) && (tmp = keyword(PL_tokenbuf, len, 0))) {
5957                     if (tmp < 0) tmp = -tmp;
5958                     switch (tmp) {
5959                     case KEY_or:
5960                     case KEY_and:
5961                     case KEY_for:
5962                     case KEY_foreach:
5963                     case KEY_unless:
5964                     case KEY_if:
5965                     case KEY_while:
5966                     case KEY_until:
5967                         goto got_attrs;
5968                     default:
5969                         break;
5970                     }
5971                 }
5972                 sv = newSVpvn_flags(s, len, UTF ? SVf_UTF8 : 0);
5973                 if (*d == '(') {
5974                     d = scan_str(d,TRUE,TRUE,FALSE,NULL);
5975                     if (!d) {
5976                         if (attrs)
5977                             op_free(attrs);
5978                         sv_free(sv);
5979                         Perl_croak(aTHX_ "Unterminated attribute parameter in attribute list");
5980                     }
5981                     COPLINE_SET_FROM_MULTI_END;
5982                 }
5983                 if (PL_lex_stuff) {
5984                     sv_catsv(sv, PL_lex_stuff);
5985                     attrs = op_append_elem(OP_LIST, attrs,
5986                                         newSVOP(OP_CONST, 0, sv));
5987                     SvREFCNT_dec_NN(PL_lex_stuff);
5988                     PL_lex_stuff = NULL;
5989                 }
5990                 else {
5991                     /* NOTE: any CV attrs applied here need to be part of
5992                        the CVf_BUILTIN_ATTRS define in cv.h! */
5993                     if (!PL_in_my && memEQs(SvPVX(sv), len, "lvalue")) {
5994                         sv_free(sv);
5995                         if (!sig)
5996                             CvLVALUE_on(PL_compcv);
5997                     }
5998                     else if (!PL_in_my && memEQs(SvPVX(sv), len, "method")) {
5999                         sv_free(sv);
6000                         if (!sig)
6001                             CvMETHOD_on(PL_compcv);
6002                     }
6003                     else if (!PL_in_my && memEQs(SvPVX(sv), len, "const"))
6004                     {
6005                         sv_free(sv);
6006                         if (!sig) {
6007                             Perl_ck_warner_d(aTHX_
6008                                 packWARN(WARN_EXPERIMENTAL__CONST_ATTR),
6009                                ":const is experimental"
6010                             );
6011                             CvANONCONST_on(PL_compcv);
6012                             if (!CvANON(PL_compcv))
6013                                 yyerror(":const is not permitted on named "
6014                                         "subroutines");
6015                         }
6016                     }
6017                     /* After we've set the flags, it could be argued that
6018                        we don't need to do the attributes.pm-based setting
6019                        process, and shouldn't bother appending recognized
6020                        flags.  To experiment with that, uncomment the
6021                        following "else".  (Note that's already been
6022                        uncommented.  That keeps the above-applied built-in
6023                        attributes from being intercepted (and possibly
6024                        rejected) by a package's attribute routines, but is
6025                        justified by the performance win for the common case
6026                        of applying only built-in attributes.) */
6027                     else
6028                         attrs = op_append_elem(OP_LIST, attrs,
6029                                             newSVOP(OP_CONST, 0,
6030                                                     sv));
6031                 }
6032                 s = skipspace(d);
6033                 if (*s == ':' && s[1] != ':')
6034                     s = skipspace(s+1);
6035                 else if (s == d)
6036                     break;      /* require real whitespace or :'s */
6037                 /* XXX losing whitespace on sequential attributes here */
6038             }
6039             {
6040                 if (*s != ';'
6041                     && *s != '}'
6042                     && !(PL_expect == XOPERATOR
6043                          ? (*s == '=' ||  *s == ')')
6044                          : (*s == '{' ||  *s == '(')))
6045                 {
6046                     const char q = ((*s == '\'') ? '"' : '\'');
6047                     /* If here for an expression, and parsed no attrs, back
6048                        off. */
6049                     if (PL_expect == XOPERATOR && !attrs) {
6050                         s = PL_bufptr;
6051                         break;
6052                     }
6053                     /* MUST advance bufptr here to avoid bogus "at end of line"
6054                        context messages from yyerror().
6055                     */
6056                     PL_bufptr = s;
6057                     yyerror( (const char *)
6058                              (*s
6059                               ? Perl_form(aTHX_ "Invalid separator character "
6060                                           "%c%c%c in attribute list", q, *s, q)
6061                               : "Unterminated attribute list" ) );
6062                     if (attrs)
6063                         op_free(attrs);
6064                     OPERATOR(':');
6065                 }
6066             }
6067         got_attrs:
6068             if (PL_parser->sig_seen) {
6069                 /* see comment about about sig_seen and parser error
6070                  * handling */
6071                 if (attrs)
6072                     op_free(attrs);
6073                 Perl_croak(aTHX_ "Subroutine attributes must come "
6074                                  "before the signature");
6075                 }
6076             if (attrs) {
6077                 NEXTVAL_NEXTTOKE.opval = attrs;
6078                 force_next(THING);
6079             }
6080             TOKEN(COLONATTR);
6081         }
6082         }
6083         if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_CLOSING) {
6084             s--;
6085             TOKEN(0);
6086         }
6087         PL_lex_allbrackets--;
6088         OPERATOR(':');
6089     case '(':
6090         s++;
6091         if (PL_last_lop == PL_oldoldbufptr || PL_last_uni == PL_oldoldbufptr)
6092             PL_oldbufptr = PL_oldoldbufptr;             /* allow print(STDOUT 123) */
6093         else
6094             PL_expect = XTERM;
6095         s = skipspace(s);
6096         PL_lex_allbrackets++;
6097         TOKEN('(');
6098     case ';':
6099         if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
6100             TOKEN(0);
6101         CLINE;
6102         s++;
6103         PL_expect = XSTATE;
6104         TOKEN(';');
6105     case ')':
6106         if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_CLOSING)
6107             TOKEN(0);
6108         s++;
6109         PL_lex_allbrackets--;
6110         s = skipspace(s);
6111         if (*s == '{')
6112             PREBLOCK(')');
6113         TERM(')');
6114     case ']':
6115         if (PL_lex_brackets && PL_lex_brackstack[PL_lex_brackets-1] == XFAKEEOF)
6116             TOKEN(0);
6117         s++;
6118         if (PL_lex_brackets <= 0)
6119             /* diag_listed_as: Unmatched right %s bracket */
6120             yyerror("Unmatched right square bracket");
6121         else
6122             --PL_lex_brackets;
6123         PL_lex_allbrackets--;
6124         if (PL_lex_state == LEX_INTERPNORMAL) {
6125             if (PL_lex_brackets == 0) {
6126                 if (*s == '-' && s[1] == '>')
6127                     PL_lex_state = LEX_INTERPENDMAYBE;
6128                 else if (*s != '[' && *s != '{')
6129                     PL_lex_state = LEX_INTERPEND;
6130             }
6131         }
6132         TERM(']');
6133     case '{':
6134         s++;
6135       leftbracket:
6136         if (PL_lex_brackets > 100) {
6137             Renew(PL_lex_brackstack, PL_lex_brackets + 10, char);
6138         }
6139         switch (PL_expect) {
6140         case XTERM:
6141         case XTERMORDORDOR:
6142             PL_lex_brackstack[PL_lex_brackets++] = XOPERATOR;
6143             PL_lex_allbrackets++;
6144             OPERATOR(HASHBRACK);
6145         case XOPERATOR:
6146             while (s < PL_bufend && SPACE_OR_TAB(*s))
6147                 s++;
6148             d = s;
6149             PL_tokenbuf[0] = '\0';
6150             if (d < PL_bufend && *d == '-') {
6151                 PL_tokenbuf[0] = '-';
6152                 d++;
6153                 while (d < PL_bufend && SPACE_OR_TAB(*d))
6154                     d++;
6155             }
6156             if (d < PL_bufend && isIDFIRST_lazy_if_safe(d, PL_bufend, UTF)) {
6157                 d = scan_word(d, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1,
6158                               FALSE, &len);
6159                 while (d < PL_bufend && SPACE_OR_TAB(*d))
6160                     d++;
6161                 if (*d == '}') {
6162                     const char minus = (PL_tokenbuf[0] == '-');
6163                     s = force_word(s + minus, BAREWORD, FALSE, TRUE);
6164                     if (minus)
6165                         force_next('-');
6166                 }
6167             }
6168             /* FALLTHROUGH */
6169         case XATTRTERM:
6170         case XTERMBLOCK:
6171             PL_lex_brackstack[PL_lex_brackets++] = XOPERATOR;
6172             PL_lex_allbrackets++;
6173             PL_expect = XSTATE;
6174             break;
6175         case XATTRBLOCK:
6176         case XBLOCK:
6177             PL_lex_brackstack[PL_lex_brackets++] = XSTATE;
6178             PL_lex_allbrackets++;
6179             PL_expect = XSTATE;
6180             break;
6181         case XBLOCKTERM:
6182             PL_lex_brackstack[PL_lex_brackets++] = XTERM;
6183             PL_lex_allbrackets++;
6184             PL_expect = XSTATE;
6185             break;
6186         default: {
6187                 const char *t;
6188                 if (PL_oldoldbufptr == PL_last_lop)
6189                     PL_lex_brackstack[PL_lex_brackets++] = XTERM;
6190                 else
6191                     PL_lex_brackstack[PL_lex_brackets++] = XOPERATOR;
6192                 PL_lex_allbrackets++;
6193                 s = skipspace(s);
6194                 if (*s == '}') {
6195                     if (PL_expect == XREF && PL_lex_state == LEX_INTERPNORMAL) {
6196                         PL_expect = XTERM;
6197                         /* This hack is to get the ${} in the message. */
6198                         PL_bufptr = s+1;
6199                         yyerror("syntax error");
6200                         break;
6201                     }
6202                     OPERATOR(HASHBRACK);
6203                 }
6204                 if (PL_expect == XREF && PL_oldoldbufptr != PL_last_lop) {
6205                     /* ${...} or @{...} etc., but not print {...}
6206                      * Skip the disambiguation and treat this as a block.
6207                      */
6208                     goto block_expectation;
6209                 }
6210                 /* This hack serves to disambiguate a pair of curlies
6211                  * as being a block or an anon hash.  Normally, expectation
6212                  * determines that, but in cases where we're not in a
6213                  * position to expect anything in particular (like inside
6214                  * eval"") we have to resolve the ambiguity.  This code
6215                  * covers the case where the first term in the curlies is a
6216                  * quoted string.  Most other cases need to be explicitly
6217                  * disambiguated by prepending a "+" before the opening
6218                  * curly in order to force resolution as an anon hash.
6219                  *
6220                  * XXX should probably propagate the outer expectation
6221                  * into eval"" to rely less on this hack, but that could
6222                  * potentially break current behavior of eval"".
6223                  * GSAR 97-07-21
6224                  */
6225                 t = s;
6226                 if (*s == '\'' || *s == '"' || *s == '`') {
6227                     /* common case: get past first string, handling escapes */
6228                     for (t++; t < PL_bufend && *t != *s;)
6229                         if (*t++ == '\\')
6230                             t++;
6231                     t++;
6232                 }
6233                 else if (*s == 'q') {
6234                     if (++t < PL_bufend
6235                         && (!isWORDCHAR(*t)
6236                             || ((*t == 'q' || *t == 'x') && ++t < PL_bufend
6237                                 && !isWORDCHAR(*t))))
6238                     {
6239                         /* skip q//-like construct */
6240                         const char *tmps;
6241                         char open, close, term;
6242                         I32 brackets = 1;
6243
6244                         while (t < PL_bufend && isSPACE(*t))
6245                             t++;
6246                         /* check for q => */
6247                         if (t+1 < PL_bufend && t[0] == '=' && t[1] == '>') {
6248                             OPERATOR(HASHBRACK);
6249                         }
6250                         term = *t;
6251                         open = term;
6252                         if (term && (tmps = strchr("([{< )]}> )]}>",term)))
6253                             term = tmps[5];
6254                         close = term;
6255                         if (open == close)
6256                             for (t++; t < PL_bufend; t++) {
6257                                 if (*t == '\\' && t+1 < PL_bufend && open != '\\')
6258                                     t++;
6259                                 else if (*t == open)
6260                                     break;
6261                             }
6262                         else {
6263                             for (t++; t < PL_bufend; t++) {
6264                                 if (*t == '\\' && t+1 < PL_bufend)
6265                                     t++;
6266                                 else if (*t == close && --brackets <= 0)
6267                                     break;
6268                                 else if (*t == open)
6269                                     brackets++;
6270                             }
6271                         }
6272                         t++;
6273                     }
6274                     else
6275                         /* skip plain q word */
6276                         while (   t < PL_bufend
6277                                && isWORDCHAR_lazy_if_safe(t, PL_bufend, UTF))
6278                         {
6279                             t += UTF ? UTF8SKIP(t) : 1;
6280                         }
6281                 }
6282                 else if (isWORDCHAR_lazy_if_safe(t, PL_bufend, UTF)) {
6283                     t += UTF ? UTF8SKIP(t) : 1;
6284                     while (   t < PL_bufend
6285                            && isWORDCHAR_lazy_if_safe(t, PL_bufend, UTF))
6286                     {
6287                         t += UTF ? UTF8SKIP(t) : 1;
6288                     }
6289                 }
6290                 while (t < PL_bufend && isSPACE(*t))
6291                     t++;
6292                 /* if comma follows first term, call it an anon hash */
6293                 /* XXX it could be a comma expression with loop modifiers */
6294                 if (t < PL_bufend && ((*t == ',' && (*s == 'q' || !isLOWER(*s)))
6295                                    || (*t == '=' && t[1] == '>')))
6296                     OPERATOR(HASHBRACK);
6297                 if (PL_expect == XREF)
6298                 {
6299                   block_expectation:
6300                     /* If there is an opening brace or 'sub:', treat it
6301                        as a term to make ${{...}}{k} and &{sub:attr...}
6302                        dwim.  Otherwise, treat it as a statement, so
6303                        map {no strict; ...} works.
6304                      */
6305                     s = skipspace(s);
6306                     if (*s == '{') {
6307                         PL_expect = XTERM;
6308                         break;
6309                     }
6310                     if (memBEGINs(s, (STRLEN) (PL_bufend - s), "sub")) {
6311                         PL_bufptr = s;
6312                         d = s + 3;
6313                         d = skipspace(d);
6314                         s = PL_bufptr;
6315                         if (*d == ':') {
6316                             PL_expect = XTERM;
6317                             break;
6318                         }
6319                     }
6320                     PL_expect = XSTATE;
6321                 }
6322                 else {
6323                     PL_lex_brackstack[PL_lex_brackets-1] = XSTATE;
6324                     PL_expect = XSTATE;
6325                 }
6326             }
6327             break;
6328         }
6329         pl_yylval.ival = CopLINE(PL_curcop);
6330         PL_copline = NOLINE;   /* invalidate current command line number */
6331         TOKEN(formbrack ? '=' : '{');
6332     case '}':
6333         if (PL_lex_brackets && PL_lex_brackstack[PL_lex_brackets-1] == XFAKEEOF)
6334             TOKEN(0);
6335       rightbracket:
6336         assert(s != PL_bufend);
6337         s++;
6338         if (PL_lex_brackets <= 0)
6339             /* diag_listed_as: Unmatched right %s bracket */
6340             yyerror("Unmatched right curly bracket");
6341         else
6342             PL_expect = (expectation)PL_lex_brackstack[--PL_lex_brackets];
6343         PL_lex_allbrackets--;
6344         if (PL_lex_state == LEX_INTERPNORMAL) {
6345             if (PL_lex_brackets == 0) {
6346                 if (PL_expect & XFAKEBRACK) {
6347                     PL_expect &= XENUMMASK;
6348                     PL_lex_state = LEX_INTERPEND;
6349                     PL_bufptr = s;
6350                     return yylex();     /* ignore fake brackets */
6351                 }
6352                 if (PL_lex_inwhat == OP_SUBST && PL_lex_repl == PL_linestr
6353                  && SvEVALED(PL_lex_repl))
6354                     PL_lex_state = LEX_INTERPEND;
6355                 else if (*s == '-' && s[1] == '>')
6356                     PL_lex_state = LEX_INTERPENDMAYBE;
6357                 else if (*s != '[' && *s != '{')
6358                     PL_lex_state = LEX_INTERPEND;
6359             }
6360         }
6361         if (PL_expect & XFAKEBRACK) {
6362             PL_expect &= XENUMMASK;
6363             PL_bufptr = s;
6364             return yylex();             /* ignore fake brackets */
6365         }
6366         force_next(formbrack ? '.' : '}');
6367         if (formbrack) LEAVE_with_name("lex_format");
6368         if (formbrack == 2) { /* means . where arguments were expected */
6369             force_next(';');
6370             TOKEN(FORMRBRACK);
6371         }
6372         TOKEN(';');
6373     case '&':
6374         if (PL_expect == XPOSTDEREF) POSTDEREF('&');
6375         s++;
6376         if (*s++ == '&') {
6377             if (!PL_lex_allbrackets && PL_lex_fakeeof >=
6378                     (*s == '=' ? LEX_FAKEEOF_ASSIGN : LEX_FAKEEOF_LOGIC)) {
6379                 s -= 2;
6380                 TOKEN(0);
6381             }
6382             AOPERATOR(ANDAND);
6383         }
6384         s--;
6385         if (PL_expect == XOPERATOR) {
6386             if (   PL_bufptr == PL_linestart
6387                 && ckWARN(WARN_SEMICOLON)
6388                 && isIDFIRST_lazy_if_safe(s, PL_bufend, UTF))
6389             {
6390                 CopLINE_dec(PL_curcop);
6391                 Perl_warner(aTHX_ packWARN(WARN_SEMICOLON), "%s", PL_warn_nosemi);
6392                 CopLINE_inc(PL_curcop);
6393             }
6394             d = s;
6395             if ((bof = FEATURE_BITWISE_IS_ENABLED) && *s == '.')
6396                 s++;
6397             if (!PL_lex_allbrackets && PL_lex_fakeeof >=
6398                     (*s == '=' ? LEX_FAKEEOF_ASSIGN : LEX_FAKEEOF_BITWISE)) {
6399                 s = d;
6400                 s--;
6401                 TOKEN(0);
6402             }
6403             if (d == s) {
6404                 PL_parser->saw_infix_sigil = 1;
6405                 BAop(bof ? OP_NBIT_AND : OP_BIT_AND);
6406             }
6407             else
6408                 BAop(OP_SBIT_AND);
6409         }
6410
6411         PL_tokenbuf[0] = '&';
6412         s = scan_ident(s - 1, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1, TRUE);
6413         pl_yylval.ival = (OPpENTERSUB_AMPER<<8);
6414         if (PL_tokenbuf[1]) {
6415             force_ident_maybe_lex('&');
6416         }
6417         else
6418             PREREF('&');
6419         TERM('&');
6420
6421     case '|':
6422         s++;
6423         if (*s++ == '|') {
6424             if (!PL_lex_allbrackets && PL_lex_fakeeof >=
6425                     (*s == '=' ? LEX_FAKEEOF_ASSIGN : LEX_FAKEEOF_LOGIC)) {
6426                 s -= 2;
6427                 TOKEN(0);
6428             }
6429             AOPERATOR(OROR);
6430         }
6431         s--;
6432         d = s;
6433         if ((bof = FEATURE_BITWISE_IS_ENABLED) && *s == '.')
6434             s++;
6435         if (!PL_lex_allbrackets && PL_lex_fakeeof >=
6436                 (*s == '=' ? LEX_FAKEEOF_ASSIGN : LEX_FAKEEOF_BITWISE)) {
6437             s = d - 1;
6438             TOKEN(0);
6439         }
6440         BOop(bof ? s == d ? OP_NBIT_OR : OP_SBIT_OR : OP_BIT_OR);
6441     case '=':
6442         s++;
6443         {
6444             const char tmp = *s++;
6445             if (tmp == '=') {
6446                 if (   (s == PL_linestart+2 || s[-3] == '\n')
6447                     && memBEGINs(s, (STRLEN) (PL_bufend - s), "====="))
6448                 {
6449                     s = vcs_conflict_marker(s + 5);
6450                     goto retry;
6451                 }
6452                 if (!PL_lex_allbrackets
6453                     && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
6454                 {
6455                     s -= 2;
6456                     TOKEN(0);
6457                 }
6458                 Eop(OP_EQ);
6459             }
6460             if (tmp == '>') {
6461                 if (!PL_lex_allbrackets
6462                     && PL_lex_fakeeof >= LEX_FAKEEOF_COMMA)
6463                 {
6464                     s -= 2;
6465                     TOKEN(0);
6466                 }
6467                 OPERATOR(',');
6468             }
6469             if (tmp == '~')
6470                 PMop(OP_MATCH);
6471             if (tmp && isSPACE(*s) && ckWARN(WARN_SYNTAX)
6472                 && strchr("+-*/%.^&|<",tmp))
6473                 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
6474                             "Reversed %c= operator",(int)tmp);
6475             s--;
6476             if (PL_expect == XSTATE
6477                 && isALPHA(tmp)
6478                 && (s == PL_linestart+1 || s[-2] == '\n') )
6479             {
6480                 if (   (PL_in_eval && !PL_rsfp && !PL_parser->filtered)
6481                     || PL_lex_state != LEX_NORMAL)
6482                 {
6483                     d = PL_bufend;
6484                     while (s < d) {
6485                         if (*s++ == '\n') {
6486                             incline(s, PL_bufend);
6487                             if (memBEGINs(s, (STRLEN) (PL_bufend - s), "=cut"))
6488                             {
6489                                 s = (char *) memchr(s,'\n', d - s);
6490                                 if (s)
6491                                     s++;
6492                                 else
6493                                     s = d;
6494                                 incline(s, PL_bufend);
6495                                 goto retry;
6496                             }
6497                         }
6498                     }
6499                     goto retry;
6500                 }
6501                 s = PL_bufend;
6502                 PL_parser->in_pod = 1;
6503                 goto retry;
6504             }
6505         }
6506         if (PL_expect == XBLOCK) {
6507             const char *t = s;
6508 #ifdef PERL_STRICT_CR
6509             while (SPACE_OR_TAB(*t))
6510 #else
6511             while (SPACE_OR_TAB(*t) || *t == '\r')
6512 #endif
6513                 t++;
6514             if (*t == '\n' || *t == '#') {
6515                 formbrack = 1;
6516                 ENTER_with_name("lex_format");
6517                 SAVEI8(PL_parser->form_lex_state);
6518                 SAVEI32(PL_lex_formbrack);
6519                 PL_parser->form_lex_state = PL_lex_state;
6520                 PL_lex_formbrack = PL_lex_brackets + 1;
6521                 goto leftbracket;
6522             }
6523         }
6524         if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN) {
6525             s--;
6526             TOKEN(0);
6527         }
6528         pl_yylval.ival = 0;
6529         OPERATOR(ASSIGNOP);
6530     case '!':
6531         s++;
6532         {
6533             const char tmp = *s++;
6534             if (tmp == '=') {
6535                 /* was this !=~ where !~ was meant?
6536                  * warn on m:!=~\s+([/?]|[msy]\W|tr\W): */
6537
6538                 if (*s == '~' && ckWARN(WARN_SYNTAX)) {
6539                     const char *t = s+1;
6540
6541                     while (t < PL_bufend && isSPACE(*t))
6542                         ++t;
6543
6544                     if (*t == '/' || *t == '?'
6545                         || ((*t == 'm' || *t == 's' || *t == 'y')
6546                             && !isWORDCHAR(t[1]))
6547                         || (*t == 't' && t[1] == 'r' && !isWORDCHAR(t[2])))
6548                         Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
6549                                     "!=~ should be !~");
6550                 }
6551                 if (!PL_lex_allbrackets
6552                     && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
6553                 {
6554                     s -= 2;
6555                     TOKEN(0);
6556                 }
6557                 Eop(OP_NE);
6558             }
6559             if (tmp == '~')
6560                 PMop(OP_NOT);
6561         }
6562         s--;
6563         OPERATOR('!');
6564     case '<':
6565         if (PL_expect != XOPERATOR) {
6566             if (s[1] != '<' && !memchr(s,'>', PL_bufend - s))
6567                 check_uni();
6568             if (s[1] == '<' && s[2] != '>') {
6569                 if (   (s == PL_linestart || s[-1] == '\n')
6570                     && memBEGINs(s+2, (STRLEN) (PL_bufend - (s+2)), "<<<<<"))
6571                 {
6572                     s = vcs_conflict_marker(s + 7);
6573                     goto retry;
6574                 }
6575                 s = scan_heredoc(s);
6576             }
6577             else
6578                 s = scan_inputsymbol(s);
6579             PL_expect = XOPERATOR;
6580             TOKEN(sublex_start());
6581         }
6582         s++;
6583         {
6584             char tmp = *s++;
6585             if (tmp == '<') {
6586                 if (   (s == PL_linestart+2 || s[-3] == '\n')
6587                     && memBEGINs(s, (STRLEN) (PL_bufend - s), "<<<<<"))
6588                 {
6589                     s = vcs_conflict_marker(s + 5);
6590                     goto retry;
6591                 }
6592                 if (*s == '=' && !PL_lex_allbrackets
6593                     && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
6594                 {
6595                     s -= 2;
6596                     TOKEN(0);
6597                 }
6598                 SHop(OP_LEFT_SHIFT);
6599             }
6600             if (tmp == '=') {
6601                 tmp = *s++;
6602                 if (tmp == '>') {
6603                     if (!PL_lex_allbrackets
6604                         && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
6605                     {
6606                         s -= 3;
6607                         TOKEN(0);
6608                     }
6609                     Eop(OP_NCMP);
6610                 }
6611                 s--;
6612                 if (!PL_lex_allbrackets
6613                     && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
6614                 {
6615                     s -= 2;
6616                     TOKEN(0);
6617                 }
6618                 Rop(OP_LE);
6619             }
6620         }
6621         s--;
6622         if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE) {
6623             s--;
6624             TOKEN(0);
6625         }
6626         Rop(OP_LT);
6627     case '>':
6628         s++;
6629         {
6630             const char tmp = *s++;
6631             if (tmp == '>') {
6632                 if (   (s == PL_linestart+2 || s[-3] == '\n')
6633                     && memBEGINs(s, (STRLEN) (PL_bufend - s), ">>>>>"))
6634                 {
6635                     s = vcs_conflict_marker(s + 5);
6636                     goto retry;
6637                 }
6638                 if (*s == '=' && !PL_lex_allbrackets
6639                     && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
6640                 {
6641                     s -= 2;
6642                     TOKEN(0);
6643                 }
6644                 SHop(OP_RIGHT_SHIFT);
6645             }
6646             else if (tmp == '=') {
6647                 if (!PL_lex_allbrackets
6648                     && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
6649                 {
6650                     s -= 2;
6651                     TOKEN(0);
6652                 }
6653                 Rop(OP_GE);
6654             }
6655         }
6656         s--;
6657         if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE) {
6658             s--;
6659             TOKEN(0);
6660         }
6661         Rop(OP_GT);
6662
6663     case '$':
6664         CLINE;
6665
6666         if (PL_expect == XPOSTDEREF) {
6667             if (s[1] == '#') {
6668                 s++;
6669                 POSTDEREF(DOLSHARP);
6670             }
6671             POSTDEREF('$');
6672         }
6673
6674         if (   s[1] == '#'
6675             && (   isIDFIRST_lazy_if_safe(s+2, PL_bufend, UTF)
6676                 || strchr("{$:+-@", s[2])))
6677         {
6678             PL_tokenbuf[0] = '@';
6679             s = scan_ident(s + 1, PL_tokenbuf + 1,
6680                            sizeof PL_tokenbuf - 1, FALSE);
6681             if (PL_expect == XOPERATOR) {
6682                 d = s;
6683                 if (PL_bufptr > s) {
6684                     d = PL_bufptr-1;
6685                     PL_bufptr = PL_oldbufptr;
6686                 }
6687                 no_op("Array length", d);
6688             }
6689             if (!PL_tokenbuf[1])
6690                 PREREF(DOLSHARP);
6691             PL_expect = XOPERATOR;
6692             force_ident_maybe_lex('#');
6693             TOKEN(DOLSHARP);
6694         }
6695
6696         PL_tokenbuf[0] = '$';
6697         s = scan_ident(s, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1, FALSE);
6698         if (PL_expect == XOPERATOR) {
6699             d = s;
6700             if (PL_bufptr > s) {
6701                 d = PL_bufptr-1;
6702                 PL_bufptr = PL_oldbufptr;
6703             }
6704             no_op("Scalar", d);
6705         }
6706         if (!PL_tokenbuf[1]) {
6707             if (s == PL_bufend)
6708                 yyerror("Final $ should be \\$ or $name");
6709             PREREF('$');
6710         }
6711
6712         d = s;
6713         {
6714             const char tmp = *s;
6715             if (PL_lex_state == LEX_NORMAL || PL_lex_brackets)
6716                 s = skipspace(s);
6717
6718             if (   (PL_expect != XREF || PL_oldoldbufptr == PL_last_lop)
6719                 && intuit_more(s, PL_bufend)) {
6720                 if (*s == '[') {
6721                     PL_tokenbuf[0] = '@';
6722                     if (ckWARN(WARN_SYNTAX)) {
6723                         char *t = s+1;
6724
6725                         while (   isSPACE(*t)
6726                                || isWORDCHAR_lazy_if_safe(t, PL_bufend, UTF)
6727                                || *t == '$')
6728                         {
6729                             t += UTF ? UTF8SKIP(t) : 1;
6730                         }
6731                         if (*t++ == ',') {
6732                             PL_bufptr = skipspace(PL_bufptr); /* XXX can realloc */
6733                             while (t < PL_bufend && *t != ']')
6734                                 t++;
6735                             Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
6736                                         "Multidimensional syntax %" UTF8f " not supported",
6737                                         UTF8fARG(UTF,(int)((t - PL_bufptr) + 1), PL_bufptr));
6738                         }
6739                     }
6740                 }
6741                 else if (*s == '{') {
6742                     char *t;
6743                     PL_tokenbuf[0] = '%';
6744                     if (    strEQ(PL_tokenbuf+1, "SIG")
6745                         && ckWARN(WARN_SYNTAX)
6746                         && (t = (char *) memchr(s, '}', PL_bufend - s))
6747                         && (t = (char *) memchr(t, '=', PL_bufend - t)))
6748                     {
6749                         char tmpbuf[sizeof PL_tokenbuf];
6750                         do {
6751                             t++;
6752                         } while (isSPACE(*t));
6753                         if (isIDFIRST_lazy_if_safe(t, PL_bufend, UTF)) {
6754                             STRLEN len;
6755                             t = scan_word(t, tmpbuf, sizeof tmpbuf, TRUE,
6756                                             &len);
6757                             while (isSPACE(*t))
6758                                 t++;
6759                             if (  *t == ';'
6760                                 && get_cvn_flags(tmpbuf, len, UTF
6761                                                                 ? SVf_UTF8
6762                                                                 : 0))
6763                             {
6764                                 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
6765                                     "You need to quote \"%" UTF8f "\"",
6766                                         UTF8fARG(UTF, len, tmpbuf));
6767                             }
6768                         }
6769                     }
6770                 }
6771             }
6772
6773             PL_expect = XOPERATOR;
6774             if (PL_lex_state == LEX_NORMAL && isSPACE((char)tmp)) {
6775                 const bool islop = (PL_last_lop == PL_oldoldbufptr);
6776                 if (!islop || PL_last_lop_op == OP_GREPSTART)
6777                     PL_expect = XOPERATOR;
6778                 else if (strchr("$@\"'`q", *s))
6779                     PL_expect = XTERM;          /* e.g. print $fh "foo" */
6780                 else if (   strchr("&*<%", *s)
6781                          && isIDFIRST_lazy_if_safe(s+1, PL_bufend, UTF))
6782                 {
6783                     PL_expect = XTERM;          /* e.g. print $fh &sub */
6784                 }
6785                 else if (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)) {
6786                     char tmpbuf[sizeof PL_tokenbuf];
6787                     int t2;
6788                     scan_word(s, tmpbuf, sizeof tmpbuf, TRUE, &len);
6789                     if ((t2 = keyword(tmpbuf, len, 0))) {
6790                         /* binary operators exclude handle interpretations */
6791                         switch (t2) {
6792                         case -KEY_x:
6793                         case -KEY_eq:
6794                         case -KEY_ne:
6795                         case -KEY_gt:
6796                         case -KEY_lt:
6797                         case -KEY_ge:
6798                         case -KEY_le:
6799                         case -KEY_cmp:
6800                             break;
6801                         default:
6802                             PL_expect = XTERM;  /* e.g. print $fh length() */
6803                             break;
6804                         }
6805                     }
6806                     else {
6807                         PL_expect = XTERM;      /* e.g. print $fh subr() */
6808                     }
6809                 }
6810                 else if (isDIGIT(*s))
6811                     PL_expect = XTERM;          /* e.g. print $fh 3 */
6812                 else if (*s == '.' && isDIGIT(s[1]))
6813                     PL_expect = XTERM;          /* e.g. print $fh .3 */
6814                 else if ((*s == '?' || *s == '-' || *s == '+')
6815                          && !isSPACE(s[1]) && s[1] != '=')
6816                     PL_expect = XTERM;          /* e.g. print $fh -1 */
6817                 else if (*s == '/' && !isSPACE(s[1]) && s[1] != '='
6818                          && s[1] != '/')
6819                     PL_expect = XTERM;          /* e.g. print $fh /.../
6820                                                    XXX except DORDOR operator
6821                                                 */
6822                 else if (*s == '<' && s[1] == '<' && !isSPACE(s[2])
6823                          && s[2] != '=')
6824                     PL_expect = XTERM;          /* print $fh <<"EOF" */
6825             }
6826         }
6827         force_ident_maybe_lex('$');
6828         TOKEN('$');
6829
6830     case '@':
6831         if (PL_expect == XPOSTDEREF)
6832             POSTDEREF('@');
6833         PL_tokenbuf[0] = '@';
6834         s = scan_ident(s, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1, FALSE);
6835         if (PL_expect == XOPERATOR) {
6836             d = s;
6837             if (PL_bufptr > s) {
6838                 d = PL_bufptr-1;
6839                 PL_bufptr = PL_oldbufptr;
6840             }
6841             no_op("Array", d);
6842         }
6843         pl_yylval.ival = 0;
6844         if (!PL_tokenbuf[1]) {
6845             PREREF('@');
6846         }
6847         if (PL_lex_state == LEX_NORMAL)
6848             s = skipspace(s);
6849         if (   (PL_expect != XREF || PL_oldoldbufptr == PL_last_lop)
6850             && intuit_more(s, PL_bufend))
6851         {
6852             if (*s == '{')
6853                 PL_tokenbuf[0] = '%';
6854
6855             /* Warn about @ where they meant $. */
6856             if (*s == '[' || *s == '{') {
6857                 if (ckWARN(WARN_SYNTAX)) {
6858                     S_check_scalar_slice(aTHX_ s);
6859                 }
6860             }
6861         }
6862         PL_expect = XOPERATOR;
6863         force_ident_maybe_lex('@');
6864         TERM('@');
6865
6866      case '/':                  /* may be division, defined-or, or pattern */
6867         if ((PL_expect == XOPERATOR || PL_expect == XTERMORDORDOR) && s[1] == '/') {
6868             if (!PL_lex_allbrackets && PL_lex_fakeeof >=
6869                     (s[2] == '=' ? LEX_FAKEEOF_ASSIGN : LEX_FAKEEOF_LOGIC))
6870                 TOKEN(0);
6871             s += 2;
6872             AOPERATOR(DORDOR);
6873         }
6874         else if (PL_expect == XOPERATOR) {
6875             s++;
6876             if (*s == '=' && !PL_lex_allbrackets
6877                 && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
6878             {
6879                 s--;
6880                 TOKEN(0);
6881             }
6882             Mop(OP_DIVIDE);
6883         }
6884         else {
6885             /* Disable warning on "study /blah/" */
6886             if (    PL_oldoldbufptr == PL_last_uni
6887                 && (   *PL_last_uni != 's' || s - PL_last_uni < 5
6888                     || memNE(PL_last_uni, "study", 5)
6889                     || isWORDCHAR_lazy_if_safe(PL_last_uni+5, PL_bufend, UTF)
6890              ))
6891                 check_uni();
6892             s = scan_pat(s,OP_MATCH);
6893             TERM(sublex_start());
6894         }
6895
6896      case '?':                  /* conditional */
6897         s++;
6898         if (!PL_lex_allbrackets
6899             && PL_lex_fakeeof >= LEX_FAKEEOF_IFELSE)
6900         {
6901             s--;
6902             TOKEN(0);
6903         }
6904         PL_lex_allbrackets++;
6905         OPERATOR('?');
6906
6907     case '.':
6908         if (PL_lex_formbrack && PL_lex_brackets == PL_lex_formbrack
6909 #ifdef PERL_STRICT_CR
6910             && s[1] == '\n'
6911 #else
6912             && (s[1] == '\n' || (s[1] == '\r' && s[2] == '\n'))
6913 #endif
6914             && (s == PL_linestart || s[-1] == '\n') )
6915         {
6916             PL_expect = XSTATE;
6917             formbrack = 2; /* dot seen where arguments expected */
6918             goto rightbracket;
6919         }
6920         if (PL_expect == XSTATE && s[1] == '.' && s[2] == '.') {
6921             s += 3;
6922             OPERATOR(YADAYADA);
6923         }
6924         if (PL_expect == XOPERATOR || !isDIGIT(s[1])) {
6925             char tmp = *s++;
6926             if (*s == tmp) {
6927                 if (!PL_lex_allbrackets
6928                     && PL_lex_fakeeof >= LEX_FAKEEOF_RANGE)
6929                 {
6930                     s--;
6931                     TOKEN(0);
6932                 }
6933                 s++;
6934                 if (*s == tmp) {
6935                     s++;
6936                     pl_yylval.ival = OPf_SPECIAL;
6937                 }
6938                 else
6939                     pl_yylval.ival = 0;
6940                 OPERATOR(DOTDOT);
6941             }
6942             if (*s == '=' && !PL_lex_allbrackets
6943                 && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
6944             {
6945                 s--;
6946                 TOKEN(0);
6947             }
6948             Aop(OP_CONCAT);
6949         }
6950         /* FALLTHROUGH */
6951     case '0': case '1': case '2': case '3': case '4':
6952     case '5': case '6': case '7': case '8': case '9':
6953         s = scan_num(s, &pl_yylval);
6954         DEBUG_T( { printbuf("### Saw number in %s\n", s); } );
6955         if (PL_expect == XOPERATOR)
6956             no_op("Number",s);
6957         TERM(THING);
6958
6959     case '\'':
6960         s = scan_str(s,FALSE,FALSE,FALSE,NULL);
6961         if (!s)
6962             missingterm(NULL, 0);
6963         COPLINE_SET_FROM_MULTI_END;
6964         DEBUG_T( { printbuf("### Saw string before %s\n", s); } );
6965         if (PL_expect == XOPERATOR) {
6966             no_op("String",s);
6967         }
6968         pl_yylval.ival = OP_CONST;
6969         TERM(sublex_start());
6970
6971     case '"':
6972         s = scan_str(s,FALSE,FALSE,FALSE,NULL);
6973         DEBUG_T( {
6974             if (s)
6975                 printbuf("### Saw string before %s\n", s);
6976             else
6977                 PerlIO_printf(Perl_debug_log,
6978                              "### Saw unterminated string\n");
6979         } );
6980         if (PL_expect == XOPERATOR) {
6981                 no_op("String",s);
6982         }
6983         if (!s)
6984             missingterm(NULL, 0);
6985         pl_yylval.ival = OP_CONST;
6986         /* FIXME. I think that this can be const if char *d is replaced by
6987            more localised variables.  */
6988         for (d = SvPV(PL_lex_stuff, len); len; len--, d++) {
6989             if (*d == '$' || *d == '@' || *d == '\\' || !UTF8_IS_INVARIANT((U8)*d)) {
6990                 pl_yylval.ival = OP_STRINGIFY;
6991                 break;
6992             }
6993         }
6994         if (pl_yylval.ival == OP_CONST)
6995             COPLINE_SET_FROM_MULTI_END;
6996         TERM(sublex_start());
6997
6998     case '`':
6999         s = scan_str(s,FALSE,FALSE,FALSE,NULL);
7000         DEBUG_T( {
7001             if (s)
7002                 printbuf("### Saw backtick string before %s\n", s);
7003             else
7004                 PerlIO_printf(Perl_debug_log,
7005                              "### Saw unterminated backtick string\n");
7006         } );
7007         if (PL_expect == XOPERATOR)
7008             no_op("Backticks",s);
7009         if (!s)
7010             missingterm(NULL, 0);
7011         pl_yylval.ival = OP_BACKTICK;
7012         TERM(sublex_start());
7013
7014     case '\\':
7015         s++;
7016         if (PL_lex_inwhat == OP_SUBST && PL_lex_repl == PL_linestr
7017          && isDIGIT(*s))
7018             Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX),"Can't use \\%c to mean $%c in expression",
7019                            *s, *s);
7020         if (PL_expect == XOPERATOR)
7021             no_op("Backslash",s);
7022         OPERATOR(REFGEN);
7023
7024     case 'v':
7025         if (isDIGIT(s[1]) && PL_expect != XOPERATOR) {
7026             char *start = s + 2;
7027             while (isDIGIT(*start) || *start == '_')
7028                 start++;
7029             if (*start == '.' && isDIGIT(start[1])) {
7030                 s = scan_num(s, &pl_yylval);
7031                 TERM(THING);
7032             }
7033             else if ((*start == ':' && start[1] == ':')
7034                   || (PL_expect == XSTATE && *start == ':'))
7035                 goto keylookup;
7036             else if (PL_expect == XSTATE) {
7037                 d = start;
7038                 while (d < PL_bufend && isSPACE(*d)) d++;
7039                 if (*d == ':') goto keylookup;
7040             }
7041             /* avoid v123abc() or $h{v1}, allow C<print v10;> */
7042             if (!isALPHA(*start) && (PL_expect == XTERM
7043                         || PL_expect == XREF || PL_expect == XSTATE
7044                         || PL_expect == XTERMORDORDOR)) {
7045                 GV *const gv = gv_fetchpvn_flags(s, start - s,
7046                                                     UTF ? SVf_UTF8 : 0, SVt_PVCV);
7047                 if (!gv) {
7048                     s = scan_num(s, &pl_yylval);
7049                     TERM(THING);
7050                 }
7051             }
7052         }
7053         goto keylookup;
7054     case 'x':
7055         if (isDIGIT(s[1]) && PL_expect == XOPERATOR) {
7056             s++;
7057             Mop(OP_REPEAT);
7058         }
7059         goto keylookup;
7060
7061     case '_':
7062     case 'a': case 'A':
7063     case 'b': case 'B':
7064     case 'c': case 'C':
7065     case 'd': case 'D':
7066     case 'e': case 'E':
7067     case 'f': case 'F':
7068     case 'g': case 'G':
7069     case 'h': case 'H':
7070     case 'i': case 'I':
7071     case 'j': case 'J':
7072     case 'k': case 'K':
7073     case 'l': case 'L':
7074     case 'm': case 'M':
7075     case 'n': case 'N':
7076     case 'o': case 'O':
7077     case 'p': case 'P':
7078     case 'q': case 'Q':
7079     case 'r': case 'R':
7080     case 's': case 'S':
7081     case 't': case 'T':
7082     case 'u': case 'U':
7083               case 'V':
7084     case 'w': case 'W':
7085               case 'X':
7086     case 'y': case 'Y':
7087     case 'z': case 'Z':
7088
7089       keylookup: {
7090         bool anydelim;
7091         bool lex;
7092         I32 tmp;
7093         SV *sv;
7094         CV *cv;
7095         PADOFFSET off;
7096         OP *rv2cv_op;
7097
7098         lex = FALSE;
7099         orig_keyword = 0;
7100         off = 0;
7101         sv = NULL;
7102         cv = NULL;
7103         gv = NULL;
7104         gvp = NULL;
7105         rv2cv_op = NULL;
7106
7107         PL_bufptr = s;
7108         s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE, &len);
7109
7110         /* Some keywords can be followed by any delimiter, including ':' */
7111         anydelim = word_takes_any_delimiter(PL_tokenbuf, len);
7112
7113         /* x::* is just a word, unless x is "CORE" */
7114         if (!anydelim && *s == ':' && s[1] == ':') {
7115             if (memEQs(PL_tokenbuf, len, "CORE")) goto case_KEY_CORE;
7116             goto just_a_word;
7117         }
7118
7119         d = s;
7120         while (d < PL_bufend && isSPACE(*d))
7121                 d++;    /* no comments skipped here, or s### is misparsed */
7122
7123         /* Is this a word before a => operator? */
7124         if (*d == '=' && d[1] == '>') {
7125           fat_arrow:
7126             CLINE;
7127             pl_yylval.opval
7128                 = newSVOP(OP_CONST, 0,
7129                                S_newSV_maybe_utf8(aTHX_ PL_tokenbuf, len));
7130             pl_yylval.opval->op_private = OPpCONST_BARE;
7131             TERM(BAREWORD);
7132         }
7133
7134         /* Check for plugged-in keyword */
7135         {
7136             OP *o;
7137             int result;
7138             char *saved_bufptr = PL_bufptr;
7139             PL_bufptr = s;
7140             result = PL_keyword_plugin(aTHX_ PL_tokenbuf, len, &o);
7141             s = PL_bufptr;
7142             if (result == KEYWORD_PLUGIN_DECLINE) {
7143                 /* not a plugged-in keyword */
7144                 PL_bufptr = saved_bufptr;
7145             } else if (result == KEYWORD_PLUGIN_STMT) {
7146                 pl_yylval.opval = o;
7147                 CLINE;
7148                 if (!PL_nexttoke) PL_expect = XSTATE;
7149                 return REPORT(PLUGSTMT);
7150             } else if (result == KEYWORD_PLUGIN_EXPR) {
7151                 pl_yylval.opval = o;
7152                 CLINE;
7153                 if (!PL_nexttoke) PL_expect = XOPERATOR;
7154                 return REPORT(PLUGEXPR);
7155             } else {
7156                 Perl_croak(aTHX_ "Bad plugin affecting keyword '%s'",
7157                                         PL_tokenbuf);
7158             }
7159         }
7160
7161         /* Check for built-in keyword */
7162         tmp = keyword(PL_tokenbuf, len, 0);
7163
7164         /* Is this a label? */
7165         if (!anydelim && PL_expect == XSTATE
7166               && d < PL_bufend && *d == ':' && *(d + 1) != ':') {
7167             s = d + 1;
7168             pl_yylval.pval = savepvn(PL_tokenbuf, len+1);
7169             pl_yylval.pval[len] = '\0';
7170             pl_yylval.pval[len+1] = UTF ? 1 : 0;
7171             CLINE;
7172             TOKEN(LABEL);
7173         }
7174
7175         /* Check for lexical sub */
7176         if (PL_expect != XOPERATOR) {
7177             char tmpbuf[sizeof PL_tokenbuf + 1];
7178             *tmpbuf = '&';
7179             Copy(PL_tokenbuf, tmpbuf+1, len, char);
7180             off = pad_findmy_pvn(tmpbuf, len+1, 0);
7181             if (off != NOT_IN_PAD) {
7182                 assert(off); /* we assume this is boolean-true below */
7183                 if (PAD_COMPNAME_FLAGS_isOUR(off)) {
7184                     HV *  const stash = PAD_COMPNAME_OURSTASH(off);
7185                     HEK * const stashname = HvNAME_HEK(stash);
7186                     sv = newSVhek(stashname);
7187                     sv_catpvs(sv, "::");
7188                     sv_catpvn_flags(sv, PL_tokenbuf, len,
7189                                     (UTF ? SV_CATUTF8 : SV_CATBYTES));
7190                     gv = gv_fetchsv(sv, GV_NOADD_NOINIT | SvUTF8(sv),
7191                                     SVt_PVCV);
7192                     off = 0;
7193                     if (!gv) {
7194                         sv_free(sv);
7195                         sv = NULL;
7196                         goto just_a_word;
7197                     }
7198                 }
7199                 else {
7200                     rv2cv_op = newOP(OP_PADANY, 0);
7201                     rv2cv_op->op_targ = off;
7202                     cv = find_lexical_cv(off);
7203                 }
7204                 lex = TRUE;
7205                 goto just_a_word;
7206             }
7207             off = 0;
7208         }
7209
7210         if (tmp < 0) {                  /* second-class keyword? */
7211             GV *ogv = NULL;     /* override (winner) */
7212             GV *hgv = NULL;     /* hidden (loser) */
7213             if (PL_expect != XOPERATOR && (*s != ':' || s[1] != ':')) {
7214                 CV *cv;
7215                 if ((gv = gv_fetchpvn_flags(PL_tokenbuf, len,
7216                                             (UTF ? SVf_UTF8 : 0)|GV_NOTQUAL,
7217                                             SVt_PVCV))
7218                     && (cv = GvCVu(gv)))
7219                 {
7220                     if (GvIMPORTED_CV(gv))
7221                         ogv = gv;
7222                     else if (! CvMETHOD(cv))
7223                         hgv = gv;
7224                 }
7225                 if (!ogv
7226                     && (gvp = (GV**)hv_fetch(PL_globalstash, PL_tokenbuf,
7227                                                               len, FALSE))
7228                     && (gv = *gvp)
7229                     && (isGV_with_GP(gv)
7230                         ? GvCVu(gv) && GvIMPORTED_CV(gv)
7231                         :   SvPCS_IMPORTED(gv)
7232                         && (gv_init(gv, PL_globalstash, PL_tokenbuf,
7233                                                                  len, 0), 1)))
7234                 {
7235                     ogv = gv;
7236                 }
7237             }
7238             if (ogv) {
7239                 orig_keyword = tmp;
7240                 tmp = 0;                /* overridden by import or by GLOBAL */
7241             }
7242             else if (gv && !gvp
7243                      && -tmp==KEY_lock  /* XXX generalizable kludge */
7244                      && GvCVu(gv))
7245             {
7246                 tmp = 0;                /* any sub overrides "weak" keyword */
7247             }
7248             else {                      /* no override */
7249                 tmp = -tmp;
7250                 if (tmp == KEY_dump) {
7251                     Perl_croak(aTHX_ "dump() must be written as CORE::dump() as of Perl 5.30");
7252                 }
7253                 gv = NULL;
7254                 gvp = 0;
7255                 if (hgv && tmp != KEY_x)        /* never ambiguous */
7256                     Perl_ck_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
7257                                    "Ambiguous call resolved as CORE::%s(), "
7258                                    "qualify as such or use &",
7259                                    GvENAME(hgv));
7260             }
7261         }
7262
7263         if (tmp && tmp != KEY___DATA__ && tmp != KEY___END__
7264          && (!anydelim || *s != '#')) {
7265             /* no override, and not s### either; skipspace is safe here
7266              * check for => on following line */
7267             bool arrow;
7268             STRLEN bufoff = PL_bufptr - SvPVX(PL_linestr);
7269             STRLEN   soff = s         - SvPVX(PL_linestr);
7270             s = peekspace(s);
7271             arrow = *s == '=' && s[1] == '>';
7272             PL_bufptr = SvPVX(PL_linestr) + bufoff;
7273             s         = SvPVX(PL_linestr) +   soff;
7274             if (arrow)
7275                 goto fat_arrow;
7276         }
7277
7278       reserved_word:
7279         switch (tmp) {
7280
7281             /* Trade off - by using this evil construction we can pull the
7282                variable gv into the block labelled keylookup. If not, then
7283                we have to give it function scope so that the goto from the
7284                earlier ':' case doesn't bypass the initialisation.  */
7285             just_a_word_zero_gv:
7286                 sv = NULL;
7287                 cv = NULL;
7288                 gv = NULL;
7289                 gvp = NULL;
7290                 rv2cv_op = NULL;
7291                 orig_keyword = 0;
7292                 lex = 0;
7293                 off = 0;
7294             /* FALLTHROUGH */
7295         default:                        /* not a keyword */
7296           just_a_word: {
7297                 int pkgname = 0;
7298                 const char lastchar = (PL_bufptr == PL_oldoldbufptr ? 0 : PL_bufptr[-1]);
7299                 bool safebw;
7300                 bool no_op_error = FALSE;
7301
7302                 if (PL_expect == XOPERATOR) {
7303                     if (PL_bufptr == PL_linestart) {
7304                         CopLINE_dec(PL_curcop);
7305                         Perl_warner(aTHX_ packWARN(WARN_SEMICOLON), "%s", PL_warn_nosemi);
7306                         CopLINE_inc(PL_curcop);
7307                     }
7308                     else
7309                         /* We want to call no_op with s pointing after the
7310                            bareword, so defer it.  But we want it to come
7311                            before the Bad name croak.  */
7312                         no_op_error = TRUE;
7313                 }
7314
7315                 /* Get the rest if it looks like a package qualifier */
7316
7317                 if (*s == '\'' || (*s == ':' && s[1] == ':')) {
7318                     STRLEN morelen;
7319                     s = scan_word(s, PL_tokenbuf + len, sizeof PL_tokenbuf - len,
7320                                   TRUE, &morelen);
7321                     if (no_op_error) {
7322                         no_op("Bareword",s);
7323                         no_op_error = FALSE;
7324                     }
7325                     if (!morelen)
7326                         Perl_croak(aTHX_ "Bad name after %" UTF8f "%s",
7327                                 UTF8fARG(UTF, len, PL_tokenbuf),
7328                                 *s == '\'' ? "'" : "::");
7329                     len += morelen;
7330                     pkgname = 1;
7331                 }
7332
7333                 if (no_op_error)
7334                         no_op("Bareword",s);
7335
7336                 /* See if the name is "Foo::",
7337                    in which case Foo is a bareword
7338                    (and a package name). */
7339
7340                 if (len > 2
7341                     && PL_tokenbuf[len - 2] == ':'
7342                     && PL_tokenbuf[len - 1] == ':')
7343                 {
7344                     if (ckWARN(WARN_BAREWORD)
7345                         && ! gv_fetchpvn_flags(PL_tokenbuf, len, UTF ? SVf_UTF8 : 0, SVt_PVHV))
7346                         Perl_warner(aTHX_ packWARN(WARN_BAREWORD),
7347                                     "Bareword \"%" UTF8f
7348                                     "\" refers to nonexistent package",
7349                                     UTF8fARG(UTF, len, PL_tokenbuf));
7350                     len -= 2;
7351                     PL_tokenbuf[len] = '\0';
7352                     gv = NULL;
7353                     gvp = 0;
7354                     safebw = TRUE;
7355                 }
7356                 else {
7357                     safebw = FALSE;
7358                 }
7359
7360                 /* if we saw a global override before, get the right name */
7361
7362                 if (!sv)
7363                   sv = S_newSV_maybe_utf8(aTHX_ PL_tokenbuf,
7364                                                 len);
7365                 if (gvp) {
7366                     SV * const tmp_sv = sv;
7367                     sv = newSVpvs("CORE::GLOBAL::");
7368                     sv_catsv(sv, tmp_sv);
7369                     SvREFCNT_dec(tmp_sv);
7370                 }
7371
7372
7373                 /* Presume this is going to be a bareword of some sort. */
7374                 CLINE;
7375                 pl_yylval.opval = newSVOP(OP_CONST, 0, sv);
7376                 pl_yylval.opval->op_private = OPpCONST_BARE;
7377
7378                 /* And if "Foo::", then that's what it certainly is. */
7379                 if (safebw)
7380                     goto safe_bareword;
7381
7382                 if (!off)
7383                 {
7384                     OP *const_op = newSVOP(OP_CONST, 0, SvREFCNT_inc_NN(sv));
7385                     const_op->op_private = OPpCONST_BARE;
7386                     rv2cv_op =
7387                         newCVREF(OPpMAY_RETURN_CONSTANT<<8, const_op);
7388                     cv = lex
7389                         ? isGV(gv)
7390                             ? GvCV(gv)
7391                             : SvROK(gv) && SvTYPE(SvRV(gv)) == SVt_PVCV
7392                                 ? (CV *)SvRV(gv)
7393                                 : ((CV *)gv)
7394                         : rv2cv_op_cv(rv2cv_op, RV2CVOPCV_RETURN_STUB);
7395                 }
7396
7397                 /* Use this var to track whether intuit_method has been
7398                    called.  intuit_method returns 0 or > 255.  */
7399                 tmp = 1;
7400
7401                 /* See if it's the indirect object for a list operator. */
7402
7403                 if (PL_oldoldbufptr
7404                     && PL_oldoldbufptr < PL_bufptr
7405                     && (PL_oldoldbufptr == PL_last_lop
7406                         || PL_oldoldbufptr == PL_last_uni)
7407                     && /* NO SKIPSPACE BEFORE HERE! */
7408                        (PL_expect == XREF
7409                         || ((PL_opargs[PL_last_lop_op] >> OASHIFT)& 7)
7410                                                                == OA_FILEREF))
7411                 {
7412                     bool immediate_paren = *s == '(';
7413                     SSize_t s_off;
7414
7415                     /* (Now we can afford to cross potential line boundary.) */
7416                     s = skipspace(s);
7417
7418                     /* intuit_method() can indirectly call lex_next_chunk(),
7419                      * invalidating s
7420                      */
7421                     s_off = s - SvPVX(PL_linestr);
7422                     /* Two barewords in a row may indicate method call. */
7423                     if (   (   isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)
7424                             || *s == '$')
7425                         && (tmp = intuit_method(s, lex ? NULL : sv, cv)))
7426                     {
7427                         /* the code at method: doesn't use s */
7428                         goto method;
7429                     }
7430                     s = SvPVX(PL_linestr) + s_off;
7431
7432                     /* If not a declared subroutine, it's an indirect object. */
7433                     /* (But it's an indir obj regardless for sort.) */
7434                     /* Also, if "_" follows a filetest operator, it's a bareword */
7435
7436                     if (
7437                         ( !immediate_paren && (PL_last_lop_op == OP_SORT
7438                          || (!cv
7439                              && (PL_last_lop_op != OP_MAPSTART
7440                                  && PL_last_lop_op != OP_GREPSTART))))
7441                        || (PL_tokenbuf[0] == '_' && PL_tokenbuf[1] == '\0'
7442                             && ((PL_opargs[PL_last_lop_op] & OA_CLASS_MASK)
7443                                                             == OA_FILESTATOP))
7444                        )
7445                     {
7446                         PL_expect = (PL_last_lop == PL_oldoldbufptr) ? XTERM : XOPERATOR;
7447                         goto bareword;
7448                     }
7449                 }
7450
7451                 PL_expect = XOPERATOR;
7452                 s = skipspace(s);
7453
7454                 /* Is this a word before a => operator? */
7455                 if (*s == '=' && s[1] == '>' && !pkgname) {
7456                     op_free(rv2cv_op);
7457                     CLINE;
7458                     if (gvp || (lex && !off)) {
7459                         assert (cSVOPx(pl_yylval.opval)->op_sv == sv);
7460                         /* This is our own scalar, created a few lines
7461                            above, so this is safe. */
7462                         SvREADONLY_off(sv);
7463                         sv_setpv(sv, PL_tokenbuf);
7464                         if (UTF && !IN_BYTES
7465                          && is_utf8_string((U8*)PL_tokenbuf, len))
7466                               SvUTF8_on(sv);
7467                         SvREADONLY_on(sv);
7468                     }
7469                     TERM(BAREWORD);
7470                 }
7471
7472                 /* If followed by a paren, it's certainly a subroutine. */
7473                 if (*s == '(') {
7474                     CLINE;
7475                     if (cv) {
7476                         d = s + 1;
7477                         while (SPACE_OR_TAB(*d))
7478                             d++;
7479                         if (*d == ')' && (sv = cv_const_sv_or_av(cv))) {
7480                             s = d + 1;
7481                             goto its_constant;
7482                         }
7483                     }
7484                     NEXTVAL_NEXTTOKE.opval =
7485                         off ? rv2cv_op : pl_yylval.opval;
7486                     if (off)
7487                          op_free(pl_yylval.opval), force_next(PRIVATEREF);
7488                     else op_free(rv2cv_op),        force_next(BAREWORD);
7489                     pl_yylval.ival = 0;
7490                     TOKEN('&');
7491                 }
7492
7493                 /* If followed by var or block, call it a method (unless sub) */
7494
7495                 if ((*s == '$' || *s == '{') && !cv) {
7496                     op_free(rv2cv_op);
7497                     PL_last_lop = PL_oldbufptr;
7498                     PL_last_lop_op = OP_METHOD;
7499                     if (!PL_lex_allbrackets
7500                         && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
7501                     {
7502                         PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
7503                     }
7504                     PL_expect = XBLOCKTERM;
7505                     PL_bufptr = s;
7506                     return REPORT(METHOD);
7507                 }
7508
7509                 /* If followed by a bareword, see if it looks like indir obj. */
7510
7511                 if (   tmp == 1
7512                     && !orig_keyword
7513                     && (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF) || *s == '$')
7514                     && (tmp = intuit_method(s, lex ? NULL : sv, cv)))
7515                 {
7516                   method:
7517                     if (lex && !off) {
7518                         assert(cSVOPx(pl_yylval.opval)->op_sv == sv);
7519                         SvREADONLY_off(sv);
7520                         sv_setpvn(sv, PL_tokenbuf, len);
7521                         if (UTF && !IN_BYTES
7522                          && is_utf8_string((U8*)PL_tokenbuf, len))
7523                             SvUTF8_on (sv);
7524                         else SvUTF8_off(sv);
7525                     }
7526                     op_free(rv2cv_op);
7527                     if (tmp == METHOD && !PL_lex_allbrackets
7528                         && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
7529                     {
7530                         PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
7531                     }
7532                     return REPORT(tmp);
7533                 }
7534
7535                 /* Not a method, so call it a subroutine (if defined) */
7536
7537                 if (cv) {
7538                     /* Check for a constant sub */
7539                     if ((sv = cv_const_sv_or_av(cv))) {
7540                   its_constant:
7541                         op_free(rv2cv_op);
7542                         SvREFCNT_dec(((SVOP*)pl_yylval.opval)->op_sv);
7543                         ((SVOP*)pl_yylval.opval)->op_sv = SvREFCNT_inc_simple(sv);
7544                         if (SvTYPE(sv) == SVt_PVAV)
7545                             pl_yylval.opval = newUNOP(OP_RV2AV, OPf_PARENS,
7546                                                       pl_yylval.opval);
7547                         else {
7548                             pl_yylval.opval->op_private = 0;
7549                             pl_yylval.opval->op_folded = 1;
7550                             pl_yylval.opval->op_flags |= OPf_SPECIAL;
7551                         }
7552                         TOKEN(BAREWORD);
7553                     }
7554
7555                     op_free(pl_yylval.opval);
7556                     pl_yylval.opval =
7557                         off ? newCVREF(0, rv2cv_op) : rv2cv_op;
7558                     pl_yylval.opval->op_private |= OPpENTERSUB_NOPAREN;
7559                     PL_last_lop = PL_oldbufptr;
7560                     PL_last_lop_op = OP_ENTERSUB;
7561                     /* Is there a prototype? */
7562                     if (
7563                         SvPOK(cv))
7564                     {
7565                         STRLEN protolen = CvPROTOLEN(cv);
7566                         const char *proto = CvPROTO(cv);
7567                         bool optional;
7568                         proto = S_strip_spaces(aTHX_ proto, &protolen);
7569                         if (!protolen)
7570                             TERM(FUNC0SUB);
7571                         if ((optional = *proto == ';'))
7572                           do
7573                             proto++;
7574                           while (*proto == ';');
7575                         if (
7576                             (
7577                                 (
7578                                     *proto == '$' || *proto == '_'
7579                                  || *proto == '*' || *proto == '+'
7580                                 )
7581                              && proto[1] == '\0'
7582                             )
7583                          || (
7584                              *proto == '\\' && proto[1] && proto[2] == '\0'
7585                             )
7586                         )
7587                             UNIPROTO(UNIOPSUB,optional);
7588                         if (*proto == '\\' && proto[1] == '[') {
7589                             const char *p = proto + 2;
7590                             while(*p && *p != ']')
7591                                 ++p;
7592                             if(*p == ']' && !p[1])
7593                                 UNIPROTO(UNIOPSUB,optional);
7594                         }
7595                         if (*proto == '&' && *s == '{') {
7596                             if (PL_curstash)
7597                                 sv_setpvs(PL_subname, "__ANON__");
7598                             else
7599                                 sv_setpvs(PL_subname, "__ANON__::__ANON__");
7600                             if (!PL_lex_allbrackets
7601                                 && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
7602                             {
7603                                 PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
7604                             }
7605                             PREBLOCK(LSTOPSUB);
7606                         }
7607                     }
7608                     NEXTVAL_NEXTTOKE.opval = pl_yylval.opval;
7609                     PL_expect = XTERM;
7610                     force_next(off ? PRIVATEREF : BAREWORD);
7611                     if (!PL_lex_allbrackets
7612                         && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
7613                     {
7614                         PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
7615                     }
7616                     TOKEN(NOAMP);
7617                 }
7618
7619                 /* Call it a bare word */
7620
7621                 if (PL_hints & HINT_STRICT_SUBS)
7622                     pl_yylval.opval->op_private |= OPpCONST_STRICT;
7623                 else {
7624                 bareword:
7625                     /* after "print" and similar functions (corresponding to
7626                      * "F? L" in opcode.pl), whatever wasn't already parsed as
7627                      * a filehandle should be subject to "strict subs".
7628                      * Likewise for the optional indirect-object argument to system
7629                      * or exec, which can't be a bareword */
7630                     if ((PL_last_lop_op == OP_PRINT
7631                             || PL_last_lop_op == OP_PRTF
7632                             || PL_last_lop_op == OP_SAY
7633                             || PL_last_lop_op == OP_SYSTEM
7634                             || PL_last_lop_op == OP_EXEC)
7635                             && (PL_hints & HINT_STRICT_SUBS))
7636                         pl_yylval.opval->op_private |= OPpCONST_STRICT;
7637                     if (lastchar != '-') {
7638                         if (ckWARN(WARN_RESERVED)) {
7639                             d = PL_tokenbuf;
7640                             while (isLOWER(*d))
7641                                 d++;
7642                             if (!*d && !gv_stashpv(PL_tokenbuf, UTF ? SVf_UTF8 : 0))
7643                             {
7644                                 /* PL_warn_reserved is constant */
7645                                 GCC_DIAG_IGNORE_STMT(-Wformat-nonliteral);
7646                                 Perl_warner(aTHX_ packWARN(WARN_RESERVED), PL_warn_reserved,
7647                                        PL_tokenbuf);
7648                                 GCC_DIAG_RESTORE_STMT;
7649                             }
7650                         }
7651                     }
7652                 }
7653                 op_free(rv2cv_op);
7654
7655             safe_bareword:
7656                 if ((lastchar == '*' || lastchar == '%' || lastchar == '&')
7657                  && saw_infix_sigil) {
7658                     Perl_ck_warner_d(aTHX_ packWARN(WARN_AMBIGUOUS),
7659                                      "Operator or semicolon missing before %c%" UTF8f,
7660                                      lastchar,
7661                                      UTF8fARG(UTF, strlen(PL_tokenbuf),
7662                                               PL_tokenbuf));
7663                     Perl_ck_warner_d(aTHX_ packWARN(WARN_AMBIGUOUS),
7664                                      "Ambiguous use of %c resolved as operator %c",
7665                                      lastchar, lastchar);
7666                 }
7667                 TOKEN(BAREWORD);
7668             }
7669
7670         case KEY___FILE__:
7671             FUN0OP(
7672                 newSVOP(OP_CONST, 0, newSVpv(CopFILE(PL_curcop),0))
7673             );
7674
7675         case KEY___LINE__:
7676             FUN0OP(
7677                 newSVOP(OP_CONST, 0,
7678                     Perl_newSVpvf(aTHX_ "%" IVdf, (IV)CopLINE(PL_curcop)))
7679             );
7680
7681         case KEY___PACKAGE__:
7682             FUN0OP(
7683                 newSVOP(OP_CONST, 0,
7684                                         (PL_curstash
7685                                          ? newSVhek(HvNAME_HEK(PL_curstash))
7686                                          : &PL_sv_undef))
7687             );
7688
7689         case KEY___DATA__:
7690         case KEY___END__: {
7691             GV *gv;
7692             if (PL_rsfp && (!PL_in_eval || PL_tokenbuf[2] == 'D')) {
7693                 HV * const stash = PL_tokenbuf[2] == 'D' && PL_curstash
7694                                         ? PL_curstash
7695                                         : PL_defstash;
7696                 gv = (GV *)*hv_fetchs(stash, "DATA", 1);
7697                 if (!isGV(gv))
7698                     gv_init(gv,stash,"DATA",4,0);
7699                 GvMULTI_on(gv);
7700                 if (!GvIO(gv))
7701                     GvIOp(gv) = newIO();
7702                 IoIFP(GvIOp(gv)) = PL_rsfp;
7703                 /* Mark this internal pseudo-handle as clean */
7704                 IoFLAGS(GvIOp(gv)) |= IOf_UNTAINT;
7705                 if ((PerlIO*)PL_rsfp == PerlIO_stdin())
7706                     IoTYPE(GvIOp(gv)) = IoTYPE_STD;
7707                 else
7708                     IoTYPE(GvIOp(gv)) = IoTYPE_RDONLY;
7709 #if defined(WIN32) && !defined(PERL_TEXTMODE_SCRIPTS)
7710                 /* if the script was opened in binmode, we need to revert
7711                  * it to text mode for compatibility; but only iff it has CRs
7712                  * XXX this is a questionable hack at best. */
7713                 if (PL_bufend-PL_bufptr > 2
7714                     && PL_bufend[-1] == '\n' && PL_bufend[-2] == '\r')
7715                 {
7716                     Off_t loc = 0;
7717                     if (IoTYPE(GvIOp(gv)) == IoTYPE_RDONLY) {
7718                         loc = PerlIO_tell(PL_rsfp);
7719                         (void)PerlIO_seek(PL_rsfp, 0L, 0);
7720                     }
7721 #ifdef NETWARE
7722                         if (PerlLIO_setmode(PL_rsfp, O_TEXT) != -1) {
7723 #else
7724                     if (PerlLIO_setmode(PerlIO_fileno(PL_rsfp), O_TEXT) != -1) {
7725 #endif  /* NETWARE */
7726                         if (loc > 0)
7727                             PerlIO_seek(PL_rsfp, loc, 0);
7728                     }
7729                 }
7730 #endif
7731 #ifdef PERLIO_LAYERS
7732                 if (!IN_BYTES) {
7733                     if (UTF)
7734                         PerlIO_apply_layers(aTHX_ PL_rsfp, NULL, ":utf8");
7735                 }
7736 #endif
7737                 PL_rsfp = NULL;
7738             }
7739             goto fake_eof;
7740         }
7741
7742         case KEY___SUB__:
7743             FUN0OP(CvCLONE(PL_compcv)
7744                         ? newOP(OP_RUNCV, 0)
7745                         : newPVOP(OP_RUNCV,0,NULL));
7746
7747         case KEY_AUTOLOAD:
7748         case KEY_DESTROY:
7749         case KEY_BEGIN:
7750         case KEY_UNITCHECK:
7751         case KEY_CHECK:
7752         case KEY_INIT:
7753         case KEY_END:
7754             if (PL_expect == XSTATE) {
7755                 s = PL_bufptr;
7756                 goto really_sub;
7757             }
7758             goto just_a_word;
7759
7760         case_KEY_CORE:
7761             {
7762                 STRLEN olen = len;
7763                 d = s;
7764                 s += 2;
7765                 s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE, &len);
7766                 if ((*s == ':' && s[1] == ':')
7767                  || (!(tmp = keyword(PL_tokenbuf, len, 1)) && *s == '\''))
7768                 {
7769                     s = d;
7770                     len = olen;
7771                     Copy(PL_bufptr, PL_tokenbuf, olen, char);
7772                     goto just_a_word;
7773                 }
7774                 if (!tmp)
7775                     Perl_croak(aTHX_ "CORE::%" UTF8f " is not a keyword",
7776                                       UTF8fARG(UTF, len, PL_tokenbuf));
7777                 if (tmp < 0)
7778                     tmp = -tmp;
7779                 else if (tmp == KEY_require || tmp == KEY_do
7780                       || tmp == KEY_glob)
7781                     /* that's a way to remember we saw "CORE::" */
7782                     orig_keyword = tmp;
7783                 goto reserved_word;
7784             }
7785
7786         case KEY_abs:
7787             UNI(OP_ABS);
7788
7789         case KEY_alarm:
7790             UNI(OP_ALARM);
7791
7792         case KEY_accept:
7793             LOP(OP_ACCEPT,XTERM);
7794
7795         case KEY_and:
7796             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_LOWLOGIC)
7797                 return REPORT(0);
7798             OPERATOR(ANDOP);
7799
7800         case KEY_atan2:
7801             LOP(OP_ATAN2,XTERM);
7802
7803         case KEY_bind:
7804             LOP(OP_BIND,XTERM);
7805
7806         case KEY_binmode:
7807             LOP(OP_BINMODE,XTERM);
7808
7809         case KEY_bless:
7810             LOP(OP_BLESS,XTERM);
7811
7812         case KEY_break:
7813             FUN0(OP_BREAK);
7814
7815         case KEY_chop:
7816             UNI(OP_CHOP);
7817
7818         case KEY_continue:
7819                     /* We have to disambiguate the two senses of
7820                       "continue". If the next token is a '{' then
7821                       treat it as the start of a continue block;
7822                       otherwise treat it as a control operator.
7823                      */
7824                     s = skipspace(s);
7825                     if (*s == '{')
7826             PREBLOCK(CONTINUE);
7827                     else
7828                         FUN0(OP_CONTINUE);
7829
7830         case KEY_chdir:
7831             /* may use HOME */
7832             (void)gv_fetchpvs("ENV", GV_ADD|GV_NOTQUAL, SVt_PVHV);
7833             UNI(OP_CHDIR);
7834
7835         case KEY_close:
7836             UNI(OP_CLOSE);
7837
7838         case KEY_closedir:
7839             UNI(OP_CLOSEDIR);
7840
7841         case KEY_cmp:
7842             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
7843                 return REPORT(0);
7844             Eop(OP_SCMP);
7845
7846         case KEY_caller:
7847             UNI(OP_CALLER);
7848
7849         case KEY_crypt:
7850 #ifdef FCRYPT
7851             if (!PL_cryptseen) {
7852                 PL_cryptseen = TRUE;
7853                 init_des();
7854             }
7855 #endif
7856             LOP(OP_CRYPT,XTERM);
7857
7858         case KEY_chmod:
7859             LOP(OP_CHMOD,XTERM);
7860
7861         case KEY_chown:
7862             LOP(OP_CHOWN,XTERM);
7863
7864         case KEY_connect:
7865             LOP(OP_CONNECT,XTERM);
7866
7867         case KEY_chr:
7868             UNI(OP_CHR);
7869
7870         case KEY_cos:
7871             UNI(OP_COS);
7872
7873         case KEY_chroot:
7874             UNI(OP_CHROOT);
7875
7876         case KEY_default:
7877             PREBLOCK(DEFAULT);
7878
7879         case KEY_do:
7880             s = skipspace(s);
7881             if (*s == '{')
7882                 PRETERMBLOCK(DO);
7883             if (*s != '\'') {
7884                 *PL_tokenbuf = '&';
7885                 d = scan_word(s, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1,
7886                               1, &len);
7887                 if (len && memNEs(PL_tokenbuf+1, len, "CORE")
7888                  && !keyword(PL_tokenbuf + 1, len, 0)) {
7889                     SSize_t off = s-SvPVX(PL_linestr);
7890                     d = skipspace(d);
7891                     s = SvPVX(PL_linestr)+off;
7892                     if (*d == '(') {
7893                         force_ident_maybe_lex('&');
7894                         s = d;
7895                     }
7896                 }
7897             }
7898             if (orig_keyword == KEY_do) {
7899                 orig_keyword = 0;
7900                 pl_yylval.ival = 1;
7901             }
7902             else
7903                 pl_yylval.ival = 0;
7904             OPERATOR(DO);
7905
7906         case KEY_die:
7907             PL_hints |= HINT_BLOCK_SCOPE;
7908             LOP(OP_DIE,XTERM);
7909
7910         case KEY_defined:
7911             UNI(OP_DEFINED);
7912
7913         case KEY_delete:
7914             UNI(OP_DELETE);
7915
7916         case KEY_dbmopen:
7917             Perl_populate_isa(aTHX_ STR_WITH_LEN("AnyDBM_File::ISA"),
7918                               STR_WITH_LEN("NDBM_File::"),
7919                               STR_WITH_LEN("DB_File::"),
7920                               STR_WITH_LEN("GDBM_File::"),
7921                               STR_WITH_LEN("SDBM_File::"),
7922                               STR_WITH_LEN("ODBM_File::"),
7923                               NULL);
7924             LOP(OP_DBMOPEN,XTERM);
7925
7926         case KEY_dbmclose:
7927             UNI(OP_DBMCLOSE);
7928
7929         case KEY_dump:
7930             LOOPX(OP_DUMP);
7931
7932         case KEY_else:
7933             PREBLOCK(ELSE);
7934
7935         case KEY_elsif:
7936             pl_yylval.ival = CopLINE(PL_curcop);
7937             OPERATOR(ELSIF);
7938
7939         case KEY_eq:
7940             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
7941                 return REPORT(0);
7942             Eop(OP_SEQ);
7943
7944         case KEY_exists:
7945             UNI(OP_EXISTS);
7946
7947         case KEY_exit:
7948             UNI(OP_EXIT);
7949
7950         case KEY_eval:
7951             s = skipspace(s);
7952             if (*s == '{') { /* block eval */
7953                 PL_expect = XTERMBLOCK;
7954                 UNIBRACK(OP_ENTERTRY);
7955             }
7956             else { /* string eval */
7957                 PL_expect = XTERM;
7958                 UNIBRACK(OP_ENTEREVAL);
7959             }
7960
7961         case KEY_evalbytes:
7962             PL_expect = XTERM;
7963             UNIBRACK(-OP_ENTEREVAL);
7964
7965         case KEY_eof:
7966             UNI(OP_EOF);
7967
7968         case KEY_exp:
7969             UNI(OP_EXP);
7970
7971         case KEY_each:
7972             UNI(OP_EACH);
7973
7974         case KEY_exec:
7975             LOP(OP_EXEC,XREF);
7976
7977         case KEY_endhostent:
7978             FUN0(OP_EHOSTENT);
7979
7980         case KEY_endnetent:
7981             FUN0(OP_ENETENT);
7982
7983         case KEY_endservent:
7984             FUN0(OP_ESERVENT);
7985
7986         case KEY_endprotoent:
7987             FUN0(OP_EPROTOENT);
7988
7989         case KEY_endpwent:
7990             FUN0(OP_EPWENT);
7991
7992         case KEY_endgrent:
7993             FUN0(OP_EGRENT);
7994
7995         case KEY_for:
7996         case KEY_foreach:
7997             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
7998                 return REPORT(0);
7999             pl_yylval.ival = CopLINE(PL_curcop);
8000             s = skipspace(s);
8001             if (   PL_expect == XSTATE
8002                 && isIDFIRST_lazy_if_safe(s, PL_bufend, UTF))
8003             {
8004                 char *p = s;
8005                 SSize_t s_off = s - SvPVX(PL_linestr);
8006
8007                 if (   memBEGINPs(p, (STRLEN) (PL_bufend - p), "my")
8008                     && isSPACE(*(p + 2)))
8009                 {
8010                     p += 2;
8011                 }
8012                 else if (   memBEGINPs(p, (STRLEN) (PL_bufend - p), "our")
8013                          && isSPACE(*(p + 3)))
8014                 {
8015                     p += 3;
8016                 }
8017
8018                 p = skipspace(p);
8019                 /* skip optional package name, as in "for my abc $x (..)" */
8020                 if (isIDFIRST_lazy_if_safe(p, PL_bufend, UTF)) {
8021                     p = scan_word(p, PL_tokenbuf, sizeof PL_tokenbuf, TRUE, &len);
8022                     p = skipspace(p);
8023                 }
8024                 if (*p != '$' && *p != '\\')
8025                     Perl_croak(aTHX_ "Missing $ on loop variable");
8026
8027                 /* The buffer may have been reallocated, update s */
8028                 s = SvPVX(PL_linestr) + s_off;
8029             }
8030             OPERATOR(FOR);
8031
8032         case KEY_formline:
8033             LOP(OP_FORMLINE,XTERM);
8034
8035         case KEY_fork:
8036             FUN0(OP_FORK);
8037
8038         case KEY_fc:
8039             UNI(OP_FC);
8040
8041         case KEY_fcntl:
8042             LOP(OP_FCNTL,XTERM);
8043
8044         case KEY_fileno:
8045             UNI(OP_FILENO);
8046
8047         case KEY_flock:
8048             LOP(OP_FLOCK,XTERM);
8049
8050         case KEY_gt:
8051             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
8052                 return REPORT(0);
8053             Rop(OP_SGT);
8054
8055         case KEY_ge:
8056             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
8057                 return REPORT(0);
8058             Rop(OP_SGE);
8059
8060         case KEY_grep:
8061             LOP(OP_GREPSTART, XREF);
8062
8063         case KEY_goto:
8064             LOOPX(OP_GOTO);
8065
8066         case KEY_gmtime:
8067             UNI(OP_GMTIME);
8068
8069         case KEY_getc:
8070             UNIDOR(OP_GETC);
8071
8072         case KEY_getppid:
8073             FUN0(OP_GETPPID);
8074
8075         case KEY_getpgrp:
8076             UNI(OP_GETPGRP);
8077
8078         case KEY_getpriority:
8079             LOP(OP_GETPRIORITY,XTERM);
8080
8081         case KEY_getprotobyname:
8082             UNI(OP_GPBYNAME);
8083
8084         case KEY_getprotobynumber:
8085             LOP(OP_GPBYNUMBER,XTERM);
8086
8087         case KEY_getprotoent:
8088             FUN0(OP_GPROTOENT);
8089
8090         case KEY_getpwent:
8091             FUN0(OP_GPWENT);
8092
8093         case KEY_getpwnam:
8094             UNI(OP_GPWNAM);
8095
8096         case KEY_getpwuid:
8097             UNI(OP_GPWUID);
8098
8099         case KEY_getpeername:
8100             UNI(OP_GETPEERNAME);
8101
8102         case KEY_gethostbyname:
8103             UNI(OP_GHBYNAME);
8104
8105         case KEY_gethostbyaddr:
8106             LOP(OP_GHBYADDR,XTERM);
8107
8108         case KEY_gethostent:
8109             FUN0(OP_GHOSTENT);
8110
8111         case KEY_getnetbyname:
8112             UNI(OP_GNBYNAME);
8113
8114         case KEY_getnetbyaddr:
8115             LOP(OP_GNBYADDR,XTERM);
8116
8117         case KEY_getnetent:
8118             FUN0(OP_GNETENT);
8119
8120         case KEY_getservbyname:
8121             LOP(OP_GSBYNAME,XTERM);
8122
8123         case KEY_getservbyport:
8124             LOP(OP_GSBYPORT,XTERM);
8125
8126         case KEY_getservent:
8127             FUN0(OP_GSERVENT);
8128
8129         case KEY_getsockname:
8130             UNI(OP_GETSOCKNAME);
8131
8132         case KEY_getsockopt:
8133             LOP(OP_GSOCKOPT,XTERM);
8134
8135         case KEY_getgrent:
8136             FUN0(OP_GGRENT);
8137
8138         case KEY_getgrnam:
8139             UNI(OP_GGRNAM);
8140
8141         case KEY_getgrgid:
8142             UNI(OP_GGRGID);
8143
8144         case KEY_getlogin:
8145             FUN0(OP_GETLOGIN);
8146
8147         case KEY_given:
8148             pl_yylval.ival = CopLINE(PL_curcop);
8149             Perl_ck_warner_d(aTHX_
8150                 packWARN(WARN_EXPERIMENTAL__SMARTMATCH),
8151                 "given is experimental");
8152             OPERATOR(GIVEN);
8153
8154         case KEY_glob:
8155             LOP(
8156              orig_keyword==KEY_glob ? -OP_GLOB : OP_GLOB,
8157              XTERM
8158             );
8159
8160         case KEY_hex:
8161             UNI(OP_HEX);
8162
8163         case KEY_if:
8164             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
8165                 return REPORT(0);
8166             pl_yylval.ival = CopLINE(PL_curcop);
8167             OPERATOR(IF);
8168
8169         case KEY_index:
8170             LOP(OP_INDEX,XTERM);
8171
8172         case KEY_int:
8173             UNI(OP_INT);
8174
8175         case KEY_ioctl:
8176             LOP(OP_IOCTL,XTERM);
8177
8178         case KEY_join:
8179             LOP(OP_JOIN,XTERM);
8180
8181         case KEY_keys:
8182             UNI(OP_KEYS);
8183
8184         case KEY_kill:
8185             LOP(OP_KILL,XTERM);
8186
8187         case KEY_last:
8188             LOOPX(OP_LAST);
8189
8190         case KEY_lc:
8191             UNI(OP_LC);
8192
8193         case KEY_lcfirst:
8194             UNI(OP_LCFIRST);
8195
8196         case KEY_local:
8197             OPERATOR(LOCAL);
8198
8199         case KEY_length:
8200             UNI(OP_LENGTH);
8201
8202         case KEY_lt:
8203             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
8204                 return REPORT(0);
8205             Rop(OP_SLT);
8206
8207         case KEY_le:
8208             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
8209                 return REPORT(0);
8210             Rop(OP_SLE);
8211
8212         case KEY_localtime:
8213             UNI(OP_LOCALTIME);
8214
8215         case KEY_log:
8216             UNI(OP_LOG);
8217
8218         case KEY_link:
8219             LOP(OP_LINK,XTERM);
8220
8221         case KEY_listen:
8222             LOP(OP_LISTEN,XTERM);
8223
8224         case KEY_lock:
8225             UNI(OP_LOCK);
8226
8227         case KEY_lstat:
8228             UNI(OP_LSTAT);
8229
8230         case KEY_m:
8231             s = scan_pat(s,OP_MATCH);
8232             TERM(sublex_start());
8233
8234         case KEY_map:
8235             LOP(OP_MAPSTART, XREF);
8236
8237         case KEY_mkdir:
8238             LOP(OP_MKDIR,XTERM);
8239
8240         case KEY_msgctl:
8241             LOP(OP_MSGCTL,XTERM);
8242
8243         case KEY_msgget:
8244             LOP(OP_MSGGET,XTERM);
8245
8246         case KEY_msgrcv:
8247             LOP(OP_MSGRCV,XTERM);
8248
8249         case KEY_msgsnd:
8250             LOP(OP_MSGSND,XTERM);
8251
8252         case KEY_our:
8253         case KEY_my:
8254         case KEY_state:
8255             if (PL_in_my) {
8256                 PL_bufptr = s;
8257                 yyerror(Perl_form(aTHX_
8258                                   "Can't redeclare \"%s\" in \"%s\"",
8259                                    tmp      == KEY_my    ? "my" :
8260                                    tmp      == KEY_state ? "state" : "our",
8261                                    PL_in_my == KEY_my    ? "my" :
8262                                    PL_in_my == KEY_state ? "state" : "our"));
8263             }
8264             PL_in_my = (U16)tmp;
8265             s = skipspace(s);
8266             if (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)) {
8267                 s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, TRUE, &len);
8268                 if (memEQs(PL_tokenbuf, len, "sub"))
8269                     goto really_sub;
8270                 PL_in_my_stash = find_in_my_stash(PL_tokenbuf, len);
8271                 if (!PL_in_my_stash) {
8272                     char tmpbuf[1024];
8273                     int len;
8274                     PL_bufptr = s;
8275                     len = my_snprintf(tmpbuf, sizeof(tmpbuf), "No such class %.1000s", PL_tokenbuf);
8276                     PERL_MY_SNPRINTF_POST_GUARD(len, sizeof(tmpbuf));
8277                     yyerror_pv(tmpbuf, UTF ? SVf_UTF8 : 0);
8278                 }
8279             }
8280             else if (*s == '\\') {
8281                 if (!FEATURE_MYREF_IS_ENABLED)
8282                     Perl_croak(aTHX_ "The experimental declared_refs "
8283                                      "feature is not enabled");
8284                 Perl_ck_warner_d(aTHX_
8285                      packWARN(WARN_EXPERIMENTAL__DECLARED_REFS),
8286                     "Declaring references is experimental");
8287             }
8288             OPERATOR(MY);
8289
8290         case KEY_next:
8291             LOOPX(OP_NEXT);
8292
8293         case KEY_ne:
8294             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
8295                 return REPORT(0);
8296             Eop(OP_SNE);
8297
8298         case KEY_no:
8299             s = tokenize_use(0, s);
8300             TOKEN(USE);
8301
8302         case KEY_not:
8303             if (*s == '(' || (s = skipspace(s), *s == '('))
8304                 FUN1(OP_NOT);
8305             else {
8306                 if (!PL_lex_allbrackets
8307                     && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
8308                 {
8309                     PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
8310                 }
8311                 OPERATOR(NOTOP);
8312             }
8313
8314         case KEY_open:
8315             s = skipspace(s);
8316             if (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)) {
8317                 const char *t;
8318                 d = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE,
8319                               &len);
8320                 for (t=d; isSPACE(*t);)
8321                     t++;
8322                 if ( *t && strchr("|&*+-=!?:.", *t) && ckWARN_d(WARN_PRECEDENCE)
8323                     /* [perl #16184] */
8324                     && !(t[0] == '=' && t[1] == '>')
8325                     && !(t[0] == ':' && t[1] == ':')
8326                     && !keyword(s, d-s, 0)
8327                 ) {
8328                     Perl_warner(aTHX_ packWARN(WARN_PRECEDENCE),
8329                        "Precedence problem: open %" UTF8f " should be open(%" UTF8f ")",
8330                         UTF8fARG(UTF, d-s, s), UTF8fARG(UTF, d-s, s));
8331                 }
8332             }
8333             LOP(OP_OPEN,XTERM);
8334
8335         case KEY_or:
8336             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_LOWLOGIC)
8337                 return REPORT(0);
8338             pl_yylval.ival = OP_OR;
8339             OPERATOR(OROP);
8340
8341         case KEY_ord:
8342             UNI(OP_ORD);
8343
8344         case KEY_oct:
8345             UNI(OP_OCT);
8346
8347         case KEY_opendir:
8348             LOP(OP_OPEN_DIR,XTERM);
8349
8350         case KEY_print:
8351             checkcomma(s,PL_tokenbuf,"filehandle");
8352             LOP(OP_PRINT,XREF);
8353
8354         case KEY_printf:
8355             checkcomma(s,PL_tokenbuf,"filehandle");
8356             LOP(OP_PRTF,XREF);
8357
8358         case KEY_prototype:
8359             UNI(OP_PROTOTYPE);
8360
8361         case KEY_push:
8362             LOP(OP_PUSH,XTERM);
8363
8364         case KEY_pop:
8365             UNIDOR(OP_POP);
8366
8367         case KEY_pos:
8368             UNIDOR(OP_POS);
8369
8370         case KEY_pack:
8371             LOP(OP_PACK,XTERM);
8372
8373         case KEY_package:
8374             s = force_word(s,BAREWORD,FALSE,TRUE);
8375             s = skipspace(s);
8376             s = force_strict_version(s);
8377             PREBLOCK(PACKAGE);
8378
8379         case KEY_pipe:
8380             LOP(OP_PIPE_OP,XTERM);
8381
8382         case KEY_q:
8383             s = scan_str(s,FALSE,FALSE,FALSE,NULL);
8384             if (!s)
8385                 missingterm(NULL, 0);
8386             COPLINE_SET_FROM_MULTI_END;
8387             pl_yylval.ival = OP_CONST;
8388             TERM(sublex_start());
8389
8390         case KEY_quotemeta:
8391             UNI(OP_QUOTEMETA);
8392
8393         case KEY_qw: {
8394             OP *words = NULL;
8395             s = scan_str(s,FALSE,FALSE,FALSE,NULL);
8396             if (!s)
8397                 missingterm(NULL, 0);
8398             COPLINE_SET_FROM_MULTI_END;
8399             PL_expect = XOPERATOR;
8400             if (SvCUR(PL_lex_stuff)) {
8401                 int warned_comma = !ckWARN(WARN_QW);
8402                 int warned_comment = warned_comma;
8403                 d = SvPV_force(PL_lex_stuff, len);
8404                 while (len) {
8405                     for (; isSPACE(*d) && len; --len, ++d)
8406                         /**/;
8407                     if (len) {
8408                         SV *sv;
8409                         const char *b = d;
8410                         if (!warned_comma || !warned_comment) {
8411                             for (; !isSPACE(*d) && len; --len, ++d) {
8412                                 if (!warned_comma && *d == ',') {
8413                                     Perl_warner(aTHX_ packWARN(WARN_QW),
8414                                         "Possible attempt to separate words with commas");
8415                                     ++warned_comma;
8416                                 }
8417                                 else if (!warned_comment && *d == '#') {
8418                                     Perl_warner(aTHX_ packWARN(WARN_QW),
8419                                         "Possible attempt to put comments in qw() list");
8420                                     ++warned_comment;
8421                                 }
8422                             }
8423                         }
8424                         else {
8425                             for (; !isSPACE(*d) && len; --len, ++d)
8426                                 /**/;
8427                         }
8428                         sv = newSVpvn_utf8(b, d-b, DO_UTF8(PL_lex_stuff));
8429                         words = op_append_elem(OP_LIST, words,
8430                                             newSVOP(OP_CONST, 0, tokeq(sv)));
8431                     }
8432                 }
8433             }
8434             if (!words)
8435                 words = newNULLLIST();
8436             SvREFCNT_dec_NN(PL_lex_stuff);
8437             PL_lex_stuff = NULL;
8438             PL_expect = XOPERATOR;
8439             pl_yylval.opval = sawparens(words);
8440             TOKEN(QWLIST);
8441         }
8442
8443         case KEY_qq:
8444             s = scan_str(s,FALSE,FALSE,FALSE,NULL);
8445             if (!s)
8446                 missingterm(NULL, 0);
8447             pl_yylval.ival = OP_STRINGIFY;
8448             if (SvIVX(PL_lex_stuff) == '\'')
8449                 SvIV_set(PL_lex_stuff, 0);      /* qq'$foo' should interpolate */
8450             TERM(sublex_start());
8451
8452         case KEY_qr:
8453             s = scan_pat(s,OP_QR);
8454             TERM(sublex_start());
8455
8456         case KEY_qx:
8457             s = scan_str(s,FALSE,FALSE,FALSE,NULL);
8458             if (!s)
8459                 missingterm(NULL, 0);
8460             pl_yylval.ival = OP_BACKTICK;
8461             TERM(sublex_start());
8462
8463         case KEY_return:
8464             OLDLOP(OP_RETURN);
8465
8466         case KEY_require:
8467             s = skipspace(s);
8468             if (isDIGIT(*s)) {
8469                 s = force_version(s, FALSE);
8470             }
8471             else if (*s != 'v' || !isDIGIT(s[1])
8472                     || (s = force_version(s, TRUE), *s == 'v'))
8473             {
8474                 *PL_tokenbuf = '\0';
8475                 s = force_word(s,BAREWORD,TRUE,TRUE);
8476                 if (isIDFIRST_lazy_if_safe(PL_tokenbuf,
8477                                            PL_tokenbuf + sizeof(PL_tokenbuf),
8478                                            UTF))
8479                 {
8480                     gv_stashpvn(PL_tokenbuf, strlen(PL_tokenbuf),
8481                                 GV_ADD | (UTF ? SVf_UTF8 : 0));
8482                 }
8483                 else if (*s == '<')
8484                     yyerror("<> at require-statement should be quotes");
8485             }
8486             if (orig_keyword == KEY_require) {
8487                 orig_keyword = 0;
8488                 pl_yylval.ival = 1;
8489             }
8490             else
8491                 pl_yylval.ival = 0;
8492             PL_expect = PL_nexttoke ? XOPERATOR : XTERM;
8493             PL_bufptr = s;
8494             PL_last_uni = PL_oldbufptr;
8495             PL_last_lop_op = OP_REQUIRE;
8496             s = skipspace(s);
8497             return REPORT( (int)REQUIRE );
8498
8499         case KEY_reset:
8500             UNI(OP_RESET);
8501
8502         case KEY_redo:
8503             LOOPX(OP_REDO);
8504
8505         case KEY_rename:
8506             LOP(OP_RENAME,XTERM);
8507
8508         case KEY_rand:
8509             UNI(OP_RAND);
8510
8511         case KEY_rmdir:
8512             UNI(OP_RMDIR);
8513
8514         case KEY_rindex:
8515             LOP(OP_RINDEX,XTERM);
8516
8517         case KEY_read:
8518             LOP(OP_READ,XTERM);
8519
8520         case KEY_readdir:
8521             UNI(OP_READDIR);
8522
8523         case KEY_readline:
8524             UNIDOR(OP_READLINE);
8525
8526         case KEY_readpipe:
8527             UNIDOR(OP_BACKTICK);
8528
8529         case KEY_rewinddir:
8530             UNI(OP_REWINDDIR);
8531
8532         case KEY_recv:
8533             LOP(OP_RECV,XTERM);
8534
8535         case KEY_reverse:
8536             LOP(OP_REVERSE,XTERM);
8537
8538         case KEY_readlink:
8539             UNIDOR(OP_READLINK);
8540
8541         case KEY_ref:
8542             UNI(OP_REF);
8543
8544         case KEY_s:
8545             s = scan_subst(s);
8546             if (pl_yylval.opval)
8547                 TERM(sublex_start());
8548             else
8549                 TOKEN(1);       /* force error */
8550
8551         case KEY_say:
8552             checkcomma(s,PL_tokenbuf,"filehandle");
8553             LOP(OP_SAY,XREF);
8554
8555         case KEY_chomp:
8556             UNI(OP_CHOMP);
8557
8558         case KEY_scalar:
8559             UNI(OP_SCALAR);
8560
8561         case KEY_select:
8562             LOP(OP_SELECT,XTERM);
8563
8564         case KEY_seek:
8565             LOP(OP_SEEK,XTERM);
8566
8567         case KEY_semctl:
8568             LOP(OP_SEMCTL,XTERM);
8569
8570         case KEY_semget:
8571             LOP(OP_SEMGET,XTERM);
8572
8573         case KEY_semop:
8574             LOP(OP_SEMOP,XTERM);
8575
8576         case KEY_send:
8577             LOP(OP_SEND,XTERM);
8578
8579         case KEY_setpgrp:
8580             LOP(OP_SETPGRP,XTERM);
8581
8582         case KEY_setpriority:
8583             LOP(OP_SETPRIORITY,XTERM);
8584
8585         case KEY_sethostent:
8586             UNI(OP_SHOSTENT);
8587
8588         case KEY_setnetent:
8589             UNI(OP_SNETENT);
8590
8591         case KEY_setservent:
8592             UNI(OP_SSERVENT);
8593
8594         case KEY_setprotoent:
8595             UNI(OP_SPROTOENT);
8596
8597         case KEY_setpwent:
8598             FUN0(OP_SPWENT);
8599
8600         case KEY_setgrent:
8601             FUN0(OP_SGRENT);
8602
8603         case KEY_seekdir:
8604             LOP(OP_SEEKDIR,XTERM);
8605
8606         case KEY_setsockopt:
8607             LOP(OP_SSOCKOPT,XTERM);
8608
8609         case KEY_shift:
8610             UNIDOR(OP_SHIFT);
8611
8612         case KEY_shmctl:
8613             LOP(OP_SHMCTL,XTERM);
8614
8615         case KEY_shmget:
8616             LOP(OP_SHMGET,XTERM);
8617
8618         case KEY_shmread:
8619             LOP(OP_SHMREAD,XTERM);
8620
8621         case KEY_shmwrite:
8622             LOP(OP_SHMWRITE,XTERM);
8623
8624         case KEY_shutdown:
8625             LOP(OP_SHUTDOWN,XTERM);
8626
8627         case KEY_sin:
8628             UNI(OP_SIN);
8629
8630         case KEY_sleep:
8631             UNI(OP_SLEEP);
8632
8633         case KEY_socket:
8634             LOP(OP_SOCKET,XTERM);
8635
8636         case KEY_socketpair:
8637             LOP(OP_SOCKPAIR,XTERM);
8638
8639         case KEY_sort:
8640             checkcomma(s,PL_tokenbuf,"subroutine name");
8641             s = skipspace(s);
8642             PL_expect = XTERM;
8643             s = force_word(s,BAREWORD,TRUE,TRUE);
8644             LOP(OP_SORT,XREF);
8645
8646         case KEY_split:
8647             LOP(OP_SPLIT,XTERM);
8648
8649         case KEY_sprintf:
8650             LOP(OP_SPRINTF,XTERM);
8651
8652         case KEY_splice:
8653             LOP(OP_SPLICE,XTERM);
8654
8655         case KEY_sqrt:
8656             UNI(OP_SQRT);
8657
8658         case KEY_srand:
8659             UNI(OP_SRAND);
8660
8661         case KEY_stat:
8662             UNI(OP_STAT);
8663
8664         case KEY_study:
8665             UNI(OP_STUDY);
8666
8667         case KEY_substr:
8668             LOP(OP_SUBSTR,XTERM);
8669
8670         case KEY_format:
8671         case KEY_sub:
8672           really_sub:
8673             {
8674                 char * const tmpbuf = PL_tokenbuf + 1;
8675                 bool have_name, have_proto;
8676                 const int key = tmp;
8677                 SV *format_name = NULL;
8678                 bool is_sigsub = FEATURE_SIGNATURES_IS_ENABLED;
8679
8680                 SSize_t off = s-SvPVX(PL_linestr);
8681                 s = skipspace(s);
8682                 d = SvPVX(PL_linestr)+off;
8683
8684                 SAVEBOOL(PL_parser->sig_seen);
8685                 PL_parser->sig_seen = FALSE;
8686
8687                 if (   isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)
8688                     || *s == '\''
8689                     || (*s == ':' && s[1] == ':'))
8690                 {
8691
8692                     PL_expect = XATTRBLOCK;
8693                     d = scan_word(s, tmpbuf, sizeof PL_tokenbuf - 1, TRUE,
8694                                   &len);
8695                     if (key == KEY_format)
8696                         format_name = S_newSV_maybe_utf8(aTHX_ s, d - s);
8697                     *PL_tokenbuf = '&';
8698                     if (memchr(tmpbuf, ':', len) || key != KEY_sub
8699                      || pad_findmy_pvn(
8700                             PL_tokenbuf, len + 1, 0
8701                         ) != NOT_IN_PAD)
8702                         sv_setpvn(PL_subname, tmpbuf, len);
8703                     else {
8704                         sv_setsv(PL_subname,PL_curstname);
8705                         sv_catpvs(PL_subname,"::");
8706                         sv_catpvn(PL_subname,tmpbuf,len);
8707                     }
8708                     if (SvUTF8(PL_linestr))
8709                         SvUTF8_on(PL_subname);
8710                     have_name = TRUE;
8711
8712
8713                     s = skipspace(d);
8714                 }
8715                 else {
8716                     if (key == KEY_my || key == KEY_our || key==KEY_state)
8717                     {
8718                         *d = '\0';
8719                         /* diag_listed_as: Missing name in "%s sub" */
8720                         Perl_croak(aTHX_
8721                                   "Missing name in \"%s\"", PL_bufptr);
8722                     }
8723                     PL_expect = XATTRTERM;
8724                     sv_setpvs(PL_subname,"?");
8725                     have_name = FALSE;
8726                 }
8727
8728                 if (key == KEY_format) {
8729                     if (format_name) {
8730                         NEXTVAL_NEXTTOKE.opval
8731                             = newSVOP(OP_CONST,0, format_name);
8732                         NEXTVAL_NEXTTOKE.opval->op_private |= OPpCONST_BARE;
8733                         force_next(BAREWORD);
8734                     }
8735                     PREBLOCK(FORMAT);
8736                 }
8737
8738                 /* Look for a prototype */
8739                 if (*s == '(' && !is_sigsub) {
8740                     s = scan_str(s,FALSE,FALSE,FALSE,NULL);
8741                     COPLINE_SET_FROM_MULTI_END;
8742                     if (!s)
8743                         Perl_croak(aTHX_ "Prototype not terminated");
8744                     (void)validate_proto(PL_subname, PL_lex_stuff,
8745                                          ckWARN(WARN_ILLEGALPROTO), 0);
8746                     have_proto = TRUE;
8747
8748                     s = skipspace(s);
8749                 }
8750                 else
8751                     have_proto = FALSE;
8752
8753                 if (  !(*s == ':' && s[1] != ':')
8754                     && (*s != '{' && *s != '(') && key != KEY_format)
8755                 {
8756                     assert(key == KEY_sub || key == KEY_AUTOLOAD ||
8757                            key == KEY_DESTROY || key == KEY_BEGIN ||
8758                            key == KEY_UNITCHECK || key == KEY_CHECK ||
8759                            key == KEY_INIT || key == KEY_END ||
8760                            key == KEY_my || key == KEY_state ||
8761                            key == KEY_our);
8762                     if (!have_name)
8763                         Perl_croak(aTHX_ "Illegal declaration of anonymous subroutine");
8764                     else if (*s != ';' && *s != '}')
8765                         Perl_croak(aTHX_ "Illegal declaration of subroutine %" SVf, SVfARG(PL_subname));
8766                 }
8767
8768                 if (have_proto) {
8769                     NEXTVAL_NEXTTOKE.opval =
8770                         newSVOP(OP_CONST, 0, PL_lex_stuff);
8771                     PL_lex_stuff = NULL;
8772                     force_next(THING);
8773                 }
8774                 if (!have_name) {
8775                     if (PL_curstash)
8776                         sv_setpvs(PL_subname, "__ANON__");
8777                     else
8778                         sv_setpvs(PL_subname, "__ANON__::__ANON__");
8779                     if (is_sigsub)
8780                         TOKEN(ANON_SIGSUB);
8781                     else
8782                         TOKEN(ANONSUB);
8783                 }
8784                 force_ident_maybe_lex('&');
8785                 if (is_sigsub)
8786                     TOKEN(SIGSUB);
8787                 else
8788                     TOKEN(SUB);
8789             }
8790
8791         case KEY_system:
8792             LOP(OP_SYSTEM,XREF);
8793
8794         case KEY_symlink:
8795             LOP(OP_SYMLINK,XTERM);
8796
8797         case KEY_syscall:
8798             LOP(OP_SYSCALL,XTERM);
8799
8800         case KEY_sysopen:
8801             LOP(OP_SYSOPEN,XTERM);
8802
8803         case KEY_sysseek:
8804             LOP(OP_SYSSEEK,XTERM);
8805
8806         case KEY_sysread:
8807             LOP(OP_SYSREAD,XTERM);
8808
8809         case KEY_syswrite:
8810             LOP(OP_SYSWRITE,XTERM);
8811
8812         case KEY_tr:
8813         case KEY_y:
8814             s = scan_trans(s);
8815             TERM(sublex_start());
8816
8817         case KEY_tell:
8818             UNI(OP_TELL);
8819
8820         case KEY_telldir:
8821             UNI(OP_TELLDIR);
8822
8823         case KEY_tie:
8824             LOP(OP_TIE,XTERM);
8825
8826         case KEY_tied:
8827             UNI(OP_TIED);
8828
8829         case KEY_time:
8830             FUN0(OP_TIME);
8831
8832         case KEY_times:
8833             FUN0(OP_TMS);
8834
8835         case KEY_truncate:
8836             LOP(OP_TRUNCATE,XTERM);
8837
8838         case KEY_uc:
8839             UNI(OP_UC);
8840
8841         case KEY_ucfirst:
8842             UNI(OP_UCFIRST);
8843
8844         case KEY_untie:
8845             UNI(OP_UNTIE);
8846
8847         case KEY_until:
8848             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
8849                 return REPORT(0);
8850             pl_yylval.ival = CopLINE(PL_curcop);
8851             OPERATOR(UNTIL);
8852
8853         case KEY_unless:
8854             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
8855                 return REPORT(0);
8856             pl_yylval.ival = CopLINE(PL_curcop);
8857             OPERATOR(UNLESS);
8858
8859         case KEY_unlink:
8860             LOP(OP_UNLINK,XTERM);
8861
8862         case KEY_undef:
8863             UNIDOR(OP_UNDEF);
8864
8865         case KEY_unpack:
8866             LOP(OP_UNPACK,XTERM);
8867
8868         case KEY_utime:
8869             LOP(OP_UTIME,XTERM);
8870
8871         case KEY_umask:
8872             UNIDOR(OP_UMASK);
8873
8874         case KEY_unshift:
8875             LOP(OP_UNSHIFT,XTERM);
8876
8877         case KEY_use:
8878             s = tokenize_use(1, s);
8879             TOKEN(USE);
8880
8881         case KEY_values:
8882             UNI(OP_VALUES);
8883
8884         case KEY_vec:
8885             LOP(OP_VEC,XTERM);
8886
8887         case KEY_when:
8888             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
8889                 return REPORT(0);
8890             pl_yylval.ival = CopLINE(PL_curcop);
8891             Perl_ck_warner_d(aTHX_
8892                 packWARN(WARN_EXPERIMENTAL__SMARTMATCH),
8893                 "when is experimental");
8894             OPERATOR(WHEN);
8895
8896         case KEY_while:
8897             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
8898                 return REPORT(0);
8899             pl_yylval.ival = CopLINE(PL_curcop);
8900             OPERATOR(WHILE);
8901
8902         case KEY_warn:
8903             PL_hints |= HINT_BLOCK_SCOPE;
8904             LOP(OP_WARN,XTERM);
8905
8906         case KEY_wait:
8907             FUN0(OP_WAIT);
8908
8909         case KEY_waitpid:
8910             LOP(OP_WAITPID,XTERM);
8911
8912         case KEY_wantarray:
8913             FUN0(OP_WANTARRAY);
8914
8915         case KEY_write:
8916             /* Make sure $^L is defined. 0x0C is CTRL-L on ASCII platforms, and
8917              * we use the same number on EBCDIC */
8918             gv_fetchpvs("\x0C", GV_ADD|GV_NOTQUAL, SVt_PV);
8919             UNI(OP_ENTERWRITE);
8920
8921         case KEY_x:
8922             if (PL_expect == XOPERATOR) {
8923                 if (*s == '=' && !PL_lex_allbrackets
8924                     && PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
8925                 {
8926                     return REPORT(0);
8927                 }
8928                 Mop(OP_REPEAT);
8929             }
8930             check_uni();
8931             goto just_a_word;
8932
8933         case KEY_xor:
8934             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_LOWLOGIC)
8935                 return REPORT(0);
8936             pl_yylval.ival = OP_XOR;
8937             OPERATOR(OROP);
8938         }
8939     }}
8940 }
8941
8942 /*
8943   S_pending_ident
8944
8945   Looks up an identifier in the pad or in a package
8946
8947   is_sig indicates that this is a subroutine signature variable
8948   rather than a plain pad var.
8949
8950   Returns:
8951     PRIVATEREF if this is a lexical name.
8952     BAREWORD   if this belongs to a package.
8953
8954   Structure:
8955       if we're in a my declaration
8956           croak if they tried to say my($foo::bar)
8957           build the ops for a my() declaration
8958       if it's an access to a my() variable
8959           build ops for access to a my() variable
8960       if in a dq string, and they've said @foo and we can't find @foo
8961           warn
8962       build ops for a bareword
8963 */
8964
8965 static int
8966 S_pending_ident(pTHX)
8967 {
8968     PADOFFSET tmp = 0;
8969     const char pit = (char)pl_yylval.ival;
8970     const STRLEN tokenbuf_len = strlen(PL_tokenbuf);
8971     /* All routes through this function want to know if there is a colon.  */
8972     const char *const has_colon = (const char*) memchr (PL_tokenbuf, ':', tokenbuf_len);
8973
8974     DEBUG_T({ PerlIO_printf(Perl_debug_log,
8975           "### Pending identifier '%s'\n", PL_tokenbuf); });
8976     assert(tokenbuf_len >= 2);
8977
8978     /* if we're in a my(), we can't allow dynamics here.
8979        $foo'bar has already been turned into $foo::bar, so
8980        just check for colons.
8981
8982        if it's a legal name, the OP is a PADANY.
8983     */
8984     if (PL_in_my) {
8985         if (PL_in_my == KEY_our) {      /* "our" is merely analogous to "my" */
8986             if (has_colon)
8987                 /* diag_listed_as: No package name allowed for variable %s
8988                                    in "our" */
8989                 yyerror_pv(Perl_form(aTHX_ "No package name allowed for "
8990                                   "%se %s in \"our\"",
8991                                   *PL_tokenbuf=='&' ?"subroutin":"variabl",
8992                                   PL_tokenbuf), UTF ? SVf_UTF8 : 0);
8993             tmp = allocmy(PL_tokenbuf, tokenbuf_len, UTF ? SVf_UTF8 : 0);
8994         }
8995         else {
8996             OP *o;
8997             if (has_colon) {
8998                 /* "my" variable %s can't be in a package */
8999                 /* PL_no_myglob is constant */
9000                 GCC_DIAG_IGNORE_STMT(-Wformat-nonliteral);
9001                 yyerror_pv(Perl_form(aTHX_ PL_no_myglob,
9002                             PL_in_my == KEY_my ? "my" : "state",
9003                             *PL_tokenbuf == '&' ? "subroutin" : "variabl",
9004                             PL_tokenbuf),
9005                             UTF ? SVf_UTF8 : 0);
9006                 GCC_DIAG_RESTORE_STMT;
9007             }
9008
9009             if (PL_in_my == KEY_sigvar) {
9010                 /* A signature 'padop' needs in addition, an op_first to
9011                  * point to a child sigdefelem, and an extra field to hold
9012                  * the signature index. We can achieve both by using an
9013                  * UNOP_AUX and (ab)using the op_aux field to hold the
9014                  * index. If we ever need more fields, use a real malloced
9015                  * aux strut instead.
9016                  */
9017                 o = newUNOP_AUX(OP_ARGELEM, 0, NULL,
9018                                     INT2PTR(UNOP_AUX_item *,
9019                                         (PL_parser->sig_elems)));
9020                 o->op_private |= (  PL_tokenbuf[0] == '$' ? OPpARGELEM_SV
9021                                   : PL_tokenbuf[0] == '@' ? OPpARGELEM_AV
9022                                   :                         OPpARGELEM_HV);
9023             }
9024             else
9025                 o = newOP(OP_PADANY, 0);
9026             o->op_targ = allocmy(PL_tokenbuf, tokenbuf_len,
9027                                                         UTF ? SVf_UTF8 : 0);
9028             if (PL_in_my == KEY_sigvar)
9029                 PL_in_my = 0;
9030
9031             pl_yylval.opval = o;
9032             return PRIVATEREF;
9033         }
9034     }
9035
9036     /*
9037        build the ops for accesses to a my() variable.
9038     */
9039
9040     if (!has_colon) {
9041         if (!PL_in_my)
9042             tmp = pad_findmy_pvn(PL_tokenbuf, tokenbuf_len,
9043                                  0);
9044         if (tmp != NOT_IN_PAD) {
9045             /* might be an "our" variable" */
9046             if (PAD_COMPNAME_FLAGS_isOUR(tmp)) {
9047                 /* build ops for a bareword */
9048                 HV *  const stash = PAD_COMPNAME_OURSTASH(tmp);
9049                 HEK * const stashname = HvNAME_HEK(stash);
9050                 SV *  const sym = newSVhek(stashname);
9051                 sv_catpvs(sym, "::");
9052                 sv_catpvn_flags(sym, PL_tokenbuf+1, tokenbuf_len > 0 ? tokenbuf_len - 1 : 0, (UTF ? SV_CATUTF8 : SV_CATBYTES ));
9053                 pl_yylval.opval = newSVOP(OP_CONST, 0, sym);
9054                 pl_yylval.opval->op_private = OPpCONST_ENTERED;
9055                 if (pit != '&')
9056                   gv_fetchsv(sym,
9057                     GV_ADDMULTI,
9058                     ((PL_tokenbuf[0] == '$') ? SVt_PV
9059                      : (PL_tokenbuf[0] == '@') ? SVt_PVAV
9060                      : SVt_PVHV));
9061                 return BAREWORD;
9062             }
9063
9064             pl_yylval.opval = newOP(OP_PADANY, 0);
9065             pl_yylval.opval->op_targ = tmp;
9066             return PRIVATEREF;
9067         }
9068     }
9069
9070     /*
9071        Whine if they've said @foo or @foo{key} in a doublequoted string,
9072        and @foo (or %foo) isn't a variable we can find in the symbol
9073        table.
9074     */
9075     if (ckWARN(WARN_AMBIGUOUS)
9076         && pit == '@'
9077         && PL_lex_state != LEX_NORMAL
9078         && !PL_lex_brackets)
9079     {
9080         GV *const gv = gv_fetchpvn_flags(PL_tokenbuf + 1, tokenbuf_len > 0 ? tokenbuf_len - 1 : 0,
9081                                          ( UTF ? SVf_UTF8 : 0 ) | GV_ADDMG,
9082                                          SVt_PVAV);
9083         if ((!gv || ((PL_tokenbuf[0] == '@') ? !GvAV(gv) : !GvHV(gv)))
9084            )
9085         {
9086             /* Downgraded from fatal to warning 20000522 mjd */
9087             Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
9088                         "Possible unintended interpolation of %" UTF8f
9089                         " in string",
9090                         UTF8fARG(UTF, tokenbuf_len, PL_tokenbuf));
9091         }
9092     }
9093
9094     /* build ops for a bareword */
9095     pl_yylval.opval = newSVOP(OP_CONST, 0,
9096                                    newSVpvn_flags(PL_tokenbuf + 1,
9097                                                       tokenbuf_len > 0 ? tokenbuf_len - 1 : 0,
9098                                                       UTF ? SVf_UTF8 : 0 ));
9099     pl_yylval.opval->op_private = OPpCONST_ENTERED;
9100     if (pit != '&')
9101         gv_fetchpvn_flags(PL_tokenbuf+1, tokenbuf_len > 0 ? tokenbuf_len - 1 : 0,
9102                      (PL_in_eval ? GV_ADDMULTI : GV_ADD)
9103                      | ( UTF ? SVf_UTF8 : 0 ),
9104                      ((PL_tokenbuf[0] == '$') ? SVt_PV
9105                       : (PL_tokenbuf[0] == '@') ? SVt_PVAV
9106                       : SVt_PVHV));
9107     return BAREWORD;
9108 }
9109
9110 STATIC void
9111 S_checkcomma(pTHX_ const char *s, const char *name, const char *what)
9112 {
9113     PERL_ARGS_ASSERT_CHECKCOMMA;
9114
9115     if (*s == ' ' && s[1] == '(') {     /* XXX gotta be a better way */
9116         if (ckWARN(WARN_SYNTAX)) {
9117             int level = 1;
9118             const char *w;
9119             for (w = s+2; *w && level; w++) {
9120                 if (*w == '(')
9121                     ++level;
9122                 else if (*w == ')')
9123                     --level;
9124             }
9125             while (isSPACE(*w))
9126                 ++w;
9127             /* the list of chars below is for end of statements or
9128              * block / parens, boolean operators (&&, ||, //) and branch
9129              * constructs (or, and, if, until, unless, while, err, for).
9130              * Not a very solid hack... */
9131             if (!*w || !strchr(";&/|})]oaiuwef!=", *w))
9132                 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
9133                             "%s (...) interpreted as function",name);
9134         }
9135     }
9136     while (s < PL_bufend && isSPACE(*s))
9137         s++;
9138     if (*s == '(')
9139         s++;
9140     while (s < PL_bufend && isSPACE(*s))
9141         s++;
9142     if (isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)) {
9143         const char * const w = s;
9144         s += UTF ? UTF8SKIP(s) : 1;
9145         while (isWORDCHAR_lazy_if_safe(s, PL_bufend, UTF))
9146             s += UTF ? UTF8SKIP(s) : 1;
9147         while (s < PL_bufend && isSPACE(*s))
9148             s++;
9149         if (*s == ',') {
9150             GV* gv;
9151             if (keyword(w, s - w, 0))
9152                 return;
9153
9154             gv = gv_fetchpvn_flags(w, s - w, ( UTF ? SVf_UTF8 : 0 ), SVt_PVCV);
9155             if (gv && GvCVu(gv))
9156                 return;
9157             if (s - w <= 254) {
9158                 PADOFFSET off;
9159                 char tmpbuf[256];
9160                 Copy(w, tmpbuf+1, s - w, char);
9161                 *tmpbuf = '&';
9162                 off = pad_findmy_pvn(tmpbuf, s-w+1, 0);
9163                 if (off != NOT_IN_PAD) return;
9164             }
9165             Perl_croak(aTHX_ "No comma allowed after %s", what);
9166         }
9167     }
9168 }
9169
9170 /* S_new_constant(): do any overload::constant lookup.
9171
9172    Either returns sv, or mortalizes/frees sv and returns a new SV*.
9173    Best used as sv=new_constant(..., sv, ...).
9174    If s, pv are NULL, calls subroutine with one argument,
9175    and <type> is used with error messages only.
9176    <type> is assumed to be well formed UTF-8 */
9177
9178 STATIC SV *
9179 S_new_constant(pTHX_ const char *s, STRLEN len, const char *key, STRLEN keylen,
9180                SV *sv, SV *pv, const char *type, STRLEN typelen)
9181 {
9182     dSP;
9183     HV * table = GvHV(PL_hintgv);                /* ^H */
9184     SV *res;
9185     SV *errsv = NULL;
9186     SV **cvp;
9187     SV *cv, *typesv;
9188     const char *why1 = "", *why2 = "", *why3 = "";
9189
9190     PERL_ARGS_ASSERT_NEW_CONSTANT;
9191     /* We assume that this is true: */
9192     if (*key == 'c') { assert (strEQ(key, "charnames")); }
9193     assert(type || s);
9194
9195     /* charnames doesn't work well if there have been errors found */
9196     if (PL_error_count > 0 && *key == 'c')
9197     {
9198         SvREFCNT_dec_NN(sv);
9199         return &PL_sv_undef;
9200     }
9201
9202     sv_2mortal(sv);                     /* Parent created it permanently */
9203     if (!table
9204         || ! (PL_hints & HINT_LOCALIZE_HH)
9205         || ! (cvp = hv_fetch(table, key, keylen, FALSE))
9206         || ! SvOK(*cvp))
9207     {
9208         char *msg;
9209
9210         /* Here haven't found what we're looking for.  If it is charnames,
9211          * perhaps it needs to be loaded.  Try doing that before giving up */
9212         if (*key == 'c') {
9213             Perl_load_module(aTHX_
9214                             0,
9215                             newSVpvs("_charnames"),
9216                              /* version parameter; no need to specify it, as if
9217                               * we get too early a version, will fail anyway,
9218                               * not being able to find '_charnames' */
9219                             NULL,
9220                             newSVpvs(":full"),
9221                             newSVpvs(":short"),
9222                             NULL);
9223             assert(sp == PL_stack_sp);
9224             table = GvHV(PL_hintgv);
9225             if (table
9226                 && (PL_hints & HINT_LOCALIZE_HH)
9227                 && (cvp = hv_fetch(table, key, keylen, FALSE))
9228                 && SvOK(*cvp))
9229             {
9230                 goto now_ok;
9231             }
9232         }
9233         if (!table || !(PL_hints & HINT_LOCALIZE_HH)) {
9234             msg = Perl_form(aTHX_
9235                                "Constant(%.*s) unknown",
9236                                 (int)(type ? typelen : len),
9237                                 (type ? type: s));
9238         }
9239         else {
9240             why1 = "$^H{";
9241             why2 = key;
9242             why3 = "} is not defined";
9243         report:
9244             if (*key == 'c') {
9245                 msg = Perl_form(aTHX_
9246                             /* The +3 is for '\N{'; -4 for that, plus '}' */
9247                             "Unknown charname '%.*s'", (int)typelen - 4, type + 3
9248                       );
9249             }
9250             else {
9251                 msg = Perl_form(aTHX_ "Constant(%.*s): %s%s%s",
9252                                     (int)(type ? typelen : len),
9253                                     (type ? type: s), why1, why2, why3);
9254             }
9255         }
9256         yyerror_pv(msg, UTF ? SVf_UTF8 : 0);
9257         return SvREFCNT_inc_simple_NN(sv);
9258     }
9259   now_ok:
9260     cv = *cvp;
9261     if (!pv && s)
9262         pv = newSVpvn_flags(s, len, SVs_TEMP);
9263     if (type && pv)
9264         typesv = newSVpvn_flags(type, typelen, SVs_TEMP);
9265     else
9266         typesv = &PL_sv_undef;
9267
9268     PUSHSTACKi(PERLSI_OVERLOAD);
9269     ENTER ;
9270     SAVETMPS;
9271
9272     PUSHMARK(SP) ;
9273     EXTEND(sp, 3);
9274     if (pv)
9275         PUSHs(pv);
9276     PUSHs(sv);
9277     if (pv)
9278         PUSHs(typesv);
9279     PUTBACK;
9280     call_sv(cv, G_SCALAR | ( PL_in_eval ? 0 : G_EVAL));
9281
9282     SPAGAIN ;
9283
9284     /* Check the eval first */
9285     if (!PL_in_eval && ((errsv = ERRSV), SvTRUE_NN(errsv))) {
9286         STRLEN errlen;
9287         const char * errstr;
9288         sv_catpvs(errsv, "Propagated");
9289         errstr = SvPV_const(errsv, errlen);
9290         yyerror_pvn(errstr, errlen, 0); /* Duplicates the message inside eval */
9291         (void)POPs;
9292         res = SvREFCNT_inc_simple_NN(sv);
9293     }
9294     else {
9295         res = POPs;
9296         SvREFCNT_inc_simple_void_NN(res);
9297     }
9298
9299     PUTBACK ;
9300     FREETMPS ;
9301     LEAVE ;
9302     POPSTACK;
9303
9304     if (!SvOK(res)) {
9305         why1 = "Call to &{$^H{";
9306         why2 = key;
9307         why3 = "}} did not return a defined value";
9308         sv = res;
9309         (void)sv_2mortal(sv);
9310         goto report;
9311     }
9312
9313     return res;
9314 }
9315
9316 PERL_STATIC_INLINE void
9317 S_parse_ident(pTHX_ char **s, char **d, char * const e, int allow_package,
9318                     bool is_utf8, bool check_dollar, bool tick_warn)
9319 {
9320     int saw_tick = 0;
9321     const char *olds = *s;
9322     PERL_ARGS_ASSERT_PARSE_IDENT;
9323
9324     while (*s < PL_bufend) {
9325         if (*d >= e)
9326             Perl_croak(aTHX_ "%s", ident_too_long);
9327         if (is_utf8 && isIDFIRST_utf8_safe(*s, PL_bufend)) {
9328              /* The UTF-8 case must come first, otherwise things
9329              * like c\N{COMBINING TILDE} would start failing, as the
9330              * isWORDCHAR_A case below would gobble the 'c' up.
9331              */
9332
9333             char *t = *s + UTF8SKIP(*s);
9334             while (isIDCONT_utf8_safe((const U8*) t, (const U8*) PL_bufend)) {
9335                 t += UTF8SKIP(t);
9336             }
9337             if (*d + (t - *s) > e)
9338                 Perl_croak(aTHX_ "%s", ident_too_long);
9339             Copy(*s, *d, t - *s, char);
9340             *d += t - *s;
9341             *s = t;
9342         }
9343         else if ( isWORDCHAR_A(**s) ) {
9344             do {
9345                 *(*d)++ = *(*s)++;
9346             } while (isWORDCHAR_A(**s) && *d < e);
9347         }
9348         else if (   allow_package
9349                  && **s == '\''
9350                  && isIDFIRST_lazy_if_safe((*s)+1, PL_bufend, is_utf8))
9351         {
9352             *(*d)++ = ':';
9353             *(*d)++ = ':';
9354             (*s)++;
9355             saw_tick++;
9356         }
9357         else if (allow_package && **s == ':' && (*s)[1] == ':'
9358            /* Disallow things like Foo::$bar. For the curious, this is
9359             * the code path that triggers the "Bad name after" warning
9360             * when looking for barewords.
9361             */
9362            && !(check_dollar && (*s)[2] == '$')) {
9363             *(*d)++ = *(*s)++;
9364             *(*d)++ = *(*s)++;
9365         }
9366         else
9367             break;
9368     }
9369     if (UNLIKELY(tick_warn && saw_tick && PL_lex_state == LEX_INTERPNORMAL
9370               && !PL_lex_brackets && ckWARN(WARN_SYNTAX))) {
9371         char *d;
9372         char *d2;
9373         Newx(d, *s - olds + saw_tick + 2, char); /* +2 for $# */
9374         d2 = d;
9375         SAVEFREEPV(d);
9376         Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
9377                          "Old package separator used in string");
9378         if (olds[-1] == '#')
9379             *d2++ = olds[-2];
9380         *d2++ = olds[-1];
9381         while (olds < *s) {
9382             if (*olds == '\'') {
9383                 *d2++ = '\\';
9384                 *d2++ = *olds++;
9385             }
9386             else
9387                 *d2++ = *olds++;
9388         }
9389         Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
9390                          "\t(Did you mean \"%" UTF8f "\" instead?)\n",
9391                           UTF8fARG(is_utf8, d2-d, d));
9392     }
9393     return;
9394 }
9395
9396 /* Returns a NUL terminated string, with the length of the string written to
9397    *slp
9398    */
9399 STATIC char *
9400 S_scan_word(pTHX_ char *s, char *dest, STRLEN destlen, int allow_package, STRLEN *slp)
9401 {
9402     char *d = dest;
9403     char * const e = d + destlen - 3;  /* two-character token, ending NUL */
9404     bool is_utf8 = cBOOL(UTF);
9405
9406     PERL_ARGS_ASSERT_SCAN_WORD;
9407
9408     parse_ident(&s, &d, e, allow_package, is_utf8, TRUE, FALSE);
9409     *d = '\0';
9410     *slp = d - dest;
9411     return s;
9412 }
9413
9414 /* Is the byte 'd' a legal single character identifier name?  'u' is true
9415  * iff Unicode semantics are to be used.  The legal ones are any of:
9416  *  a) all ASCII characters except:
9417  *          1) control and space-type ones, like NUL, SOH, \t, and SPACE;
9418  *          2) '{'
9419  *     The final case currently doesn't get this far in the program, so we
9420  *     don't test for it.  If that were to change, it would be ok to allow it.
9421  *  b) When not under Unicode rules, any upper Latin1 character
9422  *  c) Otherwise, when unicode rules are used, all XIDS characters.
9423  *
9424  *      Because all ASCII characters have the same representation whether
9425  *      encoded in UTF-8 or not, we can use the foo_A macros below and '\0' and
9426  *      '{' without knowing if is UTF-8 or not. */
9427 #define VALID_LEN_ONE_IDENT(s, e, is_utf8)                                  \
9428     (isGRAPH_A(*(s)) || ((is_utf8)                                          \
9429                          ? isIDFIRST_utf8_safe(s, e)                        \
9430                          : (isGRAPH_L1(*s)                                  \
9431                             && LIKELY((U8) *(s) != LATIN1_TO_NATIVE(0xAD)))))
9432
9433 STATIC char *
9434 S_scan_ident(pTHX_ char *s, char *dest, STRLEN destlen, I32 ck_uni)
9435 {
9436     I32 herelines = PL_parser->herelines;
9437     SSize_t bracket = -1;
9438     char funny = *s++;
9439     char *d = dest;
9440     char * const e = d + destlen - 3;    /* two-character token, ending NUL */
9441     bool is_utf8 = cBOOL(UTF);
9442     I32 orig_copline = 0, tmp_copline = 0;
9443
9444     PERL_ARGS_ASSERT_SCAN_IDENT;
9445
9446     if (isSPACE(*s) || !*s)
9447         s = skipspace(s);
9448     if (isDIGIT(*s)) {
9449         while (isDIGIT(*s)) {
9450             if (d >= e)
9451                 Perl_croak(aTHX_ "%s", ident_too_long);
9452             *d++ = *s++;
9453         }
9454     }
9455     else {  /* See if it is a "normal" identifier */
9456         parse_ident(&s, &d, e, 1, is_utf8, FALSE, TRUE);
9457     }
9458     *d = '\0';
9459     d = dest;
9460     if (*d) {
9461         /* Either a digit variable, or parse_ident() found an identifier
9462            (anything valid as a bareword), so job done and return.  */
9463         if (PL_lex_state != LEX_NORMAL)
9464             PL_lex_state = LEX_INTERPENDMAYBE;
9465         return s;
9466     }
9467
9468     /* Here, it is not a run-of-the-mill identifier name */
9469
9470     if (*s == '$' && s[1]
9471         && (   isIDFIRST_lazy_if_safe(s+1, PL_bufend, is_utf8)
9472             || isDIGIT_A((U8)s[1])
9473             || s[1] == '$'
9474             || s[1] == '{'
9475             || memBEGINs(s+1, (STRLEN) (PL_bufend - (s+1)), "::")) )
9476     {
9477         /* Dereferencing a value in a scalar variable.
9478            The alternatives are different syntaxes for a scalar variable.
9479            Using ' as a leading package separator isn't allowed. :: is.   */
9480         return s;
9481     }
9482     /* Handle the opening { of @{...}, &{...}, *{...}, %{...}, ${...}  */
9483     if (*s == '{') {
9484         bracket = s - SvPVX(PL_linestr);
9485         s++;
9486         orig_copline = CopLINE(PL_curcop);
9487         if (s < PL_bufend && isSPACE(*s)) {
9488             s = skipspace(s);
9489         }
9490     }
9491     if ((s <= PL_bufend - (is_utf8)
9492                           ? UTF8SKIP(s)
9493                           : 1)
9494         && VALID_LEN_ONE_IDENT(s, PL_bufend, is_utf8))
9495     {
9496         if (is_utf8) {
9497             const STRLEN skip = UTF8SKIP(s);
9498             STRLEN i;
9499             d[skip] = '\0';
9500             for ( i = 0; i < skip; i++ )
9501                 d[i] = *s++;
9502         }
9503         else {
9504             *d = *s++;
9505             d[1] = '\0';
9506         }
9507     }
9508     /* Convert $^F, ${^F} and the ^F of ${^FOO} to control characters */
9509     if (*d == '^' && *s && isCONTROLVAR(*s)) {
9510         *d = toCTRL(*s);
9511         s++;
9512     }
9513     /* Warn about ambiguous code after unary operators if {...} notation isn't
9514        used.  There's no difference in ambiguity; it's merely a heuristic
9515        about when not to warn.  */
9516     else if (ck_uni && bracket == -1)
9517         check_uni();
9518     if (bracket != -1) {
9519         bool skip;
9520         char *s2;
9521         /* If we were processing {...} notation then...  */
9522         if (isIDFIRST_lazy_if_safe(d, e, is_utf8)
9523             || (!isPRINT(*d) /* isCNTRL(d), plus all non-ASCII */
9524                  && isWORDCHAR(*s))
9525         ) {
9526             /* note we have to check for a normal identifier first,
9527              * as it handles utf8 symbols, and only after that has
9528              * been ruled out can we look at the caret words */
9529             if (isIDFIRST_lazy_if_safe(d, e, is_utf8) ) {
9530                 /* if it starts as a valid identifier, assume that it is one.
9531                    (the later check for } being at the expected point will trap
9532                    cases where this doesn't pan out.)  */
9533                 d += is_utf8 ? UTF8SKIP(d) : 1;
9534                 parse_ident(&s, &d, e, 1, is_utf8, TRUE, TRUE);
9535                 *d = '\0';
9536             }
9537             else { /* caret word: ${^Foo} ${^CAPTURE[0]} */
9538                 d++;
9539                 while (isWORDCHAR(*s) && d < e) {
9540                     *d++ = *s++;
9541                 }
9542                 if (d >= e)
9543                     Perl_croak(aTHX_ "%s", ident_too_long);
9544                 *d = '\0';
9545             }
9546             tmp_copline = CopLINE(PL_curcop);
9547             if (s < PL_bufend && isSPACE(*s)) {
9548                 s = skipspace(s);
9549             }
9550             if ((*s == '[' || (*s == '{' && strNE(dest, "sub")))) {
9551                 /* ${foo[0]} and ${foo{bar}} and ${^CAPTURE[0]} notation.  */
9552                 if (ckWARN(WARN_AMBIGUOUS) && keyword(dest, d - dest, 0)) {
9553                     const char * const brack =
9554                         (const char *)
9555                         ((*s == '[') ? "[...]" : "{...}");
9556                     orig_copline = CopLINE(PL_curcop);
9557                     CopLINE_set(PL_curcop, tmp_copline);
9558    /* diag_listed_as: Ambiguous use of %c{%s[...]} resolved to %c%s[...] */
9559                     Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
9560                         "Ambiguous use of %c{%s%s} resolved to %c%s%s",
9561                         funny, dest, brack, funny, dest, brack);
9562                     CopLINE_set(PL_curcop, orig_copline);
9563                 }
9564                 bracket++;
9565                 PL_lex_brackstack[PL_lex_brackets++] = (char)(XOPERATOR | XFAKEBRACK);
9566                 PL_lex_allbrackets++;
9567                 return s;
9568             }
9569         }
9570
9571         if ( !tmp_copline )
9572             tmp_copline = CopLINE(PL_curcop);
9573         if ((skip = s < PL_bufend && isSPACE(*s))) {
9574             /* Avoid incrementing line numbers or resetting PL_linestart,
9575                in case we have to back up.  */
9576             STRLEN s_off = s - SvPVX(PL_linestr);
9577             s2 = peekspace(s);
9578             s = SvPVX(PL_linestr) + s_off;
9579         }
9580         else
9581             s2 = s;
9582
9583         /* Expect to find a closing } after consuming any trailing whitespace.
9584          */
9585         if (*s2 == '}') {
9586             /* Now increment line numbers if applicable.  */
9587             if (skip)
9588                 s = skipspace(s);
9589             s++;
9590             if (PL_lex_state == LEX_INTERPNORMAL && !PL_lex_brackets) {
9591                 PL_lex_state = LEX_INTERPEND;
9592                 PL_expect = XREF;
9593             }
9594             if (PL_lex_state == LEX_NORMAL) {
9595                 if (ckWARN(WARN_AMBIGUOUS)
9596                     && (keyword(dest, d - dest, 0)
9597                         || get_cvn_flags(dest, d - dest, is_utf8
9598                            ? SVf_UTF8
9599                            : 0)))
9600                 {
9601                     SV *tmp = newSVpvn_flags( dest, d - dest,
9602                                         SVs_TEMP | (is_utf8 ? SVf_UTF8 : 0) );
9603                     if (funny == '#')
9604                         funny = '@';
9605                     orig_copline = CopLINE(PL_curcop);
9606                     CopLINE_set(PL_curcop, tmp_copline);
9607                     Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
9608                         "Ambiguous use of %c{%" SVf "} resolved to %c%" SVf,
9609                         funny, SVfARG(tmp), funny, SVfARG(tmp));
9610                     CopLINE_set(PL_curcop, orig_copline);
9611                 }
9612             }
9613         }
9614         else {
9615             /* Didn't find the closing } at the point we expected, so restore
9616                state such that the next thing to process is the opening { and */
9617             s = SvPVX(PL_linestr) + bracket; /* let the parser handle it */
9618             CopLINE_set(PL_curcop, orig_copline);
9619             PL_parser->herelines = herelines;
9620             *dest = '\0';
9621             PL_parser->sub_no_recover = TRUE;
9622         }
9623     }
9624     else if (   PL_lex_state == LEX_INTERPNORMAL
9625              && !PL_lex_brackets
9626              && !intuit_more(s, PL_bufend))
9627         PL_lex_state = LEX_INTERPEND;
9628     return s;
9629 }
9630
9631 static bool
9632 S_pmflag(pTHX_ const char* const valid_flags, U32 * pmfl, char** s, char* charset, unsigned int * x_mod_count) {
9633
9634     /* Adds, subtracts to/from 'pmfl' based on the next regex modifier flag
9635      * found in the parse starting at 's', based on the subset that are valid
9636      * in this context input to this routine in 'valid_flags'. Advances s.
9637      * Returns TRUE if the input should be treated as a valid flag, so the next
9638      * char may be as well; otherwise FALSE. 'charset' should point to a NUL
9639      * upon first call on the current regex.  This routine will set it to any
9640      * charset modifier found.  The caller shouldn't change it.  This way,
9641      * another charset modifier encountered in the parse can be detected as an
9642      * error, as we have decided to allow only one */
9643
9644     const char c = **s;
9645     STRLEN charlen = UTF ? UTF8SKIP(*s) : 1;
9646
9647     if ( charlen != 1 || ! strchr(valid_flags, c) ) {
9648         if (isWORDCHAR_lazy_if_safe( *s, PL_bufend, UTF)) {
9649             yyerror_pv(Perl_form(aTHX_ "Unknown regexp modifier \"/%.*s\"", (int)charlen, *s),
9650                        UTF ? SVf_UTF8 : 0);
9651             (*s) += charlen;
9652             /* Pretend that it worked, so will continue processing before
9653              * dieing */
9654             return TRUE;
9655         }
9656         return FALSE;
9657     }
9658
9659     switch (c) {
9660
9661         CASE_STD_PMMOD_FLAGS_PARSE_SET(pmfl, *x_mod_count);
9662         case GLOBAL_PAT_MOD:      *pmfl |= PMf_GLOBAL; break;
9663         case CONTINUE_PAT_MOD:    *pmfl |= PMf_CONTINUE; break;
9664         case ONCE_PAT_MOD:        *pmfl |= PMf_KEEP; break;
9665         case KEEPCOPY_PAT_MOD:    *pmfl |= RXf_PMf_KEEPCOPY; break;
9666         case NONDESTRUCT_PAT_MOD: *pmfl |= PMf_NONDESTRUCT; break;
9667         case LOCALE_PAT_MOD:
9668             if (*charset) {
9669                 goto multiple_charsets;
9670             }
9671             set_regex_charset(pmfl, REGEX_LOCALE_CHARSET);
9672             *charset = c;
9673             break;
9674         case UNICODE_PAT_MOD:
9675             if (*charset) {
9676                 goto multiple_charsets;
9677             }
9678             set_regex_charset(pmfl, REGEX_UNICODE_CHARSET);
9679             *charset = c;
9680             break;
9681         case ASCII_RESTRICT_PAT_MOD:
9682             if (! *charset) {
9683                 set_regex_charset(pmfl, REGEX_ASCII_RESTRICTED_CHARSET);
9684             }
9685             else {
9686
9687                 /* Error if previous modifier wasn't an 'a', but if it was, see
9688                  * if, and accept, a second occurrence (only) */
9689                 if (*charset != 'a'
9690                     || get_regex_charset(*pmfl)
9691                         != REGEX_ASCII_RESTRICTED_CHARSET)
9692                 {
9693                         goto multiple_charsets;
9694                 }
9695                 set_regex_charset(pmfl, REGEX_ASCII_MORE_RESTRICTED_CHARSET);
9696             }
9697             *charset = c;
9698             break;
9699         case DEPENDS_PAT_MOD:
9700             if (*charset) {
9701                 goto multiple_charsets;
9702             }
9703             set_regex_charset(pmfl, REGEX_DEPENDS_CHARSET);
9704             *charset = c;
9705             break;
9706     }
9707
9708     (*s)++;
9709     return TRUE;
9710
9711     multiple_charsets:
9712         if (*charset != c) {
9713             yyerror(Perl_form(aTHX_ "Regexp modifiers \"/%c\" and \"/%c\" are mutually exclusive", *charset, c));
9714         }
9715         else if (c == 'a') {
9716   /* diag_listed_as: Regexp modifier "/%c" may appear a maximum of twice */
9717             yyerror("Regexp modifier \"/a\" may appear a maximum of twice");
9718         }
9719         else {
9720             yyerror(Perl_form(aTHX_ "Regexp modifier \"/%c\" may not appear twice", c));
9721         }
9722
9723         /* Pretend that it worked, so will continue processing before dieing */
9724         (*s)++;
9725         return TRUE;
9726 }
9727
9728 STATIC char *
9729 S_scan_pat(pTHX_ char *start, I32 type)
9730 {
9731     PMOP *pm;
9732     char *s;
9733     const char * const valid_flags =
9734         (const char *)((type == OP_QR) ? QR_PAT_MODS : M_PAT_MODS);
9735     char charset = '\0';    /* character set modifier */
9736     unsigned int x_mod_count = 0;
9737
9738     PERL_ARGS_ASSERT_SCAN_PAT;
9739
9740     s = scan_str(start,TRUE,FALSE, (PL_in_eval & EVAL_RE_REPARSING), NULL);
9741     if (!s)
9742         Perl_croak(aTHX_ "Search pattern not terminated");
9743
9744     pm = (PMOP*)newPMOP(type, 0);
9745     if (PL_multi_open == '?') {
9746         /* This is the only point in the code that sets PMf_ONCE:  */
9747         pm->op_pmflags |= PMf_ONCE;
9748
9749         /* Hence it's safe to do this bit of PMOP book-keeping here, which
9750            allows us to restrict the list needed by reset to just the ??
9751            matches.  */
9752         assert(type != OP_TRANS);
9753         if (PL_curstash) {
9754             MAGIC *mg = mg_find((const SV *)PL_curstash, PERL_MAGIC_symtab);
9755             U32 elements;
9756             if (!mg) {
9757                 mg = sv_magicext(MUTABLE_SV(PL_curstash), 0, PERL_MAGIC_symtab, 0, 0,
9758                                  0);
9759             }
9760             elements = mg->mg_len / sizeof(PMOP**);
9761             Renewc(mg->mg_ptr, elements + 1, PMOP*, char);
9762             ((PMOP**)mg->mg_ptr) [elements++] = pm;
9763             mg->mg_len = elements * sizeof(PMOP**);
9764             PmopSTASH_set(pm,PL_curstash);
9765         }
9766     }
9767
9768     /* if qr/...(?{..}).../, then need to parse the pattern within a new
9769      * anon CV. False positives like qr/[(?{]/ are harmless */
9770
9771     if (type == OP_QR) {
9772         STRLEN len;
9773         char *e, *p = SvPV(PL_lex_stuff, len);
9774         e = p + len;
9775         for (; p < e; p++) {
9776             if (p[0] == '(' && p[1] == '?'
9777                 && (p[2] == '{' || (p[2] == '?' && p[3] == '{')))
9778             {
9779                 pm->op_pmflags |= PMf_HAS_CV;
9780                 break;
9781             }
9782         }
9783         pm->op_pmflags |= PMf_IS_QR;
9784     }
9785
9786     while (*s && S_pmflag(aTHX_ valid_flags, &(pm->op_pmflags),
9787                                 &s, &charset, &x_mod_count))
9788     {};
9789     /* issue a warning if /c is specified,but /g is not */
9790     if ((pm->op_pmflags & PMf_CONTINUE) && !(pm->op_pmflags & PMf_GLOBAL))
9791     {
9792         Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP),
9793                        "Use of /c modifier is meaningless without /g" );
9794     }
9795
9796     PL_lex_op = (OP*)pm;
9797     pl_yylval.ival = OP_MATCH;
9798     return s;
9799 }
9800
9801 STATIC char *
9802 S_scan_subst(pTHX_ char *start)
9803 {
9804     char *s;
9805     PMOP *pm;
9806     I32 first_start;
9807     line_t first_line;
9808     line_t linediff = 0;
9809     I32 es = 0;
9810     char charset = '\0';    /* character set modifier */
9811     unsigned int x_mod_count = 0;
9812     char *t;
9813
9814     PERL_ARGS_ASSERT_SCAN_SUBST;
9815
9816     pl_yylval.ival = OP_NULL;
9817
9818     s = scan_str(start, TRUE, FALSE, FALSE, &t);
9819
9820     if (!s)
9821         Perl_croak(aTHX_ "Substitution pattern not terminated");
9822
9823     s = t;
9824
9825     first_start = PL_multi_start;
9826     first_line = CopLINE(PL_curcop);
9827     s = scan_str(s,FALSE,FALSE,FALSE,NULL);
9828     if (!s) {
9829         SvREFCNT_dec_NN(PL_lex_stuff);
9830         PL_lex_stuff = NULL;
9831         Perl_croak(aTHX_ "Substitution replacement not terminated");
9832     }
9833     PL_multi_start = first_start;       /* so whole substitution is taken together */
9834
9835     pm = (PMOP*)newPMOP(OP_SUBST, 0);
9836
9837
9838     while (*s) {
9839         if (*s == EXEC_PAT_MOD) {
9840             s++;
9841             es++;
9842         }
9843         else if (! S_pmflag(aTHX_ S_PAT_MODS, &(pm->op_pmflags),
9844                                   &s, &charset, &x_mod_count))
9845         {
9846             break;
9847         }
9848     }
9849
9850     if ((pm->op_pmflags & PMf_CONTINUE)) {
9851         Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), "Use of /c modifier is meaningless in s///" );
9852     }
9853
9854     if (es) {
9855         SV * const repl = newSVpvs("");
9856
9857         PL_multi_end = 0;
9858         pm->op_pmflags |= PMf_EVAL;
9859         for (; es > 1; es--) {
9860             sv_catpvs(repl, "eval ");
9861         }
9862         sv_catpvs(repl, "do {");
9863         sv_catsv(repl, PL_parser->lex_sub_repl);
9864         sv_catpvs(repl, "}");
9865         SvREFCNT_dec(PL_parser->lex_sub_repl);
9866         PL_parser->lex_sub_repl = repl;
9867     }
9868
9869
9870     linediff = CopLINE(PL_curcop) - first_line;
9871     if (linediff)
9872         CopLINE_set(PL_curcop, first_line);
9873
9874     if (linediff || es) {
9875         /* the IVX field indicates that the replacement string is a s///e;
9876          * the NVX field indicates how many src code lines the replacement
9877          * spreads over */
9878         sv_upgrade(PL_parser->lex_sub_repl, SVt_PVNV);
9879         ((XPVNV*)SvANY(PL_parser->lex_sub_repl))->xnv_u.xnv_lines = linediff;
9880         ((XPVIV*)SvANY(PL_parser->lex_sub_repl))->xiv_u.xivu_eval_seen =
9881                                                                     cBOOL(es);
9882     }
9883
9884     PL_lex_op = (OP*)pm;
9885     pl_yylval.ival = OP_SUBST;
9886     return s;
9887 }
9888
9889 STATIC char *
9890 S_scan_trans(pTHX_ char *start)
9891 {
9892     char* s;
9893     OP *o;
9894     U8 squash;
9895     U8 del;
9896     U8 complement;
9897     bool nondestruct = 0;
9898     char *t;
9899
9900     PERL_ARGS_ASSERT_SCAN_TRANS;
9901
9902     pl_yylval.ival = OP_NULL;
9903
9904     s = scan_str(start,FALSE,FALSE,FALSE,&t);
9905     if (!s)
9906         Perl_croak(aTHX_ "Transliteration pattern not terminated");
9907
9908     s = t;
9909
9910     s = scan_str(s,FALSE,FALSE,FALSE,NULL);
9911     if (!s) {
9912         SvREFCNT_dec_NN(PL_lex_stuff);
9913         PL_lex_stuff = NULL;
9914         Perl_croak(aTHX_ "Transliteration replacement not terminated");
9915     }
9916
9917     complement = del = squash = 0;
9918     while (1) {
9919         switch (*s) {
9920         case 'c':
9921             complement = OPpTRANS_COMPLEMENT;
9922             break;
9923         case 'd':
9924             del = OPpTRANS_DELETE;
9925             break;
9926         case 's':
9927             squash = OPpTRANS_SQUASH;
9928             break;
9929         case 'r':
9930             nondestruct = 1;
9931             break;
9932         default:
9933             goto no_more;
9934         }
9935         s++;
9936     }
9937   no_more:
9938
9939     o = newPVOP(nondestruct ? OP_TRANSR : OP_TRANS, 0, (char*)NULL);
9940     o->op_private &= ~OPpTRANS_ALL;
9941     o->op_private |= del|squash|complement|
9942       (DO_UTF8(PL_lex_stuff)? OPpTRANS_FROM_UTF : 0)|
9943       (DO_UTF8(PL_parser->lex_sub_repl) ? OPpTRANS_TO_UTF   : 0);
9944
9945     PL_lex_op = o;
9946     pl_yylval.ival = nondestruct ? OP_TRANSR : OP_TRANS;
9947
9948
9949     return s;
9950 }
9951
9952 /* scan_heredoc
9953    Takes a pointer to the first < in <<FOO.
9954    Returns a pointer to the byte following <<FOO.
9955
9956    This function scans a heredoc, which involves different methods
9957    depending on whether we are in a string eval, quoted construct, etc.
9958    This is because PL_linestr could containing a single line of input, or
9959    a whole string being evalled, or the contents of the current quote-
9960    like operator.
9961
9962    The two basic methods are:
9963     - Steal lines from the input stream
9964     - Scan the heredoc in PL_linestr and remove it therefrom
9965
9966    In a file scope or filtered eval, the first method is used; in a
9967    string eval, the second.
9968
9969    In a quote-like operator, we have to choose between the two,
9970    depending on where we can find a newline.  We peek into outer lex-
9971    ing scopes until we find one with a newline in it.  If we reach the
9972    outermost lexing scope and it is a file, we use the stream method.
9973    Otherwise it is treated as an eval.
9974 */
9975
9976 STATIC char *
9977 S_scan_heredoc(pTHX_ char *s)
9978 {
9979     I32 op_type = OP_SCALAR;
9980     I32 len;
9981     SV *tmpstr;
9982     char term;
9983     char *d;
9984     char *e;
9985     char *peek;
9986     char *indent = 0;
9987     I32 indent_len = 0;
9988     bool indented = FALSE;
9989     const bool infile = PL_rsfp || PL_parser->filtered;
9990     const line_t origline = CopLINE(PL_curcop);
9991     LEXSHARED *shared = PL_parser->lex_shared;
9992
9993     PERL_ARGS_ASSERT_SCAN_HEREDOC;
9994
9995     s += 2;
9996     d = PL_tokenbuf + 1;
9997     e = PL_tokenbuf + sizeof PL_tokenbuf - 1;
9998     *PL_tokenbuf = '\n';
9999     peek = s;
10000     if (*peek == '~') {
10001         indented = TRUE;
10002         peek++; s++;
10003     }
10004     while (SPACE_OR_TAB(*peek))
10005         peek++;
10006     if (*peek == '`' || *peek == '\'' || *peek =='"') {
10007         s = peek;
10008         term = *s++;
10009         s = delimcpy(d, e, s, PL_bufend, term, &len);
10010         if (s == PL_bufend)
10011             Perl_croak(aTHX_ "Unterminated delimiter for here document");
10012         d += len;
10013         s++;
10014     }
10015     else {
10016         if (*s == '\\')
10017             /* <<\FOO is equivalent to <<'FOO' */
10018             s++, term = '\'';
10019         else
10020             term = '"';
10021         if (! isWORDCHAR_lazy_if_safe(s, PL_bufend, UTF))
10022             Perl_croak(aTHX_ "Use of bare << to mean <<\"\" is forbidden");
10023         peek = s;
10024         while (isWORDCHAR_lazy_if_safe(peek, PL_bufend, UTF)) {
10025             peek += UTF ? UTF8SKIP(peek) : 1;
10026         }
10027         len = (peek - s >= e - d) ? (e - d) : (peek - s);
10028         Copy(s, d, len, char);
10029         s += len;
10030         d += len;
10031     }
10032     if (d >= PL_tokenbuf + sizeof PL_tokenbuf - 1)
10033         Perl_croak(aTHX_ "Delimiter for here document is too long");
10034     *d++ = '\n';
10035     *d = '\0';
10036     len = d - PL_tokenbuf;
10037
10038 #ifndef PERL_STRICT_CR
10039     d = (char *) memchr(s, '\r', PL_bufend - s);
10040     if (d) {
10041         char * const olds = s;
10042         s = d;
10043         while (s < PL_bufend) {
10044             if (*s == '\r') {
10045                 *d++ = '\n';
10046                 if (*++s == '\n')
10047                     s++;
10048             }
10049             else if (*s == '\n' && s[1] == '\r') {      /* \015\013 on a mac? */
10050                 *d++ = *s++;
10051                 s++;
10052             }
10053             else
10054                 *d++ = *s++;
10055         }
10056         *d = '\0';
10057         PL_bufend = d;
10058         SvCUR_set(PL_linestr, PL_bufend - SvPVX_const(PL_linestr));
10059         s = olds;
10060     }
10061 #endif
10062
10063     tmpstr = newSV_type(SVt_PVIV);
10064     SvGROW(tmpstr, 80);
10065     if (term == '\'') {
10066         op_type = OP_CONST;
10067         SvIV_set(tmpstr, -1);
10068     }
10069     else if (term == '`') {
10070         op_type = OP_BACKTICK;
10071         SvIV_set(tmpstr, '\\');
10072     }
10073
10074     PL_multi_start = origline + 1 + PL_parser->herelines;
10075     PL_multi_open = PL_multi_close = '<';
10076     /* inside a string eval or quote-like operator */
10077     if (!infile || PL_lex_inwhat) {
10078         SV *linestr;
10079         char *bufend;
10080         char * const olds = s;
10081         PERL_CONTEXT * const cx = CX_CUR();
10082         /* These two fields are not set until an inner lexing scope is
10083            entered.  But we need them set here. */
10084         shared->ls_bufptr  = s;
10085         shared->ls_linestr = PL_linestr;
10086         if (PL_lex_inwhat)
10087           /* Look for a newline.  If the current buffer does not have one,
10088              peek into the line buffer of the parent lexing scope, going
10089              up as many levels as necessary to find one with a newline
10090              after bufptr.
10091            */
10092           while (!(s = (char *)memchr(
10093                     (void *)shared->ls_bufptr, '\n',
10094                     SvEND(shared->ls_linestr)-shared->ls_bufptr
10095                 ))) {
10096             shared = shared->ls_prev;
10097             /* shared is only null if we have gone beyond the outermost
10098                lexing scope.  In a file, we will have broken out of the
10099                loop in the previous iteration.  In an eval, the string buf-
10100                fer ends with "\n;", so the while condition above will have
10101                evaluated to false.  So shared can never be null.  Or so you
10102                might think.  Odd syntax errors like s;@{<<; can gobble up
10103                the implicit semicolon at the end of a flie, causing the
10104                file handle to be closed even when we are not in a string
10105                eval.  So shared may be null in that case.
10106                (Closing '}' here to balance the earlier open brace for
10107                editors that look for matched pairs.) */
10108             if (UNLIKELY(!shared))
10109                 goto interminable;
10110             /* A LEXSHARED struct with a null ls_prev pointer is the outer-
10111                most lexing scope.  In a file, shared->ls_linestr at that
10112                level is just one line, so there is no body to steal. */
10113             if (infile && !shared->ls_prev) {
10114                 s = olds;
10115                 goto streaming;
10116             }
10117           }
10118         else {  /* eval or we've already hit EOF */
10119             s = (char*)memchr((void*)s, '\n', PL_bufend - s);
10120             if (!s)
10121                 goto interminable;
10122         }
10123         linestr = shared->ls_linestr;
10124         bufend = SvEND(linestr);
10125         d = s;
10126         if (indented) {
10127             char *myolds = s;
10128
10129             while (s < bufend - len + 1) {
10130                 if (*s++ == '\n')
10131                     ++PL_parser->herelines;
10132
10133                 if (memEQ(s, PL_tokenbuf + 1, len - 1)) {
10134                     char *backup = s;
10135                     indent_len = 0;
10136
10137                     /* Only valid if it's preceded by whitespace only */
10138                     while (backup != myolds && --backup >= myolds) {
10139                         if (! SPACE_OR_TAB(*backup)) {
10140                             break;
10141                         }
10142
10143                         indent_len++;
10144                     }
10145
10146                     /* No whitespace or all! */
10147                     if (backup == s || *backup == '\n') {
10148                         Newx(indent, indent_len + 1, char);
10149                         memcpy(indent, backup + 1, indent_len);
10150                         indent[indent_len] = 0;
10151                         s--; /* before our delimiter */
10152                         PL_parser->herelines--; /* this line doesn't count */
10153                         break;
10154                     }
10155                 }
10156             }
10157         } else {
10158             while (s < bufend - len + 1
10159                    && memNE(s,PL_tokenbuf,len) )
10160             {
10161                 if (*s++ == '\n')
10162                     ++PL_parser->herelines;
10163             }
10164         }
10165
10166         if (s >= bufend - len + 1) {
10167             goto interminable;
10168         }
10169         sv_setpvn(tmpstr,d+1,s-d);
10170         s += len - 1;
10171         /* the preceding stmt passes a newline */
10172         PL_parser->herelines++;
10173
10174         /* s now points to the newline after the heredoc terminator.
10175            d points to the newline before the body of the heredoc.
10176          */
10177
10178         /* We are going to modify linestr in place here, so set
10179            aside copies of the string if necessary for re-evals or
10180            (caller $n)[6]. */
10181         /* See the Paranoia note in case LEX_INTERPEND in yylex, for why we
10182            check shared->re_eval_str. */
10183         if (shared->re_eval_start || shared->re_eval_str) {
10184             /* Set aside the rest of the regexp */
10185             if (!shared->re_eval_str)
10186                 shared->re_eval_str =
10187                        newSVpvn(shared->re_eval_start,
10188                                 bufend - shared->re_eval_start);
10189             shared->re_eval_start -= s-d;
10190         }
10191         if (cxstack_ix >= 0
10192             && CxTYPE(cx) == CXt_EVAL
10193             && CxOLD_OP_TYPE(cx) == OP_ENTEREVAL
10194             && cx->blk_eval.cur_text == linestr)
10195         {
10196             cx->blk_eval.cur_text = newSVsv(linestr);
10197             cx->blk_u16 |= 0x40; /* indicate cur_text is ref counted */
10198         }
10199         /* Copy everything from s onwards back to d. */
10200         Move(s,d,bufend-s + 1,char);
10201         SvCUR_set(linestr, SvCUR(linestr) - (s-d));
10202         /* Setting PL_bufend only applies when we have not dug deeper
10203            into other scopes, because sublex_done sets PL_bufend to
10204            SvEND(PL_linestr). */
10205         if (shared == PL_parser->lex_shared) PL_bufend = SvEND(linestr);
10206         s = olds;
10207     }
10208     else
10209     {
10210       SV *linestr_save;
10211       char *oldbufptr_save;
10212       char *oldoldbufptr_save;
10213      streaming:
10214       SvPVCLEAR(tmpstr);   /* avoid "uninitialized" warning */
10215       term = PL_tokenbuf[1];
10216       len--;
10217       linestr_save = PL_linestr; /* must restore this afterwards */
10218       d = s;                     /* and this */
10219       oldbufptr_save = PL_oldbufptr;
10220       oldoldbufptr_save = PL_oldoldbufptr;
10221       PL_linestr = newSVpvs("");
10222       PL_bufend = SvPVX(PL_linestr);
10223       while (1) {
10224         PL_bufptr = PL_bufend;
10225         CopLINE_set(PL_curcop,
10226                     origline + 1 + PL_parser->herelines);
10227         if (!lex_next_chunk(LEX_NO_TERM)
10228          && (!SvCUR(tmpstr) || SvEND(tmpstr)[-1] != '\n')) {
10229             /* Simply freeing linestr_save might seem simpler here, as it
10230                does not matter what PL_linestr points to, since we are
10231                about to croak; but in a quote-like op, linestr_save
10232                will have been prospectively freed already, via
10233                SAVEFREESV(PL_linestr) in sublex_push, so it’s easier to
10234                restore PL_linestr. */
10235             SvREFCNT_dec_NN(PL_linestr);
10236             PL_linestr = linestr_save;
10237             PL_oldbufptr = oldbufptr_save;
10238             PL_oldoldbufptr = oldoldbufptr_save;
10239             goto interminable;
10240         }
10241         CopLINE_set(PL_curcop, origline);
10242         if (!SvCUR(PL_linestr) || PL_bufend[-1] != '\n') {
10243             s = lex_grow_linestr(SvLEN(PL_linestr) + 3);
10244             /* ^That should be enough to avoid this needing to grow:  */
10245             sv_catpvs(PL_linestr, "\n\0");
10246             assert(s == SvPVX(PL_linestr));
10247             PL_bufend = SvEND(PL_linestr);
10248         }
10249         s = PL_bufptr;
10250         PL_parser->herelines++;
10251         PL_last_lop = PL_last_uni = NULL;
10252 #ifndef PERL_STRICT_CR
10253         if (PL_bufend - PL_linestart >= 2) {
10254             if (   (PL_bufend[-2] == '\r' && PL_bufend[-1] == '\n')
10255                 || (PL_bufend[-2] == '\n' && PL_bufend[-1] == '\r'))
10256             {
10257                 PL_bufend[-2] = '\n';
10258                 PL_bufend--;
10259                 SvCUR_set(PL_linestr, PL_bufend - SvPVX_const(PL_linestr));
10260             }
10261             else if (PL_bufend[-1] == '\r')
10262                 PL_bufend[-1] = '\n';
10263         }
10264         else if (PL_bufend - PL_linestart == 1 && PL_bufend[-1] == '\r')
10265             PL_bufend[-1] = '\n';
10266 #endif
10267         if (indented && (PL_bufend-s) >= len) {
10268             char * found = ninstr(s, PL_bufend, (PL_tokenbuf + 1), (PL_tokenbuf +1 + len));
10269
10270             if (found) {
10271                 char *backup = found;
10272                 indent_len = 0;
10273
10274                 /* Only valid if it's preceded by whitespace only */
10275                 while (backup != s && --backup >= s) {
10276                     if (! SPACE_OR_TAB(*backup)) {
10277                         break;
10278                     }
10279                     indent_len++;
10280                 }
10281
10282                 /* All whitespace or none! */
10283                 if (backup == found || SPACE_OR_TAB(*backup)) {
10284                     Newx(indent, indent_len + 1, char);
10285                     memcpy(indent, backup, indent_len);
10286                     indent[indent_len] = 0;
10287                     SvREFCNT_dec(PL_linestr);
10288                     PL_linestr = linestr_save;
10289                     PL_linestart = SvPVX(linestr_save);
10290                     PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
10291                     PL_oldbufptr = oldbufptr_save;
10292                     PL_oldoldbufptr = oldoldbufptr_save;
10293                     s = d;
10294                     break;
10295                 }
10296             }
10297
10298             /* Didn't find it */
10299             sv_catsv(tmpstr,PL_linestr);
10300         } else {
10301             if (*s == term && PL_bufend-s >= len
10302                 && memEQ(s,PL_tokenbuf + 1,len))
10303             {
10304                 SvREFCNT_dec(PL_linestr);
10305                 PL_linestr = linestr_save;
10306                 PL_linestart = SvPVX(linestr_save);
10307                 PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
10308                 PL_oldbufptr = oldbufptr_save;
10309                 PL_oldoldbufptr = oldoldbufptr_save;
10310                 s = d;
10311                 break;
10312             } else {
10313                 sv_catsv(tmpstr,PL_linestr);
10314             }
10315         }
10316       }
10317     }
10318     PL_multi_end = origline + PL_parser->herelines;
10319     if (indented && indent) {
10320         STRLEN linecount = 1;
10321         STRLEN herelen = SvCUR(tmpstr);
10322         char *ss = SvPVX(tmpstr);
10323         char *se = ss + herelen;
10324         SV *newstr = newSV(herelen+1);
10325         SvPOK_on(newstr);
10326
10327         /* Trim leading whitespace */
10328         while (ss < se) {
10329             /* newline only? Copy and move on */
10330             if (*ss == '\n') {
10331                 sv_catpvs(newstr,"\n");
10332                 ss++;
10333                 linecount++;
10334
10335             /* Found our indentation? Strip it */
10336             } else if (se - ss >= indent_len
10337                        && memEQ(ss, indent, indent_len))
10338             {
10339                 STRLEN le = 0;
10340
10341                 ss += indent_len;
10342
10343                 while ((ss + le) < se && *(ss + le) != '\n')
10344                     le++;
10345
10346                 sv_catpvn(newstr, ss, le);
10347
10348                 ss += le;
10349
10350             /* Line doesn't begin with our indentation? Croak */
10351             } else {
10352                 Perl_croak(aTHX_
10353                     "Indentation on line %d of here-doc doesn't match delimiter",
10354                     (int)linecount
10355                 );
10356             }
10357         }
10358         /* avoid sv_setsv() as we dont wan't to COW here */
10359         sv_setpvn(tmpstr,SvPVX(newstr),SvCUR(newstr));
10360         Safefree(indent);
10361         SvREFCNT_dec_NN(newstr);
10362     }
10363     if (SvCUR(tmpstr) + 5 < SvLEN(tmpstr)) {
10364         SvPV_shrink_to_cur(tmpstr);
10365     }
10366     if (!IN_BYTES) {
10367         if (UTF && is_utf8_string((U8*)SvPVX_const(tmpstr), SvCUR(tmpstr)))
10368             SvUTF8_on(tmpstr);
10369     }
10370     PL_lex_stuff = tmpstr;
10371     pl_yylval.ival = op_type;
10372     return s;
10373
10374   interminable:
10375     SvREFCNT_dec(tmpstr);
10376     CopLINE_set(PL_curcop, origline);
10377     missingterm(PL_tokenbuf + 1, sizeof(PL_tokenbuf) - 1);
10378 }
10379
10380 /* scan_inputsymbol
10381    takes: position of first '<' in input buffer
10382    returns: position of first char following the matching '>' in
10383             input buffer
10384    side-effects: pl_yylval and lex_op are set.
10385
10386    This code handles:
10387
10388    <>           read from ARGV
10389    <<>>         read from ARGV without magic open
10390    <FH>         read from filehandle
10391    <pkg::FH>    read from package qualified filehandle
10392    <pkg'FH>     read from package qualified filehandle
10393    <$fh>        read from filehandle in $fh
10394    <*.h>        filename glob
10395
10396 */
10397
10398 STATIC char *
10399 S_scan_inputsymbol(pTHX_ char *start)
10400 {
10401     char *s = start;            /* current position in buffer */
10402     char *end;
10403     I32 len;
10404     bool nomagicopen = FALSE;
10405     char *d = PL_tokenbuf;                                      /* start of temp holding space */
10406     const char * const e = PL_tokenbuf + sizeof PL_tokenbuf;    /* end of temp holding space */
10407
10408     PERL_ARGS_ASSERT_SCAN_INPUTSYMBOL;
10409
10410     end = (char *) memchr(s, '\n', PL_bufend - s);
10411     if (!end)
10412         end = PL_bufend;
10413     if (s[1] == '<' && s[2] == '>' && s[3] == '>') {
10414         nomagicopen = TRUE;
10415         *d = '\0';
10416         len = 0;
10417         s += 3;
10418     }
10419     else
10420         s = delimcpy(d, e, s + 1, end, '>', &len);      /* extract until > */
10421
10422     /* die if we didn't have space for the contents of the <>,
10423        or if it didn't end, or if we see a newline
10424     */
10425
10426     if (len >= (I32)sizeof PL_tokenbuf)
10427         Perl_croak(aTHX_ "Excessively long <> operator");
10428     if (s >= end)
10429         Perl_croak(aTHX_ "Unterminated <> operator");
10430
10431     s++;
10432
10433     /* check for <$fh>
10434        Remember, only scalar variables are interpreted as filehandles by
10435        this code.  Anything more complex (e.g., <$fh{$num}>) will be
10436        treated as a glob() call.
10437        This code makes use of the fact that except for the $ at the front,
10438        a scalar variable and a filehandle look the same.
10439     */
10440     if (*d == '$' && d[1]) d++;
10441
10442     /* allow <Pkg'VALUE> or <Pkg::VALUE> */
10443     while (isWORDCHAR_lazy_if_safe(d, e, UTF) || *d == '\'' || *d == ':') {
10444         d += UTF ? UTF8SKIP(d) : 1;
10445     }
10446
10447     /* If we've tried to read what we allow filehandles to look like, and
10448        there's still text left, then it must be a glob() and not a getline.
10449        Use scan_str to pull out the stuff between the <> and treat it
10450        as nothing more than a string.
10451     */
10452
10453     if (d - PL_tokenbuf != len) {
10454         pl_yylval.ival = OP_GLOB;
10455         s = scan_str(start,FALSE,FALSE,FALSE,NULL);
10456         if (!s)
10457            Perl_croak(aTHX_ "Glob not terminated");
10458         return s;
10459     }
10460     else {
10461         bool readline_overriden = FALSE;
10462         GV *gv_readline;
10463         /* we're in a filehandle read situation */
10464         d = PL_tokenbuf;
10465
10466         /* turn <> into <ARGV> */
10467         if (!len)
10468             Copy("ARGV",d,5,char);
10469
10470         /* Check whether readline() is overriden */
10471         if ((gv_readline = gv_override("readline",8)))
10472             readline_overriden = TRUE;
10473
10474         /* if <$fh>, create the ops to turn the variable into a
10475            filehandle
10476         */
10477         if (*d == '$') {
10478             /* try to find it in the pad for this block, otherwise find
10479                add symbol table ops
10480             */
10481             const PADOFFSET tmp = pad_findmy_pvn(d, len, 0);
10482             if (tmp != NOT_IN_PAD) {
10483                 if (PAD_COMPNAME_FLAGS_isOUR(tmp)) {
10484                     HV * const stash = PAD_COMPNAME_OURSTASH(tmp);
10485                     HEK * const stashname = HvNAME_HEK(stash);
10486                     SV * const sym = sv_2mortal(newSVhek(stashname));
10487                     sv_catpvs(sym, "::");
10488                     sv_catpv(sym, d+1);
10489                     d = SvPVX(sym);
10490                     goto intro_sym;
10491                 }
10492                 else {
10493                     OP * const o = newOP(OP_PADSV, 0);
10494                     o->op_targ = tmp;
10495                     PL_lex_op = readline_overriden
10496                         ? newUNOP(OP_ENTERSUB, OPf_STACKED,
10497                                 op_append_elem(OP_LIST, o,
10498                                     newCVREF(0, newGVOP(OP_GV,0,gv_readline))))
10499                         : newUNOP(OP_READLINE, 0, o);
10500                 }
10501             }
10502             else {
10503                 GV *gv;
10504                 ++d;
10505               intro_sym:
10506                 gv = gv_fetchpv(d,
10507                                 GV_ADDMULTI | ( UTF ? SVf_UTF8 : 0 ),
10508                                 SVt_PV);
10509                 PL_lex_op = readline_overriden
10510                     ? newUNOP(OP_ENTERSUB, OPf_STACKED,
10511                             op_append_elem(OP_LIST,
10512                                 newUNOP(OP_RV2SV, 0, newGVOP(OP_GV, 0, gv)),
10513                                 newCVREF(0, newGVOP(OP_GV, 0, gv_readline))))
10514                     : newUNOP(OP_READLINE, 0,
10515                             newUNOP(OP_RV2SV, 0,
10516                                 newGVOP(OP_GV, 0, gv)));
10517             }
10518             /* we created the ops in PL_lex_op, so make pl_yylval.ival a null op */
10519             pl_yylval.ival = OP_NULL;
10520         }
10521
10522         /* If it's none of the above, it must be a literal filehandle
10523            (<Foo::BAR> or <FOO>) so build a simple readline OP */
10524         else {
10525             GV * const gv = gv_fetchpv(d, GV_ADD | ( UTF ? SVf_UTF8 : 0 ), SVt_PVIO);
10526             PL_lex_op = readline_overriden
10527                 ? newUNOP(OP_ENTERSUB, OPf_STACKED,
10528                         op_append_elem(OP_LIST,
10529                             newGVOP(OP_GV, 0, gv),
10530                             newCVREF(0, newGVOP(OP_GV, 0, gv_readline))))
10531                 : newUNOP(OP_READLINE, nomagicopen ? OPf_SPECIAL : 0, newGVOP(OP_GV, 0, gv));
10532             pl_yylval.ival = OP_NULL;
10533         }
10534     }
10535
10536     return s;
10537 }
10538
10539
10540 /* scan_str
10541    takes:
10542         start                   position in buffer
10543         keep_bracketed_quoted   preserve \ quoting of embedded delimiters, but
10544                                 only if they are of the open/close form
10545         keep_delims             preserve the delimiters around the string
10546         re_reparse              compiling a run-time /(?{})/:
10547                                    collapse // to /,  and skip encoding src
10548         delimp                  if non-null, this is set to the position of
10549                                 the closing delimiter, or just after it if
10550                                 the closing and opening delimiters differ
10551                                 (i.e., the opening delimiter of a substitu-
10552                                 tion replacement)
10553    returns: position to continue reading from buffer
10554    side-effects: multi_start, multi_close, lex_repl or lex_stuff, and
10555         updates the read buffer.
10556
10557    This subroutine pulls a string out of the input.  It is called for:
10558         q               single quotes           q(literal text)
10559         '               single quotes           'literal text'
10560         qq              double quotes           qq(interpolate $here please)
10561         "               double quotes           "interpolate $here please"
10562         qx              backticks               qx(/bin/ls -l)
10563         `               backticks               `/bin/ls -l`
10564         qw              quote words             @EXPORT_OK = qw( func() $spam )
10565         m//             regexp match            m/this/
10566         s///            regexp substitute       s/this/that/
10567         tr///           string transliterate    tr/this/that/
10568         y///            string transliterate    y/this/that/
10569         ($*@)           sub prototypes          sub foo ($)
10570         (stuff)         sub attr parameters     sub foo : attr(stuff)
10571         <>              readline or globs       <FOO>, <>, <$fh>, or <*.c>
10572
10573    In most of these cases (all but <>, patterns and transliterate)
10574    yylex() calls scan_str().  m// makes yylex() call scan_pat() which
10575    calls scan_str().  s/// makes yylex() call scan_subst() which calls
10576    scan_str().  tr/// and y/// make yylex() call scan_trans() which
10577    calls scan_str().
10578
10579    It skips whitespace before the string starts, and treats the first
10580    character as the delimiter.  If the delimiter is one of ([{< then
10581    the corresponding "close" character )]}> is used as the closing
10582    delimiter.  It allows quoting of delimiters, and if the string has
10583    balanced delimiters ([{<>}]) it allows nesting.
10584
10585    On success, the SV with the resulting string is put into lex_stuff or,
10586    if that is already non-NULL, into lex_repl. The second case occurs only
10587    when parsing the RHS of the special constructs s/// and tr/// (y///).
10588    For convenience, the terminating delimiter character is stuffed into
10589    SvIVX of the SV.
10590 */
10591
10592 STATIC char *
10593 S_scan_str(pTHX_ char *start, int keep_bracketed_quoted, int keep_delims, int re_reparse,
10594                  char **delimp
10595     )
10596 {
10597     SV *sv;                     /* scalar value: string */
10598     const char *tmps;           /* temp string, used for delimiter matching */
10599     char *s = start;            /* current position in the buffer */
10600     char term;                  /* terminating character */
10601     char *to;                   /* current position in the sv's data */
10602     I32 brackets = 1;           /* bracket nesting level */
10603     bool has_utf8 = FALSE;      /* is there any utf8 content? */
10604     IV termcode;                /* terminating char. code */
10605     U8 termstr[UTF8_MAXBYTES+1]; /* terminating string */
10606     STRLEN termlen;             /* length of terminating string */
10607     line_t herelines;
10608
10609     /* The delimiters that have a mirror-image closing one */
10610     const char * opening_delims = "([{<";
10611     const char * closing_delims = ")]}>";
10612
10613     /* The only non-UTF character that isn't a stand alone grapheme is
10614      * white-space, hence can't be a delimiter. */
10615     const char * non_grapheme_msg = "Use of unassigned code point or"
10616                                     " non-standalone grapheme for a delimiter"
10617                                     " is not allowed";
10618     PERL_ARGS_ASSERT_SCAN_STR;
10619
10620     /* skip space before the delimiter */
10621     if (isSPACE(*s)) {
10622         s = skipspace(s);
10623     }
10624
10625     /* mark where we are, in case we need to report errors */
10626     CLINE;
10627
10628     /* after skipping whitespace, the next character is the terminator */
10629     term = *s;
10630     if (!UTF || UTF8_IS_INVARIANT(term)) {
10631         termcode = termstr[0] = term;
10632         termlen = 1;
10633     }
10634     else {
10635         termcode = utf8_to_uvchr_buf((U8*)s, (U8*)PL_bufend, &termlen);
10636         if (UTF && UNLIKELY(! _is_grapheme((U8 *) start,
10637                                            (U8 *) s,
10638                                            (U8 *) PL_bufend,
10639                                                   termcode)))
10640         {
10641             yyerror(non_grapheme_msg);
10642         }
10643
10644         Copy(s, termstr, termlen, U8);
10645     }
10646
10647     /* mark where we are */
10648     PL_multi_start = CopLINE(PL_curcop);
10649     PL_multi_open = termcode;
10650     herelines = PL_parser->herelines;
10651
10652     /* If the delimiter has a mirror-image closing one, get it */
10653     if (term && (tmps = strchr(opening_delims, term))) {
10654         termcode = termstr[0] = term = closing_delims[tmps - opening_delims];
10655     }
10656
10657     PL_multi_close = termcode;
10658
10659     if (PL_multi_open == PL_multi_close) {
10660         keep_bracketed_quoted = FALSE;
10661     }
10662
10663     /* create a new SV to hold the contents.  79 is the SV's initial length.
10664        What a random number. */
10665     sv = newSV_type(SVt_PVIV);
10666     SvGROW(sv, 80);
10667     SvIV_set(sv, termcode);
10668     (void)SvPOK_only(sv);               /* validate pointer */
10669
10670     /* move past delimiter and try to read a complete string */
10671     if (keep_delims)
10672         sv_catpvn(sv, s, termlen);
10673     s += termlen;
10674     for (;;) {
10675         /* extend sv if need be */
10676         SvGROW(sv, SvCUR(sv) + (PL_bufend - s) + 1);
10677         /* set 'to' to the next character in the sv's string */
10678         to = SvPVX(sv)+SvCUR(sv);
10679
10680         /* if open delimiter is the close delimiter read unbridle */
10681         if (PL_multi_open == PL_multi_close) {
10682             for (; s < PL_bufend; s++,to++) {
10683                 /* embedded newlines increment the current line number */
10684                 if (*s == '\n' && !PL_rsfp && !PL_parser->filtered)
10685                     COPLINE_INC_WITH_HERELINES;
10686                 /* handle quoted delimiters */
10687                 if (*s == '\\' && s+1 < PL_bufend && term != '\\') {
10688                     if (!keep_bracketed_quoted
10689                         && (s[1] == term
10690                             || (re_reparse && s[1] == '\\'))
10691                     )
10692                         s++;
10693                     else /* any other quotes are simply copied straight through */
10694                         *to++ = *s++;
10695                 }
10696                 /* terminate when run out of buffer (the for() condition), or
10697                    have found the terminator */
10698                 else if (*s == term) {  /* First byte of terminator matches */
10699                     if (termlen == 1)   /* If is the only byte, are done */
10700                         break;
10701
10702                     /* If the remainder of the terminator matches, also are
10703                      * done, after checking that is a separate grapheme */
10704                     if (   s + termlen <= PL_bufend
10705                         && memEQ(s + 1, (char*)termstr + 1, termlen - 1))
10706                     {
10707                         if (   UTF
10708                             && UNLIKELY(! _is_grapheme((U8 *) start,
10709                                                        (U8 *) s,
10710                                                        (U8 *) PL_bufend,
10711                                                               termcode)))
10712                         {
10713                             yyerror(non_grapheme_msg);
10714                         }
10715                         break;
10716                     }
10717                 }
10718                 else if (!has_utf8 && !UTF8_IS_INVARIANT((U8)*s) && UTF) {
10719                     has_utf8 = TRUE;
10720                 }
10721
10722                 *to = *s;
10723             }
10724         }
10725
10726         /* if the terminator isn't the same as the start character (e.g.,
10727            matched brackets), we have to allow more in the quoting, and
10728            be prepared for nested brackets.
10729         */
10730         else {
10731             /* read until we run out of string, or we find the terminator */
10732             for (; s < PL_bufend; s++,to++) {
10733                 /* embedded newlines increment the line count */
10734                 if (*s == '\n' && !PL_rsfp && !PL_parser->filtered)
10735                     COPLINE_INC_WITH_HERELINES;
10736                 /* backslashes can escape the open or closing characters */
10737                 if (*s == '\\' && s+1 < PL_bufend) {
10738                     if (!keep_bracketed_quoted
10739                        && ( ((UV)s[1] == PL_multi_open)
10740                          || ((UV)s[1] == PL_multi_close) ))
10741                     {
10742                         s++;
10743                     }
10744                     else
10745                         *to++ = *s++;
10746                 }
10747                 /* allow nested opens and closes */
10748                 else if ((UV)*s == PL_multi_close && --brackets <= 0)
10749                     break;
10750                 else if ((UV)*s == PL_multi_open)
10751                     brackets++;
10752                 else if (!has_utf8 && !UTF8_IS_INVARIANT((U8)*s) && UTF)
10753                     has_utf8 = TRUE;
10754                 *to = *s;
10755             }
10756         }
10757         /* terminate the copied string and update the sv's end-of-string */
10758         *to = '\0';
10759         SvCUR_set(sv, to - SvPVX_const(sv));
10760
10761         /*
10762          * this next chunk reads more into the buffer if we're not done yet
10763          */
10764
10765         if (s < PL_bufend)
10766             break;              /* handle case where we are done yet :-) */
10767
10768 #ifndef PERL_STRICT_CR
10769         if (to - SvPVX_const(sv) >= 2) {
10770             if (   (to[-2] == '\r' && to[-1] == '\n')
10771                 || (to[-2] == '\n' && to[-1] == '\r'))
10772             {
10773                 to[-2] = '\n';
10774                 to--;
10775                 SvCUR_set(sv, to - SvPVX_const(sv));
10776             }
10777             else if (to[-1] == '\r')
10778                 to[-1] = '\n';
10779         }
10780         else if (to - SvPVX_const(sv) == 1 && to[-1] == '\r')
10781             to[-1] = '\n';
10782 #endif
10783
10784         /* if we're out of file, or a read fails, bail and reset the current
10785            line marker so we can report where the unterminated string began
10786         */
10787         COPLINE_INC_WITH_HERELINES;
10788         PL_bufptr = PL_bufend;
10789         if (!lex_next_chunk(0)) {
10790             sv_free(sv);
10791             CopLINE_set(PL_curcop, (line_t)PL_multi_start);
10792             return NULL;
10793         }
10794         s = start = PL_bufptr;
10795     }
10796
10797     /* at this point, we have successfully read the delimited string */
10798
10799     if (keep_delims)
10800             sv_catpvn(sv, s, termlen);
10801     s += termlen;
10802
10803     if (has_utf8)
10804         SvUTF8_on(sv);
10805
10806     PL_multi_end = CopLINE(PL_curcop);
10807     CopLINE_set(PL_curcop, PL_multi_start);
10808     PL_parser->herelines = herelines;
10809
10810     /* if we allocated too much space, give some back */
10811     if (SvCUR(sv) + 5 < SvLEN(sv)) {
10812         SvLEN_set(sv, SvCUR(sv) + 1);
10813         SvPV_renew(sv, SvLEN(sv));
10814     }
10815
10816     /* decide whether this is the first or second quoted string we've read
10817        for this op
10818     */
10819
10820     if (PL_lex_stuff)
10821         PL_parser->lex_sub_repl = sv;
10822     else
10823         PL_lex_stuff = sv;
10824     if (delimp) *delimp = PL_multi_open == PL_multi_close ? s-termlen : s;
10825     return s;
10826 }
10827
10828 /*
10829   scan_num
10830   takes: pointer to position in buffer
10831   returns: pointer to new position in buffer
10832   side-effects: builds ops for the constant in pl_yylval.op
10833
10834   Read a number in any of the formats that Perl accepts:
10835
10836   \d(_?\d)*(\.(\d(_?\d)*)?)?[Ee][\+\-]?(\d(_?\d)*)      12 12.34 12.
10837   \.\d(_?\d)*[Ee][\+\-]?(\d(_?\d)*)                     .34
10838   0b[01](_?[01])*                                       binary integers
10839   0[0-7](_?[0-7])*                                      octal integers
10840   0x[0-9A-Fa-f](_?[0-9A-Fa-f])*                         hexadecimal integers
10841   0x[0-9A-Fa-f](_?[0-9A-Fa-f])*(?:\.\d*)?p[+-]?[0-9]+   hexadecimal floats
10842
10843   Like most scan_ routines, it uses the PL_tokenbuf buffer to hold the
10844   thing it reads.
10845
10846   If it reads a number without a decimal point or an exponent, it will
10847   try converting the number to an integer and see if it can do so
10848   without loss of precision.
10849 */
10850
10851 char *
10852 Perl_scan_num(pTHX_ const char *start, YYSTYPE* lvalp)
10853 {
10854     const char *s = start;      /* current position in buffer */
10855     char *d;                    /* destination in temp buffer */
10856     char *e;                    /* end of temp buffer */
10857     NV nv;                              /* number read, as a double */
10858     SV *sv = NULL;                      /* place to put the converted number */
10859     bool floatit;                       /* boolean: int or float? */
10860     const char *lastub = NULL;          /* position of last underbar */
10861     static const char* const number_too_long = "Number too long";
10862     bool warned_about_underscore = 0;
10863 #define WARN_ABOUT_UNDERSCORE() \
10864         do { \
10865             if (!warned_about_underscore) { \
10866                 warned_about_underscore = 1; \
10867                 Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX), \
10868                                "Misplaced _ in number"); \
10869             } \
10870         } while(0)
10871     /* Hexadecimal floating point.
10872      *
10873      * In many places (where we have quads and NV is IEEE 754 double)
10874      * we can fit the mantissa bits of a NV into an unsigned quad.
10875      * (Note that UVs might not be quads even when we have quads.)
10876      * This will not work everywhere, though (either no quads, or
10877      * using long doubles), in which case we have to resort to NV,
10878      * which will probably mean horrible loss of precision due to
10879      * multiple fp operations. */
10880     bool hexfp = FALSE;
10881     int total_bits = 0;
10882     int significant_bits = 0;
10883 #if NVSIZE == 8 && defined(HAS_QUAD) && defined(Uquad_t)
10884 #  define HEXFP_UQUAD
10885     Uquad_t hexfp_uquad = 0;
10886     int hexfp_frac_bits = 0;
10887 #else
10888 #  define HEXFP_NV
10889     NV hexfp_nv = 0.0;
10890 #endif
10891     NV hexfp_mult = 1.0;
10892     UV high_non_zero = 0; /* highest digit */
10893     int non_zero_integer_digits = 0;
10894
10895     PERL_ARGS_ASSERT_SCAN_NUM;
10896
10897     /* We use the first character to decide what type of number this is */
10898
10899     switch (*s) {
10900     default:
10901         Perl_croak(aTHX_ "panic: scan_num, *s=%d", *s);
10902
10903     /* if it starts with a 0, it could be an octal number, a decimal in
10904        0.13 disguise, or a hexadecimal number, or a binary number. */
10905     case '0':
10906         {
10907           /* variables:
10908              u          holds the "number so far"
10909              shift      the power of 2 of the base
10910                         (hex == 4, octal == 3, binary == 1)
10911              overflowed was the number more than we can hold?
10912
10913              Shift is used when we add a digit.  It also serves as an "are
10914              we in octal/hex/binary?" indicator to disallow hex characters
10915              when in octal mode.
10916            */
10917             NV n = 0.0;
10918             UV u = 0;
10919             I32 shift;
10920             bool overflowed = FALSE;
10921             bool just_zero  = TRUE;     /* just plain 0 or binary number? */
10922             static const NV nvshift[5] = { 1.0, 2.0, 4.0, 8.0, 16.0 };
10923             static const char* const bases[5] =
10924               { "", "binary", "", "octal", "hexadecimal" };
10925             static const char* const Bases[5] =
10926               { "", "Binary", "", "Octal", "Hexadecimal" };
10927             static const char* const maxima[5] =
10928               { "",
10929                 "0b11111111111111111111111111111111",
10930                 "",
10931                 "037777777777",
10932                 "0xffffffff" };
10933             const char *base, *Base, *max;
10934
10935             /* check for hex */
10936             if (isALPHA_FOLD_EQ(s[1], 'x')) {
10937                 shift = 4;
10938                 s += 2;
10939                 just_zero = FALSE;
10940             } else if (isALPHA_FOLD_EQ(s[1], 'b')) {
10941                 shift = 1;
10942                 s += 2;
10943                 just_zero = FALSE;
10944             }
10945             /* check for a decimal in disguise */
10946             else if (s[1] == '.' || isALPHA_FOLD_EQ(s[1], 'e'))
10947                 goto decimal;
10948             /* so it must be octal */
10949             else {
10950                 shift = 3;
10951                 s++;
10952             }
10953
10954             if (*s == '_') {
10955                 WARN_ABOUT_UNDERSCORE();
10956                lastub = s++;
10957             }
10958
10959             base = bases[shift];
10960             Base = Bases[shift];
10961             max  = maxima[shift];
10962
10963             /* read the rest of the number */
10964             for (;;) {
10965                 /* x is used in the overflow test,
10966                    b is the digit we're adding on. */
10967                 UV x, b;
10968
10969                 switch (*s) {
10970
10971                 /* if we don't mention it, we're done */
10972                 default:
10973                     goto out;
10974
10975                 /* _ are ignored -- but warned about if consecutive */
10976                 case '_':
10977                     if (lastub && s == lastub + 1)
10978                         WARN_ABOUT_UNDERSCORE();
10979                     lastub = s++;
10980                     break;
10981
10982                 /* 8 and 9 are not octal */
10983                 case '8': case '9':
10984                     if (shift == 3)
10985                         yyerror(Perl_form(aTHX_ "Illegal octal digit '%c'", *s));
10986                     /* FALLTHROUGH */
10987
10988                 /* octal digits */
10989                 case '2': case '3': case '4':
10990                 case '5': case '6': case '7':
10991                     if (shift == 1)
10992                         yyerror(Perl_form(aTHX_ "Illegal binary digit '%c'", *s));
10993                     /* FALLTHROUGH */
10994
10995                 case '0': case '1':
10996                     b = *s++ & 15;              /* ASCII digit -> value of digit */
10997                     goto digit;
10998
10999                 /* hex digits */
11000                 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
11001                 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
11002                     /* make sure they said 0x */
11003                     if (shift != 4)
11004                         goto out;
11005                     b = (*s++ & 7) + 9;
11006
11007                     /* Prepare to put the digit we have onto the end
11008                        of the number so far.  We check for overflows.
11009                     */
11010
11011                   digit:
11012                     just_zero = FALSE;
11013                     if (!overflowed) {
11014                         assert(shift >= 0);
11015                         x = u << shift; /* make room for the digit */
11016
11017                         total_bits += shift;
11018
11019                         if ((x >> shift) != u
11020                             && !(PL_hints & HINT_NEW_BINARY)) {
11021                             overflowed = TRUE;
11022                             n = (NV) u;
11023                             Perl_ck_warner_d(aTHX_ packWARN(WARN_OVERFLOW),
11024                                              "Integer overflow in %s number",
11025                                              base);
11026                         } else
11027                             u = x | b;          /* add the digit to the end */
11028                     }
11029                     if (overflowed) {
11030                         n *= nvshift[shift];
11031                         /* If an NV has not enough bits in its
11032                          * mantissa to represent an UV this summing of
11033                          * small low-order numbers is a waste of time
11034                          * (because the NV cannot preserve the
11035                          * low-order bits anyway): we could just
11036                          * remember when did we overflow and in the
11037                          * end just multiply n by the right
11038                          * amount. */
11039                         n += (NV) b;
11040                     }
11041
11042                     if (high_non_zero == 0 && b > 0)
11043                         high_non_zero = b;
11044
11045                     if (high_non_zero)
11046                         non_zero_integer_digits++;
11047
11048                     /* this could be hexfp, but peek ahead
11049                      * to avoid matching ".." */
11050                     if (UNLIKELY(HEXFP_PEEK(s))) {
11051                         goto out;
11052                     }
11053
11054                     break;
11055                 }
11056             }
11057
11058           /* if we get here, we had success: make a scalar value from
11059              the number.
11060           */
11061           out:
11062
11063             /* final misplaced underbar check */
11064             if (s[-1] == '_')
11065                 WARN_ABOUT_UNDERSCORE();
11066
11067             if (UNLIKELY(HEXFP_PEEK(s))) {
11068                 /* Do sloppy (on the underbars) but quick detection
11069                  * (and value construction) for hexfp, the decimal
11070                  * detection will shortly be more thorough with the
11071                  * underbar checks. */
11072                 const char* h = s;
11073                 significant_bits = non_zero_integer_digits * shift;
11074 #ifdef HEXFP_UQUAD
11075                 hexfp_uquad = u;
11076 #else /* HEXFP_NV */
11077                 hexfp_nv = u;
11078 #endif
11079                 /* Ignore the leading zero bits of
11080                  * the high (first) non-zero digit. */
11081                 if (high_non_zero) {
11082                     if (high_non_zero < 0x8)
11083                         significant_bits--;
11084                     if (high_non_zero < 0x4)
11085                         significant_bits--;
11086                     if (high_non_zero < 0x2)
11087                         significant_bits--;
11088                 }
11089
11090                 if (*h == '.') {
11091 #ifdef HEXFP_NV
11092                     NV nv_mult = 1.0;
11093 #endif
11094                     bool accumulate = TRUE;
11095                     U8 b;
11096                     int lim = 1 << shift;
11097                     for (h++; ((isXDIGIT(*h) && (b = XDIGIT_VALUE(*h)) < lim) ||
11098                                *h == '_'); h++) {
11099                         if (isXDIGIT(*h)) {
11100                             significant_bits += shift;
11101 #ifdef HEXFP_UQUAD
11102                             if (accumulate) {
11103                                 if (significant_bits < NV_MANT_DIG) {
11104                                     /* We are in the long "run" of xdigits,
11105                                      * accumulate the full four bits. */
11106                                     assert(shift >= 0);
11107                                     hexfp_uquad <<= shift;
11108                                     hexfp_uquad |= b;
11109                                     hexfp_frac_bits += shift;
11110                                 } else if (significant_bits - shift < NV_MANT_DIG) {
11111                                     /* We are at a hexdigit either at,
11112                                      * or straddling, the edge of mantissa.
11113                                      * We will try grabbing as many as
11114                                      * possible bits. */
11115                                     int tail =
11116                                       significant_bits - NV_MANT_DIG;
11117                                     if (tail <= 0)
11118                                        tail += shift;
11119                                     assert(tail >= 0);
11120                                     hexfp_uquad <<= tail;
11121                                     assert((shift - tail) >= 0);
11122                                     hexfp_uquad |= b >> (shift - tail);
11123                                     hexfp_frac_bits += tail;
11124
11125                                     /* Ignore the trailing zero bits
11126                                      * of the last non-zero xdigit.
11127                                      *
11128                                      * The assumption here is that if
11129                                      * one has input of e.g. the xdigit
11130                                      * eight (0x8), there is only one
11131                                      * bit being input, not the full
11132                                      * four bits.  Conversely, if one
11133                                      * specifies a zero xdigit, the
11134                                      * assumption is that one really
11135                                      * wants all those bits to be zero. */
11136                                     if (b) {
11137                                         if ((b & 0x1) == 0x0) {
11138                                             significant_bits--;
11139                                             if ((b & 0x2) == 0x0) {
11140                                                 significant_bits--;
11141                                                 if ((b & 0x4) == 0x0) {
11142                                                     significant_bits--;
11143                                                 }
11144                                             }
11145                                         }
11146                                     }
11147
11148                                     accumulate = FALSE;
11149                                 }
11150                             } else {
11151                                 /* Keep skipping the xdigits, and
11152                                  * accumulating the significant bits,
11153                                  * but do not shift the uquad
11154                                  * (which would catastrophically drop
11155                                  * high-order bits) or accumulate the
11156                                  * xdigits anymore. */
11157                             }
11158 #else /* HEXFP_NV */
11159                             if (accumulate) {
11160                                 nv_mult /= nvshift[shift];
11161                                 if (nv_mult > 0.0)
11162                                     hexfp_nv += b * nv_mult;
11163                                 else
11164                                     accumulate = FALSE;
11165                             }
11166 #endif
11167                         }
11168                         if (significant_bits >= NV_MANT_DIG)
11169                             accumulate = FALSE;
11170                     }
11171                 }
11172
11173                 if ((total_bits > 0 || significant_bits > 0) &&
11174                     isALPHA_FOLD_EQ(*h, 'p')) {
11175                     bool negexp = FALSE;
11176                     h++;
11177                     if (*h == '+')
11178                         h++;
11179                     else if (*h == '-') {
11180                         negexp = TRUE;
11181                         h++;
11182                     }
11183                     if (isDIGIT(*h)) {
11184                         I32 hexfp_exp = 0;
11185                         while (isDIGIT(*h) || *h == '_') {
11186                             if (isDIGIT(*h)) {
11187                                 hexfp_exp *= 10;
11188                                 hexfp_exp += *h - '0';
11189 #ifdef NV_MIN_EXP
11190                                 if (negexp
11191                                     && -hexfp_exp < NV_MIN_EXP - 1) {
11192                                     /* NOTE: this means that the exponent
11193                                      * underflow warning happens for
11194                                      * the IEEE 754 subnormals (denormals),
11195                                      * because DBL_MIN_EXP etc are the lowest
11196                                      * possible binary (or, rather, DBL_RADIX-base)
11197                                      * exponent for normals, not subnormals.
11198                                      *
11199                                      * This may or may not be a good thing. */
11200                                     Perl_ck_warner(aTHX_ packWARN(WARN_OVERFLOW),
11201                                                    "Hexadecimal float: exponent underflow");
11202                                     break;
11203                                 }
11204 #endif
11205 #ifdef NV_MAX_EXP
11206                                 if (!negexp
11207                                     && hexfp_exp > NV_MAX_EXP - 1) {
11208                                     Perl_ck_warner(aTHX_ packWARN(WARN_OVERFLOW),
11209                                                    "Hexadecimal float: exponent overflow");
11210                                     break;
11211                                 }
11212 #endif
11213                             }
11214                             h++;
11215                         }
11216                         if (negexp)
11217                             hexfp_exp = -hexfp_exp;
11218 #ifdef HEXFP_UQUAD
11219                         hexfp_exp -= hexfp_frac_bits;
11220 #endif
11221                         hexfp_mult = Perl_pow(2.0, hexfp_exp);
11222                         hexfp = TRUE;
11223                         goto decimal;
11224                     }
11225                 }
11226             }
11227
11228             if (overflowed) {
11229                 if (n > 4294967295.0)
11230                     Perl_ck_warner(aTHX_ packWARN(WARN_PORTABLE),
11231                                    "%s number > %s non-portable",
11232                                    Base, max);
11233                 sv = newSVnv(n);
11234             }
11235             else {
11236 #if UVSIZE > 4
11237                 if (u > 0xffffffff)
11238                     Perl_ck_warner(aTHX_ packWARN(WARN_PORTABLE),
11239                                    "%s number > %s non-portable",
11240                                    Base, max);
11241 #endif
11242                 sv = newSVuv(u);
11243             }
11244             if (just_zero && (PL_hints & HINT_NEW_INTEGER))
11245                 sv = new_constant(start, s - start, "integer",
11246                                   sv, NULL, NULL, 0);
11247             else if (PL_hints & HINT_NEW_BINARY)
11248                 sv = new_constant(start, s - start, "binary", sv, NULL, NULL, 0);
11249         }
11250         break;
11251
11252     /*
11253       handle decimal numbers.
11254       we're also sent here when we read a 0 as the first digit
11255     */
11256     case '1': case '2': case '3': case '4': case '5':
11257     case '6': case '7': case '8': case '9': case '.':
11258       decimal:
11259         d = PL_tokenbuf;
11260         e = PL_tokenbuf + sizeof PL_tokenbuf - 6; /* room for various punctuation */
11261         floatit = FALSE;
11262         if (hexfp) {
11263             floatit = TRUE;
11264             *d++ = '0';
11265             *d++ = 'x';
11266             s = start + 2;
11267         }
11268
11269         /* read next group of digits and _ and copy into d */
11270         while (isDIGIT(*s)
11271                || *s == '_'
11272                || UNLIKELY(hexfp && isXDIGIT(*s)))
11273         {
11274             /* skip underscores, checking for misplaced ones
11275                if -w is on
11276             */
11277             if (*s == '_') {
11278                 if (lastub && s == lastub + 1)
11279                     WARN_ABOUT_UNDERSCORE();
11280                 lastub = s++;
11281             }
11282             else {
11283                 /* check for end of fixed-length buffer */
11284                 if (d >= e)
11285                     Perl_croak(aTHX_ "%s", number_too_long);
11286                 /* if we're ok, copy the character */
11287                 *d++ = *s++;
11288             }
11289         }
11290
11291         /* final misplaced underbar check */
11292         if (lastub && s == lastub + 1)
11293             WARN_ABOUT_UNDERSCORE();
11294
11295         /* read a decimal portion if there is one.  avoid
11296            3..5 being interpreted as the number 3. followed
11297            by .5
11298         */
11299         if (*s == '.' && s[1] != '.') {
11300             floatit = TRUE;
11301             *d++ = *s++;
11302
11303             if (*s == '_') {
11304                 WARN_ABOUT_UNDERSCORE();
11305                 lastub = s;
11306             }
11307
11308             /* copy, ignoring underbars, until we run out of digits.
11309             */
11310             for (; isDIGIT(*s)
11311                    || *s == '_'
11312                    || UNLIKELY(hexfp && isXDIGIT(*s));
11313                  s++)
11314             {
11315                 /* fixed length buffer check */
11316                 if (d >= e)
11317                     Perl_croak(aTHX_ "%s", number_too_long);
11318                 if (*s == '_') {
11319                    if (lastub && s == lastub + 1)
11320                         WARN_ABOUT_UNDERSCORE();
11321                    lastub = s;
11322                 }
11323                 else
11324                     *d++ = *s;
11325             }
11326             /* fractional part ending in underbar? */
11327             if (s[-1] == '_')
11328                 WARN_ABOUT_UNDERSCORE();
11329             if (*s == '.' && isDIGIT(s[1])) {
11330                 /* oops, it's really a v-string, but without the "v" */
11331                 s = start;
11332                 goto vstring;
11333             }
11334         }
11335
11336         /* read exponent part, if present */
11337         if ((isALPHA_FOLD_EQ(*s, 'e')
11338               || UNLIKELY(hexfp && isALPHA_FOLD_EQ(*s, 'p')))
11339             && strchr("+-0123456789_", s[1]))
11340         {
11341             int exp_digits = 0;
11342             const char *save_s = s;
11343             char * save_d = d;
11344
11345             /* regardless of whether user said 3E5 or 3e5, use lower 'e',
11346                ditto for p (hexfloats) */
11347             if ((isALPHA_FOLD_EQ(*s, 'e'))) {
11348                 /* At least some Mach atof()s don't grok 'E' */
11349                 *d++ = 'e';
11350             }
11351             else if (UNLIKELY(hexfp && (isALPHA_FOLD_EQ(*s, 'p')))) {
11352                 *d++ = 'p';
11353             }
11354
11355             s++;
11356
11357
11358             /* stray preinitial _ */
11359             if (*s == '_') {
11360                 WARN_ABOUT_UNDERSCORE();
11361                 lastub = s++;
11362             }
11363
11364             /* allow positive or negative exponent */
11365             if (*s == '+' || *s == '-')
11366                 *d++ = *s++;
11367
11368             /* stray initial _ */
11369             if (*s == '_') {
11370                 WARN_ABOUT_UNDERSCORE();
11371                 lastub = s++;
11372             }
11373
11374             /* read digits of exponent */
11375             while (isDIGIT(*s) || *s == '_') {
11376                 if (isDIGIT(*s)) {
11377                     ++exp_digits;
11378                     if (d >= e)
11379                         Perl_croak(aTHX_ "%s", number_too_long);
11380                     *d++ = *s++;
11381                 }
11382                 else {
11383                    if (((lastub && s == lastub + 1)
11384                         || (!isDIGIT(s[1]) && s[1] != '_')))
11385                         WARN_ABOUT_UNDERSCORE();
11386                    lastub = s++;
11387                 }
11388             }
11389
11390             if (!exp_digits) {
11391                 /* no exponent digits, the [eEpP] could be for something else,
11392                  * though in practice we don't get here for p since that's preparsed
11393                  * earlier, and results in only the 0xX being consumed, so behave similarly
11394                  * for decimal floats and consume only the D.DD, leaving the [eE] to the
11395                  * next token.
11396                  */
11397                 s = save_s;
11398                 d = save_d;
11399             }
11400             else {
11401                 floatit = TRUE;
11402             }
11403         }
11404
11405
11406         /*
11407            We try to do an integer conversion first if no characters
11408            indicating "float" have been found.
11409          */
11410
11411         if (!floatit) {
11412             UV uv;
11413             const int flags = grok_number (PL_tokenbuf, d - PL_tokenbuf, &uv);
11414
11415             if (flags == IS_NUMBER_IN_UV) {
11416               if (uv <= IV_MAX)
11417                 sv = newSViv(uv); /* Prefer IVs over UVs. */
11418               else
11419                 sv = newSVuv(uv);
11420             } else if (flags == (IS_NUMBER_IN_UV | IS_NUMBER_NEG)) {
11421               if (uv <= (UV) IV_MIN)
11422                 sv = newSViv(-(IV)uv);
11423               else
11424                 floatit = TRUE;
11425             } else
11426               floatit = TRUE;
11427         }
11428         if (floatit) {
11429             /* terminate the string */
11430             *d = '\0';
11431             if (UNLIKELY(hexfp)) {
11432 #  ifdef NV_MANT_DIG
11433                 if (significant_bits > NV_MANT_DIG)
11434                     Perl_ck_warner(aTHX_ packWARN(WARN_OVERFLOW),
11435                                    "Hexadecimal float: mantissa overflow");
11436 #  endif
11437 #ifdef HEXFP_UQUAD
11438                 nv = hexfp_uquad * hexfp_mult;
11439 #else /* HEXFP_NV */
11440                 nv = hexfp_nv * hexfp_mult;
11441 #endif
11442             } else {
11443                 nv = Atof(PL_tokenbuf);
11444             }
11445             sv = newSVnv(nv);
11446         }
11447
11448         if ( floatit
11449              ? (PL_hints & HINT_NEW_FLOAT) : (PL_hints & HINT_NEW_INTEGER) ) {
11450             const char *const key = floatit ? "float" : "integer";
11451             const STRLEN keylen = floatit ? 5 : 7;
11452             sv = S_new_constant(aTHX_ PL_tokenbuf, d - PL_tokenbuf,
11453                                 key, keylen, sv, NULL, NULL, 0);
11454         }
11455         break;
11456
11457     /* if it starts with a v, it could be a v-string */
11458     case 'v':
11459     vstring:
11460                 sv = newSV(5); /* preallocate storage space */
11461                 ENTER_with_name("scan_vstring");
11462                 SAVEFREESV(sv);
11463                 s = scan_vstring(s, PL_bufend, sv);
11464                 SvREFCNT_inc_simple_void_NN(sv);
11465                 LEAVE_with_name("scan_vstring");
11466         break;
11467     }
11468
11469     /* make the op for the constant and return */
11470
11471     if (sv)
11472         lvalp->opval = newSVOP(OP_CONST, 0, sv);
11473     else
11474         lvalp->opval = NULL;
11475
11476     return (char *)s;
11477 }
11478
11479 STATIC char *
11480 S_scan_formline(pTHX_ char *s)
11481 {
11482     SV * const stuff = newSVpvs("");
11483     bool needargs = FALSE;
11484     bool eofmt = FALSE;
11485
11486     PERL_ARGS_ASSERT_SCAN_FORMLINE;
11487
11488     while (!needargs) {
11489         char *eol;
11490         if (*s == '.') {
11491             char *t = s+1;
11492 #ifdef PERL_STRICT_CR
11493             while (SPACE_OR_TAB(*t))
11494                 t++;
11495 #else
11496             while (SPACE_OR_TAB(*t) || *t == '\r')
11497                 t++;
11498 #endif
11499             if (*t == '\n' || t == PL_bufend) {
11500                 eofmt = TRUE;
11501                 break;
11502             }
11503         }
11504         eol = (char *) memchr(s,'\n',PL_bufend-s);
11505         if (!eol++)
11506                 eol = PL_bufend;
11507         if (*s != '#') {
11508             char *t;
11509             for (t = s; t < eol; t++) {
11510                 if (*t == '~' && t[1] == '~' && SvCUR(stuff)) {
11511                     needargs = FALSE;
11512                     goto enough;        /* ~~ must be first line in formline */
11513                 }
11514                 if (*t == '@' || *t == '^')
11515                     needargs = TRUE;
11516             }
11517             if (eol > s) {
11518                 sv_catpvn(stuff, s, eol-s);
11519 #ifndef PERL_STRICT_CR
11520                 if (eol-s > 1 && eol[-2] == '\r' && eol[-1] == '\n') {
11521                     char *end = SvPVX(stuff) + SvCUR(stuff);
11522                     end[-2] = '\n';
11523                     end[-1] = '\0';
11524                     SvCUR_set(stuff, SvCUR(stuff) - 1);
11525                 }
11526 #endif
11527             }
11528             else
11529               break;
11530         }
11531         s = (char*)eol;
11532         if ((PL_rsfp || PL_parser->filtered)
11533          && PL_parser->form_lex_state == LEX_NORMAL) {
11534             bool got_some;
11535             PL_bufptr = PL_bufend;
11536             COPLINE_INC_WITH_HERELINES;
11537             got_some = lex_next_chunk(0);
11538             CopLINE_dec(PL_curcop);
11539             s = PL_bufptr;
11540             if (!got_some)
11541                 break;
11542         }
11543         incline(s, PL_bufend);
11544     }
11545   enough:
11546     if (!SvCUR(stuff) || needargs)
11547         PL_lex_state = PL_parser->form_lex_state;
11548     if (SvCUR(stuff)) {
11549         PL_expect = XSTATE;
11550         if (needargs) {
11551             const char *s2 = s;
11552             while (isSPACE(*s2) && *s2 != '\n')
11553                 s2++;
11554             if (*s2 == '{') {
11555                 PL_expect = XTERMBLOCK;
11556                 NEXTVAL_NEXTTOKE.ival = 0;
11557                 force_next(DO);
11558             }
11559             NEXTVAL_NEXTTOKE.ival = 0;
11560             force_next(FORMLBRACK);
11561         }
11562         if (!IN_BYTES) {
11563             if (UTF && is_utf8_string((U8*)SvPVX_const(stuff), SvCUR(stuff)))
11564                 SvUTF8_on(stuff);
11565         }
11566         NEXTVAL_NEXTTOKE.opval = newSVOP(OP_CONST, 0, stuff);
11567         force_next(THING);
11568     }
11569     else {
11570         SvREFCNT_dec(stuff);
11571         if (eofmt)
11572             PL_lex_formbrack = 0;
11573     }
11574     return s;
11575 }
11576
11577 I32
11578 Perl_start_subparse(pTHX_ I32 is_format, U32 flags)
11579 {
11580     const I32 oldsavestack_ix = PL_savestack_ix;
11581     CV* const outsidecv = PL_compcv;
11582
11583     SAVEI32(PL_subline);
11584     save_item(PL_subname);
11585     SAVESPTR(PL_compcv);
11586
11587     PL_compcv = MUTABLE_CV(newSV_type(is_format ? SVt_PVFM : SVt_PVCV));
11588     CvFLAGS(PL_compcv) |= flags;
11589
11590     PL_subline = CopLINE(PL_curcop);
11591     CvPADLIST(PL_compcv) = pad_new(padnew_SAVE|padnew_SAVESUB);
11592     CvOUTSIDE(PL_compcv) = MUTABLE_CV(SvREFCNT_inc_simple(outsidecv));
11593     CvOUTSIDE_SEQ(PL_compcv) = PL_cop_seqmax;
11594     if (outsidecv && CvPADLIST(outsidecv))
11595         CvPADLIST(PL_compcv)->xpadl_outid = CvPADLIST(outsidecv)->xpadl_id;
11596
11597     return oldsavestack_ix;
11598 }
11599
11600
11601 /* Do extra initialisation of a CV (typically one just created by
11602  * start_subparse()) if that CV is for a named sub
11603  */
11604
11605 void
11606 Perl_init_named_cv(pTHX_ CV *cv, OP *nameop)
11607 {
11608     PERL_ARGS_ASSERT_INIT_NAMED_CV;
11609
11610     if (nameop->op_type == OP_CONST) {
11611         const char *const name = SvPV_nolen_const(((SVOP*)nameop)->op_sv);
11612         if (   strEQ(name, "BEGIN")
11613             || strEQ(name, "END")
11614             || strEQ(name, "INIT")
11615             || strEQ(name, "CHECK")
11616             || strEQ(name, "UNITCHECK")
11617         )
11618           CvSPECIAL_on(cv);
11619     }
11620     else
11621     /* State subs inside anonymous subs need to be
11622      clonable themselves. */
11623     if (   CvANON(CvOUTSIDE(cv))
11624         || CvCLONE(CvOUTSIDE(cv))
11625         || !PadnameIsSTATE(PadlistNAMESARRAY(CvPADLIST(
11626                         CvOUTSIDE(cv)
11627                      ))[nameop->op_targ])
11628     )
11629       CvCLONE_on(cv);
11630 }
11631
11632
11633 static int
11634 S_yywarn(pTHX_ const char *const s, U32 flags)
11635 {
11636     PERL_ARGS_ASSERT_YYWARN;
11637
11638     PL_in_eval |= EVAL_WARNONLY;
11639     yyerror_pv(s, flags);
11640     return 0;
11641 }
11642
11643 void
11644 Perl_abort_execution(pTHX_ const char * const msg, const char * const name)
11645 {
11646     PERL_ARGS_ASSERT_ABORT_EXECUTION;
11647
11648     if (PL_minus_c)
11649         Perl_croak(aTHX_ "%s%s had compilation errors.\n", msg, name);
11650     else {
11651         Perl_croak(aTHX_
11652                 "%sExecution of %s aborted due to compilation errors.\n", msg, name);
11653     }
11654     NOT_REACHED; /* NOTREACHED */
11655 }
11656
11657 void
11658 Perl_yyquit(pTHX)
11659 {
11660     /* Called, after at least one error has been found, to abort the parse now,
11661      * instead of trying to forge ahead */
11662
11663     yyerror_pvn(NULL, 0, 0);
11664 }
11665
11666 int
11667 Perl_yyerror(pTHX_ const char *const s)
11668 {
11669     PERL_ARGS_ASSERT_YYERROR;
11670     return yyerror_pvn(s, strlen(s), 0);
11671 }
11672
11673 int
11674 Perl_yyerror_pv(pTHX_ const char *const s, U32 flags)
11675 {
11676     PERL_ARGS_ASSERT_YYERROR_PV;
11677     return yyerror_pvn(s, strlen(s), flags);
11678 }
11679
11680 int
11681 Perl_yyerror_pvn(pTHX_ const char *const s, STRLEN len, U32 flags)
11682 {
11683     const char *context = NULL;
11684     int contlen = -1;
11685     SV *msg;
11686     SV * const where_sv = newSVpvs_flags("", SVs_TEMP);
11687     int yychar  = PL_parser->yychar;
11688
11689     /* Output error message 's' with length 'len'.  'flags' are SV flags that
11690      * apply.  If the number of errors found is large enough, it abandons
11691      * parsing.  If 's' is NULL, there is no message, and it abandons
11692      * processing unconditionally */
11693
11694     if (s != NULL) {
11695         if (!yychar || (yychar == ';' && !PL_rsfp))
11696             sv_catpvs(where_sv, "at EOF");
11697         else if (   PL_oldoldbufptr
11698                  && PL_bufptr > PL_oldoldbufptr
11699                  && PL_bufptr - PL_oldoldbufptr < 200
11700                  && PL_oldoldbufptr != PL_oldbufptr
11701                  && PL_oldbufptr != PL_bufptr)
11702         {
11703             /*
11704                     Only for NetWare:
11705                     The code below is removed for NetWare because it
11706                     abends/crashes on NetWare when the script has error such as
11707                     not having the closing quotes like:
11708                         if ($var eq "value)
11709                     Checking of white spaces is anyway done in NetWare code.
11710             */
11711 #ifndef NETWARE
11712             while (isSPACE(*PL_oldoldbufptr))
11713                 PL_oldoldbufptr++;
11714 #endif
11715             context = PL_oldoldbufptr;
11716             contlen = PL_bufptr - PL_oldoldbufptr;
11717         }
11718         else if (  PL_oldbufptr
11719                 && PL_bufptr > PL_oldbufptr
11720                 && PL_bufptr - PL_oldbufptr < 200
11721                 && PL_oldbufptr != PL_bufptr) {
11722             /*
11723                     Only for NetWare:
11724                     The code below is removed for NetWare because it
11725                     abends/crashes on NetWare when the script has error such as
11726                     not having the closing quotes like:
11727                         if ($var eq "value)
11728                     Checking of white spaces is anyway done in NetWare code.
11729             */
11730 #ifndef NETWARE
11731             while (isSPACE(*PL_oldbufptr))
11732                 PL_oldbufptr++;
11733 #endif
11734             context = PL_oldbufptr;
11735             contlen = PL_bufptr - PL_oldbufptr;
11736         }
11737         else if (yychar > 255)
11738             sv_catpvs(where_sv, "next token ???");
11739         else if (yychar == YYEMPTY) {
11740             if (PL_lex_state == LEX_NORMAL)
11741                 sv_catpvs(where_sv, "at end of line");
11742             else if (PL_lex_inpat)
11743                 sv_catpvs(where_sv, "within pattern");
11744             else
11745                 sv_catpvs(where_sv, "within string");
11746         }
11747         else {
11748             sv_catpvs(where_sv, "next char ");
11749             if (yychar < 32)
11750                 Perl_sv_catpvf(aTHX_ where_sv, "^%c", toCTRL(yychar));
11751             else if (isPRINT_LC(yychar)) {
11752                 const char string = yychar;
11753                 sv_catpvn(where_sv, &string, 1);
11754             }
11755             else
11756                 Perl_sv_catpvf(aTHX_ where_sv, "\\%03o", yychar & 255);
11757         }
11758         msg = newSVpvn_flags(s, len, (flags & SVf_UTF8) | SVs_TEMP);
11759         Perl_sv_catpvf(aTHX_ msg, " at %s line %" IVdf ", ",
11760             OutCopFILE(PL_curcop),
11761             (IV)(PL_parser->preambling == NOLINE
11762                    ? CopLINE(PL_curcop)
11763                    : PL_parser->preambling));
11764         if (context)
11765             Perl_sv_catpvf(aTHX_ msg, "near \"%" UTF8f "\"\n",
11766                                  UTF8fARG(UTF, contlen, context));
11767         else
11768             Perl_sv_catpvf(aTHX_ msg, "%" SVf "\n", SVfARG(where_sv));
11769         if (   PL_multi_start < PL_multi_end
11770             && (U32)(CopLINE(PL_curcop) - PL_multi_end) <= 1)
11771         {
11772             Perl_sv_catpvf(aTHX_ msg,
11773             "  (Might be a runaway multi-line %c%c string starting on"
11774             " line %" IVdf ")\n",
11775                     (int)PL_multi_open,(int)PL_multi_close,(IV)PL_multi_start);
11776             PL_multi_end = 0;
11777         }
11778         if (PL_in_eval & EVAL_WARNONLY) {
11779             PL_in_eval &= ~EVAL_WARNONLY;
11780             Perl_ck_warner_d(aTHX_ packWARN(WARN_SYNTAX), "%" SVf, SVfARG(msg));
11781         }
11782         else {
11783             qerror(msg);
11784         }
11785     }
11786     if (s == NULL || PL_error_count >= 10) {
11787         const char * msg = "";
11788         const char * const name = OutCopFILE(PL_curcop);
11789
11790         if (PL_in_eval) {
11791             SV * errsv = ERRSV;
11792             if (SvCUR(errsv)) {
11793                 msg = Perl_form(aTHX_ "%" SVf, SVfARG(errsv));
11794             }
11795         }
11796
11797         if (s == NULL) {
11798             abort_execution(msg, name);
11799         }
11800         else {
11801             Perl_croak(aTHX_ "%s%s has too many errors.\n", msg, name);
11802         }
11803     }
11804     PL_in_my = 0;
11805     PL_in_my_stash = NULL;
11806     return 0;
11807 }
11808
11809 STATIC char*
11810 S_swallow_bom(pTHX_ U8 *s)
11811 {
11812     const STRLEN slen = SvCUR(PL_linestr);
11813
11814     PERL_ARGS_ASSERT_SWALLOW_BOM;
11815
11816     switch (s[0]) {
11817     case 0xFF:
11818         if (s[1] == 0xFE) {
11819             /* UTF-16 little-endian? (or UTF-32LE?) */
11820             if (s[2] == 0 && s[3] == 0)  /* UTF-32 little-endian */
11821                 /* diag_listed_as: Unsupported script encoding %s */
11822                 Perl_croak(aTHX_ "Unsupported script encoding UTF-32LE");
11823 #ifndef PERL_NO_UTF16_FILTER
11824 #ifdef DEBUGGING
11825             if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-16LE script encoding (BOM)\n");
11826 #endif
11827             s += 2;
11828             if (PL_bufend > (char*)s) {
11829                 s = add_utf16_textfilter(s, TRUE);
11830             }
11831 #else
11832             /* diag_listed_as: Unsupported script encoding %s */
11833             Perl_croak(aTHX_ "Unsupported script encoding UTF-16LE");
11834 #endif
11835         }
11836         break;
11837     case 0xFE:
11838         if (s[1] == 0xFF) {   /* UTF-16 big-endian? */
11839 #ifndef PERL_NO_UTF16_FILTER
11840 #ifdef DEBUGGING
11841             if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-16BE script encoding (BOM)\n");
11842 #endif
11843             s += 2;
11844             if (PL_bufend > (char *)s) {
11845                 s = add_utf16_textfilter(s, FALSE);
11846             }
11847 #else
11848             /* diag_listed_as: Unsupported script encoding %s */
11849             Perl_croak(aTHX_ "Unsupported script encoding UTF-16BE");
11850 #endif
11851         }
11852         break;
11853     case BOM_UTF8_FIRST_BYTE: {
11854         if (memBEGINs(s+1, slen - 1, BOM_UTF8_TAIL)) {
11855 #ifdef DEBUGGING
11856             if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-8 script encoding (BOM)\n");
11857 #endif
11858             s += sizeof(BOM_UTF8) - 1;                     /* UTF-8 */
11859         }
11860         break;
11861     }
11862     case 0:
11863         if (slen > 3) {
11864              if (s[1] == 0) {
11865                   if (s[2] == 0xFE && s[3] == 0xFF) {
11866                        /* UTF-32 big-endian */
11867                        /* diag_listed_as: Unsupported script encoding %s */
11868                        Perl_croak(aTHX_ "Unsupported script encoding UTF-32BE");
11869                   }
11870              }
11871              else if (s[2] == 0 && s[3] != 0) {
11872                   /* Leading bytes
11873                    * 00 xx 00 xx
11874                    * are a good indicator of UTF-16BE. */
11875 #ifndef PERL_NO_UTF16_FILTER
11876 #ifdef DEBUGGING
11877                   if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-16BE script encoding (no BOM)\n");
11878 #endif
11879                   s = add_utf16_textfilter(s, FALSE);
11880 #else
11881                   /* diag_listed_as: Unsupported script encoding %s */
11882                   Perl_croak(aTHX_ "Unsupported script encoding UTF-16BE");
11883 #endif
11884              }
11885         }
11886         break;
11887
11888     default:
11889          if (slen > 3 && s[1] == 0 && s[2] != 0 && s[3] == 0) {
11890                   /* Leading bytes
11891                    * xx 00 xx 00
11892                    * are a good indicator of UTF-16LE. */
11893 #ifndef PERL_NO_UTF16_FILTER
11894 #ifdef DEBUGGING
11895               if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-16LE script encoding (no BOM)\n");
11896 #endif
11897               s = add_utf16_textfilter(s, TRUE);
11898 #else
11899               /* diag_listed_as: Unsupported script encoding %s */
11900               Perl_croak(aTHX_ "Unsupported script encoding UTF-16LE");
11901 #endif
11902          }
11903     }
11904     return (char*)s;
11905 }
11906
11907
11908 #ifndef PERL_NO_UTF16_FILTER
11909 static I32
11910 S_utf16_textfilter(pTHX_ int idx, SV *sv, int maxlen)
11911 {
11912     SV *const filter = FILTER_DATA(idx);
11913     /* We re-use this each time round, throwing the contents away before we
11914        return.  */
11915     SV *const utf16_buffer = MUTABLE_SV(IoTOP_GV(filter));
11916     SV *const utf8_buffer = filter;
11917     IV status = IoPAGE(filter);
11918     const bool reverse = cBOOL(IoLINES(filter));
11919     I32 retval;
11920
11921     PERL_ARGS_ASSERT_UTF16_TEXTFILTER;
11922
11923     /* As we're automatically added, at the lowest level, and hence only called
11924        from this file, we can be sure that we're not called in block mode. Hence
11925        don't bother writing code to deal with block mode.  */
11926     if (maxlen) {
11927         Perl_croak(aTHX_ "panic: utf16_textfilter called in block mode (for %d characters)", maxlen);
11928     }
11929     if (status < 0) {
11930         Perl_croak(aTHX_ "panic: utf16_textfilter called after error (status=%" IVdf ")", status);
11931     }
11932     DEBUG_P(PerlIO_printf(Perl_debug_log,
11933                           "utf16_textfilter(%p,%ce): idx=%d maxlen=%d status=%" IVdf " utf16=%" UVuf " utf8=%" UVuf "\n",
11934                           FPTR2DPTR(void *, S_utf16_textfilter),
11935                           reverse ? 'l' : 'b', idx, maxlen, status,
11936                           (UV)SvCUR(utf16_buffer), (UV)SvCUR(utf8_buffer)));
11937
11938     while (1) {
11939         STRLEN chars;
11940         STRLEN have;
11941         I32 newlen;
11942         U8 *end;
11943         /* First, look in our buffer of existing UTF-8 data:  */
11944         char *nl = (char *)memchr(SvPVX(utf8_buffer), '\n', SvCUR(utf8_buffer));
11945
11946         if (nl) {
11947             ++nl;
11948         } else if (status == 0) {
11949             /* EOF */
11950             IoPAGE(filter) = 0;
11951             nl = SvEND(utf8_buffer);
11952         }
11953         if (nl) {
11954             STRLEN got = nl - SvPVX(utf8_buffer);
11955             /* Did we have anything to append?  */
11956             retval = got != 0;
11957             sv_catpvn(sv, SvPVX(utf8_buffer), got);
11958             /* Everything else in this code works just fine if SVp_POK isn't
11959                set.  This, however, needs it, and we need it to work, else
11960                we loop infinitely because the buffer is never consumed.  */
11961             sv_chop(utf8_buffer, nl);
11962             break;
11963         }
11964
11965         /* OK, not a complete line there, so need to read some more UTF-16.
11966            Read an extra octect if the buffer currently has an odd number. */
11967         while (1) {
11968             if (status <= 0)
11969                 break;
11970             if (SvCUR(utf16_buffer) >= 2) {
11971                 /* Location of the high octet of the last complete code point.
11972                    Gosh, UTF-16 is a pain. All the benefits of variable length,
11973                    *coupled* with all the benefits of partial reads and
11974                    endianness.  */
11975                 const U8 *const last_hi = (U8*)SvPVX(utf16_buffer)
11976                     + ((SvCUR(utf16_buffer) & ~1) - (reverse ? 1 : 2));
11977
11978                 if (*last_hi < 0xd8 || *last_hi > 0xdb) {
11979                     break;
11980                 }
11981
11982                 /* We have the first half of a surrogate. Read more.  */
11983                 DEBUG_P(PerlIO_printf(Perl_debug_log, "utf16_textfilter partial surrogate detected at %p\n", last_hi));
11984             }
11985
11986             status = FILTER_READ(idx + 1, utf16_buffer,
11987                                  160 + (SvCUR(utf16_buffer) & 1));
11988             DEBUG_P(PerlIO_printf(Perl_debug_log, "utf16_textfilter status=%" IVdf " SvCUR(sv)=%" UVuf "\n", status, (UV)SvCUR(utf16_buffer)));
11989             DEBUG_P({ sv_dump(utf16_buffer); sv_dump(utf8_buffer);});
11990             if (status < 0) {
11991                 /* Error */
11992                 IoPAGE(filter) = status;
11993                 return status;
11994             }
11995         }
11996
11997         /* 'chars' isn't quite the right name, as code points above 0xFFFF
11998          * require 4 bytes per char */
11999         chars = SvCUR(utf16_buffer) >> 1;
12000         have = SvCUR(utf8_buffer);
12001
12002         /* Assume the worst case size as noted by the functions: twice the
12003          * number of input bytes */
12004         SvGROW(utf8_buffer, have + chars * 4 + 1);
12005
12006         if (reverse) {
12007             end = utf16_to_utf8_reversed((U8*)SvPVX(utf16_buffer),
12008                                          (U8*)SvPVX_const(utf8_buffer) + have,
12009                                          chars * 2, &newlen);
12010         } else {
12011             end = utf16_to_utf8((U8*)SvPVX(utf16_buffer),
12012                                 (U8*)SvPVX_const(utf8_buffer) + have,
12013                                 chars * 2, &newlen);
12014         }
12015         SvCUR_set(utf8_buffer, have + newlen);
12016         *end = '\0';
12017
12018         /* No need to keep this SV "well-formed" with a '\0' after the end, as
12019            it's private to us, and utf16_to_utf8{,reversed} take a
12020            (pointer,length) pair, rather than a NUL-terminated string.  */
12021         if(SvCUR(utf16_buffer) & 1) {
12022             *SvPVX(utf16_buffer) = SvEND(utf16_buffer)[-1];
12023             SvCUR_set(utf16_buffer, 1);
12024         } else {
12025             SvCUR_set(utf16_buffer, 0);
12026         }
12027     }
12028     DEBUG_P(PerlIO_printf(Perl_debug_log,
12029                           "utf16_textfilter: returns, status=%" IVdf " utf16=%" UVuf " utf8=%" UVuf "\n",
12030                           status,
12031                           (UV)SvCUR(utf16_buffer), (UV)SvCUR(utf8_buffer)));
12032     DEBUG_P({ sv_dump(utf8_buffer); sv_dump(sv);});
12033     return retval;
12034 }
12035
12036 static U8 *
12037 S_add_utf16_textfilter(pTHX_ U8 *const s, bool reversed)
12038 {
12039     SV *filter = filter_add(S_utf16_textfilter, NULL);
12040
12041     PERL_ARGS_ASSERT_ADD_UTF16_TEXTFILTER;
12042
12043     IoTOP_GV(filter) = MUTABLE_GV(newSVpvn((char *)s, PL_bufend - (char*)s));
12044     SvPVCLEAR(filter);
12045     IoLINES(filter) = reversed;
12046     IoPAGE(filter) = 1; /* Not EOF */
12047
12048     /* Sadly, we have to return a valid pointer, come what may, so we have to
12049        ignore any error return from this.  */
12050     SvCUR_set(PL_linestr, 0);
12051     if (FILTER_READ(0, PL_linestr, 0)) {
12052         SvUTF8_on(PL_linestr);
12053     } else {
12054         SvUTF8_on(PL_linestr);
12055     }
12056     PL_bufend = SvEND(PL_linestr);
12057     return (U8*)SvPVX(PL_linestr);
12058 }
12059 #endif
12060
12061 /*
12062 Returns a pointer to the next character after the parsed
12063 vstring, as well as updating the passed in sv.
12064
12065 Function must be called like
12066
12067         sv = sv_2mortal(newSV(5));
12068         s = scan_vstring(s,e,sv);
12069
12070 where s and e are the start and end of the string.
12071 The sv should already be large enough to store the vstring
12072 passed in, for performance reasons.
12073
12074 This function may croak if fatal warnings are enabled in the
12075 calling scope, hence the sv_2mortal in the example (to prevent
12076 a leak).  Make sure to do SvREFCNT_inc afterwards if you use
12077 sv_2mortal.
12078
12079 */
12080
12081 char *
12082 Perl_scan_vstring(pTHX_ const char *s, const char *const e, SV *sv)
12083 {
12084     const char *pos = s;
12085     const char *start = s;
12086
12087     PERL_ARGS_ASSERT_SCAN_VSTRING;
12088
12089     if (*pos == 'v') pos++;  /* get past 'v' */
12090     while (pos < e && (isDIGIT(*pos) || *pos == '_'))
12091         pos++;
12092     if ( *pos != '.') {
12093         /* this may not be a v-string if followed by => */
12094         const char *next = pos;
12095         while (next < e && isSPACE(*next))
12096             ++next;
12097         if ((e - next) >= 2 && *next == '=' && next[1] == '>' ) {
12098             /* return string not v-string */
12099             sv_setpvn(sv,(char *)s,pos-s);
12100             return (char *)pos;
12101         }
12102     }
12103
12104     if (!isALPHA(*pos)) {
12105         U8 tmpbuf[UTF8_MAXBYTES+1];
12106
12107         if (*s == 'v')
12108             s++;  /* get past 'v' */
12109
12110         SvPVCLEAR(sv);
12111
12112         for (;;) {
12113             /* this is atoi() that tolerates underscores */
12114             U8 *tmpend;
12115             UV rev = 0;
12116             const char *end = pos;
12117             UV mult = 1;
12118             while (--end >= s) {
12119                 if (*end != '_') {
12120                     const UV orev = rev;
12121                     rev += (*end - '0') * mult;
12122                     mult *= 10;
12123                     if (orev > rev)
12124                         /* diag_listed_as: Integer overflow in %s number */
12125                         Perl_ck_warner_d(aTHX_ packWARN(WARN_OVERFLOW),
12126                                          "Integer overflow in decimal number");
12127                 }
12128             }
12129
12130             /* Append native character for the rev point */
12131             tmpend = uvchr_to_utf8(tmpbuf, rev);
12132             sv_catpvn(sv, (const char*)tmpbuf, tmpend - tmpbuf);
12133             if (!UVCHR_IS_INVARIANT(rev))
12134                  SvUTF8_on(sv);
12135             if (pos + 1 < e && *pos == '.' && isDIGIT(pos[1]))
12136                  s = ++pos;
12137             else {
12138                  s = pos;
12139                  break;
12140             }
12141             while (pos < e && (isDIGIT(*pos) || *pos == '_'))
12142                  pos++;
12143         }
12144         SvPOK_on(sv);
12145         sv_magic(sv,NULL,PERL_MAGIC_vstring,(const char*)start, pos-start);
12146         SvRMAGICAL_on(sv);
12147     }
12148     return (char *)s;
12149 }
12150
12151 int
12152 Perl_keyword_plugin_standard(pTHX_
12153         char *keyword_ptr, STRLEN keyword_len, OP **op_ptr)
12154 {
12155     PERL_ARGS_ASSERT_KEYWORD_PLUGIN_STANDARD;
12156     PERL_UNUSED_CONTEXT;
12157     PERL_UNUSED_ARG(keyword_ptr);
12158     PERL_UNUSED_ARG(keyword_len);
12159     PERL_UNUSED_ARG(op_ptr);
12160     return KEYWORD_PLUGIN_DECLINE;
12161 }
12162
12163 /*
12164 =for apidoc Amx|void|wrap_keyword_plugin|Perl_keyword_plugin_t new_plugin|Perl_keyword_plugin_t *old_plugin_p
12165
12166 Puts a C function into the chain of keyword plugins.  This is the
12167 preferred way to manipulate the L</PL_keyword_plugin> variable.
12168 C<new_plugin> is a pointer to the C function that is to be added to the
12169 keyword plugin chain, and C<old_plugin_p> points to the storage location
12170 where a pointer to the next function in the chain will be stored.  The
12171 value of C<new_plugin> is written into the L</PL_keyword_plugin> variable,
12172 while the value previously stored there is written to C<*old_plugin_p>.
12173
12174 L</PL_keyword_plugin> is global to an entire process, and a module wishing
12175 to hook keyword parsing may find itself invoked more than once per
12176 process, typically in different threads.  To handle that situation, this
12177 function is idempotent.  The location C<*old_plugin_p> must initially
12178 (once per process) contain a null pointer.  A C variable of static
12179 duration (declared at file scope, typically also marked C<static> to give
12180 it internal linkage) will be implicitly initialised appropriately, if it
12181 does not have an explicit initialiser.  This function will only actually
12182 modify the plugin chain if it finds C<*old_plugin_p> to be null.  This
12183 function is also thread safe on the small scale.  It uses appropriate
12184 locking to avoid race conditions in accessing L</PL_keyword_plugin>.
12185
12186 When this function is called, the function referenced by C<new_plugin>
12187 must be ready to be called, except for C<*old_plugin_p> being unfilled.
12188 In a threading situation, C<new_plugin> may be called immediately, even
12189 before this function has returned.  C<*old_plugin_p> will always be
12190 appropriately set before C<new_plugin> is called.  If C<new_plugin>
12191 decides not to do anything special with the identifier that it is given
12192 (which is the usual case for most calls to a keyword plugin), it must
12193 chain the plugin function referenced by C<*old_plugin_p>.
12194
12195 Taken all together, XS code to install a keyword plugin should typically
12196 look something like this:
12197
12198     static Perl_keyword_plugin_t next_keyword_plugin;
12199     static OP *my_keyword_plugin(pTHX_
12200         char *keyword_plugin, STRLEN keyword_len, OP **op_ptr)
12201     {
12202         if (memEQs(keyword_ptr, keyword_len,
12203                    "my_new_keyword")) {
12204             ...
12205         } else {
12206             return next_keyword_plugin(aTHX_
12207                 keyword_ptr, keyword_len, op_ptr);
12208         }
12209     }
12210     BOOT:
12211         wrap_keyword_plugin(my_keyword_plugin,
12212                             &next_keyword_plugin);
12213
12214 Direct access to L</PL_keyword_plugin> should be avoided.
12215
12216 =cut
12217 */
12218
12219 void
12220 Perl_wrap_keyword_plugin(pTHX_
12221     Perl_keyword_plugin_t new_plugin, Perl_keyword_plugin_t *old_plugin_p)
12222 {
12223     dVAR;
12224
12225     PERL_UNUSED_CONTEXT;
12226     PERL_ARGS_ASSERT_WRAP_KEYWORD_PLUGIN;
12227     if (*old_plugin_p) return;
12228     KEYWORD_PLUGIN_MUTEX_LOCK;
12229     if (!*old_plugin_p) {
12230         *old_plugin_p = PL_keyword_plugin;
12231         PL_keyword_plugin = new_plugin;
12232     }
12233     KEYWORD_PLUGIN_MUTEX_UNLOCK;
12234 }
12235
12236 #define parse_recdescent(g,p) S_parse_recdescent(aTHX_ g,p)
12237 static void
12238 S_parse_recdescent(pTHX_ int gramtype, I32 fakeeof)
12239 {
12240     SAVEI32(PL_lex_brackets);
12241     if (PL_lex_brackets > 100)
12242         Renew(PL_lex_brackstack, PL_lex_brackets + 10, char);
12243     PL_lex_brackstack[PL_lex_brackets++] = XFAKEEOF;
12244     SAVEI32(PL_lex_allbrackets);
12245     PL_lex_allbrackets = 0;
12246     SAVEI8(PL_lex_fakeeof);
12247     PL_lex_fakeeof = (U8)fakeeof;
12248     if(yyparse(gramtype) && !PL_parser->error_count)
12249         qerror(Perl_mess(aTHX_ "Parse error"));
12250 }
12251
12252 #define parse_recdescent_for_op(g,p) S_parse_recdescent_for_op(aTHX_ g,p)
12253 static OP *
12254 S_parse_recdescent_for_op(pTHX_ int gramtype, I32 fakeeof)
12255 {
12256     OP *o;
12257     ENTER;
12258     SAVEVPTR(PL_eval_root);
12259     PL_eval_root = NULL;
12260     parse_recdescent(gramtype, fakeeof);
12261     o = PL_eval_root;
12262     LEAVE;
12263     return o;
12264 }
12265
12266 #define parse_expr(p,f) S_parse_expr(aTHX_ p,f)
12267 static OP *
12268 S_parse_expr(pTHX_ I32 fakeeof, U32 flags)
12269 {
12270     OP *exprop;
12271     if (flags & ~PARSE_OPTIONAL)
12272         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_expr");
12273     exprop = parse_recdescent_for_op(GRAMEXPR, fakeeof);
12274     if (!exprop && !(flags & PARSE_OPTIONAL)) {
12275         if (!PL_parser->error_count)
12276             qerror(Perl_mess(aTHX_ "Parse error"));
12277         exprop = newOP(OP_NULL, 0);
12278     }
12279     return exprop;
12280 }
12281
12282 /*
12283 =for apidoc Amx|OP *|parse_arithexpr|U32 flags
12284
12285 Parse a Perl arithmetic expression.  This may contain operators of precedence
12286 down to the bit shift operators.  The expression must be followed (and thus
12287 terminated) either by a comparison or lower-precedence operator or by
12288 something that would normally terminate an expression such as semicolon.
12289 If C<flags> has the C<PARSE_OPTIONAL> bit set, then the expression is optional,
12290 otherwise it is mandatory.  It is up to the caller to ensure that the
12291 dynamic parser state (L</PL_parser> et al) is correctly set to reflect
12292 the source of the code to be parsed and the lexical context for the
12293 expression.
12294
12295 The op tree representing the expression is returned.  If an optional
12296 expression is absent, a null pointer is returned, otherwise the pointer
12297 will be non-null.
12298
12299 If an error occurs in parsing or compilation, in most cases a valid op
12300 tree is returned anyway.  The error is reflected in the parser state,
12301 normally resulting in a single exception at the top level of parsing
12302 which covers all the compilation errors that occurred.  Some compilation
12303 errors, however, will throw an exception immediately.
12304
12305 =cut
12306 */
12307
12308 OP *
12309 Perl_parse_arithexpr(pTHX_ U32 flags)
12310 {
12311     return parse_expr(LEX_FAKEEOF_COMPARE, flags);
12312 }
12313
12314 /*
12315 =for apidoc Amx|OP *|parse_termexpr|U32 flags
12316
12317 Parse a Perl term expression.  This may contain operators of precedence
12318 down to the assignment operators.  The expression must be followed (and thus
12319 terminated) either by a comma or lower-precedence operator or by
12320 something that would normally terminate an expression such as semicolon.
12321 If C<flags> has the C<PARSE_OPTIONAL> bit set, then the expression is optional,
12322 otherwise it is mandatory.  It is up to the caller to ensure that the
12323 dynamic parser state (L</PL_parser> et al) is correctly set to reflect
12324 the source of the code to be parsed and the lexical context for the
12325 expression.
12326
12327 The op tree representing the expression is returned.  If an optional
12328 expression is absent, a null pointer is returned, otherwise the pointer
12329 will be non-null.
12330
12331 If an error occurs in parsing or compilation, in most cases a valid op
12332 tree is returned anyway.  The error is reflected in the parser state,
12333 normally resulting in a single exception at the top level of parsing
12334 which covers all the compilation errors that occurred.  Some compilation
12335 errors, however, will throw an exception immediately.
12336
12337 =cut
12338 */
12339
12340 OP *
12341 Perl_parse_termexpr(pTHX_ U32 flags)
12342 {
12343     return parse_expr(LEX_FAKEEOF_COMMA, flags);
12344 }
12345
12346 /*
12347 =for apidoc Amx|OP *|parse_listexpr|U32 flags
12348
12349 Parse a Perl list expression.  This may contain operators of precedence
12350 down to the comma operator.  The expression must be followed (and thus
12351 terminated) either by a low-precedence logic operator such as C<or> or by
12352 something that would normally terminate an expression such as semicolon.
12353 If C<flags> has the C<PARSE_OPTIONAL> bit set, then the expression is optional,
12354 otherwise it is mandatory.  It is up to the caller to ensure that the
12355 dynamic parser state (L</PL_parser> et al) is correctly set to reflect
12356 the source of the code to be parsed and the lexical context for the
12357 expression.
12358
12359 The op tree representing the expression is returned.  If an optional
12360 expression is absent, a null pointer is returned, otherwise the pointer
12361 will be non-null.
12362
12363 If an error occurs in parsing or compilation, in most cases a valid op
12364 tree is returned anyway.  The error is reflected in the parser state,
12365 normally resulting in a single exception at the top level of parsing
12366 which covers all the compilation errors that occurred.  Some compilation
12367 errors, however, will throw an exception immediately.
12368
12369 =cut
12370 */
12371
12372 OP *
12373 Perl_parse_listexpr(pTHX_ U32 flags)
12374 {
12375     return parse_expr(LEX_FAKEEOF_LOWLOGIC, flags);
12376 }
12377
12378 /*
12379 =for apidoc Amx|OP *|parse_fullexpr|U32 flags
12380
12381 Parse a single complete Perl expression.  This allows the full
12382 expression grammar, including the lowest-precedence operators such
12383 as C<or>.  The expression must be followed (and thus terminated) by a
12384 token that an expression would normally be terminated by: end-of-file,
12385 closing bracketing punctuation, semicolon, or one of the keywords that
12386 signals a postfix expression-statement modifier.  If C<flags> has the
12387 C<PARSE_OPTIONAL> bit set, then the expression is optional, otherwise it is
12388 mandatory.  It is up to the caller to ensure that the dynamic parser
12389 state (L</PL_parser> et al) is correctly set to reflect the source of
12390 the code to be parsed and the lexical context for the expression.
12391
12392 The op tree representing the expression is returned.  If an optional
12393 expression is absent, a null pointer is returned, otherwise the pointer
12394 will be non-null.
12395
12396 If an error occurs in parsing or compilation, in most cases a valid op
12397 tree is returned anyway.  The error is reflected in the parser state,
12398 normally resulting in a single exception at the top level of parsing
12399 which covers all the compilation errors that occurred.  Some compilation
12400 errors, however, will throw an exception immediately.
12401
12402 =cut
12403 */
12404
12405 OP *
12406 Perl_parse_fullexpr(pTHX_ U32 flags)
12407 {
12408     return parse_expr(LEX_FAKEEOF_NONEXPR, flags);
12409 }
12410
12411 /*
12412 =for apidoc Amx|OP *|parse_block|U32 flags
12413
12414 Parse a single complete Perl code block.  This consists of an opening
12415 brace, a sequence of statements, and a closing brace.  The block
12416 constitutes a lexical scope, so C<my> variables and various compile-time
12417 effects can be contained within it.  It is up to the caller to ensure
12418 that the dynamic parser state (L</PL_parser> et al) is correctly set to
12419 reflect the source of the code to be parsed and the lexical context for
12420 the statement.
12421
12422 The op tree representing the code block is returned.  This is always a
12423 real op, never a null pointer.  It will normally be a C<lineseq> list,
12424 including C<nextstate> or equivalent ops.  No ops to construct any kind
12425 of runtime scope are included by virtue of it being a block.
12426
12427 If an error occurs in parsing or compilation, in most cases a valid op
12428 tree (most likely null) is returned anyway.  The error is reflected in
12429 the parser state, normally resulting in a single exception at the top
12430 level of parsing which covers all the compilation errors that occurred.
12431 Some compilation errors, however, will throw an exception immediately.
12432
12433 The C<flags> parameter is reserved for future use, and must always
12434 be zero.
12435
12436 =cut
12437 */
12438
12439 OP *
12440 Perl_parse_block(pTHX_ U32 flags)
12441 {
12442     if (flags)
12443         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_block");
12444     return parse_recdescent_for_op(GRAMBLOCK, LEX_FAKEEOF_NEVER);
12445 }
12446
12447 /*
12448 =for apidoc Amx|OP *|parse_barestmt|U32 flags
12449
12450 Parse a single unadorned Perl statement.  This may be a normal imperative
12451 statement or a declaration that has compile-time effect.  It does not
12452 include any label or other affixture.  It is up to the caller to ensure
12453 that the dynamic parser state (L</PL_parser> et al) is correctly set to
12454 reflect the source of the code to be parsed and the lexical context for
12455 the statement.
12456
12457 The op tree representing the statement is returned.  This may be a
12458 null pointer if the statement is null, for example if it was actually
12459 a subroutine definition (which has compile-time side effects).  If not
12460 null, it will be ops directly implementing the statement, suitable to
12461 pass to L</newSTATEOP>.  It will not normally include a C<nextstate> or
12462 equivalent op (except for those embedded in a scope contained entirely
12463 within the statement).
12464
12465 If an error occurs in parsing or compilation, in most cases a valid op
12466 tree (most likely null) is returned anyway.  The error is reflected in
12467 the parser state, normally resulting in a single exception at the top
12468 level of parsing which covers all the compilation errors that occurred.
12469 Some compilation errors, however, will throw an exception immediately.
12470
12471 The C<flags> parameter is reserved for future use, and must always
12472 be zero.
12473
12474 =cut
12475 */
12476
12477 OP *
12478 Perl_parse_barestmt(pTHX_ U32 flags)
12479 {
12480     if (flags)
12481         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_barestmt");
12482     return parse_recdescent_for_op(GRAMBARESTMT, LEX_FAKEEOF_NEVER);
12483 }
12484
12485 /*
12486 =for apidoc Amx|SV *|parse_label|U32 flags
12487
12488 Parse a single label, possibly optional, of the type that may prefix a
12489 Perl statement.  It is up to the caller to ensure that the dynamic parser
12490 state (L</PL_parser> et al) is correctly set to reflect the source of
12491 the code to be parsed.  If C<flags> has the C<PARSE_OPTIONAL> bit set, then the
12492 label is optional, otherwise it is mandatory.
12493
12494 The name of the label is returned in the form of a fresh scalar.  If an
12495 optional label is absent, a null pointer is returned.
12496
12497 If an error occurs in parsing, which can only occur if the label is
12498 mandatory, a valid label is returned anyway.  The error is reflected in
12499 the parser state, normally resulting in a single exception at the top
12500 level of parsing which covers all the compilation errors that occurred.
12501
12502 =cut
12503 */
12504
12505 SV *
12506 Perl_parse_label(pTHX_ U32 flags)
12507 {
12508     if (flags & ~PARSE_OPTIONAL)
12509         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_label");
12510     if (PL_nexttoke) {
12511         PL_parser->yychar = yylex();
12512         if (PL_parser->yychar == LABEL) {
12513             char * const lpv = pl_yylval.pval;
12514             STRLEN llen = strlen(lpv);
12515             PL_parser->yychar = YYEMPTY;
12516             return newSVpvn_flags(lpv, llen, lpv[llen+1] ? SVf_UTF8 : 0);
12517         } else {
12518             yyunlex();
12519             goto no_label;
12520         }
12521     } else {
12522         char *s, *t;
12523         STRLEN wlen, bufptr_pos;
12524         lex_read_space(0);
12525         t = s = PL_bufptr;
12526         if (!isIDFIRST_lazy_if_safe(s, PL_bufend, UTF))
12527             goto no_label;
12528         t = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE, &wlen);
12529         if (word_takes_any_delimiter(s, wlen))
12530             goto no_label;
12531         bufptr_pos = s - SvPVX(PL_linestr);
12532         PL_bufptr = t;
12533         lex_read_space(LEX_KEEP_PREVIOUS);
12534         t = PL_bufptr;
12535         s = SvPVX(PL_linestr) + bufptr_pos;
12536         if (t[0] == ':' && t[1] != ':') {
12537             PL_oldoldbufptr = PL_oldbufptr;
12538             PL_oldbufptr = s;
12539             PL_bufptr = t+1;
12540             return newSVpvn_flags(s, wlen, UTF ? SVf_UTF8 : 0);
12541         } else {
12542             PL_bufptr = s;
12543             no_label:
12544             if (flags & PARSE_OPTIONAL) {
12545                 return NULL;
12546             } else {
12547                 qerror(Perl_mess(aTHX_ "Parse error"));
12548                 return newSVpvs("x");
12549             }
12550         }
12551     }
12552 }
12553
12554 /*
12555 =for apidoc Amx|OP *|parse_fullstmt|U32 flags
12556
12557 Parse a single complete Perl statement.  This may be a normal imperative
12558 statement or a declaration that has compile-time effect, and may include
12559 optional labels.  It is up to the caller to ensure that the dynamic
12560 parser state (L</PL_parser> et al) is correctly set to reflect the source
12561 of the code to be parsed and the lexical context for the statement.
12562
12563 The op tree representing the statement is returned.  This may be a
12564 null pointer if the statement is null, for example if it was actually
12565 a subroutine definition (which has compile-time side effects).  If not
12566 null, it will be the result of a L</newSTATEOP> call, normally including
12567 a C<nextstate> or equivalent op.
12568
12569 If an error occurs in parsing or compilation, in most cases a valid op
12570 tree (most likely null) is returned anyway.  The error is reflected in
12571 the parser state, normally resulting in a single exception at the top
12572 level of parsing which covers all the compilation errors that occurred.
12573 Some compilation errors, however, will throw an exception immediately.
12574
12575 The C<flags> parameter is reserved for future use, and must always
12576 be zero.
12577
12578 =cut
12579 */
12580
12581 OP *
12582 Perl_parse_fullstmt(pTHX_ U32 flags)
12583 {
12584     if (flags)
12585         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_fullstmt");
12586     return parse_recdescent_for_op(GRAMFULLSTMT, LEX_FAKEEOF_NEVER);
12587 }
12588
12589 /*
12590 =for apidoc Amx|OP *|parse_stmtseq|U32 flags
12591
12592 Parse a sequence of zero or more Perl statements.  These may be normal
12593 imperative statements, including optional labels, or declarations
12594 that have compile-time effect, or any mixture thereof.  The statement
12595 sequence ends when a closing brace or end-of-file is encountered in a
12596 place where a new statement could have validly started.  It is up to
12597 the caller to ensure that the dynamic parser state (L</PL_parser> et al)
12598 is correctly set to reflect the source of the code to be parsed and the
12599 lexical context for the statements.
12600
12601 The op tree representing the statement sequence is returned.  This may
12602 be a null pointer if the statements were all null, for example if there
12603 were no statements or if there were only subroutine definitions (which
12604 have compile-time side effects).  If not null, it will be a C<lineseq>
12605 list, normally including C<nextstate> or equivalent ops.
12606
12607 If an error occurs in parsing or compilation, in most cases a valid op
12608 tree is returned anyway.  The error is reflected in the parser state,
12609 normally resulting in a single exception at the top level of parsing
12610 which covers all the compilation errors that occurred.  Some compilation
12611 errors, however, will throw an exception immediately.
12612
12613 The C<flags> parameter is reserved for future use, and must always
12614 be zero.
12615
12616 =cut
12617 */
12618
12619 OP *
12620 Perl_parse_stmtseq(pTHX_ U32 flags)
12621 {
12622     OP *stmtseqop;
12623     I32 c;
12624     if (flags)
12625         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_stmtseq");
12626     stmtseqop = parse_recdescent_for_op(GRAMSTMTSEQ, LEX_FAKEEOF_CLOSING);
12627     c = lex_peek_unichar(0);
12628     if (c != -1 && c != /*{*/'}')
12629         qerror(Perl_mess(aTHX_ "Parse error"));
12630     return stmtseqop;
12631 }
12632
12633 /*
12634  * ex: set ts=8 sts=4 sw=4 et:
12635  */