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