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