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