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