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