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