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