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