This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Create new perldelta for 5.21.12 (although it's unlikely to happen)
[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                 no_op("Array length", s);
6016             if (!PL_tokenbuf[1])
6017                 PREREF(DOLSHARP);
6018             PL_expect = XOPERATOR;
6019             force_ident_maybe_lex('#');
6020             TOKEN(DOLSHARP);
6021         }
6022
6023         PL_tokenbuf[0] = '$';
6024         s = scan_ident(s, PL_tokenbuf + 1,
6025                        sizeof PL_tokenbuf - 1, FALSE);
6026         if (PL_expect == XOPERATOR) {
6027             d = s;
6028             if (PL_bufptr > s) {
6029                 d = PL_bufptr-1;
6030                 PL_bufptr = PL_oldbufptr;
6031             }
6032             no_op("Scalar", d);
6033         }
6034         if (!PL_tokenbuf[1]) {
6035             if (s == PL_bufend)
6036                 yyerror("Final $ should be \\$ or $name");
6037             PREREF('$');
6038         }
6039
6040         d = s;
6041         {
6042             const char tmp = *s;
6043             if (PL_lex_state == LEX_NORMAL || PL_lex_brackets)
6044                 s = skipspace(s);
6045
6046             if ((PL_expect != XREF || PL_oldoldbufptr == PL_last_lop)
6047                 && intuit_more(s)) {
6048                 if (*s == '[') {
6049                     PL_tokenbuf[0] = '@';
6050                     if (ckWARN(WARN_SYNTAX)) {
6051                         char *t = s+1;
6052
6053                         while (isSPACE(*t) || isWORDCHAR_lazy_if(t,UTF) || *t == '$')
6054                             t += UTF ? UTF8SKIP(t) : 1;
6055                         if (*t++ == ',') {
6056                             PL_bufptr = skipspace(PL_bufptr); /* XXX can realloc */
6057                             while (t < PL_bufend && *t != ']')
6058                                 t++;
6059                             Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
6060                                         "Multidimensional syntax %"UTF8f" not supported",
6061                                         UTF8fARG(UTF,(int)((t - PL_bufptr) + 1), PL_bufptr));
6062                         }
6063                     }
6064                 }
6065                 else if (*s == '{') {
6066                     char *t;
6067                     PL_tokenbuf[0] = '%';
6068                     if (strEQ(PL_tokenbuf+1, "SIG")  && ckWARN(WARN_SYNTAX)
6069                         && (t = strchr(s, '}')) && (t = strchr(t, '=')))
6070                         {
6071                             char tmpbuf[sizeof PL_tokenbuf];
6072                             do {
6073                                 t++;
6074                             } while (isSPACE(*t));
6075                             if (isIDFIRST_lazy_if(t,UTF)) {
6076                                 STRLEN len;
6077                                 t = scan_word(t, tmpbuf, sizeof tmpbuf, TRUE,
6078                                               &len);
6079                                 while (isSPACE(*t))
6080                                     t++;
6081                                 if (*t == ';'
6082                                        && get_cvn_flags(tmpbuf, len, UTF ? SVf_UTF8 : 0))
6083                                     Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
6084                                         "You need to quote \"%"UTF8f"\"",
6085                                          UTF8fARG(UTF, len, tmpbuf));
6086                             }
6087                         }
6088                 }
6089             }
6090
6091             PL_expect = XOPERATOR;
6092             if (PL_lex_state == LEX_NORMAL && isSPACE((char)tmp)) {
6093                 const bool islop = (PL_last_lop == PL_oldoldbufptr);
6094                 if (!islop || PL_last_lop_op == OP_GREPSTART)
6095                     PL_expect = XOPERATOR;
6096                 else if (strchr("$@\"'`q", *s))
6097                     PL_expect = XTERM;          /* e.g. print $fh "foo" */
6098                 else if (strchr("&*<%", *s) && isIDFIRST_lazy_if(s+1,UTF))
6099                     PL_expect = XTERM;          /* e.g. print $fh &sub */
6100                 else if (isIDFIRST_lazy_if(s,UTF)) {
6101                     char tmpbuf[sizeof PL_tokenbuf];
6102                     int t2;
6103                     scan_word(s, tmpbuf, sizeof tmpbuf, TRUE, &len);
6104                     if ((t2 = keyword(tmpbuf, len, 0))) {
6105                         /* binary operators exclude handle interpretations */
6106                         switch (t2) {
6107                         case -KEY_x:
6108                         case -KEY_eq:
6109                         case -KEY_ne:
6110                         case -KEY_gt:
6111                         case -KEY_lt:
6112                         case -KEY_ge:
6113                         case -KEY_le:
6114                         case -KEY_cmp:
6115                             break;
6116                         default:
6117                             PL_expect = XTERM;  /* e.g. print $fh length() */
6118                             break;
6119                         }
6120                     }
6121                     else {
6122                         PL_expect = XTERM;      /* e.g. print $fh subr() */
6123                     }
6124                 }
6125                 else if (isDIGIT(*s))
6126                     PL_expect = XTERM;          /* e.g. print $fh 3 */
6127                 else if (*s == '.' && isDIGIT(s[1]))
6128                     PL_expect = XTERM;          /* e.g. print $fh .3 */
6129                 else if ((*s == '?' || *s == '-' || *s == '+')
6130                          && !isSPACE(s[1]) && s[1] != '=')
6131                     PL_expect = XTERM;          /* e.g. print $fh -1 */
6132                 else if (*s == '/' && !isSPACE(s[1]) && s[1] != '='
6133                          && s[1] != '/')
6134                     PL_expect = XTERM;          /* e.g. print $fh /.../
6135                                                    XXX except DORDOR operator
6136                                                 */
6137                 else if (*s == '<' && s[1] == '<' && !isSPACE(s[2])
6138                          && s[2] != '=')
6139                     PL_expect = XTERM;          /* print $fh <<"EOF" */
6140             }
6141         }
6142         force_ident_maybe_lex('$');
6143         TOKEN('$');
6144
6145     case '@':
6146         if (PL_expect == XOPERATOR)
6147             no_op("Array", s);
6148         else if (PL_expect == XPOSTDEREF) POSTDEREF('@');
6149         PL_tokenbuf[0] = '@';
6150         s = scan_ident(s, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1, FALSE);
6151         pl_yylval.ival = 0;
6152         if (!PL_tokenbuf[1]) {
6153             PREREF('@');
6154         }
6155         if (PL_lex_state == LEX_NORMAL)
6156             s = skipspace(s);
6157         if ((PL_expect != XREF || PL_oldoldbufptr == PL_last_lop) && intuit_more(s)) {
6158             if (*s == '{')
6159                 PL_tokenbuf[0] = '%';
6160
6161             /* Warn about @ where they meant $. */
6162             if (*s == '[' || *s == '{') {
6163                 if (ckWARN(WARN_SYNTAX)) {
6164                     S_check_scalar_slice(aTHX_ s);
6165                 }
6166             }
6167         }
6168         PL_expect = XOPERATOR;
6169         force_ident_maybe_lex('@');
6170         TERM('@');
6171
6172      case '/':                  /* may be division, defined-or, or pattern */
6173         if ((PL_expect == XOPERATOR || PL_expect == XTERMORDORDOR) && s[1] == '/') {
6174             if (!PL_lex_allbrackets && PL_lex_fakeeof >=
6175                     (s[2] == '=' ? LEX_FAKEEOF_ASSIGN : LEX_FAKEEOF_LOGIC))
6176                 TOKEN(0);
6177             s += 2;
6178             AOPERATOR(DORDOR);
6179         }
6180         else if (PL_expect == XOPERATOR) {
6181             s++;
6182             if (*s == '=' && !PL_lex_allbrackets &&
6183                 PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN) {
6184                 s--;
6185                 TOKEN(0);
6186             }
6187             Mop(OP_DIVIDE);
6188         }
6189         else {
6190             /* Disable warning on "study /blah/" */
6191             if (PL_oldoldbufptr == PL_last_uni
6192              && (*PL_last_uni != 's' || s - PL_last_uni < 5
6193                  || memNE(PL_last_uni, "study", 5)
6194                  || isWORDCHAR_lazy_if(PL_last_uni+5,UTF)
6195              ))
6196                 check_uni();
6197             s = scan_pat(s,OP_MATCH);
6198             TERM(sublex_start());
6199         }
6200
6201      case '?':                  /* conditional */
6202         s++;
6203         if (!PL_lex_allbrackets &&
6204             PL_lex_fakeeof >= LEX_FAKEEOF_IFELSE) {
6205             s--;
6206             TOKEN(0);
6207         }
6208         PL_lex_allbrackets++;
6209         OPERATOR('?');
6210
6211     case '.':
6212         if (PL_lex_formbrack && PL_lex_brackets == PL_lex_formbrack
6213 #ifdef PERL_STRICT_CR
6214             && s[1] == '\n'
6215 #else
6216             && (s[1] == '\n' || (s[1] == '\r' && s[2] == '\n'))
6217 #endif
6218             && (s == PL_linestart || s[-1] == '\n') )
6219         {
6220             PL_expect = XSTATE;
6221             formbrack = 2; /* dot seen where arguments expected */
6222             goto rightbracket;
6223         }
6224         if (PL_expect == XSTATE && s[1] == '.' && s[2] == '.') {
6225             s += 3;
6226             OPERATOR(YADAYADA);
6227         }
6228         if (PL_expect == XOPERATOR || !isDIGIT(s[1])) {
6229             char tmp = *s++;
6230             if (*s == tmp) {
6231                 if (!PL_lex_allbrackets &&
6232                         PL_lex_fakeeof >= LEX_FAKEEOF_RANGE) {
6233                     s--;
6234                     TOKEN(0);
6235                 }
6236                 s++;
6237                 if (*s == tmp) {
6238                     s++;
6239                     pl_yylval.ival = OPf_SPECIAL;
6240                 }
6241                 else
6242                     pl_yylval.ival = 0;
6243                 OPERATOR(DOTDOT);
6244             }
6245             if (*s == '=' && !PL_lex_allbrackets &&
6246                     PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN) {
6247                 s--;
6248                 TOKEN(0);
6249             }
6250             Aop(OP_CONCAT);
6251         }
6252         /* FALLTHROUGH */
6253     case '0': case '1': case '2': case '3': case '4':
6254     case '5': case '6': case '7': case '8': case '9':
6255         s = scan_num(s, &pl_yylval);
6256         DEBUG_T( { printbuf("### Saw number in %s\n", s); } );
6257         if (PL_expect == XOPERATOR)
6258             no_op("Number",s);
6259         TERM(THING);
6260
6261     case '\'':
6262         s = scan_str(s,FALSE,FALSE,FALSE,NULL);
6263         if (!s)
6264             missingterm(NULL);
6265         COPLINE_SET_FROM_MULTI_END;
6266         DEBUG_T( { printbuf("### Saw string before %s\n", s); } );
6267         if (PL_expect == XOPERATOR) {
6268             if (PL_lex_formbrack && PL_lex_brackets == PL_lex_formbrack) {
6269                 return deprecate_commaless_var_list();
6270             }
6271             else
6272                 no_op("String",s);
6273         }
6274         pl_yylval.ival = OP_CONST;
6275         TERM(sublex_start());
6276
6277     case '"':
6278         s = scan_str(s,FALSE,FALSE,FALSE,NULL);
6279         DEBUG_T( {
6280             if (s)
6281                 printbuf("### Saw string before %s\n", s);
6282             else
6283                 PerlIO_printf(Perl_debug_log,
6284                              "### Saw unterminated string\n");
6285         } );
6286         if (PL_expect == XOPERATOR) {
6287             if (PL_lex_formbrack && PL_lex_brackets == PL_lex_formbrack) {
6288                 return deprecate_commaless_var_list();
6289             }
6290             else
6291                 no_op("String",s);
6292         }
6293         if (!s)
6294             missingterm(NULL);
6295         pl_yylval.ival = OP_CONST;
6296         /* FIXME. I think that this can be const if char *d is replaced by
6297            more localised variables.  */
6298         for (d = SvPV(PL_lex_stuff, len); len; len--, d++) {
6299             if (*d == '$' || *d == '@' || *d == '\\' || !UTF8_IS_INVARIANT((U8)*d)) {
6300                 pl_yylval.ival = OP_STRINGIFY;
6301                 break;
6302             }
6303         }
6304         if (pl_yylval.ival == OP_CONST)
6305             COPLINE_SET_FROM_MULTI_END;
6306         TERM(sublex_start());
6307
6308     case '`':
6309         s = scan_str(s,FALSE,FALSE,FALSE,NULL);
6310         DEBUG_T( { printbuf("### Saw backtick string before %s\n", s); } );
6311         if (PL_expect == XOPERATOR)
6312             no_op("Backticks",s);
6313         if (!s)
6314             missingterm(NULL);
6315         pl_yylval.ival = OP_BACKTICK;
6316         TERM(sublex_start());
6317
6318     case '\\':
6319         s++;
6320         if (PL_lex_inwhat == OP_SUBST && PL_lex_repl == PL_linestr
6321          && isDIGIT(*s))
6322             Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX),"Can't use \\%c to mean $%c in expression",
6323                            *s, *s);
6324         if (PL_expect == XOPERATOR)
6325             no_op("Backslash",s);
6326         OPERATOR(REFGEN);
6327
6328     case 'v':
6329         if (isDIGIT(s[1]) && PL_expect != XOPERATOR) {
6330             char *start = s + 2;
6331             while (isDIGIT(*start) || *start == '_')
6332                 start++;
6333             if (*start == '.' && isDIGIT(start[1])) {
6334                 s = scan_num(s, &pl_yylval);
6335                 TERM(THING);
6336             }
6337             else if ((*start == ':' && start[1] == ':')
6338                   || (PL_expect == XSTATE && *start == ':'))
6339                 goto keylookup;
6340             else if (PL_expect == XSTATE) {
6341                 d = start;
6342                 while (d < PL_bufend && isSPACE(*d)) d++;
6343                 if (*d == ':') goto keylookup;
6344             }
6345             /* avoid v123abc() or $h{v1}, allow C<print v10;> */
6346             if (!isALPHA(*start) && (PL_expect == XTERM
6347                         || PL_expect == XREF || PL_expect == XSTATE
6348                         || PL_expect == XTERMORDORDOR)) {
6349                 GV *const gv = gv_fetchpvn_flags(s, start - s,
6350                                                     UTF ? SVf_UTF8 : 0, SVt_PVCV);
6351                 if (!gv) {
6352                     s = scan_num(s, &pl_yylval);
6353                     TERM(THING);
6354                 }
6355             }
6356         }
6357         goto keylookup;
6358     case 'x':
6359         if (isDIGIT(s[1]) && PL_expect == XOPERATOR) {
6360             s++;
6361             Mop(OP_REPEAT);
6362         }
6363         goto keylookup;
6364
6365     case '_':
6366     case 'a': case 'A':
6367     case 'b': case 'B':
6368     case 'c': case 'C':
6369     case 'd': case 'D':
6370     case 'e': case 'E':
6371     case 'f': case 'F':
6372     case 'g': case 'G':
6373     case 'h': case 'H':
6374     case 'i': case 'I':
6375     case 'j': case 'J':
6376     case 'k': case 'K':
6377     case 'l': case 'L':
6378     case 'm': case 'M':
6379     case 'n': case 'N':
6380     case 'o': case 'O':
6381     case 'p': case 'P':
6382     case 'q': case 'Q':
6383     case 'r': case 'R':
6384     case 's': case 'S':
6385     case 't': case 'T':
6386     case 'u': case 'U':
6387               case 'V':
6388     case 'w': case 'W':
6389               case 'X':
6390     case 'y': case 'Y':
6391     case 'z': case 'Z':
6392
6393       keylookup: {
6394         bool anydelim;
6395         bool lex;
6396         I32 tmp;
6397         SV *sv;
6398         CV *cv;
6399         PADOFFSET off;
6400         OP *rv2cv_op;
6401
6402         lex = FALSE;
6403         orig_keyword = 0;
6404         off = 0;
6405         sv = NULL;
6406         cv = NULL;
6407         gv = NULL;
6408         gvp = NULL;
6409         rv2cv_op = NULL;
6410
6411         PL_bufptr = s;
6412         s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE, &len);
6413
6414         /* Some keywords can be followed by any delimiter, including ':' */
6415         anydelim = word_takes_any_delimeter(PL_tokenbuf, len);
6416
6417         /* x::* is just a word, unless x is "CORE" */
6418         if (!anydelim && *s == ':' && s[1] == ':') {
6419             if (strEQ(PL_tokenbuf, "CORE")) goto case_KEY_CORE;
6420             goto just_a_word;
6421         }
6422
6423         d = s;
6424         while (d < PL_bufend && isSPACE(*d))
6425                 d++;    /* no comments skipped here, or s### is misparsed */
6426
6427         /* Is this a word before a => operator? */
6428         if (*d == '=' && d[1] == '>') {
6429           fat_arrow:
6430             CLINE;
6431             pl_yylval.opval
6432                 = (OP*)newSVOP(OP_CONST, 0,
6433                                S_newSV_maybe_utf8(aTHX_ PL_tokenbuf, len));
6434             pl_yylval.opval->op_private = OPpCONST_BARE;
6435             TERM(WORD);
6436         }
6437
6438         /* Check for plugged-in keyword */
6439         {
6440             OP *o;
6441             int result;
6442             char *saved_bufptr = PL_bufptr;
6443             PL_bufptr = s;
6444             result = PL_keyword_plugin(aTHX_ PL_tokenbuf, len, &o);
6445             s = PL_bufptr;
6446             if (result == KEYWORD_PLUGIN_DECLINE) {
6447                 /* not a plugged-in keyword */
6448                 PL_bufptr = saved_bufptr;
6449             } else if (result == KEYWORD_PLUGIN_STMT) {
6450                 pl_yylval.opval = o;
6451                 CLINE;
6452                 if (!PL_nexttoke) PL_expect = XSTATE;
6453                 return REPORT(PLUGSTMT);
6454             } else if (result == KEYWORD_PLUGIN_EXPR) {
6455                 pl_yylval.opval = o;
6456                 CLINE;
6457                 if (!PL_nexttoke) PL_expect = XOPERATOR;
6458                 return REPORT(PLUGEXPR);
6459             } else {
6460                 Perl_croak(aTHX_ "Bad plugin affecting keyword '%s'",
6461                                         PL_tokenbuf);
6462             }
6463         }
6464
6465         /* Check for built-in keyword */
6466         tmp = keyword(PL_tokenbuf, len, 0);
6467
6468         /* Is this a label? */
6469         if (!anydelim && PL_expect == XSTATE
6470               && d < PL_bufend && *d == ':' && *(d + 1) != ':') {
6471             s = d + 1;
6472             pl_yylval.pval = savepvn(PL_tokenbuf, len+1);
6473             pl_yylval.pval[len] = '\0';
6474             pl_yylval.pval[len+1] = UTF ? 1 : 0;
6475             CLINE;
6476             TOKEN(LABEL);
6477         }
6478
6479         /* Check for lexical sub */
6480         if (PL_expect != XOPERATOR) {
6481             char tmpbuf[sizeof PL_tokenbuf + 1];
6482             *tmpbuf = '&';
6483             Copy(PL_tokenbuf, tmpbuf+1, len, char);
6484             off = pad_findmy_pvn(tmpbuf, len+1, 0);
6485             if (off != NOT_IN_PAD) {
6486                 assert(off); /* we assume this is boolean-true below */
6487                 if (PAD_COMPNAME_FLAGS_isOUR(off)) {
6488                     HV *  const stash = PAD_COMPNAME_OURSTASH(off);
6489                     HEK * const stashname = HvNAME_HEK(stash);
6490                     sv = newSVhek(stashname);
6491                     sv_catpvs(sv, "::");
6492                     sv_catpvn_flags(sv, PL_tokenbuf, len,
6493                                     (UTF ? SV_CATUTF8 : SV_CATBYTES));
6494                     gv = gv_fetchsv(sv, GV_NOADD_NOINIT | SvUTF8(sv),
6495                                     SVt_PVCV);
6496                     off = 0;
6497                     if (!gv) {
6498                         sv_free(sv);
6499                         sv = NULL;
6500                         goto just_a_word;
6501                     }
6502                 }
6503                 else {
6504                     rv2cv_op = newOP(OP_PADANY, 0);
6505                     rv2cv_op->op_targ = off;
6506                     cv = find_lexical_cv(off);
6507                 }
6508                 lex = TRUE;
6509                 goto just_a_word;
6510             }
6511             off = 0;
6512         }
6513
6514         if (tmp < 0) {                  /* second-class keyword? */
6515             GV *ogv = NULL;     /* override (winner) */
6516             GV *hgv = NULL;     /* hidden (loser) */
6517             if (PL_expect != XOPERATOR && (*s != ':' || s[1] != ':')) {
6518                 CV *cv;
6519                 if ((gv = gv_fetchpvn_flags(PL_tokenbuf, len,
6520                                             (UTF ? SVf_UTF8 : 0)|GV_NOTQUAL,
6521                                             SVt_PVCV)) &&
6522                     (cv = GvCVu(gv)))
6523                 {
6524                     if (GvIMPORTED_CV(gv))
6525                         ogv = gv;
6526                     else if (! CvMETHOD(cv))
6527                         hgv = gv;
6528                 }
6529                 if (!ogv &&
6530                     (gvp = (GV**)hv_fetch(PL_globalstash, PL_tokenbuf,
6531                                           len, FALSE)) &&
6532                     (gv = *gvp) && (
6533                         isGV_with_GP(gv)
6534                             ? GvCVu(gv) && GvIMPORTED_CV(gv)
6535                             :   SvPCS_IMPORTED(gv)
6536                              && (gv_init(gv, PL_globalstash, PL_tokenbuf,
6537                                          len, 0), 1)
6538                    ))
6539                 {
6540                     ogv = gv;
6541                 }
6542             }
6543             if (ogv) {
6544                 orig_keyword = tmp;
6545                 tmp = 0;                /* overridden by import or by GLOBAL */
6546             }
6547             else if (gv && !gvp
6548                      && -tmp==KEY_lock  /* XXX generalizable kludge */
6549                      && GvCVu(gv))
6550             {
6551                 tmp = 0;                /* any sub overrides "weak" keyword */
6552             }
6553             else {                      /* no override */
6554                 tmp = -tmp;
6555                 if (tmp == KEY_dump) {
6556                     Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
6557                                    "dump() better written as CORE::dump()");
6558                 }
6559                 gv = NULL;
6560                 gvp = 0;
6561                 if (hgv && tmp != KEY_x)        /* never ambiguous */
6562                     Perl_ck_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
6563                                    "Ambiguous call resolved as CORE::%s(), "
6564                                    "qualify as such or use &",
6565                                    GvENAME(hgv));
6566             }
6567         }
6568
6569         if (tmp && tmp != KEY___DATA__ && tmp != KEY___END__
6570          && (!anydelim || *s != '#')) {
6571             /* no override, and not s### either; skipspace is safe here
6572              * check for => on following line */
6573             bool arrow;
6574             STRLEN bufoff = PL_bufptr - SvPVX(PL_linestr);
6575             STRLEN   soff = s         - SvPVX(PL_linestr);
6576             s = skipspace_flags(s, LEX_NO_INCLINE);
6577             arrow = *s == '=' && s[1] == '>';
6578             PL_bufptr = SvPVX(PL_linestr) + bufoff;
6579             s         = SvPVX(PL_linestr) +   soff;
6580             if (arrow)
6581                 goto fat_arrow;
6582         }
6583
6584       reserved_word:
6585         switch (tmp) {
6586
6587         default:                        /* not a keyword */
6588             /* Trade off - by using this evil construction we can pull the
6589                variable gv into the block labelled keylookup. If not, then
6590                we have to give it function scope so that the goto from the
6591                earlier ':' case doesn't bypass the initialisation.  */
6592             if (0) {
6593             just_a_word_zero_gv:
6594                 sv = NULL;
6595                 cv = NULL;
6596                 gv = NULL;
6597                 gvp = NULL;
6598                 rv2cv_op = NULL;
6599                 orig_keyword = 0;
6600                 lex = 0;
6601                 off = 0;
6602             }
6603           just_a_word: {
6604                 int pkgname = 0;
6605                 const char lastchar = (PL_bufptr == PL_oldoldbufptr ? 0 : PL_bufptr[-1]);
6606                 bool safebw;
6607
6608
6609                 /* Get the rest if it looks like a package qualifier */
6610
6611                 if (*s == '\'' || (*s == ':' && s[1] == ':')) {
6612                     STRLEN morelen;
6613                     s = scan_word(s, PL_tokenbuf + len, sizeof PL_tokenbuf - len,
6614                                   TRUE, &morelen);
6615                     if (!morelen)
6616                         Perl_croak(aTHX_ "Bad name after %"UTF8f"%s",
6617                                 UTF8fARG(UTF, len, PL_tokenbuf),
6618                                 *s == '\'' ? "'" : "::");
6619                     len += morelen;
6620                     pkgname = 1;
6621                 }
6622
6623                 if (PL_expect == XOPERATOR) {
6624                     if (PL_bufptr == PL_linestart) {
6625                         CopLINE_dec(PL_curcop);
6626                         Perl_warner(aTHX_ packWARN(WARN_SEMICOLON), "%s", PL_warn_nosemi);
6627                         CopLINE_inc(PL_curcop);
6628                     }
6629                     else
6630                         no_op("Bareword",s);
6631                 }
6632
6633                 /* See if the name is "Foo::",
6634                    in which case Foo is a bareword
6635                    (and a package name). */
6636
6637                 if (len > 2 &&
6638                     PL_tokenbuf[len - 2] == ':' && PL_tokenbuf[len - 1] == ':')
6639                 {
6640                     if (ckWARN(WARN_BAREWORD)
6641                         && ! gv_fetchpvn_flags(PL_tokenbuf, len, UTF ? SVf_UTF8 : 0, SVt_PVHV))
6642                         Perl_warner(aTHX_ packWARN(WARN_BAREWORD),
6643                           "Bareword \"%"UTF8f"\" refers to nonexistent package",
6644                            UTF8fARG(UTF, len, PL_tokenbuf));
6645                     len -= 2;
6646                     PL_tokenbuf[len] = '\0';
6647                     gv = NULL;
6648                     gvp = 0;
6649                     safebw = TRUE;
6650                 }
6651                 else {
6652                     safebw = FALSE;
6653                 }
6654
6655                 /* if we saw a global override before, get the right name */
6656
6657                 if (!sv)
6658                   sv = S_newSV_maybe_utf8(aTHX_ PL_tokenbuf,
6659                                                 len);
6660                 if (gvp) {
6661                     SV * const tmp_sv = sv;
6662                     sv = newSVpvs("CORE::GLOBAL::");
6663                     sv_catsv(sv, tmp_sv);
6664                     SvREFCNT_dec(tmp_sv);
6665                 }
6666
6667
6668                 /* Presume this is going to be a bareword of some sort. */
6669                 CLINE;
6670                 pl_yylval.opval = (OP*)newSVOP(OP_CONST, 0, sv);
6671                 pl_yylval.opval->op_private = OPpCONST_BARE;
6672
6673                 /* And if "Foo::", then that's what it certainly is. */
6674                 if (safebw)
6675                     goto safe_bareword;
6676
6677                 if (!off)
6678                 {
6679                     OP *const_op = newSVOP(OP_CONST, 0, SvREFCNT_inc_NN(sv));
6680                     const_op->op_private = OPpCONST_BARE;
6681                     rv2cv_op =
6682                         newCVREF(OPpMAY_RETURN_CONSTANT<<8, const_op);
6683                     cv = lex
6684                         ? isGV(gv)
6685                             ? GvCV(gv)
6686                             : SvROK(gv) && SvTYPE(SvRV(gv)) == SVt_PVCV
6687                                 ? (CV *)SvRV(gv)
6688                                 : ((CV *)gv)
6689                         : rv2cv_op_cv(rv2cv_op, RV2CVOPCV_RETURN_STUB);
6690                 }
6691
6692                 /* Use this var to track whether intuit_method has been
6693                    called.  intuit_method returns 0 or > 255.  */
6694                 tmp = 1;
6695
6696                 /* See if it's the indirect object for a list operator. */
6697
6698                 if (PL_oldoldbufptr &&
6699                     PL_oldoldbufptr < PL_bufptr &&
6700                     (PL_oldoldbufptr == PL_last_lop
6701                      || PL_oldoldbufptr == PL_last_uni) &&
6702                     /* NO SKIPSPACE BEFORE HERE! */
6703                     (PL_expect == XREF ||
6704                      ((PL_opargs[PL_last_lop_op] >> OASHIFT)& 7) == OA_FILEREF))
6705                 {
6706                     bool immediate_paren = *s == '(';
6707
6708                     /* (Now we can afford to cross potential line boundary.) */
6709                     s = skipspace(s);
6710
6711                     /* Two barewords in a row may indicate method call. */
6712
6713                     if ((isIDFIRST_lazy_if(s,UTF) || *s == '$') &&
6714                         (tmp = intuit_method(s, lex ? NULL : sv, cv))) {
6715                         goto method;
6716                     }
6717
6718                     /* If not a declared subroutine, it's an indirect object. */
6719                     /* (But it's an indir obj regardless for sort.) */
6720                     /* Also, if "_" follows a filetest operator, it's a bareword */
6721
6722                     if (
6723                         ( !immediate_paren && (PL_last_lop_op == OP_SORT ||
6724                          (!cv &&
6725                         (PL_last_lop_op != OP_MAPSTART &&
6726                          PL_last_lop_op != OP_GREPSTART))))
6727                        || (PL_tokenbuf[0] == '_' && PL_tokenbuf[1] == '\0'
6728                             && ((PL_opargs[PL_last_lop_op] & OA_CLASS_MASK) == OA_FILESTATOP))
6729                        )
6730                     {
6731                         PL_expect = (PL_last_lop == PL_oldoldbufptr) ? XTERM : XOPERATOR;
6732                         goto bareword;
6733                     }
6734                 }
6735
6736                 PL_expect = XOPERATOR;
6737                 s = skipspace(s);
6738
6739                 /* Is this a word before a => operator? */
6740                 if (*s == '=' && s[1] == '>' && !pkgname) {
6741                     op_free(rv2cv_op);
6742                     CLINE;
6743                     if (gvp || (lex && !off)) {
6744                         assert (cSVOPx(pl_yylval.opval)->op_sv == sv);
6745                         /* This is our own scalar, created a few lines
6746                            above, so this is safe. */
6747                         SvREADONLY_off(sv);
6748                         sv_setpv(sv, PL_tokenbuf);
6749                         if (UTF && !IN_BYTES
6750                          && is_utf8_string((U8*)PL_tokenbuf, len))
6751                               SvUTF8_on(sv);
6752                         SvREADONLY_on(sv);
6753                     }
6754                     TERM(WORD);
6755                 }
6756
6757                 /* If followed by a paren, it's certainly a subroutine. */
6758                 if (*s == '(') {
6759                     CLINE;
6760                     if (cv) {
6761                         d = s + 1;
6762                         while (SPACE_OR_TAB(*d))
6763                             d++;
6764                         if (*d == ')' && (sv = cv_const_sv_or_av(cv))) {
6765                             s = d + 1;
6766                             goto its_constant;
6767                         }
6768                     }
6769                     NEXTVAL_NEXTTOKE.opval =
6770                         off ? rv2cv_op : pl_yylval.opval;
6771                     if (off)
6772                          op_free(pl_yylval.opval), force_next(PRIVATEREF);
6773                     else op_free(rv2cv_op),        force_next(WORD);
6774                     pl_yylval.ival = 0;
6775                     TOKEN('&');
6776                 }
6777
6778                 /* If followed by var or block, call it a method (unless sub) */
6779
6780                 if ((*s == '$' || *s == '{') && !cv) {
6781                     op_free(rv2cv_op);
6782                     PL_last_lop = PL_oldbufptr;
6783                     PL_last_lop_op = OP_METHOD;
6784                     if (!PL_lex_allbrackets &&
6785                             PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
6786                         PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
6787                     PL_expect = XBLOCKTERM;
6788                     PL_bufptr = s;
6789                     return REPORT(METHOD);
6790                 }
6791
6792                 /* If followed by a bareword, see if it looks like indir obj. */
6793
6794                 if (tmp == 1 && !orig_keyword
6795                         && (isIDFIRST_lazy_if(s,UTF) || *s == '$')
6796                         && (tmp = intuit_method(s, lex ? NULL : sv, cv))) {
6797                   method:
6798                     if (lex && !off) {
6799                         assert(cSVOPx(pl_yylval.opval)->op_sv == sv);
6800                         SvREADONLY_off(sv);
6801                         sv_setpvn(sv, PL_tokenbuf, len);
6802                         if (UTF && !IN_BYTES
6803                          && is_utf8_string((U8*)PL_tokenbuf, len))
6804                             SvUTF8_on (sv);
6805                         else SvUTF8_off(sv);
6806                     }
6807                     op_free(rv2cv_op);
6808                     if (tmp == METHOD && !PL_lex_allbrackets &&
6809                             PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
6810                         PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
6811                     return REPORT(tmp);
6812                 }
6813
6814                 /* Not a method, so call it a subroutine (if defined) */
6815
6816                 if (cv) {
6817                     /* Check for a constant sub */
6818                     if ((sv = cv_const_sv_or_av(cv))) {
6819                   its_constant:
6820                         op_free(rv2cv_op);
6821                         SvREFCNT_dec(((SVOP*)pl_yylval.opval)->op_sv);
6822                         ((SVOP*)pl_yylval.opval)->op_sv = SvREFCNT_inc_simple(sv);
6823                         if (SvTYPE(sv) == SVt_PVAV)
6824                             pl_yylval.opval = newUNOP(OP_RV2AV, OPf_PARENS,
6825                                                       pl_yylval.opval);
6826                         else {
6827                             pl_yylval.opval->op_private = 0;
6828                             pl_yylval.opval->op_folded = 1;
6829                             pl_yylval.opval->op_flags |= OPf_SPECIAL;
6830                         }
6831                         TOKEN(WORD);
6832                     }
6833
6834                     op_free(pl_yylval.opval);
6835                     pl_yylval.opval =
6836                         off ? (OP *)newCVREF(0, rv2cv_op) : rv2cv_op;
6837                     pl_yylval.opval->op_private |= OPpENTERSUB_NOPAREN;
6838                     PL_last_lop = PL_oldbufptr;
6839                     PL_last_lop_op = OP_ENTERSUB;
6840                     /* Is there a prototype? */
6841                     if (
6842                         SvPOK(cv))
6843                     {
6844                         STRLEN protolen = CvPROTOLEN(cv);
6845                         const char *proto = CvPROTO(cv);
6846                         bool optional;
6847                         proto = S_strip_spaces(aTHX_ proto, &protolen);
6848                         if (!protolen)
6849                             TERM(FUNC0SUB);
6850                         if ((optional = *proto == ';'))
6851                           do
6852                             proto++;
6853                           while (*proto == ';');
6854                         if (
6855                             (
6856                                 (
6857                                     *proto == '$' || *proto == '_'
6858                                  || *proto == '*' || *proto == '+'
6859                                 )
6860                              && proto[1] == '\0'
6861                             )
6862                          || (
6863                              *proto == '\\' && proto[1] && proto[2] == '\0'
6864                             )
6865                         )
6866                             UNIPROTO(UNIOPSUB,optional);
6867                         if (*proto == '\\' && proto[1] == '[') {
6868                             const char *p = proto + 2;
6869                             while(*p && *p != ']')
6870                                 ++p;
6871                             if(*p == ']' && !p[1])
6872                                 UNIPROTO(UNIOPSUB,optional);
6873                         }
6874                         if (*proto == '&' && *s == '{') {
6875                             if (PL_curstash)
6876                                 sv_setpvs(PL_subname, "__ANON__");
6877                             else
6878                                 sv_setpvs(PL_subname, "__ANON__::__ANON__");
6879                             if (!PL_lex_allbrackets &&
6880                                     PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
6881                                 PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
6882                             PREBLOCK(LSTOPSUB);
6883                         }
6884                     }
6885                     NEXTVAL_NEXTTOKE.opval = pl_yylval.opval;
6886                     PL_expect = XTERM;
6887                     force_next(off ? PRIVATEREF : WORD);
6888                     if (!PL_lex_allbrackets &&
6889                             PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
6890                         PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
6891                     TOKEN(NOAMP);
6892                 }
6893
6894                 /* Call it a bare word */
6895
6896                 if (PL_hints & HINT_STRICT_SUBS)
6897                     pl_yylval.opval->op_private |= OPpCONST_STRICT;
6898                 else {
6899                 bareword:
6900                     /* after "print" and similar functions (corresponding to
6901                      * "F? L" in opcode.pl), whatever wasn't already parsed as
6902                      * a filehandle should be subject to "strict subs".
6903                      * Likewise for the optional indirect-object argument to system
6904                      * or exec, which can't be a bareword */
6905                     if ((PL_last_lop_op == OP_PRINT
6906                             || PL_last_lop_op == OP_PRTF
6907                             || PL_last_lop_op == OP_SAY
6908                             || PL_last_lop_op == OP_SYSTEM
6909                             || PL_last_lop_op == OP_EXEC)
6910                             && (PL_hints & HINT_STRICT_SUBS))
6911                         pl_yylval.opval->op_private |= OPpCONST_STRICT;
6912                     if (lastchar != '-') {
6913                         if (ckWARN(WARN_RESERVED)) {
6914                             d = PL_tokenbuf;
6915                             while (isLOWER(*d))
6916                                 d++;
6917                             if (!*d && !gv_stashpv(PL_tokenbuf, UTF ? SVf_UTF8 : 0))
6918                             {
6919                                 /* PL_warn_reserved is constant */
6920                                 GCC_DIAG_IGNORE(-Wformat-nonliteral);
6921                                 Perl_warner(aTHX_ packWARN(WARN_RESERVED), PL_warn_reserved,
6922                                        PL_tokenbuf);
6923                                 GCC_DIAG_RESTORE;
6924                             }
6925                         }
6926                     }
6927                 }
6928                 op_free(rv2cv_op);
6929
6930             safe_bareword:
6931                 if ((lastchar == '*' || lastchar == '%' || lastchar == '&')
6932                  && saw_infix_sigil) {
6933                     Perl_ck_warner_d(aTHX_ packWARN(WARN_AMBIGUOUS),
6934                                      "Operator or semicolon missing before %c%"UTF8f,
6935                                      lastchar,
6936                                      UTF8fARG(UTF, strlen(PL_tokenbuf),
6937                                               PL_tokenbuf));
6938                     Perl_ck_warner_d(aTHX_ packWARN(WARN_AMBIGUOUS),
6939                                      "Ambiguous use of %c resolved as operator %c",
6940                                      lastchar, lastchar);
6941                 }
6942                 TOKEN(WORD);
6943             }
6944
6945         case KEY___FILE__:
6946             FUN0OP(
6947                 (OP*)newSVOP(OP_CONST, 0, newSVpv(CopFILE(PL_curcop),0))
6948             );
6949
6950         case KEY___LINE__:
6951             FUN0OP(
6952                 (OP*)newSVOP(OP_CONST, 0,
6953                     Perl_newSVpvf(aTHX_ "%"IVdf, (IV)CopLINE(PL_curcop)))
6954             );
6955
6956         case KEY___PACKAGE__:
6957             FUN0OP(
6958                 (OP*)newSVOP(OP_CONST, 0,
6959                                         (PL_curstash
6960                                          ? newSVhek(HvNAME_HEK(PL_curstash))
6961                                          : &PL_sv_undef))
6962             );
6963
6964         case KEY___DATA__:
6965         case KEY___END__: {
6966             GV *gv;
6967             if (PL_rsfp && (!PL_in_eval || PL_tokenbuf[2] == 'D')) {
6968                 HV * const stash = PL_tokenbuf[2] == 'D' && PL_curstash
6969                                         ? PL_curstash
6970                                         : PL_defstash;
6971                 gv = (GV *)*hv_fetchs(stash, "DATA", 1);
6972                 if (!isGV(gv))
6973                     gv_init(gv,stash,"DATA",4,0);
6974                 GvMULTI_on(gv);
6975                 if (!GvIO(gv))
6976                     GvIOp(gv) = newIO();
6977                 IoIFP(GvIOp(gv)) = PL_rsfp;
6978 #if defined(HAS_FCNTL) && defined(F_SETFD)
6979                 {
6980                     const int fd = PerlIO_fileno(PL_rsfp);
6981                     fcntl(fd,F_SETFD,fd >= 3);
6982                 }
6983 #endif
6984                 /* Mark this internal pseudo-handle as clean */
6985                 IoFLAGS(GvIOp(gv)) |= IOf_UNTAINT;
6986                 if ((PerlIO*)PL_rsfp == PerlIO_stdin())
6987                     IoTYPE(GvIOp(gv)) = IoTYPE_STD;
6988                 else
6989                     IoTYPE(GvIOp(gv)) = IoTYPE_RDONLY;
6990 #if defined(WIN32) && !defined(PERL_TEXTMODE_SCRIPTS)
6991                 /* if the script was opened in binmode, we need to revert
6992                  * it to text mode for compatibility; but only iff it has CRs
6993                  * XXX this is a questionable hack at best. */
6994                 if (PL_bufend-PL_bufptr > 2
6995                     && PL_bufend[-1] == '\n' && PL_bufend[-2] == '\r')
6996                 {
6997                     Off_t loc = 0;
6998                     if (IoTYPE(GvIOp(gv)) == IoTYPE_RDONLY) {
6999                         loc = PerlIO_tell(PL_rsfp);
7000                         (void)PerlIO_seek(PL_rsfp, 0L, 0);
7001                     }
7002 #ifdef NETWARE
7003                         if (PerlLIO_setmode(PL_rsfp, O_TEXT) != -1) {
7004 #else
7005                     if (PerlLIO_setmode(PerlIO_fileno(PL_rsfp), O_TEXT) != -1) {
7006 #endif  /* NETWARE */
7007                         if (loc > 0)
7008                             PerlIO_seek(PL_rsfp, loc, 0);
7009                     }
7010                 }
7011 #endif
7012 #ifdef PERLIO_LAYERS
7013                 if (!IN_BYTES) {
7014                     if (UTF)
7015                         PerlIO_apply_layers(aTHX_ PL_rsfp, NULL, ":utf8");
7016                     else if (IN_ENCODING) {
7017                         SV *name;
7018                         dSP;
7019                         ENTER;
7020                         SAVETMPS;
7021                         PUSHMARK(sp);
7022                         XPUSHs(_get_encoding());
7023                         PUTBACK;
7024                         call_method("name", G_SCALAR);
7025                         SPAGAIN;
7026                         name = POPs;
7027                         PUTBACK;
7028                         PerlIO_apply_layers(aTHX_ PL_rsfp, NULL,
7029                                             Perl_form(aTHX_ ":encoding(%"SVf")",
7030                                                       SVfARG(name)));
7031                         FREETMPS;
7032                         LEAVE;
7033                     }
7034                 }
7035 #endif
7036                 PL_rsfp = NULL;
7037             }
7038             goto fake_eof;
7039         }
7040
7041         case KEY___SUB__:
7042             FUN0OP(CvCLONE(PL_compcv)
7043                         ? newOP(OP_RUNCV, 0)
7044                         : newPVOP(OP_RUNCV,0,NULL));
7045
7046         case KEY_AUTOLOAD:
7047         case KEY_DESTROY:
7048         case KEY_BEGIN:
7049         case KEY_UNITCHECK:
7050         case KEY_CHECK:
7051         case KEY_INIT:
7052         case KEY_END:
7053             if (PL_expect == XSTATE) {
7054                 s = PL_bufptr;
7055                 goto really_sub;
7056             }
7057             goto just_a_word;
7058
7059         case_KEY_CORE:
7060             {
7061                 STRLEN olen = len;
7062                 d = s;
7063                 s += 2;
7064                 s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE, &len);
7065                 if ((*s == ':' && s[1] == ':')
7066                  || (!(tmp = keyword(PL_tokenbuf, len, 1)) && *s == '\''))
7067                 {
7068                     s = d;
7069                     len = olen;
7070                     Copy(PL_bufptr, PL_tokenbuf, olen, char);
7071                     goto just_a_word;
7072                 }
7073                 if (!tmp)
7074                     Perl_croak(aTHX_ "CORE::%"UTF8f" is not a keyword",
7075                                       UTF8fARG(UTF, len, PL_tokenbuf));
7076                 if (tmp < 0)
7077                     tmp = -tmp;
7078                 else if (tmp == KEY_require || tmp == KEY_do
7079                       || tmp == KEY_glob)
7080                     /* that's a way to remember we saw "CORE::" */
7081                     orig_keyword = tmp;
7082                 goto reserved_word;
7083             }
7084
7085         case KEY_abs:
7086             UNI(OP_ABS);
7087
7088         case KEY_alarm:
7089             UNI(OP_ALARM);
7090
7091         case KEY_accept:
7092             LOP(OP_ACCEPT,XTERM);
7093
7094         case KEY_and:
7095             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_LOWLOGIC)
7096                 return REPORT(0);
7097             OPERATOR(ANDOP);
7098
7099         case KEY_atan2:
7100             LOP(OP_ATAN2,XTERM);
7101
7102         case KEY_bind:
7103             LOP(OP_BIND,XTERM);
7104
7105         case KEY_binmode:
7106             LOP(OP_BINMODE,XTERM);
7107
7108         case KEY_bless:
7109             LOP(OP_BLESS,XTERM);
7110
7111         case KEY_break:
7112             FUN0(OP_BREAK);
7113
7114         case KEY_chop:
7115             UNI(OP_CHOP);
7116
7117         case KEY_continue:
7118                     /* We have to disambiguate the two senses of
7119                       "continue". If the next token is a '{' then
7120                       treat it as the start of a continue block;
7121                       otherwise treat it as a control operator.
7122                      */
7123                     s = skipspace(s);
7124                     if (*s == '{')
7125             PREBLOCK(CONTINUE);
7126                     else
7127                         FUN0(OP_CONTINUE);
7128
7129         case KEY_chdir:
7130             /* may use HOME */
7131             (void)gv_fetchpvs("ENV", GV_ADD|GV_NOTQUAL, SVt_PVHV);
7132             UNI(OP_CHDIR);
7133
7134         case KEY_close:
7135             UNI(OP_CLOSE);
7136
7137         case KEY_closedir:
7138             UNI(OP_CLOSEDIR);
7139
7140         case KEY_cmp:
7141             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
7142                 return REPORT(0);
7143             Eop(OP_SCMP);
7144
7145         case KEY_caller:
7146             UNI(OP_CALLER);
7147
7148         case KEY_crypt:
7149 #ifdef FCRYPT
7150             if (!PL_cryptseen) {
7151                 PL_cryptseen = TRUE;
7152                 init_des();
7153             }
7154 #endif
7155             LOP(OP_CRYPT,XTERM);
7156
7157         case KEY_chmod:
7158             LOP(OP_CHMOD,XTERM);
7159
7160         case KEY_chown:
7161             LOP(OP_CHOWN,XTERM);
7162
7163         case KEY_connect:
7164             LOP(OP_CONNECT,XTERM);
7165
7166         case KEY_chr:
7167             UNI(OP_CHR);
7168
7169         case KEY_cos:
7170             UNI(OP_COS);
7171
7172         case KEY_chroot:
7173             UNI(OP_CHROOT);
7174
7175         case KEY_default:
7176             PREBLOCK(DEFAULT);
7177
7178         case KEY_do:
7179             s = skipspace(s);
7180             if (*s == '{')
7181                 PRETERMBLOCK(DO);
7182             if (*s != '\'') {
7183                 *PL_tokenbuf = '&';
7184                 d = scan_word(s, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1,
7185                               1, &len);
7186                 if (len && (len != 4 || strNE(PL_tokenbuf+1, "CORE"))
7187                  && !keyword(PL_tokenbuf + 1, len, 0)) {
7188                     d = skipspace(d);
7189                     if (*d == '(') {
7190                         force_ident_maybe_lex('&');
7191                         s = d;
7192                     }
7193                 }
7194             }
7195             if (orig_keyword == KEY_do) {
7196                 orig_keyword = 0;
7197                 pl_yylval.ival = 1;
7198             }
7199             else
7200                 pl_yylval.ival = 0;
7201             OPERATOR(DO);
7202
7203         case KEY_die:
7204             PL_hints |= HINT_BLOCK_SCOPE;
7205             LOP(OP_DIE,XTERM);
7206
7207         case KEY_defined:
7208             UNI(OP_DEFINED);
7209
7210         case KEY_delete:
7211             UNI(OP_DELETE);
7212
7213         case KEY_dbmopen:
7214             Perl_populate_isa(aTHX_ STR_WITH_LEN("AnyDBM_File::ISA"),
7215                               STR_WITH_LEN("NDBM_File::"),
7216                               STR_WITH_LEN("DB_File::"),
7217                               STR_WITH_LEN("GDBM_File::"),
7218                               STR_WITH_LEN("SDBM_File::"),
7219                               STR_WITH_LEN("ODBM_File::"),
7220                               NULL);
7221             LOP(OP_DBMOPEN,XTERM);
7222
7223         case KEY_dbmclose:
7224             UNI(OP_DBMCLOSE);
7225
7226         case KEY_dump:
7227             LOOPX(OP_DUMP);
7228
7229         case KEY_else:
7230             PREBLOCK(ELSE);
7231
7232         case KEY_elsif:
7233             pl_yylval.ival = CopLINE(PL_curcop);
7234             OPERATOR(ELSIF);
7235
7236         case KEY_eq:
7237             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
7238                 return REPORT(0);
7239             Eop(OP_SEQ);
7240
7241         case KEY_exists:
7242             UNI(OP_EXISTS);
7243         
7244         case KEY_exit:
7245             UNI(OP_EXIT);
7246
7247         case KEY_eval:
7248             s = skipspace(s);
7249             if (*s == '{') { /* block eval */
7250                 PL_expect = XTERMBLOCK;
7251                 UNIBRACK(OP_ENTERTRY);
7252             }
7253             else { /* string eval */
7254                 PL_expect = XTERM;
7255                 UNIBRACK(OP_ENTEREVAL);
7256             }
7257
7258         case KEY_evalbytes:
7259             PL_expect = XTERM;
7260             UNIBRACK(-OP_ENTEREVAL);
7261
7262         case KEY_eof:
7263             UNI(OP_EOF);
7264
7265         case KEY_exp:
7266             UNI(OP_EXP);
7267
7268         case KEY_each:
7269             UNI(OP_EACH);
7270
7271         case KEY_exec:
7272             LOP(OP_EXEC,XREF);
7273
7274         case KEY_endhostent:
7275             FUN0(OP_EHOSTENT);
7276
7277         case KEY_endnetent:
7278             FUN0(OP_ENETENT);
7279
7280         case KEY_endservent:
7281             FUN0(OP_ESERVENT);
7282
7283         case KEY_endprotoent:
7284             FUN0(OP_EPROTOENT);
7285
7286         case KEY_endpwent:
7287             FUN0(OP_EPWENT);
7288
7289         case KEY_endgrent:
7290             FUN0(OP_EGRENT);
7291
7292         case KEY_for:
7293         case KEY_foreach:
7294             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
7295                 return REPORT(0);
7296             pl_yylval.ival = CopLINE(PL_curcop);
7297             s = skipspace(s);
7298             if (PL_expect == XSTATE && isIDFIRST_lazy_if(s,UTF)) {
7299                 char *p = s;
7300
7301                 if ((PL_bufend - p) >= 3 &&
7302                     strnEQ(p, "my", 2) && isSPACE(*(p + 2)))
7303                     p += 2;
7304                 else if ((PL_bufend - p) >= 4 &&
7305                     strnEQ(p, "our", 3) && isSPACE(*(p + 3)))
7306                     p += 3;
7307                 p = skipspace(p);
7308                 /* skip optional package name, as in "for my abc $x (..)" */
7309                 if (isIDFIRST_lazy_if(p,UTF)) {
7310                     p = scan_word(p, PL_tokenbuf, sizeof PL_tokenbuf, TRUE, &len);
7311                     p = skipspace(p);
7312                 }
7313                 if (*p != '$')
7314                     Perl_croak(aTHX_ "Missing $ on loop variable");
7315             }
7316             OPERATOR(FOR);
7317
7318         case KEY_formline:
7319             LOP(OP_FORMLINE,XTERM);
7320
7321         case KEY_fork:
7322             FUN0(OP_FORK);
7323
7324         case KEY_fc:
7325             UNI(OP_FC);
7326
7327         case KEY_fcntl:
7328             LOP(OP_FCNTL,XTERM);
7329
7330         case KEY_fileno:
7331             UNI(OP_FILENO);
7332
7333         case KEY_flock:
7334             LOP(OP_FLOCK,XTERM);
7335
7336         case KEY_gt:
7337             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
7338                 return REPORT(0);
7339             Rop(OP_SGT);
7340
7341         case KEY_ge:
7342             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
7343                 return REPORT(0);
7344             Rop(OP_SGE);
7345
7346         case KEY_grep:
7347             LOP(OP_GREPSTART, XREF);
7348
7349         case KEY_goto:
7350             LOOPX(OP_GOTO);
7351
7352         case KEY_gmtime:
7353             UNI(OP_GMTIME);
7354
7355         case KEY_getc:
7356             UNIDOR(OP_GETC);
7357
7358         case KEY_getppid:
7359             FUN0(OP_GETPPID);
7360
7361         case KEY_getpgrp:
7362             UNI(OP_GETPGRP);
7363
7364         case KEY_getpriority:
7365             LOP(OP_GETPRIORITY,XTERM);
7366
7367         case KEY_getprotobyname:
7368             UNI(OP_GPBYNAME);
7369
7370         case KEY_getprotobynumber:
7371             LOP(OP_GPBYNUMBER,XTERM);
7372
7373         case KEY_getprotoent:
7374             FUN0(OP_GPROTOENT);
7375
7376         case KEY_getpwent:
7377             FUN0(OP_GPWENT);
7378
7379         case KEY_getpwnam:
7380             UNI(OP_GPWNAM);
7381
7382         case KEY_getpwuid:
7383             UNI(OP_GPWUID);
7384
7385         case KEY_getpeername:
7386             UNI(OP_GETPEERNAME);
7387
7388         case KEY_gethostbyname:
7389             UNI(OP_GHBYNAME);
7390
7391         case KEY_gethostbyaddr:
7392             LOP(OP_GHBYADDR,XTERM);
7393
7394         case KEY_gethostent:
7395             FUN0(OP_GHOSTENT);
7396
7397         case KEY_getnetbyname:
7398             UNI(OP_GNBYNAME);
7399
7400         case KEY_getnetbyaddr:
7401             LOP(OP_GNBYADDR,XTERM);
7402
7403         case KEY_getnetent:
7404             FUN0(OP_GNETENT);
7405
7406         case KEY_getservbyname:
7407             LOP(OP_GSBYNAME,XTERM);
7408
7409         case KEY_getservbyport:
7410             LOP(OP_GSBYPORT,XTERM);
7411
7412         case KEY_getservent:
7413             FUN0(OP_GSERVENT);
7414
7415         case KEY_getsockname:
7416             UNI(OP_GETSOCKNAME);
7417
7418         case KEY_getsockopt:
7419             LOP(OP_GSOCKOPT,XTERM);
7420
7421         case KEY_getgrent:
7422             FUN0(OP_GGRENT);
7423
7424         case KEY_getgrnam:
7425             UNI(OP_GGRNAM);
7426
7427         case KEY_getgrgid:
7428             UNI(OP_GGRGID);
7429
7430         case KEY_getlogin:
7431             FUN0(OP_GETLOGIN);
7432
7433         case KEY_given:
7434             pl_yylval.ival = CopLINE(PL_curcop);
7435             Perl_ck_warner_d(aTHX_
7436                 packWARN(WARN_EXPERIMENTAL__SMARTMATCH),
7437                 "given is experimental");
7438             OPERATOR(GIVEN);
7439
7440         case KEY_glob:
7441             LOP(
7442              orig_keyword==KEY_glob ? -OP_GLOB : OP_GLOB,
7443              XTERM
7444             );
7445
7446         case KEY_hex:
7447             UNI(OP_HEX);
7448
7449         case KEY_if:
7450             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
7451                 return REPORT(0);
7452             pl_yylval.ival = CopLINE(PL_curcop);
7453             OPERATOR(IF);
7454
7455         case KEY_index:
7456             LOP(OP_INDEX,XTERM);
7457
7458         case KEY_int:
7459             UNI(OP_INT);
7460
7461         case KEY_ioctl:
7462             LOP(OP_IOCTL,XTERM);
7463
7464         case KEY_join:
7465             LOP(OP_JOIN,XTERM);
7466
7467         case KEY_keys:
7468             UNI(OP_KEYS);
7469
7470         case KEY_kill:
7471             LOP(OP_KILL,XTERM);
7472
7473         case KEY_last:
7474             LOOPX(OP_LAST);
7475         
7476         case KEY_lc:
7477             UNI(OP_LC);
7478
7479         case KEY_lcfirst:
7480             UNI(OP_LCFIRST);
7481
7482         case KEY_local:
7483             pl_yylval.ival = 0;
7484             OPERATOR(LOCAL);
7485
7486         case KEY_length:
7487             UNI(OP_LENGTH);
7488
7489         case KEY_lt:
7490             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
7491                 return REPORT(0);
7492             Rop(OP_SLT);
7493
7494         case KEY_le:
7495             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
7496                 return REPORT(0);
7497             Rop(OP_SLE);
7498
7499         case KEY_localtime:
7500             UNI(OP_LOCALTIME);
7501
7502         case KEY_log:
7503             UNI(OP_LOG);
7504
7505         case KEY_link:
7506             LOP(OP_LINK,XTERM);
7507
7508         case KEY_listen:
7509             LOP(OP_LISTEN,XTERM);
7510
7511         case KEY_lock:
7512             UNI(OP_LOCK);
7513
7514         case KEY_lstat:
7515             UNI(OP_LSTAT);
7516
7517         case KEY_m:
7518             s = scan_pat(s,OP_MATCH);
7519             TERM(sublex_start());
7520
7521         case KEY_map:
7522             LOP(OP_MAPSTART, XREF);
7523
7524         case KEY_mkdir:
7525             LOP(OP_MKDIR,XTERM);
7526
7527         case KEY_msgctl:
7528             LOP(OP_MSGCTL,XTERM);
7529
7530         case KEY_msgget:
7531             LOP(OP_MSGGET,XTERM);
7532
7533         case KEY_msgrcv:
7534             LOP(OP_MSGRCV,XTERM);
7535
7536         case KEY_msgsnd:
7537             LOP(OP_MSGSND,XTERM);
7538
7539         case KEY_our:
7540         case KEY_my:
7541         case KEY_state:
7542             PL_in_my = (U16)tmp;
7543             s = skipspace(s);
7544             if (isIDFIRST_lazy_if(s,UTF)) {
7545                 s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, TRUE, &len);
7546                 if (len == 3 && strnEQ(PL_tokenbuf, "sub", 3))
7547                 {
7548                     if (!FEATURE_LEXSUBS_IS_ENABLED)
7549                         Perl_croak(aTHX_
7550                                   "Experimental \"%s\" subs not enabled",
7551                                    tmp == KEY_my    ? "my"    :
7552                                    tmp == KEY_state ? "state" : "our");
7553                     Perl_ck_warner_d(aTHX_
7554                         packWARN(WARN_EXPERIMENTAL__LEXICAL_SUBS),
7555                         "The lexical_subs feature is experimental");
7556                     goto really_sub;
7557                 }
7558                 PL_in_my_stash = find_in_my_stash(PL_tokenbuf, len);
7559                 if (!PL_in_my_stash) {
7560                     char tmpbuf[1024];
7561                     int len;
7562                     PL_bufptr = s;
7563                     len = my_snprintf(tmpbuf, sizeof(tmpbuf), "No such class %.1000s", PL_tokenbuf);
7564                     PERL_MY_SNPRINTF_POST_GUARD(len, sizeof(tmpbuf));
7565                     yyerror_pv(tmpbuf, UTF ? SVf_UTF8 : 0);
7566                 }
7567             }
7568             pl_yylval.ival = 1;
7569             OPERATOR(MY);
7570
7571         case KEY_next:
7572             LOOPX(OP_NEXT);
7573
7574         case KEY_ne:
7575             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_COMPARE)
7576                 return REPORT(0);
7577             Eop(OP_SNE);
7578
7579         case KEY_no:
7580             s = tokenize_use(0, s);
7581             TOKEN(USE);
7582
7583         case KEY_not:
7584             if (*s == '(' || (s = skipspace(s), *s == '('))
7585                 FUN1(OP_NOT);
7586             else {
7587                 if (!PL_lex_allbrackets &&
7588                         PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
7589                     PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
7590                 OPERATOR(NOTOP);
7591             }
7592
7593         case KEY_open:
7594             s = skipspace(s);
7595             if (isIDFIRST_lazy_if(s,UTF)) {
7596           const char *t;
7597           d = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE,
7598               &len);
7599                 for (t=d; isSPACE(*t);)
7600                     t++;
7601                 if ( *t && strchr("|&*+-=!?:.", *t) && ckWARN_d(WARN_PRECEDENCE)
7602                     /* [perl #16184] */
7603                     && !(t[0] == '=' && t[1] == '>')
7604                     && !(t[0] == ':' && t[1] == ':')
7605                     && !keyword(s, d-s, 0)
7606                 ) {
7607                     Perl_warner(aTHX_ packWARN(WARN_PRECEDENCE),
7608                        "Precedence problem: open %"UTF8f" should be open(%"UTF8f")",
7609                         UTF8fARG(UTF, d-s, s), UTF8fARG(UTF, d-s, s));
7610                 }
7611             }
7612             LOP(OP_OPEN,XTERM);
7613
7614         case KEY_or:
7615             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_LOWLOGIC)
7616                 return REPORT(0);
7617             pl_yylval.ival = OP_OR;
7618             OPERATOR(OROP);
7619
7620         case KEY_ord:
7621             UNI(OP_ORD);
7622
7623         case KEY_oct:
7624             UNI(OP_OCT);
7625
7626         case KEY_opendir:
7627             LOP(OP_OPEN_DIR,XTERM);
7628
7629         case KEY_print:
7630             checkcomma(s,PL_tokenbuf,"filehandle");
7631             LOP(OP_PRINT,XREF);
7632
7633         case KEY_printf:
7634             checkcomma(s,PL_tokenbuf,"filehandle");
7635             LOP(OP_PRTF,XREF);
7636
7637         case KEY_prototype:
7638             UNI(OP_PROTOTYPE);
7639
7640         case KEY_push:
7641             LOP(OP_PUSH,XTERM);
7642
7643         case KEY_pop:
7644             UNIDOR(OP_POP);
7645
7646         case KEY_pos:
7647             UNIDOR(OP_POS);
7648         
7649         case KEY_pack:
7650             LOP(OP_PACK,XTERM);
7651
7652         case KEY_package:
7653             s = force_word(s,WORD,FALSE,TRUE);
7654             s = skipspace(s);
7655             s = force_strict_version(s);
7656             PREBLOCK(PACKAGE);
7657
7658         case KEY_pipe:
7659             LOP(OP_PIPE_OP,XTERM);
7660
7661         case KEY_q:
7662             s = scan_str(s,FALSE,FALSE,FALSE,NULL);
7663             if (!s)
7664                 missingterm(NULL);
7665             COPLINE_SET_FROM_MULTI_END;
7666             pl_yylval.ival = OP_CONST;
7667             TERM(sublex_start());
7668
7669         case KEY_quotemeta:
7670             UNI(OP_QUOTEMETA);
7671
7672         case KEY_qw: {
7673             OP *words = NULL;
7674             s = scan_str(s,FALSE,FALSE,FALSE,NULL);
7675             if (!s)
7676                 missingterm(NULL);
7677             COPLINE_SET_FROM_MULTI_END;
7678             PL_expect = XOPERATOR;
7679             if (SvCUR(PL_lex_stuff)) {
7680                 int warned_comma = !ckWARN(WARN_QW);
7681                 int warned_comment = warned_comma;
7682                 d = SvPV_force(PL_lex_stuff, len);
7683                 while (len) {
7684                     for (; isSPACE(*d) && len; --len, ++d)
7685                         /**/;
7686                     if (len) {
7687                         SV *sv;
7688                         const char *b = d;
7689                         if (!warned_comma || !warned_comment) {
7690                             for (; !isSPACE(*d) && len; --len, ++d) {
7691                                 if (!warned_comma && *d == ',') {
7692                                     Perl_warner(aTHX_ packWARN(WARN_QW),
7693                                         "Possible attempt to separate words with commas");
7694                                     ++warned_comma;
7695                                 }
7696                                 else if (!warned_comment && *d == '#') {
7697                                     Perl_warner(aTHX_ packWARN(WARN_QW),
7698                                         "Possible attempt to put comments in qw() list");
7699                                     ++warned_comment;
7700                                 }
7701                             }
7702                         }
7703                         else {
7704                             for (; !isSPACE(*d) && len; --len, ++d)
7705                                 /**/;
7706                         }
7707                         sv = newSVpvn_utf8(b, d-b, DO_UTF8(PL_lex_stuff));
7708                         words = op_append_elem(OP_LIST, words,
7709                                             newSVOP(OP_CONST, 0, tokeq(sv)));
7710                     }
7711                 }
7712             }
7713             if (!words)
7714                 words = newNULLLIST();
7715             SvREFCNT_dec_NN(PL_lex_stuff);
7716             PL_lex_stuff = NULL;
7717             PL_expect = XOPERATOR;
7718             pl_yylval.opval = sawparens(words);
7719             TOKEN(QWLIST);
7720         }
7721
7722         case KEY_qq:
7723             s = scan_str(s,FALSE,FALSE,FALSE,NULL);
7724             if (!s)
7725                 missingterm(NULL);
7726             pl_yylval.ival = OP_STRINGIFY;
7727             if (SvIVX(PL_lex_stuff) == '\'')
7728                 SvIV_set(PL_lex_stuff, 0);      /* qq'$foo' should interpolate */
7729             TERM(sublex_start());
7730
7731         case KEY_qr:
7732             s = scan_pat(s,OP_QR);
7733             TERM(sublex_start());
7734
7735         case KEY_qx:
7736             s = scan_str(s,FALSE,FALSE,FALSE,NULL);
7737             if (!s)
7738                 missingterm(NULL);
7739             pl_yylval.ival = OP_BACKTICK;
7740             TERM(sublex_start());
7741
7742         case KEY_return:
7743             OLDLOP(OP_RETURN);
7744
7745         case KEY_require:
7746             s = skipspace(s);
7747             if (isDIGIT(*s)) {
7748                 s = force_version(s, FALSE);
7749             }
7750             else if (*s != 'v' || !isDIGIT(s[1])
7751                     || (s = force_version(s, TRUE), *s == 'v'))
7752             {
7753                 *PL_tokenbuf = '\0';
7754                 s = force_word(s,WORD,TRUE,TRUE);
7755                 if (isIDFIRST_lazy_if(PL_tokenbuf,UTF))
7756                     gv_stashpvn(PL_tokenbuf, strlen(PL_tokenbuf),
7757                                 GV_ADD | (UTF ? SVf_UTF8 : 0));
7758                 else if (*s == '<')
7759                     yyerror("<> at require-statement should be quotes");
7760             }
7761             if (orig_keyword == KEY_require) {
7762                 orig_keyword = 0;
7763                 pl_yylval.ival = 1;
7764             }
7765             else 
7766                 pl_yylval.ival = 0;
7767             PL_expect = PL_nexttoke ? XOPERATOR : XTERM;
7768             PL_bufptr = s;
7769             PL_last_uni = PL_oldbufptr;
7770             PL_last_lop_op = OP_REQUIRE;
7771             s = skipspace(s);
7772             return REPORT( (int)REQUIRE );
7773
7774         case KEY_reset:
7775             UNI(OP_RESET);
7776
7777         case KEY_redo:
7778             LOOPX(OP_REDO);
7779
7780         case KEY_rename:
7781             LOP(OP_RENAME,XTERM);
7782
7783         case KEY_rand:
7784             UNI(OP_RAND);
7785
7786         case KEY_rmdir:
7787             UNI(OP_RMDIR);
7788
7789         case KEY_rindex:
7790             LOP(OP_RINDEX,XTERM);
7791
7792         case KEY_read:
7793             LOP(OP_READ,XTERM);
7794
7795         case KEY_readdir:
7796             UNI(OP_READDIR);
7797
7798         case KEY_readline:
7799             UNIDOR(OP_READLINE);
7800
7801         case KEY_readpipe:
7802             UNIDOR(OP_BACKTICK);
7803
7804         case KEY_rewinddir:
7805             UNI(OP_REWINDDIR);
7806
7807         case KEY_recv:
7808             LOP(OP_RECV,XTERM);
7809
7810         case KEY_reverse:
7811             LOP(OP_REVERSE,XTERM);
7812
7813         case KEY_readlink:
7814             UNIDOR(OP_READLINK);
7815
7816         case KEY_ref:
7817             UNI(OP_REF);
7818
7819         case KEY_s:
7820             s = scan_subst(s);
7821             if (pl_yylval.opval)
7822                 TERM(sublex_start());
7823             else
7824                 TOKEN(1);       /* force error */
7825
7826         case KEY_say:
7827             checkcomma(s,PL_tokenbuf,"filehandle");
7828             LOP(OP_SAY,XREF);
7829
7830         case KEY_chomp:
7831             UNI(OP_CHOMP);
7832         
7833         case KEY_scalar:
7834             UNI(OP_SCALAR);
7835
7836         case KEY_select:
7837             LOP(OP_SELECT,XTERM);
7838
7839         case KEY_seek:
7840             LOP(OP_SEEK,XTERM);
7841
7842         case KEY_semctl:
7843             LOP(OP_SEMCTL,XTERM);
7844
7845         case KEY_semget:
7846             LOP(OP_SEMGET,XTERM);
7847
7848         case KEY_semop:
7849             LOP(OP_SEMOP,XTERM);
7850
7851         case KEY_send:
7852             LOP(OP_SEND,XTERM);
7853
7854         case KEY_setpgrp:
7855             LOP(OP_SETPGRP,XTERM);
7856
7857         case KEY_setpriority:
7858             LOP(OP_SETPRIORITY,XTERM);
7859
7860         case KEY_sethostent:
7861             UNI(OP_SHOSTENT);
7862
7863         case KEY_setnetent:
7864             UNI(OP_SNETENT);
7865
7866         case KEY_setservent:
7867             UNI(OP_SSERVENT);
7868
7869         case KEY_setprotoent:
7870             UNI(OP_SPROTOENT);
7871
7872         case KEY_setpwent:
7873             FUN0(OP_SPWENT);
7874
7875         case KEY_setgrent:
7876             FUN0(OP_SGRENT);
7877
7878         case KEY_seekdir:
7879             LOP(OP_SEEKDIR,XTERM);
7880
7881         case KEY_setsockopt:
7882             LOP(OP_SSOCKOPT,XTERM);
7883
7884         case KEY_shift:
7885             UNIDOR(OP_SHIFT);
7886
7887         case KEY_shmctl:
7888             LOP(OP_SHMCTL,XTERM);
7889
7890         case KEY_shmget:
7891             LOP(OP_SHMGET,XTERM);
7892
7893         case KEY_shmread:
7894             LOP(OP_SHMREAD,XTERM);
7895
7896         case KEY_shmwrite:
7897             LOP(OP_SHMWRITE,XTERM);
7898
7899         case KEY_shutdown:
7900             LOP(OP_SHUTDOWN,XTERM);
7901
7902         case KEY_sin:
7903             UNI(OP_SIN);
7904
7905         case KEY_sleep:
7906             UNI(OP_SLEEP);
7907
7908         case KEY_socket:
7909             LOP(OP_SOCKET,XTERM);
7910
7911         case KEY_socketpair:
7912             LOP(OP_SOCKPAIR,XTERM);
7913
7914         case KEY_sort:
7915             checkcomma(s,PL_tokenbuf,"subroutine name");
7916             s = skipspace(s);
7917             PL_expect = XTERM;
7918             s = force_word(s,WORD,TRUE,TRUE);
7919             LOP(OP_SORT,XREF);
7920
7921         case KEY_split:
7922             LOP(OP_SPLIT,XTERM);
7923
7924         case KEY_sprintf:
7925             LOP(OP_SPRINTF,XTERM);
7926
7927         case KEY_splice:
7928             LOP(OP_SPLICE,XTERM);
7929
7930         case KEY_sqrt:
7931             UNI(OP_SQRT);
7932
7933         case KEY_srand:
7934             UNI(OP_SRAND);
7935
7936         case KEY_stat:
7937             UNI(OP_STAT);
7938
7939         case KEY_study:
7940             UNI(OP_STUDY);
7941
7942         case KEY_substr:
7943             LOP(OP_SUBSTR,XTERM);
7944
7945         case KEY_format:
7946         case KEY_sub:
7947           really_sub:
7948             {
7949                 char * const tmpbuf = PL_tokenbuf + 1;
7950                 expectation attrful;
7951                 bool have_name, have_proto;
7952                 const int key = tmp;
7953                 SV *format_name = NULL;
7954
7955                 d = s;
7956                 s = skipspace(s);
7957
7958                 if (isIDFIRST_lazy_if(s,UTF) || *s == '\'' ||
7959                     (*s == ':' && s[1] == ':'))
7960                 {
7961
7962                     PL_expect = XBLOCK;
7963                     attrful = XATTRBLOCK;
7964                     d = scan_word(s, tmpbuf, sizeof PL_tokenbuf - 1, TRUE,
7965                                   &len);
7966                     if (key == KEY_format)
7967                         format_name = S_newSV_maybe_utf8(aTHX_ s, d - s);
7968                     *PL_tokenbuf = '&';
7969                     if (memchr(tmpbuf, ':', len) || key != KEY_sub
7970                      || pad_findmy_pvn(
7971                             PL_tokenbuf, len + 1, 0
7972                         ) != NOT_IN_PAD)
7973                         sv_setpvn(PL_subname, tmpbuf, len);
7974                     else {
7975                         sv_setsv(PL_subname,PL_curstname);
7976                         sv_catpvs(PL_subname,"::");
7977                         sv_catpvn(PL_subname,tmpbuf,len);
7978                     }
7979                     if (SvUTF8(PL_linestr))
7980                         SvUTF8_on(PL_subname);
7981                     have_name = TRUE;
7982
7983
7984                     s = skipspace(d);
7985                 }
7986                 else {
7987                     if (key == KEY_my || key == KEY_our || key==KEY_state)
7988                     {
7989                         *d = '\0';
7990                         /* diag_listed_as: Missing name in "%s sub" */
7991                         Perl_croak(aTHX_
7992                                   "Missing name in \"%s\"", PL_bufptr);
7993                     }
7994                     PL_expect = XTERMBLOCK;
7995                     attrful = XATTRTERM;
7996                     sv_setpvs(PL_subname,"?");
7997                     have_name = FALSE;
7998                 }
7999
8000                 if (key == KEY_format) {
8001                     if (format_name) {
8002                         NEXTVAL_NEXTTOKE.opval
8003                             = (OP*)newSVOP(OP_CONST,0, format_name);
8004                         NEXTVAL_NEXTTOKE.opval->op_private |= OPpCONST_BARE;
8005                         force_next(WORD);
8006                     }
8007                     PREBLOCK(FORMAT);
8008                 }
8009
8010                 /* Look for a prototype */
8011                 if (*s == '(' && !FEATURE_SIGNATURES_IS_ENABLED) {
8012                     s = scan_str(s,FALSE,FALSE,FALSE,NULL);
8013                     COPLINE_SET_FROM_MULTI_END;
8014                     if (!s)
8015                         Perl_croak(aTHX_ "Prototype not terminated");
8016                     (void)validate_proto(PL_subname, PL_lex_stuff, ckWARN(WARN_ILLEGALPROTO));
8017                     have_proto = TRUE;
8018
8019                     s = skipspace(s);
8020                 }
8021                 else
8022                     have_proto = FALSE;
8023
8024                 if (*s == ':' && s[1] != ':')
8025                     PL_expect = attrful;
8026                 else if ((*s != '{' && *s != '(') && key == KEY_sub) {
8027                     if (!have_name)
8028                         Perl_croak(aTHX_ "Illegal declaration of anonymous subroutine");
8029                     else if (*s != ';' && *s != '}')
8030                         Perl_croak(aTHX_ "Illegal declaration of subroutine %"SVf, SVfARG(PL_subname));
8031                 }
8032
8033                 if (have_proto) {
8034                     NEXTVAL_NEXTTOKE.opval =
8035                         (OP*)newSVOP(OP_CONST, 0, PL_lex_stuff);
8036                     PL_lex_stuff = NULL;
8037                     force_next(THING);
8038                 }
8039                 if (!have_name) {
8040                     if (PL_curstash)
8041                         sv_setpvs(PL_subname, "__ANON__");
8042                     else
8043                         sv_setpvs(PL_subname, "__ANON__::__ANON__");
8044                     TOKEN(ANONSUB);
8045                 }
8046                 force_ident_maybe_lex('&');
8047                 TOKEN(SUB);
8048             }
8049
8050         case KEY_system:
8051             LOP(OP_SYSTEM,XREF);
8052
8053         case KEY_symlink:
8054             LOP(OP_SYMLINK,XTERM);
8055
8056         case KEY_syscall:
8057             LOP(OP_SYSCALL,XTERM);
8058
8059         case KEY_sysopen:
8060             LOP(OP_SYSOPEN,XTERM);
8061
8062         case KEY_sysseek:
8063             LOP(OP_SYSSEEK,XTERM);
8064
8065         case KEY_sysread:
8066             LOP(OP_SYSREAD,XTERM);
8067
8068         case KEY_syswrite:
8069             LOP(OP_SYSWRITE,XTERM);
8070
8071         case KEY_tr:
8072         case KEY_y:
8073             s = scan_trans(s);
8074             TERM(sublex_start());
8075
8076         case KEY_tell:
8077             UNI(OP_TELL);
8078
8079         case KEY_telldir:
8080             UNI(OP_TELLDIR);
8081
8082         case KEY_tie:
8083             LOP(OP_TIE,XTERM);
8084
8085         case KEY_tied:
8086             UNI(OP_TIED);
8087
8088         case KEY_time:
8089             FUN0(OP_TIME);
8090
8091         case KEY_times:
8092             FUN0(OP_TMS);
8093
8094         case KEY_truncate:
8095             LOP(OP_TRUNCATE,XTERM);
8096
8097         case KEY_uc:
8098             UNI(OP_UC);
8099
8100         case KEY_ucfirst:
8101             UNI(OP_UCFIRST);
8102
8103         case KEY_untie:
8104             UNI(OP_UNTIE);
8105
8106         case KEY_until:
8107             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
8108                 return REPORT(0);
8109             pl_yylval.ival = CopLINE(PL_curcop);
8110             OPERATOR(UNTIL);
8111
8112         case KEY_unless:
8113             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
8114                 return REPORT(0);
8115             pl_yylval.ival = CopLINE(PL_curcop);
8116             OPERATOR(UNLESS);
8117
8118         case KEY_unlink:
8119             LOP(OP_UNLINK,XTERM);
8120
8121         case KEY_undef:
8122             UNIDOR(OP_UNDEF);
8123
8124         case KEY_unpack:
8125             LOP(OP_UNPACK,XTERM);
8126
8127         case KEY_utime:
8128             LOP(OP_UTIME,XTERM);
8129
8130         case KEY_umask:
8131             UNIDOR(OP_UMASK);
8132
8133         case KEY_unshift:
8134             LOP(OP_UNSHIFT,XTERM);
8135
8136         case KEY_use:
8137             s = tokenize_use(1, s);
8138             TOKEN(USE);
8139
8140         case KEY_values:
8141             UNI(OP_VALUES);
8142
8143         case KEY_vec:
8144             LOP(OP_VEC,XTERM);
8145
8146         case KEY_when:
8147             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
8148                 return REPORT(0);
8149             pl_yylval.ival = CopLINE(PL_curcop);
8150             Perl_ck_warner_d(aTHX_
8151                 packWARN(WARN_EXPERIMENTAL__SMARTMATCH),
8152                 "when is experimental");
8153             OPERATOR(WHEN);
8154
8155         case KEY_while:
8156             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_NONEXPR)
8157                 return REPORT(0);
8158             pl_yylval.ival = CopLINE(PL_curcop);
8159             OPERATOR(WHILE);
8160
8161         case KEY_warn:
8162             PL_hints |= HINT_BLOCK_SCOPE;
8163             LOP(OP_WARN,XTERM);
8164
8165         case KEY_wait:
8166             FUN0(OP_WAIT);
8167
8168         case KEY_waitpid:
8169             LOP(OP_WAITPID,XTERM);
8170
8171         case KEY_wantarray:
8172             FUN0(OP_WANTARRAY);
8173
8174         case KEY_write:
8175             /* Make sure $^L is defined. 0x0C is CTRL-L on ASCII platforms, and
8176              * we use the same number on EBCDIC */
8177             gv_fetchpvs("\x0C", GV_ADD|GV_NOTQUAL, SVt_PV);
8178             UNI(OP_ENTERWRITE);
8179
8180         case KEY_x:
8181             if (PL_expect == XOPERATOR) {
8182                 if (*s == '=' && !PL_lex_allbrackets &&
8183                         PL_lex_fakeeof >= LEX_FAKEEOF_ASSIGN)
8184                     return REPORT(0);
8185                 Mop(OP_REPEAT);
8186             }
8187             check_uni();
8188             goto just_a_word;
8189
8190         case KEY_xor:
8191             if (!PL_lex_allbrackets && PL_lex_fakeeof >= LEX_FAKEEOF_LOWLOGIC)
8192                 return REPORT(0);
8193             pl_yylval.ival = OP_XOR;
8194             OPERATOR(OROP);
8195         }
8196     }}
8197 }
8198
8199 /*
8200   S_pending_ident
8201
8202   Looks up an identifier in the pad or in a package
8203
8204   Returns:
8205     PRIVATEREF if this is a lexical name.
8206     WORD       if this belongs to a package.
8207
8208   Structure:
8209       if we're in a my declaration
8210           croak if they tried to say my($foo::bar)
8211           build the ops for a my() declaration
8212       if it's an access to a my() variable
8213           build ops for access to a my() variable
8214       if in a dq string, and they've said @foo and we can't find @foo
8215           warn
8216       build ops for a bareword
8217 */
8218
8219 static int
8220 S_pending_ident(pTHX)
8221 {
8222     PADOFFSET tmp = 0;
8223     const char pit = (char)pl_yylval.ival;
8224     const STRLEN tokenbuf_len = strlen(PL_tokenbuf);
8225     /* All routes through this function want to know if there is a colon.  */
8226     const char *const has_colon = (const char*) memchr (PL_tokenbuf, ':', tokenbuf_len);
8227
8228     DEBUG_T({ PerlIO_printf(Perl_debug_log,
8229           "### Pending identifier '%s'\n", PL_tokenbuf); });
8230
8231     /* if we're in a my(), we can't allow dynamics here.
8232        $foo'bar has already been turned into $foo::bar, so
8233        just check for colons.
8234
8235        if it's a legal name, the OP is a PADANY.
8236     */
8237     if (PL_in_my) {
8238         if (PL_in_my == KEY_our) {      /* "our" is merely analogous to "my" */
8239             if (has_colon)
8240                 yyerror_pv(Perl_form(aTHX_ "No package name allowed for "
8241                                   "variable %s in \"our\"",
8242                                   PL_tokenbuf), UTF ? SVf_UTF8 : 0);
8243             tmp = allocmy(PL_tokenbuf, tokenbuf_len, UTF ? SVf_UTF8 : 0);
8244         }
8245         else {
8246             if (has_colon) {
8247                 /* "my" variable %s can't be in a package */
8248                 /* PL_no_myglob is constant */
8249                 GCC_DIAG_IGNORE(-Wformat-nonliteral);
8250                 yyerror_pv(Perl_form(aTHX_ PL_no_myglob,
8251                             PL_in_my == KEY_my ? "my" : "state",
8252                             *PL_tokenbuf == '&' ? "subroutin" : "variabl",
8253                             PL_tokenbuf),
8254                             UTF ? SVf_UTF8 : 0);
8255                 GCC_DIAG_RESTORE;
8256             }
8257
8258             pl_yylval.opval = newOP(OP_PADANY, 0);
8259             pl_yylval.opval->op_targ = allocmy(PL_tokenbuf, tokenbuf_len,
8260                                                         UTF ? SVf_UTF8 : 0);
8261             return PRIVATEREF;
8262         }
8263     }
8264
8265     /*
8266        build the ops for accesses to a my() variable.
8267     */
8268
8269     if (!has_colon) {
8270         if (!PL_in_my)
8271             tmp = pad_findmy_pvn(PL_tokenbuf, tokenbuf_len,
8272                                  0);
8273         if (tmp != NOT_IN_PAD) {
8274             /* might be an "our" variable" */
8275             if (PAD_COMPNAME_FLAGS_isOUR(tmp)) {
8276                 /* build ops for a bareword */
8277                 HV *  const stash = PAD_COMPNAME_OURSTASH(tmp);
8278                 HEK * const stashname = HvNAME_HEK(stash);
8279                 SV *  const sym = newSVhek(stashname);
8280                 sv_catpvs(sym, "::");
8281                 sv_catpvn_flags(sym, PL_tokenbuf+1, tokenbuf_len - 1, (UTF ? SV_CATUTF8 : SV_CATBYTES ));
8282                 pl_yylval.opval = (OP*)newSVOP(OP_CONST, 0, sym);
8283                 pl_yylval.opval->op_private = OPpCONST_ENTERED;
8284                 if (pit != '&')
8285                   gv_fetchsv(sym,
8286                     GV_ADDMULTI,
8287                     ((PL_tokenbuf[0] == '$') ? SVt_PV
8288                      : (PL_tokenbuf[0] == '@') ? SVt_PVAV
8289                      : SVt_PVHV));
8290                 return WORD;
8291             }
8292
8293             pl_yylval.opval = newOP(OP_PADANY, 0);
8294             pl_yylval.opval->op_targ = tmp;
8295             return PRIVATEREF;
8296         }
8297     }
8298
8299     /*
8300        Whine if they've said @foo in a doublequoted string,
8301        and @foo isn't a variable we can find in the symbol
8302        table.
8303     */
8304     if (ckWARN(WARN_AMBIGUOUS) &&
8305         pit == '@' && PL_lex_state != LEX_NORMAL && !PL_lex_brackets) {
8306         GV *const gv = gv_fetchpvn_flags(PL_tokenbuf + 1, tokenbuf_len - 1,
8307                                         ( UTF ? SVf_UTF8 : 0 ), SVt_PVAV);
8308         if ((!gv || ((PL_tokenbuf[0] == '@') ? !GvAV(gv) : !GvHV(gv)))
8309                 /* DO NOT warn for @- and @+ */
8310                 && !( PL_tokenbuf[2] == '\0' &&
8311                     ( PL_tokenbuf[1] == '-' || PL_tokenbuf[1] == '+' ))
8312            )
8313         {
8314             /* Downgraded from fatal to warning 20000522 mjd */
8315             Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
8316                         "Possible unintended interpolation of %"UTF8f
8317                         " in string",
8318                         UTF8fARG(UTF, tokenbuf_len, PL_tokenbuf));
8319         }
8320     }
8321
8322     /* build ops for a bareword */
8323     pl_yylval.opval = (OP*)newSVOP(OP_CONST, 0,
8324                                    newSVpvn_flags(PL_tokenbuf + 1,
8325                                                       tokenbuf_len - 1,
8326                                                       UTF ? SVf_UTF8 : 0 ));
8327     pl_yylval.opval->op_private = OPpCONST_ENTERED;
8328     if (pit != '&')
8329         gv_fetchpvn_flags(PL_tokenbuf+1, tokenbuf_len - 1,
8330                      (PL_in_eval ? GV_ADDMULTI : GV_ADD)
8331                      | ( UTF ? SVf_UTF8 : 0 ),
8332                      ((PL_tokenbuf[0] == '$') ? SVt_PV
8333                       : (PL_tokenbuf[0] == '@') ? SVt_PVAV
8334                       : SVt_PVHV));
8335     return WORD;
8336 }
8337
8338 STATIC void
8339 S_checkcomma(pTHX_ const char *s, const char *name, const char *what)
8340 {
8341     PERL_ARGS_ASSERT_CHECKCOMMA;
8342
8343     if (*s == ' ' && s[1] == '(') {     /* XXX gotta be a better way */
8344         if (ckWARN(WARN_SYNTAX)) {
8345             int level = 1;
8346             const char *w;
8347             for (w = s+2; *w && level; w++) {
8348                 if (*w == '(')
8349                     ++level;
8350                 else if (*w == ')')
8351                     --level;
8352             }
8353             while (isSPACE(*w))
8354                 ++w;
8355             /* the list of chars below is for end of statements or
8356              * block / parens, boolean operators (&&, ||, //) and branch
8357              * constructs (or, and, if, until, unless, while, err, for).
8358              * Not a very solid hack... */
8359             if (!*w || !strchr(";&/|})]oaiuwef!=", *w))
8360                 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
8361                             "%s (...) interpreted as function",name);
8362         }
8363     }
8364     while (s < PL_bufend && isSPACE(*s))
8365         s++;
8366     if (*s == '(')
8367         s++;
8368     while (s < PL_bufend && isSPACE(*s))
8369         s++;
8370     if (isIDFIRST_lazy_if(s,UTF)) {
8371         const char * const w = s;
8372         s += UTF ? UTF8SKIP(s) : 1;
8373         while (isWORDCHAR_lazy_if(s,UTF))
8374             s += UTF ? UTF8SKIP(s) : 1;
8375         while (s < PL_bufend && isSPACE(*s))
8376             s++;
8377         if (*s == ',') {
8378             GV* gv;
8379             PADOFFSET off;
8380             if (keyword(w, s - w, 0))
8381                 return;
8382
8383             gv = gv_fetchpvn_flags(w, s - w, ( UTF ? SVf_UTF8 : 0 ), SVt_PVCV);
8384             if (gv && GvCVu(gv))
8385                 return;
8386             if (s - w <= 254) {
8387                 char tmpbuf[256];
8388                 Copy(w, tmpbuf+1, s - w, char);
8389                 *tmpbuf = '&';
8390                 off = pad_findmy_pvn(tmpbuf, s-w+1, 0);
8391                 if (off != NOT_IN_PAD) return;
8392             }
8393             Perl_croak(aTHX_ "No comma allowed after %s", what);
8394         }
8395     }
8396 }
8397
8398 /* S_new_constant(): do any overload::constant lookup.
8399
8400    Either returns sv, or mortalizes/frees sv and returns a new SV*.
8401    Best used as sv=new_constant(..., sv, ...).
8402    If s, pv are NULL, calls subroutine with one argument,
8403    and <type> is used with error messages only.
8404    <type> is assumed to be well formed UTF-8 */
8405
8406 STATIC SV *
8407 S_new_constant(pTHX_ const char *s, STRLEN len, const char *key, STRLEN keylen,
8408                SV *sv, SV *pv, const char *type, STRLEN typelen)
8409 {
8410     dSP;
8411     HV * table = GvHV(PL_hintgv);                /* ^H */
8412     SV *res;
8413     SV *errsv = NULL;
8414     SV **cvp;
8415     SV *cv, *typesv;
8416     const char *why1 = "", *why2 = "", *why3 = "";
8417
8418     PERL_ARGS_ASSERT_NEW_CONSTANT;
8419     /* We assume that this is true: */
8420     if (*key == 'c') { assert (strEQ(key, "charnames")); }
8421     assert(type || s);
8422
8423     /* charnames doesn't work well if there have been errors found */
8424     if (PL_error_count > 0 && *key == 'c')
8425     {
8426         SvREFCNT_dec_NN(sv);
8427         return &PL_sv_undef;
8428     }
8429
8430     sv_2mortal(sv);                     /* Parent created it permanently */
8431     if (!table
8432         || ! (PL_hints & HINT_LOCALIZE_HH)
8433         || ! (cvp = hv_fetch(table, key, keylen, FALSE))
8434         || ! SvOK(*cvp))
8435     {
8436         char *msg;
8437         
8438         /* Here haven't found what we're looking for.  If it is charnames,
8439          * perhaps it needs to be loaded.  Try doing that before giving up */
8440         if (*key == 'c') {
8441             Perl_load_module(aTHX_
8442                             0,
8443                             newSVpvs("_charnames"),
8444                              /* version parameter; no need to specify it, as if
8445                               * we get too early a version, will fail anyway,
8446                               * not being able to find '_charnames' */
8447                             NULL,
8448                             newSVpvs(":full"),
8449                             newSVpvs(":short"),
8450                             NULL);
8451             assert(sp == PL_stack_sp);
8452             table = GvHV(PL_hintgv);
8453             if (table
8454                 && (PL_hints & HINT_LOCALIZE_HH)
8455                 && (cvp = hv_fetch(table, key, keylen, FALSE))
8456                 && SvOK(*cvp))
8457             {
8458                 goto now_ok;
8459             }
8460         }
8461         if (!table || !(PL_hints & HINT_LOCALIZE_HH)) {
8462             msg = Perl_form(aTHX_
8463                                "Constant(%.*s) unknown",
8464                                 (int)(type ? typelen : len),
8465                                 (type ? type: s));
8466         }
8467         else {
8468             why1 = "$^H{";
8469             why2 = key;
8470             why3 = "} is not defined";
8471         report:
8472             if (*key == 'c') {
8473                 msg = Perl_form(aTHX_
8474                             /* The +3 is for '\N{'; -4 for that, plus '}' */
8475                             "Unknown charname '%.*s'", (int)typelen - 4, type + 3
8476                       );
8477             }
8478             else {
8479                 msg = Perl_form(aTHX_ "Constant(%.*s): %s%s%s",
8480                                     (int)(type ? typelen : len),
8481                                     (type ? type: s), why1, why2, why3);
8482             }
8483         }
8484         yyerror_pv(msg, UTF ? SVf_UTF8 : 0);
8485         return SvREFCNT_inc_simple_NN(sv);
8486     }
8487   now_ok:
8488     cv = *cvp;
8489     if (!pv && s)
8490         pv = newSVpvn_flags(s, len, SVs_TEMP);
8491     if (type && pv)
8492         typesv = newSVpvn_flags(type, typelen, SVs_TEMP);
8493     else
8494         typesv = &PL_sv_undef;
8495
8496     PUSHSTACKi(PERLSI_OVERLOAD);
8497     ENTER ;
8498     SAVETMPS;
8499
8500     PUSHMARK(SP) ;
8501     EXTEND(sp, 3);
8502     if (pv)
8503         PUSHs(pv);
8504     PUSHs(sv);
8505     if (pv)
8506         PUSHs(typesv);
8507     PUTBACK;
8508     call_sv(cv, G_SCALAR | ( PL_in_eval ? 0 : G_EVAL));
8509
8510     SPAGAIN ;
8511
8512     /* Check the eval first */
8513     if (!PL_in_eval && ((errsv = ERRSV), SvTRUE_NN(errsv))) {
8514         STRLEN errlen;
8515         const char * errstr;
8516         sv_catpvs(errsv, "Propagated");
8517         errstr = SvPV_const(errsv, errlen);
8518         yyerror_pvn(errstr, errlen, 0); /* Duplicates the message inside eval */
8519         (void)POPs;
8520         res = SvREFCNT_inc_simple_NN(sv);
8521     }
8522     else {
8523         res = POPs;
8524         SvREFCNT_inc_simple_void_NN(res);
8525     }
8526
8527     PUTBACK ;
8528     FREETMPS ;
8529     LEAVE ;
8530     POPSTACK;
8531
8532     if (!SvOK(res)) {
8533         why1 = "Call to &{$^H{";
8534         why2 = key;
8535         why3 = "}} did not return a defined value";
8536         sv = res;
8537         (void)sv_2mortal(sv);
8538         goto report;
8539     }
8540
8541     return res;
8542 }
8543
8544 PERL_STATIC_INLINE void
8545 S_parse_ident(pTHX_ char **s, char **d, char * const e, int allow_package, bool is_utf8) {
8546     PERL_ARGS_ASSERT_PARSE_IDENT;
8547
8548     for (;;) {
8549         if (*d >= e)
8550             Perl_croak(aTHX_ "%s", ident_too_long);
8551         if (is_utf8 && isIDFIRST_utf8((U8*)*s)) {
8552              /* The UTF-8 case must come first, otherwise things
8553              * like c\N{COMBINING TILDE} would start failing, as the
8554              * isWORDCHAR_A case below would gobble the 'c' up.
8555              */
8556
8557             char *t = *s + UTF8SKIP(*s);
8558             while (isIDCONT_utf8((U8*)t))
8559                 t += UTF8SKIP(t);
8560             if (*d + (t - *s) > e)
8561                 Perl_croak(aTHX_ "%s", ident_too_long);
8562             Copy(*s, *d, t - *s, char);
8563             *d += t - *s;
8564             *s = t;
8565         }
8566         else if ( isWORDCHAR_A(**s) ) {
8567             do {
8568                 *(*d)++ = *(*s)++;
8569             } while (isWORDCHAR_A(**s) && *d < e);
8570         }
8571         else if (allow_package && **s == '\'' && isIDFIRST_lazy_if(*s+1,is_utf8)) {
8572             *(*d)++ = ':';
8573             *(*d)++ = ':';
8574             (*s)++;
8575         }
8576         else if (allow_package && **s == ':' && (*s)[1] == ':'
8577            /* Disallow things like Foo::$bar. For the curious, this is
8578             * the code path that triggers the "Bad name after" warning
8579             * when looking for barewords.
8580             */
8581            && (*s)[2] != '$') {
8582             *(*d)++ = *(*s)++;
8583             *(*d)++ = *(*s)++;
8584         }
8585         else
8586             break;
8587     }
8588     return;
8589 }
8590
8591 /* Returns a NUL terminated string, with the length of the string written to
8592    *slp
8593    */
8594 STATIC char *
8595 S_scan_word(pTHX_ char *s, char *dest, STRLEN destlen, int allow_package, STRLEN *slp)
8596 {
8597     char *d = dest;
8598     char * const e = d + destlen - 3;  /* two-character token, ending NUL */
8599     bool is_utf8 = cBOOL(UTF);
8600
8601     PERL_ARGS_ASSERT_SCAN_WORD;
8602
8603     parse_ident(&s, &d, e, allow_package, is_utf8);
8604     *d = '\0';
8605     *slp = d - dest;
8606     return s;
8607 }
8608
8609 STATIC char *
8610 S_scan_ident(pTHX_ char *s, char *dest, STRLEN destlen, I32 ck_uni)
8611 {
8612     I32 herelines = PL_parser->herelines;
8613     SSize_t bracket = -1;
8614     char funny = *s++;
8615     char *d = dest;
8616     char * const e = d + destlen - 3;    /* two-character token, ending NUL */
8617     bool is_utf8 = cBOOL(UTF);
8618     I32 orig_copline = 0, tmp_copline = 0;
8619
8620     PERL_ARGS_ASSERT_SCAN_IDENT;
8621
8622     if (isSPACE(*s) || !*s)
8623         s = skipspace(s);
8624     if (isDIGIT(*s)) {
8625         while (isDIGIT(*s)) {
8626             if (d >= e)
8627                 Perl_croak(aTHX_ "%s", ident_too_long);
8628             *d++ = *s++;
8629         }
8630     }
8631     else {
8632         parse_ident(&s, &d, e, 1, is_utf8);
8633     }
8634     *d = '\0';
8635     d = dest;
8636     if (*d) {
8637         /* Either a digit variable, or parse_ident() found an identifier
8638            (anything valid as a bareword), so job done and return.  */
8639         if (PL_lex_state != LEX_NORMAL)
8640             PL_lex_state = LEX_INTERPENDMAYBE;
8641         return s;
8642     }
8643     if (*s == '$' && s[1] &&
8644       (isIDFIRST_lazy_if(s+1,is_utf8)
8645          || isDIGIT_A((U8)s[1])
8646          || s[1] == '$'
8647          || s[1] == '{'
8648          || strnEQ(s+1,"::",2)) )
8649     {
8650         /* Dereferencing a value in a scalar variable.
8651            The alternatives are different syntaxes for a scalar variable.
8652            Using ' as a leading package separator isn't allowed. :: is.   */
8653         return s;
8654     }
8655     /* Handle the opening { of @{...}, &{...}, *{...}, %{...}, ${...}  */
8656     if (*s == '{') {
8657         bracket = s - SvPVX(PL_linestr);
8658         s++;
8659         orig_copline = CopLINE(PL_curcop);
8660         if (s < PL_bufend && isSPACE(*s)) {
8661             s = skipspace(s);
8662         }
8663     }
8664
8665 /* Is the byte 'd' a legal single character identifier name?  'u' is true
8666  * iff Unicode semantics are to be used.  The legal ones are any of:
8667  *  a) all ASCII characters except:
8668  *          1) space-type ones, like \t and SPACE;
8669             2) NUL;
8670  *          3) '{'
8671  *     The final case currently doesn't get this far in the program, so we
8672  *     don't test for it.  If that were to change, it would be ok to allow it.
8673  *  c) When not under Unicode rules, any upper Latin1 character
8674  *  d) Otherwise, when unicode rules are used, all XIDS characters.
8675  *
8676  *      Because all ASCII characters have the same representation whether
8677  *      encoded in UTF-8 or not, we can use the foo_A macros below and '\0' and
8678  *      '{' without knowing if is UTF-8 or not.
8679  * EBCDIC already uses the rules that ASCII platforms will use after the
8680  * deprecation cycle; see comment below about the deprecation. */
8681 #ifdef EBCDIC
8682 #   define VALID_LEN_ONE_IDENT(s, is_utf8)                                    \
8683     (isGRAPH_A(*(s)) || ((is_utf8)                                            \
8684                          ? isIDFIRST_utf8((U8*) (s))                          \
8685                          : (isGRAPH_L1(*s)                                    \
8686                             && LIKELY((U8) *(s) != LATIN1_TO_NATIVE(0xAD)))))
8687 #else
8688 #   define VALID_LEN_ONE_IDENT(s, is_utf8) (! isSPACE_A(*(s))                 \
8689                                             && LIKELY(*(s) != '\0')           \
8690                                             && (! is_utf8                     \
8691                                                 || isASCII_utf8((U8*) (s))    \
8692                                                 || isIDFIRST_utf8((U8*) (s))))
8693 #endif
8694     if ((s <= PL_bufend - (is_utf8)
8695                           ? UTF8SKIP(s)
8696                           : 1)
8697         && VALID_LEN_ONE_IDENT(s, is_utf8))
8698     {
8699         /* Deprecate all non-graphic characters.  Include SHY as a non-graphic,
8700          * because often it has no graphic representation.  (We can't get to
8701          * here with SHY when 'is_utf8' is true, so no need to include a UTF-8
8702          * test for it.) */
8703         if ((is_utf8)
8704             ? ! isGRAPH_utf8( (U8*) s)
8705             : (! isGRAPH_L1( (U8) *s)
8706                || UNLIKELY((U8) *(s) == LATIN1_TO_NATIVE(0xAD))))
8707         {
8708             /* Split messages for back compat */
8709             if (isCNTRL_A( (U8) *s)) {
8710                 deprecate("literal control characters in variable names");
8711             }
8712             else {
8713                 deprecate("literal non-graphic characters in variable names");
8714             }
8715         }
8716         
8717         if (is_utf8) {
8718             const STRLEN skip = UTF8SKIP(s);
8719             STRLEN i;
8720             d[skip] = '\0';
8721             for ( i = 0; i < skip; i++ )
8722                 d[i] = *s++;
8723         }
8724         else {
8725             *d = *s++;
8726             d[1] = '\0';
8727         }
8728     }
8729     /* Convert $^F, ${^F} and the ^F of ${^FOO} to control characters */
8730     if (*d == '^' && *s && isCONTROLVAR(*s)) {
8731         *d = toCTRL(*s);
8732         s++;
8733     }
8734     /* Warn about ambiguous code after unary operators if {...} notation isn't
8735        used.  There's no difference in ambiguity; it's merely a heuristic
8736        about when not to warn.  */
8737     else if (ck_uni && bracket == -1)
8738         check_uni();
8739     if (bracket != -1) {
8740         /* If we were processing {...} notation then...  */
8741         if (isIDFIRST_lazy_if(d,is_utf8)) {
8742             /* if it starts as a valid identifier, assume that it is one.
8743                (the later check for } being at the expected point will trap
8744                cases where this doesn't pan out.)  */
8745         d += is_utf8 ? UTF8SKIP(d) : 1;
8746         parse_ident(&s, &d, e, 1, is_utf8);
8747             *d = '\0';
8748             tmp_copline = CopLINE(PL_curcop);
8749             if (s < PL_bufend && isSPACE(*s)) {
8750                 s = skipspace(s);
8751             }
8752             if ((*s == '[' || (*s == '{' && strNE(dest, "sub")))) {
8753                 /* ${foo[0]} and ${foo{bar}} notation.  */
8754                 if (ckWARN(WARN_AMBIGUOUS) && keyword(dest, d - dest, 0)) {
8755                     const char * const brack =
8756                         (const char *)
8757                         ((*s == '[') ? "[...]" : "{...}");
8758                     orig_copline = CopLINE(PL_curcop);
8759                     CopLINE_set(PL_curcop, tmp_copline);
8760    /* diag_listed_as: Ambiguous use of %c{%s[...]} resolved to %c%s[...] */
8761                     Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
8762                         "Ambiguous use of %c{%s%s} resolved to %c%s%s",
8763                         funny, dest, brack, funny, dest, brack);
8764                     CopLINE_set(PL_curcop, orig_copline);
8765                 }
8766                 bracket++;
8767                 PL_lex_brackstack[PL_lex_brackets++] = (char)(XOPERATOR | XFAKEBRACK);
8768                 PL_lex_allbrackets++;
8769                 return s;
8770             }
8771         }
8772         /* Handle extended ${^Foo} variables
8773          * 1999-02-27 mjd-perl-patch@plover.com */
8774         else if (! isPRINT(*d) /* isCNTRL(d), plus all non-ASCII */
8775                  && isWORDCHAR(*s))
8776         {
8777             d++;
8778             while (isWORDCHAR(*s) && d < e) {
8779                 *d++ = *s++;
8780             }
8781             if (d >= e)
8782                 Perl_croak(aTHX_ "%s", ident_too_long);
8783             *d = '\0';
8784         }
8785
8786         if ( !tmp_copline )
8787             tmp_copline = CopLINE(PL_curcop);
8788         if (s < PL_bufend && isSPACE(*s)) {
8789             s = skipspace(s);
8790         }
8791             
8792         /* Expect to find a closing } after consuming any trailing whitespace.
8793          */
8794         if (*s == '}') {
8795             s++;
8796             if (PL_lex_state == LEX_INTERPNORMAL && !PL_lex_brackets) {
8797                 PL_lex_state = LEX_INTERPEND;
8798                 PL_expect = XREF;
8799             }
8800             if (PL_lex_state == LEX_NORMAL) {
8801                 if (ckWARN(WARN_AMBIGUOUS) &&
8802                     (keyword(dest, d - dest, 0)
8803                      || get_cvn_flags(dest, d - dest, is_utf8 ? SVf_UTF8 : 0)))
8804                 {
8805                     SV *tmp = newSVpvn_flags( dest, d - dest,
8806                                             SVs_TEMP | (is_utf8 ? SVf_UTF8 : 0) );
8807                     if (funny == '#')
8808                         funny = '@';
8809                     orig_copline = CopLINE(PL_curcop);
8810                     CopLINE_set(PL_curcop, tmp_copline);
8811                     Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
8812                         "Ambiguous use of %c{%"SVf"} resolved to %c%"SVf,
8813                         funny, SVfARG(tmp), funny, SVfARG(tmp));
8814                     CopLINE_set(PL_curcop, orig_copline);
8815                 }
8816             }
8817         }
8818         else {
8819             /* Didn't find the closing } at the point we expected, so restore
8820                state such that the next thing to process is the opening { and */
8821             s = SvPVX(PL_linestr) + bracket; /* let the parser handle it */
8822             CopLINE_set(PL_curcop, orig_copline);
8823             PL_parser->herelines = herelines;
8824             *dest = '\0';
8825         }
8826     }
8827     else if (PL_lex_state == LEX_INTERPNORMAL && !PL_lex_brackets && !intuit_more(s))
8828         PL_lex_state = LEX_INTERPEND;
8829     return s;
8830 }
8831
8832 static bool
8833 S_pmflag(pTHX_ const char* const valid_flags, U32 * pmfl, char** s, char* charset, unsigned int * x_mod_count) {
8834
8835     /* Adds, subtracts to/from 'pmfl' based on the next regex modifier flag
8836      * found in the parse starting at 's', based on the subset that are valid
8837      * in this context input to this routine in 'valid_flags'. Advances s.
8838      * Returns TRUE if the input should be treated as a valid flag, so the next
8839      * char may be as well; otherwise FALSE. 'charset' should point to a NUL
8840      * upon first call on the current regex.  This routine will set it to any
8841      * charset modifier found.  The caller shouldn't change it.  This way,
8842      * another charset modifier encountered in the parse can be detected as an
8843      * error, as we have decided to allow only one */
8844
8845     const char c = **s;
8846     STRLEN charlen = UTF ? UTF8SKIP(*s) : 1;
8847
8848     if ( charlen != 1 || ! strchr(valid_flags, c) ) {
8849         if (isWORDCHAR_lazy_if(*s, UTF)) {
8850             yyerror_pv(Perl_form(aTHX_ "Unknown regexp modifier \"/%.*s\"", (int)charlen, *s),
8851                        UTF ? SVf_UTF8 : 0);
8852             (*s) += charlen;
8853             /* Pretend that it worked, so will continue processing before
8854              * dieing */
8855             return TRUE;
8856         }
8857         return FALSE;
8858     }
8859
8860     switch (c) {
8861
8862         CASE_STD_PMMOD_FLAGS_PARSE_SET(pmfl, *x_mod_count);
8863         case GLOBAL_PAT_MOD:      *pmfl |= PMf_GLOBAL; break;
8864         case CONTINUE_PAT_MOD:    *pmfl |= PMf_CONTINUE; break;
8865         case ONCE_PAT_MOD:        *pmfl |= PMf_KEEP; break;
8866         case KEEPCOPY_PAT_MOD:    *pmfl |= RXf_PMf_KEEPCOPY; break;
8867         case NONDESTRUCT_PAT_MOD: *pmfl |= PMf_NONDESTRUCT; break;
8868         case LOCALE_PAT_MOD:
8869             if (*charset) {
8870                 goto multiple_charsets;
8871             }
8872             set_regex_charset(pmfl, REGEX_LOCALE_CHARSET);
8873             *charset = c;
8874             break;
8875         case UNICODE_PAT_MOD:
8876             if (*charset) {
8877                 goto multiple_charsets;
8878             }
8879             set_regex_charset(pmfl, REGEX_UNICODE_CHARSET);
8880             *charset = c;
8881             break;
8882         case ASCII_RESTRICT_PAT_MOD:
8883             if (! *charset) {
8884                 set_regex_charset(pmfl, REGEX_ASCII_RESTRICTED_CHARSET);
8885             }
8886             else {
8887
8888                 /* Error if previous modifier wasn't an 'a', but if it was, see
8889                  * if, and accept, a second occurrence (only) */
8890                 if (*charset != 'a'
8891                     || get_regex_charset(*pmfl)
8892                         != REGEX_ASCII_RESTRICTED_CHARSET)
8893                 {
8894                         goto multiple_charsets;
8895                 }
8896                 set_regex_charset(pmfl, REGEX_ASCII_MORE_RESTRICTED_CHARSET);
8897             }
8898             *charset = c;
8899             break;
8900         case DEPENDS_PAT_MOD:
8901             if (*charset) {
8902                 goto multiple_charsets;
8903             }
8904             set_regex_charset(pmfl, REGEX_DEPENDS_CHARSET);
8905             *charset = c;
8906             break;
8907     }
8908
8909     (*s)++;
8910     return TRUE;
8911
8912     multiple_charsets:
8913         if (*charset != c) {
8914             yyerror(Perl_form(aTHX_ "Regexp modifiers \"/%c\" and \"/%c\" are mutually exclusive", *charset, c));
8915         }
8916         else if (c == 'a') {
8917   /* diag_listed_as: Regexp modifier "/%c" may appear a maximum of twice */
8918             yyerror("Regexp modifier \"/a\" may appear a maximum of twice");
8919         }
8920         else {
8921             yyerror(Perl_form(aTHX_ "Regexp modifier \"/%c\" may not appear twice", c));
8922         }
8923
8924         /* Pretend that it worked, so will continue processing before dieing */
8925         (*s)++;
8926         return TRUE;
8927 }
8928
8929 STATIC char *
8930 S_scan_pat(pTHX_ char *start, I32 type)
8931 {
8932     PMOP *pm;
8933     char *s;
8934     const char * const valid_flags =
8935         (const char *)((type == OP_QR) ? QR_PAT_MODS : M_PAT_MODS);
8936     char charset = '\0';    /* character set modifier */
8937     unsigned int x_mod_count = 0;
8938
8939     PERL_ARGS_ASSERT_SCAN_PAT;
8940
8941     s = scan_str(start,TRUE,FALSE, (PL_in_eval & EVAL_RE_REPARSING), NULL);
8942     if (!s)
8943         Perl_croak(aTHX_ "Search pattern not terminated");
8944
8945     pm = (PMOP*)newPMOP(type, 0);
8946     if (PL_multi_open == '?') {
8947         /* This is the only point in the code that sets PMf_ONCE:  */
8948         pm->op_pmflags |= PMf_ONCE;
8949
8950         /* Hence it's safe to do this bit of PMOP book-keeping here, which
8951            allows us to restrict the list needed by reset to just the ??
8952            matches.  */
8953         assert(type != OP_TRANS);
8954         if (PL_curstash) {
8955             MAGIC *mg = mg_find((const SV *)PL_curstash, PERL_MAGIC_symtab);
8956             U32 elements;
8957             if (!mg) {
8958                 mg = sv_magicext(MUTABLE_SV(PL_curstash), 0, PERL_MAGIC_symtab, 0, 0,
8959                                  0);
8960             }
8961             elements = mg->mg_len / sizeof(PMOP**);
8962             Renewc(mg->mg_ptr, elements + 1, PMOP*, char);
8963             ((PMOP**)mg->mg_ptr) [elements++] = pm;
8964             mg->mg_len = elements * sizeof(PMOP**);
8965             PmopSTASH_set(pm,PL_curstash);
8966         }
8967     }
8968
8969     /* if qr/...(?{..}).../, then need to parse the pattern within a new
8970      * anon CV. False positives like qr/[(?{]/ are harmless */
8971
8972     if (type == OP_QR) {
8973         STRLEN len;
8974         char *e, *p = SvPV(PL_lex_stuff, len);
8975         e = p + len;
8976         for (; p < e; p++) {
8977             if (p[0] == '(' && p[1] == '?'
8978                 && (p[2] == '{' || (p[2] == '?' && p[3] == '{')))
8979             {
8980                 pm->op_pmflags |= PMf_HAS_CV;
8981                 break;
8982             }
8983         }
8984         pm->op_pmflags |= PMf_IS_QR;
8985     }
8986
8987     while (*s && S_pmflag(aTHX_ valid_flags, &(pm->op_pmflags),
8988                                 &s, &charset, &x_mod_count))
8989     {};
8990     /* issue a warning if /c is specified,but /g is not */
8991     if ((pm->op_pmflags & PMf_CONTINUE) && !(pm->op_pmflags & PMf_GLOBAL))
8992     {
8993         Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), 
8994                        "Use of /c modifier is meaningless without /g" );
8995     }
8996
8997     STD_PMMOD_FLAGS_PARSE_X_WARN(x_mod_count);
8998
8999     PL_lex_op = (OP*)pm;
9000     pl_yylval.ival = OP_MATCH;
9001     return s;
9002 }
9003
9004 STATIC char *
9005 S_scan_subst(pTHX_ char *start)
9006 {
9007     char *s;
9008     PMOP *pm;
9009     I32 first_start;
9010     line_t first_line;
9011     I32 es = 0;
9012     char charset = '\0';    /* character set modifier */
9013     unsigned int x_mod_count = 0;
9014     char *t;
9015
9016     PERL_ARGS_ASSERT_SCAN_SUBST;
9017
9018     pl_yylval.ival = OP_NULL;
9019
9020     s = scan_str(start, TRUE, FALSE, FALSE, &t);
9021
9022     if (!s)
9023         Perl_croak(aTHX_ "Substitution pattern not terminated");
9024
9025     s = t;
9026
9027     first_start = PL_multi_start;
9028     first_line = CopLINE(PL_curcop);
9029     s = scan_str(s,FALSE,FALSE,FALSE,NULL);
9030     if (!s) {
9031         SvREFCNT_dec_NN(PL_lex_stuff);
9032         PL_lex_stuff = NULL;
9033         Perl_croak(aTHX_ "Substitution replacement not terminated");
9034     }
9035     PL_multi_start = first_start;       /* so whole substitution is taken together */
9036
9037     pm = (PMOP*)newPMOP(OP_SUBST, 0);
9038
9039
9040     while (*s) {
9041         if (*s == EXEC_PAT_MOD) {
9042             s++;
9043             es++;
9044         }
9045         else if (! S_pmflag(aTHX_ S_PAT_MODS, &(pm->op_pmflags),
9046                                   &s, &charset, &x_mod_count))
9047         {
9048             break;
9049         }
9050     }
9051
9052     STD_PMMOD_FLAGS_PARSE_X_WARN(x_mod_count);
9053
9054     if ((pm->op_pmflags & PMf_CONTINUE)) {
9055         Perl_ck_warner(aTHX_ packWARN(WARN_REGEXP), "Use of /c modifier is meaningless in s///" );
9056     }
9057
9058     if (es) {
9059         SV * const repl = newSVpvs("");
9060
9061         PL_multi_end = 0;
9062         pm->op_pmflags |= PMf_EVAL;
9063         while (es-- > 0) {
9064             if (es)
9065                 sv_catpvs(repl, "eval ");
9066             else
9067                 sv_catpvs(repl, "do ");
9068         }
9069         sv_catpvs(repl, "{");
9070         sv_catsv(repl, PL_sublex_info.repl);
9071         sv_catpvs(repl, "}");
9072         SvEVALED_on(repl);
9073         SvREFCNT_dec(PL_sublex_info.repl);
9074         PL_sublex_info.repl = repl;
9075     }
9076     if (CopLINE(PL_curcop) != first_line) {
9077         sv_upgrade(PL_sublex_info.repl, SVt_PVNV);
9078         ((XPVNV*)SvANY(PL_sublex_info.repl))->xnv_u.xpad_cop_seq.xlow =
9079             CopLINE(PL_curcop) - first_line;
9080         CopLINE_set(PL_curcop, first_line);
9081     }
9082
9083     PL_lex_op = (OP*)pm;
9084     pl_yylval.ival = OP_SUBST;
9085     return s;
9086 }
9087
9088 STATIC char *
9089 S_scan_trans(pTHX_ char *start)
9090 {
9091     char* s;
9092     OP *o;
9093     U8 squash;
9094     U8 del;
9095     U8 complement;
9096     bool nondestruct = 0;
9097     char *t;
9098
9099     PERL_ARGS_ASSERT_SCAN_TRANS;
9100
9101     pl_yylval.ival = OP_NULL;
9102
9103     s = scan_str(start,FALSE,FALSE,FALSE,&t);
9104     if (!s)
9105         Perl_croak(aTHX_ "Transliteration pattern not terminated");
9106
9107     s = t;
9108
9109     s = scan_str(s,FALSE,FALSE,FALSE,NULL);
9110     if (!s) {
9111         SvREFCNT_dec_NN(PL_lex_stuff);
9112         PL_lex_stuff = NULL;
9113         Perl_croak(aTHX_ "Transliteration replacement not terminated");
9114     }
9115
9116     complement = del = squash = 0;
9117     while (1) {
9118         switch (*s) {
9119         case 'c':
9120             complement = OPpTRANS_COMPLEMENT;
9121             break;
9122         case 'd':
9123             del = OPpTRANS_DELETE;
9124             break;
9125         case 's':
9126             squash = OPpTRANS_SQUASH;
9127             break;
9128         case 'r':
9129             nondestruct = 1;
9130             break;
9131         default:
9132             goto no_more;
9133         }
9134         s++;
9135     }
9136   no_more:
9137
9138     o = newPVOP(nondestruct ? OP_TRANSR : OP_TRANS, 0, (char*)NULL);
9139     o->op_private &= ~OPpTRANS_ALL;
9140     o->op_private |= del|squash|complement|
9141       (DO_UTF8(PL_lex_stuff)? OPpTRANS_FROM_UTF : 0)|
9142       (DO_UTF8(PL_sublex_info.repl) ? OPpTRANS_TO_UTF   : 0);
9143
9144     PL_lex_op = o;
9145     pl_yylval.ival = nondestruct ? OP_TRANSR : OP_TRANS;
9146
9147
9148     return s;
9149 }
9150
9151 /* scan_heredoc
9152    Takes a pointer to the first < in <<FOO.
9153    Returns a pointer to the byte following <<FOO.
9154
9155    This function scans a heredoc, which involves different methods
9156    depending on whether we are in a string eval, quoted construct, etc.
9157    This is because PL_linestr could containing a single line of input, or
9158    a whole string being evalled, or the contents of the current quote-
9159    like operator.
9160
9161    The two basic methods are:
9162     - Steal lines from the input stream
9163     - Scan the heredoc in PL_linestr and remove it therefrom
9164
9165    In a file scope or filtered eval, the first method is used; in a
9166    string eval, the second.
9167
9168    In a quote-like operator, we have to choose between the two,
9169    depending on where we can find a newline.  We peek into outer lex-
9170    ing scopes until we find one with a newline in it.  If we reach the
9171    outermost lexing scope and it is a file, we use the stream method.
9172    Otherwise it is treated as an eval.
9173 */
9174
9175 STATIC char *
9176 S_scan_heredoc(pTHX_ char *s)
9177 {
9178     I32 op_type = OP_SCALAR;
9179     I32 len;
9180     SV *tmpstr;
9181     char term;
9182     char *d;
9183     char *e;
9184     char *peek;
9185     const bool infile = PL_rsfp || PL_parser->filtered;
9186     const line_t origline = CopLINE(PL_curcop);
9187     LEXSHARED *shared = PL_parser->lex_shared;
9188
9189     PERL_ARGS_ASSERT_SCAN_HEREDOC;
9190
9191     s += 2;
9192     d = PL_tokenbuf + 1;
9193     e = PL_tokenbuf + sizeof PL_tokenbuf - 1;
9194     *PL_tokenbuf = '\n';
9195     peek = s;
9196     while (SPACE_OR_TAB(*peek))
9197         peek++;
9198     if (*peek == '`' || *peek == '\'' || *peek =='"') {
9199         s = peek;
9200         term = *s++;
9201         s = delimcpy(d, e, s, PL_bufend, term, &len);
9202         if (s == PL_bufend)
9203             Perl_croak(aTHX_ "Unterminated delimiter for here document");
9204         d += len;
9205         s++;
9206     }
9207     else {
9208         if (*s == '\\')
9209             /* <<\FOO is equivalent to <<'FOO' */
9210             s++, term = '\'';
9211         else
9212             term = '"';
9213         if (!isWORDCHAR_lazy_if(s,UTF))
9214             deprecate("bare << to mean <<\"\"");
9215         peek = s;
9216         while (isWORDCHAR_lazy_if(peek,UTF)) {
9217             peek += UTF ? UTF8SKIP(peek) : 1;
9218         }
9219         len = (peek - s >= e - d) ? (e - d) : (peek - s);
9220         Copy(s, d, len, char);
9221         s += len;
9222         d += len;
9223     }
9224     if (d >= PL_tokenbuf + sizeof PL_tokenbuf - 1)
9225         Perl_croak(aTHX_ "Delimiter for here document is too long");
9226     *d++ = '\n';
9227     *d = '\0';
9228     len = d - PL_tokenbuf;
9229
9230 #ifndef PERL_STRICT_CR
9231     d = strchr(s, '\r');
9232     if (d) {
9233         char * const olds = s;
9234         s = d;
9235         while (s < PL_bufend) {
9236             if (*s == '\r') {
9237                 *d++ = '\n';
9238                 if (*++s == '\n')
9239                     s++;
9240             }
9241             else if (*s == '\n' && s[1] == '\r') {      /* \015\013 on a mac? */
9242                 *d++ = *s++;
9243                 s++;
9244             }
9245             else
9246                 *d++ = *s++;
9247         }
9248         *d = '\0';
9249         PL_bufend = d;
9250         SvCUR_set(PL_linestr, PL_bufend - SvPVX_const(PL_linestr));
9251         s = olds;
9252     }
9253 #endif
9254
9255     tmpstr = newSV_type(SVt_PVIV);
9256     SvGROW(tmpstr, 80);
9257     if (term == '\'') {
9258         op_type = OP_CONST;
9259         SvIV_set(tmpstr, -1);
9260     }
9261     else if (term == '`') {
9262         op_type = OP_BACKTICK;
9263         SvIV_set(tmpstr, '\\');
9264     }
9265
9266     PL_multi_start = origline + 1 + PL_parser->herelines;
9267     PL_multi_open = PL_multi_close = '<';
9268     /* inside a string eval or quote-like operator */
9269     if (!infile || PL_lex_inwhat) {
9270         SV *linestr;
9271         char *bufend;
9272         char * const olds = s;
9273         PERL_CONTEXT * const cx = &cxstack[cxstack_ix];
9274         /* These two fields are not set until an inner lexing scope is
9275            entered.  But we need them set here. */
9276         shared->ls_bufptr  = s;
9277         shared->ls_linestr = PL_linestr;
9278         if (PL_lex_inwhat)
9279           /* Look for a newline.  If the current buffer does not have one,
9280              peek into the line buffer of the parent lexing scope, going
9281              up as many levels as necessary to find one with a newline
9282              after bufptr.
9283            */
9284           while (!(s = (char *)memchr(
9285                     (void *)shared->ls_bufptr, '\n',
9286                     SvEND(shared->ls_linestr)-shared->ls_bufptr
9287                 ))) {
9288             shared = shared->ls_prev;
9289             /* shared is only null if we have gone beyond the outermost
9290                lexing scope.  In a file, we will have broken out of the
9291                loop in the previous iteration.  In an eval, the string buf-
9292                fer ends with "\n;", so the while condition above will have
9293                evaluated to false.  So shared can never be null.  Or so you
9294                might think.  Odd syntax errors like s;@{<<; can gobble up
9295                the implicit semicolon at the end of a flie, causing the
9296                file handle to be closed even when we are not in a string
9297                eval.  So shared may be null in that case.  */
9298             if (UNLIKELY(!shared))
9299                 goto interminable;
9300             /* A LEXSHARED struct with a null ls_prev pointer is the outer-
9301                most lexing scope.  In a file, shared->ls_linestr at that
9302                level is just one line, so there is no body to steal. */
9303             if (infile && !shared->ls_prev) {
9304                 s = olds;
9305                 goto streaming;
9306             }
9307           }
9308         else {  /* eval */
9309             s = (char*)memchr((void*)s, '\n', PL_bufend - s);
9310             assert(s);
9311         }
9312         linestr = shared->ls_linestr;
9313         bufend = SvEND(linestr);
9314         d = s;
9315         while (s < bufend - len + 1 &&
9316           memNE(s,PL_tokenbuf,len) ) {
9317             if (*s++ == '\n')
9318                 ++PL_parser->herelines;
9319         }
9320         if (s >= bufend - len + 1) {
9321             goto interminable;
9322         }
9323         sv_setpvn(tmpstr,d+1,s-d);
9324         s += len - 1;
9325         /* the preceding stmt passes a newline */
9326         PL_parser->herelines++;
9327
9328         /* s now points to the newline after the heredoc terminator.
9329            d points to the newline before the body of the heredoc.
9330          */
9331
9332         /* We are going to modify linestr in place here, so set
9333            aside copies of the string if necessary for re-evals or
9334            (caller $n)[6]. */
9335         /* See the Paranoia note in case LEX_INTERPEND in yylex, for why we
9336            check shared->re_eval_str. */
9337         if (shared->re_eval_start || shared->re_eval_str) {
9338             /* Set aside the rest of the regexp */
9339             if (!shared->re_eval_str)
9340                 shared->re_eval_str =
9341                        newSVpvn(shared->re_eval_start,
9342                                 bufend - shared->re_eval_start);
9343             shared->re_eval_start -= s-d;
9344         }
9345         if (cxstack_ix >= 0 && CxTYPE(cx) == CXt_EVAL &&
9346             CxOLD_OP_TYPE(cx) == OP_ENTEREVAL &&
9347             cx->blk_eval.cur_text == linestr)
9348         {
9349             cx->blk_eval.cur_text = newSVsv(linestr);
9350             SvSCREAM_on(cx->blk_eval.cur_text);
9351         }
9352         /* Copy everything from s onwards back to d. */
9353         Move(s,d,bufend-s + 1,char);
9354         SvCUR_set(linestr, SvCUR(linestr) - (s-d));
9355         /* Setting PL_bufend only applies when we have not dug deeper
9356            into other scopes, because sublex_done sets PL_bufend to
9357            SvEND(PL_linestr). */
9358         if (shared == PL_parser->lex_shared) PL_bufend = SvEND(linestr);
9359         s = olds;
9360     }
9361     else
9362     {
9363       SV *linestr_save;
9364      streaming:
9365       sv_setpvs(tmpstr,"");   /* avoid "uninitialized" warning */
9366       term = PL_tokenbuf[1];
9367       len--;
9368       linestr_save = PL_linestr; /* must restore this afterwards */
9369       d = s;                     /* and this */
9370       PL_linestr = newSVpvs("");
9371       PL_bufend = SvPVX(PL_linestr);
9372       while (1) {
9373         PL_bufptr = PL_bufend;
9374         CopLINE_set(PL_curcop,
9375                     origline + 1 + PL_parser->herelines);
9376         if (!lex_next_chunk(LEX_NO_TERM)
9377          && (!SvCUR(tmpstr) || SvEND(tmpstr)[-1] != '\n')) {
9378             /* Simply freeing linestr_save might seem simpler here, as it
9379                does not matter what PL_linestr points to, since we are
9380                about to croak; but in a quote-like op, linestr_save
9381                will have been prospectively freed already, via
9382                SAVEFREESV(PL_linestr) in sublex_push, so it’s easier to
9383                restore PL_linestr. */
9384             SvREFCNT_dec_NN(PL_linestr);
9385             PL_linestr = linestr_save;
9386             goto interminable;
9387         }
9388         CopLINE_set(PL_curcop, origline);
9389         if (!SvCUR(PL_linestr) || PL_bufend[-1] != '\n') {
9390             s = lex_grow_linestr(SvLEN(PL_linestr) + 3);
9391             /* ^That should be enough to avoid this needing to grow:  */
9392             sv_catpvs(PL_linestr, "\n\0");
9393             assert(s == SvPVX(PL_linestr));
9394             PL_bufend = SvEND(PL_linestr);
9395         }
9396         s = PL_bufptr;
9397         PL_parser->herelines++;
9398         PL_last_lop = PL_last_uni = NULL;
9399 #ifndef PERL_STRICT_CR
9400         if (PL_bufend - PL_linestart >= 2) {
9401             if ((PL_bufend[-2] == '\r' && PL_bufend[-1] == '\n') ||
9402                 (PL_bufend[-2] == '\n' && PL_bufend[-1] == '\r'))
9403             {
9404                 PL_bufend[-2] = '\n';
9405                 PL_bufend--;
9406                 SvCUR_set(PL_linestr, PL_bufend - SvPVX_const(PL_linestr));
9407             }
9408             else if (PL_bufend[-1] == '\r')
9409                 PL_bufend[-1] = '\n';
9410         }
9411         else if (PL_bufend - PL_linestart == 1 && PL_bufend[-1] == '\r')
9412             PL_bufend[-1] = '\n';
9413 #endif
9414         if (*s == term && PL_bufend-s >= len
9415          && memEQ(s,PL_tokenbuf + 1,len)) {
9416             SvREFCNT_dec(PL_linestr);
9417             PL_linestr = linestr_save;
9418             PL_linestart = SvPVX(linestr_save);
9419             PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
9420             s = d;
9421             break;
9422         }
9423         else {
9424             sv_catsv(tmpstr,PL_linestr);
9425         }
9426       }
9427     }
9428     PL_multi_end = origline + PL_parser->herelines;
9429     if (SvCUR(tmpstr) + 5 < SvLEN(tmpstr)) {
9430         SvPV_shrink_to_cur(tmpstr);
9431     }
9432     if (!IN_BYTES) {
9433         if (UTF && is_utf8_string((U8*)SvPVX_const(tmpstr), SvCUR(tmpstr)))
9434             SvUTF8_on(tmpstr);
9435         else if (IN_ENCODING)
9436             sv_recode_to_utf8(tmpstr, _get_encoding());
9437     }
9438     PL_lex_stuff = tmpstr;
9439     pl_yylval.ival = op_type;
9440     return s;
9441
9442   interminable:
9443     SvREFCNT_dec(tmpstr);
9444     CopLINE_set(PL_curcop, origline);
9445     missingterm(PL_tokenbuf + 1);
9446 }
9447
9448 /* scan_inputsymbol
9449    takes: current position in input buffer
9450    returns: new position in input buffer
9451    side-effects: pl_yylval and lex_op are set.
9452
9453    This code handles:
9454
9455    <>           read from ARGV
9456    <<>>         read from ARGV without magic open
9457    <FH>         read from filehandle
9458    <pkg::FH>    read from package qualified filehandle
9459    <pkg'FH>     read from package qualified filehandle
9460    <$fh>        read from filehandle in $fh
9461    <*.h>        filename glob
9462
9463 */
9464
9465 STATIC char *
9466 S_scan_inputsymbol(pTHX_ char *start)
9467 {
9468     char *s = start;            /* current position in buffer */
9469     char *end;
9470     I32 len;
9471     bool nomagicopen = FALSE;
9472     char *d = PL_tokenbuf;                                      /* start of temp holding space */
9473     const char * const e = PL_tokenbuf + sizeof PL_tokenbuf;    /* end of temp holding space */
9474
9475     PERL_ARGS_ASSERT_SCAN_INPUTSYMBOL;
9476
9477     end = strchr(s, '\n');
9478     if (!end)
9479         end = PL_bufend;
9480     if (s[1] == '<' && s[2] == '>' && s[3] == '>') {
9481         nomagicopen = TRUE;
9482         *d = '\0';
9483         len = 0;
9484         s += 3;
9485     }
9486     else
9487         s = delimcpy(d, e, s + 1, end, '>', &len);      /* extract until > */
9488
9489     /* die if we didn't have space for the contents of the <>,
9490        or if it didn't end, or if we see a newline
9491     */
9492
9493     if (len >= (I32)sizeof PL_tokenbuf)
9494         Perl_croak(aTHX_ "Excessively long <> operator");
9495     if (s >= end)
9496         Perl_croak(aTHX_ "Unterminated <> operator");
9497
9498     s++;
9499
9500     /* check for <$fh>
9501        Remember, only scalar variables are interpreted as filehandles by
9502        this code.  Anything more complex (e.g., <$fh{$num}>) will be
9503        treated as a glob() call.
9504        This code makes use of the fact that except for the $ at the front,
9505        a scalar variable and a filehandle look the same.
9506     */
9507     if (*d == '$' && d[1]) d++;
9508
9509     /* allow <Pkg'VALUE> or <Pkg::VALUE> */
9510     while (*d && (isWORDCHAR_lazy_if(d,UTF) || *d == '\'' || *d == ':'))
9511         d += UTF ? UTF8SKIP(d) : 1;
9512
9513     /* If we've tried to read what we allow filehandles to look like, and
9514        there's still text left, then it must be a glob() and not a getline.
9515        Use scan_str to pull out the stuff between the <> and treat it
9516        as nothing more than a string.
9517     */
9518
9519     if (d - PL_tokenbuf != len) {
9520         pl_yylval.ival = OP_GLOB;
9521         s = scan_str(start,FALSE,FALSE,FALSE,NULL);
9522         if (!s)
9523            Perl_croak(aTHX_ "Glob not terminated");
9524         return s;
9525     }
9526     else {
9527         bool readline_overriden = FALSE;
9528         GV *gv_readline;
9529         /* we're in a filehandle read situation */
9530         d = PL_tokenbuf;
9531
9532         /* turn <> into <ARGV> */
9533         if (!len)
9534             Copy("ARGV",d,5,char);
9535
9536         /* Check whether readline() is overriden */
9537         if ((gv_readline = gv_override("readline",8)))
9538             readline_overriden = TRUE;
9539
9540         /* if <$fh>, create the ops to turn the variable into a
9541            filehandle
9542         */
9543         if (*d == '$') {
9544             /* try to find it in the pad for this block, otherwise find
9545                add symbol table ops
9546             */
9547             const PADOFFSET tmp = pad_findmy_pvn(d, len, 0);
9548             if (tmp != NOT_IN_PAD) {
9549                 if (PAD_COMPNAME_FLAGS_isOUR(tmp)) {
9550                     HV * const stash = PAD_COMPNAME_OURSTASH(tmp);
9551                     HEK * const stashname = HvNAME_HEK(stash);
9552                     SV * const sym = sv_2mortal(newSVhek(stashname));
9553                     sv_catpvs(sym, "::");
9554                     sv_catpv(sym, d+1);
9555                     d = SvPVX(sym);
9556                     goto intro_sym;
9557                 }
9558                 else {
9559                     OP * const o = newOP(OP_PADSV, 0);
9560                     o->op_targ = tmp;
9561                     PL_lex_op = readline_overriden
9562                         ? (OP*)newUNOP(OP_ENTERSUB, OPf_STACKED,
9563                                 op_append_elem(OP_LIST, o,
9564                                     newCVREF(0, newGVOP(OP_GV,0,gv_readline))))
9565                         : (OP*)newUNOP(OP_READLINE, 0, o);
9566                 }
9567             }
9568             else {
9569                 GV *gv;
9570                 ++d;
9571               intro_sym:
9572                 gv = gv_fetchpv(d,
9573                                 GV_ADDMULTI | ( UTF ? SVf_UTF8 : 0 ),
9574                                 SVt_PV);
9575                 PL_lex_op = readline_overriden
9576                     ? (OP*)newUNOP(OP_ENTERSUB, OPf_STACKED,
9577                             op_append_elem(OP_LIST,
9578                                 newUNOP(OP_RV2SV, 0, newGVOP(OP_GV, 0, gv)),
9579                                 newCVREF(0, newGVOP(OP_GV, 0, gv_readline))))
9580                     : (OP*)newUNOP(OP_READLINE, 0,
9581                             newUNOP(OP_RV2SV, 0,
9582                                 newGVOP(OP_GV, 0, gv)));
9583             }
9584             /* we created the ops in PL_lex_op, so make pl_yylval.ival a null op */
9585             pl_yylval.ival = OP_NULL;
9586         }
9587
9588         /* If it's none of the above, it must be a literal filehandle
9589            (<Foo::BAR> or <FOO>) so build a simple readline OP */
9590         else {
9591             GV * const gv = gv_fetchpv(d, GV_ADD | ( UTF ? SVf_UTF8 : 0 ), SVt_PVIO);
9592             PL_lex_op = readline_overriden
9593                 ? (OP*)newUNOP(OP_ENTERSUB, OPf_STACKED,
9594                         op_append_elem(OP_LIST,
9595                             newGVOP(OP_GV, 0, gv),
9596                             newCVREF(0, newGVOP(OP_GV, 0, gv_readline))))
9597                 : (OP*)newUNOP(OP_READLINE, nomagicopen ? OPf_SPECIAL : 0, newGVOP(OP_GV, 0, gv));
9598             pl_yylval.ival = OP_NULL;
9599         }
9600     }
9601
9602     return s;
9603 }
9604
9605
9606 /* scan_str
9607    takes:
9608         start                   position in buffer
9609         keep_bracketed_quoted   preserve \ quoting of embedded delimiters, but
9610                                 only if they are of the open/close form
9611         keep_delims             preserve the delimiters around the string
9612         re_reparse              compiling a run-time /(?{})/:
9613                                    collapse // to /,  and skip encoding src
9614         delimp                  if non-null, this is set to the position of
9615                                 the closing delimiter, or just after it if
9616                                 the closing and opening delimiters differ
9617                                 (i.e., the opening delimiter of a substitu-
9618                                 tion replacement)
9619    returns: position to continue reading from buffer
9620    side-effects: multi_start, multi_close, lex_repl or lex_stuff, and
9621         updates the read buffer.
9622
9623    This subroutine pulls a string out of the input.  It is called for:
9624         q               single quotes           q(literal text)
9625         '               single quotes           'literal text'
9626         qq              double quotes           qq(interpolate $here please)
9627         "               double quotes           "interpolate $here please"
9628         qx              backticks               qx(/bin/ls -l)
9629         `               backticks               `/bin/ls -l`
9630         qw              quote words             @EXPORT_OK = qw( func() $spam )
9631         m//             regexp match            m/this/
9632         s///            regexp substitute       s/this/that/
9633         tr///           string transliterate    tr/this/that/
9634         y///            string transliterate    y/this/that/
9635         ($*@)           sub prototypes          sub foo ($)
9636         (stuff)         sub attr parameters     sub foo : attr(stuff)
9637         <>              readline or globs       <FOO>, <>, <$fh>, or <*.c>
9638         
9639    In most of these cases (all but <>, patterns and transliterate)
9640    yylex() calls scan_str().  m// makes yylex() call scan_pat() which
9641    calls scan_str().  s/// makes yylex() call scan_subst() which calls
9642    scan_str().  tr/// and y/// make yylex() call scan_trans() which
9643    calls scan_str().
9644
9645    It skips whitespace before the string starts, and treats the first
9646    character as the delimiter.  If the delimiter is one of ([{< then
9647    the corresponding "close" character )]}> is used as the closing
9648    delimiter.  It allows quoting of delimiters, and if the string has
9649    balanced delimiters ([{<>}]) it allows nesting.
9650
9651    On success, the SV with the resulting string is put into lex_stuff or,
9652    if that is already non-NULL, into lex_repl. The second case occurs only
9653    when parsing the RHS of the special constructs s/// and tr/// (y///).
9654    For convenience, the terminating delimiter character is stuffed into
9655    SvIVX of the SV.
9656 */
9657
9658 STATIC char *
9659 S_scan_str(pTHX_ char *start, int keep_bracketed_quoted, int keep_delims, int re_reparse,
9660                  char **delimp
9661     )
9662 {
9663     SV *sv;                     /* scalar value: string */
9664     const char *tmps;           /* temp string, used for delimiter matching */
9665     char *s = start;            /* current position in the buffer */
9666     char term;                  /* terminating character */
9667     char *to;                   /* current position in the sv's data */
9668     I32 brackets = 1;           /* bracket nesting level */
9669     bool has_utf8 = FALSE;      /* is there any utf8 content? */
9670     I32 termcode;               /* terminating char. code */
9671     U8 termstr[UTF8_MAXBYTES];  /* terminating string */
9672     STRLEN termlen;             /* length of terminating string */
9673     int last_off = 0;           /* last position for nesting bracket */
9674     line_t herelines;
9675
9676     PERL_ARGS_ASSERT_SCAN_STR;
9677
9678     /* skip space before the delimiter */
9679     if (isSPACE(*s)) {
9680         s = skipspace(s);
9681     }
9682
9683     /* mark where we are, in case we need to report errors */
9684     CLINE;
9685
9686     /* after skipping whitespace, the next character is the terminator */
9687     term = *s;
9688     if (!UTF) {
9689         termcode = termstr[0] = term;
9690         termlen = 1;
9691     }
9692     else {
9693         termcode = utf8_to_uvchr_buf((U8*)s, (U8*)PL_bufend, &termlen);
9694         Copy(s, termstr, termlen, U8);
9695         if (!UTF8_IS_INVARIANT(term))
9696             has_utf8 = TRUE;
9697     }
9698
9699     /* mark where we are */
9700     PL_multi_start = CopLINE(PL_curcop);
9701     PL_multi_open = term;
9702     herelines = PL_parser->herelines;
9703
9704     /* find corresponding closing delimiter */
9705     if (term && (tmps = strchr("([{< )]}> )]}>",term)))
9706         termcode = termstr[0] = term = tmps[5];
9707
9708     PL_multi_close = term;
9709
9710     if (PL_multi_open == PL_multi_close) {
9711         keep_bracketed_quoted = FALSE;
9712     }
9713
9714     /* create a new SV to hold the contents.  79 is the SV's initial length.
9715        What a random number. */
9716     sv = newSV_type(SVt_PVIV);
9717     SvGROW(sv, 80);
9718     SvIV_set(sv, termcode);
9719     (void)SvPOK_only(sv);               /* validate pointer */
9720
9721     /* move past delimiter and try to read a complete string */
9722     if (keep_delims)
9723         sv_catpvn(sv, s, termlen);
9724     s += termlen;
9725     for (;;) {
9726         if (IN_ENCODING && !UTF && !re_reparse) {
9727             bool cont = TRUE;
9728
9729             while (cont) {
9730                 int offset = s - SvPVX_const(PL_linestr);
9731                 const bool found = sv_cat_decode(sv, _get_encoding(), PL_linestr,
9732                                            &offset, (char*)termstr, termlen);
9733                 const char *ns;
9734                 char *svlast;
9735
9736                 if (SvIsCOW(PL_linestr)) {
9737                     STRLEN bufend_pos, bufptr_pos, oldbufptr_pos;
9738                     STRLEN oldoldbufptr_pos, linestart_pos, last_uni_pos;
9739                     STRLEN last_lop_pos, re_eval_start_pos, s_pos;
9740                     char *buf = SvPVX(PL_linestr);
9741                     bufend_pos = PL_parser->bufend - buf;
9742                     bufptr_pos = PL_parser->bufptr - buf;
9743                     oldbufptr_pos = PL_parser->oldbufptr - buf;
9744                     oldoldbufptr_pos = PL_parser->oldoldbufptr - buf;
9745                     linestart_pos = PL_parser->linestart - buf;
9746                     last_uni_pos = PL_parser->last_uni
9747                         ? PL_parser->last_uni - buf
9748                         : 0;
9749                     last_lop_pos = PL_parser->last_lop
9750                         ? PL_parser->last_lop - buf
9751                         : 0;
9752                     re_eval_start_pos =
9753                         PL_parser->lex_shared->re_eval_start ?
9754                             PL_parser->lex_shared->re_eval_start - buf : 0;
9755                     s_pos = s - buf;
9756
9757                     sv_force_normal(PL_linestr);
9758
9759                     buf = SvPVX(PL_linestr);
9760                     PL_parser->bufend = buf + bufend_pos;
9761                     PL_parser->bufptr = buf + bufptr_pos;
9762                     PL_parser->oldbufptr = buf + oldbufptr_pos;
9763                     PL_parser->oldoldbufptr = buf + oldoldbufptr_pos;
9764                     PL_parser->linestart = buf + linestart_pos;
9765                     if (PL_parser->last_uni)
9766                         PL_parser->last_uni = buf + last_uni_pos;
9767                     if (PL_parser->last_lop)
9768                         PL_parser->last_lop = buf + last_lop_pos;
9769                     if (PL_parser->lex_shared->re_eval_start)
9770                         PL_parser->lex_shared->re_eval_start  =
9771                             buf + re_eval_start_pos;
9772                     s = buf + s_pos;
9773                 }
9774                 ns = SvPVX_const(PL_linestr) + offset;
9775                 svlast = SvEND(sv) - 1;
9776
9777                 for (; s < ns; s++) {
9778                     if (*s == '\n' && !PL_rsfp && !PL_parser->filtered)
9779                         COPLINE_INC_WITH_HERELINES;
9780                 }
9781                 if (!found)
9782                     goto read_more_line;
9783                 else {
9784                     /* handle quoted delimiters */
9785                     if (SvCUR(sv) > 1 && *(svlast-1) == '\\') {
9786                         const char *t;
9787                         for (t = svlast-2; t >= SvPVX_const(sv) && *t == '\\';)
9788                             t--;
9789                         if ((svlast-1 - t) % 2) {
9790                             if (!keep_bracketed_quoted) {
9791                                 *(svlast-1) = term;
9792                                 *svlast = '\0';
9793                                 SvCUR_set(sv, SvCUR(sv) - 1);
9794                             }
9795                             continue;
9796                         }
9797                     }
9798                     if (PL_multi_open == PL_multi_close) {
9799                         cont = FALSE;
9800                     }
9801                     else {
9802                         const char *t;
9803                         char *w;
9804                         for (t = w = SvPVX(sv)+last_off; t < svlast; w++, t++) {
9805                             /* At here, all closes are "was quoted" one,
9806                                so we don't check PL_multi_close. */
9807                             if (*t == '\\') {
9808                                 if (!keep_bracketed_quoted && *(t+1) == PL_multi_open)
9809                                     t++;
9810                                 else
9811                                     *w++ = *t++;
9812                             }
9813                             else if (*t == PL_multi_open)
9814                                 brackets++;
9815
9816                             *w = *t;
9817                         }
9818                         if (w < t) {
9819                             *w++ = term;
9820                             *w = '\0';
9821                             SvCUR_set(sv, w - SvPVX_const(sv));
9822                         }
9823                         last_off = w - SvPVX(sv);
9824                         if (--brackets <= 0)
9825                             cont = FALSE;
9826                     }
9827                 }
9828             }
9829             if (!keep_delims) {
9830                 SvCUR_set(sv, SvCUR(sv) - 1);
9831                 *SvEND(sv) = '\0';
9832             }
9833             break;
9834         }
9835
9836         /* extend sv if need be */
9837         SvGROW(sv, SvCUR(sv) + (PL_bufend - s) + 1);
9838         /* set 'to' to the next character in the sv's string */
9839         to = SvPVX(sv)+SvCUR(sv);
9840
9841         /* if open delimiter is the close delimiter read unbridle */
9842         if (PL_multi_open == PL_multi_close) {
9843             for (; s < PL_bufend; s++,to++) {
9844                 /* embedded newlines increment the current line number */
9845                 if (*s == '\n' && !PL_rsfp && !PL_parser->filtered)
9846                     COPLINE_INC_WITH_HERELINES;
9847                 /* handle quoted delimiters */
9848                 if (*s == '\\' && s+1 < PL_bufend && term != '\\') {
9849                     if (!keep_bracketed_quoted
9850                         && (s[1] == term
9851                             || (re_reparse && s[1] == '\\'))
9852                     )
9853                         s++;
9854                     else /* any other quotes are simply copied straight through */
9855                         *to++ = *s++;
9856                 }
9857                 /* terminate when run out of buffer (the for() condition), or
9858                    have found the terminator */
9859                 else if (*s == term) {
9860                     if (termlen == 1)
9861                         break;
9862                     if (s+termlen <= PL_bufend && memEQ(s, (char*)termstr, termlen))
9863                         break;
9864                 }
9865                 else if (!has_utf8 && !UTF8_IS_INVARIANT((U8)*s) && UTF)
9866                     has_utf8 = TRUE;
9867                 *to = *s;
9868             }
9869         }
9870         
9871         /* if the terminator isn't the same as the start character (e.g.,
9872            matched brackets), we have to allow more in the quoting, and
9873            be prepared for nested brackets.
9874         */
9875         else {
9876             /* read until we run out of string, or we find the terminator */
9877             for (; s < PL_bufend; s++,to++) {
9878                 /* embedded newlines increment the line count */
9879                 if (*s == '\n' && !PL_rsfp && !PL_parser->filtered)
9880                     COPLINE_INC_WITH_HERELINES;
9881                 /* backslashes can escape the open or closing characters */
9882                 if (*s == '\\' && s+1 < PL_bufend) {
9883                     if (!keep_bracketed_quoted &&
9884                         ((s[1] == PL_multi_open) || (s[1] == PL_multi_close)))
9885                     {
9886                         s++;
9887                     }
9888                     else
9889                         *to++ = *s++;
9890                 }
9891                 /* allow nested opens and closes */
9892                 else if (*s == PL_multi_close && --brackets <= 0)
9893                     break;
9894                 else if (*s == PL_multi_open)
9895                     brackets++;
9896                 else if (!has_utf8 && !UTF8_IS_INVARIANT((U8)*s) && UTF)
9897                     has_utf8 = TRUE;
9898                 *to = *s;
9899             }
9900         }
9901         /* terminate the copied string and update the sv's end-of-string */
9902         *to = '\0';
9903         SvCUR_set(sv, to - SvPVX_const(sv));
9904
9905         /*
9906          * this next chunk reads more into the buffer if we're not done yet
9907          */
9908
9909         if (s < PL_bufend)
9910             break;              /* handle case where we are done yet :-) */
9911
9912 #ifndef PERL_STRICT_CR
9913         if (to - SvPVX_const(sv) >= 2) {
9914             if ((to[-2] == '\r' && to[-1] == '\n') ||
9915                 (to[-2] == '\n' && to[-1] == '\r'))
9916             {
9917                 to[-2] = '\n';
9918                 to--;
9919                 SvCUR_set(sv, to - SvPVX_const(sv));
9920             }
9921             else if (to[-1] == '\r')
9922                 to[-1] = '\n';
9923         }
9924         else if (to - SvPVX_const(sv) == 1 && to[-1] == '\r')
9925             to[-1] = '\n';
9926 #endif
9927         
9928      read_more_line:
9929         /* if we're out of file, or a read fails, bail and reset the current
9930            line marker so we can report where the unterminated string began
9931         */
9932         COPLINE_INC_WITH_HERELINES;
9933         PL_bufptr = PL_bufend;
9934         if (!lex_next_chunk(0)) {
9935             sv_free(sv);
9936             CopLINE_set(PL_curcop, (line_t)PL_multi_start);
9937             return NULL;
9938         }
9939         s = PL_bufptr;
9940     }
9941
9942     /* at this point, we have successfully read the delimited string */
9943
9944     if (!IN_ENCODING || UTF || re_reparse) {
9945
9946         if (keep_delims)
9947             sv_catpvn(sv, s, termlen);
9948         s += termlen;
9949     }
9950     if (has_utf8 || (IN_ENCODING && !re_reparse))
9951         SvUTF8_on(sv);
9952
9953     PL_multi_end = CopLINE(PL_curcop);
9954     CopLINE_set(PL_curcop, PL_multi_start);
9955     PL_parser->herelines = herelines;
9956
9957     /* if we allocated too much space, give some back */
9958     if (SvCUR(sv) + 5 < SvLEN(sv)) {
9959         SvLEN_set(sv, SvCUR(sv) + 1);
9960         SvPV_renew(sv, SvLEN(sv));
9961     }
9962
9963     /* decide whether this is the first or second quoted string we've read
9964        for this op
9965     */
9966
9967     if (PL_lex_stuff)
9968         PL_sublex_info.repl = sv;
9969     else
9970         PL_lex_stuff = sv;
9971     if (delimp) *delimp = PL_multi_open == PL_multi_close ? s-termlen : s;
9972     return s;
9973 }
9974
9975 /*
9976   scan_num
9977   takes: pointer to position in buffer
9978   returns: pointer to new position in buffer
9979   side-effects: builds ops for the constant in pl_yylval.op
9980
9981   Read a number in any of the formats that Perl accepts:
9982
9983   \d(_?\d)*(\.(\d(_?\d)*)?)?[Ee][\+\-]?(\d(_?\d)*)      12 12.34 12.
9984   \.\d(_?\d)*[Ee][\+\-]?(\d(_?\d)*)                     .34
9985   0b[01](_?[01])*                                       binary integers
9986   0[0-7](_?[0-7])*                                      octal integers
9987   0x[0-9A-Fa-f](_?[0-9A-Fa-f])*                         hexadecimal integers
9988   0x[0-9A-Fa-f](_?[0-9A-Fa-f])*(?:\.\d*)?p[+-]?[0-9]+   hexadecimal floats
9989
9990   Like most scan_ routines, it uses the PL_tokenbuf buffer to hold the
9991   thing it reads.
9992
9993   If it reads a number without a decimal point or an exponent, it will
9994   try converting the number to an integer and see if it can do so
9995   without loss of precision.
9996 */
9997
9998 char *
9999 Perl_scan_num(pTHX_ const char *start, YYSTYPE* lvalp)
10000 {
10001     const char *s = start;      /* current position in buffer */
10002     char *d;                    /* destination in temp buffer */
10003     char *e;                    /* end of temp buffer */
10004     NV nv;                              /* number read, as a double */
10005     SV *sv = NULL;                      /* place to put the converted number */
10006     bool floatit;                       /* boolean: int or float? */
10007     const char *lastub = NULL;          /* position of last underbar */
10008     static const char* const number_too_long = "Number too long";
10009     /* Hexadecimal floating point.
10010      *
10011      * In many places (where we have quads and NV is IEEE 754 double)
10012      * we can fit the mantissa bits of a NV into an unsigned quad.
10013      * (Note that UVs might not be quads even when we have quads.)
10014      * This will not work everywhere, though (either no quads, or
10015      * using long doubles), in which case we have to resort to NV,
10016      * which will probably mean horrible loss of precision due to
10017      * multiple fp operations. */
10018     bool hexfp = FALSE;
10019     int total_bits = 0;
10020 #if NVSIZE == 8 && defined(HAS_QUAD) && defined(Uquad_t)
10021 #  define HEXFP_UQUAD
10022     Uquad_t hexfp_uquad = 0;
10023     int hexfp_frac_bits = 0;
10024 #else
10025 #  define HEXFP_NV
10026     NV hexfp_nv = 0.0;
10027 #endif
10028     NV hexfp_mult = 1.0;
10029     UV high_non_zero = 0; /* highest digit */
10030
10031     PERL_ARGS_ASSERT_SCAN_NUM;
10032
10033     /* We use the first character to decide what type of number this is */
10034
10035     switch (*s) {
10036     default:
10037         Perl_croak(aTHX_ "panic: scan_num, *s=%d", *s);
10038
10039     /* if it starts with a 0, it could be an octal number, a decimal in
10040        0.13 disguise, or a hexadecimal number, or a binary number. */
10041     case '0':
10042         {
10043           /* variables:
10044              u          holds the "number so far"
10045              shift      the power of 2 of the base
10046                         (hex == 4, octal == 3, binary == 1)
10047              overflowed was the number more than we can hold?
10048
10049              Shift is used when we add a digit.  It also serves as an "are
10050              we in octal/hex/binary?" indicator to disallow hex characters
10051              when in octal mode.
10052            */
10053             NV n = 0.0;
10054             UV u = 0;
10055             I32 shift;
10056             bool overflowed = FALSE;
10057             bool just_zero  = TRUE;     /* just plain 0 or binary number? */
10058             static const NV nvshift[5] = { 1.0, 2.0, 4.0, 8.0, 16.0 };
10059             static const char* const bases[5] =
10060               { "", "binary", "", "octal", "hexadecimal" };
10061             static const char* const Bases[5] =
10062               { "", "Binary", "", "Octal", "Hexadecimal" };
10063             static const char* const maxima[5] =
10064               { "",
10065                 "0b11111111111111111111111111111111",
10066                 "",
10067                 "037777777777",
10068                 "0xffffffff" };
10069             const char *base, *Base, *max;
10070
10071             /* check for hex */
10072             if (isALPHA_FOLD_EQ(s[1], 'x')) {
10073                 shift = 4;
10074                 s += 2;
10075                 just_zero = FALSE;
10076             } else if (isALPHA_FOLD_EQ(s[1], 'b')) {
10077                 shift = 1;
10078                 s += 2;
10079                 just_zero = FALSE;
10080             }
10081             /* check for a decimal in disguise */
10082             else if (s[1] == '.' || isALPHA_FOLD_EQ(s[1], 'e'))
10083                 goto decimal;
10084             /* so it must be octal */
10085             else {
10086                 shift = 3;
10087                 s++;
10088             }
10089
10090             if (*s == '_') {
10091                 Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX),
10092                                "Misplaced _ in number");
10093                lastub = s++;
10094             }
10095
10096             base = bases[shift];
10097             Base = Bases[shift];
10098             max  = maxima[shift];
10099
10100             /* read the rest of the number */
10101             for (;;) {
10102                 /* x is used in the overflow test,
10103                    b is the digit we're adding on. */
10104                 UV x, b;
10105
10106                 switch (*s) {
10107
10108                 /* if we don't mention it, we're done */
10109                 default:
10110                     goto out;
10111
10112                 /* _ are ignored -- but warned about if consecutive */
10113                 case '_':
10114                     if (lastub && s == lastub + 1)
10115                         Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX),
10116                                        "Misplaced _ in number");
10117                     lastub = s++;
10118                     break;
10119
10120                 /* 8 and 9 are not octal */
10121                 case '8': case '9':
10122                     if (shift == 3)
10123                         yyerror(Perl_form(aTHX_ "Illegal octal digit '%c'", *s));
10124                     /* FALLTHROUGH */
10125
10126                 /* octal digits */
10127                 case '2': case '3': case '4':
10128                 case '5': case '6': case '7':
10129                     if (shift == 1)
10130                         yyerror(Perl_form(aTHX_ "Illegal binary digit '%c'", *s));
10131                     /* FALLTHROUGH */
10132
10133                 case '0': case '1':
10134                     b = *s++ & 15;              /* ASCII digit -> value of digit */
10135                     goto digit;
10136
10137                 /* hex digits */
10138                 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
10139                 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
10140                     /* make sure they said 0x */
10141                     if (shift != 4)
10142                         goto out;
10143                     b = (*s++ & 7) + 9;
10144
10145                     /* Prepare to put the digit we have onto the end
10146                        of the number so far.  We check for overflows.
10147                     */
10148
10149                   digit:
10150                     just_zero = FALSE;
10151                     if (!overflowed) {
10152                         x = u << shift; /* make room for the digit */
10153
10154                         total_bits += shift;
10155
10156                         if ((x >> shift) != u
10157                             && !(PL_hints & HINT_NEW_BINARY)) {
10158                             overflowed = TRUE;
10159                             n = (NV) u;
10160                             Perl_ck_warner_d(aTHX_ packWARN(WARN_OVERFLOW),
10161                                              "Integer overflow in %s number",
10162                                              base);
10163                         } else
10164                             u = x | b;          /* add the digit to the end */
10165                     }
10166                     if (overflowed) {
10167                         n *= nvshift[shift];
10168                         /* If an NV has not enough bits in its
10169                          * mantissa to represent an UV this summing of
10170                          * small low-order numbers is a waste of time
10171                          * (because the NV cannot preserve the
10172                          * low-order bits anyway): we could just
10173                          * remember when did we overflow and in the
10174                          * end just multiply n by the right
10175                          * amount. */
10176                         n += (NV) b;
10177                     }
10178
10179                     if (high_non_zero == 0 && b > 0)
10180                         high_non_zero = b;
10181
10182                     /* this could be hexfp, but peek ahead
10183                      * to avoid matching ".." */
10184                     if (UNLIKELY(HEXFP_PEEK(s))) {
10185                         goto out;
10186                     }
10187
10188                     break;
10189                 }
10190             }
10191
10192           /* if we get here, we had success: make a scalar value from
10193              the number.
10194           */
10195           out:
10196
10197             /* final misplaced underbar check */
10198             if (s[-1] == '_') {
10199                 Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX), "Misplaced _ in number");
10200             }
10201
10202             if (UNLIKELY(HEXFP_PEEK(s))) {
10203                 /* Do sloppy (on the underbars) but quick detection
10204                  * (and value construction) for hexfp, the decimal
10205                  * detection will shortly be more thorough with the
10206                  * underbar checks. */
10207                 const char* h = s;
10208 #ifdef HEXFP_UQUAD
10209                 hexfp_uquad = u;
10210 #else /* HEXFP_NV */
10211                 hexfp_nv = u;
10212 #endif
10213                 if (*h == '.') {
10214 #ifdef HEXFP_NV
10215                     NV mult = 1 / 16.0;
10216 #endif
10217                     h++;
10218                     while (isXDIGIT(*h) || *h == '_') {
10219                         if (isXDIGIT(*h)) {
10220                             U8 b = XDIGIT_VALUE(*h);
10221                             total_bits += shift;
10222 #ifdef HEXFP_UQUAD
10223                             hexfp_uquad <<= shift;
10224                             hexfp_uquad |= b;
10225                             hexfp_frac_bits += shift;
10226 #else /* HEXFP_NV */
10227                             hexfp_nv += b * mult;
10228                             mult /= 16.0;
10229 #endif
10230                         }
10231                         h++;
10232                     }
10233                 }
10234
10235                 if (total_bits >= 4) {
10236                     if (high_non_zero < 0x8)
10237                         total_bits--;
10238                     if (high_non_zero < 0x4)
10239                         total_bits--;
10240                     if (high_non_zero < 0x2)
10241                         total_bits--;
10242                 }
10243
10244                 if (total_bits > 0 && (isALPHA_FOLD_EQ(*h, 'p'))) {
10245                     bool negexp = FALSE;
10246                     h++;
10247                     if (*h == '+')
10248                         h++;
10249                     else if (*h == '-') {
10250                         negexp = TRUE;
10251                         h++;
10252                     }
10253                     if (isDIGIT(*h)) {
10254                         I32 hexfp_exp = 0;
10255                         while (isDIGIT(*h) || *h == '_') {
10256                             if (isDIGIT(*h)) {
10257                                 hexfp_exp *= 10;
10258                                 hexfp_exp += *h - '0';
10259 #ifdef NV_MIN_EXP
10260                                 if (negexp &&
10261                                     -hexfp_exp < NV_MIN_EXP - 1) {
10262                                     Perl_ck_warner(aTHX_ packWARN(WARN_OVERFLOW),
10263                                                    "Hexadecimal float: exponent underflow");
10264 #endif
10265                                     break;
10266                                 }
10267                                 else {
10268 #ifdef NV_MAX_EXP
10269                                     if (!negexp &&
10270                                         hexfp_exp > NV_MAX_EXP - 1) {
10271                                         Perl_ck_warner(aTHX_ packWARN(WARN_OVERFLOW),
10272                                                    "Hexadecimal float: exponent overflow");
10273                                         break;
10274                                     }
10275 #endif
10276                                 }
10277                             }
10278                             h++;
10279                         }
10280                         if (negexp)
10281                             hexfp_exp = -hexfp_exp;
10282 #ifdef HEXFP_UQUAD
10283                         hexfp_exp -= hexfp_frac_bits;
10284 #endif
10285                         hexfp_mult = pow(2.0, hexfp_exp);
10286                         hexfp = TRUE;
10287                         goto decimal;
10288                     }
10289                 }
10290             }
10291
10292             if (overflowed) {
10293                 if (n > 4294967295.0)
10294                     Perl_ck_warner(aTHX_ packWARN(WARN_PORTABLE),
10295                                    "%s number > %s non-portable",
10296                                    Base, max);
10297                 sv = newSVnv(n);
10298             }
10299             else {
10300 #if UVSIZE > 4
10301                 if (u > 0xffffffff)
10302                     Perl_ck_warner(aTHX_ packWARN(WARN_PORTABLE),
10303                                    "%s number > %s non-portable",
10304                                    Base, max);
10305 #endif
10306                 sv = newSVuv(u);
10307             }
10308             if (just_zero && (PL_hints & HINT_NEW_INTEGER))
10309                 sv = new_constant(start, s - start, "integer",
10310                                   sv, NULL, NULL, 0);
10311             else if (PL_hints & HINT_NEW_BINARY)
10312                 sv = new_constant(start, s - start, "binary", sv, NULL, NULL, 0);
10313         }
10314         break;
10315
10316     /*
10317       handle decimal numbers.
10318       we're also sent here when we read a 0 as the first digit
10319     */
10320     case '1': case '2': case '3': case '4': case '5':
10321     case '6': case '7': case '8': case '9': case '.':
10322       decimal:
10323         d = PL_tokenbuf;
10324         e = PL_tokenbuf + sizeof PL_tokenbuf - 6; /* room for various punctuation */
10325         floatit = FALSE;
10326         if (hexfp) {
10327             floatit = TRUE;
10328             *d++ = '0';
10329             *d++ = 'x';
10330             s = start + 2;
10331         }
10332
10333         /* read next group of digits and _ and copy into d */
10334         while (isDIGIT(*s) || *s == '_' ||
10335                UNLIKELY(hexfp && isXDIGIT(*s))) {
10336             /* skip underscores, checking for misplaced ones
10337                if -w is on
10338             */
10339             if (*s == '_') {
10340                 if (lastub && s == lastub + 1)
10341                     Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX),
10342                                    "Misplaced _ in number");
10343                 lastub = s++;
10344             }
10345             else {
10346                 /* check for end of fixed-length buffer */
10347                 if (d >= e)
10348                     Perl_croak(aTHX_ "%s", number_too_long);
10349                 /* if we're ok, copy the character */
10350                 *d++ = *s++;
10351             }
10352         }
10353
10354         /* final misplaced underbar check */
10355         if (lastub && s == lastub + 1) {
10356             Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX), "Misplaced _ in number");
10357         }
10358
10359         /* read a decimal portion if there is one.  avoid
10360            3..5 being interpreted as the number 3. followed
10361            by .5
10362         */
10363         if (*s == '.' && s[1] != '.') {
10364             floatit = TRUE;
10365             *d++ = *s++;
10366
10367             if (*s == '_') {
10368                 Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX),
10369                                "Misplaced _ in number");
10370                 lastub = s;
10371             }
10372
10373             /* copy, ignoring underbars, until we run out of digits.
10374             */
10375             for (; isDIGIT(*s) || *s == '_' ||
10376                      UNLIKELY(hexfp && isXDIGIT(*s));
10377                  s++) {
10378                 /* fixed length buffer check */
10379                 if (d >= e)
10380                     Perl_croak(aTHX_ "%s", number_too_long);
10381                 if (*s == '_') {
10382                    if (lastub && s == lastub + 1)
10383                        Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX),
10384                                       "Misplaced _ in number");
10385                    lastub = s;
10386                 }
10387                 else
10388                     *d++ = *s;
10389             }
10390             /* fractional part ending in underbar? */
10391             if (s[-1] == '_') {
10392                 Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX),
10393                                "Misplaced _ in number");
10394             }
10395             if (*s == '.' && isDIGIT(s[1])) {
10396                 /* oops, it's really a v-string, but without the "v" */
10397                 s = start;
10398                 goto vstring;
10399             }
10400         }
10401
10402         /* read exponent part, if present */
10403         if ((isALPHA_FOLD_EQ(*s, 'e')
10404               || UNLIKELY(hexfp && isALPHA_FOLD_EQ(*s, 'p')))
10405             && strchr("+-0123456789_", s[1]))
10406         {
10407             floatit = TRUE;
10408
10409             /* regardless of whether user said 3E5 or 3e5, use lower 'e',
10410                ditto for p (hexfloats) */
10411             if ((isALPHA_FOLD_EQ(*s, 'e'))) {
10412                 /* At least some Mach atof()s don't grok 'E' */
10413                 *d++ = 'e';
10414             }
10415             else if (UNLIKELY(hexfp && (isALPHA_FOLD_EQ(*s, 'p')))) {
10416                 *d++ = 'p';
10417             }
10418
10419             s++;
10420
10421
10422             /* stray preinitial _ */
10423             if (*s == '_') {
10424                 Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX),
10425                                "Misplaced _ in number");
10426                 lastub = s++;
10427             }
10428
10429             /* allow positive or negative exponent */
10430             if (*s == '+' || *s == '-')
10431                 *d++ = *s++;
10432
10433             /* stray initial _ */
10434             if (*s == '_') {
10435                 Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX),
10436                                "Misplaced _ in number");
10437                 lastub = s++;
10438             }
10439
10440             /* read digits of exponent */
10441             while (isDIGIT(*s) || *s == '_') {
10442                 if (isDIGIT(*s)) {
10443                     if (d >= e)
10444                         Perl_croak(aTHX_ "%s", number_too_long);
10445                     *d++ = *s++;
10446                 }
10447                 else {
10448                    if (((lastub && s == lastub + 1) ||
10449                         (!isDIGIT(s[1]) && s[1] != '_')))
10450                        Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX),
10451                                       "Misplaced _ in number");
10452                    lastub = s++;
10453                 }
10454             }
10455         }
10456
10457
10458         /*
10459            We try to do an integer conversion first if no characters
10460            indicating "float" have been found.
10461          */
10462
10463         if (!floatit) {
10464             UV uv;
10465             const int flags = grok_number (PL_tokenbuf, d - PL_tokenbuf, &uv);
10466
10467             if (flags == IS_NUMBER_IN_UV) {
10468               if (uv <= IV_MAX)
10469                 sv = newSViv(uv); /* Prefer IVs over UVs. */
10470               else
10471                 sv = newSVuv(uv);
10472             } else if (flags == (IS_NUMBER_IN_UV | IS_NUMBER_NEG)) {
10473               if (uv <= (UV) IV_MIN)
10474                 sv = newSViv(-(IV)uv);
10475               else
10476                 floatit = TRUE;
10477             } else
10478               floatit = TRUE;
10479         }
10480         if (floatit) {
10481             STORE_LC_NUMERIC_UNDERLYING_SET_STANDARD();
10482             /* terminate the string */
10483             *d = '\0';
10484             if (UNLIKELY(hexfp)) {
10485 #  ifdef NV_MANT_DIG
10486                 if (total_bits > NV_MANT_DIG)
10487                     Perl_ck_warner(aTHX_ packWARN(WARN_OVERFLOW),
10488                                    "Hexadecimal float: mantissa overflow");
10489 #  endif
10490 #ifdef HEXFP_UQUAD
10491                 nv = hexfp_uquad * hexfp_mult;
10492 #else /* HEXFP_NV */
10493                 nv = hexfp_nv * hexfp_mult;
10494 #endif
10495             } else {
10496                 nv = Atof(PL_tokenbuf);
10497             }
10498             RESTORE_LC_NUMERIC_UNDERLYING();
10499             sv = newSVnv(nv);
10500         }
10501
10502         if ( floatit
10503              ? (PL_hints & HINT_NEW_FLOAT) : (PL_hints & HINT_NEW_INTEGER) ) {
10504             const char *const key = floatit ? "float" : "integer";
10505             const STRLEN keylen = floatit ? 5 : 7;
10506             sv = S_new_constant(aTHX_ PL_tokenbuf, d - PL_tokenbuf,
10507                                 key, keylen, sv, NULL, NULL, 0);
10508         }
10509         break;
10510
10511     /* if it starts with a v, it could be a v-string */
10512     case 'v':
10513     vstring:
10514                 sv = newSV(5); /* preallocate storage space */
10515                 ENTER_with_name("scan_vstring");
10516                 SAVEFREESV(sv);
10517                 s = scan_vstring(s, PL_bufend, sv);
10518                 SvREFCNT_inc_simple_void_NN(sv);
10519                 LEAVE_with_name("scan_vstring");
10520         break;
10521     }
10522
10523     /* make the op for the constant and return */
10524
10525     if (sv)
10526         lvalp->opval = newSVOP(OP_CONST, 0, sv);
10527     else
10528         lvalp->opval = NULL;
10529
10530     return (char *)s;
10531 }
10532
10533 STATIC char *
10534 S_scan_formline(pTHX_ char *s)
10535 {
10536     char *eol;
10537     char *t;
10538     SV * const stuff = newSVpvs("");
10539     bool needargs = FALSE;
10540     bool eofmt = FALSE;
10541
10542     PERL_ARGS_ASSERT_SCAN_FORMLINE;
10543
10544     while (!needargs) {
10545         if (*s == '.') {
10546             t = s+1;
10547 #ifdef PERL_STRICT_CR
10548             while (SPACE_OR_TAB(*t))
10549                 t++;
10550 #else
10551             while (SPACE_OR_TAB(*t) || *t == '\r')
10552                 t++;
10553 #endif
10554             if (*t == '\n' || t == PL_bufend) {
10555                 eofmt = TRUE;
10556                 break;
10557             }
10558         }
10559         eol = (char *) memchr(s,'\n',PL_bufend-s);
10560         if (!eol++)
10561                 eol = PL_bufend;
10562         if (*s != '#') {
10563             for (t = s; t < eol; t++) {
10564                 if (*t == '~' && t[1] == '~' && SvCUR(stuff)) {
10565                     needargs = FALSE;
10566                     goto enough;        /* ~~ must be first line in formline */
10567                 }
10568                 if (*t == '@' || *t == '^')
10569                     needargs = TRUE;
10570             }
10571             if (eol > s) {
10572                 sv_catpvn(stuff, s, eol-s);
10573 #ifndef PERL_STRICT_CR
10574                 if (eol-s > 1 && eol[-2] == '\r' && eol[-1] == '\n') {
10575                     char *end = SvPVX(stuff) + SvCUR(stuff);
10576                     end[-2] = '\n';
10577                     end[-1] = '\0';
10578                     SvCUR_set(stuff, SvCUR(stuff) - 1);
10579                 }
10580 #endif
10581             }
10582             else
10583               break;
10584         }
10585         s = (char*)eol;
10586         if ((PL_rsfp || PL_parser->filtered)
10587          && PL_parser->form_lex_state == LEX_NORMAL) {
10588             bool got_some;
10589             PL_bufptr = PL_bufend;
10590             COPLINE_INC_WITH_HERELINES;
10591             got_some = lex_next_chunk(0);
10592             CopLINE_dec(PL_curcop);
10593             s = PL_bufptr;
10594             if (!got_some)
10595                 break;
10596         }
10597         incline(s);
10598     }
10599   enough:
10600     if (!SvCUR(stuff) || needargs)
10601         PL_lex_state = PL_parser->form_lex_state;
10602     if (SvCUR(stuff)) {
10603         PL_expect = XSTATE;
10604         if (needargs) {
10605             const char *s2 = s;
10606             while (*s2 == '\r' || *s2 == ' ' || *s2 == '\t' || *s2 == '\f'
10607                 || *s2 == '\v')
10608                 s2++;
10609             if (*s2 == '{') {
10610                 PL_expect = XTERMBLOCK;
10611                 NEXTVAL_NEXTTOKE.ival = 0;
10612                 force_next(DO);
10613             }
10614             NEXTVAL_NEXTTOKE.ival = 0;
10615             force_next(FORMLBRACK);
10616         }
10617         if (!IN_BYTES) {
10618             if (UTF && is_utf8_string((U8*)SvPVX_const(stuff), SvCUR(stuff)))
10619                 SvUTF8_on(stuff);
10620             else if (IN_ENCODING)
10621                 sv_recode_to_utf8(stuff, _get_encoding());
10622         }
10623         NEXTVAL_NEXTTOKE.opval = (OP*)newSVOP(OP_CONST, 0, stuff);
10624         force_next(THING);
10625     }
10626     else {
10627         SvREFCNT_dec(stuff);
10628         if (eofmt)
10629             PL_lex_formbrack = 0;
10630     }
10631     return s;
10632 }
10633
10634 I32
10635 Perl_start_subparse(pTHX_ I32 is_format, U32 flags)
10636 {
10637     const I32 oldsavestack_ix = PL_savestack_ix;
10638     CV* const outsidecv = PL_compcv;
10639
10640     SAVEI32(PL_subline);
10641     save_item(PL_subname);
10642     SAVESPTR(PL_compcv);
10643
10644     PL_compcv = MUTABLE_CV(newSV_type(is_format ? SVt_PVFM : SVt_PVCV));
10645     CvFLAGS(PL_compcv) |= flags;
10646
10647     PL_subline = CopLINE(PL_curcop);
10648     CvPADLIST(PL_compcv) = pad_new(padnew_SAVE|padnew_SAVESUB);
10649     CvOUTSIDE(PL_compcv) = MUTABLE_CV(SvREFCNT_inc_simple(outsidecv));
10650     CvOUTSIDE_SEQ(PL_compcv) = PL_cop_seqmax;
10651     if (outsidecv && CvPADLIST(outsidecv))
10652         CvPADLIST(PL_compcv)->xpadl_outid = CvPADLIST(outsidecv)->xpadl_id;
10653
10654     return oldsavestack_ix;
10655 }
10656
10657 static int
10658 S_yywarn(pTHX_ const char *const s, U32 flags)
10659 {
10660     PERL_ARGS_ASSERT_YYWARN;
10661
10662     PL_in_eval |= EVAL_WARNONLY;
10663     yyerror_pv(s, flags);
10664     return 0;
10665 }
10666
10667 int
10668 Perl_yyerror(pTHX_ const char *const s)
10669 {
10670     PERL_ARGS_ASSERT_YYERROR;
10671     return yyerror_pvn(s, strlen(s), 0);
10672 }
10673
10674 int
10675 Perl_yyerror_pv(pTHX_ const char *const s, U32 flags)
10676 {
10677     PERL_ARGS_ASSERT_YYERROR_PV;
10678     return yyerror_pvn(s, strlen(s), flags);
10679 }
10680
10681 int
10682 Perl_yyerror_pvn(pTHX_ const char *const s, STRLEN len, U32 flags)
10683 {
10684     const char *context = NULL;
10685     int contlen = -1;
10686     SV *msg;
10687     SV * const where_sv = newSVpvs_flags("", SVs_TEMP);
10688     int yychar  = PL_parser->yychar;
10689
10690     PERL_ARGS_ASSERT_YYERROR_PVN;
10691
10692     if (!yychar || (yychar == ';' && !PL_rsfp))
10693         sv_catpvs(where_sv, "at EOF");
10694     else if (PL_oldoldbufptr && PL_bufptr > PL_oldoldbufptr &&
10695       PL_bufptr - PL_oldoldbufptr < 200 && PL_oldoldbufptr != PL_oldbufptr &&
10696       PL_oldbufptr != PL_bufptr) {
10697         /*
10698                 Only for NetWare:
10699                 The code below is removed for NetWare because it abends/crashes on NetWare
10700                 when the script has error such as not having the closing quotes like:
10701                     if ($var eq "value)
10702                 Checking of white spaces is anyway done in NetWare code.
10703         */
10704 #ifndef NETWARE
10705         while (isSPACE(*PL_oldoldbufptr))
10706             PL_oldoldbufptr++;
10707 #endif
10708         context = PL_oldoldbufptr;
10709         contlen = PL_bufptr - PL_oldoldbufptr;
10710     }
10711     else if (PL_oldbufptr && PL_bufptr > PL_oldbufptr &&
10712       PL_bufptr - PL_oldbufptr < 200 && PL_oldbufptr != PL_bufptr) {
10713         /*
10714                 Only for NetWare:
10715                 The code below is removed for NetWare because it abends/crashes on NetWare
10716                 when the script has error such as not having the closing quotes like:
10717                     if ($var eq "value)
10718                 Checking of white spaces is anyway done in NetWare code.
10719         */
10720 #ifndef NETWARE
10721         while (isSPACE(*PL_oldbufptr))
10722             PL_oldbufptr++;
10723 #endif
10724         context = PL_oldbufptr;
10725         contlen = PL_bufptr - PL_oldbufptr;
10726     }
10727     else if (yychar > 255)
10728         sv_catpvs(where_sv, "next token ???");
10729     else if (yychar == YYEMPTY) {
10730         if (PL_lex_state == LEX_NORMAL ||
10731            (PL_lex_state == LEX_KNOWNEXT && PL_lex_defer == LEX_NORMAL))
10732             sv_catpvs(where_sv, "at end of line");
10733         else if (PL_lex_inpat)
10734             sv_catpvs(where_sv, "within pattern");
10735         else
10736             sv_catpvs(where_sv, "within string");
10737     }
10738     else {
10739         sv_catpvs(where_sv, "next char ");
10740         if (yychar < 32)
10741             Perl_sv_catpvf(aTHX_ where_sv, "^%c", toCTRL(yychar));
10742         else if (isPRINT_LC(yychar)) {
10743             const char string = yychar;
10744             sv_catpvn(where_sv, &string, 1);
10745         }
10746         else
10747             Perl_sv_catpvf(aTHX_ where_sv, "\\%03o", yychar & 255);
10748     }
10749     msg = newSVpvn_flags(s, len, (flags & SVf_UTF8) | SVs_TEMP);
10750     Perl_sv_catpvf(aTHX_ msg, " at %s line %"IVdf", ",
10751         OutCopFILE(PL_curcop),
10752         (IV)(PL_parser->preambling == NOLINE
10753                ? CopLINE(PL_curcop)
10754                : PL_parser->preambling));
10755     if (context)
10756         Perl_sv_catpvf(aTHX_ msg, "near \"%"UTF8f"\"\n",
10757                              UTF8fARG(UTF, contlen, context));
10758     else
10759         Perl_sv_catpvf(aTHX_ msg, "%"SVf"\n", SVfARG(where_sv));
10760     if (PL_multi_start < PL_multi_end && (U32)(CopLINE(PL_curcop) - PL_multi_end) <= 1) {
10761         Perl_sv_catpvf(aTHX_ msg,
10762         "  (Might be a runaway multi-line %c%c string starting on line %"IVdf")\n",
10763                 (int)PL_multi_open,(int)PL_multi_close,(IV)PL_multi_start);
10764         PL_multi_end = 0;
10765     }
10766     if (PL_in_eval & EVAL_WARNONLY) {
10767         PL_in_eval &= ~EVAL_WARNONLY;
10768         Perl_ck_warner_d(aTHX_ packWARN(WARN_SYNTAX), "%"SVf, SVfARG(msg));
10769     }
10770     else
10771         qerror(msg);
10772     if (PL_error_count >= 10) {
10773         SV * errsv;
10774         if (PL_in_eval && ((errsv = ERRSV), SvCUR(errsv)))
10775             Perl_croak(aTHX_ "%"SVf"%s has too many errors.\n",
10776                        SVfARG(errsv), OutCopFILE(PL_curcop));
10777         else
10778             Perl_croak(aTHX_ "%s has too many errors.\n",
10779             OutCopFILE(PL_curcop));
10780     }
10781     PL_in_my = 0;
10782     PL_in_my_stash = NULL;
10783     return 0;
10784 }
10785
10786 STATIC char*
10787 S_swallow_bom(pTHX_ U8 *s)
10788 {
10789     const STRLEN slen = SvCUR(PL_linestr);
10790
10791     PERL_ARGS_ASSERT_SWALLOW_BOM;
10792
10793     switch (s[0]) {
10794     case 0xFF:
10795         if (s[1] == 0xFE) {
10796             /* UTF-16 little-endian? (or UTF-32LE?) */
10797             if (s[2] == 0 && s[3] == 0)  /* UTF-32 little-endian */
10798                 /* diag_listed_as: Unsupported script encoding %s */
10799                 Perl_croak(aTHX_ "Unsupported script encoding UTF-32LE");
10800 #ifndef PERL_NO_UTF16_FILTER
10801             if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-16LE script encoding (BOM)\n");
10802             s += 2;
10803             if (PL_bufend > (char*)s) {
10804                 s = add_utf16_textfilter(s, TRUE);
10805             }
10806 #else
10807             /* diag_listed_as: Unsupported script encoding %s */
10808             Perl_croak(aTHX_ "Unsupported script encoding UTF-16LE");
10809 #endif
10810         }
10811         break;
10812     case 0xFE:
10813         if (s[1] == 0xFF) {   /* UTF-16 big-endian? */
10814 #ifndef PERL_NO_UTF16_FILTER
10815             if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-16BE script encoding (BOM)\n");
10816             s += 2;
10817             if (PL_bufend > (char *)s) {
10818                 s = add_utf16_textfilter(s, FALSE);
10819             }
10820 #else
10821             /* diag_listed_as: Unsupported script encoding %s */
10822             Perl_croak(aTHX_ "Unsupported script encoding UTF-16BE");
10823 #endif
10824         }
10825         break;
10826     case BOM_UTF8_FIRST_BYTE: {
10827         const STRLEN len = sizeof(BOM_UTF8_TAIL) - 1; /* Exclude trailing NUL */
10828         if (slen > len && memEQ(s+1, BOM_UTF8_TAIL, len)) {
10829             if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-8 script encoding (BOM)\n");
10830             s += len + 1;                      /* UTF-8 */
10831         }
10832         break;
10833     }
10834     case 0:
10835         if (slen > 3) {
10836              if (s[1] == 0) {
10837                   if (s[2] == 0xFE && s[3] == 0xFF) {
10838                        /* UTF-32 big-endian */
10839                        /* diag_listed_as: Unsupported script encoding %s */
10840                        Perl_croak(aTHX_ "Unsupported script encoding UTF-32BE");
10841                   }
10842              }
10843              else if (s[2] == 0 && s[3] != 0) {
10844                   /* Leading bytes
10845                    * 00 xx 00 xx
10846                    * are a good indicator of UTF-16BE. */
10847 #ifndef PERL_NO_UTF16_FILTER
10848                   if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-16BE script encoding (no BOM)\n");
10849                   s = add_utf16_textfilter(s, FALSE);
10850 #else
10851                   /* diag_listed_as: Unsupported script encoding %s */
10852                   Perl_croak(aTHX_ "Unsupported script encoding UTF-16BE");
10853 #endif
10854              }
10855         }
10856         break;
10857
10858     default:
10859          if (slen > 3 && s[1] == 0 && s[2] != 0 && s[3] == 0) {
10860                   /* Leading bytes
10861                    * xx 00 xx 00
10862                    * are a good indicator of UTF-16LE. */
10863 #ifndef PERL_NO_UTF16_FILTER
10864               if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-16LE script encoding (no BOM)\n");
10865               s = add_utf16_textfilter(s, TRUE);
10866 #else
10867               /* diag_listed_as: Unsupported script encoding %s */
10868               Perl_croak(aTHX_ "Unsupported script encoding UTF-16LE");
10869 #endif
10870          }
10871     }
10872     return (char*)s;
10873 }
10874
10875
10876 #ifndef PERL_NO_UTF16_FILTER
10877 static I32
10878 S_utf16_textfilter(pTHX_ int idx, SV *sv, int maxlen)
10879 {
10880     SV *const filter = FILTER_DATA(idx);
10881     /* We re-use this each time round, throwing the contents away before we
10882        return.  */
10883     SV *const utf16_buffer = MUTABLE_SV(IoTOP_GV(filter));
10884     SV *const utf8_buffer = filter;
10885     IV status = IoPAGE(filter);
10886     const bool reverse = cBOOL(IoLINES(filter));
10887     I32 retval;
10888
10889     PERL_ARGS_ASSERT_UTF16_TEXTFILTER;
10890
10891     /* As we're automatically added, at the lowest level, and hence only called
10892        from this file, we can be sure that we're not called in block mode. Hence
10893        don't bother writing code to deal with block mode.  */
10894     if (maxlen) {
10895         Perl_croak(aTHX_ "panic: utf16_textfilter called in block mode (for %d characters)", maxlen);
10896     }
10897     if (status < 0) {
10898         Perl_croak(aTHX_ "panic: utf16_textfilter called after error (status=%"IVdf")", status);
10899     }
10900     DEBUG_P(PerlIO_printf(Perl_debug_log,
10901                           "utf16_textfilter(%p,%ce): idx=%d maxlen=%d status=%"IVdf" utf16=%"UVuf" utf8=%"UVuf"\n",
10902                           FPTR2DPTR(void *, S_utf16_textfilter),
10903                           reverse ? 'l' : 'b', idx, maxlen, status,
10904                           (UV)SvCUR(utf16_buffer), (UV)SvCUR(utf8_buffer)));
10905
10906     while (1) {
10907         STRLEN chars;
10908         STRLEN have;
10909         I32 newlen;
10910         U8 *end;
10911         /* First, look in our buffer of existing UTF-8 data:  */
10912         char *nl = (char *)memchr(SvPVX(utf8_buffer), '\n', SvCUR(utf8_buffer));
10913
10914         if (nl) {
10915             ++nl;
10916         } else if (status == 0) {
10917             /* EOF */
10918             IoPAGE(filter) = 0;
10919             nl = SvEND(utf8_buffer);
10920         }
10921         if (nl) {
10922             STRLEN got = nl - SvPVX(utf8_buffer);
10923             /* Did we have anything to append?  */
10924             retval = got != 0;
10925             sv_catpvn(sv, SvPVX(utf8_buffer), got);
10926             /* Everything else in this code works just fine if SVp_POK isn't
10927                set.  This, however, needs it, and we need it to work, else
10928                we loop infinitely because the buffer is never consumed.  */
10929             sv_chop(utf8_buffer, nl);
10930             break;
10931         }
10932
10933         /* OK, not a complete line there, so need to read some more UTF-16.
10934            Read an extra octect if the buffer currently has an odd number. */
10935         while (1) {
10936             if (status <= 0)
10937                 break;
10938             if (SvCUR(utf16_buffer) >= 2) {
10939                 /* Location of the high octet of the last complete code point.
10940                    Gosh, UTF-16 is a pain. All the benefits of variable length,
10941                    *coupled* with all the benefits of partial reads and
10942                    endianness.  */
10943                 const U8 *const last_hi = (U8*)SvPVX(utf16_buffer)
10944                     + ((SvCUR(utf16_buffer) & ~1) - (reverse ? 1 : 2));
10945
10946                 if (*last_hi < 0xd8 || *last_hi > 0xdb) {
10947                     break;
10948                 }
10949
10950                 /* We have the first half of a surrogate. Read more.  */
10951                 DEBUG_P(PerlIO_printf(Perl_debug_log, "utf16_textfilter partial surrogate detected at %p\n", last_hi));
10952             }
10953
10954             status = FILTER_READ(idx + 1, utf16_buffer,
10955                                  160 + (SvCUR(utf16_buffer) & 1));
10956             DEBUG_P(PerlIO_printf(Perl_debug_log, "utf16_textfilter status=%"IVdf" SvCUR(sv)=%"UVuf"\n", status, (UV)SvCUR(utf16_buffer)));
10957             DEBUG_P({ sv_dump(utf16_buffer); sv_dump(utf8_buffer);});
10958             if (status < 0) {
10959                 /* Error */
10960                 IoPAGE(filter) = status;
10961                 return status;
10962             }
10963         }
10964
10965         chars = SvCUR(utf16_buffer) >> 1;
10966         have = SvCUR(utf8_buffer);
10967         SvGROW(utf8_buffer, have + chars * 3 + 1);
10968
10969         if (reverse) {
10970             end = utf16_to_utf8_reversed((U8*)SvPVX(utf16_buffer),
10971                                          (U8*)SvPVX_const(utf8_buffer) + have,
10972                                          chars * 2, &newlen);
10973         } else {
10974             end = utf16_to_utf8((U8*)SvPVX(utf16_buffer),
10975                                 (U8*)SvPVX_const(utf8_buffer) + have,
10976                                 chars * 2, &newlen);
10977         }
10978         SvCUR_set(utf8_buffer, have + newlen);
10979         *end = '\0';
10980
10981         /* No need to keep this SV "well-formed" with a '\0' after the end, as
10982            it's private to us, and utf16_to_utf8{,reversed} take a
10983            (pointer,length) pair, rather than a NUL-terminated string.  */
10984         if(SvCUR(utf16_buffer) & 1) {
10985             *SvPVX(utf16_buffer) = SvEND(utf16_buffer)[-1];
10986             SvCUR_set(utf16_buffer, 1);
10987         } else {
10988             SvCUR_set(utf16_buffer, 0);
10989         }
10990     }
10991     DEBUG_P(PerlIO_printf(Perl_debug_log,
10992                           "utf16_textfilter: returns, status=%"IVdf" utf16=%"UVuf" utf8=%"UVuf"\n",
10993                           status,
10994                           (UV)SvCUR(utf16_buffer), (UV)SvCUR(utf8_buffer)));
10995     DEBUG_P({ sv_dump(utf8_buffer); sv_dump(sv);});
10996     return retval;
10997 }
10998
10999 static U8 *
11000 S_add_utf16_textfilter(pTHX_ U8 *const s, bool reversed)
11001 {
11002     SV *filter = filter_add(S_utf16_textfilter, NULL);
11003
11004     PERL_ARGS_ASSERT_ADD_UTF16_TEXTFILTER;
11005
11006     IoTOP_GV(filter) = MUTABLE_GV(newSVpvn((char *)s, PL_bufend - (char*)s));
11007     sv_setpvs(filter, "");
11008     IoLINES(filter) = reversed;
11009     IoPAGE(filter) = 1; /* Not EOF */
11010
11011     /* Sadly, we have to return a valid pointer, come what may, so we have to
11012        ignore any error return from this.  */
11013     SvCUR_set(PL_linestr, 0);
11014     if (FILTER_READ(0, PL_linestr, 0)) {
11015         SvUTF8_on(PL_linestr);
11016     } else {
11017         SvUTF8_on(PL_linestr);
11018     }
11019     PL_bufend = SvEND(PL_linestr);
11020     return (U8*)SvPVX(PL_linestr);
11021 }
11022 #endif
11023
11024 /*
11025 Returns a pointer to the next character after the parsed
11026 vstring, as well as updating the passed in sv.
11027
11028 Function must be called like
11029
11030         sv = sv_2mortal(newSV(5));
11031         s = scan_vstring(s,e,sv);
11032
11033 where s and e are the start and end of the string.
11034 The sv should already be large enough to store the vstring
11035 passed in, for performance reasons.
11036
11037 This function may croak if fatal warnings are enabled in the
11038 calling scope, hence the sv_2mortal in the example (to prevent
11039 a leak).  Make sure to do SvREFCNT_inc afterwards if you use
11040 sv_2mortal.
11041
11042 */
11043
11044 char *
11045 Perl_scan_vstring(pTHX_ const char *s, const char *const e, SV *sv)
11046 {
11047     const char *pos = s;
11048     const char *start = s;
11049
11050     PERL_ARGS_ASSERT_SCAN_VSTRING;
11051
11052     if (*pos == 'v') pos++;  /* get past 'v' */
11053     while (pos < e && (isDIGIT(*pos) || *pos == '_'))
11054         pos++;
11055     if ( *pos != '.') {
11056         /* this may not be a v-string if followed by => */
11057         const char *next = pos;
11058         while (next < e && isSPACE(*next))
11059             ++next;
11060         if ((e - next) >= 2 && *next == '=' && next[1] == '>' ) {
11061             /* return string not v-string */
11062             sv_setpvn(sv,(char *)s,pos-s);
11063             return (char *)pos;
11064         }
11065     }
11066
11067     if (!isALPHA(*pos)) {
11068         U8 tmpbuf[UTF8_MAXBYTES+1];
11069
11070         if (*s == 'v')
11071             s++;  /* get past 'v' */
11072
11073         sv_setpvs(sv, "");
11074
11075         for (;;) {
11076             /* this is atoi() that tolerates underscores */
11077             U8 *tmpend;
11078             UV rev = 0;
11079             const char *end = pos;
11080             UV mult = 1;
11081             while (--end >= s) {
11082                 if (*end != '_') {
11083                     const UV orev = rev;
11084                     rev += (*end - '0') * mult;
11085                     mult *= 10;
11086                     if (orev > rev)
11087                         /* diag_listed_as: Integer overflow in %s number */
11088                         Perl_ck_warner_d(aTHX_ packWARN(WARN_OVERFLOW),
11089                                          "Integer overflow in decimal number");
11090                 }
11091             }
11092 #ifdef EBCDIC
11093             if (rev > 0x7FFFFFFF)
11094                  Perl_croak(aTHX_ "In EBCDIC the v-string components cannot exceed 2147483647");
11095 #endif
11096             /* Append native character for the rev point */
11097             tmpend = uvchr_to_utf8(tmpbuf, rev);
11098             sv_catpvn(sv, (const char*)tmpbuf, tmpend - tmpbuf);
11099             if (!UVCHR_IS_INVARIANT(rev))
11100                  SvUTF8_on(sv);
11101             if (pos + 1 < e && *pos == '.' && isDIGIT(pos[1]))
11102                  s = ++pos;
11103             else {
11104                  s = pos;
11105                  break;
11106             }
11107             while (pos < e && (isDIGIT(*pos) || *pos == '_'))
11108                  pos++;
11109         }
11110         SvPOK_on(sv);
11111         sv_magic(sv,NULL,PERL_MAGIC_vstring,(const char*)start, pos-start);
11112         SvRMAGICAL_on(sv);
11113     }
11114     return (char *)s;
11115 }
11116
11117 int
11118 Perl_keyword_plugin_standard(pTHX_
11119         char *keyword_ptr, STRLEN keyword_len, OP **op_ptr)
11120 {
11121     PERL_ARGS_ASSERT_KEYWORD_PLUGIN_STANDARD;
11122     PERL_UNUSED_CONTEXT;
11123     PERL_UNUSED_ARG(keyword_ptr);
11124     PERL_UNUSED_ARG(keyword_len);
11125     PERL_UNUSED_ARG(op_ptr);
11126     return KEYWORD_PLUGIN_DECLINE;
11127 }
11128
11129 #define parse_recdescent(g,p) S_parse_recdescent(aTHX_ g,p)
11130 static void
11131 S_parse_recdescent(pTHX_ int gramtype, I32 fakeeof)
11132 {
11133     SAVEI32(PL_lex_brackets);
11134     if (PL_lex_brackets > 100)
11135         Renew(PL_lex_brackstack, PL_lex_brackets + 10, char);
11136     PL_lex_brackstack[PL_lex_brackets++] = XFAKEEOF;
11137     SAVEI32(PL_lex_allbrackets);
11138     PL_lex_allbrackets = 0;
11139     SAVEI8(PL_lex_fakeeof);
11140     PL_lex_fakeeof = (U8)fakeeof;
11141     if(yyparse(gramtype) && !PL_parser->error_count)
11142         qerror(Perl_mess(aTHX_ "Parse error"));
11143 }
11144
11145 #define parse_recdescent_for_op(g,p) S_parse_recdescent_for_op(aTHX_ g,p)
11146 static OP *
11147 S_parse_recdescent_for_op(pTHX_ int gramtype, I32 fakeeof)
11148 {
11149     OP *o;
11150     ENTER;
11151     SAVEVPTR(PL_eval_root);
11152     PL_eval_root = NULL;
11153     parse_recdescent(gramtype, fakeeof);
11154     o = PL_eval_root;
11155     LEAVE;
11156     return o;
11157 }
11158
11159 #define parse_expr(p,f) S_parse_expr(aTHX_ p,f)
11160 static OP *
11161 S_parse_expr(pTHX_ I32 fakeeof, U32 flags)
11162 {
11163     OP *exprop;
11164     if (flags & ~PARSE_OPTIONAL)
11165         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_expr");
11166     exprop = parse_recdescent_for_op(GRAMEXPR, fakeeof);
11167     if (!exprop && !(flags & PARSE_OPTIONAL)) {
11168         if (!PL_parser->error_count)
11169             qerror(Perl_mess(aTHX_ "Parse error"));
11170         exprop = newOP(OP_NULL, 0);
11171     }
11172     return exprop;
11173 }
11174
11175 /*
11176 =for apidoc Amx|OP *|parse_arithexpr|U32 flags
11177
11178 Parse a Perl arithmetic expression.  This may contain operators of precedence
11179 down to the bit shift operators.  The expression must be followed (and thus
11180 terminated) either by a comparison or lower-precedence operator or by
11181 something that would normally terminate an expression such as semicolon.
11182 If I<flags> includes C<PARSE_OPTIONAL> then the expression is optional,
11183 otherwise it is mandatory.  It is up to the caller to ensure that the
11184 dynamic parser state (L</PL_parser> et al) is correctly set to reflect
11185 the source of the code to be parsed and the lexical context for the
11186 expression.
11187
11188 The op tree representing the expression is returned.  If an optional
11189 expression is absent, a null pointer is returned, otherwise the pointer
11190 will be non-null.
11191
11192 If an error occurs in parsing or compilation, in most cases a valid op
11193 tree is returned anyway.  The error is reflected in the parser state,
11194 normally resulting in a single exception at the top level of parsing
11195 which covers all the compilation errors that occurred.  Some compilation
11196 errors, however, will throw an exception immediately.
11197
11198 =cut
11199 */
11200
11201 OP *
11202 Perl_parse_arithexpr(pTHX_ U32 flags)
11203 {
11204     return parse_expr(LEX_FAKEEOF_COMPARE, flags);
11205 }
11206
11207 /*
11208 =for apidoc Amx|OP *|parse_termexpr|U32 flags
11209
11210 Parse a Perl term expression.  This may contain operators of precedence
11211 down to the assignment operators.  The expression must be followed (and thus
11212 terminated) either by a comma or lower-precedence operator or by
11213 something that would normally terminate an expression such as semicolon.
11214 If I<flags> includes C<PARSE_OPTIONAL> then the expression is optional,
11215 otherwise it is mandatory.  It is up to the caller to ensure that the
11216 dynamic parser state (L</PL_parser> et al) is correctly set to reflect
11217 the source of the code to be parsed and the lexical context for the
11218 expression.
11219
11220 The op tree representing the expression is returned.  If an optional
11221 expression is absent, a null pointer is returned, otherwise the pointer
11222 will be non-null.
11223
11224 If an error occurs in parsing or compilation, in most cases a valid op
11225 tree is returned anyway.  The error is reflected in the parser state,
11226 normally resulting in a single exception at the top level of parsing
11227 which covers all the compilation errors that occurred.  Some compilation
11228 errors, however, will throw an exception immediately.
11229
11230 =cut
11231 */
11232
11233 OP *
11234 Perl_parse_termexpr(pTHX_ U32 flags)
11235 {
11236     return parse_expr(LEX_FAKEEOF_COMMA, flags);
11237 }
11238
11239 /*
11240 =for apidoc Amx|OP *|parse_listexpr|U32 flags
11241
11242 Parse a Perl list expression.  This may contain operators of precedence
11243 down to the comma operator.  The expression must be followed (and thus
11244 terminated) either by a low-precedence logic operator such as C<or> or by
11245 something that would normally terminate an expression such as semicolon.
11246 If I<flags> includes C<PARSE_OPTIONAL> then the expression is optional,
11247 otherwise it is mandatory.  It is up to the caller to ensure that the
11248 dynamic parser state (L</PL_parser> et al) is correctly set to reflect
11249 the source of the code to be parsed and the lexical context for the
11250 expression.
11251
11252 The op tree representing the expression is returned.  If an optional
11253 expression is absent, a null pointer is returned, otherwise the pointer
11254 will be non-null.
11255
11256 If an error occurs in parsing or compilation, in most cases a valid op
11257 tree is returned anyway.  The error is reflected in the parser state,
11258 normally resulting in a single exception at the top level of parsing
11259 which covers all the compilation errors that occurred.  Some compilation
11260 errors, however, will throw an exception immediately.
11261
11262 =cut
11263 */
11264
11265 OP *
11266 Perl_parse_listexpr(pTHX_ U32 flags)
11267 {
11268     return parse_expr(LEX_FAKEEOF_LOWLOGIC, flags);
11269 }
11270
11271 /*
11272 =for apidoc Amx|OP *|parse_fullexpr|U32 flags
11273
11274 Parse a single complete Perl expression.  This allows the full
11275 expression grammar, including the lowest-precedence operators such
11276 as C<or>.  The expression must be followed (and thus terminated) by a
11277 token that an expression would normally be terminated by: end-of-file,
11278 closing bracketing punctuation, semicolon, or one of the keywords that
11279 signals a postfix expression-statement modifier.  If I<flags> includes
11280 C<PARSE_OPTIONAL> then the expression is optional, otherwise it is
11281 mandatory.  It is up to the caller to ensure that the dynamic parser
11282 state (L</PL_parser> et al) is correctly set to reflect the source of
11283 the code to be parsed and the lexical context for the expression.
11284
11285 The op tree representing the expression is returned.  If an optional
11286 expression is absent, a null pointer is returned, otherwise the pointer
11287 will be non-null.
11288
11289 If an error occurs in parsing or compilation, in most cases a valid op
11290 tree is returned anyway.  The error is reflected in the parser state,
11291 normally resulting in a single exception at the top level of parsing
11292 which covers all the compilation errors that occurred.  Some compilation
11293 errors, however, will throw an exception immediately.
11294
11295 =cut
11296 */
11297
11298 OP *
11299 Perl_parse_fullexpr(pTHX_ U32 flags)
11300 {
11301     return parse_expr(LEX_FAKEEOF_NONEXPR, flags);
11302 }
11303
11304 /*
11305 =for apidoc Amx|OP *|parse_block|U32 flags
11306
11307 Parse a single complete Perl code block.  This consists of an opening
11308 brace, a sequence of statements, and a closing brace.  The block
11309 constitutes a lexical scope, so C<my> variables and various compile-time
11310 effects can be contained within it.  It is up to the caller to ensure
11311 that the dynamic parser state (L</PL_parser> et al) is correctly set to
11312 reflect the source of the code to be parsed and the lexical context for
11313 the statement.
11314
11315 The op tree representing the code block is returned.  This is always a
11316 real op, never a null pointer.  It will normally be a C<lineseq> list,
11317 including C<nextstate> or equivalent ops.  No ops to construct any kind
11318 of runtime scope are included by virtue of it being a block.
11319
11320 If an error occurs in parsing or compilation, in most cases a valid op
11321 tree (most likely null) is returned anyway.  The error is reflected in
11322 the parser state, normally resulting in a single exception at the top
11323 level of parsing which covers all the compilation errors that occurred.
11324 Some compilation errors, however, will throw an exception immediately.
11325
11326 The I<flags> parameter is reserved for future use, and must always
11327 be zero.
11328
11329 =cut
11330 */
11331
11332 OP *
11333 Perl_parse_block(pTHX_ U32 flags)
11334 {
11335     if (flags)
11336         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_block");
11337     return parse_recdescent_for_op(GRAMBLOCK, LEX_FAKEEOF_NEVER);
11338 }
11339
11340 /*
11341 =for apidoc Amx|OP *|parse_barestmt|U32 flags
11342
11343 Parse a single unadorned Perl statement.  This may be a normal imperative
11344 statement or a declaration that has compile-time effect.  It does not
11345 include any label or other affixture.  It is up to the caller to ensure
11346 that the dynamic parser state (L</PL_parser> et al) is correctly set to
11347 reflect the source of the code to be parsed and the lexical context for
11348 the statement.
11349
11350 The op tree representing the statement is returned.  This may be a
11351 null pointer if the statement is null, for example if it was actually
11352 a subroutine definition (which has compile-time side effects).  If not
11353 null, it will be ops directly implementing the statement, suitable to
11354 pass to L</newSTATEOP>.  It will not normally include a C<nextstate> or
11355 equivalent op (except for those embedded in a scope contained entirely
11356 within the statement).
11357
11358 If an error occurs in parsing or compilation, in most cases a valid op
11359 tree (most likely null) is returned anyway.  The error is reflected in
11360 the parser state, normally resulting in a single exception at the top
11361 level of parsing which covers all the compilation errors that occurred.
11362 Some compilation errors, however, will throw an exception immediately.
11363
11364 The I<flags> parameter is reserved for future use, and must always
11365 be zero.
11366
11367 =cut
11368 */
11369
11370 OP *
11371 Perl_parse_barestmt(pTHX_ U32 flags)
11372 {
11373     if (flags)
11374         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_barestmt");
11375     return parse_recdescent_for_op(GRAMBARESTMT, LEX_FAKEEOF_NEVER);
11376 }
11377
11378 /*
11379 =for apidoc Amx|SV *|parse_label|U32 flags
11380
11381 Parse a single label, possibly optional, of the type that may prefix a
11382 Perl statement.  It is up to the caller to ensure that the dynamic parser
11383 state (L</PL_parser> et al) is correctly set to reflect the source of
11384 the code to be parsed.  If I<flags> includes C<PARSE_OPTIONAL> then the
11385 label is optional, otherwise it is mandatory.
11386
11387 The name of the label is returned in the form of a fresh scalar.  If an
11388 optional label is absent, a null pointer is returned.
11389
11390 If an error occurs in parsing, which can only occur if the label is
11391 mandatory, a valid label is returned anyway.  The error is reflected in
11392 the parser state, normally resulting in a single exception at the top
11393 level of parsing which covers all the compilation errors that occurred.
11394
11395 =cut
11396 */
11397
11398 SV *
11399 Perl_parse_label(pTHX_ U32 flags)
11400 {
11401     if (flags & ~PARSE_OPTIONAL)
11402         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_label");
11403     if (PL_lex_state == LEX_KNOWNEXT) {
11404         PL_parser->yychar = yylex();
11405         if (PL_parser->yychar == LABEL) {
11406             char * const lpv = pl_yylval.pval;
11407             STRLEN llen = strlen(lpv);
11408             PL_parser->yychar = YYEMPTY;
11409             return newSVpvn_flags(lpv, llen, lpv[llen+1] ? SVf_UTF8 : 0);
11410         } else {
11411             yyunlex();
11412             goto no_label;
11413         }
11414     } else {
11415         char *s, *t;
11416         STRLEN wlen, bufptr_pos;
11417         lex_read_space(0);
11418         t = s = PL_bufptr;
11419         if (!isIDFIRST_lazy_if(s, UTF))
11420             goto no_label;
11421         t = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE, &wlen);
11422         if (word_takes_any_delimeter(s, wlen))
11423             goto no_label;
11424         bufptr_pos = s - SvPVX(PL_linestr);
11425         PL_bufptr = t;
11426         lex_read_space(LEX_KEEP_PREVIOUS);
11427         t = PL_bufptr;
11428         s = SvPVX(PL_linestr) + bufptr_pos;
11429         if (t[0] == ':' && t[1] != ':') {
11430             PL_oldoldbufptr = PL_oldbufptr;
11431             PL_oldbufptr = s;
11432             PL_bufptr = t+1;
11433             return newSVpvn_flags(s, wlen, UTF ? SVf_UTF8 : 0);
11434         } else {
11435             PL_bufptr = s;
11436             no_label:
11437             if (flags & PARSE_OPTIONAL) {
11438                 return NULL;
11439             } else {
11440                 qerror(Perl_mess(aTHX_ "Parse error"));
11441                 return newSVpvs("x");
11442             }
11443         }
11444     }
11445 }
11446
11447 /*
11448 =for apidoc Amx|OP *|parse_fullstmt|U32 flags
11449
11450 Parse a single complete Perl statement.  This may be a normal imperative
11451 statement or a declaration that has compile-time effect, and may include
11452 optional labels.  It is up to the caller to ensure that the dynamic
11453 parser state (L</PL_parser> et al) is correctly set to reflect the source
11454 of the code to be parsed and the lexical context for the statement.
11455
11456 The op tree representing the statement is returned.  This may be a
11457 null pointer if the statement is null, for example if it was actually
11458 a subroutine definition (which has compile-time side effects).  If not
11459 null, it will be the result of a L</newSTATEOP> call, normally including
11460 a C<nextstate> or equivalent op.
11461
11462 If an error occurs in parsing or compilation, in most cases a valid op
11463 tree (most likely null) is returned anyway.  The error is reflected in
11464 the parser state, normally resulting in a single exception at the top
11465 level of parsing which covers all the compilation errors that occurred.
11466 Some compilation errors, however, will throw an exception immediately.
11467
11468 The I<flags> parameter is reserved for future use, and must always
11469 be zero.
11470
11471 =cut
11472 */
11473
11474 OP *
11475 Perl_parse_fullstmt(pTHX_ U32 flags)
11476 {
11477     if (flags)
11478         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_fullstmt");
11479     return parse_recdescent_for_op(GRAMFULLSTMT, LEX_FAKEEOF_NEVER);
11480 }
11481
11482 /*
11483 =for apidoc Amx|OP *|parse_stmtseq|U32 flags
11484
11485 Parse a sequence of zero or more Perl statements.  These may be normal
11486 imperative statements, including optional labels, or declarations
11487 that have compile-time effect, or any mixture thereof.  The statement
11488 sequence ends when a closing brace or end-of-file is encountered in a
11489 place where a new statement could have validly started.  It is up to
11490 the caller to ensure that the dynamic parser state (L</PL_parser> et al)
11491 is correctly set to reflect the source of the code to be parsed and the
11492 lexical context for the statements.
11493
11494 The op tree representing the statement sequence is returned.  This may
11495 be a null pointer if the statements were all null, for example if there
11496 were no statements or if there were only subroutine definitions (which
11497 have compile-time side effects).  If not null, it will be a C<lineseq>
11498 list, normally including C<nextstate> or equivalent ops.
11499
11500 If an error occurs in parsing or compilation, in most cases a valid op
11501 tree is returned anyway.  The error is reflected in the parser state,
11502 normally resulting in a single exception at the top level of parsing
11503 which covers all the compilation errors that occurred.  Some compilation
11504 errors, however, will throw an exception immediately.
11505
11506 The I<flags> parameter is reserved for future use, and must always
11507 be zero.
11508
11509 =cut
11510 */
11511
11512 OP *
11513 Perl_parse_stmtseq(pTHX_ U32 flags)
11514 {
11515     OP *stmtseqop;
11516     I32 c;
11517     if (flags)
11518         Perl_croak(aTHX_ "Parsing code internal error (%s)", "parse_stmtseq");
11519     stmtseqop = parse_recdescent_for_op(GRAMSTMTSEQ, LEX_FAKEEOF_CLOSING);
11520     c = lex_peek_unichar(0);
11521     if (c != -1 && c != /*{*/'}')
11522         qerror(Perl_mess(aTHX_ "Parse error"));
11523     return stmtseqop;
11524 }
11525
11526 #define lex_token_boundary() S_lex_token_boundary(aTHX)
11527 static void
11528 S_lex_token_boundary(pTHX)
11529 {
11530     PL_oldoldbufptr = PL_oldbufptr;
11531     PL_oldbufptr = PL_bufptr;
11532 }
11533
11534 #define parse_opt_lexvar() S_parse_opt_lexvar(aTHX)
11535 static OP *
11536 S_parse_opt_lexvar(pTHX)
11537 {
11538     I32 sigil, c;
11539     char *s, *d;
11540     OP *var;
11541     lex_token_boundary();
11542     sigil = lex_read_unichar(0);
11543     if (lex_peek_unichar(0) == '#') {
11544         qerror(Perl_mess(aTHX_ "Parse error"));
11545         return NULL;
11546     }
11547     lex_read_space(0);
11548     c = lex_peek_unichar(0);
11549     if (c == -1 || !(UTF ? isIDFIRST_uni(c) : isIDFIRST_A(c)))
11550         return NULL;
11551     s = PL_bufptr;
11552     d = PL_tokenbuf + 1;
11553     PL_tokenbuf[0] = (char)sigil;
11554     parse_ident(&s, &d, PL_tokenbuf + sizeof(PL_tokenbuf) - 1, 0, cBOOL(UTF));
11555     PL_bufptr = s;
11556     if (d == PL_tokenbuf+1)
11557         return NULL;
11558     var = newOP(sigil == '$' ? OP_PADSV : sigil == '@' ? OP_PADAV : OP_PADHV,
11559                 OPf_MOD | (OPpLVAL_INTRO<<8));
11560     var->op_targ = allocmy(PL_tokenbuf, d - PL_tokenbuf, UTF ? SVf_UTF8 : 0);
11561     return var;
11562 }
11563
11564 OP *
11565 Perl_parse_subsignature(pTHX)
11566 {
11567     I32 c;
11568     int prev_type = 0, pos = 0, min_arity = 0, max_arity = 0;
11569     OP *initops = NULL;
11570     lex_read_space(0);
11571     c = lex_peek_unichar(0);
11572     while (c != /*(*/')') {
11573         switch (c) {
11574             case '$': {
11575                 OP *var, *expr;
11576                 if (prev_type == 2)
11577                     qerror(Perl_mess(aTHX_ "Slurpy parameter not last"));
11578                 var = parse_opt_lexvar();
11579                 expr = var ?
11580                     newBINOP(OP_AELEM, 0,
11581                         ref(newUNOP(OP_RV2AV, 0, newGVOP(OP_GV, 0, PL_defgv)),
11582                             OP_RV2AV),
11583                         newSVOP(OP_CONST, 0, newSViv(pos))) :
11584                     NULL;
11585                 lex_read_space(0);
11586                 c = lex_peek_unichar(0);
11587                 if (c == '=') {
11588                     lex_token_boundary();
11589                     lex_read_unichar(0);
11590                     lex_read_space(0);
11591                     c = lex_peek_unichar(0);
11592                     if (c == ',' || c == /*(*/')') {
11593                         if (var)
11594                             qerror(Perl_mess(aTHX_ "Optional parameter "
11595                                     "lacks default expression"));
11596                     } else {
11597                         OP *defexpr = parse_termexpr(0);
11598                         if (defexpr->op_type == OP_UNDEF &&
11599                                 !(defexpr->op_flags & OPf_KIDS)) {
11600                             op_free(defexpr);
11601                         } else {
11602                             OP *ifop = 
11603                                 newBINOP(OP_GE, 0,
11604                                     scalar(newUNOP(OP_RV2AV, 0,
11605                                             newGVOP(OP_GV, 0, PL_defgv))),
11606                                     newSVOP(OP_CONST, 0, newSViv(pos+1)));
11607                             expr = var ?
11608                                 newCONDOP(0, ifop, expr, defexpr) :
11609                                 newLOGOP(OP_OR, 0, ifop, defexpr);
11610                         }
11611                     }
11612                     prev_type = 1;
11613                 } else {
11614                     if (prev_type == 1)
11615                         qerror(Perl_mess(aTHX_ "Mandatory parameter "
11616                                 "follows optional parameter"));
11617                     prev_type = 0;
11618                     min_arity = pos + 1;
11619                 }
11620                 if (var) expr = newASSIGNOP(OPf_STACKED, var, 0, expr);
11621                 if (expr)
11622                     initops = op_append_list(OP_LINESEQ, initops,
11623                                 newSTATEOP(0, NULL, expr));
11624                 max_arity = ++pos;
11625             } break;
11626             case '@':
11627             case '%': {
11628                 OP *var;
11629                 if (prev_type == 2)
11630                     qerror(Perl_mess(aTHX_ "Slurpy parameter not last"));
11631                 var = parse_opt_lexvar();
11632                 if (c == '%') {
11633                     OP *chkop = newLOGOP((pos & 1) ? OP_OR : OP_AND, 0,
11634                             newBINOP(OP_BIT_AND, 0,
11635                                 scalar(newUNOP(OP_RV2AV, 0,
11636                                     newGVOP(OP_GV, 0, PL_defgv))),
11637                                 newSVOP(OP_CONST, 0, newSViv(1))),
11638                             op_convert_list(OP_DIE, 0,
11639                                 op_convert_list(OP_SPRINTF, 0,
11640                                     op_append_list(OP_LIST,
11641                                         newSVOP(OP_CONST, 0,
11642                                             newSVpvs("Odd name/value argument for subroutine at %s line %d.\n")),
11643                                         newSLICEOP(0,
11644                                             op_append_list(OP_LIST,
11645                                                 newSVOP(OP_CONST, 0, newSViv(1)),
11646                                                 newSVOP(OP_CONST, 0, newSViv(2))),
11647                                             newOP(OP_CALLER, 0))))));
11648                     if (pos != min_arity)
11649                         chkop = newLOGOP(OP_AND, 0,
11650                                     newBINOP(OP_GT, 0,
11651                                         scalar(newUNOP(OP_RV2AV, 0,
11652                                             newGVOP(OP_GV, 0, PL_defgv))),
11653                                         newSVOP(OP_CONST, 0, newSViv(pos))),
11654                                     chkop);
11655                     initops = op_append_list(OP_LINESEQ,
11656                                 newSTATEOP(0, NULL, chkop),
11657                                 initops);
11658                 }
11659                 if (var) {
11660                     OP *slice = pos ?
11661                         op_prepend_elem(OP_ASLICE,
11662                             newOP(OP_PUSHMARK, 0),
11663                             newLISTOP(OP_ASLICE, 0,
11664                                 list(newRANGE(0,
11665                                     newSVOP(OP_CONST, 0, newSViv(pos)),
11666                                     newUNOP(OP_AV2ARYLEN, 0,
11667                                         ref(newUNOP(OP_RV2AV, 0,
11668                                                 newGVOP(OP_GV, 0, PL_defgv)),
11669                                             OP_AV2ARYLEN)))),
11670                                 ref(newUNOP(OP_RV2AV, 0,
11671                                         newGVOP(OP_GV, 0, PL_defgv)),
11672                                     OP_ASLICE))) :
11673                         newUNOP(OP_RV2AV, 0, newGVOP(OP_GV, 0, PL_defgv));
11674                     initops = op_append_list(OP_LINESEQ, initops,
11675                         newSTATEOP(0, NULL,
11676                             newASSIGNOP(OPf_STACKED, var, 0, slice)));
11677                 }
11678                 prev_type = 2;
11679                 max_arity = -1;
11680             } break;
11681             default:
11682                 parse_error:
11683                 qerror(Perl_mess(aTHX_ "Parse error"));
11684                 return NULL;
11685         }
11686         lex_read_space(0);
11687         c = lex_peek_unichar(0);
11688         switch (c) {
11689             case /*(*/')': break;
11690             case ',':
11691                 do {
11692                     lex_token_boundary();
11693                     lex_read_unichar(0);
11694                     lex_read_space(0);
11695                     c = lex_peek_unichar(0);
11696                 } while (c == ',');
11697                 break;
11698             default:
11699                 goto parse_error;
11700         }
11701     }
11702     if (min_arity != 0) {
11703         initops = op_append_list(OP_LINESEQ,
11704             newSTATEOP(0, NULL,
11705                 newLOGOP(OP_OR, 0,
11706                     newBINOP(OP_GE, 0,
11707                         scalar(newUNOP(OP_RV2AV, 0,
11708                             newGVOP(OP_GV, 0, PL_defgv))),
11709                         newSVOP(OP_CONST, 0, newSViv(min_arity))),
11710                     op_convert_list(OP_DIE, 0,
11711                         op_convert_list(OP_SPRINTF, 0,
11712                             op_append_list(OP_LIST,
11713                                 newSVOP(OP_CONST, 0,
11714                                     newSVpvs("Too few arguments for subroutine at %s line %d.\n")),
11715                                 newSLICEOP(0,
11716                                     op_append_list(OP_LIST,
11717                                         newSVOP(OP_CONST, 0, newSViv(1)),
11718                                         newSVOP(OP_CONST, 0, newSViv(2))),
11719                                     newOP(OP_CALLER, 0))))))),
11720             initops);
11721     }
11722     if (max_arity != -1) {
11723         initops = op_append_list(OP_LINESEQ,
11724             newSTATEOP(0, NULL,
11725                 newLOGOP(OP_OR, 0,
11726                     newBINOP(OP_LE, 0,
11727                         scalar(newUNOP(OP_RV2AV, 0,
11728                             newGVOP(OP_GV, 0, PL_defgv))),
11729                         newSVOP(OP_CONST, 0, newSViv(max_arity))),
11730                     op_convert_list(OP_DIE, 0,
11731                         op_convert_list(OP_SPRINTF, 0,
11732                             op_append_list(OP_LIST,
11733                                 newSVOP(OP_CONST, 0,
11734                                     newSVpvs("Too many arguments for subroutine at %s line %d.\n")),
11735                                 newSLICEOP(0,
11736                                     op_append_list(OP_LIST,
11737                                         newSVOP(OP_CONST, 0, newSViv(1)),
11738                                         newSVOP(OP_CONST, 0, newSViv(2))),
11739                                     newOP(OP_CALLER, 0))))))),
11740             initops);
11741     }
11742     return initops;
11743 }
11744
11745 /*
11746  * ex: set ts=8 sts=4 sw=4 et:
11747  */