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