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