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