This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
make installperl ignore RCS files (from Michael G Schwern
[perl5.git] / toke.c
1 /*    toke.c
2  *
3  *    Copyright (c) 1991-1999, Larry Wall
4  *
5  *    You may distribute under the terms of either the GNU General Public
6  *    License or the Artistic License, as specified in the README file.
7  *
8  */
9
10 /*
11  *   "It all comes from here, the stench and the peril."  --Frodo
12  */
13
14 /*
15  * This file is the lexer for Perl.  It's closely linked to the
16  * parser, perly.y.  
17  *
18  * The main routine is yylex(), which returns the next token.
19  */
20
21 #include "EXTERN.h"
22 #define PERL_IN_TOKE_C
23 #include "perl.h"
24
25 #define yychar  PL_yychar
26 #define yylval  PL_yylval
27
28 static char ident_too_long[] = "Identifier too long";
29
30 static void restore_rsfp(pTHXo_ void *f);
31 static void restore_expect(pTHXo_ void *e);
32 static void restore_lex_expect(pTHXo_ void *e);
33
34 #define UTF (PL_hints & HINT_UTF8)
35 /*
36  * Note: we try to be careful never to call the isXXX_utf8() functions
37  * unless we're pretty sure we've seen the beginning of a UTF-8 character
38  * (that is, the two high bits are set).  Otherwise we risk loading in the
39  * heavy-duty SWASHINIT and SWASHGET routines unnecessarily.
40  */
41 #define isIDFIRST_lazy(p) ((!UTF || (*((U8*)p) < 0xc0)) \
42                                 ? isIDFIRST(*(p)) \
43                                 : isIDFIRST_utf8((U8*)p))
44 #define isALNUM_lazy(p) ((!UTF || (*((U8*)p) < 0xc0)) \
45                                 ? isALNUM(*(p)) \
46                                 : isALNUM_utf8((U8*)p))
47
48 /* In variables name $^X, these are the legal values for X.  
49  * 1999-02-27 mjd-perl-patch@plover.com */
50 #define isCONTROLVAR(x) (isUPPER(x) || strchr("[\\]^_?", (x)))
51
52 /* LEX_* are values for PL_lex_state, the state of the lexer.
53  * They are arranged oddly so that the guard on the switch statement
54  * can get by with a single comparison (if the compiler is smart enough).
55  */
56
57 /* #define LEX_NOTPARSING               11 is done in perl.h. */
58
59 #define LEX_NORMAL              10
60 #define LEX_INTERPNORMAL         9
61 #define LEX_INTERPCASEMOD        8
62 #define LEX_INTERPPUSH           7
63 #define LEX_INTERPSTART          6
64 #define LEX_INTERPEND            5
65 #define LEX_INTERPENDMAYBE       4
66 #define LEX_INTERPCONCAT         3
67 #define LEX_INTERPCONST          2
68 #define LEX_FORMLINE             1
69 #define LEX_KNOWNEXT             0
70
71 #ifdef I_FCNTL
72 #include <fcntl.h>
73 #endif
74 #ifdef I_SYS_FILE
75 #include <sys/file.h>
76 #endif
77
78 /* XXX If this causes problems, set i_unistd=undef in the hint file.  */
79 #ifdef I_UNISTD
80 #  include <unistd.h> /* Needed for execv() */
81 #endif
82
83
84 #ifdef ff_next
85 #undef ff_next
86 #endif
87
88 #ifdef USE_PURE_BISON
89 YYSTYPE* yylval_pointer = NULL;
90 int* yychar_pointer = NULL;
91 #  undef yylval
92 #  undef yychar
93 #  define yylval (*yylval_pointer)
94 #  define yychar (*yychar_pointer)
95 #  define PERL_YYLEX_PARAM yylval_pointer,yychar_pointer
96 #  undef yylex
97 #  define yylex()       Perl_yylex(aTHX_ yylval_pointer, yychar_pointer)
98 #endif
99
100 #include "keywords.h"
101
102 /* CLINE is a macro that ensures PL_copline has a sane value */
103
104 #ifdef CLINE
105 #undef CLINE
106 #endif
107 #define CLINE (PL_copline = (PL_curcop->cop_line < PL_copline ? PL_curcop->cop_line : PL_copline))
108
109 /*
110  * Convenience functions to return different tokens and prime the
111  * lexer for the next token.  They all take an argument.
112  *
113  * TOKEN        : generic token (used for '(', DOLSHARP, etc)
114  * OPERATOR     : generic operator
115  * AOPERATOR    : assignment operator
116  * PREBLOCK     : beginning the block after an if, while, foreach, ...
117  * PRETERMBLOCK : beginning a non-code-defining {} block (eg, hash ref)
118  * PREREF       : *EXPR where EXPR is not a simple identifier
119  * TERM         : expression term
120  * LOOPX        : loop exiting command (goto, last, dump, etc)
121  * FTST         : file test operator
122  * FUN0         : zero-argument function
123  * FUN1         : not used, except for not, which isn't a UNIOP
124  * BOop         : bitwise or or xor
125  * BAop         : bitwise and
126  * SHop         : shift operator
127  * PWop         : power operator
128  * PMop         : pattern-matching operator
129  * Aop          : addition-level operator
130  * Mop          : multiplication-level operator
131  * Eop          : equality-testing operator
132  * Rop        : relational operator <= != gt
133  *
134  * Also see LOP and lop() below.
135  */
136
137 #define TOKEN(retval) return (PL_bufptr = s,(int)retval)
138 #define OPERATOR(retval) return (PL_expect = XTERM,PL_bufptr = s,(int)retval)
139 #define AOPERATOR(retval) return ao((PL_expect = XTERM,PL_bufptr = s,(int)retval))
140 #define PREBLOCK(retval) return (PL_expect = XBLOCK,PL_bufptr = s,(int)retval)
141 #define PRETERMBLOCK(retval) return (PL_expect = XTERMBLOCK,PL_bufptr = s,(int)retval)
142 #define PREREF(retval) return (PL_expect = XREF,PL_bufptr = s,(int)retval)
143 #define TERM(retval) return (CLINE, PL_expect = XOPERATOR,PL_bufptr = s,(int)retval)
144 #define LOOPX(f) return(yylval.ival=f,PL_expect = XTERM,PL_bufptr = s,(int)LOOPEX)
145 #define FTST(f) return(yylval.ival=f,PL_expect = XTERM,PL_bufptr = s,(int)UNIOP)
146 #define FUN0(f) return(yylval.ival = f,PL_expect = XOPERATOR,PL_bufptr = s,(int)FUNC0)
147 #define FUN1(f) return(yylval.ival = f,PL_expect = XOPERATOR,PL_bufptr = s,(int)FUNC1)
148 #define BOop(f) return ao((yylval.ival=f,PL_expect = XTERM,PL_bufptr = s,(int)BITOROP))
149 #define BAop(f) return ao((yylval.ival=f,PL_expect = XTERM,PL_bufptr = s,(int)BITANDOP))
150 #define SHop(f) return ao((yylval.ival=f,PL_expect = XTERM,PL_bufptr = s,(int)SHIFTOP))
151 #define PWop(f) return ao((yylval.ival=f,PL_expect = XTERM,PL_bufptr = s,(int)POWOP))
152 #define PMop(f) return(yylval.ival=f,PL_expect = XTERM,PL_bufptr = s,(int)MATCHOP)
153 #define Aop(f) return ao((yylval.ival=f,PL_expect = XTERM,PL_bufptr = s,(int)ADDOP))
154 #define Mop(f) return ao((yylval.ival=f,PL_expect = XTERM,PL_bufptr = s,(int)MULOP))
155 #define Eop(f) return(yylval.ival=f,PL_expect = XTERM,PL_bufptr = s,(int)EQOP)
156 #define Rop(f) return(yylval.ival=f,PL_expect = XTERM,PL_bufptr = s,(int)RELOP)
157
158 /* This bit of chicanery makes a unary function followed by
159  * a parenthesis into a function with one argument, highest precedence.
160  */
161 #define UNI(f) return(yylval.ival = f, \
162         PL_expect = XTERM, \
163         PL_bufptr = s, \
164         PL_last_uni = PL_oldbufptr, \
165         PL_last_lop_op = f, \
166         (*s == '(' || (s = skipspace(s), *s == '(') ? (int)FUNC1 : (int)UNIOP) )
167
168 #define UNIBRACK(f) return(yylval.ival = f, \
169         PL_bufptr = s, \
170         PL_last_uni = PL_oldbufptr, \
171         (*s == '(' || (s = skipspace(s), *s == '(') ? (int)FUNC1 : (int)UNIOP) )
172
173 /* grandfather return to old style */
174 #define OLDLOP(f) return(yylval.ival=f,PL_expect = XTERM,PL_bufptr = s,(int)LSTOP)
175
176 /*
177  * S_ao
178  *
179  * This subroutine detects &&= and ||= and turns an ANDAND or OROR
180  * into an OP_ANDASSIGN or OP_ORASSIGN
181  */
182
183 STATIC int
184 S_ao(pTHX_ int toketype)
185 {
186     if (*PL_bufptr == '=') {
187         PL_bufptr++;
188         if (toketype == ANDAND)
189             yylval.ival = OP_ANDASSIGN;
190         else if (toketype == OROR)
191             yylval.ival = OP_ORASSIGN;
192         toketype = ASSIGNOP;
193     }
194     return toketype;
195 }
196
197 /*
198  * S_no_op
199  * When Perl expects an operator and finds something else, no_op
200  * prints the warning.  It always prints "<something> found where
201  * operator expected.  It prints "Missing semicolon on previous line?"
202  * if the surprise occurs at the start of the line.  "do you need to
203  * predeclare ..." is printed out for code like "sub bar; foo bar $x"
204  * where the compiler doesn't know if foo is a method call or a function.
205  * It prints "Missing operator before end of line" if there's nothing
206  * after the missing operator, or "... before <...>" if there is something
207  * after the missing operator.
208  */
209
210 STATIC void
211 S_no_op(pTHX_ char *what, char *s)
212 {
213     char *oldbp = PL_bufptr;
214     bool is_first = (PL_oldbufptr == PL_linestart);
215
216     if (!s)
217         s = oldbp;
218     else {
219         assert(s >= oldbp);
220         PL_bufptr = s;
221     }
222     yywarn(Perl_form(aTHX_ "%s found where operator expected", what));
223     if (is_first)
224         Perl_warn(aTHX_ "\t(Missing semicolon on previous line?)\n");
225     else if (PL_oldoldbufptr && isIDFIRST_lazy(PL_oldoldbufptr)) {
226         char *t;
227         for (t = PL_oldoldbufptr; *t && (isALNUM_lazy(t) || *t == ':'); t++) ;
228         if (t < PL_bufptr && isSPACE(*t))
229             Perl_warn(aTHX_ "\t(Do you need to predeclare %.*s?)\n",
230                 t - PL_oldoldbufptr, PL_oldoldbufptr);
231     }
232     else
233         Perl_warn(aTHX_ "\t(Missing operator before %.*s?)\n", s - oldbp, oldbp);
234     PL_bufptr = oldbp;
235 }
236
237 /*
238  * S_missingterm
239  * Complain about missing quote/regexp/heredoc terminator.
240  * If it's called with (char *)NULL then it cauterizes the line buffer.
241  * If we're in a delimited string and the delimiter is a control
242  * character, it's reformatted into a two-char sequence like ^C.
243  * This is fatal.
244  */
245
246 STATIC void
247 S_missingterm(pTHX_ char *s)
248 {
249     char tmpbuf[3];
250     char q;
251     if (s) {
252         char *nl = strrchr(s,'\n');
253         if (nl)
254             *nl = '\0';
255     }
256     else if (
257 #ifdef EBCDIC
258         iscntrl(PL_multi_close)
259 #else
260         PL_multi_close < 32 || PL_multi_close == 127
261 #endif
262         ) {
263         *tmpbuf = '^';
264         tmpbuf[1] = toCTRL(PL_multi_close);
265         s = "\\n";
266         tmpbuf[2] = '\0';
267         s = tmpbuf;
268     }
269     else {
270         *tmpbuf = PL_multi_close;
271         tmpbuf[1] = '\0';
272         s = tmpbuf;
273     }
274     q = strchr(s,'"') ? '\'' : '"';
275     Perl_croak(aTHX_ "Can't find string terminator %c%s%c anywhere before EOF",q,s,q);
276 }
277
278 /*
279  * Perl_deprecate
280  */
281
282 void
283 Perl_deprecate(pTHX_ char *s)
284 {
285     dTHR;
286     if (ckWARN(WARN_DEPRECATED))
287         Perl_warner(aTHX_ WARN_DEPRECATED, "Use of %s is deprecated", s);
288 }
289
290 /*
291  * depcom
292  * Deprecate a comma-less variable list.
293  */
294
295 STATIC void
296 S_depcom(pTHX)
297 {
298     deprecate("comma-less variable list");
299 }
300
301 /*
302  * experimental text filters for win32 carriage-returns, utf16-to-utf8 and
303  * utf16-to-utf8-reversed.
304  */
305
306 #ifdef WIN32
307
308 STATIC I32
309 S_win32_textfilter(pTHX_ int idx, SV *sv, int maxlen)
310 {
311  I32 count = FILTER_READ(idx+1, sv, maxlen);
312  if (count > 0 && !maxlen)
313   win32_strip_return(sv);
314  return count;
315 }
316 #endif
317
318 STATIC I32
319 S_utf16_textfilter(pTHX_ int idx, SV *sv, int maxlen)
320 {
321     I32 count = FILTER_READ(idx+1, sv, maxlen);
322     if (count) {
323         U8* tmps;
324         U8* tend;
325         New(898, tmps, SvCUR(sv) * 3 / 2 + 1, U8);
326         tend = utf16_to_utf8((U16*)SvPVX(sv), tmps, SvCUR(sv));
327         sv_usepvn(sv, (char*)tmps, tend - tmps);
328     
329     }
330     return count;
331 }
332
333 STATIC I32
334 S_utf16rev_textfilter(pTHX_ int idx, SV *sv, int maxlen)
335 {
336     I32 count = FILTER_READ(idx+1, sv, maxlen);
337     if (count) {
338         U8* tmps;
339         U8* tend;
340         New(898, tmps, SvCUR(sv) * 3 / 2 + 1, U8);
341         tend = utf16_to_utf8_reversed((U16*)SvPVX(sv), tmps, SvCUR(sv));
342         sv_usepvn(sv, (char*)tmps, tend - tmps);
343     
344     }
345     return count;
346 }
347
348 /*
349  * Perl_lex_start
350  * Initialize variables.  Uses the Perl save_stack to save its state (for
351  * recursive calls to the parser).
352  */
353
354 void
355 Perl_lex_start(pTHX_ SV *line)
356 {
357     dTHR;
358     char *s;
359     STRLEN len;
360
361     SAVEI32(PL_lex_dojoin);
362     SAVEI32(PL_lex_brackets);
363     SAVEI32(PL_lex_fakebrack);
364     SAVEI32(PL_lex_casemods);
365     SAVEI32(PL_lex_starts);
366     SAVEI32(PL_lex_state);
367     SAVESPTR(PL_lex_inpat);
368     SAVEI32(PL_lex_inwhat);
369     SAVEI16(PL_curcop->cop_line);
370     SAVEPPTR(PL_bufptr);
371     SAVEPPTR(PL_bufend);
372     SAVEPPTR(PL_oldbufptr);
373     SAVEPPTR(PL_oldoldbufptr);
374     SAVEPPTR(PL_linestart);
375     SAVESPTR(PL_linestr);
376     SAVEPPTR(PL_lex_brackstack);
377     SAVEPPTR(PL_lex_casestack);
378     SAVEDESTRUCTOR_X(restore_rsfp, PL_rsfp);
379     SAVESPTR(PL_lex_stuff);
380     SAVEI32(PL_lex_defer);
381     SAVEI32(PL_sublex_info.sub_inwhat);
382     SAVESPTR(PL_lex_repl);
383     SAVEDESTRUCTOR_X(restore_expect, PL_tokenbuf + PL_expect); /* encode as pointer */
384     SAVEDESTRUCTOR_X(restore_lex_expect, PL_tokenbuf + PL_expect);
385
386     PL_lex_state = LEX_NORMAL;
387     PL_lex_defer = 0;
388     PL_expect = XSTATE;
389     PL_lex_brackets = 0;
390     PL_lex_fakebrack = 0;
391     New(899, PL_lex_brackstack, 120, char);
392     New(899, PL_lex_casestack, 12, char);
393     SAVEFREEPV(PL_lex_brackstack);
394     SAVEFREEPV(PL_lex_casestack);
395     PL_lex_casemods = 0;
396     *PL_lex_casestack = '\0';
397     PL_lex_dojoin = 0;
398     PL_lex_starts = 0;
399     PL_lex_stuff = Nullsv;
400     PL_lex_repl = Nullsv;
401     PL_lex_inpat = 0;
402     PL_lex_inwhat = 0;
403     PL_sublex_info.sub_inwhat = 0;
404     PL_linestr = line;
405     if (SvREADONLY(PL_linestr))
406         PL_linestr = sv_2mortal(newSVsv(PL_linestr));
407     s = SvPV(PL_linestr, len);
408     if (len && s[len-1] != ';') {
409         if (!(SvFLAGS(PL_linestr) & SVs_TEMP))
410             PL_linestr = sv_2mortal(newSVsv(PL_linestr));
411         sv_catpvn(PL_linestr, "\n;", 2);
412     }
413     SvTEMP_off(PL_linestr);
414     PL_oldoldbufptr = PL_oldbufptr = PL_bufptr = PL_linestart = SvPVX(PL_linestr);
415     PL_bufend = PL_bufptr + SvCUR(PL_linestr);
416     SvREFCNT_dec(PL_rs);
417     PL_rs = newSVpvn("\n", 1);
418     PL_rsfp = 0;
419 }
420
421 /*
422  * Perl_lex_end
423  * Finalizer for lexing operations.  Must be called when the parser is
424  * done with the lexer.
425  */
426
427 void
428 Perl_lex_end(pTHX)
429 {
430     PL_doextract = FALSE;
431 }
432
433 /*
434  * S_incline
435  * This subroutine has nothing to do with tilting, whether at windmills
436  * or pinball tables.  Its name is short for "increment line".  It
437  * increments the current line number in PL_curcop->cop_line and checks
438  * to see whether the line starts with a comment of the form
439  *    # line 500 "foo.pm"
440  * If so, it sets the current line number and file to the values in the comment.
441  */
442
443 STATIC void
444 S_incline(pTHX_ char *s)
445 {
446     dTHR;
447     char *t;
448     char *n;
449     char ch;
450     int sawline = 0;
451
452     PL_curcop->cop_line++;
453     if (*s++ != '#')
454         return;
455     while (*s == ' ' || *s == '\t') s++;
456     if (strnEQ(s, "line ", 5)) {
457         s += 5;
458         sawline = 1;
459     }
460     if (!isDIGIT(*s))
461         return;
462     n = s;
463     while (isDIGIT(*s))
464         s++;
465     while (*s == ' ' || *s == '\t')
466         s++;
467     if (*s == '"' && (t = strchr(s+1, '"')))
468         s++;
469     else {
470         if (!sawline)
471             return;             /* false alarm */
472         for (t = s; !isSPACE(*t); t++) ;
473     }
474     ch = *t;
475     *t = '\0';
476     if (t - s > 0)
477         PL_curcop->cop_filegv = gv_fetchfile(s);
478     else
479         PL_curcop->cop_filegv = gv_fetchfile(PL_origfilename);
480     *t = ch;
481     PL_curcop->cop_line = atoi(n)-1;
482 }
483
484 /*
485  * S_skipspace
486  * Called to gobble the appropriate amount and type of whitespace.
487  * Skips comments as well.
488  */
489
490 STATIC char *
491 S_skipspace(pTHX_ register char *s)
492 {
493     dTHR;
494     if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) {
495         while (s < PL_bufend && (*s == ' ' || *s == '\t'))
496             s++;
497         return s;
498     }
499     for (;;) {
500         STRLEN prevlen;
501         SSize_t oldprevlen, oldoldprevlen;
502         SSize_t oldloplen, oldunilen;
503         while (s < PL_bufend && isSPACE(*s)) {
504             if (*s++ == '\n' && PL_in_eval && !PL_rsfp)
505                 incline(s);
506         }
507
508         /* comment */
509         if (s < PL_bufend && *s == '#') {
510             while (s < PL_bufend && *s != '\n')
511                 s++;
512             if (s < PL_bufend) {
513                 s++;
514                 if (PL_in_eval && !PL_rsfp) {
515                     incline(s);
516                     continue;
517                 }
518             }
519         }
520
521         /* only continue to recharge the buffer if we're at the end
522          * of the buffer, we're not reading from a source filter, and
523          * we're in normal lexing mode
524          */
525         if (s < PL_bufend || !PL_rsfp || PL_sublex_info.sub_inwhat ||
526                 PL_lex_state == LEX_FORMLINE)
527             return s;
528
529         /* try to recharge the buffer */
530         if ((s = filter_gets(PL_linestr, PL_rsfp,
531                              (prevlen = SvCUR(PL_linestr)))) == Nullch)
532         {
533             /* end of file.  Add on the -p or -n magic */
534             if (PL_minus_n || PL_minus_p) {
535                 sv_setpv(PL_linestr,PL_minus_p ?
536                          ";}continue{print or die qq(-p destination: $!\\n)" :
537                          "");
538                 sv_catpv(PL_linestr,";}");
539                 PL_minus_n = PL_minus_p = 0;
540             }
541             else
542                 sv_setpv(PL_linestr,";");
543
544             /* reset variables for next time we lex */
545             PL_oldoldbufptr = PL_oldbufptr = PL_bufptr = s = PL_linestart
546                 = SvPVX(PL_linestr);
547             PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
548
549             /* Close the filehandle.  Could be from -P preprocessor,
550              * STDIN, or a regular file.  If we were reading code from
551              * STDIN (because the commandline held no -e or filename)
552              * then we don't close it, we reset it so the code can
553              * read from STDIN too.
554              */
555
556             if (PL_preprocess && !PL_in_eval)
557                 (void)PerlProc_pclose(PL_rsfp);
558             else if ((PerlIO*)PL_rsfp == PerlIO_stdin())
559                 PerlIO_clearerr(PL_rsfp);
560             else
561                 (void)PerlIO_close(PL_rsfp);
562             PL_rsfp = Nullfp;
563             return s;
564         }
565
566         /* not at end of file, so we only read another line */
567         /* make corresponding updates to old pointers, for yyerror() */
568         oldprevlen = PL_oldbufptr - PL_bufend;
569         oldoldprevlen = PL_oldoldbufptr - PL_bufend;
570         if (PL_last_uni)
571             oldunilen = PL_last_uni - PL_bufend;
572         if (PL_last_lop)
573             oldloplen = PL_last_lop - PL_bufend;
574         PL_linestart = PL_bufptr = s + prevlen;
575         PL_bufend = s + SvCUR(PL_linestr);
576         s = PL_bufptr;
577         PL_oldbufptr = s + oldprevlen;
578         PL_oldoldbufptr = s + oldoldprevlen;
579         if (PL_last_uni)
580             PL_last_uni = s + oldunilen;
581         if (PL_last_lop)
582             PL_last_lop = s + oldloplen;
583         incline(s);
584
585         /* debugger active and we're not compiling the debugger code,
586          * so store the line into the debugger's array of lines
587          */
588         if (PERLDB_LINE && PL_curstash != PL_debstash) {
589             SV *sv = NEWSV(85,0);
590
591             sv_upgrade(sv, SVt_PVMG);
592             sv_setpvn(sv,PL_bufptr,PL_bufend-PL_bufptr);
593             av_store(GvAV(PL_curcop->cop_filegv),(I32)PL_curcop->cop_line,sv);
594         }
595     }
596 }
597
598 /*
599  * S_check_uni
600  * Check the unary operators to ensure there's no ambiguity in how they're
601  * used.  An ambiguous piece of code would be:
602  *     rand + 5
603  * This doesn't mean rand() + 5.  Because rand() is a unary operator,
604  * the +5 is its argument.
605  */
606
607 STATIC void
608 S_check_uni(pTHX)
609 {
610     char *s;
611     char *t;
612     dTHR;
613
614     if (PL_oldoldbufptr != PL_last_uni)
615         return;
616     while (isSPACE(*PL_last_uni))
617         PL_last_uni++;
618     for (s = PL_last_uni; isALNUM_lazy(s) || *s == '-'; s++) ;
619     if ((t = strchr(s, '(')) && t < PL_bufptr)
620         return;
621     if (ckWARN_d(WARN_AMBIGUOUS)){
622         char ch = *s;
623         *s = '\0';
624         Perl_warner(aTHX_ WARN_AMBIGUOUS, 
625                    "Warning: Use of \"%s\" without parens is ambiguous", 
626                    PL_last_uni);
627         *s = ch;
628     }
629 }
630
631 /* workaround to replace the UNI() macro with a function.  Only the
632  * hints/uts.sh file mentions this.  Other comments elsewhere in the
633  * source indicate Microport Unix might need it too.
634  */
635
636 #ifdef CRIPPLED_CC
637
638 #undef UNI
639 #define UNI(f) return uni(f,s)
640
641 STATIC int
642 S_uni(pTHX_ I32 f, char *s)
643 {
644     yylval.ival = f;
645     PL_expect = XTERM;
646     PL_bufptr = s;
647     PL_last_uni = PL_oldbufptr;
648     PL_last_lop_op = f;
649     if (*s == '(')
650         return FUNC1;
651     s = skipspace(s);
652     if (*s == '(')
653         return FUNC1;
654     else
655         return UNIOP;
656 }
657
658 #endif /* CRIPPLED_CC */
659
660 /*
661  * LOP : macro to build a list operator.  Its behaviour has been replaced
662  * with a subroutine, S_lop() for which LOP is just another name.
663  */
664
665 #define LOP(f,x) return lop(f,x,s)
666
667 /*
668  * S_lop
669  * Build a list operator (or something that might be one).  The rules:
670  *  - if we have a next token, then it's a list operator [why?]
671  *  - if the next thing is an opening paren, then it's a function
672  *  - else it's a list operator
673  */
674
675 STATIC I32
676 S_lop(pTHX_ I32 f, expectation x, char *s)
677 {
678     dTHR;
679     yylval.ival = f;
680     CLINE;
681     PL_expect = x;
682     PL_bufptr = s;
683     PL_last_lop = PL_oldbufptr;
684     PL_last_lop_op = f;
685     if (PL_nexttoke)
686         return LSTOP;
687     if (*s == '(')
688         return FUNC;
689     s = skipspace(s);
690     if (*s == '(')
691         return FUNC;
692     else
693         return LSTOP;
694 }
695
696 /*
697  * S_force_next
698  * When the lexer realizes it knows the next token (for instance,
699  * it is reordering tokens for the parser) then it can call S_force_next
700  * to know what token to return the next time the lexer is called.  Caller
701  * will need to set PL_nextval[], and possibly PL_expect to ensure the lexer
702  * handles the token correctly.
703  */
704
705 STATIC void 
706 S_force_next(pTHX_ I32 type)
707 {
708     PL_nexttype[PL_nexttoke] = type;
709     PL_nexttoke++;
710     if (PL_lex_state != LEX_KNOWNEXT) {
711         PL_lex_defer = PL_lex_state;
712         PL_lex_expect = PL_expect;
713         PL_lex_state = LEX_KNOWNEXT;
714     }
715 }
716
717 /*
718  * S_force_word
719  * When the lexer knows the next thing is a word (for instance, it has
720  * just seen -> and it knows that the next char is a word char, then
721  * it calls S_force_word to stick the next word into the PL_next lookahead.
722  *
723  * Arguments:
724  *   char *start : buffer position (must be within PL_linestr)
725  *   int token   : PL_next will be this type of bare word (e.g., METHOD,WORD)
726  *   int check_keyword : if true, Perl checks to make sure the word isn't
727  *       a keyword (do this if the word is a label, e.g. goto FOO)
728  *   int allow_pack : if true, : characters will also be allowed (require,
729  *       use, etc. do this)
730  *   int allow_initial_tick : used by the "sub" lexer only.
731  */
732
733 STATIC char *
734 S_force_word(pTHX_ register char *start, int token, int check_keyword, int allow_pack, int allow_initial_tick)
735 {
736     register char *s;
737     STRLEN len;
738     
739     start = skipspace(start);
740     s = start;
741     if (isIDFIRST_lazy(s) ||
742         (allow_pack && *s == ':') ||
743         (allow_initial_tick && *s == '\'') )
744     {
745         s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, allow_pack, &len);
746         if (check_keyword && keyword(PL_tokenbuf, len))
747             return start;
748         if (token == METHOD) {
749             s = skipspace(s);
750             if (*s == '(')
751                 PL_expect = XTERM;
752             else {
753                 PL_expect = XOPERATOR;
754             }
755         }
756         PL_nextval[PL_nexttoke].opval = (OP*)newSVOP(OP_CONST,0, newSVpv(PL_tokenbuf,0));
757         PL_nextval[PL_nexttoke].opval->op_private |= OPpCONST_BARE;
758         force_next(token);
759     }
760     return s;
761 }
762
763 /*
764  * S_force_ident
765  * Called when the lexer wants $foo *foo &foo etc, but the program
766  * text only contains the "foo" portion.  The first argument is a pointer
767  * to the "foo", and the second argument is the type symbol to prefix.
768  * Forces the next token to be a "WORD".
769  * Creates the symbol if it didn't already exist (via gv_fetchpv()).
770  */
771
772 STATIC void
773 S_force_ident(pTHX_ register char *s, int kind)
774 {
775     if (s && *s) {
776         OP* o = (OP*)newSVOP(OP_CONST, 0, newSVpv(s,0));
777         PL_nextval[PL_nexttoke].opval = o;
778         force_next(WORD);
779         if (kind) {
780             dTHR;               /* just for in_eval */
781             o->op_private = OPpCONST_ENTERED;
782             /* XXX see note in pp_entereval() for why we forgo typo
783                warnings if the symbol must be introduced in an eval.
784                GSAR 96-10-12 */
785             gv_fetchpv(s, PL_in_eval ? (GV_ADDMULTI | GV_ADDINEVAL) : TRUE,
786                 kind == '$' ? SVt_PV :
787                 kind == '@' ? SVt_PVAV :
788                 kind == '%' ? SVt_PVHV :
789                               SVt_PVGV
790                 );
791         }
792     }
793 }
794
795 /* 
796  * S_force_version
797  * Forces the next token to be a version number.
798  */
799
800 STATIC char *
801 S_force_version(pTHX_ char *s)
802 {
803     OP *version = Nullop;
804
805     s = skipspace(s);
806
807     /* default VERSION number -- GBARR */
808
809     if(isDIGIT(*s)) {
810         char *d;
811         int c;
812         for( d=s, c = 1; isDIGIT(*d) || *d == '_' || (*d == '.' && c--); d++);
813         if((*d == ';' || isSPACE(*d)) && *(skipspace(d)) != ',') {
814             s = scan_num(s);
815             /* real VERSION number -- GBARR */
816             version = yylval.opval;
817         }
818     }
819
820     /* NOTE: The parser sees the package name and the VERSION swapped */
821     PL_nextval[PL_nexttoke].opval = version;
822     force_next(WORD); 
823
824     return (s);
825 }
826
827 /*
828  * S_tokeq
829  * Tokenize a quoted string passed in as an SV.  It finds the next
830  * chunk, up to end of string or a backslash.  It may make a new
831  * SV containing that chunk (if HINT_NEW_STRING is on).  It also
832  * turns \\ into \.
833  */
834
835 STATIC SV *
836 S_tokeq(pTHX_ SV *sv)
837 {
838     register char *s;
839     register char *send;
840     register char *d;
841     STRLEN len = 0;
842     SV *pv = sv;
843
844     if (!SvLEN(sv))
845         goto finish;
846
847     s = SvPV_force(sv, len);
848     if (SvIVX(sv) == -1)
849         goto finish;
850     send = s + len;
851     while (s < send && *s != '\\')
852         s++;
853     if (s == send)
854         goto finish;
855     d = s;
856     if ( PL_hints & HINT_NEW_STRING )
857         pv = sv_2mortal(newSVpvn(SvPVX(pv), len));
858     while (s < send) {
859         if (*s == '\\') {
860             if (s + 1 < send && (s[1] == '\\'))
861                 s++;            /* all that, just for this */
862         }
863         *d++ = *s++;
864     }
865     *d = '\0';
866     SvCUR_set(sv, d - SvPVX(sv));
867   finish:
868     if ( PL_hints & HINT_NEW_STRING )
869        return new_constant(NULL, 0, "q", sv, pv, "q");
870     return sv;
871 }
872
873 /*
874  * Now come three functions related to double-quote context,
875  * S_sublex_start, S_sublex_push, and S_sublex_done.  They're used when
876  * converting things like "\u\Lgnat" into ucfirst(lc("gnat")).  They
877  * interact with PL_lex_state, and create fake ( ... ) argument lists
878  * to handle functions and concatenation.
879  * They assume that whoever calls them will be setting up a fake
880  * join call, because each subthing puts a ',' after it.  This lets
881  *   "lower \luPpEr"
882  * become
883  *  join($, , 'lower ', lcfirst( 'uPpEr', ) ,)
884  *
885  * (I'm not sure whether the spurious commas at the end of lcfirst's
886  * arguments and join's arguments are created or not).
887  */
888
889 /*
890  * S_sublex_start
891  * Assumes that yylval.ival is the op we're creating (e.g. OP_LCFIRST).
892  *
893  * Pattern matching will set PL_lex_op to the pattern-matching op to
894  * make (we return THING if yylval.ival is OP_NULL, PMFUNC otherwise).
895  *
896  * OP_CONST and OP_READLINE are easy--just make the new op and return.
897  *
898  * Everything else becomes a FUNC.
899  *
900  * Sets PL_lex_state to LEX_INTERPPUSH unless (ival was OP_NULL or we
901  * had an OP_CONST or OP_READLINE).  This just sets us up for a
902  * call to S_sublex_push().
903  */
904
905 STATIC I32
906 S_sublex_start(pTHX)
907 {
908     register I32 op_type = yylval.ival;
909
910     if (op_type == OP_NULL) {
911         yylval.opval = PL_lex_op;
912         PL_lex_op = Nullop;
913         return THING;
914     }
915     if (op_type == OP_CONST || op_type == OP_READLINE) {
916         SV *sv = tokeq(PL_lex_stuff);
917
918         if (SvTYPE(sv) == SVt_PVIV) {
919             /* Overloaded constants, nothing fancy: Convert to SVt_PV: */
920             STRLEN len;
921             char *p;
922             SV *nsv;
923
924             p = SvPV(sv, len);
925             nsv = newSVpvn(p, len);
926             SvREFCNT_dec(sv);
927             sv = nsv;
928         } 
929         yylval.opval = (OP*)newSVOP(op_type, 0, sv);
930         PL_lex_stuff = Nullsv;
931         return THING;
932     }
933
934     PL_sublex_info.super_state = PL_lex_state;
935     PL_sublex_info.sub_inwhat = op_type;
936     PL_sublex_info.sub_op = PL_lex_op;
937     PL_lex_state = LEX_INTERPPUSH;
938
939     PL_expect = XTERM;
940     if (PL_lex_op) {
941         yylval.opval = PL_lex_op;
942         PL_lex_op = Nullop;
943         return PMFUNC;
944     }
945     else
946         return FUNC;
947 }
948
949 /*
950  * S_sublex_push
951  * Create a new scope to save the lexing state.  The scope will be
952  * ended in S_sublex_done.  Returns a '(', starting the function arguments
953  * to the uc, lc, etc. found before.
954  * Sets PL_lex_state to LEX_INTERPCONCAT.
955  */
956
957 STATIC I32
958 S_sublex_push(pTHX)
959 {
960     dTHR;
961     ENTER;
962
963     PL_lex_state = PL_sublex_info.super_state;
964     SAVEI32(PL_lex_dojoin);
965     SAVEI32(PL_lex_brackets);
966     SAVEI32(PL_lex_fakebrack);
967     SAVEI32(PL_lex_casemods);
968     SAVEI32(PL_lex_starts);
969     SAVEI32(PL_lex_state);
970     SAVESPTR(PL_lex_inpat);
971     SAVEI32(PL_lex_inwhat);
972     SAVEI16(PL_curcop->cop_line);
973     SAVEPPTR(PL_bufptr);
974     SAVEPPTR(PL_oldbufptr);
975     SAVEPPTR(PL_oldoldbufptr);
976     SAVEPPTR(PL_linestart);
977     SAVESPTR(PL_linestr);
978     SAVEPPTR(PL_lex_brackstack);
979     SAVEPPTR(PL_lex_casestack);
980
981     PL_linestr = PL_lex_stuff;
982     PL_lex_stuff = Nullsv;
983
984     PL_bufend = PL_bufptr = PL_oldbufptr = PL_oldoldbufptr = PL_linestart
985         = SvPVX(PL_linestr);
986     PL_bufend += SvCUR(PL_linestr);
987     SAVEFREESV(PL_linestr);
988
989     PL_lex_dojoin = FALSE;
990     PL_lex_brackets = 0;
991     PL_lex_fakebrack = 0;
992     New(899, PL_lex_brackstack, 120, char);
993     New(899, PL_lex_casestack, 12, char);
994     SAVEFREEPV(PL_lex_brackstack);
995     SAVEFREEPV(PL_lex_casestack);
996     PL_lex_casemods = 0;
997     *PL_lex_casestack = '\0';
998     PL_lex_starts = 0;
999     PL_lex_state = LEX_INTERPCONCAT;
1000     PL_curcop->cop_line = PL_multi_start;
1001
1002     PL_lex_inwhat = PL_sublex_info.sub_inwhat;
1003     if (PL_lex_inwhat == OP_MATCH || PL_lex_inwhat == OP_QR || PL_lex_inwhat == OP_SUBST)
1004         PL_lex_inpat = PL_sublex_info.sub_op;
1005     else
1006         PL_lex_inpat = Nullop;
1007
1008     return '(';
1009 }
1010
1011 /*
1012  * S_sublex_done
1013  * Restores lexer state after a S_sublex_push.
1014  */
1015
1016 STATIC I32
1017 S_sublex_done(pTHX)
1018 {
1019     if (!PL_lex_starts++) {
1020         PL_expect = XOPERATOR;
1021         yylval.opval = (OP*)newSVOP(OP_CONST, 0, newSVpvn("",0));
1022         return THING;
1023     }
1024
1025     if (PL_lex_casemods) {              /* oops, we've got some unbalanced parens */
1026         PL_lex_state = LEX_INTERPCASEMOD;
1027         return yylex();
1028     }
1029
1030     /* Is there a right-hand side to take care of? (s//RHS/ or tr//RHS/) */
1031     if (PL_lex_repl && (PL_lex_inwhat == OP_SUBST || PL_lex_inwhat == OP_TRANS)) {
1032         PL_linestr = PL_lex_repl;
1033         PL_lex_inpat = 0;
1034         PL_bufend = PL_bufptr = PL_oldbufptr = PL_oldoldbufptr = PL_linestart = SvPVX(PL_linestr);
1035         PL_bufend += SvCUR(PL_linestr);
1036         SAVEFREESV(PL_linestr);
1037         PL_lex_dojoin = FALSE;
1038         PL_lex_brackets = 0;
1039         PL_lex_fakebrack = 0;
1040         PL_lex_casemods = 0;
1041         *PL_lex_casestack = '\0';
1042         PL_lex_starts = 0;
1043         if (SvEVALED(PL_lex_repl)) {
1044             PL_lex_state = LEX_INTERPNORMAL;
1045             PL_lex_starts++;
1046             /*  we don't clear PL_lex_repl here, so that we can check later
1047                 whether this is an evalled subst; that means we rely on the
1048                 logic to ensure sublex_done() is called again only via the
1049                 branch (in yylex()) that clears PL_lex_repl, else we'll loop */
1050         }
1051         else {
1052             PL_lex_state = LEX_INTERPCONCAT;
1053             PL_lex_repl = Nullsv;
1054         }
1055         return ',';
1056     }
1057     else {
1058         LEAVE;
1059         PL_bufend = SvPVX(PL_linestr);
1060         PL_bufend += SvCUR(PL_linestr);
1061         PL_expect = XOPERATOR;
1062         PL_sublex_info.sub_inwhat = 0;
1063         return ')';
1064     }
1065 }
1066
1067 /*
1068   scan_const
1069
1070   Extracts a pattern, double-quoted string, or transliteration.  This
1071   is terrifying code.
1072
1073   It looks at lex_inwhat and PL_lex_inpat to find out whether it's
1074   processing a pattern (PL_lex_inpat is true), a transliteration
1075   (lex_inwhat & OP_TRANS is true), or a double-quoted string.
1076
1077   Returns a pointer to the character scanned up to. Iff this is
1078   advanced from the start pointer supplied (ie if anything was
1079   successfully parsed), will leave an OP for the substring scanned
1080   in yylval. Caller must intuit reason for not parsing further
1081   by looking at the next characters herself.
1082
1083   In patterns:
1084     backslashes:
1085       double-quoted style: \r and \n
1086       regexp special ones: \D \s
1087       constants: \x3
1088       backrefs: \1 (deprecated in substitution replacements)
1089       case and quoting: \U \Q \E
1090     stops on @ and $, but not for $ as tail anchor
1091
1092   In transliterations:
1093     characters are VERY literal, except for - not at the start or end
1094     of the string, which indicates a range.  scan_const expands the
1095     range to the full set of intermediate characters.
1096
1097   In double-quoted strings:
1098     backslashes:
1099       double-quoted style: \r and \n
1100       constants: \x3
1101       backrefs: \1 (deprecated)
1102       case and quoting: \U \Q \E
1103     stops on @ and $
1104
1105   scan_const does *not* construct ops to handle interpolated strings.
1106   It stops processing as soon as it finds an embedded $ or @ variable
1107   and leaves it to the caller to work out what's going on.
1108
1109   @ in pattern could be: @foo, @{foo}, @$foo, @'foo, @:foo.
1110
1111   $ in pattern could be $foo or could be tail anchor.  Assumption:
1112   it's a tail anchor if $ is the last thing in the string, or if it's
1113   followed by one of ")| \n\t"
1114
1115   \1 (backreferences) are turned into $1
1116
1117   The structure of the code is
1118       while (there's a character to process) {
1119           handle transliteration ranges
1120           skip regexp comments
1121           skip # initiated comments in //x patterns
1122           check for embedded @foo
1123           check for embedded scalars
1124           if (backslash) {
1125               leave intact backslashes from leave (below)
1126               deprecate \1 in strings and sub replacements
1127               handle string-changing backslashes \l \U \Q \E, etc.
1128               switch (what was escaped) {
1129                   handle - in a transliteration (becomes a literal -)
1130                   handle \132 octal characters
1131                   handle 0x15 hex characters
1132                   handle \cV (control V)
1133                   handle printf backslashes (\f, \r, \n, etc)
1134               } (end switch)
1135           } (end if backslash)
1136     } (end while character to read)
1137                   
1138 */
1139
1140 STATIC char *
1141 S_scan_const(pTHX_ char *start)
1142 {
1143     register char *send = PL_bufend;            /* end of the constant */
1144     SV *sv = NEWSV(93, send - start);           /* sv for the constant */
1145     register char *s = start;                   /* start of the constant */
1146     register char *d = SvPVX(sv);               /* destination for copies */
1147     bool dorange = FALSE;                       /* are we in a translit range? */
1148     I32 len;                                    /* ? */
1149     I32 utf = (PL_lex_inwhat == OP_TRANS && PL_sublex_info.sub_op)
1150         ? (PL_sublex_info.sub_op->op_private & (OPpTRANS_FROM_UTF|OPpTRANS_TO_UTF))
1151         : UTF;
1152     I32 thisutf = (PL_lex_inwhat == OP_TRANS && PL_sublex_info.sub_op)
1153         ? (PL_sublex_info.sub_op->op_private & (PL_lex_repl ?
1154                                                 OPpTRANS_FROM_UTF : OPpTRANS_TO_UTF))
1155         : UTF;
1156     char *leaveit =                     /* set of acceptably-backslashed characters */
1157         PL_lex_inpat
1158             ? "\\.^$@AGZdDwWsSbBpPXC+*?|()-nrtfeaxcz0123456789[{]} \t\n\r\f\v#"
1159             : "";
1160
1161     while (s < send || dorange) {
1162         /* get transliterations out of the way (they're most literal) */
1163         if (PL_lex_inwhat == OP_TRANS) {
1164             /* expand a range A-Z to the full set of characters.  AIE! */
1165             if (dorange) {
1166                 I32 i;                          /* current expanded character */
1167                 I32 min;                        /* first character in range */
1168                 I32 max;                        /* last character in range */
1169
1170                 i = d - SvPVX(sv);              /* remember current offset */
1171                 SvGROW(sv, SvLEN(sv) + 256);    /* never more than 256 chars in a range */
1172                 d = SvPVX(sv) + i;              /* refresh d after realloc */
1173                 d -= 2;                         /* eat the first char and the - */
1174
1175                 min = (U8)*d;                   /* first char in range */
1176                 max = (U8)d[1];                 /* last char in range  */
1177
1178 #ifndef ASCIIish
1179                 if ((isLOWER(min) && isLOWER(max)) ||
1180                     (isUPPER(min) && isUPPER(max))) {
1181                     if (isLOWER(min)) {
1182                         for (i = min; i <= max; i++)
1183                             if (isLOWER(i))
1184                                 *d++ = i;
1185                     } else {
1186                         for (i = min; i <= max; i++)
1187                             if (isUPPER(i))
1188                                 *d++ = i;
1189                     }
1190                 }
1191                 else
1192 #endif
1193                     for (i = min; i <= max; i++)
1194                         *d++ = i;
1195
1196                 /* mark the range as done, and continue */
1197                 dorange = FALSE;
1198                 continue;
1199             }
1200
1201             /* range begins (ignore - as first or last char) */
1202             else if (*s == '-' && s+1 < send  && s != start) {
1203                 if (utf) {
1204                     *d++ = (char)0xff;  /* use illegal utf8 byte--see pmtrans */
1205                     s++;
1206                     continue;
1207                 }
1208                 dorange = TRUE;
1209                 s++;
1210             }
1211         }
1212
1213         /* if we get here, we're not doing a transliteration */
1214
1215         /* skip for regexp comments /(?#comment)/ and code /(?{code})/,
1216            except for the last char, which will be done separately. */
1217         else if (*s == '(' && PL_lex_inpat && s[1] == '?') {
1218             if (s[2] == '#') {
1219                 while (s < send && *s != ')')
1220                     *d++ = *s++;
1221             } else if (s[2] == '{'
1222                        || s[2] == 'p' && s[3] == '{') { /* This should march regcomp.c */
1223                 I32 count = 1;
1224                 char *regparse = s + (s[2] == '{' ? 3 : 4);
1225                 char c;
1226
1227                 while (count && (c = *regparse)) {
1228                     if (c == '\\' && regparse[1])
1229                         regparse++;
1230                     else if (c == '{') 
1231                         count++;
1232                     else if (c == '}') 
1233                         count--;
1234                     regparse++;
1235                 }
1236                 if (*regparse != ')') {
1237                     regparse--;         /* Leave one char for continuation. */
1238                     yyerror("Sequence (?{...}) not terminated or not {}-balanced");
1239                 }
1240                 while (s < regparse)
1241                     *d++ = *s++;
1242             }
1243         }
1244
1245         /* likewise skip #-initiated comments in //x patterns */
1246         else if (*s == '#' && PL_lex_inpat &&
1247           ((PMOP*)PL_lex_inpat)->op_pmflags & PMf_EXTENDED) {
1248             while (s+1 < send && *s != '\n')
1249                 *d++ = *s++;
1250         }
1251
1252         /* check for embedded arrays (@foo, @:foo, @'foo, @{foo}, @$foo) */
1253         else if (*s == '@' && s[1] && (isALNUM_lazy(s+1) || strchr(":'{$", s[1])))
1254             break;
1255
1256         /* check for embedded scalars.  only stop if we're sure it's a
1257            variable.
1258         */
1259         else if (*s == '$') {
1260             if (!PL_lex_inpat)  /* not a regexp, so $ must be var */
1261                 break;
1262             if (s + 1 < send && !strchr("()| \n\t", s[1]))
1263                 break;          /* in regexp, $ might be tail anchor */
1264         }
1265
1266         /* (now in tr/// code again) */
1267
1268         if (*s & 0x80 && thisutf) {
1269             dTHR;                       /* only for ckWARN */
1270             if (ckWARN(WARN_UTF8)) {
1271                 (void)utf8_to_uv((U8*)s, &len); /* could cvt latin-1 to utf8 here... */
1272                 if (len) {
1273                     while (len--)
1274                         *d++ = *s++;
1275                     continue;
1276                 }
1277             }
1278         }
1279
1280         /* backslashes */
1281         if (*s == '\\' && s+1 < send) {
1282             s++;
1283
1284             /* some backslashes we leave behind */
1285             if (*leaveit && *s && strchr(leaveit, *s)) {
1286                 *d++ = '\\';
1287                 *d++ = *s++;
1288                 continue;
1289             }
1290
1291             /* deprecate \1 in strings and substitution replacements */
1292             if (PL_lex_inwhat == OP_SUBST && !PL_lex_inpat &&
1293                 isDIGIT(*s) && *s != '0' && !isDIGIT(s[1]))
1294             {
1295                 dTHR;                   /* only for ckWARN */
1296                 if (ckWARN(WARN_SYNTAX))
1297                     Perl_warner(aTHX_ WARN_SYNTAX, "\\%c better written as $%c", *s, *s);
1298                 *--s = '$';
1299                 break;
1300             }
1301
1302             /* string-change backslash escapes */
1303             if (PL_lex_inwhat != OP_TRANS && *s && strchr("lLuUEQ", *s)) {
1304                 --s;
1305                 break;
1306             }
1307
1308             /* if we get here, it's either a quoted -, or a digit */
1309             switch (*s) {
1310
1311             /* quoted - in transliterations */
1312             case '-':
1313                 if (PL_lex_inwhat == OP_TRANS) {
1314                     *d++ = *s++;
1315                     continue;
1316                 }
1317                 /* FALL THROUGH */
1318             default:
1319                 {
1320                     dTHR;
1321                     if (ckWARN(WARN_UNSAFE) && isALPHA(*s))
1322                         Perl_warner(aTHX_ WARN_UNSAFE, 
1323                                "Unrecognized escape \\%c passed through",
1324                                *s);
1325                     /* default action is to copy the quoted character */
1326                     *d++ = *s++;
1327                     continue;
1328                 }
1329
1330             /* \132 indicates an octal constant */
1331             case '0': case '1': case '2': case '3':
1332             case '4': case '5': case '6': case '7':
1333                 *d++ = scan_oct(s, 3, &len);
1334                 s += len;
1335                 continue;
1336
1337             /* \x24 indicates a hex constant */
1338             case 'x':
1339                 ++s;
1340                 if (*s == '{') {
1341                     char* e = strchr(s, '}');
1342
1343                     if (!e) {
1344                         yyerror("Missing right brace on \\x{}");
1345                         e = s;
1346                     }
1347                     if (!utf) {
1348                         dTHR;
1349                         if (ckWARN(WARN_UTF8))
1350                             Perl_warner(aTHX_ WARN_UTF8,
1351                                    "Use of \\x{} without utf8 declaration");
1352                     }
1353                     /* note: utf always shorter than hex */
1354                     d = (char*)uv_to_utf8((U8*)d,
1355                                           scan_hex(s + 1, e - s - 1, &len));
1356                     s = e + 1;
1357                 }
1358                 else {
1359                     UV uv = (UV)scan_hex(s, 2, &len);
1360                     if (utf && PL_lex_inwhat == OP_TRANS &&
1361                         utf != (OPpTRANS_FROM_UTF|OPpTRANS_TO_UTF))
1362                     {
1363                         d = (char*)uv_to_utf8((U8*)d, uv);      /* doing a CU or UC */
1364                     }
1365                     else {
1366                         if (uv >= 127 && UTF) {
1367                             dTHR;
1368                             if (ckWARN(WARN_UTF8))
1369                                 Perl_warner(aTHX_ WARN_UTF8,
1370                                     "\\x%.*s will produce malformed UTF-8 character; use \\x{%.*s} for that",
1371                                     len,s,len,s);
1372                         }
1373                         *d++ = (char)uv;
1374                     }
1375                     s += len;
1376                 }
1377                 continue;
1378
1379             /* \N{latin small letter a} is a named character */
1380             case 'N':
1381                 ++s;
1382                 if (*s == '{') {
1383                     char* e = strchr(s, '}');
1384                     HV *hv;
1385                     SV **svp;
1386                     SV *res, *cv;
1387                     STRLEN len;
1388                     char *str;
1389                     char *why = Nullch;
1390  
1391                     if (!e) {
1392                         yyerror("Missing right brace on \\N{}");
1393                         e = s - 1;
1394                         goto cont_scan;
1395                     }
1396                     res = newSVpvn(s + 1, e - s - 1);
1397                     res = new_constant( Nullch, 0, "charnames", 
1398                                         res, Nullsv, "\\N{...}" );
1399                     str = SvPV(res,len);
1400                     if (len > e - s + 4) {
1401                         char *odest = SvPVX(sv);
1402
1403                         SvGROW(sv, (SvCUR(sv) + len - (e - s + 4)));
1404                         d = SvPVX(sv) + (d - odest);
1405                     }
1406                     Copy(str, d, len, char);
1407                     d += len;
1408                     SvREFCNT_dec(res);
1409                   cont_scan:
1410                     s = e + 1;
1411                 }
1412                 else
1413                     yyerror("Missing braces on \\N{}");
1414                 continue;
1415
1416             /* \c is a control character */
1417             case 'c':
1418                 s++;
1419 #ifdef EBCDIC
1420                 *d = *s++;
1421                 if (isLOWER(*d))
1422                    *d = toUPPER(*d);
1423                 *d++ = toCTRL(*d); 
1424 #else
1425                 len = *s++;
1426                 *d++ = toCTRL(len);
1427 #endif
1428                 continue;
1429
1430             /* printf-style backslashes, formfeeds, newlines, etc */
1431             case 'b':
1432                 *d++ = '\b';
1433                 break;
1434             case 'n':
1435                 *d++ = '\n';
1436                 break;
1437             case 'r':
1438                 *d++ = '\r';
1439                 break;
1440             case 'f':
1441                 *d++ = '\f';
1442                 break;
1443             case 't':
1444                 *d++ = '\t';
1445                 break;
1446 #ifdef EBCDIC
1447             case 'e':
1448                 *d++ = '\047';  /* CP 1047 */
1449                 break;
1450             case 'a':
1451                 *d++ = '\057';  /* CP 1047 */
1452                 break;
1453 #else
1454             case 'e':
1455                 *d++ = '\033';
1456                 break;
1457             case 'a':
1458                 *d++ = '\007';
1459                 break;
1460 #endif
1461             } /* end switch */
1462
1463             s++;
1464             continue;
1465         } /* end if (backslash) */
1466
1467         *d++ = *s++;
1468     } /* while loop to process each character */
1469
1470     /* terminate the string and set up the sv */
1471     *d = '\0';
1472     SvCUR_set(sv, d - SvPVX(sv));
1473     SvPOK_on(sv);
1474
1475     /* shrink the sv if we allocated more than we used */
1476     if (SvCUR(sv) + 5 < SvLEN(sv)) {
1477         SvLEN_set(sv, SvCUR(sv) + 1);
1478         Renew(SvPVX(sv), SvLEN(sv), char);
1479     }
1480
1481     /* return the substring (via yylval) only if we parsed anything */
1482     if (s > PL_bufptr) {
1483         if ( PL_hints & ( PL_lex_inpat ? HINT_NEW_RE : HINT_NEW_STRING ) )
1484             sv = new_constant(start, s - start, (PL_lex_inpat ? "qr" : "q"), 
1485                               sv, Nullsv,
1486                               ( PL_lex_inwhat == OP_TRANS 
1487                                 ? "tr"
1488                                 : ( (PL_lex_inwhat == OP_SUBST && !PL_lex_inpat)
1489                                     ? "s"
1490                                     : "qq")));
1491         yylval.opval = (OP*)newSVOP(OP_CONST, 0, sv);
1492     } else
1493         SvREFCNT_dec(sv);
1494     return s;
1495 }
1496
1497 /* S_intuit_more
1498  * Returns TRUE if there's more to the expression (e.g., a subscript),
1499  * FALSE otherwise.
1500  *
1501  * It deals with "$foo[3]" and /$foo[3]/ and /$foo[0123456789$]+/
1502  *
1503  * ->[ and ->{ return TRUE
1504  * { and [ outside a pattern are always subscripts, so return TRUE
1505  * if we're outside a pattern and it's not { or [, then return FALSE
1506  * if we're in a pattern and the first char is a {
1507  *   {4,5} (any digits around the comma) returns FALSE
1508  * if we're in a pattern and the first char is a [
1509  *   [] returns FALSE
1510  *   [SOMETHING] has a funky algorithm to decide whether it's a
1511  *      character class or not.  It has to deal with things like
1512  *      /$foo[-3]/ and /$foo[$bar]/ as well as /$foo[$\d]+/
1513  * anything else returns TRUE
1514  */
1515
1516 /* This is the one truly awful dwimmer necessary to conflate C and sed. */
1517
1518 STATIC int
1519 S_intuit_more(pTHX_ register char *s)
1520 {
1521     if (PL_lex_brackets)
1522         return TRUE;
1523     if (*s == '-' && s[1] == '>' && (s[2] == '[' || s[2] == '{'))
1524         return TRUE;
1525     if (*s != '{' && *s != '[')
1526         return FALSE;
1527     if (!PL_lex_inpat)
1528         return TRUE;
1529
1530     /* In a pattern, so maybe we have {n,m}. */
1531     if (*s == '{') {
1532         s++;
1533         if (!isDIGIT(*s))
1534             return TRUE;
1535         while (isDIGIT(*s))
1536             s++;
1537         if (*s == ',')
1538             s++;
1539         while (isDIGIT(*s))
1540             s++;
1541         if (*s == '}')
1542             return FALSE;
1543         return TRUE;
1544         
1545     }
1546
1547     /* On the other hand, maybe we have a character class */
1548
1549     s++;
1550     if (*s == ']' || *s == '^')
1551         return FALSE;
1552     else {
1553         /* this is terrifying, and it works */
1554         int weight = 2;         /* let's weigh the evidence */
1555         char seen[256];
1556         unsigned char un_char = 255, last_un_char;
1557         char *send = strchr(s,']');
1558         char tmpbuf[sizeof PL_tokenbuf * 4];
1559
1560         if (!send)              /* has to be an expression */
1561             return TRUE;
1562
1563         Zero(seen,256,char);
1564         if (*s == '$')
1565             weight -= 3;
1566         else if (isDIGIT(*s)) {
1567             if (s[1] != ']') {
1568                 if (isDIGIT(s[1]) && s[2] == ']')
1569                     weight -= 10;
1570             }
1571             else
1572                 weight -= 100;
1573         }
1574         for (; s < send; s++) {
1575             last_un_char = un_char;
1576             un_char = (unsigned char)*s;
1577             switch (*s) {
1578             case '@':
1579             case '&':
1580             case '$':
1581                 weight -= seen[un_char] * 10;
1582                 if (isALNUM_lazy(s+1)) {
1583                     scan_ident(s, send, tmpbuf, sizeof tmpbuf, FALSE);
1584                     if ((int)strlen(tmpbuf) > 1 && gv_fetchpv(tmpbuf,FALSE, SVt_PV))
1585                         weight -= 100;
1586                     else
1587                         weight -= 10;
1588                 }
1589                 else if (*s == '$' && s[1] &&
1590                   strchr("[#!%*<>()-=",s[1])) {
1591                     if (/*{*/ strchr("])} =",s[2]))
1592                         weight -= 10;
1593                     else
1594                         weight -= 1;
1595                 }
1596                 break;
1597             case '\\':
1598                 un_char = 254;
1599                 if (s[1]) {
1600                     if (strchr("wds]",s[1]))
1601                         weight += 100;
1602                     else if (seen['\''] || seen['"'])
1603                         weight += 1;
1604                     else if (strchr("rnftbxcav",s[1]))
1605                         weight += 40;
1606                     else if (isDIGIT(s[1])) {
1607                         weight += 40;
1608                         while (s[1] && isDIGIT(s[1]))
1609                             s++;
1610                     }
1611                 }
1612                 else
1613                     weight += 100;
1614                 break;
1615             case '-':
1616                 if (s[1] == '\\')
1617                     weight += 50;
1618                 if (strchr("aA01! ",last_un_char))
1619                     weight += 30;
1620                 if (strchr("zZ79~",s[1]))
1621                     weight += 30;
1622                 if (last_un_char == 255 && (isDIGIT(s[1]) || s[1] == '$'))
1623                     weight -= 5;        /* cope with negative subscript */
1624                 break;
1625             default:
1626                 if (!isALNUM(last_un_char) && !strchr("$@&",last_un_char) &&
1627                         isALPHA(*s) && s[1] && isALPHA(s[1])) {
1628                     char *d = tmpbuf;
1629                     while (isALPHA(*s))
1630                         *d++ = *s++;
1631                     *d = '\0';
1632                     if (keyword(tmpbuf, d - tmpbuf))
1633                         weight -= 150;
1634                 }
1635                 if (un_char == last_un_char + 1)
1636                     weight += 5;
1637                 weight -= seen[un_char];
1638                 break;
1639             }
1640             seen[un_char]++;
1641         }
1642         if (weight >= 0)        /* probably a character class */
1643             return FALSE;
1644     }
1645
1646     return TRUE;
1647 }
1648
1649 /*
1650  * S_intuit_method
1651  *
1652  * Does all the checking to disambiguate
1653  *   foo bar
1654  * between foo(bar) and bar->foo.  Returns 0 if not a method, otherwise
1655  * FUNCMETH (bar->foo(args)) or METHOD (bar->foo args).
1656  *
1657  * First argument is the stuff after the first token, e.g. "bar".
1658  *
1659  * Not a method if bar is a filehandle.
1660  * Not a method if foo is a subroutine prototyped to take a filehandle.
1661  * Not a method if it's really "Foo $bar"
1662  * Method if it's "foo $bar"
1663  * Not a method if it's really "print foo $bar"
1664  * Method if it's really "foo package::" (interpreted as package->foo)
1665  * Not a method if bar is known to be a subroutne ("sub bar; foo bar")
1666  * Not a method if bar is a filehandle or package, but is quotd with
1667  *   =>
1668  */
1669
1670 STATIC int
1671 S_intuit_method(pTHX_ char *start, GV *gv)
1672 {
1673     char *s = start + (*start == '$');
1674     char tmpbuf[sizeof PL_tokenbuf];
1675     STRLEN len;
1676     GV* indirgv;
1677
1678     if (gv) {
1679         CV *cv;
1680         if (GvIO(gv))
1681             return 0;
1682         if ((cv = GvCVu(gv))) {
1683             char *proto = SvPVX(cv);
1684             if (proto) {
1685                 if (*proto == ';')
1686                     proto++;
1687                 if (*proto == '*')
1688                     return 0;
1689             }
1690         } else
1691             gv = 0;
1692     }
1693     s = scan_word(s, tmpbuf, sizeof tmpbuf, TRUE, &len);
1694     /* start is the beginning of the possible filehandle/object,
1695      * and s is the end of it
1696      * tmpbuf is a copy of it
1697      */
1698
1699     if (*start == '$') {
1700         if (gv || PL_last_lop_op == OP_PRINT || isUPPER(*PL_tokenbuf))
1701             return 0;
1702         s = skipspace(s);
1703         PL_bufptr = start;
1704         PL_expect = XREF;
1705         return *s == '(' ? FUNCMETH : METHOD;
1706     }
1707     if (!keyword(tmpbuf, len)) {
1708         if (len > 2 && tmpbuf[len - 2] == ':' && tmpbuf[len - 1] == ':') {
1709             len -= 2;
1710             tmpbuf[len] = '\0';
1711             goto bare_package;
1712         }
1713         indirgv = gv_fetchpv(tmpbuf, FALSE, SVt_PVCV);
1714         if (indirgv && GvCVu(indirgv))
1715             return 0;
1716         /* filehandle or package name makes it a method */
1717         if (!gv || GvIO(indirgv) || gv_stashpvn(tmpbuf, len, FALSE)) {
1718             s = skipspace(s);
1719             if ((PL_bufend - s) >= 2 && *s == '=' && *(s+1) == '>')
1720                 return 0;       /* no assumptions -- "=>" quotes bearword */
1721       bare_package:
1722             PL_nextval[PL_nexttoke].opval = (OP*)newSVOP(OP_CONST, 0,
1723                                                    newSVpvn(tmpbuf,len));
1724             PL_nextval[PL_nexttoke].opval->op_private = OPpCONST_BARE;
1725             PL_expect = XTERM;
1726             force_next(WORD);
1727             PL_bufptr = s;
1728             return *s == '(' ? FUNCMETH : METHOD;
1729         }
1730     }
1731     return 0;
1732 }
1733
1734 /*
1735  * S_incl_perldb
1736  * Return a string of Perl code to load the debugger.  If PERL5DB
1737  * is set, it will return the contents of that, otherwise a
1738  * compile-time require of perl5db.pl.
1739  */
1740
1741 STATIC char*
1742 S_incl_perldb(pTHX)
1743 {
1744     if (PL_perldb) {
1745         char *pdb = PerlEnv_getenv("PERL5DB");
1746
1747         if (pdb)
1748             return pdb;
1749         SETERRNO(0,SS$_NORMAL);
1750         return "BEGIN { require 'perl5db.pl' }";
1751     }
1752     return "";
1753 }
1754
1755
1756 /* Encoded script support. filter_add() effectively inserts a
1757  * 'pre-processing' function into the current source input stream. 
1758  * Note that the filter function only applies to the current source file
1759  * (e.g., it will not affect files 'require'd or 'use'd by this one).
1760  *
1761  * The datasv parameter (which may be NULL) can be used to pass
1762  * private data to this instance of the filter. The filter function
1763  * can recover the SV using the FILTER_DATA macro and use it to
1764  * store private buffers and state information.
1765  *
1766  * The supplied datasv parameter is upgraded to a PVIO type
1767  * and the IoDIRP field is used to store the function pointer.
1768  * Note that IoTOP_NAME, IoFMT_NAME, IoBOTTOM_NAME, if set for
1769  * private use must be set using malloc'd pointers.
1770  */
1771
1772 SV *
1773 Perl_filter_add(pTHX_ filter_t funcp, SV *datasv)
1774 {
1775     if (!funcp){ /* temporary handy debugging hack to be deleted */
1776         PL_filter_debug = atoi((char*)datasv);
1777         return NULL;
1778     }
1779     if (!PL_rsfp_filters)
1780         PL_rsfp_filters = newAV();
1781     if (!datasv)
1782         datasv = NEWSV(255,0);
1783     if (!SvUPGRADE(datasv, SVt_PVIO))
1784         Perl_die(aTHX_ "Can't upgrade filter_add data to SVt_PVIO");
1785     IoDIRP(datasv) = (DIR*)funcp; /* stash funcp into spare field */
1786 #ifdef DEBUGGING
1787     if (PL_filter_debug) {
1788         STRLEN n_a;
1789         Perl_warn(aTHX_ "filter_add func %p (%s)", funcp, SvPV(datasv, n_a));
1790     }
1791 #endif /* DEBUGGING */
1792     av_unshift(PL_rsfp_filters, 1);
1793     av_store(PL_rsfp_filters, 0, datasv) ;
1794     return(datasv);
1795 }
1796  
1797
1798 /* Delete most recently added instance of this filter function. */
1799 void
1800 Perl_filter_del(pTHX_ filter_t funcp)
1801 {
1802 #ifdef DEBUGGING
1803     if (PL_filter_debug)
1804         Perl_warn(aTHX_ "filter_del func %p", funcp);
1805 #endif /* DEBUGGING */
1806     if (!PL_rsfp_filters || AvFILLp(PL_rsfp_filters)<0)
1807         return;
1808     /* if filter is on top of stack (usual case) just pop it off */
1809     if (IoDIRP(FILTER_DATA(AvFILLp(PL_rsfp_filters))) == (DIR*)funcp){
1810         IoDIRP(FILTER_DATA(AvFILLp(PL_rsfp_filters))) = NULL;
1811         sv_free(av_pop(PL_rsfp_filters));
1812
1813         return;
1814     }
1815     /* we need to search for the correct entry and clear it     */
1816     Perl_die(aTHX_ "filter_del can only delete in reverse order (currently)");
1817 }
1818
1819
1820 /* Invoke the n'th filter function for the current rsfp.         */
1821 I32
1822 Perl_filter_read(pTHX_ int idx, SV *buf_sv, int maxlen)
1823             
1824                
1825                         /* 0 = read one text line */
1826 {
1827     filter_t funcp;
1828     SV *datasv = NULL;
1829
1830     if (!PL_rsfp_filters)
1831         return -1;
1832     if (idx > AvFILLp(PL_rsfp_filters)){       /* Any more filters?     */
1833         /* Provide a default input filter to make life easy.    */
1834         /* Note that we append to the line. This is handy.      */
1835 #ifdef DEBUGGING
1836         if (PL_filter_debug)
1837             Perl_warn(aTHX_ "filter_read %d: from rsfp\n", idx);
1838 #endif /* DEBUGGING */
1839         if (maxlen) { 
1840             /* Want a block */
1841             int len ;
1842             int old_len = SvCUR(buf_sv) ;
1843
1844             /* ensure buf_sv is large enough */
1845             SvGROW(buf_sv, old_len + maxlen) ;
1846             if ((len = PerlIO_read(PL_rsfp, SvPVX(buf_sv) + old_len, maxlen)) <= 0){
1847                 if (PerlIO_error(PL_rsfp))
1848                     return -1;          /* error */
1849                 else
1850                     return 0 ;          /* end of file */
1851             }
1852             SvCUR_set(buf_sv, old_len + len) ;
1853         } else {
1854             /* Want a line */
1855             if (sv_gets(buf_sv, PL_rsfp, SvCUR(buf_sv)) == NULL) {
1856                 if (PerlIO_error(PL_rsfp))
1857                     return -1;          /* error */
1858                 else
1859                     return 0 ;          /* end of file */
1860             }
1861         }
1862         return SvCUR(buf_sv);
1863     }
1864     /* Skip this filter slot if filter has been deleted */
1865     if ( (datasv = FILTER_DATA(idx)) == &PL_sv_undef){
1866 #ifdef DEBUGGING
1867         if (PL_filter_debug)
1868             Perl_warn(aTHX_ "filter_read %d: skipped (filter deleted)\n", idx);
1869 #endif /* DEBUGGING */
1870         return FILTER_READ(idx+1, buf_sv, maxlen); /* recurse */
1871     }
1872     /* Get function pointer hidden within datasv        */
1873     funcp = (filter_t)IoDIRP(datasv);
1874 #ifdef DEBUGGING
1875     if (PL_filter_debug) {
1876         STRLEN n_a;
1877         Perl_warn(aTHX_ "filter_read %d: via function %p (%s)\n",
1878                 idx, funcp, SvPV(datasv,n_a));
1879     }
1880 #endif /* DEBUGGING */
1881     /* Call function. The function is expected to       */
1882     /* call "FILTER_READ(idx+1, buf_sv)" first.         */
1883     /* Return: <0:error, =0:eof, >0:not eof             */
1884     return (*funcp)(aTHXo_ idx, buf_sv, maxlen);
1885 }
1886
1887 STATIC char *
1888 S_filter_gets(pTHX_ register SV *sv, register PerlIO *fp, STRLEN append)
1889 {
1890 #ifdef WIN32FILTER
1891     if (!PL_rsfp_filters) {
1892         filter_add(win32_textfilter,NULL);
1893     }
1894 #endif
1895     if (PL_rsfp_filters) {
1896
1897         if (!append)
1898             SvCUR_set(sv, 0);   /* start with empty line        */
1899         if (FILTER_READ(0, sv, 0) > 0)
1900             return ( SvPVX(sv) ) ;
1901         else
1902             return Nullch ;
1903     }
1904     else
1905         return (sv_gets(sv, fp, append));
1906 }
1907
1908
1909 #ifdef DEBUGGING
1910     static char* exp_name[] =
1911         { "OPERATOR", "TERM", "REF", "STATE", "BLOCK", "ATTRBLOCK",
1912           "ATTRTERM", "TERMBLOCK"
1913         };
1914 #endif
1915
1916 /*
1917   yylex
1918
1919   Works out what to call the token just pulled out of the input
1920   stream.  The yacc parser takes care of taking the ops we return and
1921   stitching them into a tree.
1922
1923   Returns:
1924     PRIVATEREF
1925
1926   Structure:
1927       if read an identifier
1928           if we're in a my declaration
1929               croak if they tried to say my($foo::bar)
1930               build the ops for a my() declaration
1931           if it's an access to a my() variable
1932               are we in a sort block?
1933                   croak if my($a); $a <=> $b
1934               build ops for access to a my() variable
1935           if in a dq string, and they've said @foo and we can't find @foo
1936               croak
1937           build ops for a bareword
1938       if we already built the token before, use it.
1939 */
1940
1941 int
1942 #ifdef USE_PURE_BISON
1943 Perl_yylex(pTHX_ YYSTYPE *lvalp, int *lcharp)
1944 #else
1945 Perl_yylex(pTHX)
1946 #endif
1947 {
1948     dTHR;
1949     register char *s;
1950     register char *d;
1951     register I32 tmp;
1952     STRLEN len;
1953     GV *gv = Nullgv;
1954     GV **gvp = 0;
1955
1956 #ifdef USE_PURE_BISON
1957     yylval_pointer = lvalp;
1958     yychar_pointer = lcharp;
1959 #endif
1960
1961     /* check if there's an identifier for us to look at */
1962     if (PL_pending_ident) {
1963         /* pit holds the identifier we read and pending_ident is reset */
1964         char pit = PL_pending_ident;
1965         PL_pending_ident = 0;
1966
1967         /* if we're in a my(), we can't allow dynamics here.
1968            $foo'bar has already been turned into $foo::bar, so
1969            just check for colons.
1970
1971            if it's a legal name, the OP is a PADANY.
1972         */
1973         if (PL_in_my) {
1974             if (PL_in_my == KEY_our) {  /* "our" is merely analogous to "my" */
1975                 tmp = pad_allocmy(PL_tokenbuf);
1976             }
1977             else {
1978                 if (strchr(PL_tokenbuf,':'))
1979                     yyerror(Perl_form(aTHX_ PL_no_myglob,PL_tokenbuf));
1980
1981                 yylval.opval = newOP(OP_PADANY, 0);
1982                 yylval.opval->op_targ = pad_allocmy(PL_tokenbuf);
1983                 return PRIVATEREF;
1984             }
1985         }
1986
1987         /* 
1988            build the ops for accesses to a my() variable.
1989
1990            Deny my($a) or my($b) in a sort block, *if* $a or $b is
1991            then used in a comparison.  This catches most, but not
1992            all cases.  For instance, it catches
1993                sort { my($a); $a <=> $b }
1994            but not
1995                sort { my($a); $a < $b ? -1 : $a == $b ? 0 : 1; }
1996            (although why you'd do that is anyone's guess).
1997         */
1998
1999         if (!strchr(PL_tokenbuf,':')) {
2000 #ifdef USE_THREADS
2001             /* Check for single character per-thread SVs */
2002             if (PL_tokenbuf[0] == '$' && PL_tokenbuf[2] == '\0'
2003                 && !isALPHA(PL_tokenbuf[1]) /* Rule out obvious non-threadsvs */
2004                 && (tmp = find_threadsv(&PL_tokenbuf[1])) != NOT_IN_PAD)
2005             {
2006                 yylval.opval = newOP(OP_THREADSV, 0);
2007                 yylval.opval->op_targ = tmp;
2008                 return PRIVATEREF;
2009             }
2010 #endif /* USE_THREADS */
2011             if ((tmp = pad_findmy(PL_tokenbuf)) != NOT_IN_PAD) {
2012                 /* might be an "our" variable" */
2013                 if (SvFLAGS(AvARRAY(PL_comppad_name)[tmp]) & SVpad_OUR) {
2014                     /* build ops for a bareword */
2015                     yylval.opval = (OP*)newSVOP(OP_CONST, 0, newSVpv(PL_tokenbuf+1, 0));
2016                     yylval.opval->op_private = OPpCONST_ENTERED;
2017                     gv_fetchpv(PL_tokenbuf+1,
2018                         (PL_in_eval
2019                             ? (GV_ADDMULTI | GV_ADDINEVAL | GV_ADDOUR)
2020                             : GV_ADDOUR
2021                         ),
2022                         ((PL_tokenbuf[0] == '$') ? SVt_PV
2023                          : (PL_tokenbuf[0] == '@') ? SVt_PVAV
2024                          : SVt_PVHV));
2025                     return WORD;
2026                 }
2027
2028                 /* if it's a sort block and they're naming $a or $b */
2029                 if (PL_last_lop_op == OP_SORT &&
2030                     PL_tokenbuf[0] == '$' &&
2031                     (PL_tokenbuf[1] == 'a' || PL_tokenbuf[1] == 'b')
2032                     && !PL_tokenbuf[2])
2033                 {
2034                     for (d = PL_in_eval ? PL_oldoldbufptr : PL_linestart;
2035                          d < PL_bufend && *d != '\n';
2036                          d++)
2037                     {
2038                         if (strnEQ(d,"<=>",3) || strnEQ(d,"cmp",3)) {
2039                             Perl_croak(aTHX_ "Can't use \"my %s\" in sort comparison",
2040                                   PL_tokenbuf);
2041                         }
2042                     }
2043                 }
2044
2045                 yylval.opval = newOP(OP_PADANY, 0);
2046                 yylval.opval->op_targ = tmp;
2047                 return PRIVATEREF;
2048             }
2049         }
2050
2051         /*
2052            Whine if they've said @foo in a doublequoted string,
2053            and @foo isn't a variable we can find in the symbol
2054            table.
2055         */
2056         if (pit == '@' && PL_lex_state != LEX_NORMAL && !PL_lex_brackets) {
2057             GV *gv = gv_fetchpv(PL_tokenbuf+1, FALSE, SVt_PVAV);
2058             if (!gv || ((PL_tokenbuf[0] == '@') ? !GvAV(gv) : !GvHV(gv)))
2059                 yyerror(Perl_form(aTHX_ "In string, %s now must be written as \\%s",
2060                              PL_tokenbuf, PL_tokenbuf));
2061         }
2062
2063         /* build ops for a bareword */
2064         yylval.opval = (OP*)newSVOP(OP_CONST, 0, newSVpv(PL_tokenbuf+1, 0));
2065         yylval.opval->op_private = OPpCONST_ENTERED;
2066         gv_fetchpv(PL_tokenbuf+1, PL_in_eval ? (GV_ADDMULTI | GV_ADDINEVAL) : TRUE,
2067                    ((PL_tokenbuf[0] == '$') ? SVt_PV
2068                     : (PL_tokenbuf[0] == '@') ? SVt_PVAV
2069                     : SVt_PVHV));
2070         return WORD;
2071     }
2072
2073     /* no identifier pending identification */
2074
2075     switch (PL_lex_state) {
2076 #ifdef COMMENTARY
2077     case LEX_NORMAL:            /* Some compilers will produce faster */
2078     case LEX_INTERPNORMAL:      /* code if we comment these out. */
2079         break;
2080 #endif
2081
2082     /* when we've already built the next token, just pull it out of the queue */
2083     case LEX_KNOWNEXT:
2084         PL_nexttoke--;
2085         yylval = PL_nextval[PL_nexttoke];
2086         if (!PL_nexttoke) {
2087             PL_lex_state = PL_lex_defer;
2088             PL_expect = PL_lex_expect;
2089             PL_lex_defer = LEX_NORMAL;
2090         }
2091         return(PL_nexttype[PL_nexttoke]);
2092
2093     /* interpolated case modifiers like \L \U, including \Q and \E.
2094        when we get here, PL_bufptr is at the \
2095     */
2096     case LEX_INTERPCASEMOD:
2097 #ifdef DEBUGGING
2098         if (PL_bufptr != PL_bufend && *PL_bufptr != '\\')
2099             Perl_croak(aTHX_ "panic: INTERPCASEMOD");
2100 #endif
2101         /* handle \E or end of string */
2102         if (PL_bufptr == PL_bufend || PL_bufptr[1] == 'E') {
2103             char oldmod;
2104
2105             /* if at a \E */
2106             if (PL_lex_casemods) {
2107                 oldmod = PL_lex_casestack[--PL_lex_casemods];
2108                 PL_lex_casestack[PL_lex_casemods] = '\0';
2109
2110                 if (PL_bufptr != PL_bufend && strchr("LUQ", oldmod)) {
2111                     PL_bufptr += 2;
2112                     PL_lex_state = LEX_INTERPCONCAT;
2113                 }
2114                 return ')';
2115             }
2116             if (PL_bufptr != PL_bufend)
2117                 PL_bufptr += 2;
2118             PL_lex_state = LEX_INTERPCONCAT;
2119             return yylex();
2120         }
2121         else {
2122             s = PL_bufptr + 1;
2123             if (strnEQ(s, "L\\u", 3) || strnEQ(s, "U\\l", 3))
2124                 tmp = *s, *s = s[2], s[2] = tmp;        /* misordered... */
2125             if (strchr("LU", *s) &&
2126                 (strchr(PL_lex_casestack, 'L') || strchr(PL_lex_casestack, 'U')))
2127             {
2128                 PL_lex_casestack[--PL_lex_casemods] = '\0';
2129                 return ')';
2130             }
2131             if (PL_lex_casemods > 10) {
2132                 char* newlb = Renew(PL_lex_casestack, PL_lex_casemods + 2, char);
2133                 if (newlb != PL_lex_casestack) {
2134                     SAVEFREEPV(newlb);
2135                     PL_lex_casestack = newlb;
2136                 }
2137             }
2138             PL_lex_casestack[PL_lex_casemods++] = *s;
2139             PL_lex_casestack[PL_lex_casemods] = '\0';
2140             PL_lex_state = LEX_INTERPCONCAT;
2141             PL_nextval[PL_nexttoke].ival = 0;
2142             force_next('(');
2143             if (*s == 'l')
2144                 PL_nextval[PL_nexttoke].ival = OP_LCFIRST;
2145             else if (*s == 'u')
2146                 PL_nextval[PL_nexttoke].ival = OP_UCFIRST;
2147             else if (*s == 'L')
2148                 PL_nextval[PL_nexttoke].ival = OP_LC;
2149             else if (*s == 'U')
2150                 PL_nextval[PL_nexttoke].ival = OP_UC;
2151             else if (*s == 'Q')
2152                 PL_nextval[PL_nexttoke].ival = OP_QUOTEMETA;
2153             else
2154                 Perl_croak(aTHX_ "panic: yylex");
2155             PL_bufptr = s + 1;
2156             force_next(FUNC);
2157             if (PL_lex_starts) {
2158                 s = PL_bufptr;
2159                 PL_lex_starts = 0;
2160                 Aop(OP_CONCAT);
2161             }
2162             else
2163                 return yylex();
2164         }
2165
2166     case LEX_INTERPPUSH:
2167         return sublex_push();
2168
2169     case LEX_INTERPSTART:
2170         if (PL_bufptr == PL_bufend)
2171             return sublex_done();
2172         PL_expect = XTERM;
2173         PL_lex_dojoin = (*PL_bufptr == '@');
2174         PL_lex_state = LEX_INTERPNORMAL;
2175         if (PL_lex_dojoin) {
2176             PL_nextval[PL_nexttoke].ival = 0;
2177             force_next(',');
2178 #ifdef USE_THREADS
2179             PL_nextval[PL_nexttoke].opval = newOP(OP_THREADSV, 0);
2180             PL_nextval[PL_nexttoke].opval->op_targ = find_threadsv("\"");
2181             force_next(PRIVATEREF);
2182 #else
2183             force_ident("\"", '$');
2184 #endif /* USE_THREADS */
2185             PL_nextval[PL_nexttoke].ival = 0;
2186             force_next('$');
2187             PL_nextval[PL_nexttoke].ival = 0;
2188             force_next('(');
2189             PL_nextval[PL_nexttoke].ival = OP_JOIN;     /* emulate join($", ...) */
2190             force_next(FUNC);
2191         }
2192         if (PL_lex_starts++) {
2193             s = PL_bufptr;
2194             Aop(OP_CONCAT);
2195         }
2196         return yylex();
2197
2198     case LEX_INTERPENDMAYBE:
2199         if (intuit_more(PL_bufptr)) {
2200             PL_lex_state = LEX_INTERPNORMAL;    /* false alarm, more expr */
2201             break;
2202         }
2203         /* FALL THROUGH */
2204
2205     case LEX_INTERPEND:
2206         if (PL_lex_dojoin) {
2207             PL_lex_dojoin = FALSE;
2208             PL_lex_state = LEX_INTERPCONCAT;
2209             return ')';
2210         }
2211         if (PL_lex_inwhat == OP_SUBST && PL_linestr == PL_lex_repl
2212             && SvEVALED(PL_lex_repl))
2213         {
2214             if (PL_bufptr != PL_bufend)
2215                 Perl_croak(aTHX_ "Bad evalled substitution pattern");
2216             PL_lex_repl = Nullsv;
2217         }
2218         /* FALLTHROUGH */
2219     case LEX_INTERPCONCAT:
2220 #ifdef DEBUGGING
2221         if (PL_lex_brackets)
2222             Perl_croak(aTHX_ "panic: INTERPCONCAT");
2223 #endif
2224         if (PL_bufptr == PL_bufend)
2225             return sublex_done();
2226
2227         if (SvIVX(PL_linestr) == '\'') {
2228             SV *sv = newSVsv(PL_linestr);
2229             if (!PL_lex_inpat)
2230                 sv = tokeq(sv);
2231             else if ( PL_hints & HINT_NEW_RE )
2232                 sv = new_constant(NULL, 0, "qr", sv, sv, "q");
2233             yylval.opval = (OP*)newSVOP(OP_CONST, 0, sv);
2234             s = PL_bufend;
2235         }
2236         else {
2237             s = scan_const(PL_bufptr);
2238             if (*s == '\\')
2239                 PL_lex_state = LEX_INTERPCASEMOD;
2240             else
2241                 PL_lex_state = LEX_INTERPSTART;
2242         }
2243
2244         if (s != PL_bufptr) {
2245             PL_nextval[PL_nexttoke] = yylval;
2246             PL_expect = XTERM;
2247             force_next(THING);
2248             if (PL_lex_starts++)
2249                 Aop(OP_CONCAT);
2250             else {
2251                 PL_bufptr = s;
2252                 return yylex();
2253             }
2254         }
2255
2256         return yylex();
2257     case LEX_FORMLINE:
2258         PL_lex_state = LEX_NORMAL;
2259         s = scan_formline(PL_bufptr);
2260         if (!PL_lex_formbrack)
2261             goto rightbracket;
2262         OPERATOR(';');
2263     }
2264
2265     s = PL_bufptr;
2266     PL_oldoldbufptr = PL_oldbufptr;
2267     PL_oldbufptr = s;
2268     DEBUG_p( {
2269         PerlIO_printf(Perl_debug_log, "### Tokener expecting %s at %s\n",
2270                       exp_name[PL_expect], s);
2271     } )
2272
2273   retry:
2274     switch (*s) {
2275     default:
2276         if (isIDFIRST_lazy(s))
2277             goto keylookup;
2278         Perl_croak(aTHX_ "Unrecognized character \\x%02X", *s & 255);
2279     case 4:
2280     case 26:
2281         goto fake_eof;                  /* emulate EOF on ^D or ^Z */
2282     case 0:
2283         if (!PL_rsfp) {
2284             PL_last_uni = 0;
2285             PL_last_lop = 0;
2286             if (PL_lex_brackets)
2287                 yyerror("Missing right curly or square bracket");
2288             TOKEN(0);
2289         }
2290         if (s++ < PL_bufend)
2291             goto retry;                 /* ignore stray nulls */
2292         PL_last_uni = 0;
2293         PL_last_lop = 0;
2294         if (!PL_in_eval && !PL_preambled) {
2295             PL_preambled = TRUE;
2296             sv_setpv(PL_linestr,incl_perldb());
2297             if (SvCUR(PL_linestr))
2298                 sv_catpv(PL_linestr,";");
2299             if (PL_preambleav){
2300                 while(AvFILLp(PL_preambleav) >= 0) {
2301                     SV *tmpsv = av_shift(PL_preambleav);
2302                     sv_catsv(PL_linestr, tmpsv);
2303                     sv_catpv(PL_linestr, ";");
2304                     sv_free(tmpsv);
2305                 }
2306                 sv_free((SV*)PL_preambleav);
2307                 PL_preambleav = NULL;
2308             }
2309             if (PL_minus_n || PL_minus_p) {
2310                 sv_catpv(PL_linestr, "LINE: while (<>) {");
2311                 if (PL_minus_l)
2312                     sv_catpv(PL_linestr,"chomp;");
2313                 if (PL_minus_a) {
2314                     GV* gv = gv_fetchpv("::F", TRUE, SVt_PVAV);
2315                     if (gv)
2316                         GvIMPORTED_AV_on(gv);
2317                     if (PL_minus_F) {
2318                         if (strchr("/'\"", *PL_splitstr)
2319                               && strchr(PL_splitstr + 1, *PL_splitstr))
2320                             Perl_sv_catpvf(aTHX_ PL_linestr, "@F=split(%s);", PL_splitstr);
2321                         else {
2322                             char delim;
2323                             s = "'~#\200\1'"; /* surely one char is unused...*/
2324                             while (s[1] && strchr(PL_splitstr, *s))  s++;
2325                             delim = *s;
2326                             Perl_sv_catpvf(aTHX_ PL_linestr, "@F=split(%s%c",
2327                                       "q" + (delim == '\''), delim);
2328                             for (s = PL_splitstr; *s; s++) {
2329                                 if (*s == '\\')
2330                                     sv_catpvn(PL_linestr, "\\", 1);
2331                                 sv_catpvn(PL_linestr, s, 1);
2332                             }
2333                             Perl_sv_catpvf(aTHX_ PL_linestr, "%c);", delim);
2334                         }
2335                     }
2336                     else
2337                         sv_catpv(PL_linestr,"@F=split(' ');");
2338                 }
2339             }
2340             sv_catpv(PL_linestr, "\n");
2341             PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = SvPVX(PL_linestr);
2342             PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
2343             if (PERLDB_LINE && PL_curstash != PL_debstash) {
2344                 SV *sv = NEWSV(85,0);
2345
2346                 sv_upgrade(sv, SVt_PVMG);
2347                 sv_setsv(sv,PL_linestr);
2348                 av_store(GvAV(PL_curcop->cop_filegv),(I32)PL_curcop->cop_line,sv);
2349             }
2350             goto retry;
2351         }
2352         do {
2353             if ((s = filter_gets(PL_linestr, PL_rsfp, 0)) == Nullch) {
2354               fake_eof:
2355                 if (PL_rsfp) {
2356                     if (PL_preprocess && !PL_in_eval)
2357                         (void)PerlProc_pclose(PL_rsfp);
2358                     else if ((PerlIO *)PL_rsfp == PerlIO_stdin())
2359                         PerlIO_clearerr(PL_rsfp);
2360                     else
2361                         (void)PerlIO_close(PL_rsfp);
2362                     PL_rsfp = Nullfp;
2363                     PL_doextract = FALSE;
2364                 }
2365                 if (!PL_in_eval && (PL_minus_n || PL_minus_p)) {
2366                     sv_setpv(PL_linestr,PL_minus_p ? ";}continue{print" : "");
2367                     sv_catpv(PL_linestr,";}");
2368                     PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = SvPVX(PL_linestr);
2369                     PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
2370                     PL_minus_n = PL_minus_p = 0;
2371                     goto retry;
2372                 }
2373                 PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = SvPVX(PL_linestr);
2374                 sv_setpv(PL_linestr,"");
2375                 TOKEN(';');     /* not infinite loop because rsfp is NULL now */
2376             }
2377             if (PL_doextract) {
2378                 if (*s == '#' && s[1] == '!' && instr(s,"perl"))
2379                     PL_doextract = FALSE;
2380
2381                 /* Incest with pod. */
2382                 if (*s == '=' && strnEQ(s, "=cut", 4)) {
2383                     sv_setpv(PL_linestr, "");
2384                     PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = SvPVX(PL_linestr);
2385                     PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
2386                     PL_doextract = FALSE;
2387                 }
2388             }
2389             incline(s);
2390         } while (PL_doextract);
2391         PL_oldoldbufptr = PL_oldbufptr = PL_bufptr = PL_linestart = s;
2392         if (PERLDB_LINE && PL_curstash != PL_debstash) {
2393             SV *sv = NEWSV(85,0);
2394
2395             sv_upgrade(sv, SVt_PVMG);
2396             sv_setsv(sv,PL_linestr);
2397             av_store(GvAV(PL_curcop->cop_filegv),(I32)PL_curcop->cop_line,sv);
2398         }
2399         PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
2400         if (PL_curcop->cop_line == 1) {
2401             while (s < PL_bufend && isSPACE(*s))
2402                 s++;
2403             if (*s == ':' && s[1] != ':') /* for csh execing sh scripts */
2404                 s++;
2405             d = Nullch;
2406             if (!PL_in_eval) {
2407                 if (*s == '#' && *(s+1) == '!')
2408                     d = s + 2;
2409 #ifdef ALTERNATE_SHEBANG
2410                 else {
2411                     static char as[] = ALTERNATE_SHEBANG;
2412                     if (*s == as[0] && strnEQ(s, as, sizeof(as) - 1))
2413                         d = s + (sizeof(as) - 1);
2414                 }
2415 #endif /* ALTERNATE_SHEBANG */
2416             }
2417             if (d) {
2418                 char *ipath;
2419                 char *ipathend;
2420
2421                 while (isSPACE(*d))
2422                     d++;
2423                 ipath = d;
2424                 while (*d && !isSPACE(*d))
2425                     d++;
2426                 ipathend = d;
2427
2428 #ifdef ARG_ZERO_IS_SCRIPT
2429                 if (ipathend > ipath) {
2430                     /*
2431                      * HP-UX (at least) sets argv[0] to the script name,
2432                      * which makes $^X incorrect.  And Digital UNIX and Linux,
2433                      * at least, set argv[0] to the basename of the Perl
2434                      * interpreter. So, having found "#!", we'll set it right.
2435                      */
2436                     SV *x = GvSV(gv_fetchpv("\030", TRUE, SVt_PV));
2437                     assert(SvPOK(x) || SvGMAGICAL(x));
2438                     if (sv_eq(x, GvSV(PL_curcop->cop_filegv))) {
2439                         sv_setpvn(x, ipath, ipathend - ipath);
2440                         SvSETMAGIC(x);
2441                     }
2442                     TAINT_NOT;  /* $^X is always tainted, but that's OK */
2443                 }
2444 #endif /* ARG_ZERO_IS_SCRIPT */
2445
2446                 /*
2447                  * Look for options.
2448                  */
2449                 d = instr(s,"perl -");
2450                 if (!d) {
2451                     d = instr(s,"perl");
2452 #if defined(DOSISH)
2453                     /* avoid getting into infinite loops when shebang
2454                      * line contains "Perl" rather than "perl" */
2455                     if (!d) {
2456                         for (d = ipathend-4; d >= ipath; --d) {
2457                             if ((*d == 'p' || *d == 'P')
2458                                 && !ibcmp(d, "perl", 4))
2459                             {
2460                                 break;
2461                             }
2462                         }
2463                         if (d < ipath)
2464                             d = Nullch;
2465                     }
2466 #endif
2467                 }
2468 #ifdef ALTERNATE_SHEBANG
2469                 /*
2470                  * If the ALTERNATE_SHEBANG on this system starts with a
2471                  * character that can be part of a Perl expression, then if
2472                  * we see it but not "perl", we're probably looking at the
2473                  * start of Perl code, not a request to hand off to some
2474                  * other interpreter.  Similarly, if "perl" is there, but
2475                  * not in the first 'word' of the line, we assume the line
2476                  * contains the start of the Perl program.
2477                  */
2478                 if (d && *s != '#') {
2479                     char *c = ipath;
2480                     while (*c && !strchr("; \t\r\n\f\v#", *c))
2481                         c++;
2482                     if (c < d)
2483                         d = Nullch;     /* "perl" not in first word; ignore */
2484                     else
2485                         *s = '#';       /* Don't try to parse shebang line */
2486                 }
2487 #endif /* ALTERNATE_SHEBANG */
2488                 if (!d &&
2489                     *s == '#' &&
2490                     ipathend > ipath &&
2491                     !PL_minus_c &&
2492                     !instr(s,"indir") &&
2493                     instr(PL_origargv[0],"perl"))
2494                 {
2495                     char **newargv;
2496
2497                     *ipathend = '\0';
2498                     s = ipathend + 1;
2499                     while (s < PL_bufend && isSPACE(*s))
2500                         s++;
2501                     if (s < PL_bufend) {
2502                         Newz(899,newargv,PL_origargc+3,char*);
2503                         newargv[1] = s;
2504                         while (s < PL_bufend && !isSPACE(*s))
2505                             s++;
2506                         *s = '\0';
2507                         Copy(PL_origargv+1, newargv+2, PL_origargc+1, char*);
2508                     }
2509                     else
2510                         newargv = PL_origargv;
2511                     newargv[0] = ipath;
2512                     PerlProc_execv(ipath, newargv);
2513                     Perl_croak(aTHX_ "Can't exec %s", ipath);
2514                 }
2515                 if (d) {
2516                     U32 oldpdb = PL_perldb;
2517                     bool oldn = PL_minus_n;
2518                     bool oldp = PL_minus_p;
2519
2520                     while (*d && !isSPACE(*d)) d++;
2521                     while (*d == ' ' || *d == '\t') d++;
2522
2523                     if (*d++ == '-') {
2524                         do {
2525                             if (*d == 'M' || *d == 'm') {
2526                                 char *m = d;
2527                                 while (*d && !isSPACE(*d)) d++;
2528                                 Perl_croak(aTHX_ "Too late for \"-%.*s\" option",
2529                                       (int)(d - m), m);
2530                             }
2531                             d = moreswitches(d);
2532                         } while (d);
2533                         if (PERLDB_LINE && !oldpdb ||
2534                             ( PL_minus_n || PL_minus_p ) && !(oldn || oldp) )
2535                               /* if we have already added "LINE: while (<>) {",
2536                                  we must not do it again */
2537                         {
2538                             sv_setpv(PL_linestr, "");
2539                             PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = SvPVX(PL_linestr);
2540                             PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
2541                             PL_preambled = FALSE;
2542                             if (PERLDB_LINE)
2543                                 (void)gv_fetchfile(PL_origfilename);
2544                             goto retry;
2545                         }
2546                     }
2547                 }
2548             }
2549         }
2550         if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) {
2551             PL_bufptr = s;
2552             PL_lex_state = LEX_FORMLINE;
2553             return yylex();
2554         }
2555         goto retry;
2556     case '\r':
2557 #ifdef PERL_STRICT_CR
2558         Perl_warn(aTHX_ "Illegal character \\%03o (carriage return)", '\r');
2559         Perl_croak(aTHX_ 
2560       "(Maybe you didn't strip carriage returns after a network transfer?)\n");
2561 #endif
2562     case ' ': case '\t': case '\f': case 013:
2563         s++;
2564         goto retry;
2565     case '#':
2566     case '\n':
2567         if (PL_lex_state != LEX_NORMAL || (PL_in_eval && !PL_rsfp)) {
2568             d = PL_bufend;
2569             while (s < d && *s != '\n')
2570                 s++;
2571             if (s < d)
2572                 s++;
2573             incline(s);
2574             if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) {
2575                 PL_bufptr = s;
2576                 PL_lex_state = LEX_FORMLINE;
2577                 return yylex();
2578             }
2579         }
2580         else {
2581             *s = '\0';
2582             PL_bufend = s;
2583         }
2584         goto retry;
2585     case '-':
2586         if (s[1] && isALPHA(s[1]) && !isALNUM(s[2])) {
2587             s++;
2588             PL_bufptr = s;
2589             tmp = *s++;
2590
2591             while (s < PL_bufend && (*s == ' ' || *s == '\t'))
2592                 s++;
2593
2594             if (strnEQ(s,"=>",2)) {
2595                 s = force_word(PL_bufptr,WORD,FALSE,FALSE,FALSE);
2596                 OPERATOR('-');          /* unary minus */
2597             }
2598             PL_last_uni = PL_oldbufptr;
2599             PL_last_lop_op = OP_FTEREAD;        /* good enough */
2600             switch (tmp) {
2601             case 'r': FTST(OP_FTEREAD);
2602             case 'w': FTST(OP_FTEWRITE);
2603             case 'x': FTST(OP_FTEEXEC);
2604             case 'o': FTST(OP_FTEOWNED);
2605             case 'R': FTST(OP_FTRREAD);
2606             case 'W': FTST(OP_FTRWRITE);
2607             case 'X': FTST(OP_FTREXEC);
2608             case 'O': FTST(OP_FTROWNED);
2609             case 'e': FTST(OP_FTIS);
2610             case 'z': FTST(OP_FTZERO);
2611             case 's': FTST(OP_FTSIZE);
2612             case 'f': FTST(OP_FTFILE);
2613             case 'd': FTST(OP_FTDIR);
2614             case 'l': FTST(OP_FTLINK);
2615             case 'p': FTST(OP_FTPIPE);
2616             case 'S': FTST(OP_FTSOCK);
2617             case 'u': FTST(OP_FTSUID);
2618             case 'g': FTST(OP_FTSGID);
2619             case 'k': FTST(OP_FTSVTX);
2620             case 'b': FTST(OP_FTBLK);
2621             case 'c': FTST(OP_FTCHR);
2622             case 't': FTST(OP_FTTTY);
2623             case 'T': FTST(OP_FTTEXT);
2624             case 'B': FTST(OP_FTBINARY);
2625             case 'M': gv_fetchpv("\024",TRUE, SVt_PV); FTST(OP_FTMTIME);
2626             case 'A': gv_fetchpv("\024",TRUE, SVt_PV); FTST(OP_FTATIME);
2627             case 'C': gv_fetchpv("\024",TRUE, SVt_PV); FTST(OP_FTCTIME);
2628             default:
2629                 Perl_croak(aTHX_ "Unrecognized file test: -%c", (int)tmp);
2630                 break;
2631             }
2632         }
2633         tmp = *s++;
2634         if (*s == tmp) {
2635             s++;
2636             if (PL_expect == XOPERATOR)
2637                 TERM(POSTDEC);
2638             else
2639                 OPERATOR(PREDEC);
2640         }
2641         else if (*s == '>') {
2642             s++;
2643             s = skipspace(s);
2644             if (isIDFIRST_lazy(s)) {
2645                 s = force_word(s,METHOD,FALSE,TRUE,FALSE);
2646                 TOKEN(ARROW);
2647             }
2648             else if (*s == '$')
2649                 OPERATOR(ARROW);
2650             else
2651                 TERM(ARROW);
2652         }
2653         if (PL_expect == XOPERATOR)
2654             Aop(OP_SUBTRACT);
2655         else {
2656             if (isSPACE(*s) || !isSPACE(*PL_bufptr))
2657                 check_uni();
2658             OPERATOR('-');              /* unary minus */
2659         }
2660
2661     case '+':
2662         tmp = *s++;
2663         if (*s == tmp) {
2664             s++;
2665             if (PL_expect == XOPERATOR)
2666                 TERM(POSTINC);
2667             else
2668                 OPERATOR(PREINC);
2669         }
2670         if (PL_expect == XOPERATOR)
2671             Aop(OP_ADD);
2672         else {
2673             if (isSPACE(*s) || !isSPACE(*PL_bufptr))
2674                 check_uni();
2675             OPERATOR('+');
2676         }
2677
2678     case '*':
2679         if (PL_expect != XOPERATOR) {
2680             s = scan_ident(s, PL_bufend, PL_tokenbuf, sizeof PL_tokenbuf, TRUE);
2681             PL_expect = XOPERATOR;
2682             force_ident(PL_tokenbuf, '*');
2683             if (!*PL_tokenbuf)
2684                 PREREF('*');
2685             TERM('*');
2686         }
2687         s++;
2688         if (*s == '*') {
2689             s++;
2690             PWop(OP_POW);
2691         }
2692         Mop(OP_MULTIPLY);
2693
2694     case '%':
2695         if (PL_expect == XOPERATOR) {
2696             ++s;
2697             Mop(OP_MODULO);
2698         }
2699         PL_tokenbuf[0] = '%';
2700         s = scan_ident(s, PL_bufend, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1, TRUE);
2701         if (!PL_tokenbuf[1]) {
2702             if (s == PL_bufend)
2703                 yyerror("Final % should be \\% or %name");
2704             PREREF('%');
2705         }
2706         PL_pending_ident = '%';
2707         TERM('%');
2708
2709     case '^':
2710         s++;
2711         BOop(OP_BIT_XOR);
2712     case '[':
2713         PL_lex_brackets++;
2714         /* FALL THROUGH */
2715     case '~':
2716     case ',':
2717         tmp = *s++;
2718         OPERATOR(tmp);
2719     case ':':
2720         if (s[1] == ':') {
2721             len = 0;
2722             goto just_a_word;
2723         }
2724         s++;
2725         switch (PL_expect) {
2726             OP *attrs;
2727         case XOPERATOR:
2728             if (!PL_in_my || PL_lex_state != LEX_NORMAL)
2729                 break;
2730             PL_bufptr = s;      /* update in case we back off */
2731             goto grabattrs;
2732         case XATTRBLOCK:
2733             PL_expect = XBLOCK;
2734             goto grabattrs;
2735         case XATTRTERM:
2736             PL_expect = XTERMBLOCK;
2737          grabattrs:
2738             s = skipspace(s);
2739             attrs = Nullop;
2740             while (isIDFIRST_lazy(s)) {
2741                 d = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE, &len);
2742                 if (*d == '(') {
2743                     d = scan_str(d,TRUE,TRUE);
2744                     if (!d) {
2745                         if (PL_lex_stuff) {
2746                             SvREFCNT_dec(PL_lex_stuff);
2747                             PL_lex_stuff = Nullsv;
2748                         }
2749                         /* MUST advance bufptr here to avoid bogus
2750                            "at end of line" context messages from yyerror().
2751                          */
2752                         PL_bufptr = s + len;
2753                         yyerror("Unterminated attribute parameter in attribute list");
2754                         if (attrs)
2755                             op_free(attrs);
2756                         return 0;       /* EOF indicator */
2757                     }
2758                 }
2759                 if (PL_lex_stuff) {
2760                     SV *sv = newSVpvn(s, len);
2761                     sv_catsv(sv, PL_lex_stuff);
2762                     attrs = append_elem(OP_LIST, attrs,
2763                                         newSVOP(OP_CONST, 0, sv));
2764                     SvREFCNT_dec(PL_lex_stuff);
2765                     PL_lex_stuff = Nullsv;
2766                 }
2767                 else {
2768                     attrs = append_elem(OP_LIST, attrs,
2769                                         newSVOP(OP_CONST, 0,
2770                                                 newSVpvn(s, len)));
2771                 }
2772                 s = skipspace(d);
2773                 while (*s == ',')
2774                     s = skipspace(s+1);
2775             }
2776             tmp = (PL_expect == XOPERATOR ? '=' : '{'); /*'}' for vi */
2777             if (*s != ';' && *s != tmp) {
2778                 char q = ((*s == '\'') ? '"' : '\'');
2779                 /* If here for an expression, and parsed no attrs, back off. */
2780                 if (tmp == '=' && !attrs) {
2781                     s = PL_bufptr;
2782                     break;
2783                 }
2784                 /* MUST advance bufptr here to avoid bogus "at end of line"
2785                    context messages from yyerror().
2786                  */
2787                 PL_bufptr = s;
2788                 if (!*s)
2789                     yyerror("Unterminated attribute list");
2790                 else
2791                     yyerror(Perl_form(aTHX_ "Invalid separator character %c%c%c in attribute list",
2792                                       q, *s, q));
2793                 if (attrs)
2794                     op_free(attrs);
2795                 OPERATOR(':');
2796             }
2797             if (attrs) {
2798                 PL_nextval[PL_nexttoke].opval = attrs;
2799                 force_next(THING);
2800             }
2801             TOKEN(COLONATTR);
2802         }
2803         OPERATOR(':');
2804     case '(':
2805         s++;
2806         if (PL_last_lop == PL_oldoldbufptr || PL_last_uni == PL_oldoldbufptr)
2807             PL_oldbufptr = PL_oldoldbufptr;             /* allow print(STDOUT 123) */
2808         else
2809             PL_expect = XTERM;
2810         TOKEN('(');
2811     case ';':
2812         if (PL_curcop->cop_line < PL_copline)
2813             PL_copline = PL_curcop->cop_line;
2814         tmp = *s++;
2815         OPERATOR(tmp);
2816     case ')':
2817         tmp = *s++;
2818         s = skipspace(s);
2819         if (*s == '{')
2820             PREBLOCK(tmp);
2821         TERM(tmp);
2822     case ']':
2823         s++;
2824         if (PL_lex_brackets <= 0)
2825             yyerror("Unmatched right square bracket");
2826         else
2827             --PL_lex_brackets;
2828         if (PL_lex_state == LEX_INTERPNORMAL) {
2829             if (PL_lex_brackets == 0) {
2830                 if (*s != '[' && *s != '{' && (*s != '-' || s[1] != '>'))
2831                     PL_lex_state = LEX_INTERPEND;
2832             }
2833         }
2834         TERM(']');
2835     case '{':
2836       leftbracket:
2837         s++;
2838         if (PL_lex_brackets > 100) {
2839             char* newlb = Renew(PL_lex_brackstack, PL_lex_brackets + 1, char);
2840             if (newlb != PL_lex_brackstack) {
2841                 SAVEFREEPV(newlb);
2842                 PL_lex_brackstack = newlb;
2843             }
2844         }
2845         switch (PL_expect) {
2846         case XTERM:
2847             if (PL_lex_formbrack) {
2848                 s--;
2849                 PRETERMBLOCK(DO);
2850             }
2851             if (PL_oldoldbufptr == PL_last_lop)
2852                 PL_lex_brackstack[PL_lex_brackets++] = XTERM;
2853             else
2854                 PL_lex_brackstack[PL_lex_brackets++] = XOPERATOR;
2855             OPERATOR(HASHBRACK);
2856         case XOPERATOR:
2857             while (s < PL_bufend && (*s == ' ' || *s == '\t'))
2858                 s++;
2859             d = s;
2860             PL_tokenbuf[0] = '\0';
2861             if (d < PL_bufend && *d == '-') {
2862                 PL_tokenbuf[0] = '-';
2863                 d++;
2864                 while (d < PL_bufend && (*d == ' ' || *d == '\t'))
2865                     d++;
2866             }
2867             if (d < PL_bufend && isIDFIRST_lazy(d)) {
2868                 d = scan_word(d, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1,
2869                               FALSE, &len);
2870                 while (d < PL_bufend && (*d == ' ' || *d == '\t'))
2871                     d++;
2872                 if (*d == '}') {
2873                     char minus = (PL_tokenbuf[0] == '-');
2874                     s = force_word(s + minus, WORD, FALSE, TRUE, FALSE);
2875                     if (minus)
2876                         force_next('-');
2877                 }
2878             }
2879             /* FALL THROUGH */
2880         case XATTRBLOCK:
2881         case XBLOCK:
2882             PL_lex_brackstack[PL_lex_brackets++] = XSTATE;
2883             PL_expect = XSTATE;
2884             break;
2885         case XATTRTERM:
2886         case XTERMBLOCK:
2887             PL_lex_brackstack[PL_lex_brackets++] = XOPERATOR;
2888             PL_expect = XSTATE;
2889             break;
2890         default: {
2891                 char *t;
2892                 if (PL_oldoldbufptr == PL_last_lop)
2893                     PL_lex_brackstack[PL_lex_brackets++] = XTERM;
2894                 else
2895                     PL_lex_brackstack[PL_lex_brackets++] = XOPERATOR;
2896                 s = skipspace(s);
2897                 if (*s == '}')
2898                     OPERATOR(HASHBRACK);
2899                 /* This hack serves to disambiguate a pair of curlies
2900                  * as being a block or an anon hash.  Normally, expectation
2901                  * determines that, but in cases where we're not in a
2902                  * position to expect anything in particular (like inside
2903                  * eval"") we have to resolve the ambiguity.  This code
2904                  * covers the case where the first term in the curlies is a
2905                  * quoted string.  Most other cases need to be explicitly
2906                  * disambiguated by prepending a `+' before the opening
2907                  * curly in order to force resolution as an anon hash.
2908                  *
2909                  * XXX should probably propagate the outer expectation
2910                  * into eval"" to rely less on this hack, but that could
2911                  * potentially break current behavior of eval"".
2912                  * GSAR 97-07-21
2913                  */
2914                 t = s;
2915                 if (*s == '\'' || *s == '"' || *s == '`') {
2916                     /* common case: get past first string, handling escapes */
2917                     for (t++; t < PL_bufend && *t != *s;)
2918                         if (*t++ == '\\' && (*t == '\\' || *t == *s))
2919                             t++;
2920                     t++;
2921                 }
2922                 else if (*s == 'q') {
2923                     if (++t < PL_bufend
2924                         && (!isALNUM(*t)
2925                             || ((*t == 'q' || *t == 'x') && ++t < PL_bufend
2926                                 && !isALNUM(*t)))) {
2927                         char *tmps;
2928                         char open, close, term;
2929                         I32 brackets = 1;
2930
2931                         while (t < PL_bufend && isSPACE(*t))
2932                             t++;
2933                         term = *t;
2934                         open = term;
2935                         if (term && (tmps = strchr("([{< )]}> )]}>",term)))
2936                             term = tmps[5];
2937                         close = term;
2938                         if (open == close)
2939                             for (t++; t < PL_bufend; t++) {
2940                                 if (*t == '\\' && t+1 < PL_bufend && open != '\\')
2941                                     t++;
2942                                 else if (*t == open)
2943                                     break;
2944                             }
2945                         else
2946                             for (t++; t < PL_bufend; t++) {
2947                                 if (*t == '\\' && t+1 < PL_bufend)
2948                                     t++;
2949                                 else if (*t == close && --brackets <= 0)
2950                                     break;
2951                                 else if (*t == open)
2952                                     brackets++;
2953                             }
2954                     }
2955                     t++;
2956                 }
2957                 else if (isIDFIRST_lazy(s)) {
2958                     for (t++; t < PL_bufend && isALNUM_lazy(t); t++) ;
2959                 }
2960                 while (t < PL_bufend && isSPACE(*t))
2961                     t++;
2962                 /* if comma follows first term, call it an anon hash */
2963                 /* XXX it could be a comma expression with loop modifiers */
2964                 if (t < PL_bufend && ((*t == ',' && (*s == 'q' || !isLOWER(*s)))
2965                                    || (*t == '=' && t[1] == '>')))
2966                     OPERATOR(HASHBRACK);
2967                 if (PL_expect == XREF)
2968                     PL_expect = XTERM;
2969                 else {
2970                     PL_lex_brackstack[PL_lex_brackets-1] = XSTATE;
2971                     PL_expect = XSTATE;
2972                 }
2973             }
2974             break;
2975         }
2976         yylval.ival = PL_curcop->cop_line;
2977         if (isSPACE(*s) || *s == '#')
2978             PL_copline = NOLINE;   /* invalidate current command line number */
2979         TOKEN('{');
2980     case '}':
2981       rightbracket:
2982         s++;
2983         if (PL_lex_brackets <= 0)
2984             yyerror("Unmatched right curly bracket");
2985         else
2986             PL_expect = (expectation)PL_lex_brackstack[--PL_lex_brackets];
2987         if (PL_lex_brackets < PL_lex_formbrack)
2988             PL_lex_formbrack = 0;
2989         if (PL_lex_state == LEX_INTERPNORMAL) {
2990             if (PL_lex_brackets == 0) {
2991                 if (PL_lex_fakebrack) {
2992                     PL_lex_state = LEX_INTERPEND;
2993                     PL_bufptr = s;
2994                     return yylex();     /* ignore fake brackets */
2995                 }
2996                 if (*s == '-' && s[1] == '>')
2997                     PL_lex_state = LEX_INTERPENDMAYBE;
2998                 else if (*s != '[' && *s != '{')
2999                     PL_lex_state = LEX_INTERPEND;
3000             }
3001         }
3002         if (PL_lex_brackets < PL_lex_fakebrack) {
3003             PL_bufptr = s;
3004             PL_lex_fakebrack = 0;
3005             return yylex();             /* ignore fake brackets */
3006         }
3007         force_next('}');
3008         TOKEN(';');
3009     case '&':
3010         s++;
3011         tmp = *s++;
3012         if (tmp == '&')
3013             AOPERATOR(ANDAND);
3014         s--;
3015         if (PL_expect == XOPERATOR) {
3016             if (ckWARN(WARN_SEMICOLON) && isIDFIRST_lazy(s) && PL_bufptr == PL_linestart) {
3017                 PL_curcop->cop_line--;
3018                 Perl_warner(aTHX_ WARN_SEMICOLON, PL_warn_nosemi);
3019                 PL_curcop->cop_line++;
3020             }
3021             BAop(OP_BIT_AND);
3022         }
3023
3024         s = scan_ident(s - 1, PL_bufend, PL_tokenbuf, sizeof PL_tokenbuf, TRUE);
3025         if (*PL_tokenbuf) {
3026             PL_expect = XOPERATOR;
3027             force_ident(PL_tokenbuf, '&');
3028         }
3029         else
3030             PREREF('&');
3031         yylval.ival = (OPpENTERSUB_AMPER<<8);
3032         TERM('&');
3033
3034     case '|':
3035         s++;
3036         tmp = *s++;
3037         if (tmp == '|')
3038             AOPERATOR(OROR);
3039         s--;
3040         BOop(OP_BIT_OR);
3041     case '=':
3042         s++;
3043         tmp = *s++;
3044         if (tmp == '=')
3045             Eop(OP_EQ);
3046         if (tmp == '>')
3047             OPERATOR(',');
3048         if (tmp == '~')
3049             PMop(OP_MATCH);
3050         if (ckWARN(WARN_SYNTAX) && tmp && isSPACE(*s) && strchr("+-*/%.^&|<",tmp))
3051             Perl_warner(aTHX_ WARN_SYNTAX, "Reversed %c= operator",(int)tmp);
3052         s--;
3053         if (PL_expect == XSTATE && isALPHA(tmp) &&
3054                 (s == PL_linestart+1 || s[-2] == '\n') )
3055         {
3056             if (PL_in_eval && !PL_rsfp) {
3057                 d = PL_bufend;
3058                 while (s < d) {
3059                     if (*s++ == '\n') {
3060                         incline(s);
3061                         if (strnEQ(s,"=cut",4)) {
3062                             s = strchr(s,'\n');
3063                             if (s)
3064                                 s++;
3065                             else
3066                                 s = d;
3067                             incline(s);
3068                             goto retry;
3069                         }
3070                     }
3071                 }
3072                 goto retry;
3073             }
3074             s = PL_bufend;
3075             PL_doextract = TRUE;
3076             goto retry;
3077         }
3078         if (PL_lex_brackets < PL_lex_formbrack) {
3079             char *t;
3080 #ifdef PERL_STRICT_CR
3081             for (t = s; *t == ' ' || *t == '\t'; t++) ;
3082 #else
3083             for (t = s; *t == ' ' || *t == '\t' || *t == '\r'; t++) ;
3084 #endif
3085             if (*t == '\n' || *t == '#') {
3086                 s--;
3087                 PL_expect = XBLOCK;
3088                 goto leftbracket;
3089             }
3090         }
3091         yylval.ival = 0;
3092         OPERATOR(ASSIGNOP);
3093     case '!':
3094         s++;
3095         tmp = *s++;
3096         if (tmp == '=')
3097             Eop(OP_NE);
3098         if (tmp == '~')
3099             PMop(OP_NOT);
3100         s--;
3101         OPERATOR('!');
3102     case '<':
3103         if (PL_expect != XOPERATOR) {
3104             if (s[1] != '<' && !strchr(s,'>'))
3105                 check_uni();
3106             if (s[1] == '<')
3107                 s = scan_heredoc(s);
3108             else
3109                 s = scan_inputsymbol(s);
3110             TERM(sublex_start());
3111         }
3112         s++;
3113         tmp = *s++;
3114         if (tmp == '<')
3115             SHop(OP_LEFT_SHIFT);
3116         if (tmp == '=') {
3117             tmp = *s++;
3118             if (tmp == '>')
3119                 Eop(OP_NCMP);
3120             s--;
3121             Rop(OP_LE);
3122         }
3123         s--;
3124         Rop(OP_LT);
3125     case '>':
3126         s++;
3127         tmp = *s++;
3128         if (tmp == '>')
3129             SHop(OP_RIGHT_SHIFT);
3130         if (tmp == '=')
3131             Rop(OP_GE);
3132         s--;
3133         Rop(OP_GT);
3134
3135     case '$':
3136         CLINE;
3137
3138         if (PL_expect == XOPERATOR) {
3139             if (PL_lex_formbrack && PL_lex_brackets == PL_lex_formbrack) {
3140                 PL_expect = XTERM;
3141                 depcom();
3142                 return ','; /* grandfather non-comma-format format */
3143             }
3144         }
3145
3146         if (s[1] == '#' && (isIDFIRST_lazy(s+2) || strchr("{$:+-", s[2]))) {
3147             PL_tokenbuf[0] = '@';
3148             s = scan_ident(s + 1, PL_bufend, PL_tokenbuf + 1,
3149                            sizeof PL_tokenbuf - 1, FALSE);
3150             if (PL_expect == XOPERATOR)
3151                 no_op("Array length", s);
3152             if (!PL_tokenbuf[1])
3153                 PREREF(DOLSHARP);
3154             PL_expect = XOPERATOR;
3155             PL_pending_ident = '#';
3156             TOKEN(DOLSHARP);
3157         }
3158
3159         PL_tokenbuf[0] = '$';
3160         s = scan_ident(s, PL_bufend, PL_tokenbuf + 1,
3161                        sizeof PL_tokenbuf - 1, FALSE);
3162         if (PL_expect == XOPERATOR)
3163             no_op("Scalar", s);
3164         if (!PL_tokenbuf[1]) {
3165             if (s == PL_bufend)
3166                 yyerror("Final $ should be \\$ or $name");
3167             PREREF('$');
3168         }
3169
3170         /* This kludge not intended to be bulletproof. */
3171         if (PL_tokenbuf[1] == '[' && !PL_tokenbuf[2]) {
3172             yylval.opval = newSVOP(OP_CONST, 0,
3173                                    newSViv((IV)PL_compiling.cop_arybase));
3174             yylval.opval->op_private = OPpCONST_ARYBASE;
3175             TERM(THING);
3176         }
3177
3178         d = s;
3179         tmp = (I32)*s;
3180         if (PL_lex_state == LEX_NORMAL)
3181             s = skipspace(s);
3182
3183         if ((PL_expect != XREF || PL_oldoldbufptr == PL_last_lop) && intuit_more(s)) {
3184             char *t;
3185             if (*s == '[') {
3186                 PL_tokenbuf[0] = '@';
3187                 if (ckWARN(WARN_SYNTAX)) {
3188                     for(t = s + 1;
3189                         isSPACE(*t) || isALNUM_lazy(t) || *t == '$';
3190                         t++) ;
3191                     if (*t++ == ',') {
3192                         PL_bufptr = skipspace(PL_bufptr);
3193                         while (t < PL_bufend && *t != ']')
3194                             t++;
3195                         Perl_warner(aTHX_ WARN_SYNTAX,
3196                                 "Multidimensional syntax %.*s not supported",
3197                                 (t - PL_bufptr) + 1, PL_bufptr);
3198                     }
3199                 }
3200             }
3201             else if (*s == '{') {
3202                 PL_tokenbuf[0] = '%';
3203                 if (ckWARN(WARN_SYNTAX) && strEQ(PL_tokenbuf+1, "SIG") &&
3204                     (t = strchr(s, '}')) && (t = strchr(t, '=')))
3205                 {
3206                     char tmpbuf[sizeof PL_tokenbuf];
3207                     STRLEN len;
3208                     for (t++; isSPACE(*t); t++) ;
3209                     if (isIDFIRST_lazy(t)) {
3210                         t = scan_word(t, tmpbuf, sizeof tmpbuf, TRUE, &len);
3211                         for (; isSPACE(*t); t++) ;
3212                         if (*t == ';' && get_cv(tmpbuf, FALSE))
3213                             Perl_warner(aTHX_ WARN_SYNTAX,
3214                                 "You need to quote \"%s\"", tmpbuf);
3215                     }
3216                 }
3217             }
3218         }
3219
3220         PL_expect = XOPERATOR;
3221         if (PL_lex_state == LEX_NORMAL && isSPACE((char)tmp)) {
3222             bool islop = (PL_last_lop == PL_oldoldbufptr);
3223             if (!islop || PL_last_lop_op == OP_GREPSTART)
3224                 PL_expect = XOPERATOR;
3225             else if (strchr("$@\"'`q", *s))
3226                 PL_expect = XTERM;              /* e.g. print $fh "foo" */
3227             else if (strchr("&*<%", *s) && isIDFIRST_lazy(s+1))
3228                 PL_expect = XTERM;              /* e.g. print $fh &sub */
3229             else if (isIDFIRST_lazy(s)) {
3230                 char tmpbuf[sizeof PL_tokenbuf];
3231                 scan_word(s, tmpbuf, sizeof tmpbuf, TRUE, &len);
3232                 if (tmp = keyword(tmpbuf, len)) {
3233                     /* binary operators exclude handle interpretations */
3234                     switch (tmp) {
3235                     case -KEY_x:
3236                     case -KEY_eq:
3237                     case -KEY_ne:
3238                     case -KEY_gt:
3239                     case -KEY_lt:
3240                     case -KEY_ge:
3241                     case -KEY_le:
3242                     case -KEY_cmp:
3243                         break;
3244                     default:
3245                         PL_expect = XTERM;      /* e.g. print $fh length() */
3246                         break;
3247                     }
3248                 }
3249                 else {
3250                     GV *gv = gv_fetchpv(tmpbuf, FALSE, SVt_PVCV);
3251                     if (gv && GvCVu(gv))
3252                         PL_expect = XTERM;      /* e.g. print $fh subr() */
3253                 }
3254             }
3255             else if (isDIGIT(*s))
3256                 PL_expect = XTERM;              /* e.g. print $fh 3 */
3257             else if (*s == '.' && isDIGIT(s[1]))
3258                 PL_expect = XTERM;              /* e.g. print $fh .3 */
3259             else if (strchr("/?-+", *s) && !isSPACE(s[1]) && s[1] != '=')
3260                 PL_expect = XTERM;              /* e.g. print $fh -1 */
3261             else if (*s == '<' && s[1] == '<' && !isSPACE(s[2]) && s[2] != '=')
3262                 PL_expect = XTERM;              /* print $fh <<"EOF" */
3263         }
3264         PL_pending_ident = '$';
3265         TOKEN('$');
3266
3267     case '@':
3268         if (PL_expect == XOPERATOR)
3269             no_op("Array", s);
3270         PL_tokenbuf[0] = '@';
3271         s = scan_ident(s, PL_bufend, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1, FALSE);
3272         if (!PL_tokenbuf[1]) {
3273             if (s == PL_bufend)
3274                 yyerror("Final @ should be \\@ or @name");
3275             PREREF('@');
3276         }
3277         if (PL_lex_state == LEX_NORMAL)
3278             s = skipspace(s);
3279         if ((PL_expect != XREF || PL_oldoldbufptr == PL_last_lop) && intuit_more(s)) {
3280             if (*s == '{')
3281                 PL_tokenbuf[0] = '%';
3282
3283             /* Warn about @ where they meant $. */
3284             if (ckWARN(WARN_SYNTAX)) {
3285                 if (*s == '[' || *s == '{') {
3286                     char *t = s + 1;
3287                     while (*t && (isALNUM_lazy(t) || strchr(" \t$#+-'\"", *t)))
3288                         t++;
3289                     if (*t == '}' || *t == ']') {
3290                         t++;
3291                         PL_bufptr = skipspace(PL_bufptr);
3292                         Perl_warner(aTHX_ WARN_SYNTAX,
3293                             "Scalar value %.*s better written as $%.*s",
3294                             t-PL_bufptr, PL_bufptr, t-PL_bufptr-1, PL_bufptr+1);
3295                     }
3296                 }
3297             }
3298         }
3299         PL_pending_ident = '@';
3300         TERM('@');
3301
3302     case '/':                   /* may either be division or pattern */
3303     case '?':                   /* may either be conditional or pattern */
3304         if (PL_expect != XOPERATOR) {
3305             /* Disable warning on "study /blah/" */
3306             if (PL_oldoldbufptr == PL_last_uni 
3307                 && (*PL_last_uni != 's' || s - PL_last_uni < 5 
3308                     || memNE(PL_last_uni, "study", 5) || isALNUM_lazy(PL_last_uni+5)))
3309                 check_uni();
3310             s = scan_pat(s,OP_MATCH);
3311             TERM(sublex_start());
3312         }
3313         tmp = *s++;
3314         if (tmp == '/')
3315             Mop(OP_DIVIDE);
3316         OPERATOR(tmp);
3317
3318     case '.':
3319         if (PL_lex_formbrack && PL_lex_brackets == PL_lex_formbrack
3320 #ifdef PERL_STRICT_CR
3321             && s[1] == '\n'
3322 #else
3323             && (s[1] == '\n' || (s[1] == '\r' && s[2] == '\n'))
3324 #endif
3325             && (s == PL_linestart || s[-1] == '\n') )
3326         {
3327             PL_lex_formbrack = 0;
3328             PL_expect = XSTATE;
3329             goto rightbracket;
3330         }
3331         if (PL_expect == XOPERATOR || !isDIGIT(s[1])) {
3332             tmp = *s++;
3333             if (*s == tmp) {
3334                 s++;
3335                 if (*s == tmp) {
3336                     s++;
3337                     yylval.ival = OPf_SPECIAL;
3338                 }
3339                 else
3340                     yylval.ival = 0;
3341                 OPERATOR(DOTDOT);
3342             }
3343             if (PL_expect != XOPERATOR)
3344                 check_uni();
3345             Aop(OP_CONCAT);
3346         }
3347         /* FALL THROUGH */
3348     case '0': case '1': case '2': case '3': case '4':
3349     case '5': case '6': case '7': case '8': case '9':
3350         s = scan_num(s);
3351         if (PL_expect == XOPERATOR)
3352             no_op("Number",s);
3353         TERM(THING);
3354
3355     case '\'':
3356         s = scan_str(s,FALSE,FALSE);
3357         if (PL_expect == XOPERATOR) {
3358             if (PL_lex_formbrack && PL_lex_brackets == PL_lex_formbrack) {
3359                 PL_expect = XTERM;
3360                 depcom();
3361                 return ',';     /* grandfather non-comma-format format */
3362             }
3363             else
3364                 no_op("String",s);
3365         }
3366         if (!s)
3367             missingterm((char*)0);
3368         yylval.ival = OP_CONST;
3369         TERM(sublex_start());
3370
3371     case '"':
3372         s = scan_str(s,FALSE,FALSE);
3373         if (PL_expect == XOPERATOR) {
3374             if (PL_lex_formbrack && PL_lex_brackets == PL_lex_formbrack) {
3375                 PL_expect = XTERM;
3376                 depcom();
3377                 return ',';     /* grandfather non-comma-format format */
3378             }
3379             else
3380                 no_op("String",s);
3381         }
3382         if (!s)
3383             missingterm((char*)0);
3384         yylval.ival = OP_CONST;
3385         for (d = SvPV(PL_lex_stuff, len); len; len--, d++) {
3386             if (*d == '$' || *d == '@' || *d == '\\' || *d & 0x80) {
3387                 yylval.ival = OP_STRINGIFY;
3388                 break;
3389             }
3390         }
3391         TERM(sublex_start());
3392
3393     case '`':
3394         s = scan_str(s,FALSE,FALSE);
3395         if (PL_expect == XOPERATOR)
3396             no_op("Backticks",s);
3397         if (!s)
3398             missingterm((char*)0);
3399         yylval.ival = OP_BACKTICK;
3400         set_csh();
3401         TERM(sublex_start());
3402
3403     case '\\':
3404         s++;
3405         if (ckWARN(WARN_SYNTAX) && PL_lex_inwhat && isDIGIT(*s))
3406             Perl_warner(aTHX_ WARN_SYNTAX,"Can't use \\%c to mean $%c in expression",
3407                         *s, *s);
3408         if (PL_expect == XOPERATOR)
3409             no_op("Backslash",s);
3410         OPERATOR(REFGEN);
3411
3412     case 'x':
3413         if (isDIGIT(s[1]) && PL_expect == XOPERATOR) {
3414             s++;
3415             Mop(OP_REPEAT);
3416         }
3417         goto keylookup;
3418
3419     case '_':
3420     case 'a': case 'A':
3421     case 'b': case 'B':
3422     case 'c': case 'C':
3423     case 'd': case 'D':
3424     case 'e': case 'E':
3425     case 'f': case 'F':
3426     case 'g': case 'G':
3427     case 'h': case 'H':
3428     case 'i': case 'I':
3429     case 'j': case 'J':
3430     case 'k': case 'K':
3431     case 'l': case 'L':
3432     case 'm': case 'M':
3433     case 'n': case 'N':
3434     case 'o': case 'O':
3435     case 'p': case 'P':
3436     case 'q': case 'Q':
3437     case 'r': case 'R':
3438     case 's': case 'S':
3439     case 't': case 'T':
3440     case 'u': case 'U':
3441     case 'v': case 'V':
3442     case 'w': case 'W':
3443               case 'X':
3444     case 'y': case 'Y':
3445     case 'z': case 'Z':
3446
3447       keylookup: {
3448         STRLEN n_a;
3449         gv = Nullgv;
3450         gvp = 0;
3451
3452         PL_bufptr = s;
3453         s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE, &len);
3454
3455         /* Some keywords can be followed by any delimiter, including ':' */
3456         tmp = (len == 1 && strchr("msyq", PL_tokenbuf[0]) ||
3457                len == 2 && ((PL_tokenbuf[0] == 't' && PL_tokenbuf[1] == 'r') ||
3458                             (PL_tokenbuf[0] == 'q' &&
3459                              strchr("qwxr", PL_tokenbuf[1]))));
3460
3461         /* x::* is just a word, unless x is "CORE" */
3462         if (!tmp && *s == ':' && s[1] == ':' && strNE(PL_tokenbuf, "CORE"))
3463             goto just_a_word;
3464
3465         d = s;
3466         while (d < PL_bufend && isSPACE(*d))
3467                 d++;    /* no comments skipped here, or s### is misparsed */
3468
3469         /* Is this a label? */
3470         if (!tmp && PL_expect == XSTATE
3471               && d < PL_bufend && *d == ':' && *(d + 1) != ':') {
3472             s = d + 1;
3473             yylval.pval = savepv(PL_tokenbuf);
3474             CLINE;
3475             TOKEN(LABEL);
3476         }
3477
3478         /* Check for keywords */
3479         tmp = keyword(PL_tokenbuf, len);
3480
3481         /* Is this a word before a => operator? */
3482         if (strnEQ(d,"=>",2)) {
3483             CLINE;
3484             yylval.opval = (OP*)newSVOP(OP_CONST, 0, newSVpv(PL_tokenbuf,0));
3485             yylval.opval->op_private = OPpCONST_BARE;
3486             TERM(WORD);
3487         }
3488
3489         if (tmp < 0) {                  /* second-class keyword? */
3490             GV *ogv = Nullgv;   /* override (winner) */
3491             GV *hgv = Nullgv;   /* hidden (loser) */
3492             if (PL_expect != XOPERATOR && (*s != ':' || s[1] != ':')) {
3493                 CV *cv;
3494                 if ((gv = gv_fetchpv(PL_tokenbuf, FALSE, SVt_PVCV)) &&
3495                     (cv = GvCVu(gv)))
3496                 {
3497                     if (GvIMPORTED_CV(gv))
3498                         ogv = gv;
3499                     else if (! CvMETHOD(cv))
3500                         hgv = gv;
3501                 }
3502                 if (!ogv &&
3503                     (gvp = (GV**)hv_fetch(PL_globalstash,PL_tokenbuf,len,FALSE)) &&
3504                     (gv = *gvp) != (GV*)&PL_sv_undef &&
3505                     GvCVu(gv) && GvIMPORTED_CV(gv))
3506                 {
3507                     ogv = gv;
3508                 }
3509             }
3510             if (ogv) {
3511                 tmp = 0;                /* overridden by import or by GLOBAL */
3512             }
3513             else if (gv && !gvp
3514                      && -tmp==KEY_lock  /* XXX generalizable kludge */
3515                      && !hv_fetch(GvHVn(PL_incgv), "Thread.pm", 9, FALSE))
3516             {
3517                 tmp = 0;                /* any sub overrides "weak" keyword */
3518             }
3519             else {                      /* no override */
3520                 tmp = -tmp;
3521                 gv = Nullgv;
3522                 gvp = 0;
3523                 if (ckWARN(WARN_AMBIGUOUS) && hgv
3524                     && tmp != KEY_x && tmp != KEY_CORE) /* never ambiguous */
3525                     Perl_warner(aTHX_ WARN_AMBIGUOUS,
3526                         "Ambiguous call resolved as CORE::%s(), %s",
3527                          GvENAME(hgv), "qualify as such or use &");
3528             }
3529         }
3530
3531       reserved_word:
3532         switch (tmp) {
3533
3534         default:                        /* not a keyword */
3535           just_a_word: {
3536                 SV *sv;
3537                 char lastchar = (PL_bufptr == PL_oldoldbufptr ? 0 : PL_bufptr[-1]);
3538
3539                 /* Get the rest if it looks like a package qualifier */
3540
3541                 if (*s == '\'' || *s == ':' && s[1] == ':') {
3542                     STRLEN morelen;
3543                     s = scan_word(s, PL_tokenbuf + len, sizeof PL_tokenbuf - len,
3544                                   TRUE, &morelen);
3545                     if (!morelen)
3546                         Perl_croak(aTHX_ "Bad name after %s%s", PL_tokenbuf,
3547                                 *s == '\'' ? "'" : "::");
3548                     len += morelen;
3549                 }
3550
3551                 if (PL_expect == XOPERATOR) {
3552                     if (PL_bufptr == PL_linestart) {
3553                         PL_curcop->cop_line--;
3554                         Perl_warner(aTHX_ WARN_SEMICOLON, PL_warn_nosemi);
3555                         PL_curcop->cop_line++;
3556                     }
3557                     else
3558                         no_op("Bareword",s);
3559                 }
3560
3561                 /* Look for a subroutine with this name in current package,
3562                    unless name is "Foo::", in which case Foo is a bearword
3563                    (and a package name). */
3564
3565                 if (len > 2 &&
3566                     PL_tokenbuf[len - 2] == ':' && PL_tokenbuf[len - 1] == ':')
3567                 {
3568                     if (ckWARN(WARN_UNSAFE) && ! gv_fetchpv(PL_tokenbuf, FALSE, SVt_PVHV))
3569                         Perl_warner(aTHX_ WARN_UNSAFE, 
3570                             "Bareword \"%s\" refers to nonexistent package",
3571                              PL_tokenbuf);
3572                     len -= 2;
3573                     PL_tokenbuf[len] = '\0';
3574                     gv = Nullgv;
3575                     gvp = 0;
3576                 }
3577                 else {
3578                     len = 0;
3579                     if (!gv)
3580                         gv = gv_fetchpv(PL_tokenbuf, FALSE, SVt_PVCV);
3581                 }
3582
3583                 /* if we saw a global override before, get the right name */
3584
3585                 if (gvp) {
3586                     sv = newSVpvn("CORE::GLOBAL::",14);
3587                     sv_catpv(sv,PL_tokenbuf);
3588                 }
3589                 else
3590                     sv = newSVpv(PL_tokenbuf,0);
3591
3592                 /* Presume this is going to be a bareword of some sort. */
3593
3594                 CLINE;
3595                 yylval.opval = (OP*)newSVOP(OP_CONST, 0, sv);
3596                 yylval.opval->op_private = OPpCONST_BARE;
3597
3598                 /* And if "Foo::", then that's what it certainly is. */
3599
3600                 if (len)
3601                     goto safe_bareword;
3602
3603                 /* See if it's the indirect object for a list operator. */
3604
3605                 if (PL_oldoldbufptr &&
3606                     PL_oldoldbufptr < PL_bufptr &&
3607                     (PL_oldoldbufptr == PL_last_lop
3608                      || PL_oldoldbufptr == PL_last_uni) &&
3609                     /* NO SKIPSPACE BEFORE HERE! */
3610                     (PL_expect == XREF ||
3611                      ((PL_opargs[PL_last_lop_op] >> OASHIFT)& 7) == OA_FILEREF))
3612                 {
3613                     bool immediate_paren = *s == '(';
3614
3615                     /* (Now we can afford to cross potential line boundary.) */
3616                     s = skipspace(s);
3617
3618                     /* Two barewords in a row may indicate method call. */
3619
3620                     if ((isIDFIRST_lazy(s) || *s == '$') && (tmp=intuit_method(s,gv)))
3621                         return tmp;
3622
3623                     /* If not a declared subroutine, it's an indirect object. */
3624                     /* (But it's an indir obj regardless for sort.) */
3625
3626                     if ((PL_last_lop_op == OP_SORT ||
3627                          (!immediate_paren && (!gv || !GvCVu(gv)))) &&
3628                         (PL_last_lop_op != OP_MAPSTART &&
3629                          PL_last_lop_op != OP_GREPSTART))
3630                     {
3631                         PL_expect = (PL_last_lop == PL_oldoldbufptr) ? XTERM : XOPERATOR;
3632                         goto bareword;
3633                     }
3634                 }
3635
3636                 /* If followed by a paren, it's certainly a subroutine. */
3637
3638                 PL_expect = XOPERATOR;
3639                 s = skipspace(s);
3640                 if (*s == '(') {
3641                     CLINE;
3642                     if (gv && GvCVu(gv)) {
3643                         for (d = s + 1; *d == ' ' || *d == '\t'; d++) ;
3644                         if (*d == ')' && (sv = cv_const_sv(GvCV(gv)))) {
3645                             s = d + 1;
3646                             goto its_constant;
3647                         }
3648                     }
3649                     PL_nextval[PL_nexttoke].opval = yylval.opval;
3650                     PL_expect = XOPERATOR;
3651                     force_next(WORD);
3652                     yylval.ival = 0;
3653                     TOKEN('&');
3654                 }
3655
3656                 /* If followed by var or block, call it a method (unless sub) */
3657
3658                 if ((*s == '$' || *s == '{') && (!gv || !GvCVu(gv))) {
3659                     PL_last_lop = PL_oldbufptr;
3660                     PL_last_lop_op = OP_METHOD;
3661                     PREBLOCK(METHOD);
3662                 }
3663
3664                 /* If followed by a bareword, see if it looks like indir obj. */
3665
3666                 if ((isIDFIRST_lazy(s) || *s == '$') && (tmp = intuit_method(s,gv)))
3667                     return tmp;
3668
3669                 /* Not a method, so call it a subroutine (if defined) */
3670
3671                 if (gv && GvCVu(gv)) {
3672                     CV* cv;
3673                     if (lastchar == '-' && ckWARN_d(WARN_AMBIGUOUS))
3674                         Perl_warner(aTHX_ WARN_AMBIGUOUS,
3675                                 "Ambiguous use of -%s resolved as -&%s()",
3676                                 PL_tokenbuf, PL_tokenbuf);
3677                     /* Check for a constant sub */
3678                     cv = GvCV(gv);
3679                     if ((sv = cv_const_sv(cv))) {
3680                   its_constant:
3681                         SvREFCNT_dec(((SVOP*)yylval.opval)->op_sv);
3682                         ((SVOP*)yylval.opval)->op_sv = SvREFCNT_inc(sv);
3683                         yylval.opval->op_private = 0;
3684                         TOKEN(WORD);
3685                     }
3686
3687                     /* Resolve to GV now. */
3688                     op_free(yylval.opval);
3689                     yylval.opval = newCVREF(0, newGVOP(OP_GV, 0, gv));
3690                     yylval.opval->op_private |= OPpENTERSUB_NOPAREN;
3691                     PL_last_lop = PL_oldbufptr;
3692                     PL_last_lop_op = OP_ENTERSUB;
3693                     /* Is there a prototype? */
3694                     if (SvPOK(cv)) {
3695                         STRLEN len;
3696                         char *proto = SvPV((SV*)cv, len);
3697                         if (!len)
3698                             TERM(FUNC0SUB);
3699                         if (strEQ(proto, "$"))
3700                             OPERATOR(UNIOPSUB);
3701                         if (*proto == '&' && *s == '{') {
3702                             sv_setpv(PL_subname,"__ANON__");
3703                             PREBLOCK(LSTOPSUB);
3704                         }
3705                     }
3706                     PL_nextval[PL_nexttoke].opval = yylval.opval;
3707                     PL_expect = XTERM;
3708                     force_next(WORD);
3709                     TOKEN(NOAMP);
3710                 }
3711
3712                 /* Call it a bare word */
3713
3714                 if (PL_hints & HINT_STRICT_SUBS)
3715                     yylval.opval->op_private |= OPpCONST_STRICT;
3716                 else {
3717                 bareword:
3718                     if (ckWARN(WARN_RESERVED)) {
3719                         if (lastchar != '-') {
3720                             for (d = PL_tokenbuf; *d && isLOWER(*d); d++) ;
3721                             if (!*d)
3722                                 Perl_warner(aTHX_ WARN_RESERVED, PL_warn_reserved,
3723                                        PL_tokenbuf);
3724                         }
3725                     }
3726                 }
3727
3728             safe_bareword:
3729                 if (lastchar && strchr("*%&", lastchar) && ckWARN_d(WARN_AMBIGUOUS)) {
3730                     Perl_warner(aTHX_ WARN_AMBIGUOUS,
3731                         "Operator or semicolon missing before %c%s",
3732                         lastchar, PL_tokenbuf);
3733                     Perl_warner(aTHX_ WARN_AMBIGUOUS,
3734                         "Ambiguous use of %c resolved as operator %c",
3735                         lastchar, lastchar);
3736                 }
3737                 TOKEN(WORD);
3738             }
3739
3740         case KEY___FILE__:
3741             yylval.opval = (OP*)newSVOP(OP_CONST, 0,
3742                                         newSVsv(GvSV(PL_curcop->cop_filegv)));
3743             TERM(THING);
3744
3745         case KEY___LINE__:
3746             yylval.opval = (OP*)newSVOP(OP_CONST, 0,
3747                                     Perl_newSVpvf(aTHX_ "%"IVdf, (IV)PL_curcop->cop_line));
3748             TERM(THING);
3749
3750         case KEY___PACKAGE__:
3751             yylval.opval = (OP*)newSVOP(OP_CONST, 0,
3752                                         (PL_curstash
3753                                          ? newSVsv(PL_curstname)
3754                                          : &PL_sv_undef));
3755             TERM(THING);
3756
3757         case KEY___DATA__:
3758         case KEY___END__: {
3759             GV *gv;
3760
3761             /*SUPPRESS 560*/
3762             if (PL_rsfp && (!PL_in_eval || PL_tokenbuf[2] == 'D')) {
3763                 char *pname = "main";
3764                 if (PL_tokenbuf[2] == 'D')
3765                     pname = HvNAME(PL_curstash ? PL_curstash : PL_defstash);
3766                 gv = gv_fetchpv(Perl_form(aTHX_ "%s::DATA", pname), TRUE, SVt_PVIO);
3767                 GvMULTI_on(gv);
3768                 if (!GvIO(gv))
3769                     GvIOp(gv) = newIO();
3770                 IoIFP(GvIOp(gv)) = PL_rsfp;
3771 #if defined(HAS_FCNTL) && defined(F_SETFD)
3772                 {
3773                     int fd = PerlIO_fileno(PL_rsfp);
3774                     fcntl(fd,F_SETFD,fd >= 3);
3775                 }
3776 #endif
3777                 /* Mark this internal pseudo-handle as clean */
3778                 IoFLAGS(GvIOp(gv)) |= IOf_UNTAINT;
3779                 if (PL_preprocess)
3780                     IoTYPE(GvIOp(gv)) = '|';
3781                 else if ((PerlIO*)PL_rsfp == PerlIO_stdin())
3782                     IoTYPE(GvIOp(gv)) = '-';
3783                 else
3784                     IoTYPE(GvIOp(gv)) = '<';
3785                 PL_rsfp = Nullfp;
3786             }
3787             goto fake_eof;
3788         }
3789
3790         case KEY_AUTOLOAD:
3791         case KEY_DESTROY:
3792         case KEY_BEGIN:
3793         case KEY_END:
3794         case KEY_INIT:
3795             if (PL_expect == XSTATE) {
3796                 s = PL_bufptr;
3797                 goto really_sub;
3798             }
3799             goto just_a_word;
3800
3801         case KEY_CORE:
3802             if (*s == ':' && s[1] == ':') {
3803                 s += 2;
3804                 d = s;
3805                 s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE, &len);
3806                 tmp = keyword(PL_tokenbuf, len);
3807                 if (tmp < 0)
3808                     tmp = -tmp;
3809                 goto reserved_word;
3810             }
3811             goto just_a_word;
3812
3813         case KEY_abs:
3814             UNI(OP_ABS);
3815
3816         case KEY_alarm:
3817             UNI(OP_ALARM);
3818
3819         case KEY_accept:
3820             LOP(OP_ACCEPT,XTERM);
3821
3822         case KEY_and:
3823             OPERATOR(ANDOP);
3824
3825         case KEY_atan2:
3826             LOP(OP_ATAN2,XTERM);
3827
3828         case KEY_bind:
3829             LOP(OP_BIND,XTERM);
3830
3831         case KEY_binmode:
3832             UNI(OP_BINMODE);
3833
3834         case KEY_bless:
3835             LOP(OP_BLESS,XTERM);
3836
3837         case KEY_chop:
3838             UNI(OP_CHOP);
3839
3840         case KEY_continue:
3841             PREBLOCK(CONTINUE);
3842
3843         case KEY_chdir:
3844             (void)gv_fetchpv("ENV",TRUE, SVt_PVHV);     /* may use HOME */
3845             UNI(OP_CHDIR);
3846
3847         case KEY_close:
3848             UNI(OP_CLOSE);
3849
3850         case KEY_closedir:
3851             UNI(OP_CLOSEDIR);
3852
3853         case KEY_cmp:
3854             Eop(OP_SCMP);
3855
3856         case KEY_caller:
3857             UNI(OP_CALLER);
3858
3859         case KEY_crypt:
3860 #ifdef FCRYPT
3861             if (!PL_cryptseen++)
3862                 init_des();
3863 #endif
3864             LOP(OP_CRYPT,XTERM);
3865
3866         case KEY_chmod:
3867             if (ckWARN(WARN_OCTAL)) {
3868                 for (d = s; d < PL_bufend && (isSPACE(*d) || *d == '('); d++) ;
3869                 if (*d != '0' && isDIGIT(*d))
3870                     Perl_warner(aTHX_ WARN_OCTAL,
3871                                 "chmod: mode argument is missing initial 0");
3872             }
3873             LOP(OP_CHMOD,XTERM);
3874
3875         case KEY_chown:
3876             LOP(OP_CHOWN,XTERM);
3877
3878         case KEY_connect:
3879             LOP(OP_CONNECT,XTERM);
3880
3881         case KEY_chr:
3882             UNI(OP_CHR);
3883
3884         case KEY_cos:
3885             UNI(OP_COS);
3886
3887         case KEY_chroot:
3888             UNI(OP_CHROOT);
3889
3890         case KEY_do:
3891             s = skipspace(s);
3892             if (*s == '{')
3893                 PRETERMBLOCK(DO);
3894             if (*s != '\'')
3895                 s = force_word(s,WORD,FALSE,TRUE,FALSE);
3896             OPERATOR(DO);
3897
3898         case KEY_die:
3899             PL_hints |= HINT_BLOCK_SCOPE;
3900             LOP(OP_DIE,XTERM);
3901
3902         case KEY_defined:
3903             UNI(OP_DEFINED);
3904
3905         case KEY_delete:
3906             UNI(OP_DELETE);
3907
3908         case KEY_dbmopen:
3909             gv_fetchpv("AnyDBM_File::ISA", GV_ADDMULTI, SVt_PVAV);
3910             LOP(OP_DBMOPEN,XTERM);
3911
3912         case KEY_dbmclose:
3913             UNI(OP_DBMCLOSE);
3914
3915         case KEY_dump:
3916             s = force_word(s,WORD,TRUE,FALSE,FALSE);
3917             LOOPX(OP_DUMP);
3918
3919         case KEY_else:
3920             PREBLOCK(ELSE);
3921
3922         case KEY_elsif:
3923             yylval.ival = PL_curcop->cop_line;
3924             OPERATOR(ELSIF);
3925
3926         case KEY_eq:
3927             Eop(OP_SEQ);
3928
3929         case KEY_exists:
3930             UNI(OP_EXISTS);
3931             
3932         case KEY_exit:
3933             UNI(OP_EXIT);
3934
3935         case KEY_eval:
3936             s = skipspace(s);
3937             PL_expect = (*s == '{') ? XTERMBLOCK : XTERM;
3938             UNIBRACK(OP_ENTEREVAL);
3939
3940         case KEY_eof:
3941             UNI(OP_EOF);
3942
3943         case KEY_exp:
3944             UNI(OP_EXP);
3945
3946         case KEY_each:
3947             UNI(OP_EACH);
3948
3949         case KEY_exec:
3950             set_csh();
3951             LOP(OP_EXEC,XREF);
3952
3953         case KEY_endhostent:
3954             FUN0(OP_EHOSTENT);
3955
3956         case KEY_endnetent:
3957             FUN0(OP_ENETENT);
3958
3959         case KEY_endservent:
3960             FUN0(OP_ESERVENT);
3961
3962         case KEY_endprotoent:
3963             FUN0(OP_EPROTOENT);
3964
3965         case KEY_endpwent:
3966             FUN0(OP_EPWENT);
3967
3968         case KEY_endgrent:
3969             FUN0(OP_EGRENT);
3970
3971         case KEY_for:
3972         case KEY_foreach:
3973             yylval.ival = PL_curcop->cop_line;
3974             s = skipspace(s);
3975             if (PL_expect == XSTATE && isIDFIRST_lazy(s)) {
3976                 char *p = s;
3977                 if ((PL_bufend - p) >= 3 &&
3978                     strnEQ(p, "my", 2) && isSPACE(*(p + 2)))
3979                     p += 2;
3980                 else if ((PL_bufend - p) >= 4 &&
3981                     strnEQ(p, "our", 3) && isSPACE(*(p + 3)))
3982                     p += 3;
3983                 p = skipspace(p);
3984                 if (isIDFIRST_lazy(p)) {
3985                     p = scan_ident(p, PL_bufend,
3986                         PL_tokenbuf, sizeof PL_tokenbuf, TRUE);
3987                     p = skipspace(p);
3988                 }
3989                 if (*p != '$')
3990                     Perl_croak(aTHX_ "Missing $ on loop variable");
3991             }
3992             OPERATOR(FOR);
3993
3994         case KEY_formline:
3995             LOP(OP_FORMLINE,XTERM);
3996
3997         case KEY_fork:
3998             FUN0(OP_FORK);
3999
4000         case KEY_fcntl:
4001             LOP(OP_FCNTL,XTERM);
4002
4003         case KEY_fileno:
4004             UNI(OP_FILENO);
4005
4006         case KEY_flock:
4007             LOP(OP_FLOCK,XTERM);
4008
4009         case KEY_gt:
4010             Rop(OP_SGT);
4011
4012         case KEY_ge:
4013             Rop(OP_SGE);
4014
4015         case KEY_grep:
4016             LOP(OP_GREPSTART, *s == '(' ? XTERM : XREF);
4017
4018         case KEY_goto:
4019             s = force_word(s,WORD,TRUE,FALSE,FALSE);
4020             LOOPX(OP_GOTO);
4021
4022         case KEY_gmtime:
4023             UNI(OP_GMTIME);
4024
4025         case KEY_getc:
4026             UNI(OP_GETC);
4027
4028         case KEY_getppid:
4029             FUN0(OP_GETPPID);
4030
4031         case KEY_getpgrp:
4032             UNI(OP_GETPGRP);
4033
4034         case KEY_getpriority:
4035             LOP(OP_GETPRIORITY,XTERM);
4036
4037         case KEY_getprotobyname:
4038             UNI(OP_GPBYNAME);
4039
4040         case KEY_getprotobynumber:
4041             LOP(OP_GPBYNUMBER,XTERM);
4042
4043         case KEY_getprotoent:
4044             FUN0(OP_GPROTOENT);
4045
4046         case KEY_getpwent:
4047             FUN0(OP_GPWENT);
4048
4049         case KEY_getpwnam:
4050             UNI(OP_GPWNAM);
4051
4052         case KEY_getpwuid:
4053             UNI(OP_GPWUID);
4054
4055         case KEY_getpeername:
4056             UNI(OP_GETPEERNAME);
4057
4058         case KEY_gethostbyname:
4059             UNI(OP_GHBYNAME);
4060
4061         case KEY_gethostbyaddr:
4062             LOP(OP_GHBYADDR,XTERM);
4063
4064         case KEY_gethostent:
4065             FUN0(OP_GHOSTENT);
4066
4067         case KEY_getnetbyname:
4068             UNI(OP_GNBYNAME);
4069
4070         case KEY_getnetbyaddr:
4071             LOP(OP_GNBYADDR,XTERM);
4072
4073         case KEY_getnetent:
4074             FUN0(OP_GNETENT);
4075
4076         case KEY_getservbyname:
4077             LOP(OP_GSBYNAME,XTERM);
4078
4079         case KEY_getservbyport:
4080             LOP(OP_GSBYPORT,XTERM);
4081
4082         case KEY_getservent:
4083             FUN0(OP_GSERVENT);
4084
4085         case KEY_getsockname:
4086             UNI(OP_GETSOCKNAME);
4087
4088         case KEY_getsockopt:
4089             LOP(OP_GSOCKOPT,XTERM);
4090
4091         case KEY_getgrent:
4092             FUN0(OP_GGRENT);
4093
4094         case KEY_getgrnam:
4095             UNI(OP_GGRNAM);
4096
4097         case KEY_getgrgid:
4098             UNI(OP_GGRGID);
4099
4100         case KEY_getlogin:
4101             FUN0(OP_GETLOGIN);
4102
4103         case KEY_glob:
4104             set_csh();
4105             LOP(OP_GLOB,XTERM);
4106
4107         case KEY_hex:
4108             UNI(OP_HEX);
4109
4110         case KEY_if:
4111             yylval.ival = PL_curcop->cop_line;
4112             OPERATOR(IF);
4113
4114         case KEY_index:
4115             LOP(OP_INDEX,XTERM);
4116
4117         case KEY_int:
4118             UNI(OP_INT);
4119
4120         case KEY_ioctl:
4121             LOP(OP_IOCTL,XTERM);
4122
4123         case KEY_join:
4124             LOP(OP_JOIN,XTERM);
4125
4126         case KEY_keys:
4127             UNI(OP_KEYS);
4128
4129         case KEY_kill:
4130             LOP(OP_KILL,XTERM);
4131
4132         case KEY_last:
4133             s = force_word(s,WORD,TRUE,FALSE,FALSE);
4134             LOOPX(OP_LAST);
4135             
4136         case KEY_lc:
4137             UNI(OP_LC);
4138
4139         case KEY_lcfirst:
4140             UNI(OP_LCFIRST);
4141
4142         case KEY_local:
4143             yylval.ival = 0;
4144             OPERATOR(LOCAL);
4145
4146         case KEY_length:
4147             UNI(OP_LENGTH);
4148
4149         case KEY_lt:
4150             Rop(OP_SLT);
4151
4152         case KEY_le:
4153             Rop(OP_SLE);
4154
4155         case KEY_localtime:
4156             UNI(OP_LOCALTIME);
4157
4158         case KEY_log:
4159             UNI(OP_LOG);
4160
4161         case KEY_link:
4162             LOP(OP_LINK,XTERM);
4163
4164         case KEY_listen:
4165             LOP(OP_LISTEN,XTERM);
4166
4167         case KEY_lock:
4168             UNI(OP_LOCK);
4169
4170         case KEY_lstat:
4171             UNI(OP_LSTAT);
4172
4173         case KEY_m:
4174             s = scan_pat(s,OP_MATCH);
4175             TERM(sublex_start());
4176
4177         case KEY_map:
4178             LOP(OP_MAPSTART, *s == '(' ? XTERM : XREF);
4179
4180         case KEY_mkdir:
4181             LOP(OP_MKDIR,XTERM);
4182
4183         case KEY_msgctl:
4184             LOP(OP_MSGCTL,XTERM);
4185
4186         case KEY_msgget:
4187             LOP(OP_MSGGET,XTERM);
4188
4189         case KEY_msgrcv:
4190             LOP(OP_MSGRCV,XTERM);
4191
4192         case KEY_msgsnd:
4193             LOP(OP_MSGSND,XTERM);
4194
4195         case KEY_our:
4196         case KEY_my:
4197             PL_in_my = tmp;
4198             s = skipspace(s);
4199             if (isIDFIRST_lazy(s)) {
4200                 s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, TRUE, &len);
4201                 if (len == 3 && strnEQ(PL_tokenbuf, "sub", 3))
4202                     goto really_sub;
4203                 PL_in_my_stash = gv_stashpv(PL_tokenbuf, FALSE);
4204                 if (!PL_in_my_stash) {
4205                     char tmpbuf[1024];
4206                     PL_bufptr = s;
4207                     sprintf(tmpbuf, "No such class %.1000s", PL_tokenbuf);
4208                     yyerror(tmpbuf);
4209                 }
4210             }
4211             yylval.ival = 1;
4212             OPERATOR(MY);
4213
4214         case KEY_next:
4215             s = force_word(s,WORD,TRUE,FALSE,FALSE);
4216             LOOPX(OP_NEXT);
4217
4218         case KEY_ne:
4219             Eop(OP_SNE);
4220
4221         case KEY_no:
4222             if (PL_expect != XSTATE)
4223                 yyerror("\"no\" not allowed in expression");
4224             s = force_word(s,WORD,FALSE,TRUE,FALSE);
4225             s = force_version(s);
4226             yylval.ival = 0;
4227             OPERATOR(USE);
4228
4229         case KEY_not:
4230             if (*s == '(' || (s = skipspace(s), *s == '('))
4231                 FUN1(OP_NOT);
4232             else
4233                 OPERATOR(NOTOP);
4234
4235         case KEY_open:
4236             s = skipspace(s);
4237             if (isIDFIRST_lazy(s)) {
4238                 char *t;
4239                 for (d = s; isALNUM_lazy(d); d++) ;
4240                 t = skipspace(d);
4241                 if (strchr("|&*+-=!?:.", *t) && ckWARN_d(WARN_AMBIGUOUS))
4242                     Perl_warner(aTHX_ WARN_AMBIGUOUS,
4243                            "Precedence problem: open %.*s should be open(%.*s)",
4244                             d-s,s, d-s,s);
4245             }
4246             LOP(OP_OPEN,XTERM);
4247
4248         case KEY_or:
4249             yylval.ival = OP_OR;
4250             OPERATOR(OROP);
4251
4252         case KEY_ord:
4253             UNI(OP_ORD);
4254
4255         case KEY_oct:
4256             UNI(OP_OCT);
4257
4258         case KEY_opendir:
4259             LOP(OP_OPEN_DIR,XTERM);
4260
4261         case KEY_print:
4262             checkcomma(s,PL_tokenbuf,"filehandle");
4263             LOP(OP_PRINT,XREF);
4264
4265         case KEY_printf:
4266             checkcomma(s,PL_tokenbuf,"filehandle");
4267             LOP(OP_PRTF,XREF);
4268
4269         case KEY_prototype:
4270             UNI(OP_PROTOTYPE);
4271
4272         case KEY_push:
4273             LOP(OP_PUSH,XTERM);
4274
4275         case KEY_pop:
4276             UNI(OP_POP);
4277
4278         case KEY_pos:
4279             UNI(OP_POS);
4280             
4281         case KEY_pack:
4282             LOP(OP_PACK,XTERM);
4283
4284         case KEY_package:
4285             s = force_word(s,WORD,FALSE,TRUE,FALSE);
4286             OPERATOR(PACKAGE);
4287
4288         case KEY_pipe:
4289             LOP(OP_PIPE_OP,XTERM);
4290
4291         case KEY_q:
4292             s = scan_str(s,FALSE,FALSE);
4293             if (!s)
4294                 missingterm((char*)0);
4295             yylval.ival = OP_CONST;
4296             TERM(sublex_start());
4297
4298         case KEY_quotemeta:
4299             UNI(OP_QUOTEMETA);
4300
4301         case KEY_qw:
4302             s = scan_str(s,FALSE,FALSE);
4303             if (!s)
4304                 missingterm((char*)0);
4305             force_next(')');
4306             if (SvCUR(PL_lex_stuff)) {
4307                 OP *words = Nullop;
4308                 int warned = 0;
4309                 d = SvPV_force(PL_lex_stuff, len);
4310                 while (len) {
4311                     for (; isSPACE(*d) && len; --len, ++d) ;
4312                     if (len) {
4313                         char *b = d;
4314                         if (!warned && ckWARN(WARN_SYNTAX)) {
4315                             for (; !isSPACE(*d) && len; --len, ++d) {
4316                                 if (*d == ',') {
4317                                     Perl_warner(aTHX_ WARN_SYNTAX,
4318                                         "Possible attempt to separate words with commas");
4319                                     ++warned;
4320                                 }
4321                                 else if (*d == '#') {
4322                                     Perl_warner(aTHX_ WARN_SYNTAX,
4323                                         "Possible attempt to put comments in qw() list");
4324                                     ++warned;
4325                                 }
4326                             }
4327                         }
4328                         else {
4329                             for (; !isSPACE(*d) && len; --len, ++d) ;
4330                         }
4331                         words = append_elem(OP_LIST, words,
4332                                             newSVOP(OP_CONST, 0, newSVpvn(b, d-b)));
4333                     }
4334                 }
4335                 if (words) {
4336                     PL_nextval[PL_nexttoke].opval = words;
4337                     force_next(THING);
4338                 }
4339             }
4340             if (PL_lex_stuff)
4341                 SvREFCNT_dec(PL_lex_stuff);
4342             PL_lex_stuff = Nullsv;
4343             PL_expect = XTERM;
4344             TOKEN('(');
4345
4346         case KEY_qq:
4347             s = scan_str(s,FALSE,FALSE);
4348             if (!s)
4349                 missingterm((char*)0);
4350             yylval.ival = OP_STRINGIFY;
4351             if (SvIVX(PL_lex_stuff) == '\'')
4352                 SvIVX(PL_lex_stuff) = 0;        /* qq'$foo' should intepolate */
4353             TERM(sublex_start());
4354
4355         case KEY_qr:
4356             s = scan_pat(s,OP_QR);
4357             TERM(sublex_start());
4358
4359         case KEY_qx:
4360             s = scan_str(s,FALSE,FALSE);
4361             if (!s)
4362                 missingterm((char*)0);
4363             yylval.ival = OP_BACKTICK;
4364             set_csh();
4365             TERM(sublex_start());
4366
4367         case KEY_return:
4368             OLDLOP(OP_RETURN);
4369
4370         case KEY_require:
4371             *PL_tokenbuf = '\0';
4372             s = force_word(s,WORD,TRUE,TRUE,FALSE);
4373             if (isIDFIRST_lazy(PL_tokenbuf))
4374                 gv_stashpvn(PL_tokenbuf, strlen(PL_tokenbuf), TRUE);
4375             else if (*s == '<')
4376                 yyerror("<> should be quotes");
4377             UNI(OP_REQUIRE);
4378
4379         case KEY_reset:
4380             UNI(OP_RESET);
4381
4382         case KEY_redo:
4383             s = force_word(s,WORD,TRUE,FALSE,FALSE);
4384             LOOPX(OP_REDO);
4385
4386         case KEY_rename:
4387             LOP(OP_RENAME,XTERM);
4388
4389         case KEY_rand:
4390             UNI(OP_RAND);
4391
4392         case KEY_rmdir:
4393             UNI(OP_RMDIR);
4394
4395         case KEY_rindex:
4396             LOP(OP_RINDEX,XTERM);
4397
4398         case KEY_read:
4399             LOP(OP_READ,XTERM);
4400
4401         case KEY_readdir:
4402             UNI(OP_READDIR);
4403
4404         case KEY_readline:
4405             set_csh();
4406             UNI(OP_READLINE);
4407
4408         case KEY_readpipe:
4409             set_csh();
4410             UNI(OP_BACKTICK);
4411
4412         case KEY_rewinddir:
4413             UNI(OP_REWINDDIR);
4414
4415         case KEY_recv:
4416             LOP(OP_RECV,XTERM);
4417
4418         case KEY_reverse:
4419             LOP(OP_REVERSE,XTERM);
4420
4421         case KEY_readlink:
4422             UNI(OP_READLINK);
4423
4424         case KEY_ref:
4425             UNI(OP_REF);
4426
4427         case KEY_s:
4428             s = scan_subst(s);
4429             if (yylval.opval)
4430                 TERM(sublex_start());
4431             else
4432                 TOKEN(1);       /* force error */
4433
4434         case KEY_chomp:
4435             UNI(OP_CHOMP);
4436             
4437         case KEY_scalar:
4438             UNI(OP_SCALAR);
4439
4440         case KEY_select:
4441             LOP(OP_SELECT,XTERM);
4442
4443         case KEY_seek:
4444             LOP(OP_SEEK,XTERM);
4445
4446         case KEY_semctl:
4447             LOP(OP_SEMCTL,XTERM);
4448
4449         case KEY_semget:
4450             LOP(OP_SEMGET,XTERM);
4451
4452         case KEY_semop:
4453             LOP(OP_SEMOP,XTERM);
4454
4455         case KEY_send:
4456             LOP(OP_SEND,XTERM);
4457
4458         case KEY_setpgrp:
4459             LOP(OP_SETPGRP,XTERM);
4460
4461         case KEY_setpriority:
4462             LOP(OP_SETPRIORITY,XTERM);
4463
4464         case KEY_sethostent:
4465             UNI(OP_SHOSTENT);
4466
4467         case KEY_setnetent:
4468             UNI(OP_SNETENT);
4469
4470         case KEY_setservent:
4471             UNI(OP_SSERVENT);
4472
4473         case KEY_setprotoent:
4474             UNI(OP_SPROTOENT);
4475
4476         case KEY_setpwent:
4477             FUN0(OP_SPWENT);
4478
4479         case KEY_setgrent:
4480             FUN0(OP_SGRENT);
4481
4482         case KEY_seekdir:
4483             LOP(OP_SEEKDIR,XTERM);
4484
4485         case KEY_setsockopt:
4486             LOP(OP_SSOCKOPT,XTERM);
4487
4488         case KEY_shift:
4489             UNI(OP_SHIFT);
4490
4491         case KEY_shmctl:
4492             LOP(OP_SHMCTL,XTERM);
4493
4494         case KEY_shmget:
4495             LOP(OP_SHMGET,XTERM);
4496
4497         case KEY_shmread:
4498             LOP(OP_SHMREAD,XTERM);
4499
4500         case KEY_shmwrite:
4501             LOP(OP_SHMWRITE,XTERM);
4502
4503         case KEY_shutdown:
4504             LOP(OP_SHUTDOWN,XTERM);
4505
4506         case KEY_sin:
4507             UNI(OP_SIN);
4508
4509         case KEY_sleep:
4510             UNI(OP_SLEEP);
4511
4512         case KEY_socket:
4513             LOP(OP_SOCKET,XTERM);
4514
4515         case KEY_socketpair:
4516             LOP(OP_SOCKPAIR,XTERM);
4517
4518         case KEY_sort:
4519             checkcomma(s,PL_tokenbuf,"subroutine name");
4520             s = skipspace(s);
4521             if (*s == ';' || *s == ')')         /* probably a close */
4522                 Perl_croak(aTHX_ "sort is now a reserved word");
4523             PL_expect = XTERM;
4524             s = force_word(s,WORD,TRUE,TRUE,FALSE);
4525             LOP(OP_SORT,XREF);
4526
4527         case KEY_split:
4528             LOP(OP_SPLIT,XTERM);
4529
4530         case KEY_sprintf:
4531             LOP(OP_SPRINTF,XTERM);
4532
4533         case KEY_splice:
4534             LOP(OP_SPLICE,XTERM);
4535
4536         case KEY_sqrt:
4537             UNI(OP_SQRT);
4538
4539         case KEY_srand:
4540             UNI(OP_SRAND);
4541
4542         case KEY_stat:
4543             UNI(OP_STAT);
4544
4545         case KEY_study:
4546             PL_sawstudy++;
4547             UNI(OP_STUDY);
4548
4549         case KEY_substr:
4550             LOP(OP_SUBSTR,XTERM);
4551
4552         case KEY_format:
4553         case KEY_sub:
4554           really_sub:
4555             {
4556                 char tmpbuf[sizeof PL_tokenbuf];
4557                 SSize_t tboffset;
4558                 expectation attrful;
4559                 bool have_name, have_proto;
4560                 int key = tmp;
4561
4562                 s = skipspace(s);
4563
4564                 if (isIDFIRST_lazy(s) || *s == '\'' ||
4565                     (*s == ':' && s[1] == ':'))
4566                 {
4567                     PL_expect = XBLOCK;
4568                     attrful = XATTRBLOCK;
4569                     /* remember buffer pos'n for later force_word */
4570                     tboffset = s - PL_oldbufptr;
4571                     d = scan_word(s, tmpbuf, sizeof tmpbuf, TRUE, &len);
4572                     if (strchr(tmpbuf, ':'))
4573                         sv_setpv(PL_subname, tmpbuf);
4574                     else {
4575                         sv_setsv(PL_subname,PL_curstname);
4576                         sv_catpvn(PL_subname,"::",2);
4577                         sv_catpvn(PL_subname,tmpbuf,len);
4578                     }
4579                     s = skipspace(d);
4580                     have_name = TRUE;
4581                 }
4582                 else {
4583                     if (key == KEY_my)
4584                         Perl_croak(aTHX_ "Missing name in \"my sub\"");
4585                     PL_expect = XTERMBLOCK;
4586                     attrful = XATTRTERM;
4587                     sv_setpv(PL_subname,"?");
4588                     have_name = FALSE;
4589                 }
4590
4591                 if (key == KEY_format) {
4592                     if (*s == '=')
4593                         PL_lex_formbrack = PL_lex_brackets + 1;
4594                     if (have_name)
4595                         (void) force_word(PL_oldbufptr + tboffset, WORD,
4596                                           FALSE, TRUE, TRUE);
4597                     OPERATOR(FORMAT);
4598                 }
4599
4600                 /* Look for a prototype */
4601                 if (*s == '(') {
4602                     char *p;
4603
4604                     s = scan_str(s,FALSE,FALSE);
4605                     if (!s) {
4606                         if (PL_lex_stuff)
4607                             SvREFCNT_dec(PL_lex_stuff);
4608                         PL_lex_stuff = Nullsv;
4609                         Perl_croak(aTHX_ "Prototype not terminated");
4610                     }
4611                     /* strip spaces */
4612                     d = SvPVX(PL_lex_stuff);
4613                     tmp = 0;
4614                     for (p = d; *p; ++p) {
4615                         if (!isSPACE(*p))
4616                             d[tmp++] = *p;
4617                     }
4618                     d[tmp] = '\0';
4619                     SvCUR(PL_lex_stuff) = tmp;
4620                     have_proto = TRUE;
4621
4622                     s = skipspace(s);
4623                 }
4624                 else
4625                     have_proto = FALSE;
4626
4627                 if (*s == ':' && s[1] != ':')
4628                     PL_expect = attrful;
4629
4630                 if (have_proto) {
4631                     PL_nextval[PL_nexttoke].opval =
4632                         (OP*)newSVOP(OP_CONST, 0, PL_lex_stuff);
4633                     PL_lex_stuff = Nullsv;
4634                     force_next(THING);
4635                 }
4636                 if (!have_name) {
4637                     sv_setpv(PL_subname,"__ANON__");
4638                     TOKEN(ANONSUB);
4639                 }
4640                 (void) force_word(PL_oldbufptr + tboffset, WORD,
4641                                   FALSE, TRUE, TRUE);
4642                 if (key == KEY_my)
4643                     TOKEN(MYSUB);
4644                 TOKEN(SUB);
4645             }
4646
4647         case KEY_system:
4648             set_csh();
4649             LOP(OP_SYSTEM,XREF);
4650
4651         case KEY_symlink:
4652             LOP(OP_SYMLINK,XTERM);
4653
4654         case KEY_syscall:
4655             LOP(OP_SYSCALL,XTERM);
4656
4657         case KEY_sysopen:
4658             LOP(OP_SYSOPEN,XTERM);
4659
4660         case KEY_sysseek:
4661             LOP(OP_SYSSEEK,XTERM);
4662
4663         case KEY_sysread:
4664             LOP(OP_SYSREAD,XTERM);
4665
4666         case KEY_syswrite:
4667             LOP(OP_SYSWRITE,XTERM);
4668
4669         case KEY_tr:
4670             s = scan_trans(s);
4671             TERM(sublex_start());
4672
4673         case KEY_tell:
4674             UNI(OP_TELL);
4675
4676         case KEY_telldir:
4677             UNI(OP_TELLDIR);
4678
4679         case KEY_tie:
4680             LOP(OP_TIE,XTERM);
4681
4682         case KEY_tied:
4683             UNI(OP_TIED);
4684
4685         case KEY_time:
4686             FUN0(OP_TIME);
4687
4688         case KEY_times:
4689             FUN0(OP_TMS);
4690
4691         case KEY_truncate:
4692             LOP(OP_TRUNCATE,XTERM);
4693
4694         case KEY_uc:
4695             UNI(OP_UC);
4696
4697         case KEY_ucfirst:
4698             UNI(OP_UCFIRST);
4699
4700         case KEY_untie:
4701             UNI(OP_UNTIE);
4702
4703         case KEY_until:
4704             yylval.ival = PL_curcop->cop_line;
4705             OPERATOR(UNTIL);
4706
4707         case KEY_unless:
4708             yylval.ival = PL_curcop->cop_line;
4709             OPERATOR(UNLESS);
4710
4711         case KEY_unlink:
4712             LOP(OP_UNLINK,XTERM);
4713
4714         case KEY_undef:
4715             UNI(OP_UNDEF);
4716
4717         case KEY_unpack:
4718             LOP(OP_UNPACK,XTERM);
4719
4720         case KEY_utime:
4721             LOP(OP_UTIME,XTERM);
4722
4723         case KEY_umask:
4724             if (ckWARN(WARN_OCTAL)) {
4725                 for (d = s; d < PL_bufend && (isSPACE(*d) || *d == '('); d++) ;
4726                 if (*d != '0' && isDIGIT(*d)) 
4727                     Perl_warner(aTHX_ WARN_OCTAL,
4728                                 "umask: argument is missing initial 0");
4729             }
4730             UNI(OP_UMASK);
4731
4732         case KEY_unshift:
4733             LOP(OP_UNSHIFT,XTERM);
4734
4735         case KEY_use:
4736             if (PL_expect != XSTATE)
4737                 yyerror("\"use\" not allowed in expression");
4738             s = skipspace(s);
4739             if(isDIGIT(*s)) {
4740                 s = force_version(s);
4741                 if(*s == ';' || (s = skipspace(s), *s == ';')) {
4742                     PL_nextval[PL_nexttoke].opval = Nullop;
4743                     force_next(WORD);
4744                 }
4745             }
4746             else {
4747                 s = force_word(s,WORD,FALSE,TRUE,FALSE);
4748                 s = force_version(s);
4749             }
4750             yylval.ival = 1;
4751             OPERATOR(USE);
4752
4753         case KEY_values:
4754             UNI(OP_VALUES);
4755
4756         case KEY_vec:
4757             PL_sawvec = TRUE;
4758             LOP(OP_VEC,XTERM);
4759
4760         case KEY_while:
4761             yylval.ival = PL_curcop->cop_line;
4762             OPERATOR(WHILE);
4763
4764         case KEY_warn:
4765             PL_hints |= HINT_BLOCK_SCOPE;
4766             LOP(OP_WARN,XTERM);
4767
4768         case KEY_wait:
4769             FUN0(OP_WAIT);
4770
4771         case KEY_waitpid:
4772             LOP(OP_WAITPID,XTERM);
4773
4774         case KEY_wantarray:
4775             FUN0(OP_WANTARRAY);
4776
4777         case KEY_write:
4778 #ifdef EBCDIC
4779         {
4780             static char ctl_l[2];
4781
4782             if (ctl_l[0] == '\0') 
4783                 ctl_l[0] = toCTRL('L');
4784             gv_fetchpv(ctl_l,TRUE, SVt_PV);
4785         }
4786 #else
4787             gv_fetchpv("\f",TRUE, SVt_PV);      /* Make sure $^L is defined */
4788 #endif
4789             UNI(OP_ENTERWRITE);
4790
4791         case KEY_x:
4792             if (PL_expect == XOPERATOR)
4793                 Mop(OP_REPEAT);
4794             check_uni();
4795             goto just_a_word;
4796
4797         case KEY_xor:
4798             yylval.ival = OP_XOR;
4799             OPERATOR(OROP);
4800
4801         case KEY_y:
4802             s = scan_trans(s);
4803             TERM(sublex_start());
4804         }
4805     }}
4806 }
4807
4808 I32
4809 Perl_keyword(pTHX_ register char *d, I32 len)
4810 {
4811     switch (*d) {
4812     case '_':
4813         if (d[1] == '_') {
4814             if (strEQ(d,"__FILE__"))            return -KEY___FILE__;
4815             if (strEQ(d,"__LINE__"))            return -KEY___LINE__;
4816             if (strEQ(d,"__PACKAGE__"))         return -KEY___PACKAGE__;
4817             if (strEQ(d,"__DATA__"))            return KEY___DATA__;
4818             if (strEQ(d,"__END__"))             return KEY___END__;
4819         }
4820         break;
4821     case 'A':
4822         if (strEQ(d,"AUTOLOAD"))                return KEY_AUTOLOAD;
4823         break;
4824     case 'a':
4825         switch (len) {
4826         case 3:
4827             if (strEQ(d,"and"))                 return -KEY_and;
4828             if (strEQ(d,"abs"))                 return -KEY_abs;
4829             break;
4830         case 5:
4831             if (strEQ(d,"alarm"))               return -KEY_alarm;
4832             if (strEQ(d,"atan2"))               return -KEY_atan2;
4833             break;
4834         case 6:
4835             if (strEQ(d,"accept"))              return -KEY_accept;
4836             break;
4837         }
4838         break;
4839     case 'B':
4840         if (strEQ(d,"BEGIN"))                   return KEY_BEGIN;
4841         break;
4842     case 'b':
4843         if (strEQ(d,"bless"))                   return -KEY_bless;
4844         if (strEQ(d,"bind"))                    return -KEY_bind;
4845         if (strEQ(d,"binmode"))                 return -KEY_binmode;
4846         break;
4847     case 'C':
4848         if (strEQ(d,"CORE"))                    return -KEY_CORE;
4849         break;
4850     case 'c':
4851         switch (len) {
4852         case 3:
4853             if (strEQ(d,"cmp"))                 return -KEY_cmp;
4854             if (strEQ(d,"chr"))                 return -KEY_chr;
4855             if (strEQ(d,"cos"))                 return -KEY_cos;
4856             break;
4857         case 4:
4858             if (strEQ(d,"chop"))                return KEY_chop;
4859             break;
4860         case 5:
4861             if (strEQ(d,"close"))               return -KEY_close;
4862             if (strEQ(d,"chdir"))               return -KEY_chdir;
4863             if (strEQ(d,"chomp"))               return KEY_chomp;
4864             if (strEQ(d,"chmod"))               return -KEY_chmod;
4865             if (strEQ(d,"chown"))               return -KEY_chown;
4866             if (strEQ(d,"crypt"))               return -KEY_crypt;
4867             break;
4868         case 6:
4869             if (strEQ(d,"chroot"))              return -KEY_chroot;
4870             if (strEQ(d,"caller"))              return -KEY_caller;
4871             break;
4872         case 7:
4873             if (strEQ(d,"connect"))             return -KEY_connect;
4874             break;
4875         case 8:
4876             if (strEQ(d,"closedir"))            return -KEY_closedir;
4877             if (strEQ(d,"continue"))            return -KEY_continue;
4878             break;
4879         }
4880         break;
4881     case 'D':
4882         if (strEQ(d,"DESTROY"))                 return KEY_DESTROY;
4883         break;
4884     case 'd':
4885         switch (len) {
4886         case 2:
4887             if (strEQ(d,"do"))                  return KEY_do;
4888             break;
4889         case 3:
4890             if (strEQ(d,"die"))                 return -KEY_die;
4891             break;
4892         case 4:
4893             if (strEQ(d,"dump"))                return -KEY_dump;
4894             break;
4895         case 6:
4896             if (strEQ(d,"delete"))              return KEY_delete;
4897             break;
4898         case 7:
4899             if (strEQ(d,"defined"))             return KEY_defined;
4900             if (strEQ(d,"dbmopen"))             return -KEY_dbmopen;
4901             break;
4902         case 8:
4903             if (strEQ(d,"dbmclose"))            return -KEY_dbmclose;
4904             break;
4905         }
4906         break;
4907     case 'E':
4908         if (strEQ(d,"EQ")) { deprecate(d);      return -KEY_eq;}
4909         if (strEQ(d,"END"))                     return KEY_END;
4910         break;
4911     case 'e':
4912         switch (len) {
4913         case 2:
4914             if (strEQ(d,"eq"))                  return -KEY_eq;
4915             break;
4916         case 3:
4917             if (strEQ(d,"eof"))                 return -KEY_eof;
4918             if (strEQ(d,"exp"))                 return -KEY_exp;
4919             break;
4920         case 4:
4921             if (strEQ(d,"else"))                return KEY_else;
4922             if (strEQ(d,"exit"))                return -KEY_exit;
4923             if (strEQ(d,"eval"))                return KEY_eval;
4924             if (strEQ(d,"exec"))                return -KEY_exec;
4925             if (strEQ(d,"each"))                return KEY_each;
4926             break;
4927         case 5:
4928             if (strEQ(d,"elsif"))               return KEY_elsif;
4929             break;
4930         case 6:
4931             if (strEQ(d,"exists"))              return KEY_exists;
4932             if (strEQ(d,"elseif")) Perl_warn(aTHX_ "elseif should be elsif");
4933             break;
4934         case 8:
4935             if (strEQ(d,"endgrent"))            return -KEY_endgrent;
4936             if (strEQ(d,"endpwent"))            return -KEY_endpwent;
4937             break;
4938         case 9:
4939             if (strEQ(d,"endnetent"))           return -KEY_endnetent;
4940             break;
4941         case 10:
4942             if (strEQ(d,"endhostent"))          return -KEY_endhostent;
4943             if (strEQ(d,"endservent"))          return -KEY_endservent;
4944             break;
4945         case 11:
4946             if (strEQ(d,"endprotoent"))         return -KEY_endprotoent;
4947             break;
4948         }
4949         break;
4950     case 'f':
4951         switch (len) {
4952         case 3:
4953             if (strEQ(d,"for"))                 return KEY_for;
4954             break;
4955         case 4:
4956             if (strEQ(d,"fork"))                return -KEY_fork;
4957             break;
4958         case 5:
4959             if (strEQ(d,"fcntl"))               return -KEY_fcntl;
4960             if (strEQ(d,"flock"))               return -KEY_flock;
4961             break;
4962         case 6:
4963             if (strEQ(d,"format"))              return KEY_format;
4964             if (strEQ(d,"fileno"))              return -KEY_fileno;
4965             break;
4966         case 7:
4967             if (strEQ(d,"foreach"))             return KEY_foreach;
4968             break;
4969         case 8:
4970             if (strEQ(d,"formline"))            return -KEY_formline;
4971             break;
4972         }
4973         break;
4974     case 'G':
4975         if (len == 2) {
4976             if (strEQ(d,"GT")) { deprecate(d);  return -KEY_gt;}
4977             if (strEQ(d,"GE")) { deprecate(d);  return -KEY_ge;}
4978         }
4979         break;
4980     case 'g':
4981         if (strnEQ(d,"get",3)) {
4982             d += 3;
4983             if (*d == 'p') {
4984                 switch (len) {
4985                 case 7:
4986                     if (strEQ(d,"ppid"))        return -KEY_getppid;
4987                     if (strEQ(d,"pgrp"))        return -KEY_getpgrp;
4988                     break;
4989                 case 8:
4990                     if (strEQ(d,"pwent"))       return -KEY_getpwent;
4991                     if (strEQ(d,"pwnam"))       return -KEY_getpwnam;
4992                     if (strEQ(d,"pwuid"))       return -KEY_getpwuid;
4993                     break;
4994                 case 11:
4995                     if (strEQ(d,"peername"))    return -KEY_getpeername;
4996                     if (strEQ(d,"protoent"))    return -KEY_getprotoent;
4997                     if (strEQ(d,"priority"))    return -KEY_getpriority;
4998                     break;
4999                 case 14:
5000                     if (strEQ(d,"protobyname")) return -KEY_getprotobyname;
5001                     break;
5002                 case 16:
5003                     if (strEQ(d,"protobynumber"))return -KEY_getprotobynumber;
5004                     break;
5005                 }
5006             }
5007             else if (*d == 'h') {
5008                 if (strEQ(d,"hostbyname"))      return -KEY_gethostbyname;
5009                 if (strEQ(d,"hostbyaddr"))      return -KEY_gethostbyaddr;
5010                 if (strEQ(d,"hostent"))         return -KEY_gethostent;
5011             }
5012             else if (*d == 'n') {
5013                 if (strEQ(d,"netbyname"))       return -KEY_getnetbyname;
5014                 if (strEQ(d,"netbyaddr"))       return -KEY_getnetbyaddr;
5015                 if (strEQ(d,"netent"))          return -KEY_getnetent;
5016             }
5017             else if (*d == 's') {
5018                 if (strEQ(d,"servbyname"))      return -KEY_getservbyname;
5019                 if (strEQ(d,"servbyport"))      return -KEY_getservbyport;
5020                 if (strEQ(d,"servent"))         return -KEY_getservent;
5021                 if (strEQ(d,"sockname"))        return -KEY_getsockname;
5022                 if (strEQ(d,"sockopt"))         return -KEY_getsockopt;
5023             }
5024             else if (*d == 'g') {
5025                 if (strEQ(d,"grent"))           return -KEY_getgrent;
5026                 if (strEQ(d,"grnam"))           return -KEY_getgrnam;
5027                 if (strEQ(d,"grgid"))           return -KEY_getgrgid;
5028             }
5029             else if (*d == 'l') {
5030                 if (strEQ(d,"login"))           return -KEY_getlogin;
5031             }
5032             else if (strEQ(d,"c"))              return -KEY_getc;
5033             break;
5034         }
5035         switch (len) {
5036         case 2:
5037             if (strEQ(d,"gt"))                  return -KEY_gt;
5038             if (strEQ(d,"ge"))                  return -KEY_ge;
5039             break;
5040         case 4:
5041             if (strEQ(d,"grep"))                return KEY_grep;
5042             if (strEQ(d,"goto"))                return KEY_goto;
5043             if (strEQ(d,"glob"))                return KEY_glob;
5044             break;
5045         case 6:
5046             if (strEQ(d,"gmtime"))              return -KEY_gmtime;
5047             break;
5048         }
5049         break;
5050     case 'h':
5051         if (strEQ(d,"hex"))                     return -KEY_hex;
5052         break;
5053     case 'I':
5054         if (strEQ(d,"INIT"))                    return KEY_INIT;
5055         break;
5056     case 'i':
5057         switch (len) {
5058         case 2:
5059             if (strEQ(d,"if"))                  return KEY_if;
5060             break;
5061         case 3:
5062             if (strEQ(d,"int"))                 return -KEY_int;
5063             break;
5064         case 5:
5065             if (strEQ(d,"index"))               return -KEY_index;
5066             if (strEQ(d,"ioctl"))               return -KEY_ioctl;
5067             break;
5068         }
5069         break;
5070     case 'j':
5071         if (strEQ(d,"join"))                    return -KEY_join;
5072         break;
5073     case 'k':
5074         if (len == 4) {
5075             if (strEQ(d,"keys"))                return KEY_keys;
5076             if (strEQ(d,"kill"))                return -KEY_kill;
5077         }
5078         break;
5079     case 'L':
5080         if (len == 2) {
5081             if (strEQ(d,"LT")) { deprecate(d);  return -KEY_lt;}
5082             if (strEQ(d,"LE")) { deprecate(d);  return -KEY_le;}
5083         }
5084         break;
5085     case 'l':
5086         switch (len) {
5087         case 2:
5088             if (strEQ(d,"lt"))                  return -KEY_lt;
5089             if (strEQ(d,"le"))                  return -KEY_le;
5090             if (strEQ(d,"lc"))                  return -KEY_lc;
5091             break;
5092         case 3:
5093             if (strEQ(d,"log"))                 return -KEY_log;
5094             break;
5095         case 4:
5096             if (strEQ(d,"last"))                return KEY_last;
5097             if (strEQ(d,"link"))                return -KEY_link;
5098             if (strEQ(d,"lock"))                return -KEY_lock;
5099             break;
5100         case 5:
5101             if (strEQ(d,"local"))               return KEY_local;
5102             if (strEQ(d,"lstat"))               return -KEY_lstat;
5103             break;
5104         case 6:
5105             if (strEQ(d,"length"))              return -KEY_length;
5106             if (strEQ(d,"listen"))              return -KEY_listen;
5107             break;
5108         case 7:
5109             if (strEQ(d,"lcfirst"))             return -KEY_lcfirst;
5110             break;
5111         case 9:
5112             if (strEQ(d,"localtime"))           return -KEY_localtime;
5113             break;
5114         }
5115         break;
5116     case 'm':
5117         switch (len) {
5118         case 1:                                 return KEY_m;
5119         case 2:
5120             if (strEQ(d,"my"))                  return KEY_my;
5121             break;
5122         case 3:
5123             if (strEQ(d,"map"))                 return KEY_map;
5124             break;
5125         case 5:
5126             if (strEQ(d,"mkdir"))               return -KEY_mkdir;
5127             break;
5128         case 6:
5129             if (strEQ(d,"msgctl"))              return -KEY_msgctl;
5130             if (strEQ(d,"msgget"))              return -KEY_msgget;
5131             if (strEQ(d,"msgrcv"))              return -KEY_msgrcv;
5132             if (strEQ(d,"msgsnd"))              return -KEY_msgsnd;
5133             break;
5134         }
5135         break;
5136     case 'N':
5137         if (strEQ(d,"NE")) { deprecate(d);      return -KEY_ne;}
5138         break;
5139     case 'n':
5140         if (strEQ(d,"next"))                    return KEY_next;
5141         if (strEQ(d,"ne"))                      return -KEY_ne;
5142         if (strEQ(d,"not"))                     return -KEY_not;
5143         if (strEQ(d,"no"))                      return KEY_no;
5144         break;
5145     case 'o':
5146         switch (len) {
5147         case 2:
5148             if (strEQ(d,"or"))                  return -KEY_or;
5149             break;
5150         case 3:
5151             if (strEQ(d,"ord"))                 return -KEY_ord;
5152             if (strEQ(d,"oct"))                 return -KEY_oct;
5153             if (strEQ(d,"our"))                 return KEY_our;
5154             break;
5155         case 4:
5156             if (strEQ(d,"open"))                return -KEY_open;
5157             break;
5158         case 7:
5159             if (strEQ(d,"opendir"))             return -KEY_opendir;
5160             break;
5161         }
5162         break;
5163     case 'p':
5164         switch (len) {
5165         case 3:
5166             if (strEQ(d,"pop"))                 return KEY_pop;
5167             if (strEQ(d,"pos"))                 return KEY_pos;
5168             break;
5169         case 4:
5170             if (strEQ(d,"push"))                return KEY_push;
5171             if (strEQ(d,"pack"))                return -KEY_pack;
5172             if (strEQ(d,"pipe"))                return -KEY_pipe;
5173             break;
5174         case 5:
5175             if (strEQ(d,"print"))               return KEY_print;
5176             break;
5177         case 6:
5178             if (strEQ(d,"printf"))              return KEY_printf;
5179             break;
5180         case 7:
5181             if (strEQ(d,"package"))             return KEY_package;
5182             break;
5183         case 9:
5184             if (strEQ(d,"prototype"))           return KEY_prototype;
5185         }
5186         break;
5187     case 'q':
5188         if (len <= 2) {
5189             if (strEQ(d,"q"))                   return KEY_q;
5190             if (strEQ(d,"qr"))                  return KEY_qr;
5191             if (strEQ(d,"qq"))                  return KEY_qq;
5192             if (strEQ(d,"qw"))                  return KEY_qw;
5193             if (strEQ(d,"qx"))                  return KEY_qx;
5194         }
5195         else if (strEQ(d,"quotemeta"))          return -KEY_quotemeta;
5196         break;
5197     case 'r':
5198         switch (len) {
5199         case 3:
5200             if (strEQ(d,"ref"))                 return -KEY_ref;
5201             break;
5202         case 4:
5203             if (strEQ(d,"read"))                return -KEY_read;
5204             if (strEQ(d,"rand"))                return -KEY_rand;
5205             if (strEQ(d,"recv"))                return -KEY_recv;
5206             if (strEQ(d,"redo"))                return KEY_redo;
5207             break;
5208         case 5:
5209             if (strEQ(d,"rmdir"))               return -KEY_rmdir;
5210             if (strEQ(d,"reset"))               return -KEY_reset;
5211             break;
5212         case 6:
5213             if (strEQ(d,"return"))              return KEY_return;
5214             if (strEQ(d,"rename"))              return -KEY_rename;
5215             if (strEQ(d,"rindex"))              return -KEY_rindex;
5216             break;
5217         case 7:
5218             if (strEQ(d,"require"))             return -KEY_require;
5219             if (strEQ(d,"reverse"))             return -KEY_reverse;
5220             if (strEQ(d,"readdir"))             return -KEY_readdir;
5221             break;
5222         case 8:
5223             if (strEQ(d,"readlink"))            return -KEY_readlink;
5224             if (strEQ(d,"readline"))            return -KEY_readline;
5225             if (strEQ(d,"readpipe"))            return -KEY_readpipe;
5226             break;
5227         case 9:
5228             if (strEQ(d,"rewinddir"))           return -KEY_rewinddir;
5229             break;
5230         }
5231         break;
5232     case 's':
5233         switch (d[1]) {
5234         case 0:                                 return KEY_s;
5235         case 'c':
5236             if (strEQ(d,"scalar"))              return KEY_scalar;
5237             break;
5238         case 'e':
5239             switch (len) {
5240             case 4:
5241                 if (strEQ(d,"seek"))            return -KEY_seek;
5242                 if (strEQ(d,"send"))            return -KEY_send;
5243                 break;
5244             case 5:
5245                 if (strEQ(d,"semop"))           return -KEY_semop;
5246                 break;
5247             case 6:
5248                 if (strEQ(d,"select"))          return -KEY_select;
5249                 if (strEQ(d,"semctl"))          return -KEY_semctl;
5250                 if (strEQ(d,"semget"))          return -KEY_semget;
5251                 break;
5252             case 7:
5253                 if (strEQ(d,"setpgrp"))         return -KEY_setpgrp;
5254                 if (strEQ(d,"seekdir"))         return -KEY_seekdir;
5255                 break;
5256             case 8:
5257                 if (strEQ(d,"setpwent"))        return -KEY_setpwent;
5258                 if (strEQ(d,"setgrent"))        return -KEY_setgrent;
5259                 break;
5260             case 9:
5261                 if (strEQ(d,"setnetent"))       return -KEY_setnetent;
5262                 break;
5263             case 10:
5264                 if (strEQ(d,"setsockopt"))      return -KEY_setsockopt;
5265                 if (strEQ(d,"sethostent"))      return -KEY_sethostent;
5266                 if (strEQ(d,"setservent"))      return -KEY_setservent;
5267                 break;
5268             case 11:
5269                 if (strEQ(d,"setpriority"))     return -KEY_setpriority;
5270                 if (strEQ(d,"setprotoent"))     return -KEY_setprotoent;
5271                 break;
5272             }
5273             break;
5274         case 'h':
5275             switch (len) {
5276             case 5:
5277                 if (strEQ(d,"shift"))           return KEY_shift;
5278                 break;
5279             case 6:
5280                 if (strEQ(d,"shmctl"))          return -KEY_shmctl;
5281                 if (strEQ(d,"shmget"))          return -KEY_shmget;
5282                 break;
5283             case 7:
5284                 if (strEQ(d,"shmread"))         return -KEY_shmread;
5285                 break;
5286             case 8:
5287                 if (strEQ(d,"shmwrite"))        return -KEY_shmwrite;
5288                 if (strEQ(d,"shutdown"))        return -KEY_shutdown;
5289                 break;
5290             }
5291             break;
5292         case 'i':
5293             if (strEQ(d,"sin"))                 return -KEY_sin;
5294             break;
5295         case 'l':
5296             if (strEQ(d,"sleep"))               return -KEY_sleep;
5297             break;
5298         case 'o':
5299             if (strEQ(d,"sort"))                return KEY_sort;
5300             if (strEQ(d,"socket"))              return -KEY_socket;
5301             if (strEQ(d,"socketpair"))          return -KEY_socketpair;
5302             break;
5303         case 'p':
5304             if (strEQ(d,"split"))               return KEY_split;
5305             if (strEQ(d,"sprintf"))             return -KEY_sprintf;
5306             if (strEQ(d,"splice"))              return KEY_splice;
5307             break;
5308         case 'q':
5309             if (strEQ(d,"sqrt"))                return -KEY_sqrt;
5310             break;
5311         case 'r':
5312             if (strEQ(d,"srand"))               return -KEY_srand;
5313             break;
5314         case 't':
5315             if (strEQ(d,"stat"))                return -KEY_stat;
5316             if (strEQ(d,"study"))               return KEY_study;
5317             break;
5318         case 'u':
5319             if (strEQ(d,"substr"))              return -KEY_substr;
5320             if (strEQ(d,"sub"))                 return KEY_sub;
5321             break;
5322         case 'y':
5323             switch (len) {
5324             case 6:
5325                 if (strEQ(d,"system"))          return -KEY_system;
5326                 break;
5327             case 7:
5328                 if (strEQ(d,"symlink"))         return -KEY_symlink;
5329                 if (strEQ(d,"syscall"))         return -KEY_syscall;
5330                 if (strEQ(d,"sysopen"))         return -KEY_sysopen;
5331                 if (strEQ(d,"sysread"))         return -KEY_sysread;
5332                 if (strEQ(d,"sysseek"))         return -KEY_sysseek;
5333                 break;
5334             case 8:
5335                 if (strEQ(d,"syswrite"))        return -KEY_syswrite;
5336                 break;
5337             }
5338             break;
5339         }
5340         break;
5341     case 't':
5342         switch (len) {
5343         case 2:
5344             if (strEQ(d,"tr"))                  return KEY_tr;
5345             break;
5346         case 3:
5347             if (strEQ(d,"tie"))                 return KEY_tie;
5348             break;
5349         case 4:
5350             if (strEQ(d,"tell"))                return -KEY_tell;
5351             if (strEQ(d,"tied"))                return KEY_tied;
5352             if (strEQ(d,"time"))                return -KEY_time;
5353             break;
5354         case 5:
5355             if (strEQ(d,"times"))               return -KEY_times;
5356             break;
5357         case 7:
5358             if (strEQ(d,"telldir"))             return -KEY_telldir;
5359             break;
5360         case 8:
5361             if (strEQ(d,"truncate"))            return -KEY_truncate;
5362             break;
5363         }
5364         break;
5365     case 'u':
5366         switch (len) {
5367         case 2:
5368             if (strEQ(d,"uc"))                  return -KEY_uc;
5369             break;
5370         case 3:
5371             if (strEQ(d,"use"))                 return KEY_use;
5372             break;
5373         case 5:
5374             if (strEQ(d,"undef"))               return KEY_undef;
5375             if (strEQ(d,"until"))               return KEY_until;
5376             if (strEQ(d,"untie"))               return KEY_untie;
5377             if (strEQ(d,"utime"))               return -KEY_utime;
5378             if (strEQ(d,"umask"))               return -KEY_umask;
5379             break;
5380         case 6:
5381             if (strEQ(d,"unless"))              return KEY_unless;
5382             if (strEQ(d,"unpack"))              return -KEY_unpack;
5383             if (strEQ(d,"unlink"))              return -KEY_unlink;
5384             break;
5385         case 7:
5386             if (strEQ(d,"unshift"))             return KEY_unshift;
5387             if (strEQ(d,"ucfirst"))             return -KEY_ucfirst;
5388             break;
5389         }
5390         break;
5391     case 'v':
5392         if (strEQ(d,"values"))                  return -KEY_values;
5393         if (strEQ(d,"vec"))                     return -KEY_vec;
5394         break;
5395     case 'w':
5396         switch (len) {
5397         case 4:
5398             if (strEQ(d,"warn"))                return -KEY_warn;
5399             if (strEQ(d,"wait"))                return -KEY_wait;
5400             break;
5401         case 5:
5402             if (strEQ(d,"while"))               return KEY_while;
5403             if (strEQ(d,"write"))               return -KEY_write;
5404             break;
5405         case 7:
5406             if (strEQ(d,"waitpid"))             return -KEY_waitpid;
5407             break;
5408         case 9:
5409             if (strEQ(d,"wantarray"))           return -KEY_wantarray;
5410             break;
5411         }
5412         break;
5413     case 'x':
5414         if (len == 1)                           return -KEY_x;
5415         if (strEQ(d,"xor"))                     return -KEY_xor;
5416         break;
5417     case 'y':
5418         if (len == 1)                           return KEY_y;
5419         break;
5420     case 'z':
5421         break;
5422     }
5423     return 0;
5424 }
5425
5426 STATIC void
5427 S_checkcomma(pTHX_ register char *s, char *name, char *what)
5428 {
5429     char *w;
5430
5431     if (*s == ' ' && s[1] == '(') {     /* XXX gotta be a better way */
5432         dTHR;                           /* only for ckWARN */
5433         if (ckWARN(WARN_SYNTAX)) {
5434             int level = 1;
5435             for (w = s+2; *w && level; w++) {
5436                 if (*w == '(')
5437                     ++level;
5438                 else if (*w == ')')
5439                     --level;
5440             }
5441             if (*w)
5442                 for (; *w && isSPACE(*w); w++) ;
5443             if (!*w || !strchr(";|})]oaiuw!=", *w))     /* an advisory hack only... */
5444                 Perl_warner(aTHX_ WARN_SYNTAX,
5445                             "%s (...) interpreted as function",name);
5446         }
5447     }
5448     while (s < PL_bufend && isSPACE(*s))
5449         s++;
5450     if (*s == '(')
5451         s++;
5452     while (s < PL_bufend && isSPACE(*s))
5453         s++;
5454     if (isIDFIRST_lazy(s)) {
5455         w = s++;
5456         while (isALNUM_lazy(s))
5457             s++;
5458         while (s < PL_bufend && isSPACE(*s))
5459             s++;
5460         if (*s == ',') {
5461             int kw;
5462             *s = '\0';
5463             kw = keyword(w, s - w) || get_cv(w, FALSE) != 0;
5464             *s = ',';
5465             if (kw)
5466                 return;
5467             Perl_croak(aTHX_ "No comma allowed after %s", what);
5468         }
5469     }
5470 }
5471
5472 /* Either returns sv, or mortalizes sv and returns a new SV*.
5473    Best used as sv=new_constant(..., sv, ...).
5474    If s, pv are NULL, calls subroutine with one argument,
5475    and type is used with error messages only. */
5476
5477 STATIC SV *
5478 S_new_constant(pTHX_ char *s, STRLEN len, char *key, SV *sv, SV *pv, char *type) 
5479 {
5480     dSP;
5481     HV *table = GvHV(PL_hintgv);                 /* ^H */
5482     SV *res;
5483     SV **cvp;
5484     SV *cv, *typesv;
5485     char *why, *why1, *why2;
5486     
5487     if (!(PL_hints & HINT_LOCALIZE_HH)) {
5488         SV *msg;
5489         
5490         why = "%^H is not localized";
5491     report_short:
5492         why1 = why2 = "";
5493     report:
5494         msg = Perl_newSVpvf(aTHX_ "constant(%s): %s%s%s", 
5495                             (type ? type: "undef"), why1, why2, why);
5496         yyerror(SvPVX(msg));
5497         SvREFCNT_dec(msg);
5498         return sv;
5499     }
5500     if (!table) {
5501         why = "%^H is not defined";
5502         goto report_short;
5503     }
5504     cvp = hv_fetch(table, key, strlen(key), FALSE);
5505     if (!cvp || !SvOK(*cvp)) {
5506         why = "} is not defined";
5507         why1 = "$^H{";
5508         why2 = key;
5509         goto report;
5510     }
5511     sv_2mortal(sv);                     /* Parent created it permanently */
5512     cv = *cvp;
5513     if (!pv && s)
5514         pv = sv_2mortal(newSVpvn(s, len));
5515     if (type && pv)
5516         typesv = sv_2mortal(newSVpv(type, 0));
5517     else
5518         typesv = &PL_sv_undef;
5519     
5520     PUSHSTACKi(PERLSI_OVERLOAD);
5521     ENTER ;
5522     SAVETMPS;
5523     
5524     PUSHMARK(SP) ;
5525     EXTEND(sp, 4);
5526     if (pv)
5527         PUSHs(pv);
5528     PUSHs(sv);
5529     if (pv)
5530         PUSHs(typesv);
5531     PUSHs(cv);
5532     PUTBACK;
5533     call_sv(cv, G_SCALAR | ( PL_in_eval ? 0 : G_EVAL));
5534     
5535     SPAGAIN ;
5536     
5537     /* Check the eval first */
5538     if (!PL_in_eval && SvTRUE(ERRSV))
5539     {
5540         STRLEN n_a;
5541         sv_catpv(ERRSV, "Propagated");
5542         yyerror(SvPV(ERRSV, n_a)); /* Duplicates the message inside eval */
5543         (void)POPs;
5544         res = SvREFCNT_inc(sv);
5545     }
5546     else {
5547         res = POPs;
5548         (void)SvREFCNT_inc(res);
5549     }
5550     
5551     PUTBACK ;
5552     FREETMPS ;
5553     LEAVE ;
5554     POPSTACK;
5555     
5556     if (!SvOK(res)) {
5557         why = "}} did not return a defined value";
5558         why1 = "Call to &{$^H{";
5559         why2 = key;
5560         sv = res;
5561         goto report;
5562      }
5563
5564      return res;
5565 }
5566   
5567 STATIC char *
5568 S_scan_word(pTHX_ register char *s, char *dest, STRLEN destlen, int allow_package, STRLEN *slp)
5569 {
5570     register char *d = dest;
5571     register char *e = d + destlen - 3;  /* two-character token, ending NUL */
5572     for (;;) {
5573         if (d >= e)
5574             Perl_croak(aTHX_ ident_too_long);
5575         if (isALNUM(*s))        /* UTF handled below */
5576             *d++ = *s++;
5577         else if (*s == '\'' && allow_package && isIDFIRST_lazy(s+1)) {
5578             *d++ = ':';
5579             *d++ = ':';
5580             s++;
5581         }
5582         else if (*s == ':' && s[1] == ':' && allow_package && s[2] != '$') {
5583             *d++ = *s++;
5584             *d++ = *s++;
5585         }
5586         else if (UTF && *(U8*)s >= 0xc0 && isALNUM_utf8((U8*)s)) {
5587             char *t = s + UTF8SKIP(s);
5588             while (*t & 0x80 && is_utf8_mark((U8*)t))
5589                 t += UTF8SKIP(t);
5590             if (d + (t - s) > e)
5591                 Perl_croak(aTHX_ ident_too_long);
5592             Copy(s, d, t - s, char);
5593             d += t - s;
5594             s = t;
5595         }
5596         else {
5597             *d = '\0';
5598             *slp = d - dest;
5599             return s;
5600         }
5601     }
5602 }
5603
5604 STATIC char *
5605 S_scan_ident(pTHX_ register char *s, register char *send, char *dest, STRLEN destlen, I32 ck_uni)
5606 {
5607     register char *d;
5608     register char *e;
5609     char *bracket = 0;
5610     char funny = *s++;
5611
5612     if (PL_lex_brackets == 0)
5613         PL_lex_fakebrack = 0;
5614     if (isSPACE(*s))
5615         s = skipspace(s);
5616     d = dest;
5617     e = d + destlen - 3;        /* two-character token, ending NUL */
5618     if (isDIGIT(*s)) {
5619         while (isDIGIT(*s)) {
5620             if (d >= e)
5621                 Perl_croak(aTHX_ ident_too_long);
5622             *d++ = *s++;
5623         }
5624     }
5625     else {
5626         for (;;) {
5627             if (d >= e)
5628                 Perl_croak(aTHX_ ident_too_long);
5629             if (isALNUM(*s))    /* UTF handled below */
5630                 *d++ = *s++;
5631             else if (*s == '\'' && isIDFIRST_lazy(s+1)) {
5632                 *d++ = ':';
5633                 *d++ = ':';
5634                 s++;
5635             }
5636             else if (*s == ':' && s[1] == ':') {
5637                 *d++ = *s++;
5638                 *d++ = *s++;
5639             }
5640             else if (UTF && *(U8*)s >= 0xc0 && isALNUM_utf8((U8*)s)) {
5641                 char *t = s + UTF8SKIP(s);
5642                 while (*t & 0x80 && is_utf8_mark((U8*)t))
5643                     t += UTF8SKIP(t);
5644                 if (d + (t - s) > e)
5645                     Perl_croak(aTHX_ ident_too_long);
5646                 Copy(s, d, t - s, char);
5647                 d += t - s;
5648                 s = t;
5649             }
5650             else
5651                 break;
5652         }
5653     }
5654     *d = '\0';
5655     d = dest;
5656     if (*d) {
5657         if (PL_lex_state != LEX_NORMAL)
5658             PL_lex_state = LEX_INTERPENDMAYBE;
5659         return s;
5660     }
5661     if (*s == '$' && s[1] &&
5662         (isALNUM_lazy(s+1) || strchr("${", s[1]) || strnEQ(s+1,"::",2)) )
5663     {
5664         return s;
5665     }
5666     if (*s == '{') {
5667         bracket = s;
5668         s++;
5669     }
5670     else if (ck_uni)
5671         check_uni();
5672     if (s < send)
5673         *d = *s++;
5674     d[1] = '\0';
5675     if (*d == '^' && *s && isCONTROLVAR(*s)) {
5676         *d = toCTRL(*s);
5677         s++;
5678     }
5679     if (bracket) {
5680         if (isSPACE(s[-1])) {
5681             while (s < send) {
5682                 char ch = *s++;
5683                 if (ch != ' ' && ch != '\t') {
5684                     *d = ch;
5685                     break;
5686                 }
5687             }
5688         }
5689         if (isIDFIRST_lazy(d)) {
5690             d++;
5691             if (UTF) {
5692                 e = s;
5693                 while (e < send && isALNUM_lazy(e) || *e == ':') {
5694                     e += UTF8SKIP(e);
5695                     while (e < send && *e & 0x80 && is_utf8_mark((U8*)e))
5696                         e += UTF8SKIP(e);
5697                 }
5698                 Copy(s, d, e - s, char);
5699                 d += e - s;
5700                 s = e;
5701             }
5702             else {
5703                 while ((isALNUM(*s) || *s == ':') && d < e)
5704                     *d++ = *s++;
5705                 if (d >= e)
5706                     Perl_croak(aTHX_ ident_too_long);
5707             }
5708             *d = '\0';
5709             while (s < send && (*s == ' ' || *s == '\t')) s++;
5710             if ((*s == '[' || (*s == '{' && strNE(dest, "sub")))) {
5711                 dTHR;                   /* only for ckWARN */
5712                 if (ckWARN(WARN_AMBIGUOUS) && keyword(dest, d - dest)) {
5713                     char *brack = *s == '[' ? "[...]" : "{...}";
5714                     Perl_warner(aTHX_ WARN_AMBIGUOUS,
5715                         "Ambiguous use of %c{%s%s} resolved to %c%s%s",
5716                         funny, dest, brack, funny, dest, brack);
5717                 }
5718                 PL_lex_fakebrack = PL_lex_brackets+1;
5719                 bracket++;
5720                 PL_lex_brackstack[PL_lex_brackets++] = XOPERATOR;
5721                 return s;
5722             }
5723         } 
5724         /* Handle extended ${^Foo} variables 
5725          * 1999-02-27 mjd-perl-patch@plover.com */
5726         else if (!isALNUM(*d) && !isPRINT(*d) /* isCTRL(d) */
5727                  && isALNUM(*s))
5728         {
5729             d++;
5730             while (isALNUM(*s) && d < e) {
5731                 *d++ = *s++;
5732             }
5733             if (d >= e)
5734                 Perl_croak(aTHX_ ident_too_long);
5735             *d = '\0';
5736         }
5737         if (*s == '}') {
5738             s++;
5739             if (PL_lex_state == LEX_INTERPNORMAL && !PL_lex_brackets)
5740                 PL_lex_state = LEX_INTERPEND;
5741             if (funny == '#')
5742                 funny = '@';
5743             if (PL_lex_state == LEX_NORMAL) {
5744                 dTHR;                   /* only for ckWARN */
5745                 if (ckWARN(WARN_AMBIGUOUS) &&
5746                     (keyword(dest, d - dest) || get_cv(dest, FALSE)))
5747                 {
5748                     Perl_warner(aTHX_ WARN_AMBIGUOUS,
5749                         "Ambiguous use of %c{%s} resolved to %c%s",
5750                         funny, dest, funny, dest);
5751                 }
5752             }
5753         }
5754         else {
5755             s = bracket;                /* let the parser handle it */
5756             *dest = '\0';
5757         }
5758     }
5759     else if (PL_lex_state == LEX_INTERPNORMAL && !PL_lex_brackets && !intuit_more(s))
5760         PL_lex_state = LEX_INTERPEND;
5761     return s;
5762 }
5763
5764 void
5765 Perl_pmflag(pTHX_ U16 *pmfl, int ch)
5766 {
5767     if (ch == 'i')
5768         *pmfl |= PMf_FOLD;
5769     else if (ch == 'g')
5770         *pmfl |= PMf_GLOBAL;
5771     else if (ch == 'c')
5772         *pmfl |= PMf_CONTINUE;
5773     else if (ch == 'o')
5774         *pmfl |= PMf_KEEP;
5775     else if (ch == 'm')
5776         *pmfl |= PMf_MULTILINE;
5777     else if (ch == 's')
5778         *pmfl |= PMf_SINGLELINE;
5779     else if (ch == 'x')
5780         *pmfl |= PMf_EXTENDED;
5781 }
5782
5783 STATIC char *
5784 S_scan_pat(pTHX_ char *start, I32 type)
5785 {
5786     PMOP *pm;
5787     char *s;
5788
5789     s = scan_str(start,FALSE,FALSE);
5790     if (!s) {
5791         if (PL_lex_stuff)
5792             SvREFCNT_dec(PL_lex_stuff);
5793         PL_lex_stuff = Nullsv;
5794         Perl_croak(aTHX_ "Search pattern not terminated");
5795     }
5796
5797     pm = (PMOP*)newPMOP(type, 0);
5798     if (PL_multi_open == '?')
5799         pm->op_pmflags |= PMf_ONCE;
5800     if(type == OP_QR) {
5801         while (*s && strchr("iomsx", *s))
5802             pmflag(&pm->op_pmflags,*s++);
5803     }
5804     else {
5805         while (*s && strchr("iogcmsx", *s))
5806             pmflag(&pm->op_pmflags,*s++);
5807     }
5808     pm->op_pmpermflags = pm->op_pmflags;
5809
5810     PL_lex_op = (OP*)pm;
5811     yylval.ival = OP_MATCH;
5812     return s;
5813 }
5814
5815 STATIC char *
5816 S_scan_subst(pTHX_ char *start)
5817 {
5818     register char *s;
5819     register PMOP *pm;
5820     I32 first_start;
5821     I32 es = 0;
5822
5823     yylval.ival = OP_NULL;
5824
5825     s = scan_str(start,FALSE,FALSE);
5826
5827     if (!s) {
5828         if (PL_lex_stuff)
5829             SvREFCNT_dec(PL_lex_stuff);
5830         PL_lex_stuff = Nullsv;
5831         Perl_croak(aTHX_ "Substitution pattern not terminated");
5832     }
5833
5834     if (s[-1] == PL_multi_open)
5835         s--;
5836
5837     first_start = PL_multi_start;
5838     s = scan_str(s,FALSE,FALSE);
5839     if (!s) {
5840         if (PL_lex_stuff)
5841             SvREFCNT_dec(PL_lex_stuff);
5842         PL_lex_stuff = Nullsv;
5843         if (PL_lex_repl)
5844             SvREFCNT_dec(PL_lex_repl);
5845         PL_lex_repl = Nullsv;
5846         Perl_croak(aTHX_ "Substitution replacement not terminated");
5847     }
5848     PL_multi_start = first_start;       /* so whole substitution is taken together */
5849
5850     pm = (PMOP*)newPMOP(OP_SUBST, 0);
5851     while (*s) {
5852         if (*s == 'e') {
5853             s++;
5854             es++;
5855         }
5856         else if (strchr("iogcmsx", *s))
5857             pmflag(&pm->op_pmflags,*s++);
5858         else
5859             break;
5860     }
5861
5862     if (es) {
5863         SV *repl;
5864         PL_sublex_info.super_bufptr = s;
5865         PL_sublex_info.super_bufend = PL_bufend;
5866         PL_multi_end = 0;
5867         pm->op_pmflags |= PMf_EVAL;
5868         repl = newSVpvn("",0);
5869         while (es-- > 0)
5870             sv_catpv(repl, es ? "eval " : "do ");
5871         sv_catpvn(repl, "{ ", 2);
5872         sv_catsv(repl, PL_lex_repl);
5873         sv_catpvn(repl, " };", 2);
5874         SvEVALED_on(repl);
5875         SvREFCNT_dec(PL_lex_repl);
5876         PL_lex_repl = repl;
5877     }
5878
5879     pm->op_pmpermflags = pm->op_pmflags;
5880     PL_lex_op = (OP*)pm;
5881     yylval.ival = OP_SUBST;
5882     return s;
5883 }
5884
5885 STATIC char *
5886 S_scan_trans(pTHX_ char *start)
5887 {
5888     register char* s;
5889     OP *o;
5890     short *tbl;
5891     I32 squash;
5892     I32 del;
5893     I32 complement;
5894     I32 utf8;
5895     I32 count = 0;
5896
5897     yylval.ival = OP_NULL;
5898
5899     s = scan_str(start,FALSE,FALSE);
5900     if (!s) {
5901         if (PL_lex_stuff)
5902             SvREFCNT_dec(PL_lex_stuff);
5903         PL_lex_stuff = Nullsv;
5904         Perl_croak(aTHX_ "Transliteration pattern not terminated");
5905     }
5906     if (s[-1] == PL_multi_open)
5907         s--;
5908
5909     s = scan_str(s,FALSE,FALSE);
5910     if (!s) {
5911         if (PL_lex_stuff)
5912             SvREFCNT_dec(PL_lex_stuff);
5913         PL_lex_stuff = Nullsv;
5914         if (PL_lex_repl)
5915             SvREFCNT_dec(PL_lex_repl);
5916         PL_lex_repl = Nullsv;
5917         Perl_croak(aTHX_ "Transliteration replacement not terminated");
5918     }
5919
5920     if (UTF) {
5921         o = newSVOP(OP_TRANS, 0, 0);
5922         utf8 = OPpTRANS_FROM_UTF|OPpTRANS_TO_UTF;
5923     }
5924     else {
5925         New(803,tbl,256,short);
5926         o = newPVOP(OP_TRANS, 0, (char*)tbl);
5927         utf8 = 0;
5928     }
5929
5930     complement = del = squash = 0;
5931     while (strchr("cdsCU", *s)) {
5932         if (*s == 'c')
5933             complement = OPpTRANS_COMPLEMENT;
5934         else if (*s == 'd')
5935             del = OPpTRANS_DELETE;
5936         else if (*s == 's')
5937             squash = OPpTRANS_SQUASH;
5938         else {
5939             switch (count++) {
5940             case 0:
5941                 if (*s == 'C')
5942                     utf8 &= ~OPpTRANS_FROM_UTF;
5943                 else
5944                     utf8 |= OPpTRANS_FROM_UTF;
5945                 break;
5946             case 1:
5947                 if (*s == 'C')
5948                     utf8 &= ~OPpTRANS_TO_UTF;
5949                 else
5950                     utf8 |= OPpTRANS_TO_UTF;
5951                 break;
5952             default: 
5953                 Perl_croak(aTHX_ "Too many /C and /U options");
5954             }
5955         }
5956         s++;
5957     }
5958     o->op_private = del|squash|complement|utf8;
5959
5960     PL_lex_op = o;
5961     yylval.ival = OP_TRANS;
5962     return s;
5963 }
5964
5965 STATIC char *
5966 S_scan_heredoc(pTHX_ register char *s)
5967 {
5968     dTHR;
5969     SV *herewas;
5970     I32 op_type = OP_SCALAR;
5971     I32 len;
5972     SV *tmpstr;
5973     char term;
5974     register char *d;
5975     register char *e;
5976     char *peek;
5977     int outer = (PL_rsfp && !(PL_lex_inwhat == OP_SCALAR));
5978
5979     s += 2;
5980     d = PL_tokenbuf;
5981     e = PL_tokenbuf + sizeof PL_tokenbuf - 1;
5982     if (!outer)
5983         *d++ = '\n';
5984     for (peek = s; *peek == ' ' || *peek == '\t'; peek++) ;
5985     if (*peek && strchr("`'\"",*peek)) {
5986         s = peek;
5987         term = *s++;
5988         s = delimcpy(d, e, s, PL_bufend, term, &len);
5989         d += len;
5990         if (s < PL_bufend)
5991             s++;
5992     }
5993     else {
5994         if (*s == '\\')
5995             s++, term = '\'';
5996         else
5997             term = '"';
5998         if (!isALNUM_lazy(s))
5999             deprecate("bare << to mean <<\"\"");
6000         for (; isALNUM_lazy(s); s++) {
6001             if (d < e)
6002                 *d++ = *s;
6003         }
6004     }
6005     if (d >= PL_tokenbuf + sizeof PL_tokenbuf - 1)
6006         Perl_croak(aTHX_ "Delimiter for here document is too long");
6007     *d++ = '\n';
6008     *d = '\0';
6009     len = d - PL_tokenbuf;
6010 #ifndef PERL_STRICT_CR
6011     d = strchr(s, '\r');
6012     if (d) {
6013         char *olds = s;
6014         s = d;
6015         while (s < PL_bufend) {
6016             if (*s == '\r') {
6017                 *d++ = '\n';
6018                 if (*++s == '\n')
6019                     s++;
6020             }
6021             else if (*s == '\n' && s[1] == '\r') {      /* \015\013 on a mac? */
6022                 *d++ = *s++;
6023                 s++;
6024             }
6025             else
6026                 *d++ = *s++;
6027         }
6028         *d = '\0';
6029         PL_bufend = d;
6030         SvCUR_set(PL_linestr, PL_bufend - SvPVX(PL_linestr));
6031         s = olds;
6032     }
6033 #endif
6034     d = "\n";
6035     if (outer || !(d=ninstr(s,PL_bufend,d,d+1)))
6036         herewas = newSVpvn(s,PL_bufend-s);
6037     else
6038         s--, herewas = newSVpvn(s,d-s);
6039     s += SvCUR(herewas);
6040
6041     tmpstr = NEWSV(87,79);
6042     sv_upgrade(tmpstr, SVt_PVIV);
6043     if (term == '\'') {
6044         op_type = OP_CONST;
6045         SvIVX(tmpstr) = -1;
6046     }
6047     else if (term == '`') {
6048         op_type = OP_BACKTICK;
6049         SvIVX(tmpstr) = '\\';
6050     }
6051
6052     CLINE;
6053     PL_multi_start = PL_curcop->cop_line;
6054     PL_multi_open = PL_multi_close = '<';
6055     term = *PL_tokenbuf;
6056     if (PL_lex_inwhat == OP_SUBST && PL_in_eval && !PL_rsfp) {
6057         char *bufptr = PL_sublex_info.super_bufptr;
6058         char *bufend = PL_sublex_info.super_bufend;
6059         char *olds = s - SvCUR(herewas);
6060         s = strchr(bufptr, '\n');
6061         if (!s)
6062             s = bufend;
6063         d = s;
6064         while (s < bufend &&
6065           (*s != term || memNE(s,PL_tokenbuf,len)) ) {
6066             if (*s++ == '\n')
6067                 PL_curcop->cop_line++;
6068         }
6069         if (s >= bufend) {
6070             PL_curcop->cop_line = PL_multi_start;
6071             missingterm(PL_tokenbuf);
6072         }
6073         sv_setpvn(herewas,bufptr,d-bufptr+1);
6074         sv_setpvn(tmpstr,d+1,s-d);
6075         s += len - 1;
6076         sv_catpvn(herewas,s,bufend-s);
6077         (void)strcpy(bufptr,SvPVX(herewas));
6078
6079         s = olds;
6080         goto retval;
6081     }
6082     else if (!outer) {
6083         d = s;
6084         while (s < PL_bufend &&
6085           (*s != term || memNE(s,PL_tokenbuf,len)) ) {
6086             if (*s++ == '\n')
6087                 PL_curcop->cop_line++;
6088         }
6089         if (s >= PL_bufend) {
6090             PL_curcop->cop_line = PL_multi_start;
6091             missingterm(PL_tokenbuf);
6092         }
6093         sv_setpvn(tmpstr,d+1,s-d);
6094         s += len - 1;
6095         PL_curcop->cop_line++;  /* the preceding stmt passes a newline */
6096
6097         sv_catpvn(herewas,s,PL_bufend-s);
6098         sv_setsv(PL_linestr,herewas);
6099         PL_oldoldbufptr = PL_oldbufptr = PL_bufptr = s = PL_linestart = SvPVX(PL_linestr);
6100         PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
6101     }
6102     else
6103         sv_setpvn(tmpstr,"",0);   /* avoid "uninitialized" warning */
6104     while (s >= PL_bufend) {    /* multiple line string? */
6105         if (!outer ||
6106          !(PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = filter_gets(PL_linestr, PL_rsfp, 0))) {
6107             PL_curcop->cop_line = PL_multi_start;
6108             missingterm(PL_tokenbuf);
6109         }
6110         PL_curcop->cop_line++;
6111         PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
6112 #ifndef PERL_STRICT_CR
6113         if (PL_bufend - PL_linestart >= 2) {
6114             if ((PL_bufend[-2] == '\r' && PL_bufend[-1] == '\n') ||
6115                 (PL_bufend[-2] == '\n' && PL_bufend[-1] == '\r'))
6116             {
6117                 PL_bufend[-2] = '\n';
6118                 PL_bufend--;
6119                 SvCUR_set(PL_linestr, PL_bufend - SvPVX(PL_linestr));
6120             }
6121             else if (PL_bufend[-1] == '\r')
6122                 PL_bufend[-1] = '\n';
6123         }
6124         else if (PL_bufend - PL_linestart == 1 && PL_bufend[-1] == '\r')
6125             PL_bufend[-1] = '\n';
6126 #endif
6127         if (PERLDB_LINE && PL_curstash != PL_debstash) {
6128             SV *sv = NEWSV(88,0);
6129
6130             sv_upgrade(sv, SVt_PVMG);
6131             sv_setsv(sv,PL_linestr);
6132             av_store(GvAV(PL_curcop->cop_filegv),
6133               (I32)PL_curcop->cop_line,sv);
6134         }
6135         if (*s == term && memEQ(s,PL_tokenbuf,len)) {
6136             s = PL_bufend - 1;
6137             *s = ' ';
6138             sv_catsv(PL_linestr,herewas);
6139             PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
6140         }
6141         else {
6142             s = PL_bufend;
6143             sv_catsv(tmpstr,PL_linestr);
6144         }
6145     }
6146     s++;
6147 retval:
6148     PL_multi_end = PL_curcop->cop_line;
6149     if (SvCUR(tmpstr) + 5 < SvLEN(tmpstr)) {
6150         SvLEN_set(tmpstr, SvCUR(tmpstr) + 1);
6151         Renew(SvPVX(tmpstr), SvLEN(tmpstr), char);
6152     }
6153     SvREFCNT_dec(herewas);
6154     PL_lex_stuff = tmpstr;
6155     yylval.ival = op_type;
6156     return s;
6157 }
6158
6159 /* scan_inputsymbol
6160    takes: current position in input buffer
6161    returns: new position in input buffer
6162    side-effects: yylval and lex_op are set.
6163
6164    This code handles:
6165
6166    <>           read from ARGV
6167    <FH>         read from filehandle
6168    <pkg::FH>    read from package qualified filehandle
6169    <pkg'FH>     read from package qualified filehandle
6170    <$fh>        read from filehandle in $fh
6171    <*.h>        filename glob
6172
6173 */
6174
6175 STATIC char *
6176 S_scan_inputsymbol(pTHX_ char *start)
6177 {
6178     register char *s = start;           /* current position in buffer */
6179     register char *d;
6180     register char *e;
6181     char *end;
6182     I32 len;
6183
6184     d = PL_tokenbuf;                    /* start of temp holding space */
6185     e = PL_tokenbuf + sizeof PL_tokenbuf;       /* end of temp holding space */
6186     end = strchr(s, '\n');
6187     if (!end)
6188         end = PL_bufend;
6189     s = delimcpy(d, e, s + 1, end, '>', &len);  /* extract until > */
6190
6191     /* die if we didn't have space for the contents of the <>,
6192        or if it didn't end, or if we see a newline
6193     */
6194
6195     if (len >= sizeof PL_tokenbuf)
6196         Perl_croak(aTHX_ "Excessively long <> operator");
6197     if (s >= end)
6198         Perl_croak(aTHX_ "Unterminated <> operator");
6199
6200     s++;
6201
6202     /* check for <$fh>
6203        Remember, only scalar variables are interpreted as filehandles by
6204        this code.  Anything more complex (e.g., <$fh{$num}>) will be
6205        treated as a glob() call.
6206        This code makes use of the fact that except for the $ at the front,
6207        a scalar variable and a filehandle look the same.
6208     */
6209     if (*d == '$' && d[1]) d++;
6210
6211     /* allow <Pkg'VALUE> or <Pkg::VALUE> */
6212     while (*d && (isALNUM_lazy(d) || *d == '\'' || *d == ':'))
6213         d++;
6214
6215     /* If we've tried to read what we allow filehandles to look like, and
6216        there's still text left, then it must be a glob() and not a getline.
6217        Use scan_str to pull out the stuff between the <> and treat it
6218        as nothing more than a string.
6219     */
6220
6221     if (d - PL_tokenbuf != len) {
6222         yylval.ival = OP_GLOB;
6223         set_csh();
6224         s = scan_str(start,FALSE,FALSE);
6225         if (!s)
6226            Perl_croak(aTHX_ "Glob not terminated");
6227         return s;
6228     }
6229     else {
6230         /* we're in a filehandle read situation */
6231         d = PL_tokenbuf;
6232
6233         /* turn <> into <ARGV> */
6234         if (!len)
6235             (void)strcpy(d,"ARGV");
6236
6237         /* if <$fh>, create the ops to turn the variable into a
6238            filehandle
6239         */
6240         if (*d == '$') {
6241             I32 tmp;
6242
6243             /* try to find it in the pad for this block, otherwise find
6244                add symbol table ops
6245             */
6246             if ((tmp = pad_findmy(d)) != NOT_IN_PAD) {
6247                 OP *o = newOP(OP_PADSV, 0);
6248                 o->op_targ = tmp;
6249                 PL_lex_op = (OP*)newUNOP(OP_READLINE, 0, o);
6250             }
6251             else {
6252                 GV *gv = gv_fetchpv(d+1,TRUE, SVt_PV);
6253                 PL_lex_op = (OP*)newUNOP(OP_READLINE, 0,
6254                                             newUNOP(OP_RV2SV, 0,
6255                                                 newGVOP(OP_GV, 0, gv)));
6256             }
6257             PL_lex_op->op_flags |= OPf_SPECIAL;
6258             /* we created the ops in PL_lex_op, so make yylval.ival a null op */
6259             yylval.ival = OP_NULL;
6260         }
6261
6262         /* If it's none of the above, it must be a literal filehandle
6263            (<Foo::BAR> or <FOO>) so build a simple readline OP */
6264         else {
6265             GV *gv = gv_fetchpv(d,TRUE, SVt_PVIO);
6266             PL_lex_op = (OP*)newUNOP(OP_READLINE, 0, newGVOP(OP_GV, 0, gv));
6267             yylval.ival = OP_NULL;
6268         }
6269     }
6270
6271     return s;
6272 }
6273
6274
6275 /* scan_str
6276    takes: start position in buffer
6277           keep_quoted preserve \ on the embedded delimiter(s)
6278           keep_delims preserve the delimiters around the string
6279    returns: position to continue reading from buffer
6280    side-effects: multi_start, multi_close, lex_repl or lex_stuff, and
6281         updates the read buffer.
6282
6283    This subroutine pulls a string out of the input.  It is called for:
6284         q               single quotes           q(literal text)
6285         '               single quotes           'literal text'
6286         qq              double quotes           qq(interpolate $here please)
6287         "               double quotes           "interpolate $here please"
6288         qx              backticks               qx(/bin/ls -l)
6289         `               backticks               `/bin/ls -l`
6290         qw              quote words             @EXPORT_OK = qw( func() $spam )
6291         m//             regexp match            m/this/
6292         s///            regexp substitute       s/this/that/
6293         tr///           string transliterate    tr/this/that/
6294         y///            string transliterate    y/this/that/
6295         ($*@)           sub prototypes          sub foo ($)
6296         (stuff)         sub attr parameters     sub foo : attr(stuff)
6297         <>              readline or globs       <FOO>, <>, <$fh>, or <*.c>
6298         
6299    In most of these cases (all but <>, patterns and transliterate)
6300    yylex() calls scan_str().  m// makes yylex() call scan_pat() which
6301    calls scan_str().  s/// makes yylex() call scan_subst() which calls
6302    scan_str().  tr/// and y/// make yylex() call scan_trans() which
6303    calls scan_str().
6304       
6305    It skips whitespace before the string starts, and treats the first
6306    character as the delimiter.  If the delimiter is one of ([{< then
6307    the corresponding "close" character )]}> is used as the closing
6308    delimiter.  It allows quoting of delimiters, and if the string has
6309    balanced delimiters ([{<>}]) it allows nesting.
6310
6311    The lexer always reads these strings into lex_stuff, except in the
6312    case of the operators which take *two* arguments (s/// and tr///)
6313    when it checks to see if lex_stuff is full (presumably with the 1st
6314    arg to s or tr) and if so puts the string into lex_repl.
6315
6316 */
6317
6318 STATIC char *
6319 S_scan_str(pTHX_ char *start, int keep_quoted, int keep_delims)
6320 {
6321     dTHR;
6322     SV *sv;                             /* scalar value: string */
6323     char *tmps;                         /* temp string, used for delimiter matching */
6324     register char *s = start;           /* current position in the buffer */
6325     register char term;                 /* terminating character */
6326     register char *to;                  /* current position in the sv's data */
6327     I32 brackets = 1;                   /* bracket nesting level */
6328
6329     /* skip space before the delimiter */
6330     if (isSPACE(*s))
6331         s = skipspace(s);
6332
6333     /* mark where we are, in case we need to report errors */
6334     CLINE;
6335
6336     /* after skipping whitespace, the next character is the terminator */
6337     term = *s;
6338     /* mark where we are */
6339     PL_multi_start = PL_curcop->cop_line;
6340     PL_multi_open = term;
6341
6342     /* find corresponding closing delimiter */
6343     if (term && (tmps = strchr("([{< )]}> )]}>",term)))
6344         term = tmps[5];
6345     PL_multi_close = term;
6346
6347     /* create a new SV to hold the contents.  87 is leak category, I'm
6348        assuming.  79 is the SV's initial length.  What a random number. */
6349     sv = NEWSV(87,79);
6350     sv_upgrade(sv, SVt_PVIV);
6351     SvIVX(sv) = term;
6352     (void)SvPOK_only(sv);               /* validate pointer */
6353
6354     /* move past delimiter and try to read a complete string */
6355     if (keep_delims)
6356         sv_catpvn(sv, s, 1);
6357     s++;
6358     for (;;) {
6359         /* extend sv if need be */
6360         SvGROW(sv, SvCUR(sv) + (PL_bufend - s) + 1);
6361         /* set 'to' to the next character in the sv's string */
6362         to = SvPVX(sv)+SvCUR(sv);
6363
6364         /* if open delimiter is the close delimiter read unbridle */
6365         if (PL_multi_open == PL_multi_close) {
6366             for (; s < PL_bufend; s++,to++) {
6367                 /* embedded newlines increment the current line number */
6368                 if (*s == '\n' && !PL_rsfp)
6369                     PL_curcop->cop_line++;
6370                 /* handle quoted delimiters */
6371                 if (*s == '\\' && s+1 < PL_bufend && term != '\\') {
6372                     if (!keep_quoted && s[1] == term)
6373                         s++;
6374                 /* any other quotes are simply copied straight through */
6375                     else
6376                         *to++ = *s++;
6377                 }
6378                 /* terminate when run out of buffer (the for() condition), or
6379                    have found the terminator */
6380                 else if (*s == term)
6381                     break;
6382                 *to = *s;
6383             }
6384         }
6385         
6386         /* if the terminator isn't the same as the start character (e.g.,
6387            matched brackets), we have to allow more in the quoting, and
6388            be prepared for nested brackets.
6389         */
6390         else {
6391             /* read until we run out of string, or we find the terminator */
6392             for (; s < PL_bufend; s++,to++) {
6393                 /* embedded newlines increment the line count */
6394                 if (*s == '\n' && !PL_rsfp)
6395                     PL_curcop->cop_line++;
6396                 /* backslashes can escape the open or closing characters */
6397                 if (*s == '\\' && s+1 < PL_bufend) {
6398                     if (!keep_quoted &&
6399                         ((s[1] == PL_multi_open) || (s[1] == PL_multi_close)))
6400                         s++;
6401                     else
6402                         *to++ = *s++;
6403                 }
6404                 /* allow nested opens and closes */
6405                 else if (*s == PL_multi_close && --brackets <= 0)
6406                     break;
6407                 else if (*s == PL_multi_open)
6408                     brackets++;
6409                 *to = *s;
6410             }
6411         }
6412         /* terminate the copied string and update the sv's end-of-string */
6413         *to = '\0';
6414         SvCUR_set(sv, to - SvPVX(sv));
6415
6416         /*
6417          * this next chunk reads more into the buffer if we're not done yet
6418          */
6419
6420         if (s < PL_bufend) break;       /* handle case where we are done yet :-) */
6421
6422 #ifndef PERL_STRICT_CR
6423         if (to - SvPVX(sv) >= 2) {
6424             if ((to[-2] == '\r' && to[-1] == '\n') ||
6425                 (to[-2] == '\n' && to[-1] == '\r'))
6426             {
6427                 to[-2] = '\n';
6428                 to--;
6429                 SvCUR_set(sv, to - SvPVX(sv));
6430             }
6431             else if (to[-1] == '\r')
6432                 to[-1] = '\n';
6433         }
6434         else if (to - SvPVX(sv) == 1 && to[-1] == '\r')
6435             to[-1] = '\n';
6436 #endif
6437         
6438         /* if we're out of file, or a read fails, bail and reset the current
6439            line marker so we can report where the unterminated string began
6440         */
6441         if (!PL_rsfp ||
6442          !(PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = filter_gets(PL_linestr, PL_rsfp, 0))) {
6443             sv_free(sv);
6444             PL_curcop->cop_line = PL_multi_start;
6445             return Nullch;
6446         }
6447         /* we read a line, so increment our line counter */
6448         PL_curcop->cop_line++;
6449
6450         /* update debugger info */
6451         if (PERLDB_LINE && PL_curstash != PL_debstash) {
6452             SV *sv = NEWSV(88,0);
6453
6454             sv_upgrade(sv, SVt_PVMG);
6455             sv_setsv(sv,PL_linestr);
6456             av_store(GvAV(PL_curcop->cop_filegv),
6457               (I32)PL_curcop->cop_line, sv);
6458         }
6459
6460         /* having changed the buffer, we must update PL_bufend */
6461         PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
6462     }
6463     
6464     /* at this point, we have successfully read the delimited string */
6465
6466     if (keep_delims)
6467         sv_catpvn(sv, s, 1);
6468     PL_multi_end = PL_curcop->cop_line;
6469     s++;
6470
6471     /* if we allocated too much space, give some back */
6472     if (SvCUR(sv) + 5 < SvLEN(sv)) {
6473         SvLEN_set(sv, SvCUR(sv) + 1);
6474         Renew(SvPVX(sv), SvLEN(sv), char);
6475     }
6476
6477     /* decide whether this is the first or second quoted string we've read
6478        for this op
6479     */
6480     
6481     if (PL_lex_stuff)
6482         PL_lex_repl = sv;
6483     else
6484         PL_lex_stuff = sv;
6485     return s;
6486 }
6487
6488 /*
6489   scan_num
6490   takes: pointer to position in buffer
6491   returns: pointer to new position in buffer
6492   side-effects: builds ops for the constant in yylval.op
6493
6494   Read a number in any of the formats that Perl accepts:
6495
6496   0(x[0-7A-F]+)|([0-7]+)|(b[01])
6497   [\d_]+(\.[\d_]*)?[Ee](\d+)
6498
6499   Underbars (_) are allowed in decimal numbers.  If -w is on,
6500   underbars before a decimal point must be at three digit intervals.
6501
6502   Like most scan_ routines, it uses the PL_tokenbuf buffer to hold the
6503   thing it reads.
6504
6505   If it reads a number without a decimal point or an exponent, it will
6506   try converting the number to an integer and see if it can do so
6507   without loss of precision.
6508 */
6509   
6510 char *
6511 Perl_scan_num(pTHX_ char *start)
6512 {
6513     register char *s = start;           /* current position in buffer */
6514     register char *d;                   /* destination in temp buffer */
6515     register char *e;                   /* end of temp buffer */
6516     IV tryiv;                           /* used to see if it can be an IV */
6517     NV value;                           /* number read, as a double */
6518     SV *sv;                             /* place to put the converted number */
6519     bool floatit;                       /* boolean: int or float? */
6520     char *lastub = 0;                   /* position of last underbar */
6521     static char number_too_long[] = "Number too long";
6522
6523     /* We use the first character to decide what type of number this is */
6524
6525     switch (*s) {
6526     default:
6527       Perl_croak(aTHX_ "panic: scan_num");
6528       
6529     /* if it starts with a 0, it could be an octal number, a decimal in
6530        0.13 disguise, or a hexadecimal number, or a binary number.
6531     */
6532     case '0':
6533         {
6534           /* variables:
6535              u          holds the "number so far"
6536              shift      the power of 2 of the base
6537                         (hex == 4, octal == 3, binary == 1)
6538              overflowed was the number more than we can hold?
6539
6540              Shift is used when we add a digit.  It also serves as an "are
6541              we in octal/hex/binary?" indicator to disallow hex characters
6542              when in octal mode.
6543            */
6544             dTHR;
6545             NV n = 0.0;
6546             UV u = 0;
6547             I32 shift;
6548             bool overflowed = FALSE;
6549             static NV nvshift[5] = { 1.0, 2.0, 4.0, 8.0, 16.0 };
6550             static char* bases[5] = { "", "binary", "", "octal",
6551                                       "hexadecimal" };
6552             static char* Bases[5] = { "", "Binary", "", "Octal",
6553                                       "Hexadecimal" };
6554             static char *maxima[5] = { "",
6555                                        "0b11111111111111111111111111111111",
6556                                        "",
6557                                        "037777777777",
6558                                        "0xffffffff" };
6559             char *base, *Base, *max;
6560
6561             /* check for hex */
6562             if (s[1] == 'x') {
6563                 shift = 4;
6564                 s += 2;
6565             } else if (s[1] == 'b') {
6566                 shift = 1;
6567                 s += 2;
6568             }
6569             /* check for a decimal in disguise */
6570             else if (s[1] == '.' || s[1] == 'e' || s[1] == 'E')
6571                 goto decimal;
6572             /* so it must be octal */
6573             else
6574                 shift = 3;
6575
6576             base = bases[shift];
6577             Base = Bases[shift];
6578             max  = maxima[shift];
6579
6580             /* read the rest of the number */
6581             for (;;) {
6582                 /* x is used in the overflow test,
6583                    b is the digit we're adding on. */
6584                 UV x, b;
6585
6586                 switch (*s) {
6587
6588                 /* if we don't mention it, we're done */
6589                 default:
6590                     goto out;
6591
6592                 /* _ are ignored */
6593                 case '_':
6594                     s++;
6595                     break;
6596
6597                 /* 8 and 9 are not octal */
6598                 case '8': case '9':
6599                     if (shift == 3)
6600                         yyerror(Perl_form(aTHX_ "Illegal octal digit '%c'", *s));
6601                     /* FALL THROUGH */
6602
6603                 /* octal digits */
6604                 case '2': case '3': case '4':
6605                 case '5': case '6': case '7':
6606                     if (shift == 1)
6607                         yyerror(Perl_form(aTHX_ "Illegal binary digit '%c'", *s));
6608                     /* FALL THROUGH */
6609
6610                 case '0': case '1':
6611                     b = *s++ & 15;              /* ASCII digit -> value of digit */
6612                     goto digit;
6613
6614                 /* hex digits */
6615                 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
6616                 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
6617                     /* make sure they said 0x */
6618                     if (shift != 4)
6619                         goto out;
6620                     b = (*s++ & 7) + 9;
6621
6622                     /* Prepare to put the digit we have onto the end
6623                        of the number so far.  We check for overflows.
6624                     */
6625
6626                   digit:
6627                     if (!overflowed) {
6628                         x = u << shift; /* make room for the digit */
6629
6630                         if ((x >> shift) != u
6631                             && !(PL_hints & HINT_NEW_BINARY)) {
6632                             dTHR;
6633                             overflowed = TRUE;
6634                             n = (NV) u;
6635                             if (ckWARN_d(WARN_OVERFLOW))
6636                                 Perl_warner(aTHX_ WARN_OVERFLOW,
6637                                             "Integer overflow in %s number",
6638                                             base);
6639                         } else
6640                             u = x | b;          /* add the digit to the end */
6641                     }
6642                     if (overflowed) {
6643                         n *= nvshift[shift];
6644                         /* If an NV has not enough bits in its
6645                          * mantissa to represent an UV this summing of
6646                          * small low-order numbers is a waste of time
6647                          * (because the NV cannot preserve the
6648                          * low-order bits anyway): we could just
6649                          * remember when did we overflow and in the
6650                          * end just multiply n by the right
6651                          * amount. */
6652                         n += (NV) b;
6653                     }
6654                     break;
6655                 }
6656             }
6657
6658           /* if we get here, we had success: make a scalar value from
6659              the number.
6660           */
6661           out:
6662             sv = NEWSV(92,0);
6663             if (overflowed) {
6664                 dTHR;
6665                 if (ckWARN(WARN_PORTABLE) && n > 4294967295.0)
6666                     Perl_warner(aTHX_ WARN_PORTABLE,
6667                                 "%s number > %s non-portable",
6668                                 Base, max);
6669                 sv_setnv(sv, n);
6670             }
6671             else {
6672 #if UVSIZE > 4
6673                 dTHR;
6674                 if (ckWARN(WARN_PORTABLE) && u > 0xffffffff)
6675                     Perl_warner(aTHX_ WARN_PORTABLE,
6676                                 "%s number > %s non-portable",
6677                                 Base, max);
6678 #endif
6679                 sv_setuv(sv, u);
6680             }
6681             if (PL_hints & HINT_NEW_BINARY)
6682                 sv = new_constant(start, s - start, "binary", sv, Nullsv, NULL);
6683         }
6684         break;
6685
6686     /*
6687       handle decimal numbers.
6688       we're also sent here when we read a 0 as the first digit
6689     */
6690     case '1': case '2': case '3': case '4': case '5':
6691     case '6': case '7': case '8': case '9': case '.':
6692       decimal:
6693         d = PL_tokenbuf;
6694         e = PL_tokenbuf + sizeof PL_tokenbuf - 6; /* room for various punctuation */
6695         floatit = FALSE;
6696
6697         /* read next group of digits and _ and copy into d */
6698         while (isDIGIT(*s) || *s == '_') {
6699             /* skip underscores, checking for misplaced ones 
6700                if -w is on
6701             */
6702             if (*s == '_') {
6703                 dTHR;                   /* only for ckWARN */
6704                 if (ckWARN(WARN_SYNTAX) && lastub && s - lastub != 3)
6705                     Perl_warner(aTHX_ WARN_SYNTAX, "Misplaced _ in number");
6706                 lastub = ++s;
6707             }
6708             else {
6709                 /* check for end of fixed-length buffer */
6710                 if (d >= e)
6711                     Perl_croak(aTHX_ number_too_long);
6712                 /* if we're ok, copy the character */
6713                 *d++ = *s++;
6714             }
6715         }
6716
6717         /* final misplaced underbar check */
6718         if (lastub && s - lastub != 3) {
6719             dTHR;
6720             if (ckWARN(WARN_SYNTAX))
6721                 Perl_warner(aTHX_ WARN_SYNTAX, "Misplaced _ in number");
6722         }
6723
6724         /* read a decimal portion if there is one.  avoid
6725            3..5 being interpreted as the number 3. followed
6726            by .5
6727         */
6728         if (*s == '.' && s[1] != '.') {
6729             floatit = TRUE;
6730             *d++ = *s++;
6731
6732             /* copy, ignoring underbars, until we run out of
6733                digits.  Note: no misplaced underbar checks!
6734             */
6735             for (; isDIGIT(*s) || *s == '_'; s++) {
6736                 /* fixed length buffer check */
6737                 if (d >= e)
6738                     Perl_croak(aTHX_ number_too_long);
6739                 if (*s != '_')
6740                     *d++ = *s;
6741             }
6742         }
6743
6744         /* read exponent part, if present */
6745         if (*s && strchr("eE",*s) && strchr("+-0123456789",s[1])) {
6746             floatit = TRUE;
6747             s++;
6748
6749             /* regardless of whether user said 3E5 or 3e5, use lower 'e' */
6750             *d++ = 'e';         /* At least some Mach atof()s don't grok 'E' */
6751
6752             /* allow positive or negative exponent */
6753             if (*s == '+' || *s == '-')
6754                 *d++ = *s++;
6755
6756             /* read digits of exponent (no underbars :-) */
6757             while (isDIGIT(*s)) {
6758                 if (d >= e)
6759                     Perl_croak(aTHX_ number_too_long);
6760                 *d++ = *s++;
6761             }
6762         }
6763
6764         /* terminate the string */
6765         *d = '\0';
6766
6767         /* make an sv from the string */
6768         sv = NEWSV(92,0);
6769
6770         value = Atof(PL_tokenbuf);
6771
6772         /* 
6773            See if we can make do with an integer value without loss of
6774            precision.  We use I_V to cast to an int, because some
6775            compilers have issues.  Then we try casting it back and see
6776            if it was the same.  We only do this if we know we
6777            specifically read an integer.
6778
6779            Note: if floatit is true, then we don't need to do the
6780            conversion at all.
6781         */
6782         tryiv = I_V(value);
6783         if (!floatit && (NV)tryiv == value)
6784             sv_setiv(sv, tryiv);
6785         else
6786             sv_setnv(sv, value);
6787         if ( floatit ? (PL_hints & HINT_NEW_FLOAT) :
6788                        (PL_hints & HINT_NEW_INTEGER) )
6789             sv = new_constant(PL_tokenbuf, d - PL_tokenbuf, 
6790                               (floatit ? "float" : "integer"),
6791                               sv, Nullsv, NULL);
6792         break;
6793     }
6794
6795     /* make the op for the constant and return */
6796
6797     yylval.opval = newSVOP(OP_CONST, 0, sv);
6798
6799     return s;
6800 }
6801
6802 STATIC char *
6803 S_scan_formline(pTHX_ register char *s)
6804 {
6805     dTHR;
6806     register char *eol;
6807     register char *t;
6808     SV *stuff = newSVpvn("",0);
6809     bool needargs = FALSE;
6810
6811     while (!needargs) {
6812         if (*s == '.' || *s == '}') {
6813             /*SUPPRESS 530*/
6814 #ifdef PERL_STRICT_CR
6815             for (t = s+1;*t == ' ' || *t == '\t'; t++) ;
6816 #else
6817             for (t = s+1;*t == ' ' || *t == '\t' || *t == '\r'; t++) ;
6818 #endif
6819             if (*t == '\n' || t == PL_bufend)
6820                 break;
6821         }
6822         if (PL_in_eval && !PL_rsfp) {
6823             eol = strchr(s,'\n');
6824             if (!eol++)
6825                 eol = PL_bufend;
6826         }
6827         else
6828             eol = PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
6829         if (*s != '#') {
6830             for (t = s; t < eol; t++) {
6831                 if (*t == '~' && t[1] == '~' && SvCUR(stuff)) {
6832                     needargs = FALSE;
6833                     goto enough;        /* ~~ must be first line in formline */
6834                 }
6835                 if (*t == '@' || *t == '^')
6836                     needargs = TRUE;
6837             }
6838             sv_catpvn(stuff, s, eol-s);
6839         }
6840         s = eol;
6841         if (PL_rsfp) {
6842             s = filter_gets(PL_linestr, PL_rsfp, 0);
6843             PL_oldoldbufptr = PL_oldbufptr = PL_bufptr = PL_linestart = SvPVX(PL_linestr);
6844             PL_bufend = PL_bufptr + SvCUR(PL_linestr);
6845             if (!s) {
6846                 s = PL_bufptr;
6847                 yyerror("Format not terminated");
6848                 break;
6849             }
6850         }
6851         incline(s);
6852     }
6853   enough:
6854     if (SvCUR(stuff)) {
6855         PL_expect = XTERM;
6856         if (needargs) {
6857             PL_lex_state = LEX_NORMAL;
6858             PL_nextval[PL_nexttoke].ival = 0;
6859             force_next(',');
6860         }
6861         else
6862             PL_lex_state = LEX_FORMLINE;
6863         PL_nextval[PL_nexttoke].opval = (OP*)newSVOP(OP_CONST, 0, stuff);
6864         force_next(THING);
6865         PL_nextval[PL_nexttoke].ival = OP_FORMLINE;
6866         force_next(LSTOP);
6867     }
6868     else {
6869         SvREFCNT_dec(stuff);
6870         PL_lex_formbrack = 0;
6871         PL_bufptr = s;
6872     }
6873     return s;
6874 }
6875
6876 STATIC void
6877 S_set_csh(pTHX)
6878 {
6879 #ifdef CSH
6880     if (!PL_cshlen)
6881         PL_cshlen = strlen(PL_cshname);
6882 #endif
6883 }
6884
6885 I32
6886 Perl_start_subparse(pTHX_ I32 is_format, U32 flags)
6887 {
6888     dTHR;
6889     I32 oldsavestack_ix = PL_savestack_ix;
6890     CV* outsidecv = PL_compcv;
6891     AV* comppadlist;
6892
6893     if (PL_compcv) {
6894         assert(SvTYPE(PL_compcv) == SVt_PVCV);
6895     }
6896     save_I32(&PL_subline);
6897     save_item(PL_subname);
6898     SAVEI32(PL_padix);
6899     SAVESPTR(PL_curpad);
6900     SAVESPTR(PL_comppad);
6901     SAVESPTR(PL_comppad_name);
6902     SAVESPTR(PL_compcv);
6903     SAVEI32(PL_comppad_name_fill);
6904     SAVEI32(PL_min_intro_pending);
6905     SAVEI32(PL_max_intro_pending);
6906     SAVEI32(PL_pad_reset_pending);
6907
6908     PL_compcv = (CV*)NEWSV(1104,0);
6909     sv_upgrade((SV *)PL_compcv, is_format ? SVt_PVFM : SVt_PVCV);
6910     CvFLAGS(PL_compcv) |= flags;
6911
6912     PL_comppad = newAV();
6913     av_push(PL_comppad, Nullsv);
6914     PL_curpad = AvARRAY(PL_comppad);
6915     PL_comppad_name = newAV();
6916     PL_comppad_name_fill = 0;
6917     PL_min_intro_pending = 0;
6918     PL_padix = 0;
6919     PL_subline = PL_curcop->cop_line;
6920 #ifdef USE_THREADS
6921     av_store(PL_comppad_name, 0, newSVpvn("@_", 2));
6922     PL_curpad[0] = (SV*)newAV();
6923     SvPADMY_on(PL_curpad[0]);   /* XXX Needed? */
6924 #endif /* USE_THREADS */
6925
6926     comppadlist = newAV();
6927     AvREAL_off(comppadlist);
6928     av_store(comppadlist, 0, (SV*)PL_comppad_name);
6929     av_store(comppadlist, 1, (SV*)PL_comppad);
6930
6931     CvPADLIST(PL_compcv) = comppadlist;
6932     CvOUTSIDE(PL_compcv) = (CV*)SvREFCNT_inc(outsidecv);
6933 #ifdef USE_THREADS
6934     CvOWNER(PL_compcv) = 0;
6935     New(666, CvMUTEXP(PL_compcv), 1, perl_mutex);
6936     MUTEX_INIT(CvMUTEXP(PL_compcv));
6937 #endif /* USE_THREADS */
6938
6939     return oldsavestack_ix;
6940 }
6941
6942 int
6943 Perl_yywarn(pTHX_ char *s)
6944 {
6945     dTHR;
6946     PL_in_eval |= EVAL_WARNONLY;
6947     yyerror(s);
6948     PL_in_eval &= ~EVAL_WARNONLY;
6949     return 0;
6950 }
6951
6952 int
6953 Perl_yyerror(pTHX_ char *s)
6954 {
6955     dTHR;
6956     char *where = NULL;
6957     char *context = NULL;
6958     int contlen = -1;
6959     SV *msg;
6960
6961     if (!yychar || (yychar == ';' && !PL_rsfp))
6962         where = "at EOF";
6963     else if (PL_bufptr > PL_oldoldbufptr && PL_bufptr - PL_oldoldbufptr < 200 &&
6964       PL_oldoldbufptr != PL_oldbufptr && PL_oldbufptr != PL_bufptr) {
6965         while (isSPACE(*PL_oldoldbufptr))
6966             PL_oldoldbufptr++;
6967         context = PL_oldoldbufptr;
6968         contlen = PL_bufptr - PL_oldoldbufptr;
6969     }
6970     else if (PL_bufptr > PL_oldbufptr && PL_bufptr - PL_oldbufptr < 200 &&
6971       PL_oldbufptr != PL_bufptr) {
6972         while (isSPACE(*PL_oldbufptr))
6973             PL_oldbufptr++;
6974         context = PL_oldbufptr;
6975         contlen = PL_bufptr - PL_oldbufptr;
6976     }
6977     else if (yychar > 255)
6978         where = "next token ???";
6979     else if ((yychar & 127) == 127) {
6980         if (PL_lex_state == LEX_NORMAL ||
6981            (PL_lex_state == LEX_KNOWNEXT && PL_lex_defer == LEX_NORMAL))
6982             where = "at end of line";
6983         else if (PL_lex_inpat)
6984             where = "within pattern";
6985         else
6986             where = "within string";
6987     }
6988     else {
6989         SV *where_sv = sv_2mortal(newSVpvn("next char ", 10));
6990         if (yychar < 32)
6991             Perl_sv_catpvf(aTHX_ where_sv, "^%c", toCTRL(yychar));
6992         else if (isPRINT_LC(yychar))
6993             Perl_sv_catpvf(aTHX_ where_sv, "%c", yychar);
6994         else
6995             Perl_sv_catpvf(aTHX_ where_sv, "\\%03o", yychar & 255);
6996         where = SvPVX(where_sv);
6997     }
6998     msg = sv_2mortal(newSVpv(s, 0));
6999     Perl_sv_catpvf(aTHX_ msg, " at %_ line %"IVdf", ",
7000               GvSV(PL_curcop->cop_filegv), (IV)PL_curcop->cop_line);
7001     if (context)
7002         Perl_sv_catpvf(aTHX_ msg, "near \"%.*s\"\n", contlen, context);
7003     else
7004         Perl_sv_catpvf(aTHX_ msg, "%s\n", where);
7005     if (PL_multi_start < PL_multi_end && (U32)(PL_curcop->cop_line - PL_multi_end) <= 1) {
7006         Perl_sv_catpvf(aTHX_ msg,
7007         "  (Might be a runaway multi-line %c%c string starting on line %"IVdf")\n",
7008                 (int)PL_multi_open,(int)PL_multi_close,(IV)PL_multi_start);
7009         PL_multi_end = 0;
7010     }
7011     if (PL_in_eval & EVAL_WARNONLY)
7012         Perl_warn(aTHX_ "%_", msg);
7013     else
7014         qerror(msg);
7015     if (PL_error_count >= 10)
7016         Perl_croak(aTHX_ "%_ has too many errors.\n", GvSV(PL_curcop->cop_filegv));
7017     PL_in_my = 0;
7018     PL_in_my_stash = Nullhv;
7019     return 0;
7020 }
7021
7022
7023 #ifdef PERL_OBJECT
7024 #define NO_XSLOCKS
7025 #include "XSUB.h"
7026 #endif
7027
7028 /*
7029  * restore_rsfp
7030  * Restore a source filter.
7031  */
7032
7033 static void
7034 restore_rsfp(pTHXo_ void *f)
7035 {
7036     PerlIO *fp = (PerlIO*)f;
7037
7038     if (PL_rsfp == PerlIO_stdin())
7039         PerlIO_clearerr(PL_rsfp);
7040     else if (PL_rsfp && (PL_rsfp != fp))
7041         PerlIO_close(PL_rsfp);
7042     PL_rsfp = fp;
7043 }
7044
7045 /*
7046  * restore_expect
7047  * Restores the state of PL_expect when the lexing that begun with a
7048  * start_lex() call has ended.
7049  */ 
7050
7051 static void
7052 restore_expect(pTHXo_ void *e)
7053 {
7054     /* a safe way to store a small integer in a pointer */
7055     PL_expect = (expectation)((char *)e - PL_tokenbuf);
7056 }
7057
7058 /*
7059  * restore_lex_expect
7060  * Restores the state of PL_lex_expect when the lexing that begun with a
7061  * start_lex() call has ended.
7062  */ 
7063
7064 static void
7065 restore_lex_expect(pTHXo_ void *e)
7066 {
7067     /* a safe way to store a small integer in a pointer */
7068     PL_lex_expect = (expectation)((char *)e - PL_tokenbuf);
7069 }