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