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