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