3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 * 2000, 2001, 2002, 2003, 2004, 2005, by Larry Wall and others
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
12 * "It all comes from here, the stench and the peril." --Frodo
16 * This file is the lexer for Perl. It's closely linked to the
19 * The main routine is yylex(), which returns the next token.
23 #define PERL_IN_TOKE_C
26 #define yychar (*PL_yycharp)
27 #define yylval (*PL_yylvalp)
29 static const char ident_too_long[] =
30 "Identifier too long";
31 static const char c_without_g[] =
32 "Use of /c modifier is meaningless without /g";
33 static const char c_in_subst[] =
34 "Use of /c modifier is meaningless in s///";
36 static void restore_rsfp(pTHX_ void *f);
37 #ifndef PERL_NO_UTF16_FILTER
38 static I32 utf16_textfilter(pTHX_ int idx, SV *sv, int maxlen);
39 static I32 utf16rev_textfilter(pTHX_ int idx, SV *sv, int maxlen);
42 #define XFAKEBRACK 128
45 #ifdef USE_UTF8_SCRIPTS
46 # define UTF (!IN_BYTES)
48 # define UTF ((PL_linestr && DO_UTF8(PL_linestr)) || (PL_hints & HINT_UTF8))
51 /* In variables named $^X, these are the legal values for X.
52 * 1999-02-27 mjd-perl-patch@plover.com */
53 #define isCONTROLVAR(x) (isUPPER(x) || strchr("[\\]^_?", (x)))
55 /* On MacOS, respect nonbreaking spaces */
56 #ifdef MACOS_TRADITIONAL
57 #define SPACE_OR_TAB(c) ((c)==' '||(c)=='\312'||(c)=='\t')
59 #define SPACE_OR_TAB(c) ((c)==' '||(c)=='\t')
62 /* LEX_* are values for PL_lex_state, the state of the lexer.
63 * They are arranged oddly so that the guard on the switch statement
64 * can get by with a single comparison (if the compiler is smart enough).
67 /* #define LEX_NOTPARSING 11 is done in perl.h. */
70 #define LEX_INTERPNORMAL 9
71 #define LEX_INTERPCASEMOD 8
72 #define LEX_INTERPPUSH 7
73 #define LEX_INTERPSTART 6
74 #define LEX_INTERPEND 5
75 #define LEX_INTERPENDMAYBE 4
76 #define LEX_INTERPCONCAT 3
77 #define LEX_INTERPCONST 2
78 #define LEX_FORMLINE 1
79 #define LEX_KNOWNEXT 0
82 static const char* const lex_state_names[] = {
101 #include "keywords.h"
103 /* CLINE is a macro that ensures PL_copline has a sane value */
108 #define CLINE (PL_copline = (CopLINE(PL_curcop) < PL_copline ? CopLINE(PL_curcop) : PL_copline))
111 * Convenience functions to return different tokens and prime the
112 * lexer for the next token. They all take an argument.
114 * TOKEN : generic token (used for '(', DOLSHARP, etc)
115 * OPERATOR : generic operator
116 * AOPERATOR : assignment operator
117 * PREBLOCK : beginning the block after an if, while, foreach, ...
118 * PRETERMBLOCK : beginning a non-code-defining {} block (eg, hash ref)
119 * PREREF : *EXPR where EXPR is not a simple identifier
120 * TERM : expression term
121 * LOOPX : loop exiting command (goto, last, dump, etc)
122 * FTST : file test operator
123 * FUN0 : zero-argument function
124 * FUN1 : not used, except for not, which isn't a UNIOP
125 * BOop : bitwise or or xor
127 * SHop : shift operator
128 * PWop : power operator
129 * PMop : pattern-matching operator
130 * Aop : addition-level operator
131 * Mop : multiplication-level operator
132 * Eop : equality-testing operator
133 * Rop : relational operator <= != gt
135 * Also see LOP and lop() below.
138 #ifdef DEBUGGING /* Serve -DT. */
139 # define REPORT(retval) tokereport(s,(int)retval)
141 # define REPORT(retval) (retval)
144 #define TOKEN(retval) return ( PL_bufptr = s, REPORT(retval))
145 #define OPERATOR(retval) return (PL_expect = XTERM, PL_bufptr = s, REPORT(retval))
146 #define AOPERATOR(retval) return ao((PL_expect = XTERM, PL_bufptr = s, REPORT(retval)))
147 #define PREBLOCK(retval) return (PL_expect = XBLOCK,PL_bufptr = s, REPORT(retval))
148 #define PRETERMBLOCK(retval) return (PL_expect = XTERMBLOCK,PL_bufptr = s, REPORT(retval))
149 #define PREREF(retval) return (PL_expect = XREF,PL_bufptr = s, REPORT(retval))
150 #define TERM(retval) return (CLINE, PL_expect = XOPERATOR, PL_bufptr = s, REPORT(retval))
151 #define LOOPX(f) return (yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)LOOPEX))
152 #define FTST(f) return (yylval.ival=f, PL_expect=XTERMORDORDOR, PL_bufptr=s, REPORT((int)UNIOP))
153 #define FUN0(f) return (yylval.ival=f, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC0))
154 #define FUN1(f) return (yylval.ival=f, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC1))
155 #define BOop(f) return ao((yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)BITOROP)))
156 #define BAop(f) return ao((yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)BITANDOP)))
157 #define SHop(f) return ao((yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)SHIFTOP)))
158 #define PWop(f) return ao((yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)POWOP)))
159 #define PMop(f) return(yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)MATCHOP))
160 #define Aop(f) return ao((yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)ADDOP)))
161 #define Mop(f) return ao((yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)MULOP)))
162 #define Eop(f) return (yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)EQOP))
163 #define Rop(f) return (yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)RELOP))
165 /* This bit of chicanery makes a unary function followed by
166 * a parenthesis into a function with one argument, highest precedence.
167 * The UNIDOR macro is for unary functions that can be followed by the //
168 * operator (such as C<shift // 0>).
170 #define UNI2(f,x) { \
174 PL_last_uni = PL_oldbufptr; \
175 PL_last_lop_op = f; \
177 return REPORT( (int)FUNC1 ); \
179 return REPORT( *s=='(' ? (int)FUNC1 : (int)UNIOP ); \
181 #define UNI(f) UNI2(f,XTERM)
182 #define UNIDOR(f) UNI2(f,XTERMORDORDOR)
184 #define UNIBRACK(f) { \
187 PL_last_uni = PL_oldbufptr; \
189 return REPORT( (int)FUNC1 ); \
191 return REPORT( (*s == '(') ? (int)FUNC1 : (int)UNIOP ); \
194 /* grandfather return to old style */
195 #define OLDLOP(f) return(yylval.ival=f,PL_expect = XTERM,PL_bufptr = s,(int)LSTOP)
199 /* how to interpret the yylval associated with the token */
203 TOKENTYPE_OPNUM, /* yylval.ival contains an opcode number */
209 static struct debug_tokens { const int token, type; const char *name; }
210 const debug_tokens[] =
212 { ADDOP, TOKENTYPE_OPNUM, "ADDOP" },
213 { ANDAND, TOKENTYPE_NONE, "ANDAND" },
214 { ANDOP, TOKENTYPE_NONE, "ANDOP" },
215 { ANONSUB, TOKENTYPE_IVAL, "ANONSUB" },
216 { ARROW, TOKENTYPE_NONE, "ARROW" },
217 { ASSIGNOP, TOKENTYPE_OPNUM, "ASSIGNOP" },
218 { BITANDOP, TOKENTYPE_OPNUM, "BITANDOP" },
219 { BITOROP, TOKENTYPE_OPNUM, "BITOROP" },
220 { COLONATTR, TOKENTYPE_NONE, "COLONATTR" },
221 { CONTINUE, TOKENTYPE_NONE, "CONTINUE" },
222 { DO, TOKENTYPE_NONE, "DO" },
223 { DOLSHARP, TOKENTYPE_NONE, "DOLSHARP" },
224 { DORDOR, TOKENTYPE_NONE, "DORDOR" },
225 { DOROP, TOKENTYPE_OPNUM, "DOROP" },
226 { DOTDOT, TOKENTYPE_IVAL, "DOTDOT" },
227 { ELSE, TOKENTYPE_NONE, "ELSE" },
228 { ELSIF, TOKENTYPE_IVAL, "ELSIF" },
229 { EQOP, TOKENTYPE_OPNUM, "EQOP" },
230 { FOR, TOKENTYPE_IVAL, "FOR" },
231 { FORMAT, TOKENTYPE_NONE, "FORMAT" },
232 { FUNC, TOKENTYPE_OPNUM, "FUNC" },
233 { FUNC0, TOKENTYPE_OPNUM, "FUNC0" },
234 { FUNC0SUB, TOKENTYPE_OPVAL, "FUNC0SUB" },
235 { FUNC1, TOKENTYPE_OPNUM, "FUNC1" },
236 { FUNCMETH, TOKENTYPE_OPVAL, "FUNCMETH" },
237 { HASHBRACK, TOKENTYPE_NONE, "HASHBRACK" },
238 { IF, TOKENTYPE_IVAL, "IF" },
239 { LABEL, TOKENTYPE_PVAL, "LABEL" },
240 { LOCAL, TOKENTYPE_IVAL, "LOCAL" },
241 { LOOPEX, TOKENTYPE_OPNUM, "LOOPEX" },
242 { LSTOP, TOKENTYPE_OPNUM, "LSTOP" },
243 { LSTOPSUB, TOKENTYPE_OPVAL, "LSTOPSUB" },
244 { MATCHOP, TOKENTYPE_OPNUM, "MATCHOP" },
245 { METHOD, TOKENTYPE_OPVAL, "METHOD" },
246 { MULOP, TOKENTYPE_OPNUM, "MULOP" },
247 { MY, TOKENTYPE_IVAL, "MY" },
248 { MYSUB, TOKENTYPE_NONE, "MYSUB" },
249 { NOAMP, TOKENTYPE_NONE, "NOAMP" },
250 { NOTOP, TOKENTYPE_NONE, "NOTOP" },
251 { OROP, TOKENTYPE_IVAL, "OROP" },
252 { OROR, TOKENTYPE_NONE, "OROR" },
253 { PACKAGE, TOKENTYPE_NONE, "PACKAGE" },
254 { PMFUNC, TOKENTYPE_OPVAL, "PMFUNC" },
255 { POSTDEC, TOKENTYPE_NONE, "POSTDEC" },
256 { POSTINC, TOKENTYPE_NONE, "POSTINC" },
257 { POWOP, TOKENTYPE_OPNUM, "POWOP" },
258 { PREDEC, TOKENTYPE_NONE, "PREDEC" },
259 { PREINC, TOKENTYPE_NONE, "PREINC" },
260 { PRIVATEREF, TOKENTYPE_OPVAL, "PRIVATEREF" },
261 { REFGEN, TOKENTYPE_NONE, "REFGEN" },
262 { RELOP, TOKENTYPE_OPNUM, "RELOP" },
263 { SHIFTOP, TOKENTYPE_OPNUM, "SHIFTOP" },
264 { SUB, TOKENTYPE_NONE, "SUB" },
265 { THING, TOKENTYPE_OPVAL, "THING" },
266 { UMINUS, TOKENTYPE_NONE, "UMINUS" },
267 { UNIOP, TOKENTYPE_OPNUM, "UNIOP" },
268 { UNIOPSUB, TOKENTYPE_OPVAL, "UNIOPSUB" },
269 { UNLESS, TOKENTYPE_IVAL, "UNLESS" },
270 { UNTIL, TOKENTYPE_IVAL, "UNTIL" },
271 { USE, TOKENTYPE_IVAL, "USE" },
272 { WHILE, TOKENTYPE_IVAL, "WHILE" },
273 { WORD, TOKENTYPE_OPVAL, "WORD" },
274 { 0, TOKENTYPE_NONE, 0 }
277 /* dump the returned token in rv, plus any optional arg in yylval */
280 S_tokereport(pTHX_ const char* s, I32 rv)
283 const char *name = Nullch;
284 enum token_type type = TOKENTYPE_NONE;
285 const struct debug_tokens *p;
286 SV* const report = newSVpvn("<== ", 4);
288 for (p = debug_tokens; p->token; p++) {
289 if (p->token == (int)rv) {
296 Perl_sv_catpv(aTHX_ report, name);
297 else if ((char)rv > ' ' && (char)rv < '~')
298 Perl_sv_catpvf(aTHX_ report, "'%c'", (char)rv);
300 Perl_sv_catpv(aTHX_ report, "EOF");
302 Perl_sv_catpvf(aTHX_ report, "?? %"IVdf, (IV)rv);
305 case TOKENTYPE_GVVAL: /* doesn't appear to be used */
308 Perl_sv_catpvf(aTHX_ report, "(ival=%"IVdf")", (IV)yylval.ival);
310 case TOKENTYPE_OPNUM:
311 Perl_sv_catpvf(aTHX_ report, "(ival=op_%s)",
312 PL_op_name[yylval.ival]);
315 Perl_sv_catpvf(aTHX_ report, "(pval=\"%s\")", yylval.pval);
317 case TOKENTYPE_OPVAL:
319 Perl_sv_catpvf(aTHX_ report, "(opval=op_%s)",
320 PL_op_name[yylval.opval->op_type]);
322 Perl_sv_catpv(aTHX_ report, "(opval=null)");
325 Perl_sv_catpvf(aTHX_ report, " at line %"IVdf" [", (IV)CopLINE(PL_curcop));
326 if (s - PL_bufptr > 0)
327 sv_catpvn(report, PL_bufptr, s - PL_bufptr);
329 if (PL_oldbufptr && *PL_oldbufptr)
330 sv_catpv(report, PL_tokenbuf);
332 PerlIO_printf(Perl_debug_log, "### %s]\n", SvPV_nolen_const(report));
342 * This subroutine detects &&=, ||=, and //= and turns an ANDAND, OROR or DORDOR
343 * into an OP_ANDASSIGN, OP_ORASSIGN, or OP_DORASSIGN
347 S_ao(pTHX_ int toketype)
349 if (*PL_bufptr == '=') {
351 if (toketype == ANDAND)
352 yylval.ival = OP_ANDASSIGN;
353 else if (toketype == OROR)
354 yylval.ival = OP_ORASSIGN;
355 else if (toketype == DORDOR)
356 yylval.ival = OP_DORASSIGN;
364 * When Perl expects an operator and finds something else, no_op
365 * prints the warning. It always prints "<something> found where
366 * operator expected. It prints "Missing semicolon on previous line?"
367 * if the surprise occurs at the start of the line. "do you need to
368 * predeclare ..." is printed out for code like "sub bar; foo bar $x"
369 * where the compiler doesn't know if foo is a method call or a function.
370 * It prints "Missing operator before end of line" if there's nothing
371 * after the missing operator, or "... before <...>" if there is something
372 * after the missing operator.
376 S_no_op(pTHX_ const char *what, char *s)
378 char * const oldbp = PL_bufptr;
379 const bool is_first = (PL_oldbufptr == PL_linestart);
385 yywarn(Perl_form(aTHX_ "%s found where operator expected", what));
386 if (ckWARN_d(WARN_SYNTAX)) {
388 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
389 "\t(Missing semicolon on previous line?)\n");
390 else if (PL_oldoldbufptr && isIDFIRST_lazy_if(PL_oldoldbufptr,UTF)) {
392 for (t = PL_oldoldbufptr; *t && (isALNUM_lazy_if(t,UTF) || *t == ':'); t++) ;
393 if (t < PL_bufptr && isSPACE(*t))
394 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
395 "\t(Do you need to predeclare %.*s?)\n",
396 t - PL_oldoldbufptr, PL_oldoldbufptr);
400 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
401 "\t(Missing operator before %.*s?)\n", s - oldbp, oldbp);
409 * Complain about missing quote/regexp/heredoc terminator.
410 * If it's called with (char *)NULL then it cauterizes the line buffer.
411 * If we're in a delimited string and the delimiter is a control
412 * character, it's reformatted into a two-char sequence like ^C.
417 S_missingterm(pTHX_ char *s)
422 char * const nl = strrchr(s,'\n');
428 iscntrl(PL_multi_close)
430 PL_multi_close < 32 || PL_multi_close == 127
434 tmpbuf[1] = toCTRL(PL_multi_close);
439 *tmpbuf = (char)PL_multi_close;
443 q = strchr(s,'"') ? '\'' : '"';
444 Perl_croak(aTHX_ "Can't find string terminator %c%s%c anywhere before EOF",q,s,q);
452 Perl_deprecate(pTHX_ const char *s)
454 if (ckWARN(WARN_DEPRECATED))
455 Perl_warner(aTHX_ packWARN(WARN_DEPRECATED), "Use of %s is deprecated", s);
459 Perl_deprecate_old(pTHX_ const char *s)
461 /* This function should NOT be called for any new deprecated warnings */
462 /* Use Perl_deprecate instead */
464 /* It is here to maintain backward compatibility with the pre-5.8 */
465 /* warnings category hierarchy. The "deprecated" category used to */
466 /* live under the "syntax" category. It is now a top-level category */
467 /* in its own right. */
469 if (ckWARN2(WARN_DEPRECATED, WARN_SYNTAX))
470 Perl_warner(aTHX_ packWARN2(WARN_DEPRECATED, WARN_SYNTAX),
471 "Use of %s is deprecated", s);
476 * Deprecate a comma-less variable list.
482 deprecate_old("comma-less variable list");
486 * experimental text filters for win32 carriage-returns, utf16-to-utf8 and
487 * utf16-to-utf8-reversed.
490 #ifdef PERL_CR_FILTER
494 register const char *s = SvPVX_const(sv);
495 register const char * const e = s + SvCUR(sv);
496 /* outer loop optimized to do nothing if there are no CR-LFs */
498 if (*s++ == '\r' && *s == '\n') {
499 /* hit a CR-LF, need to copy the rest */
500 register char *d = s - 1;
503 if (*s == '\r' && s[1] == '\n')
514 S_cr_textfilter(pTHX_ int idx, SV *sv, int maxlen)
516 const I32 count = FILTER_READ(idx+1, sv, maxlen);
517 if (count > 0 && !maxlen)
525 * Initialize variables. Uses the Perl save_stack to save its state (for
526 * recursive calls to the parser).
530 Perl_lex_start(pTHX_ SV *line)
535 SAVEI32(PL_lex_dojoin);
536 SAVEI32(PL_lex_brackets);
537 SAVEI32(PL_lex_casemods);
538 SAVEI32(PL_lex_starts);
539 SAVEI32(PL_lex_state);
540 SAVEVPTR(PL_lex_inpat);
541 SAVEI32(PL_lex_inwhat);
542 if (PL_lex_state == LEX_KNOWNEXT) {
543 I32 toke = PL_nexttoke;
544 while (--toke >= 0) {
545 SAVEI32(PL_nexttype[toke]);
546 SAVEVPTR(PL_nextval[toke]);
548 SAVEI32(PL_nexttoke);
550 SAVECOPLINE(PL_curcop);
553 SAVEPPTR(PL_oldbufptr);
554 SAVEPPTR(PL_oldoldbufptr);
555 SAVEPPTR(PL_last_lop);
556 SAVEPPTR(PL_last_uni);
557 SAVEPPTR(PL_linestart);
558 SAVESPTR(PL_linestr);
559 SAVEGENERICPV(PL_lex_brackstack);
560 SAVEGENERICPV(PL_lex_casestack);
561 SAVEDESTRUCTOR_X(restore_rsfp, PL_rsfp);
562 SAVESPTR(PL_lex_stuff);
563 SAVEI32(PL_lex_defer);
564 SAVEI32(PL_sublex_info.sub_inwhat);
565 SAVESPTR(PL_lex_repl);
567 SAVEINT(PL_lex_expect);
569 PL_lex_state = LEX_NORMAL;
573 Newx(PL_lex_brackstack, 120, char);
574 Newx(PL_lex_casestack, 12, char);
576 *PL_lex_casestack = '\0';
579 PL_lex_stuff = Nullsv;
580 PL_lex_repl = Nullsv;
584 PL_sublex_info.sub_inwhat = 0;
586 if (SvREADONLY(PL_linestr))
587 PL_linestr = sv_2mortal(newSVsv(PL_linestr));
588 s = SvPV_const(PL_linestr, len);
589 if (!len || s[len-1] != ';') {
590 if (!(SvFLAGS(PL_linestr) & SVs_TEMP))
591 PL_linestr = sv_2mortal(newSVsv(PL_linestr));
592 sv_catpvn(PL_linestr, "\n;", 2);
594 SvTEMP_off(PL_linestr);
595 PL_oldoldbufptr = PL_oldbufptr = PL_bufptr = PL_linestart = SvPVX(PL_linestr);
596 PL_bufend = PL_bufptr + SvCUR(PL_linestr);
597 PL_last_lop = PL_last_uni = Nullch;
603 * Finalizer for lexing operations. Must be called when the parser is
604 * done with the lexer.
610 PL_doextract = FALSE;
615 * This subroutine has nothing to do with tilting, whether at windmills
616 * or pinball tables. Its name is short for "increment line". It
617 * increments the current line number in CopLINE(PL_curcop) and checks
618 * to see whether the line starts with a comment of the form
619 * # line 500 "foo.pm"
620 * If so, it sets the current line number and file to the values in the comment.
624 S_incline(pTHX_ char *s)
631 CopLINE_inc(PL_curcop);
634 while (SPACE_OR_TAB(*s)) s++;
635 if (strnEQ(s, "line", 4))
639 if (SPACE_OR_TAB(*s))
643 while (SPACE_OR_TAB(*s)) s++;
649 while (SPACE_OR_TAB(*s))
651 if (*s == '"' && (t = strchr(s+1, '"'))) {
656 for (t = s; !isSPACE(*t); t++) ;
659 while (SPACE_OR_TAB(*e) || *e == '\r' || *e == '\f')
661 if (*e != '\n' && *e != '\0')
662 return; /* false alarm */
668 const char *cf = CopFILE(PL_curcop);
669 if (cf && strlen(cf) > 7 && strnEQ(cf, "(eval ", 6)) {
670 /* must copy *{"::_<(eval N)[oldfilename:L]"}
671 * to *{"::_<newfilename"} */
672 char smallbuf[256], smallbuf2[256];
673 char *tmpbuf, *tmpbuf2;
675 STRLEN tmplen = strlen(cf);
676 STRLEN tmplen2 = strlen(s);
677 if (tmplen + 3 < sizeof smallbuf)
680 Newx(tmpbuf, tmplen + 3, char);
681 if (tmplen2 + 3 < sizeof smallbuf2)
684 Newx(tmpbuf2, tmplen2 + 3, char);
685 tmpbuf[0] = tmpbuf2[0] = '_';
686 tmpbuf[1] = tmpbuf2[1] = '<';
687 memcpy(tmpbuf + 2, cf, ++tmplen);
688 memcpy(tmpbuf2 + 2, s, ++tmplen2);
690 gvp = (GV**)hv_fetch(PL_defstash, tmpbuf, tmplen, FALSE);
692 gv2 = *(GV**)hv_fetch(PL_defstash, tmpbuf2, tmplen2, TRUE);
694 gv_init(gv2, PL_defstash, tmpbuf2, tmplen2, FALSE);
695 /* adjust ${"::_<newfilename"} to store the new file name */
696 GvSV(gv2) = newSVpvn(tmpbuf2 + 2, tmplen2 - 2);
697 GvHV(gv2) = (HV*)SvREFCNT_inc(GvHV(*gvp));
698 GvAV(gv2) = (AV*)SvREFCNT_inc(GvAV(*gvp));
700 if (tmpbuf != smallbuf) Safefree(tmpbuf);
701 if (tmpbuf2 != smallbuf2) Safefree(tmpbuf2);
704 CopFILE_free(PL_curcop);
705 CopFILE_set(PL_curcop, s);
708 CopLINE_set(PL_curcop, atoi(n)-1);
713 * Called to gobble the appropriate amount and type of whitespace.
714 * Skips comments as well.
718 S_skipspace(pTHX_ register char *s)
720 if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) {
721 while (s < PL_bufend && SPACE_OR_TAB(*s))
727 SSize_t oldprevlen, oldoldprevlen;
728 SSize_t oldloplen = 0, oldunilen = 0;
729 while (s < PL_bufend && isSPACE(*s)) {
730 if (*s++ == '\n' && PL_in_eval && !PL_rsfp)
735 if (s < PL_bufend && *s == '#') {
736 while (s < PL_bufend && *s != '\n')
740 if (PL_in_eval && !PL_rsfp) {
747 /* only continue to recharge the buffer if we're at the end
748 * of the buffer, we're not reading from a source filter, and
749 * we're in normal lexing mode
751 if (s < PL_bufend || !PL_rsfp || PL_sublex_info.sub_inwhat ||
752 PL_lex_state == LEX_FORMLINE)
755 /* try to recharge the buffer */
756 if ((s = filter_gets(PL_linestr, PL_rsfp,
757 (prevlen = SvCUR(PL_linestr)))) == Nullch)
759 /* end of file. Add on the -p or -n magic */
762 ";}continue{print or die qq(-p destination: $!\\n);}");
763 PL_minus_n = PL_minus_p = 0;
765 else if (PL_minus_n) {
766 sv_setpvn(PL_linestr, ";}", 2);
770 sv_setpvn(PL_linestr,";", 1);
772 /* reset variables for next time we lex */
773 PL_oldoldbufptr = PL_oldbufptr = PL_bufptr = s = PL_linestart
775 PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
776 PL_last_lop = PL_last_uni = Nullch;
778 /* Close the filehandle. Could be from -P preprocessor,
779 * STDIN, or a regular file. If we were reading code from
780 * STDIN (because the commandline held no -e or filename)
781 * then we don't close it, we reset it so the code can
782 * read from STDIN too.
785 if (PL_preprocess && !PL_in_eval)
786 (void)PerlProc_pclose(PL_rsfp);
787 else if ((PerlIO*)PL_rsfp == PerlIO_stdin())
788 PerlIO_clearerr(PL_rsfp);
790 (void)PerlIO_close(PL_rsfp);
795 /* not at end of file, so we only read another line */
796 /* make corresponding updates to old pointers, for yyerror() */
797 oldprevlen = PL_oldbufptr - PL_bufend;
798 oldoldprevlen = PL_oldoldbufptr - PL_bufend;
800 oldunilen = PL_last_uni - PL_bufend;
802 oldloplen = PL_last_lop - PL_bufend;
803 PL_linestart = PL_bufptr = s + prevlen;
804 PL_bufend = s + SvCUR(PL_linestr);
806 PL_oldbufptr = s + oldprevlen;
807 PL_oldoldbufptr = s + oldoldprevlen;
809 PL_last_uni = s + oldunilen;
811 PL_last_lop = s + oldloplen;
814 /* debugger active and we're not compiling the debugger code,
815 * so store the line into the debugger's array of lines
817 if (PERLDB_LINE && PL_curstash != PL_debstash) {
818 SV * const sv = NEWSV(85,0);
820 sv_upgrade(sv, SVt_PVMG);
821 sv_setpvn(sv,PL_bufptr,PL_bufend-PL_bufptr);
824 av_store(CopFILEAV(PL_curcop),(I32)CopLINE(PL_curcop),sv);
831 * Check the unary operators to ensure there's no ambiguity in how they're
832 * used. An ambiguous piece of code would be:
834 * This doesn't mean rand() + 5. Because rand() is a unary operator,
835 * the +5 is its argument.
844 if (PL_oldoldbufptr != PL_last_uni)
846 while (isSPACE(*PL_last_uni))
848 for (s = PL_last_uni; isALNUM_lazy_if(s,UTF) || *s == '-'; s++) ;
849 if ((t = strchr(s, '(')) && t < PL_bufptr)
851 if (ckWARN_d(WARN_AMBIGUOUS)){
854 Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
855 "Warning: Use of \"%s\" without parentheses is ambiguous",
862 * LOP : macro to build a list operator. Its behaviour has been replaced
863 * with a subroutine, S_lop() for which LOP is just another name.
866 #define LOP(f,x) return lop(f,x,s)
870 * Build a list operator (or something that might be one). The rules:
871 * - if we have a next token, then it's a list operator [why?]
872 * - if the next thing is an opening paren, then it's a function
873 * - else it's a list operator
877 S_lop(pTHX_ I32 f, int x, char *s)
883 PL_last_lop = PL_oldbufptr;
884 PL_last_lop_op = (OPCODE)f;
886 return REPORT(LSTOP);
893 return REPORT(LSTOP);
898 * When the lexer realizes it knows the next token (for instance,
899 * it is reordering tokens for the parser) then it can call S_force_next
900 * to know what token to return the next time the lexer is called. Caller
901 * will need to set PL_nextval[], and possibly PL_expect to ensure the lexer
902 * handles the token correctly.
906 S_force_next(pTHX_ I32 type)
908 PL_nexttype[PL_nexttoke] = type;
910 if (PL_lex_state != LEX_KNOWNEXT) {
911 PL_lex_defer = PL_lex_state;
912 PL_lex_expect = PL_expect;
913 PL_lex_state = LEX_KNOWNEXT;
918 S_newSV_maybe_utf8(pTHX_ const char *start, STRLEN len)
920 SV * const sv = newSVpvn(start,len);
921 if (UTF && !IN_BYTES && is_utf8_string((const U8*)start, len))
928 * When the lexer knows the next thing is a word (for instance, it has
929 * just seen -> and it knows that the next char is a word char, then
930 * it calls S_force_word to stick the next word into the PL_next lookahead.
933 * char *start : buffer position (must be within PL_linestr)
934 * int token : PL_next will be this type of bare word (e.g., METHOD,WORD)
935 * int check_keyword : if true, Perl checks to make sure the word isn't
936 * a keyword (do this if the word is a label, e.g. goto FOO)
937 * int allow_pack : if true, : characters will also be allowed (require,
939 * int allow_initial_tick : used by the "sub" lexer only.
943 S_force_word(pTHX_ register char *start, int token, int check_keyword, int allow_pack, int allow_initial_tick)
948 start = skipspace(start);
950 if (isIDFIRST_lazy_if(s,UTF) ||
951 (allow_pack && *s == ':') ||
952 (allow_initial_tick && *s == '\'') )
954 s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, allow_pack, &len);
955 if (check_keyword && keyword(PL_tokenbuf, len))
957 if (token == METHOD) {
962 PL_expect = XOPERATOR;
965 PL_nextval[PL_nexttoke].opval
966 = (OP*)newSVOP(OP_CONST,0,
967 S_newSV_maybe_utf8(aTHX_ PL_tokenbuf, len));
968 PL_nextval[PL_nexttoke].opval->op_private |= OPpCONST_BARE;
976 * Called when the lexer wants $foo *foo &foo etc, but the program
977 * text only contains the "foo" portion. The first argument is a pointer
978 * to the "foo", and the second argument is the type symbol to prefix.
979 * Forces the next token to be a "WORD".
980 * Creates the symbol if it didn't already exist (via gv_fetchpv()).
984 S_force_ident(pTHX_ register const char *s, int kind)
987 OP* const o = (OP*)newSVOP(OP_CONST, 0, newSVpv(s,0));
988 PL_nextval[PL_nexttoke].opval = o;
991 o->op_private = OPpCONST_ENTERED;
992 /* XXX see note in pp_entereval() for why we forgo typo
993 warnings if the symbol must be introduced in an eval.
995 gv_fetchpv(s, PL_in_eval ? (GV_ADDMULTI | GV_ADDINEVAL) : TRUE,
996 kind == '$' ? SVt_PV :
997 kind == '@' ? SVt_PVAV :
998 kind == '%' ? SVt_PVHV :
1006 Perl_str_to_version(pTHX_ SV *sv)
1011 const char *start = SvPV_const(sv,len);
1012 const char * const end = start + len;
1013 const bool utf = SvUTF8(sv) ? TRUE : FALSE;
1014 while (start < end) {
1018 n = utf8n_to_uvchr((U8*)start, len, &skip, 0);
1023 retval += ((NV)n)/nshift;
1032 * Forces the next token to be a version number.
1033 * If the next token appears to be an invalid version number, (e.g. "v2b"),
1034 * and if "guessing" is TRUE, then no new token is created (and the caller
1035 * must use an alternative parsing method).
1039 S_force_version(pTHX_ char *s, int guessing)
1041 OP *version = Nullop;
1050 while (isDIGIT(*d) || *d == '_' || *d == '.')
1052 if (*d == ';' || isSPACE(*d) || *d == '}' || !*d) {
1054 s = scan_num(s, &yylval);
1055 version = yylval.opval;
1056 ver = cSVOPx(version)->op_sv;
1057 if (SvPOK(ver) && !SvNIOK(ver)) {
1058 SvUPGRADE(ver, SVt_PVNV);
1059 SvNV_set(ver, str_to_version(ver));
1060 SvNOK_on(ver); /* hint that it is a version */
1067 /* NOTE: The parser sees the package name and the VERSION swapped */
1068 PL_nextval[PL_nexttoke].opval = version;
1076 * Tokenize a quoted string passed in as an SV. It finds the next
1077 * chunk, up to end of string or a backslash. It may make a new
1078 * SV containing that chunk (if HINT_NEW_STRING is on). It also
1083 S_tokeq(pTHX_ SV *sv)
1086 register char *send;
1094 s = SvPV_force(sv, len);
1095 if (SvTYPE(sv) >= SVt_PVIV && SvIVX(sv) == -1)
1098 while (s < send && *s != '\\')
1103 if ( PL_hints & HINT_NEW_STRING ) {
1104 pv = sv_2mortal(newSVpvn(SvPVX_const(pv), len));
1110 if (s + 1 < send && (s[1] == '\\'))
1111 s++; /* all that, just for this */
1116 SvCUR_set(sv, d - SvPVX_const(sv));
1118 if ( PL_hints & HINT_NEW_STRING )
1119 return new_constant(NULL, 0, "q", sv, pv, "q");
1124 * Now come three functions related to double-quote context,
1125 * S_sublex_start, S_sublex_push, and S_sublex_done. They're used when
1126 * converting things like "\u\Lgnat" into ucfirst(lc("gnat")). They
1127 * interact with PL_lex_state, and create fake ( ... ) argument lists
1128 * to handle functions and concatenation.
1129 * They assume that whoever calls them will be setting up a fake
1130 * join call, because each subthing puts a ',' after it. This lets
1133 * join($, , 'lower ', lcfirst( 'uPpEr', ) ,)
1135 * (I'm not sure whether the spurious commas at the end of lcfirst's
1136 * arguments and join's arguments are created or not).
1141 * Assumes that yylval.ival is the op we're creating (e.g. OP_LCFIRST).
1143 * Pattern matching will set PL_lex_op to the pattern-matching op to
1144 * make (we return THING if yylval.ival is OP_NULL, PMFUNC otherwise).
1146 * OP_CONST and OP_READLINE are easy--just make the new op and return.
1148 * Everything else becomes a FUNC.
1150 * Sets PL_lex_state to LEX_INTERPPUSH unless (ival was OP_NULL or we
1151 * had an OP_CONST or OP_READLINE). This just sets us up for a
1152 * call to S_sublex_push().
1156 S_sublex_start(pTHX)
1158 const register I32 op_type = yylval.ival;
1160 if (op_type == OP_NULL) {
1161 yylval.opval = PL_lex_op;
1165 if (op_type == OP_CONST || op_type == OP_READLINE) {
1166 SV *sv = tokeq(PL_lex_stuff);
1168 if (SvTYPE(sv) == SVt_PVIV) {
1169 /* Overloaded constants, nothing fancy: Convert to SVt_PV: */
1171 const char *p = SvPV_const(sv, len);
1172 SV * const nsv = newSVpvn(p, len);
1178 yylval.opval = (OP*)newSVOP(op_type, 0, sv);
1179 PL_lex_stuff = Nullsv;
1180 /* Allow <FH> // "foo" */
1181 if (op_type == OP_READLINE)
1182 PL_expect = XTERMORDORDOR;
1186 PL_sublex_info.super_state = PL_lex_state;
1187 PL_sublex_info.sub_inwhat = op_type;
1188 PL_sublex_info.sub_op = PL_lex_op;
1189 PL_lex_state = LEX_INTERPPUSH;
1193 yylval.opval = PL_lex_op;
1203 * Create a new scope to save the lexing state. The scope will be
1204 * ended in S_sublex_done. Returns a '(', starting the function arguments
1205 * to the uc, lc, etc. found before.
1206 * Sets PL_lex_state to LEX_INTERPCONCAT.
1215 PL_lex_state = PL_sublex_info.super_state;
1216 SAVEI32(PL_lex_dojoin);
1217 SAVEI32(PL_lex_brackets);
1218 SAVEI32(PL_lex_casemods);
1219 SAVEI32(PL_lex_starts);
1220 SAVEI32(PL_lex_state);
1221 SAVEVPTR(PL_lex_inpat);
1222 SAVEI32(PL_lex_inwhat);
1223 SAVECOPLINE(PL_curcop);
1224 SAVEPPTR(PL_bufptr);
1225 SAVEPPTR(PL_bufend);
1226 SAVEPPTR(PL_oldbufptr);
1227 SAVEPPTR(PL_oldoldbufptr);
1228 SAVEPPTR(PL_last_lop);
1229 SAVEPPTR(PL_last_uni);
1230 SAVEPPTR(PL_linestart);
1231 SAVESPTR(PL_linestr);
1232 SAVEGENERICPV(PL_lex_brackstack);
1233 SAVEGENERICPV(PL_lex_casestack);
1235 PL_linestr = PL_lex_stuff;
1236 PL_lex_stuff = Nullsv;
1238 PL_bufend = PL_bufptr = PL_oldbufptr = PL_oldoldbufptr = PL_linestart
1239 = SvPVX(PL_linestr);
1240 PL_bufend += SvCUR(PL_linestr);
1241 PL_last_lop = PL_last_uni = Nullch;
1242 SAVEFREESV(PL_linestr);
1244 PL_lex_dojoin = FALSE;
1245 PL_lex_brackets = 0;
1246 Newx(PL_lex_brackstack, 120, char);
1247 Newx(PL_lex_casestack, 12, char);
1248 PL_lex_casemods = 0;
1249 *PL_lex_casestack = '\0';
1251 PL_lex_state = LEX_INTERPCONCAT;
1252 CopLINE_set(PL_curcop, (line_t)PL_multi_start);
1254 PL_lex_inwhat = PL_sublex_info.sub_inwhat;
1255 if (PL_lex_inwhat == OP_MATCH || PL_lex_inwhat == OP_QR || PL_lex_inwhat == OP_SUBST)
1256 PL_lex_inpat = PL_sublex_info.sub_op;
1258 PL_lex_inpat = Nullop;
1265 * Restores lexer state after a S_sublex_push.
1272 if (!PL_lex_starts++) {
1273 SV * const sv = newSVpvn("",0);
1274 if (SvUTF8(PL_linestr))
1276 PL_expect = XOPERATOR;
1277 yylval.opval = (OP*)newSVOP(OP_CONST, 0, sv);
1281 if (PL_lex_casemods) { /* oops, we've got some unbalanced parens */
1282 PL_lex_state = LEX_INTERPCASEMOD;
1286 /* Is there a right-hand side to take care of? (s//RHS/ or tr//RHS/) */
1287 if (PL_lex_repl && (PL_lex_inwhat == OP_SUBST || PL_lex_inwhat == OP_TRANS)) {
1288 PL_linestr = PL_lex_repl;
1290 PL_bufend = PL_bufptr = PL_oldbufptr = PL_oldoldbufptr = PL_linestart = SvPVX(PL_linestr);
1291 PL_bufend += SvCUR(PL_linestr);
1292 PL_last_lop = PL_last_uni = Nullch;
1293 SAVEFREESV(PL_linestr);
1294 PL_lex_dojoin = FALSE;
1295 PL_lex_brackets = 0;
1296 PL_lex_casemods = 0;
1297 *PL_lex_casestack = '\0';
1299 if (SvEVALED(PL_lex_repl)) {
1300 PL_lex_state = LEX_INTERPNORMAL;
1302 /* we don't clear PL_lex_repl here, so that we can check later
1303 whether this is an evalled subst; that means we rely on the
1304 logic to ensure sublex_done() is called again only via the
1305 branch (in yylex()) that clears PL_lex_repl, else we'll loop */
1308 PL_lex_state = LEX_INTERPCONCAT;
1309 PL_lex_repl = Nullsv;
1315 PL_bufend = SvPVX(PL_linestr);
1316 PL_bufend += SvCUR(PL_linestr);
1317 PL_expect = XOPERATOR;
1318 PL_sublex_info.sub_inwhat = 0;
1326 Extracts a pattern, double-quoted string, or transliteration. This
1329 It looks at lex_inwhat and PL_lex_inpat to find out whether it's
1330 processing a pattern (PL_lex_inpat is true), a transliteration
1331 (lex_inwhat & OP_TRANS is true), or a double-quoted string.
1333 Returns a pointer to the character scanned up to. Iff this is
1334 advanced from the start pointer supplied (ie if anything was
1335 successfully parsed), will leave an OP for the substring scanned
1336 in yylval. Caller must intuit reason for not parsing further
1337 by looking at the next characters herself.
1341 double-quoted style: \r and \n
1342 regexp special ones: \D \s
1344 backrefs: \1 (deprecated in substitution replacements)
1345 case and quoting: \U \Q \E
1346 stops on @ and $, but not for $ as tail anchor
1348 In transliterations:
1349 characters are VERY literal, except for - not at the start or end
1350 of the string, which indicates a range. scan_const expands the
1351 range to the full set of intermediate characters.
1353 In double-quoted strings:
1355 double-quoted style: \r and \n
1357 backrefs: \1 (deprecated)
1358 case and quoting: \U \Q \E
1361 scan_const does *not* construct ops to handle interpolated strings.
1362 It stops processing as soon as it finds an embedded $ or @ variable
1363 and leaves it to the caller to work out what's going on.
1365 @ in pattern could be: @foo, @{foo}, @$foo, @'foo, @::foo.
1367 $ in pattern could be $foo or could be tail anchor. Assumption:
1368 it's a tail anchor if $ is the last thing in the string, or if it's
1369 followed by one of ")| \n\t"
1371 \1 (backreferences) are turned into $1
1373 The structure of the code is
1374 while (there's a character to process) {
1375 handle transliteration ranges
1376 skip regexp comments
1377 skip # initiated comments in //x patterns
1378 check for embedded @foo
1379 check for embedded scalars
1381 leave intact backslashes from leave (below)
1382 deprecate \1 in strings and sub replacements
1383 handle string-changing backslashes \l \U \Q \E, etc.
1384 switch (what was escaped) {
1385 handle - in a transliteration (becomes a literal -)
1386 handle \132 octal characters
1387 handle 0x15 hex characters
1388 handle \cV (control V)
1389 handle printf backslashes (\f, \r, \n, etc)
1391 } (end if backslash)
1392 } (end while character to read)
1397 S_scan_const(pTHX_ char *start)
1399 register char *send = PL_bufend; /* end of the constant */
1400 SV *sv = NEWSV(93, send - start); /* sv for the constant */
1401 register char *s = start; /* start of the constant */
1402 register char *d = SvPVX(sv); /* destination for copies */
1403 bool dorange = FALSE; /* are we in a translit range? */
1404 bool didrange = FALSE; /* did we just finish a range? */
1405 I32 has_utf8 = FALSE; /* Output constant is UTF8 */
1406 I32 this_utf8 = UTF; /* The source string is assumed to be UTF8 */
1409 UV literal_endpoint = 0;
1412 const char *leaveit = /* set of acceptably-backslashed characters */
1414 ? "\\.^$@AGZdDwWsSbBpPXC+*?|()-nrtfeaxz0123456789[{]} \t\n\r\f\v#"
1417 if (PL_lex_inwhat == OP_TRANS && PL_sublex_info.sub_op) {
1418 /* If we are doing a trans and we know we want UTF8 set expectation */
1419 has_utf8 = PL_sublex_info.sub_op->op_private & (OPpTRANS_FROM_UTF|OPpTRANS_TO_UTF);
1420 this_utf8 = PL_sublex_info.sub_op->op_private & (PL_lex_repl ? OPpTRANS_FROM_UTF : OPpTRANS_TO_UTF);
1424 while (s < send || dorange) {
1425 /* get transliterations out of the way (they're most literal) */
1426 if (PL_lex_inwhat == OP_TRANS) {
1427 /* expand a range A-Z to the full set of characters. AIE! */
1429 I32 i; /* current expanded character */
1430 I32 min; /* first character in range */
1431 I32 max; /* last character in range */
1434 char * const c = (char*)utf8_hop((U8*)d, -1);
1438 *c = (char)UTF_TO_NATIVE(0xff);
1439 /* mark the range as done, and continue */
1445 i = d - SvPVX_const(sv); /* remember current offset */
1446 SvGROW(sv, SvLEN(sv) + 256); /* never more than 256 chars in a range */
1447 d = SvPVX(sv) + i; /* refresh d after realloc */
1448 d -= 2; /* eat the first char and the - */
1450 min = (U8)*d; /* first char in range */
1451 max = (U8)d[1]; /* last char in range */
1455 "Invalid range \"%c-%c\" in transliteration operator",
1456 (char)min, (char)max);
1460 if (literal_endpoint == 2 &&
1461 ((isLOWER(min) && isLOWER(max)) ||
1462 (isUPPER(min) && isUPPER(max)))) {
1464 for (i = min; i <= max; i++)
1466 *d++ = NATIVE_TO_NEED(has_utf8,i);
1468 for (i = min; i <= max; i++)
1470 *d++ = NATIVE_TO_NEED(has_utf8,i);
1475 for (i = min; i <= max; i++)
1478 /* mark the range as done, and continue */
1482 literal_endpoint = 0;
1487 /* range begins (ignore - as first or last char) */
1488 else if (*s == '-' && s+1 < send && s != start) {
1490 Perl_croak(aTHX_ "Ambiguous range in transliteration operator");
1493 *d++ = (char)UTF_TO_NATIVE(0xff); /* use illegal utf8 byte--see pmtrans */
1503 literal_endpoint = 0;
1508 /* if we get here, we're not doing a transliteration */
1510 /* skip for regexp comments /(?#comment)/ and code /(?{code})/,
1511 except for the last char, which will be done separately. */
1512 else if (*s == '(' && PL_lex_inpat && s[1] == '?') {
1514 while (s+1 < send && *s != ')')
1515 *d++ = NATIVE_TO_NEED(has_utf8,*s++);
1517 else if (s[2] == '{' /* This should match regcomp.c */
1518 || ((s[2] == 'p' || s[2] == '?') && s[3] == '{'))
1521 char *regparse = s + (s[2] == '{' ? 3 : 4);
1524 while (count && (c = *regparse)) {
1525 if (c == '\\' && regparse[1])
1533 if (*regparse != ')')
1534 regparse--; /* Leave one char for continuation. */
1535 while (s < regparse)
1536 *d++ = NATIVE_TO_NEED(has_utf8,*s++);
1540 /* likewise skip #-initiated comments in //x patterns */
1541 else if (*s == '#' && PL_lex_inpat &&
1542 ((PMOP*)PL_lex_inpat)->op_pmflags & PMf_EXTENDED) {
1543 while (s+1 < send && *s != '\n')
1544 *d++ = NATIVE_TO_NEED(has_utf8,*s++);
1547 /* check for embedded arrays
1548 (@foo, @::foo, @'foo, @{foo}, @$foo, @+, @-)
1550 else if (*s == '@' && s[1]
1551 && (isALNUM_lazy_if(s+1,UTF) || strchr(":'{$+-", s[1])))
1554 /* check for embedded scalars. only stop if we're sure it's a
1557 else if (*s == '$') {
1558 if (!PL_lex_inpat) /* not a regexp, so $ must be var */
1560 if (s + 1 < send && !strchr("()| \r\n\t", s[1]))
1561 break; /* in regexp, $ might be tail anchor */
1564 /* End of else if chain - OP_TRANS rejoin rest */
1567 if (*s == '\\' && s+1 < send) {
1570 /* some backslashes we leave behind */
1571 if (*leaveit && *s && strchr(leaveit, *s)) {
1572 *d++ = NATIVE_TO_NEED(has_utf8,'\\');
1573 *d++ = NATIVE_TO_NEED(has_utf8,*s++);
1577 /* deprecate \1 in strings and substitution replacements */
1578 if (PL_lex_inwhat == OP_SUBST && !PL_lex_inpat &&
1579 isDIGIT(*s) && *s != '0' && !isDIGIT(s[1]))
1581 if (ckWARN(WARN_SYNTAX))
1582 Perl_warner(aTHX_ packWARN(WARN_SYNTAX), "\\%c better written as $%c", *s, *s);
1587 /* string-change backslash escapes */
1588 if (PL_lex_inwhat != OP_TRANS && *s && strchr("lLuUEQ", *s)) {
1593 /* if we get here, it's either a quoted -, or a digit */
1596 /* quoted - in transliterations */
1598 if (PL_lex_inwhat == OP_TRANS) {
1608 Perl_warner(aTHX_ packWARN(WARN_MISC),
1609 "Unrecognized escape \\%c passed through",
1611 /* default action is to copy the quoted character */
1612 goto default_action;
1615 /* \132 indicates an octal constant */
1616 case '0': case '1': case '2': case '3':
1617 case '4': case '5': case '6': case '7':
1621 uv = grok_oct(s, &len, &flags, NULL);
1624 goto NUM_ESCAPE_INSERT;
1626 /* \x24 indicates a hex constant */
1630 char* const e = strchr(s, '}');
1631 I32 flags = PERL_SCAN_ALLOW_UNDERSCORES |
1632 PERL_SCAN_DISALLOW_PREFIX;
1637 yyerror("Missing right brace on \\x{}");
1641 uv = grok_hex(s, &len, &flags, NULL);
1647 I32 flags = PERL_SCAN_DISALLOW_PREFIX;
1648 uv = grok_hex(s, &len, &flags, NULL);
1654 /* Insert oct or hex escaped character.
1655 * There will always enough room in sv since such
1656 * escapes will be longer than any UTF-8 sequence
1657 * they can end up as. */
1659 /* We need to map to chars to ASCII before doing the tests
1662 if (!UNI_IS_INVARIANT(NATIVE_TO_UNI(uv))) {
1663 if (!has_utf8 && uv > 255) {
1664 /* Might need to recode whatever we have
1665 * accumulated so far if it contains any
1668 * (Can't we keep track of that and avoid
1669 * this rescan? --jhi)
1673 for (c = (U8 *) SvPVX(sv); c < (U8 *)d; c++) {
1674 if (!NATIVE_IS_INVARIANT(*c)) {
1679 const STRLEN offset = d - SvPVX_const(sv);
1681 d = SvGROW(sv, SvLEN(sv) + hicount + 1) + offset;
1685 while (src >= (const U8 *)SvPVX_const(sv)) {
1686 if (!NATIVE_IS_INVARIANT(*src)) {
1687 const U8 ch = NATIVE_TO_ASCII(*src);
1688 *dst-- = (U8)UTF8_EIGHT_BIT_LO(ch);
1689 *dst-- = (U8)UTF8_EIGHT_BIT_HI(ch);
1699 if (has_utf8 || uv > 255) {
1700 d = (char*)uvchr_to_utf8((U8*)d, uv);
1702 if (PL_lex_inwhat == OP_TRANS &&
1703 PL_sublex_info.sub_op) {
1704 PL_sublex_info.sub_op->op_private |=
1705 (PL_lex_repl ? OPpTRANS_FROM_UTF
1718 /* \N{LATIN SMALL LETTER A} is a named character */
1722 char* e = strchr(s, '}');
1728 yyerror("Missing right brace on \\N{}");
1732 if (e > s + 2 && s[1] == 'U' && s[2] == '+') {
1734 I32 flags = PERL_SCAN_ALLOW_UNDERSCORES |
1735 PERL_SCAN_DISALLOW_PREFIX;
1738 uv = grok_hex(s, &len, &flags, NULL);
1740 goto NUM_ESCAPE_INSERT;
1742 res = newSVpvn(s + 1, e - s - 1);
1743 res = new_constant( Nullch, 0, "charnames",
1744 res, Nullsv, "\\N{...}" );
1746 sv_utf8_upgrade(res);
1747 str = SvPV_const(res,len);
1748 #ifdef EBCDIC_NEVER_MIND
1749 /* charnames uses pack U and that has been
1750 * recently changed to do the below uni->native
1751 * mapping, so this would be redundant (and wrong,
1752 * the code point would be doubly converted).
1753 * But leave this in just in case the pack U change
1754 * gets revoked, but the semantics is still
1755 * desireable for charnames. --jhi */
1757 UV uv = utf8_to_uvchr((const U8*)str, 0);
1760 U8 tmpbuf[UTF8_MAXBYTES+1], *d;
1762 d = uvchr_to_utf8(tmpbuf, UNI_TO_NATIVE(uv));
1763 sv_setpvn(res, (char *)tmpbuf, d - tmpbuf);
1764 str = SvPV_const(res, len);
1768 if (!has_utf8 && SvUTF8(res)) {
1769 const char * const ostart = SvPVX_const(sv);
1770 SvCUR_set(sv, d - ostart);
1773 sv_utf8_upgrade(sv);
1774 /* this just broke our allocation above... */
1775 SvGROW(sv, (STRLEN)(send - start));
1776 d = SvPVX(sv) + SvCUR(sv);
1779 if (len > (STRLEN)(e - s + 4)) { /* I _guess_ 4 is \N{} --jhi */
1780 const char * const odest = SvPVX_const(sv);
1782 SvGROW(sv, (SvLEN(sv) + len - (e - s + 4)));
1783 d = SvPVX(sv) + (d - odest);
1785 Copy(str, d, len, char);
1792 yyerror("Missing braces on \\N{}");
1795 /* \c is a control character */
1804 *d++ = NATIVE_TO_NEED(has_utf8,toCTRL(c));
1807 yyerror("Missing control char name in \\c");
1811 /* printf-style backslashes, formfeeds, newlines, etc */
1813 *d++ = NATIVE_TO_NEED(has_utf8,'\b');
1816 *d++ = NATIVE_TO_NEED(has_utf8,'\n');
1819 *d++ = NATIVE_TO_NEED(has_utf8,'\r');
1822 *d++ = NATIVE_TO_NEED(has_utf8,'\f');
1825 *d++ = NATIVE_TO_NEED(has_utf8,'\t');
1828 *d++ = ASCII_TO_NEED(has_utf8,'\033');
1831 *d++ = ASCII_TO_NEED(has_utf8,'\007');
1837 } /* end if (backslash) */
1844 /* If we started with encoded form, or already know we want it
1845 and then encode the next character */
1846 if ((has_utf8 || this_utf8) && !NATIVE_IS_INVARIANT((U8)(*s))) {
1848 const UV uv = (this_utf8) ? utf8n_to_uvchr((U8*)s, send - s, &len, 0) : (UV) ((U8) *s);
1849 const STRLEN need = UNISKIP(NATIVE_TO_UNI(uv));
1852 /* encoded value larger than old, need extra space (NOTE: SvCUR() not set here) */
1853 const STRLEN off = d - SvPVX_const(sv);
1854 d = SvGROW(sv, SvLEN(sv) + (need-len)) + off;
1856 d = (char*)uvchr_to_utf8((U8*)d, uv);
1860 *d++ = NATIVE_TO_NEED(has_utf8,*s++);
1862 } /* while loop to process each character */
1864 /* terminate the string and set up the sv */
1866 SvCUR_set(sv, d - SvPVX_const(sv));
1867 if (SvCUR(sv) >= SvLEN(sv))
1868 Perl_croak(aTHX_ "panic: constant overflowed allocated space");
1871 if (PL_encoding && !has_utf8) {
1872 sv_recode_to_utf8(sv, PL_encoding);
1878 if (PL_lex_inwhat == OP_TRANS && PL_sublex_info.sub_op) {
1879 PL_sublex_info.sub_op->op_private |=
1880 (PL_lex_repl ? OPpTRANS_FROM_UTF : OPpTRANS_TO_UTF);
1884 /* shrink the sv if we allocated more than we used */
1885 if (SvCUR(sv) + 5 < SvLEN(sv)) {
1886 SvPV_shrink_to_cur(sv);
1889 /* return the substring (via yylval) only if we parsed anything */
1890 if (s > PL_bufptr) {
1891 if ( PL_hints & ( PL_lex_inpat ? HINT_NEW_RE : HINT_NEW_STRING ) )
1892 sv = new_constant(start, s - start, (PL_lex_inpat ? "qr" : "q"),
1894 ( PL_lex_inwhat == OP_TRANS
1896 : ( (PL_lex_inwhat == OP_SUBST && !PL_lex_inpat)
1899 yylval.opval = (OP*)newSVOP(OP_CONST, 0, sv);
1906 * Returns TRUE if there's more to the expression (e.g., a subscript),
1909 * It deals with "$foo[3]" and /$foo[3]/ and /$foo[0123456789$]+/
1911 * ->[ and ->{ return TRUE
1912 * { and [ outside a pattern are always subscripts, so return TRUE
1913 * if we're outside a pattern and it's not { or [, then return FALSE
1914 * if we're in a pattern and the first char is a {
1915 * {4,5} (any digits around the comma) returns FALSE
1916 * if we're in a pattern and the first char is a [
1918 * [SOMETHING] has a funky algorithm to decide whether it's a
1919 * character class or not. It has to deal with things like
1920 * /$foo[-3]/ and /$foo[$bar]/ as well as /$foo[$\d]+/
1921 * anything else returns TRUE
1924 /* This is the one truly awful dwimmer necessary to conflate C and sed. */
1927 S_intuit_more(pTHX_ register char *s)
1929 if (PL_lex_brackets)
1931 if (*s == '-' && s[1] == '>' && (s[2] == '[' || s[2] == '{'))
1933 if (*s != '{' && *s != '[')
1938 /* In a pattern, so maybe we have {n,m}. */
1955 /* On the other hand, maybe we have a character class */
1958 if (*s == ']' || *s == '^')
1961 /* this is terrifying, and it works */
1962 int weight = 2; /* let's weigh the evidence */
1964 unsigned char un_char = 255, last_un_char;
1965 const char * const send = strchr(s,']');
1966 char tmpbuf[sizeof PL_tokenbuf * 4];
1968 if (!send) /* has to be an expression */
1971 Zero(seen,256,char);
1974 else if (isDIGIT(*s)) {
1976 if (isDIGIT(s[1]) && s[2] == ']')
1982 for (; s < send; s++) {
1983 last_un_char = un_char;
1984 un_char = (unsigned char)*s;
1989 weight -= seen[un_char] * 10;
1990 if (isALNUM_lazy_if(s+1,UTF)) {
1991 scan_ident(s, send, tmpbuf, sizeof tmpbuf, FALSE);
1992 if ((int)strlen(tmpbuf) > 1 && gv_fetchpv(tmpbuf,FALSE, SVt_PV))
1997 else if (*s == '$' && s[1] &&
1998 strchr("[#!%*<>()-=",s[1])) {
1999 if (/*{*/ strchr("])} =",s[2]))
2008 if (strchr("wds]",s[1]))
2010 else if (seen['\''] || seen['"'])
2012 else if (strchr("rnftbxcav",s[1]))
2014 else if (isDIGIT(s[1])) {
2016 while (s[1] && isDIGIT(s[1]))
2026 if (strchr("aA01! ",last_un_char))
2028 if (strchr("zZ79~",s[1]))
2030 if (last_un_char == 255 && (isDIGIT(s[1]) || s[1] == '$'))
2031 weight -= 5; /* cope with negative subscript */
2034 if (!isALNUM(last_un_char)
2035 && !(last_un_char == '$' || last_un_char == '@'
2036 || last_un_char == '&')
2037 && isALPHA(*s) && s[1] && isALPHA(s[1])) {
2042 if (keyword(tmpbuf, d - tmpbuf))
2045 if (un_char == last_un_char + 1)
2047 weight -= seen[un_char];
2052 if (weight >= 0) /* probably a character class */
2062 * Does all the checking to disambiguate
2064 * between foo(bar) and bar->foo. Returns 0 if not a method, otherwise
2065 * FUNCMETH (bar->foo(args)) or METHOD (bar->foo args).
2067 * First argument is the stuff after the first token, e.g. "bar".
2069 * Not a method if bar is a filehandle.
2070 * Not a method if foo is a subroutine prototyped to take a filehandle.
2071 * Not a method if it's really "Foo $bar"
2072 * Method if it's "foo $bar"
2073 * Not a method if it's really "print foo $bar"
2074 * Method if it's really "foo package::" (interpreted as package->foo)
2075 * Not a method if bar is known to be a subroutine ("sub bar; foo bar")
2076 * Not a method if bar is a filehandle or package, but is quoted with
2081 S_intuit_method(pTHX_ char *start, GV *gv)
2083 char *s = start + (*start == '$');
2084 char tmpbuf[sizeof PL_tokenbuf];
2092 if ((cv = GvCVu(gv))) {
2093 const char *proto = SvPVX_const(cv);
2103 s = scan_word(s, tmpbuf, sizeof tmpbuf, TRUE, &len);
2104 /* start is the beginning of the possible filehandle/object,
2105 * and s is the end of it
2106 * tmpbuf is a copy of it
2109 if (*start == '$') {
2110 if (gv || PL_last_lop_op == OP_PRINT || isUPPER(*PL_tokenbuf))
2115 return *s == '(' ? FUNCMETH : METHOD;
2117 if (!keyword(tmpbuf, len)) {
2118 if (len > 2 && tmpbuf[len - 2] == ':' && tmpbuf[len - 1] == ':') {
2123 indirgv = gv_fetchpv(tmpbuf, FALSE, SVt_PVCV);
2124 if (indirgv && GvCVu(indirgv))
2126 /* filehandle or package name makes it a method */
2127 if (!gv || GvIO(indirgv) || gv_stashpvn(tmpbuf, len, FALSE)) {
2129 if ((PL_bufend - s) >= 2 && *s == '=' && *(s+1) == '>')
2130 return 0; /* no assumptions -- "=>" quotes bearword */
2132 PL_nextval[PL_nexttoke].opval = (OP*)newSVOP(OP_CONST, 0,
2133 newSVpvn(tmpbuf,len));
2134 PL_nextval[PL_nexttoke].opval->op_private = OPpCONST_BARE;
2138 return *s == '(' ? FUNCMETH : METHOD;
2146 * Return a string of Perl code to load the debugger. If PERL5DB
2147 * is set, it will return the contents of that, otherwise a
2148 * compile-time require of perl5db.pl.
2155 const char * const pdb = PerlEnv_getenv("PERL5DB");
2159 SETERRNO(0,SS_NORMAL);
2160 return "BEGIN { require 'perl5db.pl' }";
2166 /* Encoded script support. filter_add() effectively inserts a
2167 * 'pre-processing' function into the current source input stream.
2168 * Note that the filter function only applies to the current source file
2169 * (e.g., it will not affect files 'require'd or 'use'd by this one).
2171 * The datasv parameter (which may be NULL) can be used to pass
2172 * private data to this instance of the filter. The filter function
2173 * can recover the SV using the FILTER_DATA macro and use it to
2174 * store private buffers and state information.
2176 * The supplied datasv parameter is upgraded to a PVIO type
2177 * and the IoDIRP/IoANY field is used to store the function pointer,
2178 * and IOf_FAKE_DIRP is enabled on datasv to mark this as such.
2179 * Note that IoTOP_NAME, IoFMT_NAME, IoBOTTOM_NAME, if set for
2180 * private use must be set using malloc'd pointers.
2184 Perl_filter_add(pTHX_ filter_t funcp, SV *datasv)
2189 if (!PL_rsfp_filters)
2190 PL_rsfp_filters = newAV();
2192 datasv = NEWSV(255,0);
2193 SvUPGRADE(datasv, SVt_PVIO);
2194 IoANY(datasv) = FPTR2DPTR(void *, funcp); /* stash funcp into spare field */
2195 IoFLAGS(datasv) |= IOf_FAKE_DIRP;
2196 DEBUG_P(PerlIO_printf(Perl_debug_log, "filter_add func %p (%s)\n",
2197 IoANY(datasv), SvPV_nolen(datasv)));
2198 av_unshift(PL_rsfp_filters, 1);
2199 av_store(PL_rsfp_filters, 0, datasv) ;
2204 /* Delete most recently added instance of this filter function. */
2206 Perl_filter_del(pTHX_ filter_t funcp)
2211 DEBUG_P(PerlIO_printf(Perl_debug_log, "filter_del func %p", FPTR2DPTR(XPVIO *, funcp)));
2213 if (!PL_rsfp_filters || AvFILLp(PL_rsfp_filters)<0)
2215 /* if filter is on top of stack (usual case) just pop it off */
2216 datasv = FILTER_DATA(AvFILLp(PL_rsfp_filters));
2217 if (IoANY(datasv) == FPTR2DPTR(void *, funcp)) {
2218 IoFLAGS(datasv) &= ~IOf_FAKE_DIRP;
2219 IoANY(datasv) = (void *)NULL;
2220 sv_free(av_pop(PL_rsfp_filters));
2224 /* we need to search for the correct entry and clear it */
2225 Perl_die(aTHX_ "filter_del can only delete in reverse order (currently)");
2229 /* Invoke the idxth filter function for the current rsfp. */
2230 /* maxlen 0 = read one text line */
2232 Perl_filter_read(pTHX_ int idx, SV *buf_sv, int maxlen)
2237 if (!PL_rsfp_filters)
2239 if (idx > AvFILLp(PL_rsfp_filters)) { /* Any more filters? */
2240 /* Provide a default input filter to make life easy. */
2241 /* Note that we append to the line. This is handy. */
2242 DEBUG_P(PerlIO_printf(Perl_debug_log,
2243 "filter_read %d: from rsfp\n", idx));
2247 const int old_len = SvCUR(buf_sv);
2249 /* ensure buf_sv is large enough */
2250 SvGROW(buf_sv, (STRLEN)(old_len + maxlen)) ;
2251 if ((len = PerlIO_read(PL_rsfp, SvPVX(buf_sv) + old_len, maxlen)) <= 0){
2252 if (PerlIO_error(PL_rsfp))
2253 return -1; /* error */
2255 return 0 ; /* end of file */
2257 SvCUR_set(buf_sv, old_len + len) ;
2260 if (sv_gets(buf_sv, PL_rsfp, SvCUR(buf_sv)) == NULL) {
2261 if (PerlIO_error(PL_rsfp))
2262 return -1; /* error */
2264 return 0 ; /* end of file */
2267 return SvCUR(buf_sv);
2269 /* Skip this filter slot if filter has been deleted */
2270 if ( (datasv = FILTER_DATA(idx)) == &PL_sv_undef) {
2271 DEBUG_P(PerlIO_printf(Perl_debug_log,
2272 "filter_read %d: skipped (filter deleted)\n",
2274 return FILTER_READ(idx+1, buf_sv, maxlen); /* recurse */
2276 /* Get function pointer hidden within datasv */
2277 funcp = DPTR2FPTR(filter_t, IoANY(datasv));
2278 DEBUG_P(PerlIO_printf(Perl_debug_log,
2279 "filter_read %d: via function %p (%s)\n",
2280 idx, datasv, SvPV_nolen_const(datasv)));
2281 /* Call function. The function is expected to */
2282 /* call "FILTER_READ(idx+1, buf_sv)" first. */
2283 /* Return: <0:error, =0:eof, >0:not eof */
2284 return (*funcp)(aTHX_ idx, buf_sv, maxlen);
2288 S_filter_gets(pTHX_ register SV *sv, register PerlIO *fp, STRLEN append)
2290 #ifdef PERL_CR_FILTER
2291 if (!PL_rsfp_filters) {
2292 filter_add(S_cr_textfilter,NULL);
2295 if (PL_rsfp_filters) {
2297 SvCUR_set(sv, 0); /* start with empty line */
2298 if (FILTER_READ(0, sv, 0) > 0)
2299 return ( SvPVX(sv) ) ;
2304 return (sv_gets(sv, fp, append));
2308 S_find_in_my_stash(pTHX_ const char *pkgname, I32 len)
2312 if (len == 11 && *pkgname == '_' && strEQ(pkgname, "__PACKAGE__"))
2316 (pkgname[len - 2] == ':' && pkgname[len - 1] == ':') &&
2317 (gv = gv_fetchpv(pkgname, FALSE, SVt_PVHV)))
2319 return GvHV(gv); /* Foo:: */
2322 /* use constant CLASS => 'MyClass' */
2323 if ((gv = gv_fetchpv(pkgname, FALSE, SVt_PVCV))) {
2325 if (GvCV(gv) && (sv = cv_const_sv(GvCV(gv)))) {
2326 pkgname = SvPV_nolen_const(sv);
2330 return gv_stashpv(pkgname, FALSE);
2334 S_tokenize_use(pTHX_ int is_use, char *s) {
2335 if (PL_expect != XSTATE)
2336 yyerror(Perl_form(aTHX_ "\"%s\" not allowed in expression",
2337 is_use ? "use" : "no"));
2339 if (isDIGIT(*s) || (*s == 'v' && isDIGIT(s[1]))) {
2340 s = force_version(s, TRUE);
2341 if (*s == ';' || (s = skipspace(s), *s == ';')) {
2342 PL_nextval[PL_nexttoke].opval = Nullop;
2345 else if (*s == 'v') {
2346 s = force_word(s,WORD,FALSE,TRUE,FALSE);
2347 s = force_version(s, FALSE);
2351 s = force_word(s,WORD,FALSE,TRUE,FALSE);
2352 s = force_version(s, FALSE);
2354 yylval.ival = is_use;
2358 static const char* const exp_name[] =
2359 { "OPERATOR", "TERM", "REF", "STATE", "BLOCK", "ATTRBLOCK",
2360 "ATTRTERM", "TERMBLOCK", "TERMORDORDOR"
2367 Works out what to call the token just pulled out of the input
2368 stream. The yacc parser takes care of taking the ops we return and
2369 stitching them into a tree.
2375 if read an identifier
2376 if we're in a my declaration
2377 croak if they tried to say my($foo::bar)
2378 build the ops for a my() declaration
2379 if it's an access to a my() variable
2380 are we in a sort block?
2381 croak if my($a); $a <=> $b
2382 build ops for access to a my() variable
2383 if in a dq string, and they've said @foo and we can't find @foo
2385 build ops for a bareword
2386 if we already built the token before, use it.
2391 #pragma segment Perl_yylex
2396 register char *s = PL_bufptr;
2403 I32 orig_keyword = 0;
2406 PerlIO_printf(Perl_debug_log, "### LEX_%s\n",
2407 lex_state_names[PL_lex_state]);
2409 /* check if there's an identifier for us to look at */
2410 if (PL_pending_ident)
2411 return REPORT(S_pending_ident(aTHX));
2413 /* no identifier pending identification */
2415 switch (PL_lex_state) {
2417 case LEX_NORMAL: /* Some compilers will produce faster */
2418 case LEX_INTERPNORMAL: /* code if we comment these out. */
2422 /* when we've already built the next token, just pull it out of the queue */
2425 yylval = PL_nextval[PL_nexttoke];
2427 PL_lex_state = PL_lex_defer;
2428 PL_expect = PL_lex_expect;
2429 PL_lex_defer = LEX_NORMAL;
2431 DEBUG_T({ PerlIO_printf(Perl_debug_log,
2432 "### Next token after '%s' was known, type %"IVdf"\n", PL_bufptr,
2433 (IV)PL_nexttype[PL_nexttoke]); });
2435 return REPORT(PL_nexttype[PL_nexttoke]);
2437 /* interpolated case modifiers like \L \U, including \Q and \E.
2438 when we get here, PL_bufptr is at the \
2440 case LEX_INTERPCASEMOD:
2442 if (PL_bufptr != PL_bufend && *PL_bufptr != '\\')
2443 Perl_croak(aTHX_ "panic: INTERPCASEMOD");
2445 /* handle \E or end of string */
2446 if (PL_bufptr == PL_bufend || PL_bufptr[1] == 'E') {
2448 if (PL_lex_casemods) {
2449 const char oldmod = PL_lex_casestack[--PL_lex_casemods];
2450 PL_lex_casestack[PL_lex_casemods] = '\0';
2452 if (PL_bufptr != PL_bufend
2453 && (oldmod == 'L' || oldmod == 'U' || oldmod == 'Q')) {
2455 PL_lex_state = LEX_INTERPCONCAT;
2459 if (PL_bufptr != PL_bufend)
2461 PL_lex_state = LEX_INTERPCONCAT;
2465 DEBUG_T({ PerlIO_printf(Perl_debug_log,
2466 "### Saw case modifier at '%s'\n", PL_bufptr); });
2468 if (s[1] == '\\' && s[2] == 'E') {
2470 PL_lex_state = LEX_INTERPCONCAT;
2474 if (strnEQ(s, "L\\u", 3) || strnEQ(s, "U\\l", 3))
2475 tmp = *s, *s = s[2], s[2] = (char)tmp; /* misordered... */
2476 if ((*s == 'L' || *s == 'U') &&
2477 (strchr(PL_lex_casestack, 'L') || strchr(PL_lex_casestack, 'U'))) {
2478 PL_lex_casestack[--PL_lex_casemods] = '\0';
2481 if (PL_lex_casemods > 10)
2482 Renew(PL_lex_casestack, PL_lex_casemods + 2, char);
2483 PL_lex_casestack[PL_lex_casemods++] = *s;
2484 PL_lex_casestack[PL_lex_casemods] = '\0';
2485 PL_lex_state = LEX_INTERPCONCAT;
2486 PL_nextval[PL_nexttoke].ival = 0;
2489 PL_nextval[PL_nexttoke].ival = OP_LCFIRST;
2491 PL_nextval[PL_nexttoke].ival = OP_UCFIRST;
2493 PL_nextval[PL_nexttoke].ival = OP_LC;
2495 PL_nextval[PL_nexttoke].ival = OP_UC;
2497 PL_nextval[PL_nexttoke].ival = OP_QUOTEMETA;
2499 Perl_croak(aTHX_ "panic: yylex");
2503 if (PL_lex_starts) {
2506 /* commas only at base level: /$a\Ub$c/ => ($a,uc(b.$c)) */
2507 if (PL_lex_casemods == 1 && PL_lex_inpat)
2516 case LEX_INTERPPUSH:
2517 return REPORT(sublex_push());
2519 case LEX_INTERPSTART:
2520 if (PL_bufptr == PL_bufend)
2521 return REPORT(sublex_done());
2522 DEBUG_T({ PerlIO_printf(Perl_debug_log,
2523 "### Interpolated variable at '%s'\n", PL_bufptr); });
2525 PL_lex_dojoin = (*PL_bufptr == '@');
2526 PL_lex_state = LEX_INTERPNORMAL;
2527 if (PL_lex_dojoin) {
2528 PL_nextval[PL_nexttoke].ival = 0;
2530 force_ident("\"", '$');
2531 PL_nextval[PL_nexttoke].ival = 0;
2533 PL_nextval[PL_nexttoke].ival = 0;
2535 PL_nextval[PL_nexttoke].ival = OP_JOIN; /* emulate join($", ...) */
2538 if (PL_lex_starts++) {
2540 /* commas only at base level: /$a\Ub$c/ => ($a,uc(b.$c)) */
2541 if (!PL_lex_casemods && PL_lex_inpat)
2548 case LEX_INTERPENDMAYBE:
2549 if (intuit_more(PL_bufptr)) {
2550 PL_lex_state = LEX_INTERPNORMAL; /* false alarm, more expr */
2556 if (PL_lex_dojoin) {
2557 PL_lex_dojoin = FALSE;
2558 PL_lex_state = LEX_INTERPCONCAT;
2561 if (PL_lex_inwhat == OP_SUBST && PL_linestr == PL_lex_repl
2562 && SvEVALED(PL_lex_repl))
2564 if (PL_bufptr != PL_bufend)
2565 Perl_croak(aTHX_ "Bad evalled substitution pattern");
2566 PL_lex_repl = Nullsv;
2569 case LEX_INTERPCONCAT:
2571 if (PL_lex_brackets)
2572 Perl_croak(aTHX_ "panic: INTERPCONCAT");
2574 if (PL_bufptr == PL_bufend)
2575 return REPORT(sublex_done());
2577 if (SvIVX(PL_linestr) == '\'') {
2578 SV *sv = newSVsv(PL_linestr);
2581 else if ( PL_hints & HINT_NEW_RE )
2582 sv = new_constant(NULL, 0, "qr", sv, sv, "q");
2583 yylval.opval = (OP*)newSVOP(OP_CONST, 0, sv);
2587 s = scan_const(PL_bufptr);
2589 PL_lex_state = LEX_INTERPCASEMOD;
2591 PL_lex_state = LEX_INTERPSTART;
2594 if (s != PL_bufptr) {
2595 PL_nextval[PL_nexttoke] = yylval;
2598 if (PL_lex_starts++) {
2599 /* commas only at base level: /$a\Ub$c/ => ($a,uc(b.$c)) */
2600 if (!PL_lex_casemods && PL_lex_inpat)
2613 PL_lex_state = LEX_NORMAL;
2614 s = scan_formline(PL_bufptr);
2615 if (!PL_lex_formbrack)
2621 PL_oldoldbufptr = PL_oldbufptr;
2624 PerlIO_printf(Perl_debug_log, "### Tokener expecting %s at [%s]\n",
2625 exp_name[PL_expect], s);
2631 if (isIDFIRST_lazy_if(s,UTF))
2633 Perl_croak(aTHX_ "Unrecognized character \\x%02X", *s & 255);
2636 goto fake_eof; /* emulate EOF on ^D or ^Z */
2641 if (PL_lex_brackets) {
2642 if (PL_lex_formbrack)
2643 yyerror("Format not terminated");
2645 yyerror("Missing right curly or square bracket");
2647 DEBUG_T( { PerlIO_printf(Perl_debug_log,
2648 "### Tokener got EOF\n");
2652 if (s++ < PL_bufend)
2653 goto retry; /* ignore stray nulls */
2656 if (!PL_in_eval && !PL_preambled) {
2657 PL_preambled = TRUE;
2658 sv_setpv(PL_linestr,incl_perldb());
2659 if (SvCUR(PL_linestr))
2660 sv_catpvn(PL_linestr,";", 1);
2662 while(AvFILLp(PL_preambleav) >= 0) {
2663 SV *tmpsv = av_shift(PL_preambleav);
2664 sv_catsv(PL_linestr, tmpsv);
2665 sv_catpvn(PL_linestr, ";", 1);
2668 sv_free((SV*)PL_preambleav);
2669 PL_preambleav = NULL;
2671 if (PL_minus_n || PL_minus_p) {
2672 sv_catpv(PL_linestr, "LINE: while (<>) {");
2674 sv_catpv(PL_linestr,"chomp;");
2677 if ((*PL_splitstr == '/' || *PL_splitstr == '\''
2678 || *PL_splitstr == '"')
2679 && strchr(PL_splitstr + 1, *PL_splitstr))
2680 Perl_sv_catpvf(aTHX_ PL_linestr, "our @F=split(%s);", PL_splitstr);
2682 /* "q\0${splitstr}\0" is legal perl. Yes, even NUL
2683 bytes can be used as quoting characters. :-) */
2684 /* The count here deliberately includes the NUL
2685 that terminates the C string constant. This
2686 embeds the opening NUL into the string. */
2687 const char *splits = PL_splitstr;
2688 sv_catpvn(PL_linestr, "our @F=split(q", 15);
2691 if (*splits == '\\')
2692 sv_catpvn(PL_linestr, splits, 1);
2693 sv_catpvn(PL_linestr, splits, 1);
2694 } while (*splits++);
2695 /* This loop will embed the trailing NUL of
2696 PL_linestr as the last thing it does before
2698 sv_catpvn(PL_linestr, ");", 2);
2702 sv_catpv(PL_linestr,"our @F=split(' ');");
2705 sv_catpvn(PL_linestr, "\n", 1);
2706 PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = SvPVX(PL_linestr);
2707 PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
2708 PL_last_lop = PL_last_uni = Nullch;
2709 if (PERLDB_LINE && PL_curstash != PL_debstash) {
2710 SV * const sv = NEWSV(85,0);
2712 sv_upgrade(sv, SVt_PVMG);
2713 sv_setsv(sv,PL_linestr);
2716 av_store(CopFILEAV(PL_curcop),(I32)CopLINE(PL_curcop),sv);
2721 bof = PL_rsfp ? TRUE : FALSE;
2722 if ((s = filter_gets(PL_linestr, PL_rsfp, 0)) == Nullch) {
2725 if (PL_preprocess && !PL_in_eval)
2726 (void)PerlProc_pclose(PL_rsfp);
2727 else if ((PerlIO *)PL_rsfp == PerlIO_stdin())
2728 PerlIO_clearerr(PL_rsfp);
2730 (void)PerlIO_close(PL_rsfp);
2732 PL_doextract = FALSE;
2734 if (!PL_in_eval && (PL_minus_n || PL_minus_p)) {
2735 sv_setpv(PL_linestr,PL_minus_p
2736 ? ";}continue{print;}" : ";}");
2737 PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = SvPVX(PL_linestr);
2738 PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
2739 PL_last_lop = PL_last_uni = Nullch;
2740 PL_minus_n = PL_minus_p = 0;
2743 PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = SvPVX(PL_linestr);
2744 PL_last_lop = PL_last_uni = Nullch;
2745 sv_setpvn(PL_linestr,"",0);
2746 TOKEN(';'); /* not infinite loop because rsfp is NULL now */
2748 /* If it looks like the start of a BOM or raw UTF-16,
2749 * check if it in fact is. */
2755 #ifdef PERLIO_IS_STDIO
2756 # ifdef __GNU_LIBRARY__
2757 # if __GNU_LIBRARY__ == 1 /* Linux glibc5 */
2758 # define FTELL_FOR_PIPE_IS_BROKEN
2762 # if __GLIBC__ == 1 /* maybe some glibc5 release had it like this? */
2763 # define FTELL_FOR_PIPE_IS_BROKEN
2768 #ifdef FTELL_FOR_PIPE_IS_BROKEN
2769 /* This loses the possibility to detect the bof
2770 * situation on perl -P when the libc5 is being used.
2771 * Workaround? Maybe attach some extra state to PL_rsfp?
2774 bof = PerlIO_tell(PL_rsfp) == SvCUR(PL_linestr);
2776 bof = PerlIO_tell(PL_rsfp) == (Off_t)SvCUR(PL_linestr);
2779 PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
2780 s = swallow_bom((U8*)s);
2784 /* Incest with pod. */
2785 if (*s == '=' && strnEQ(s, "=cut", 4)) {
2786 sv_setpvn(PL_linestr, "", 0);
2787 PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = SvPVX(PL_linestr);
2788 PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
2789 PL_last_lop = PL_last_uni = Nullch;
2790 PL_doextract = FALSE;
2794 } while (PL_doextract);
2795 PL_oldoldbufptr = PL_oldbufptr = PL_bufptr = PL_linestart = s;
2796 if (PERLDB_LINE && PL_curstash != PL_debstash) {
2797 SV * const sv = NEWSV(85,0);
2799 sv_upgrade(sv, SVt_PVMG);
2800 sv_setsv(sv,PL_linestr);
2803 av_store(CopFILEAV(PL_curcop),(I32)CopLINE(PL_curcop),sv);
2805 PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
2806 PL_last_lop = PL_last_uni = Nullch;
2807 if (CopLINE(PL_curcop) == 1) {
2808 while (s < PL_bufend && isSPACE(*s))
2810 if (*s == ':' && s[1] != ':') /* for csh execing sh scripts */
2814 if (*s == '#' && *(s+1) == '!')
2816 #ifdef ALTERNATE_SHEBANG
2818 static char const as[] = ALTERNATE_SHEBANG;
2819 if (*s == as[0] && strnEQ(s, as, sizeof(as) - 1))
2820 d = s + (sizeof(as) - 1);
2822 #endif /* ALTERNATE_SHEBANG */
2831 while (*d && !isSPACE(*d))
2835 #ifdef ARG_ZERO_IS_SCRIPT
2836 if (ipathend > ipath) {
2838 * HP-UX (at least) sets argv[0] to the script name,
2839 * which makes $^X incorrect. And Digital UNIX and Linux,
2840 * at least, set argv[0] to the basename of the Perl
2841 * interpreter. So, having found "#!", we'll set it right.
2843 SV *x = GvSV(gv_fetchpv("\030", TRUE, SVt_PV)); /* $^X */
2844 assert(SvPOK(x) || SvGMAGICAL(x));
2845 if (sv_eq(x, CopFILESV(PL_curcop))) {
2846 sv_setpvn(x, ipath, ipathend - ipath);
2852 const char *bstart = SvPV_const(CopFILESV(PL_curcop),blen);
2853 const char * const lstart = SvPV_const(x,llen);
2855 bstart += blen - llen;
2856 if (strnEQ(bstart, lstart, llen) && bstart[-1] == '/') {
2857 sv_setpvn(x, ipath, ipathend - ipath);
2862 TAINT_NOT; /* $^X is always tainted, but that's OK */
2864 #endif /* ARG_ZERO_IS_SCRIPT */
2869 d = instr(s,"perl -");
2871 d = instr(s,"perl");
2873 /* avoid getting into infinite loops when shebang
2874 * line contains "Perl" rather than "perl" */
2876 for (d = ipathend-4; d >= ipath; --d) {
2877 if ((*d == 'p' || *d == 'P')
2878 && !ibcmp(d, "perl", 4))
2888 #ifdef ALTERNATE_SHEBANG
2890 * If the ALTERNATE_SHEBANG on this system starts with a
2891 * character that can be part of a Perl expression, then if
2892 * we see it but not "perl", we're probably looking at the
2893 * start of Perl code, not a request to hand off to some
2894 * other interpreter. Similarly, if "perl" is there, but
2895 * not in the first 'word' of the line, we assume the line
2896 * contains the start of the Perl program.
2898 if (d && *s != '#') {
2899 const char *c = ipath;
2900 while (*c && !strchr("; \t\r\n\f\v#", *c))
2903 d = Nullch; /* "perl" not in first word; ignore */
2905 *s = '#'; /* Don't try to parse shebang line */
2907 #endif /* ALTERNATE_SHEBANG */
2908 #ifndef MACOS_TRADITIONAL
2913 !instr(s,"indir") &&
2914 instr(PL_origargv[0],"perl"))
2921 while (s < PL_bufend && isSPACE(*s))
2923 if (s < PL_bufend) {
2924 Newxz(newargv,PL_origargc+3,char*);
2926 while (s < PL_bufend && !isSPACE(*s))
2929 Copy(PL_origargv+1, newargv+2, PL_origargc+1, char*);
2932 newargv = PL_origargv;
2935 PerlProc_execv(ipath, EXEC_ARGV_CAST(newargv));
2937 Perl_croak(aTHX_ "Can't exec %s", ipath);
2941 const U32 oldpdb = PL_perldb;
2942 const bool oldn = PL_minus_n;
2943 const bool oldp = PL_minus_p;
2945 while (*d && !isSPACE(*d)) d++;
2946 while (SPACE_OR_TAB(*d)) d++;
2949 const bool switches_done = PL_doswitches;
2951 if (*d == 'M' || *d == 'm' || *d == 'C') {
2952 const char * const m = d;
2953 while (*d && !isSPACE(*d)) d++;
2954 Perl_croak(aTHX_ "Too late for \"-%.*s\" option",
2957 d = moreswitches(d);
2959 if (PL_doswitches && !switches_done) {
2960 int argc = PL_origargc;
2961 char **argv = PL_origargv;
2964 } while (argc && argv[0][0] == '-' && argv[0][1]);
2965 init_argv_symbols(argc,argv);
2967 if ((PERLDB_LINE && !oldpdb) ||
2968 ((PL_minus_n || PL_minus_p) && !(oldn || oldp)))
2969 /* if we have already added "LINE: while (<>) {",
2970 we must not do it again */
2972 sv_setpvn(PL_linestr, "", 0);
2973 PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = SvPVX(PL_linestr);
2974 PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
2975 PL_last_lop = PL_last_uni = Nullch;
2976 PL_preambled = FALSE;
2978 (void)gv_fetchfile(PL_origfilename);
2981 if (PL_doswitches && !switches_done) {
2982 int argc = PL_origargc;
2983 char **argv = PL_origargv;
2986 } while (argc && argv[0][0] == '-' && argv[0][1]);
2987 init_argv_symbols(argc,argv);
2993 if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) {
2995 PL_lex_state = LEX_FORMLINE;
3000 #ifdef PERL_STRICT_CR
3001 Perl_warn(aTHX_ "Illegal character \\%03o (carriage return)", '\r');
3003 "\t(Maybe you didn't strip carriage returns after a network transfer?)\n");
3005 case ' ': case '\t': case '\f': case 013:
3006 #ifdef MACOS_TRADITIONAL
3013 if (PL_lex_state != LEX_NORMAL || (PL_in_eval && !PL_rsfp)) {
3014 if (*s == '#' && s == PL_linestart && PL_in_eval && !PL_rsfp) {
3015 /* handle eval qq[#line 1 "foo"\n ...] */
3016 CopLINE_dec(PL_curcop);
3020 while (s < d && *s != '\n')
3024 else if (s > d) /* Found by Ilya: feed random input to Perl. */
3025 Perl_croak(aTHX_ "panic: input overflow");
3027 if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) {
3029 PL_lex_state = LEX_FORMLINE;
3039 if (s[1] && isALPHA(s[1]) && !isALNUM(s[2])) {
3046 while (s < PL_bufend && SPACE_OR_TAB(*s))
3049 if (strnEQ(s,"=>",2)) {
3050 s = force_word(PL_bufptr,WORD,FALSE,FALSE,FALSE);
3051 DEBUG_T( { PerlIO_printf(Perl_debug_log,
3052 "### Saw unary minus before =>, forcing word '%s'\n", s);
3054 OPERATOR('-'); /* unary minus */
3056 PL_last_uni = PL_oldbufptr;
3058 case 'r': ftst = OP_FTEREAD; break;
3059 case 'w': ftst = OP_FTEWRITE; break;
3060 case 'x': ftst = OP_FTEEXEC; break;
3061 case 'o': ftst = OP_FTEOWNED; break;
3062 case 'R': ftst = OP_FTRREAD; break;
3063 case 'W': ftst = OP_FTRWRITE; break;
3064 case 'X': ftst = OP_FTREXEC; break;
3065 case 'O': ftst = OP_FTROWNED; break;
3066 case 'e': ftst = OP_FTIS; break;
3067 case 'z': ftst = OP_FTZERO; break;
3068 case 's': ftst = OP_FTSIZE; break;
3069 case 'f': ftst = OP_FTFILE; break;
3070 case 'd': ftst = OP_FTDIR; break;
3071 case 'l': ftst = OP_FTLINK; break;
3072 case 'p': ftst = OP_FTPIPE; break;
3073 case 'S': ftst = OP_FTSOCK; break;
3074 case 'u': ftst = OP_FTSUID; break;
3075 case 'g': ftst = OP_FTSGID; break;
3076 case 'k': ftst = OP_FTSVTX; break;
3077 case 'b': ftst = OP_FTBLK; break;
3078 case 'c': ftst = OP_FTCHR; break;
3079 case 't': ftst = OP_FTTTY; break;
3080 case 'T': ftst = OP_FTTEXT; break;
3081 case 'B': ftst = OP_FTBINARY; break;
3082 case 'M': case 'A': case 'C':
3083 gv_fetchpv("\024",TRUE, SVt_PV);
3085 case 'M': ftst = OP_FTMTIME; break;
3086 case 'A': ftst = OP_FTATIME; break;
3087 case 'C': ftst = OP_FTCTIME; break;
3095 PL_last_lop_op = (OPCODE)ftst;
3096 DEBUG_T( { PerlIO_printf(Perl_debug_log,
3097 "### Saw file test %c\n", (int)ftst);
3102 /* Assume it was a minus followed by a one-letter named
3103 * subroutine call (or a -bareword), then. */
3104 DEBUG_T( { PerlIO_printf(Perl_debug_log,
3105 "### '-%c' looked like a file test but was not\n",
3114 if (PL_expect == XOPERATOR)
3119 else if (*s == '>') {
3122 if (isIDFIRST_lazy_if(s,UTF)) {
3123 s = force_word(s,METHOD,FALSE,TRUE,FALSE);
3131 if (PL_expect == XOPERATOR)
3134 if (isSPACE(*s) || !isSPACE(*PL_bufptr))
3136 OPERATOR('-'); /* unary minus */
3143 if (PL_expect == XOPERATOR)
3148 if (PL_expect == XOPERATOR)
3151 if (isSPACE(*s) || !isSPACE(*PL_bufptr))
3157 if (PL_expect != XOPERATOR) {
3158 s = scan_ident(s, PL_bufend, PL_tokenbuf, sizeof PL_tokenbuf, TRUE);
3159 PL_expect = XOPERATOR;
3160 force_ident(PL_tokenbuf, '*');
3173 if (PL_expect == XOPERATOR) {
3177 PL_tokenbuf[0] = '%';
3178 s = scan_ident(s, PL_bufend, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1, TRUE);
3179 if (!PL_tokenbuf[1]) {
3182 PL_pending_ident = '%';
3201 switch (PL_expect) {
3204 if (!PL_in_my || PL_lex_state != LEX_NORMAL)
3206 PL_bufptr = s; /* update in case we back off */
3212 PL_expect = XTERMBLOCK;
3216 while (isIDFIRST_lazy_if(s,UTF)) {
3217 d = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE, &len);
3218 if (isLOWER(*s) && (tmp = keyword(PL_tokenbuf, len))) {
3219 if (tmp < 0) tmp = -tmp;
3235 d = scan_str(d,TRUE,TRUE);
3237 /* MUST advance bufptr here to avoid bogus
3238 "at end of line" context messages from yyerror().
3240 PL_bufptr = s + len;
3241 yyerror("Unterminated attribute parameter in attribute list");
3244 return REPORT(0); /* EOF indicator */
3248 SV *sv = newSVpvn(s, len);
3249 sv_catsv(sv, PL_lex_stuff);
3250 attrs = append_elem(OP_LIST, attrs,
3251 newSVOP(OP_CONST, 0, sv));
3252 SvREFCNT_dec(PL_lex_stuff);
3253 PL_lex_stuff = Nullsv;
3256 if (len == 6 && strnEQ(s, "unique", len)) {
3257 if (PL_in_my == KEY_our)
3259 GvUNIQUE_on(cGVOPx_gv(yylval.opval));
3261 ; /* skip to avoid loading attributes.pm */
3264 Perl_croak(aTHX_ "The 'unique' attribute may only be applied to 'our' variables");
3267 /* NOTE: any CV attrs applied here need to be part of
3268 the CVf_BUILTIN_ATTRS define in cv.h! */
3269 else if (!PL_in_my && len == 6 && strnEQ(s, "lvalue", len))
3270 CvLVALUE_on(PL_compcv);
3271 else if (!PL_in_my && len == 6 && strnEQ(s, "locked", len))
3272 CvLOCKED_on(PL_compcv);
3273 else if (!PL_in_my && len == 6 && strnEQ(s, "method", len))
3274 CvMETHOD_on(PL_compcv);
3275 else if (!PL_in_my && len == 9 && strnEQ(s, "assertion", len))
3276 CvASSERTION_on(PL_compcv);
3277 /* After we've set the flags, it could be argued that
3278 we don't need to do the attributes.pm-based setting
3279 process, and shouldn't bother appending recognized
3280 flags. To experiment with that, uncomment the
3281 following "else". (Note that's already been
3282 uncommented. That keeps the above-applied built-in
3283 attributes from being intercepted (and possibly
3284 rejected) by a package's attribute routines, but is
3285 justified by the performance win for the common case
3286 of applying only built-in attributes.) */
3288 attrs = append_elem(OP_LIST, attrs,
3289 newSVOP(OP_CONST, 0,
3293 if (*s == ':' && s[1] != ':')
3296 break; /* require real whitespace or :'s */
3298 tmp = (PL_expect == XOPERATOR ? '=' : '{'); /*'}(' for vi */
3299 if (*s != ';' && *s != '}' && *s != tmp && (tmp != '=' || *s != ')')) {
3300 const char q = ((*s == '\'') ? '"' : '\'');
3301 /* If here for an expression, and parsed no attrs, back off. */
3302 if (tmp == '=' && !attrs) {
3306 /* MUST advance bufptr here to avoid bogus "at end of line"
3307 context messages from yyerror().
3311 yyerror("Unterminated attribute list");
3313 yyerror(Perl_form(aTHX_ "Invalid separator character %c%c%c in attribute list",
3321 PL_nextval[PL_nexttoke].opval = attrs;
3329 if (PL_last_lop == PL_oldoldbufptr || PL_last_uni == PL_oldoldbufptr)
3330 PL_oldbufptr = PL_oldoldbufptr; /* allow print(STDOUT 123) */
3347 if (PL_lex_brackets <= 0)
3348 yyerror("Unmatched right square bracket");
3351 if (PL_lex_state == LEX_INTERPNORMAL) {
3352 if (PL_lex_brackets == 0) {
3353 if (*s != '[' && *s != '{' && (*s != '-' || s[1] != '>'))
3354 PL_lex_state = LEX_INTERPEND;
3361 if (PL_lex_brackets > 100) {
3362 Renew(PL_lex_brackstack, PL_lex_brackets + 10, char);
3364 switch (PL_expect) {
3366 if (PL_lex_formbrack) {
3370 if (PL_oldoldbufptr == PL_last_lop)
3371 PL_lex_brackstack[PL_lex_brackets++] = XTERM;
3373 PL_lex_brackstack[PL_lex_brackets++] = XOPERATOR;
3374 OPERATOR(HASHBRACK);
3376 while (s < PL_bufend && SPACE_OR_TAB(*s))
3379 PL_tokenbuf[0] = '\0';
3380 if (d < PL_bufend && *d == '-') {
3381 PL_tokenbuf[0] = '-';
3383 while (d < PL_bufend && SPACE_OR_TAB(*d))
3386 if (d < PL_bufend && isIDFIRST_lazy_if(d,UTF)) {
3387 d = scan_word(d, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1,
3389 while (d < PL_bufend && SPACE_OR_TAB(*d))
3392 const char minus = (PL_tokenbuf[0] == '-');
3393 s = force_word(s + minus, WORD, FALSE, TRUE, FALSE);
3401 PL_lex_brackstack[PL_lex_brackets++] = XSTATE;
3406 PL_lex_brackstack[PL_lex_brackets++] = XOPERATOR;
3411 if (PL_oldoldbufptr == PL_last_lop)
3412 PL_lex_brackstack[PL_lex_brackets++] = XTERM;
3414 PL_lex_brackstack[PL_lex_brackets++] = XOPERATOR;
3417 if (PL_expect == XREF && PL_lex_state == LEX_INTERPNORMAL) {
3419 /* This hack is to get the ${} in the message. */
3421 yyerror("syntax error");
3424 OPERATOR(HASHBRACK);
3426 /* This hack serves to disambiguate a pair of curlies
3427 * as being a block or an anon hash. Normally, expectation
3428 * determines that, but in cases where we're not in a
3429 * position to expect anything in particular (like inside
3430 * eval"") we have to resolve the ambiguity. This code
3431 * covers the case where the first term in the curlies is a
3432 * quoted string. Most other cases need to be explicitly
3433 * disambiguated by prepending a "+" before the opening
3434 * curly in order to force resolution as an anon hash.
3436 * XXX should probably propagate the outer expectation
3437 * into eval"" to rely less on this hack, but that could
3438 * potentially break current behavior of eval"".
3442 if (*s == '\'' || *s == '"' || *s == '`') {
3443 /* common case: get past first string, handling escapes */
3444 for (t++; t < PL_bufend && *t != *s;)
3445 if (*t++ == '\\' && (*t == '\\' || *t == *s))
3449 else if (*s == 'q') {
3452 || ((*t == 'q' || *t == 'x') && ++t < PL_bufend
3455 /* skip q//-like construct */
3457 char open, close, term;
3460 while (t < PL_bufend && isSPACE(*t))
3462 /* check for q => */
3463 if (t+1 < PL_bufend && t[0] == '=' && t[1] == '>') {
3464 OPERATOR(HASHBRACK);
3468 if (term && (tmps = strchr("([{< )]}> )]}>",term)))
3472 for (t++; t < PL_bufend; t++) {
3473 if (*t == '\\' && t+1 < PL_bufend && open != '\\')
3475 else if (*t == open)
3479 for (t++; t < PL_bufend; t++) {
3480 if (*t == '\\' && t+1 < PL_bufend)
3482 else if (*t == close && --brackets <= 0)
3484 else if (*t == open)
3491 /* skip plain q word */
3492 while (t < PL_bufend && isALNUM_lazy_if(t,UTF))
3495 else if (isALNUM_lazy_if(t,UTF)) {
3497 while (t < PL_bufend && isALNUM_lazy_if(t,UTF))
3500 while (t < PL_bufend && isSPACE(*t))
3502 /* if comma follows first term, call it an anon hash */
3503 /* XXX it could be a comma expression with loop modifiers */
3504 if (t < PL_bufend && ((*t == ',' && (*s == 'q' || !isLOWER(*s)))
3505 || (*t == '=' && t[1] == '>')))
3506 OPERATOR(HASHBRACK);
3507 if (PL_expect == XREF)
3510 PL_lex_brackstack[PL_lex_brackets-1] = XSTATE;
3516 yylval.ival = CopLINE(PL_curcop);
3517 if (isSPACE(*s) || *s == '#')
3518 PL_copline = NOLINE; /* invalidate current command line number */
3523 if (PL_lex_brackets <= 0)
3524 yyerror("Unmatched right curly bracket");
3526 PL_expect = (expectation)PL_lex_brackstack[--PL_lex_brackets];
3527 if (PL_lex_brackets < PL_lex_formbrack && PL_lex_state != LEX_INTERPNORMAL)
3528 PL_lex_formbrack = 0;
3529 if (PL_lex_state == LEX_INTERPNORMAL) {
3530 if (PL_lex_brackets == 0) {
3531 if (PL_expect & XFAKEBRACK) {
3532 PL_expect &= XENUMMASK;
3533 PL_lex_state = LEX_INTERPEND;
3535 return yylex(); /* ignore fake brackets */
3537 if (*s == '-' && s[1] == '>')
3538 PL_lex_state = LEX_INTERPENDMAYBE;
3539 else if (*s != '[' && *s != '{')
3540 PL_lex_state = LEX_INTERPEND;
3543 if (PL_expect & XFAKEBRACK) {
3544 PL_expect &= XENUMMASK;
3546 return yylex(); /* ignore fake brackets */
3556 if (PL_expect == XOPERATOR) {
3557 if (PL_bufptr == PL_linestart && ckWARN(WARN_SEMICOLON)
3558 && isIDFIRST_lazy_if(s,UTF))
3560 CopLINE_dec(PL_curcop);
3561 Perl_warner(aTHX_ packWARN(WARN_SEMICOLON), PL_warn_nosemi);
3562 CopLINE_inc(PL_curcop);
3567 s = scan_ident(s - 1, PL_bufend, PL_tokenbuf, sizeof PL_tokenbuf, TRUE);
3569 PL_expect = XOPERATOR;
3570 force_ident(PL_tokenbuf, '&');
3574 yylval.ival = (OPpENTERSUB_AMPER<<8);
3593 if (tmp && isSPACE(*s) && ckWARN(WARN_SYNTAX) && strchr("+-*/%.^&|<",tmp))
3594 Perl_warner(aTHX_ packWARN(WARN_SYNTAX), "Reversed %c= operator",(int)tmp);
3596 if (PL_expect == XSTATE && isALPHA(tmp) &&
3597 (s == PL_linestart+1 || s[-2] == '\n') )
3599 if (PL_in_eval && !PL_rsfp) {
3604 if (strnEQ(s,"=cut",4)) {
3618 PL_doextract = TRUE;
3621 if (PL_lex_brackets < PL_lex_formbrack) {
3623 #ifdef PERL_STRICT_CR
3624 for (t = s; SPACE_OR_TAB(*t); t++) ;
3626 for (t = s; SPACE_OR_TAB(*t) || *t == '\r'; t++) ;
3628 if (*t == '\n' || *t == '#') {
3640 /* was this !=~ where !~ was meant?
3641 * warn on m:!=~\s+([/?]|[msy]\W|tr\W): */
3643 if (*s == '~' && ckWARN(WARN_SYNTAX)) {
3644 const char *t = s+1;
3646 while (t < PL_bufend && isSPACE(*t))
3649 if (*t == '/' || *t == '?' ||
3650 ((*t == 'm' || *t == 's' || *t == 'y') && !isALNUM(t[1])) ||
3651 (*t == 't' && t[1] == 'r' && !isALNUM(t[2])))
3652 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
3653 "!=~ should be !~");
3662 if (PL_expect != XOPERATOR) {
3663 if (s[1] != '<' && !strchr(s,'>'))
3666 s = scan_heredoc(s);
3668 s = scan_inputsymbol(s);
3669 TERM(sublex_start());
3674 SHop(OP_LEFT_SHIFT);
3688 SHop(OP_RIGHT_SHIFT);
3697 if (PL_expect == XOPERATOR) {
3698 if (PL_lex_formbrack && PL_lex_brackets == PL_lex_formbrack) {
3701 return REPORT(','); /* grandfather non-comma-format format */
3705 if (s[1] == '#' && (isIDFIRST_lazy_if(s+2,UTF) || strchr("{$:+-", s[2]))) {
3706 PL_tokenbuf[0] = '@';
3707 s = scan_ident(s + 1, PL_bufend, PL_tokenbuf + 1,
3708 sizeof PL_tokenbuf - 1, FALSE);
3709 if (PL_expect == XOPERATOR)
3710 no_op("Array length", s);
3711 if (!PL_tokenbuf[1])
3713 PL_expect = XOPERATOR;
3714 PL_pending_ident = '#';
3718 PL_tokenbuf[0] = '$';
3719 s = scan_ident(s, PL_bufend, PL_tokenbuf + 1,
3720 sizeof PL_tokenbuf - 1, FALSE);
3721 if (PL_expect == XOPERATOR)
3723 if (!PL_tokenbuf[1]) {
3725 yyerror("Final $ should be \\$ or $name");
3729 /* This kludge not intended to be bulletproof. */
3730 if (PL_tokenbuf[1] == '[' && !PL_tokenbuf[2]) {
3731 yylval.opval = newSVOP(OP_CONST, 0,
3732 newSViv(PL_compiling.cop_arybase));
3733 yylval.opval->op_private = OPpCONST_ARYBASE;
3739 if (PL_lex_state == LEX_NORMAL)
3742 if ((PL_expect != XREF || PL_oldoldbufptr == PL_last_lop) && intuit_more(s)) {
3744 PL_tokenbuf[0] = '@';
3745 if (ckWARN(WARN_SYNTAX)) {
3748 isSPACE(*t) || isALNUM_lazy_if(t,UTF) || *t == '$';
3751 PL_bufptr = skipspace(PL_bufptr);
3752 while (t < PL_bufend && *t != ']')
3754 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
3755 "Multidimensional syntax %.*s not supported",
3756 (t - PL_bufptr) + 1, PL_bufptr);
3760 else if (*s == '{') {
3762 PL_tokenbuf[0] = '%';
3763 if (strEQ(PL_tokenbuf+1, "SIG") && ckWARN(WARN_SYNTAX)
3764 && (t = strchr(s, '}')) && (t = strchr(t, '=')))
3766 char tmpbuf[sizeof PL_tokenbuf];
3767 for (t++; isSPACE(*t); t++) ;
3768 if (isIDFIRST_lazy_if(t,UTF)) {
3770 t = scan_word(t, tmpbuf, sizeof tmpbuf, TRUE, &len);
3771 for (; isSPACE(*t); t++) ;
3772 if (*t == ';' && get_cv(tmpbuf, FALSE))
3773 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
3774 "You need to quote \"%s\"", tmpbuf);
3780 PL_expect = XOPERATOR;
3781 if (PL_lex_state == LEX_NORMAL && isSPACE((char)tmp)) {
3782 const bool islop = (PL_last_lop == PL_oldoldbufptr);
3783 if (!islop || PL_last_lop_op == OP_GREPSTART)
3784 PL_expect = XOPERATOR;
3785 else if (strchr("$@\"'`q", *s))
3786 PL_expect = XTERM; /* e.g. print $fh "foo" */
3787 else if (strchr("&*<%", *s) && isIDFIRST_lazy_if(s+1,UTF))
3788 PL_expect = XTERM; /* e.g. print $fh &sub */
3789 else if (isIDFIRST_lazy_if(s,UTF)) {
3790 char tmpbuf[sizeof PL_tokenbuf];
3791 scan_word(s, tmpbuf, sizeof tmpbuf, TRUE, &len);
3792 if ((tmp = keyword(tmpbuf, len))) {
3793 /* binary operators exclude handle interpretations */
3805 PL_expect = XTERM; /* e.g. print $fh length() */
3810 PL_expect = XTERM; /* e.g. print $fh subr() */
3813 else if (isDIGIT(*s))
3814 PL_expect = XTERM; /* e.g. print $fh 3 */
3815 else if (*s == '.' && isDIGIT(s[1]))
3816 PL_expect = XTERM; /* e.g. print $fh .3 */
3817 else if ((*s == '?' || *s == '-' || *s == '+')
3818 && !isSPACE(s[1]) && s[1] != '=')
3819 PL_expect = XTERM; /* e.g. print $fh -1 */
3820 else if (*s == '/' && !isSPACE(s[1]) && s[1] != '=' && s[1] != '/')
3821 PL_expect = XTERM; /* e.g. print $fh /.../
3822 XXX except DORDOR operator */
3823 else if (*s == '<' && s[1] == '<' && !isSPACE(s[2]) && s[2] != '=')
3824 PL_expect = XTERM; /* print $fh <<"EOF" */
3826 PL_pending_ident = '$';
3830 if (PL_expect == XOPERATOR)
3832 PL_tokenbuf[0] = '@';
3833 s = scan_ident(s, PL_bufend, PL_tokenbuf + 1, sizeof PL_tokenbuf - 1, FALSE);
3834 if (!PL_tokenbuf[1]) {
3837 if (PL_lex_state == LEX_NORMAL)
3839 if ((PL_expect != XREF || PL_oldoldbufptr == PL_last_lop) && intuit_more(s)) {
3841 PL_tokenbuf[0] = '%';
3843 /* Warn about @ where they meant $. */
3844 if (*s == '[' || *s == '{') {
3845 if (ckWARN(WARN_SYNTAX)) {
3846 const char *t = s + 1;
3847 while (*t && (isALNUM_lazy_if(t,UTF) || strchr(" \t$#+-'\"", *t)))
3849 if (*t == '}' || *t == ']') {
3851 PL_bufptr = skipspace(PL_bufptr);
3852 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
3853 "Scalar value %.*s better written as $%.*s",
3854 t-PL_bufptr, PL_bufptr, t-PL_bufptr-1, PL_bufptr+1);
3859 PL_pending_ident = '@';
3862 case '/': /* may be division, defined-or, or pattern */
3863 if (PL_expect == XTERMORDORDOR && s[1] == '/') {
3867 case '?': /* may either be conditional or pattern */
3868 if(PL_expect == XOPERATOR) {
3876 /* A // operator. */
3886 /* Disable warning on "study /blah/" */
3887 if (PL_oldoldbufptr == PL_last_uni
3888 && (*PL_last_uni != 's' || s - PL_last_uni < 5
3889 || memNE(PL_last_uni, "study", 5)
3890 || isALNUM_lazy_if(PL_last_uni+5,UTF)
3893 s = scan_pat(s,OP_MATCH);
3894 TERM(sublex_start());
3898 if (PL_lex_formbrack && PL_lex_brackets == PL_lex_formbrack
3899 #ifdef PERL_STRICT_CR
3902 && (s[1] == '\n' || (s[1] == '\r' && s[2] == '\n'))
3904 && (s == PL_linestart || s[-1] == '\n') )
3906 PL_lex_formbrack = 0;
3910 if (PL_expect == XOPERATOR || !isDIGIT(s[1])) {
3916 yylval.ival = OPf_SPECIAL;
3922 if (PL_expect != XOPERATOR)
3927 case '0': case '1': case '2': case '3': case '4':
3928 case '5': case '6': case '7': case '8': case '9':
3929 s = scan_num(s, &yylval);
3930 DEBUG_T( { PerlIO_printf(Perl_debug_log,
3931 "### Saw number in '%s'\n", s);
3933 if (PL_expect == XOPERATOR)
3938 s = scan_str(s,FALSE,FALSE);
3939 DEBUG_T( { PerlIO_printf(Perl_debug_log,
3940 "### Saw string before '%s'\n", s);
3942 if (PL_expect == XOPERATOR) {
3943 if (PL_lex_formbrack && PL_lex_brackets == PL_lex_formbrack) {
3946 return REPORT(','); /* grandfather non-comma-format format */
3952 missingterm((char*)0);
3953 yylval.ival = OP_CONST;
3954 TERM(sublex_start());
3957 s = scan_str(s,FALSE,FALSE);
3958 DEBUG_T( { PerlIO_printf(Perl_debug_log,
3959 "### Saw string before '%s'\n", s);
3961 if (PL_expect == XOPERATOR) {
3962 if (PL_lex_formbrack && PL_lex_brackets == PL_lex_formbrack) {
3965 return REPORT(','); /* grandfather non-comma-format format */
3971 missingterm((char*)0);
3972 yylval.ival = OP_CONST;
3973 /* FIXME. I think that this can be const if char *d is replaced by
3974 more localised variables. */
3975 for (d = SvPV(PL_lex_stuff, len); len; len--, d++) {
3976 if (*d == '$' || *d == '@' || *d == '\\' || !UTF8_IS_INVARIANT((U8)*d)) {
3977 yylval.ival = OP_STRINGIFY;
3981 TERM(sublex_start());
3984 s = scan_str(s,FALSE,FALSE);
3985 DEBUG_T( { PerlIO_printf(Perl_debug_log,
3986 "### Saw backtick string before '%s'\n", s);
3988 if (PL_expect == XOPERATOR)
3989 no_op("Backticks",s);
3991 missingterm((char*)0);
3992 yylval.ival = OP_BACKTICK;
3994 TERM(sublex_start());
3998 if (PL_lex_inwhat && isDIGIT(*s) && ckWARN(WARN_SYNTAX))
3999 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),"Can't use \\%c to mean $%c in expression",
4001 if (PL_expect == XOPERATOR)
4002 no_op("Backslash",s);
4006 if (isDIGIT(s[1]) && PL_expect != XOPERATOR) {
4007 char *start = s + 2;
4008 while (isDIGIT(*start) || *start == '_')
4010 if (*start == '.' && isDIGIT(start[1])) {
4011 s = scan_num(s, &yylval);
4014 /* avoid v123abc() or $h{v1}, allow C<print v10;> */
4015 else if (!isALPHA(*start) && (PL_expect == XTERM
4016 || PL_expect == XREF || PL_expect == XSTATE
4017 || PL_expect == XTERMORDORDOR)) {
4018 const char c = *start;
4021 gv = gv_fetchpv(s, FALSE, SVt_PVCV);
4024 s = scan_num(s, &yylval);
4031 if (isDIGIT(s[1]) && PL_expect == XOPERATOR) {
4071 s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE, &len);
4073 /* Some keywords can be followed by any delimiter, including ':' */
4074 tmp = ((len == 1 && strchr("msyq", PL_tokenbuf[0])) ||
4075 (len == 2 && ((PL_tokenbuf[0] == 't' && PL_tokenbuf[1] == 'r') ||
4076 (PL_tokenbuf[0] == 'q' &&
4077 strchr("qwxr", PL_tokenbuf[1])))));
4079 /* x::* is just a word, unless x is "CORE" */
4080 if (!tmp && *s == ':' && s[1] == ':' && strNE(PL_tokenbuf, "CORE"))
4084 while (d < PL_bufend && isSPACE(*d))
4085 d++; /* no comments skipped here, or s### is misparsed */
4087 /* Is this a label? */
4088 if (!tmp && PL_expect == XSTATE
4089 && d < PL_bufend && *d == ':' && *(d + 1) != ':') {
4091 yylval.pval = savepv(PL_tokenbuf);
4096 /* Check for keywords */
4097 tmp = keyword(PL_tokenbuf, len);
4099 /* Is this a word before a => operator? */
4100 if (*d == '=' && d[1] == '>') {
4103 = (OP*)newSVOP(OP_CONST, 0,
4104 S_newSV_maybe_utf8(aTHX_ PL_tokenbuf, len));
4105 yylval.opval->op_private = OPpCONST_BARE;
4109 if (tmp < 0) { /* second-class keyword? */
4110 GV *ogv = Nullgv; /* override (winner) */
4111 GV *hgv = Nullgv; /* hidden (loser) */
4112 if (PL_expect != XOPERATOR && (*s != ':' || s[1] != ':')) {
4114 if ((gv = gv_fetchpv(PL_tokenbuf, FALSE, SVt_PVCV)) &&
4117 if (GvIMPORTED_CV(gv))
4119 else if (! CvMETHOD(cv))
4123 (gvp = (GV**)hv_fetch(PL_globalstash,PL_tokenbuf,len,FALSE)) &&
4124 (gv = *gvp) != (GV*)&PL_sv_undef &&
4125 GvCVu(gv) && GvIMPORTED_CV(gv))
4132 tmp = 0; /* overridden by import or by GLOBAL */
4135 && -tmp==KEY_lock /* XXX generalizable kludge */
4137 && !hv_fetch(GvHVn(PL_incgv), "Thread.pm", 9, FALSE))
4139 tmp = 0; /* any sub overrides "weak" keyword */
4144 && PL_expect != XOPERATOR
4145 && PL_expect != XTERMORDORDOR)
4147 /* any sub overrides the "err" keyword, except when really an
4148 * operator is expected */
4151 else { /* no override */
4153 if (tmp == KEY_dump && ckWARN(WARN_MISC)) {
4154 Perl_warner(aTHX_ packWARN(WARN_MISC),
4155 "dump() better written as CORE::dump()");
4159 if (hgv && tmp != KEY_x && tmp != KEY_CORE
4160 && ckWARN(WARN_AMBIGUOUS)) /* never ambiguous */
4161 Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
4162 "Ambiguous call resolved as CORE::%s(), %s",
4163 GvENAME(hgv), "qualify as such or use &");
4170 default: /* not a keyword */
4174 const char lastchar = (PL_bufptr == PL_oldoldbufptr ? 0 : PL_bufptr[-1]);
4176 /* Get the rest if it looks like a package qualifier */
4178 if (*s == '\'' || (*s == ':' && s[1] == ':')) {
4180 s = scan_word(s, PL_tokenbuf + len, sizeof PL_tokenbuf - len,
4183 Perl_croak(aTHX_ "Bad name after %s%s", PL_tokenbuf,
4184 *s == '\'' ? "'" : "::");
4189 if (PL_expect == XOPERATOR) {
4190 if (PL_bufptr == PL_linestart) {
4191 CopLINE_dec(PL_curcop);
4192 Perl_warner(aTHX_ packWARN(WARN_SEMICOLON), PL_warn_nosemi);
4193 CopLINE_inc(PL_curcop);
4196 no_op("Bareword",s);
4199 /* Look for a subroutine with this name in current package,
4200 unless name is "Foo::", in which case Foo is a bearword
4201 (and a package name). */
4204 PL_tokenbuf[len - 2] == ':' && PL_tokenbuf[len - 1] == ':')
4206 if (ckWARN(WARN_BAREWORD) && ! gv_fetchpv(PL_tokenbuf, FALSE, SVt_PVHV))
4207 Perl_warner(aTHX_ packWARN(WARN_BAREWORD),
4208 "Bareword \"%s\" refers to nonexistent package",
4211 PL_tokenbuf[len] = '\0';
4218 gv = gv_fetchpv(PL_tokenbuf, FALSE, SVt_PVCV);
4221 /* if we saw a global override before, get the right name */
4224 sv = newSVpvn("CORE::GLOBAL::",14);
4225 sv_catpv(sv,PL_tokenbuf);
4228 /* If len is 0, newSVpv does strlen(), which is correct.
4229 If len is non-zero, then it will be the true length,
4230 and so the scalar will be created correctly. */
4231 sv = newSVpv(PL_tokenbuf,len);
4234 /* Presume this is going to be a bareword of some sort. */
4237 yylval.opval = (OP*)newSVOP(OP_CONST, 0, sv);
4238 yylval.opval->op_private = OPpCONST_BARE;
4239 /* UTF-8 package name? */
4240 if (UTF && !IN_BYTES &&
4241 is_utf8_string((U8*)SvPVX_const(sv), SvCUR(sv)))
4244 /* And if "Foo::", then that's what it certainly is. */
4249 /* See if it's the indirect object for a list operator. */
4251 if (PL_oldoldbufptr &&
4252 PL_oldoldbufptr < PL_bufptr &&
4253 (PL_oldoldbufptr == PL_last_lop
4254 || PL_oldoldbufptr == PL_last_uni) &&
4255 /* NO SKIPSPACE BEFORE HERE! */
4256 (PL_expect == XREF ||
4257 ((PL_opargs[PL_last_lop_op] >> OASHIFT)& 7) == OA_FILEREF))
4259 bool immediate_paren = *s == '(';
4261 /* (Now we can afford to cross potential line boundary.) */
4264 /* Two barewords in a row may indicate method call. */
4266 if ((isIDFIRST_lazy_if(s,UTF) || *s == '$') && (tmp=intuit_method(s,gv)))
4269 /* If not a declared subroutine, it's an indirect object. */
4270 /* (But it's an indir obj regardless for sort.) */
4272 if ( !immediate_paren && (PL_last_lop_op == OP_SORT ||
4273 ((!gv || !GvCVu(gv)) &&
4274 (PL_last_lop_op != OP_MAPSTART &&
4275 PL_last_lop_op != OP_GREPSTART))))
4277 PL_expect = (PL_last_lop == PL_oldoldbufptr) ? XTERM : XOPERATOR;
4282 PL_expect = XOPERATOR;
4285 /* Is this a word before a => operator? */
4286 if (*s == '=' && s[1] == '>' && !pkgname) {
4288 sv_setpv(((SVOP*)yylval.opval)->op_sv, PL_tokenbuf);
4289 if (UTF && !IN_BYTES && is_utf8_string((U8*)PL_tokenbuf, len))
4290 SvUTF8_on(((SVOP*)yylval.opval)->op_sv);
4294 /* If followed by a paren, it's certainly a subroutine. */
4297 if (gv && GvCVu(gv)) {
4298 for (d = s + 1; SPACE_OR_TAB(*d); d++) ;
4299 if (*d == ')' && (sv = cv_const_sv(GvCV(gv)))) {
4304 PL_nextval[PL_nexttoke].opval = yylval.opval;
4305 PL_expect = XOPERATOR;
4311 /* If followed by var or block, call it a method (unless sub) */
4313 if ((*s == '$' || *s == '{') && (!gv || !GvCVu(gv))) {
4314 PL_last_lop = PL_oldbufptr;
4315 PL_last_lop_op = OP_METHOD;
4319 /* If followed by a bareword, see if it looks like indir obj. */
4322 && (isIDFIRST_lazy_if(s,UTF) || *s == '$')
4323 && (tmp = intuit_method(s,gv)))
4326 /* Not a method, so call it a subroutine (if defined) */
4328 if (gv && GvCVu(gv)) {
4330 if (lastchar == '-' && ckWARN_d(WARN_AMBIGUOUS))
4331 Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
4332 "Ambiguous use of -%s resolved as -&%s()",
4333 PL_tokenbuf, PL_tokenbuf);
4334 /* Check for a constant sub */
4336 if ((sv = cv_const_sv(cv))) {
4338 SvREFCNT_dec(((SVOP*)yylval.opval)->op_sv);
4339 ((SVOP*)yylval.opval)->op_sv = SvREFCNT_inc(sv);
4340 yylval.opval->op_private = 0;
4344 /* Resolve to GV now. */
4345 op_free(yylval.opval);
4346 yylval.opval = newCVREF(0, newGVOP(OP_GV, 0, gv));
4347 yylval.opval->op_private |= OPpENTERSUB_NOPAREN;
4348 PL_last_lop = PL_oldbufptr;
4349 PL_last_lop_op = OP_ENTERSUB;
4350 /* Is there a prototype? */
4353 const char *proto = SvPV_const((SV*)cv, len);
4356 if (*proto == '$' && proto[1] == '\0')
4358 while (*proto == ';')
4360 if (*proto == '&' && *s == '{') {
4361 sv_setpv(PL_subname, PL_curstash ?
4362 "__ANON__" : "__ANON__::__ANON__");
4366 PL_nextval[PL_nexttoke].opval = yylval.opval;
4372 /* Call it a bare word */
4374 if (PL_hints & HINT_STRICT_SUBS)
4375 yylval.opval->op_private |= OPpCONST_STRICT;
4378 if (lastchar != '-') {
4379 if (ckWARN(WARN_RESERVED)) {
4380 for (d = PL_tokenbuf; *d && isLOWER(*d); d++) ;
4381 if (!*d && !gv_stashpv(PL_tokenbuf,FALSE))
4382 Perl_warner(aTHX_ packWARN(WARN_RESERVED), PL_warn_reserved,
4389 if ((lastchar == '*' || lastchar == '%' || lastchar == '&')
4390 && ckWARN_d(WARN_AMBIGUOUS)) {
4391 Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
4392 "Operator or semicolon missing before %c%s",
4393 lastchar, PL_tokenbuf);
4394 Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
4395 "Ambiguous use of %c resolved as operator %c",
4396 lastchar, lastchar);
4402 yylval.opval = (OP*)newSVOP(OP_CONST, 0,
4403 newSVpv(CopFILE(PL_curcop),0));
4407 yylval.opval = (OP*)newSVOP(OP_CONST, 0,
4408 Perl_newSVpvf(aTHX_ "%"IVdf, (IV)CopLINE(PL_curcop)));
4411 case KEY___PACKAGE__:
4412 yylval.opval = (OP*)newSVOP(OP_CONST, 0,
4414 ? newSVhek(HvNAME_HEK(PL_curstash))
4421 if (PL_rsfp && (!PL_in_eval || PL_tokenbuf[2] == 'D')) {
4422 const char *pname = "main";
4423 if (PL_tokenbuf[2] == 'D')
4424 pname = HvNAME_get(PL_curstash ? PL_curstash : PL_defstash);
4425 gv = gv_fetchpv(Perl_form(aTHX_ "%s::DATA", pname), TRUE, SVt_PVIO);
4428 GvIOp(gv) = newIO();
4429 IoIFP(GvIOp(gv)) = PL_rsfp;
4430 #if defined(HAS_FCNTL) && defined(F_SETFD)
4432 const int fd = PerlIO_fileno(PL_rsfp);
4433 fcntl(fd,F_SETFD,fd >= 3);
4436 /* Mark this internal pseudo-handle as clean */
4437 IoFLAGS(GvIOp(gv)) |= IOf_UNTAINT;
4439 IoTYPE(GvIOp(gv)) = IoTYPE_PIPE;
4440 else if ((PerlIO*)PL_rsfp == PerlIO_stdin())
4441 IoTYPE(GvIOp(gv)) = IoTYPE_STD;
4443 IoTYPE(GvIOp(gv)) = IoTYPE_RDONLY;
4444 #if defined(WIN32) && !defined(PERL_TEXTMODE_SCRIPTS)
4445 /* if the script was opened in binmode, we need to revert
4446 * it to text mode for compatibility; but only iff it has CRs
4447 * XXX this is a questionable hack at best. */
4448 if (PL_bufend-PL_bufptr > 2
4449 && PL_bufend[-1] == '\n' && PL_bufend[-2] == '\r')
4452 if (IoTYPE(GvIOp(gv)) == IoTYPE_RDONLY) {
4453 loc = PerlIO_tell(PL_rsfp);
4454 (void)PerlIO_seek(PL_rsfp, 0L, 0);
4457 if (PerlLIO_setmode(PL_rsfp, O_TEXT) != -1) {
4459 if (PerlLIO_setmode(PerlIO_fileno(PL_rsfp), O_TEXT) != -1) {
4460 #endif /* NETWARE */
4461 #ifdef PERLIO_IS_STDIO /* really? */
4462 # if defined(__BORLANDC__)
4463 /* XXX see note in do_binmode() */
4464 ((FILE*)PL_rsfp)->flags &= ~_F_BIN;
4468 PerlIO_seek(PL_rsfp, loc, 0);
4472 #ifdef PERLIO_LAYERS
4475 PerlIO_apply_layers(aTHX_ PL_rsfp, NULL, ":utf8");
4476 else if (PL_encoding) {
4483 XPUSHs(PL_encoding);
4485 call_method("name", G_SCALAR);
4489 PerlIO_apply_layers(aTHX_ PL_rsfp, NULL,
4490 Perl_form(aTHX_ ":encoding(%"SVf")",
4508 if (PL_expect == XSTATE) {
4515 if (*s == ':' && s[1] == ':') {
4518 s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, FALSE, &len);
4519 if (!(tmp = keyword(PL_tokenbuf, len)))
4520 Perl_croak(aTHX_ "CORE::%s is not a keyword", PL_tokenbuf);
4523 else if (tmp == KEY_require || tmp == KEY_do)
4524 /* that's a way to remember we saw "CORE::" */
4537 LOP(OP_ACCEPT,XTERM);
4543 LOP(OP_ATAN2,XTERM);
4549 LOP(OP_BINMODE,XTERM);
4552 LOP(OP_BLESS,XTERM);
4561 (void)gv_fetchpv("ENV",TRUE, SVt_PVHV); /* may use HOME */
4578 if (!PL_cryptseen) {
4579 PL_cryptseen = TRUE;
4583 LOP(OP_CRYPT,XTERM);
4586 LOP(OP_CHMOD,XTERM);
4589 LOP(OP_CHOWN,XTERM);
4592 LOP(OP_CONNECT,XTERM);
4608 s = force_word(s,WORD,TRUE,TRUE,FALSE);
4609 if (orig_keyword == KEY_do) {
4618 PL_hints |= HINT_BLOCK_SCOPE;
4628 gv_fetchpv("AnyDBM_File::ISA", GV_ADDMULTI, SVt_PVAV);
4629 LOP(OP_DBMOPEN,XTERM);
4635 s = force_word(s,WORD,TRUE,FALSE,FALSE);
4642 yylval.ival = CopLINE(PL_curcop);
4656 PL_expect = (*s == '{') ? XTERMBLOCK : XTERM;
4657 UNIBRACK(OP_ENTEREVAL);
4675 case KEY_endhostent:
4681 case KEY_endservent:
4684 case KEY_endprotoent:
4695 yylval.ival = CopLINE(PL_curcop);
4697 if (PL_expect == XSTATE && isIDFIRST_lazy_if(s,UTF)) {
4699 if ((PL_bufend - p) >= 3 &&
4700 strnEQ(p, "my", 2) && isSPACE(*(p + 2)))
4702 else if ((PL_bufend - p) >= 4 &&
4703 strnEQ(p, "our", 3) && isSPACE(*(p + 3)))
4706 if (isIDFIRST_lazy_if(p,UTF)) {
4707 p = scan_ident(p, PL_bufend,
4708 PL_tokenbuf, sizeof PL_tokenbuf, TRUE);
4712 Perl_croak(aTHX_ "Missing $ on loop variable");
4717 LOP(OP_FORMLINE,XTERM);
4723 LOP(OP_FCNTL,XTERM);
4729 LOP(OP_FLOCK,XTERM);
4738 LOP(OP_GREPSTART, XREF);
4741 s = force_word(s,WORD,TRUE,FALSE,FALSE);
4756 case KEY_getpriority:
4757 LOP(OP_GETPRIORITY,XTERM);
4759 case KEY_getprotobyname:
4762 case KEY_getprotobynumber:
4763 LOP(OP_GPBYNUMBER,XTERM);
4765 case KEY_getprotoent:
4777 case KEY_getpeername:
4778 UNI(OP_GETPEERNAME);
4780 case KEY_gethostbyname:
4783 case KEY_gethostbyaddr:
4784 LOP(OP_GHBYADDR,XTERM);
4786 case KEY_gethostent:
4789 case KEY_getnetbyname:
4792 case KEY_getnetbyaddr:
4793 LOP(OP_GNBYADDR,XTERM);
4798 case KEY_getservbyname:
4799 LOP(OP_GSBYNAME,XTERM);
4801 case KEY_getservbyport:
4802 LOP(OP_GSBYPORT,XTERM);
4804 case KEY_getservent:
4807 case KEY_getsockname:
4808 UNI(OP_GETSOCKNAME);
4810 case KEY_getsockopt:
4811 LOP(OP_GSOCKOPT,XTERM);
4833 yylval.ival = CopLINE(PL_curcop);
4837 LOP(OP_INDEX,XTERM);
4843 LOP(OP_IOCTL,XTERM);
4855 s = force_word(s,WORD,TRUE,FALSE,FALSE);
4887 LOP(OP_LISTEN,XTERM);
4896 s = scan_pat(s,OP_MATCH);
4897 TERM(sublex_start());
4900 LOP(OP_MAPSTART, XREF);
4903 LOP(OP_MKDIR,XTERM);
4906 LOP(OP_MSGCTL,XTERM);
4909 LOP(OP_MSGGET,XTERM);
4912 LOP(OP_MSGRCV,XTERM);
4915 LOP(OP_MSGSND,XTERM);
4921 if (isIDFIRST_lazy_if(s,UTF)) {
4922 s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, TRUE, &len);
4923 if (len == 3 && strnEQ(PL_tokenbuf, "sub", 3))
4925 PL_in_my_stash = find_in_my_stash(PL_tokenbuf, len);
4926 if (!PL_in_my_stash) {
4929 sprintf(tmpbuf, "No such class %.1000s", PL_tokenbuf);
4937 s = force_word(s,WORD,TRUE,FALSE,FALSE);
4944 s = tokenize_use(0, s);
4948 if (*s == '(' || (s = skipspace(s), *s == '('))
4955 if (isIDFIRST_lazy_if(s,UTF)) {
4957 for (d = s; isALNUM_lazy_if(d,UTF); d++) ;
4958 for (t=d; *t && isSPACE(*t); t++) ;
4959 if ( *t && strchr("|&*+-=!?:.", *t) && ckWARN_d(WARN_PRECEDENCE)
4961 && !(t[0] == '=' && t[1] == '>')
4963 Perl_warner(aTHX_ packWARN(WARN_PRECEDENCE),
4964 "Precedence problem: open %.*s should be open(%.*s)",
4965 d - s, s, d - s, s);
4971 yylval.ival = OP_OR;
4981 LOP(OP_OPEN_DIR,XTERM);
4984 checkcomma(s,PL_tokenbuf,"filehandle");
4988 checkcomma(s,PL_tokenbuf,"filehandle");
5007 s = force_word(s,WORD,FALSE,TRUE,FALSE);
5011 LOP(OP_PIPE_OP,XTERM);
5014 s = scan_str(s,FALSE,FALSE);
5016 missingterm((char*)0);
5017 yylval.ival = OP_CONST;
5018 TERM(sublex_start());
5024 s = scan_str(s,FALSE,FALSE);
5026 missingterm((char*)0);
5027 PL_expect = XOPERATOR;
5029 if (SvCUR(PL_lex_stuff)) {
5032 d = SvPV_force(PL_lex_stuff, len);
5035 for (; isSPACE(*d) && len; --len, ++d) ;
5038 if (!warned && ckWARN(WARN_QW)) {
5039 for (; !isSPACE(*d) && len; --len, ++d) {
5041 Perl_warner(aTHX_ packWARN(WARN_QW),
5042 "Possible attempt to separate words with commas");
5045 else if (*d == '#') {
5046 Perl_warner(aTHX_ packWARN(WARN_QW),
5047 "Possible attempt to put comments in qw() list");
5053 for (; !isSPACE(*d) && len; --len, ++d) ;
5055 sv = newSVpvn(b, d-b);
5056 if (DO_UTF8(PL_lex_stuff))
5058 words = append_elem(OP_LIST, words,
5059 newSVOP(OP_CONST, 0, tokeq(sv)));
5063 PL_nextval[PL_nexttoke].opval = words;
5068 SvREFCNT_dec(PL_lex_stuff);
5069 PL_lex_stuff = Nullsv;
5075 s = scan_str(s,FALSE,FALSE);
5077 missingterm((char*)0);
5078 yylval.ival = OP_STRINGIFY;
5079 if (SvIVX(PL_lex_stuff) == '\'')
5080 SvIV_set(PL_lex_stuff, 0); /* qq'$foo' should intepolate */
5081 TERM(sublex_start());
5084 s = scan_pat(s,OP_QR);
5085 TERM(sublex_start());
5088 s = scan_str(s,FALSE,FALSE);
5090 missingterm((char*)0);
5091 yylval.ival = OP_BACKTICK;
5093 TERM(sublex_start());
5101 s = force_version(s, FALSE);
5103 else if (*s != 'v' || !isDIGIT(s[1])
5104 || (s = force_version(s, TRUE), *s == 'v'))
5106 *PL_tokenbuf = '\0';
5107 s = force_word(s,WORD,TRUE,TRUE,FALSE);
5108 if (isIDFIRST_lazy_if(PL_tokenbuf,UTF))
5109 gv_stashpvn(PL_tokenbuf, strlen(PL_tokenbuf), TRUE);
5111 yyerror("<> should be quotes");
5113 if (orig_keyword == KEY_require) {
5121 PL_last_uni = PL_oldbufptr;
5122 PL_last_lop_op = OP_REQUIRE;
5124 return REPORT( (int)REQUIRE );
5130 s = force_word(s,WORD,TRUE,FALSE,FALSE);
5134 LOP(OP_RENAME,XTERM);
5143 LOP(OP_RINDEX,XTERM);
5153 UNIDOR(OP_READLINE);
5166 LOP(OP_REVERSE,XTERM);
5169 UNIDOR(OP_READLINK);
5177 TERM(sublex_start());
5179 TOKEN(1); /* force error */
5188 LOP(OP_SELECT,XTERM);
5194 LOP(OP_SEMCTL,XTERM);
5197 LOP(OP_SEMGET,XTERM);
5200 LOP(OP_SEMOP,XTERM);
5206 LOP(OP_SETPGRP,XTERM);
5208 case KEY_setpriority:
5209 LOP(OP_SETPRIORITY,XTERM);
5211 case KEY_sethostent:
5217 case KEY_setservent:
5220 case KEY_setprotoent:
5230 LOP(OP_SEEKDIR,XTERM);
5232 case KEY_setsockopt:
5233 LOP(OP_SSOCKOPT,XTERM);
5239 LOP(OP_SHMCTL,XTERM);
5242 LOP(OP_SHMGET,XTERM);
5245 LOP(OP_SHMREAD,XTERM);
5248 LOP(OP_SHMWRITE,XTERM);
5251 LOP(OP_SHUTDOWN,XTERM);
5260 LOP(OP_SOCKET,XTERM);
5262 case KEY_socketpair:
5263 LOP(OP_SOCKPAIR,XTERM);
5266 checkcomma(s,PL_tokenbuf,"subroutine name");
5268 if (*s == ';' || *s == ')') /* probably a close */
5269 Perl_croak(aTHX_ "sort is now a reserved word");
5271 s = force_word(s,WORD,TRUE,TRUE,FALSE);
5275 LOP(OP_SPLIT,XTERM);
5278 LOP(OP_SPRINTF,XTERM);
5281 LOP(OP_SPLICE,XTERM);
5296 LOP(OP_SUBSTR,XTERM);
5302 char tmpbuf[sizeof PL_tokenbuf];
5303 SSize_t tboffset = 0;
5304 expectation attrful;
5305 bool have_name, have_proto, bad_proto;
5306 const int key = tmp;
5310 if (isIDFIRST_lazy_if(s,UTF) || *s == '\'' ||
5311 (*s == ':' && s[1] == ':'))
5314 attrful = XATTRBLOCK;
5315 /* remember buffer pos'n for later force_word */
5316 tboffset = s - PL_oldbufptr;
5317 d = scan_word(s, tmpbuf, sizeof tmpbuf, TRUE, &len);
5318 if (strchr(tmpbuf, ':'))
5319 sv_setpv(PL_subname, tmpbuf);
5321 sv_setsv(PL_subname,PL_curstname);
5322 sv_catpvn(PL_subname,"::",2);
5323 sv_catpvn(PL_subname,tmpbuf,len);
5330 Perl_croak(aTHX_ "Missing name in \"my sub\"");
5331 PL_expect = XTERMBLOCK;
5332 attrful = XATTRTERM;
5333 sv_setpvn(PL_subname,"?",1);
5337 if (key == KEY_format) {
5339 PL_lex_formbrack = PL_lex_brackets + 1;
5341 (void) force_word(PL_oldbufptr + tboffset, WORD,
5346 /* Look for a prototype */
5350 s = scan_str(s,FALSE,FALSE);
5352 Perl_croak(aTHX_ "Prototype not terminated");
5353 /* strip spaces and check for bad characters */
5354 d = SvPVX(PL_lex_stuff);
5357 for (p = d; *p; ++p) {
5360 if (!strchr("$@%*;[]&\\", *p))
5365 if (bad_proto && ckWARN(WARN_SYNTAX))
5366 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
5367 "Illegal character in prototype for %"SVf" : %s",
5369 SvCUR_set(PL_lex_stuff, tmp);
5377 if (*s == ':' && s[1] != ':')
5378 PL_expect = attrful;
5379 else if (*s != '{' && key == KEY_sub) {
5381 Perl_croak(aTHX_ "Illegal declaration of anonymous subroutine");
5383 Perl_croak(aTHX_ "Illegal declaration of subroutine %"SVf, PL_subname);
5387 PL_nextval[PL_nexttoke].opval =
5388 (OP*)newSVOP(OP_CONST, 0, PL_lex_stuff);
5389 PL_lex_stuff = Nullsv;
5393 sv_setpv(PL_subname,
5394 PL_curstash ? "__ANON__" : "__ANON__::__ANON__");
5397 (void) force_word(PL_oldbufptr + tboffset, WORD,
5406 LOP(OP_SYSTEM,XREF);
5409 LOP(OP_SYMLINK,XTERM);
5412 LOP(OP_SYSCALL,XTERM);
5415 LOP(OP_SYSOPEN,XTERM);
5418 LOP(OP_SYSSEEK,XTERM);
5421 LOP(OP_SYSREAD,XTERM);
5424 LOP(OP_SYSWRITE,XTERM);
5428 TERM(sublex_start());
5449 LOP(OP_TRUNCATE,XTERM);
5461 yylval.ival = CopLINE(PL_curcop);
5465 yylval.ival = CopLINE(PL_curcop);
5469 LOP(OP_UNLINK,XTERM);
5475 LOP(OP_UNPACK,XTERM);
5478 LOP(OP_UTIME,XTERM);
5484 LOP(OP_UNSHIFT,XTERM);
5487 s = tokenize_use(1, s);
5497 yylval.ival = CopLINE(PL_curcop);
5501 PL_hints |= HINT_BLOCK_SCOPE;
5508 LOP(OP_WAITPID,XTERM);
5517 ctl_l[0] = toCTRL('L');
5519 gv_fetchpv(ctl_l,TRUE, SVt_PV);
5522 gv_fetchpv("\f",TRUE, SVt_PV); /* Make sure $^L is defined */
5527 if (PL_expect == XOPERATOR)
5533 yylval.ival = OP_XOR;
5538 TERM(sublex_start());
5543 #pragma segment Main
5547 S_pending_ident(pTHX)
5550 register I32 tmp = 0;
5551 /* pit holds the identifier we read and pending_ident is reset */
5552 char pit = PL_pending_ident;
5553 PL_pending_ident = 0;
5555 DEBUG_T({ PerlIO_printf(Perl_debug_log,
5556 "### Tokener saw identifier '%s'\n", PL_tokenbuf); });
5558 /* if we're in a my(), we can't allow dynamics here.
5559 $foo'bar has already been turned into $foo::bar, so
5560 just check for colons.
5562 if it's a legal name, the OP is a PADANY.
5565 if (PL_in_my == KEY_our) { /* "our" is merely analogous to "my" */
5566 if (strchr(PL_tokenbuf,':'))
5567 yyerror(Perl_form(aTHX_ "No package name allowed for "
5568 "variable %s in \"our\"",
5570 tmp = allocmy(PL_tokenbuf);
5573 if (strchr(PL_tokenbuf,':'))
5574 yyerror(Perl_form(aTHX_ PL_no_myglob,PL_tokenbuf));
5576 yylval.opval = newOP(OP_PADANY, 0);
5577 yylval.opval->op_targ = allocmy(PL_tokenbuf);
5583 build the ops for accesses to a my() variable.
5585 Deny my($a) or my($b) in a sort block, *if* $a or $b is
5586 then used in a comparison. This catches most, but not
5587 all cases. For instance, it catches
5588 sort { my($a); $a <=> $b }
5590 sort { my($a); $a < $b ? -1 : $a == $b ? 0 : 1; }
5591 (although why you'd do that is anyone's guess).
5594 if (!strchr(PL_tokenbuf,':')) {
5596 tmp = pad_findmy(PL_tokenbuf);
5597 if (tmp != NOT_IN_PAD) {
5598 /* might be an "our" variable" */
5599 if (PAD_COMPNAME_FLAGS(tmp) & SVpad_OUR) {
5600 /* build ops for a bareword */
5601 HV * const stash = PAD_COMPNAME_OURSTASH(tmp);
5602 HEK * const stashname = HvNAME_HEK(stash);
5603 SV * const sym = newSVhek(stashname);
5604 sv_catpvn(sym, "::", 2);
5605 sv_catpv(sym, PL_tokenbuf+1);
5606 yylval.opval = (OP*)newSVOP(OP_CONST, 0, sym);
5607 yylval.opval->op_private = OPpCONST_ENTERED;
5610 ? (GV_ADDMULTI | GV_ADDINEVAL)
5613 ((PL_tokenbuf[0] == '$') ? SVt_PV
5614 : (PL_tokenbuf[0] == '@') ? SVt_PVAV
5619 /* if it's a sort block and they're naming $a or $b */
5620 if (PL_last_lop_op == OP_SORT &&
5621 PL_tokenbuf[0] == '$' &&
5622 (PL_tokenbuf[1] == 'a' || PL_tokenbuf[1] == 'b')
5625 for (d = PL_in_eval ? PL_oldoldbufptr : PL_linestart;
5626 d < PL_bufend && *d != '\n';
5629 if (strnEQ(d,"<=>",3) || strnEQ(d,"cmp",3)) {
5630 Perl_croak(aTHX_ "Can't use \"my %s\" in sort comparison",
5636 yylval.opval = newOP(OP_PADANY, 0);
5637 yylval.opval->op_targ = tmp;
5643 Whine if they've said @foo in a doublequoted string,
5644 and @foo isn't a variable we can find in the symbol
5647 if (pit == '@' && PL_lex_state != LEX_NORMAL && !PL_lex_brackets) {
5648 GV *gv = gv_fetchpv(PL_tokenbuf+1, FALSE, SVt_PVAV);
5649 if ((!gv || ((PL_tokenbuf[0] == '@') ? !GvAV(gv) : !GvHV(gv)))
5650 && ckWARN(WARN_AMBIGUOUS))
5652 /* Downgraded from fatal to warning 20000522 mjd */
5653 Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
5654 "Possible unintended interpolation of %s in string",
5659 /* build ops for a bareword */
5660 yylval.opval = (OP*)newSVOP(OP_CONST, 0, newSVpv(PL_tokenbuf+1, 0));
5661 yylval.opval->op_private = OPpCONST_ENTERED;
5662 gv_fetchpv(PL_tokenbuf+1, PL_in_eval ? (GV_ADDMULTI | GV_ADDINEVAL) : TRUE,
5663 ((PL_tokenbuf[0] == '$') ? SVt_PV
5664 : (PL_tokenbuf[0] == '@') ? SVt_PVAV
5670 * The following code was generated by perl_keyword.pl.
5674 Perl_keyword (pTHX_ const char *name, I32 len)
5678 case 1: /* 5 tokens of length 1 */
5710 case 2: /* 18 tokens of length 2 */
5856 case 3: /* 28 tokens of length 3 */
5860 if (name[1] == 'N' &&
5923 if (name[1] == 'i' &&
5963 if (name[1] == 'o' &&
5972 if (name[1] == 'e' &&
5981 if (name[1] == 'n' &&
5990 if (name[1] == 'o' &&
5999 if (name[1] == 'a' &&
6008 if (name[1] == 'o' &&
6070 if (name[1] == 'e' &&
6102 if (name[1] == 'i' &&
6111 if (name[1] == 's' &&
6120 if (name[1] == 'e' &&
6129 if (name[1] == 'o' &&
6141 case 4: /* 40 tokens of length 4 */
6145 if (name[1] == 'O' &&
6155 if (name[1] == 'N' &&
6165 if (name[1] == 'i' &&
6175 if (name[1] == 'h' &&
6185 if (name[1] == 'u' &&
6198 if (name[2] == 'c' &&
6207 if (name[2] == 's' &&
6216 if (name[2] == 'a' &&
6252 if (name[1] == 'o' &&
6265 if (name[2] == 't' &&
6274 if (name[2] == 'o' &&
6283 if (name[2] == 't' &&
6292 if (name[2] == 'e' &&
6305 if (name[1] == 'o' &&
6318 if (name[2] == 'y' &&
6327 if (name[2] == 'l' &&
6343 if (name[2] == 's' &&
6352 if (name[2] == 'n' &&
6361 if (name[2] == 'c' &&
6374 if (name[1] == 'e' &&
6384 if (name[1] == 'p' &&
6397 if (name[2] == 'c' &&
6406 if (name[2] == 'p' &&
6415 if (name[2] == 's' &&
6431 if (name[2] == 'n' &&
6501 if (name[2] == 'r' &&
6510 if (name[2] == 'r' &&
6519 if (name[2] == 'a' &&
6535 if (name[2] == 'l' &&
6602 case 5: /* 36 tokens of length 5 */
6606 if (name[1] == 'E' &&
6617 if (name[1] == 'H' &&
6631 if (name[2] == 'a' &&
6641 if (name[2] == 'a' &&
6655 if (name[1] == 'l' &&
6672 if (name[3] == 'i' &&
6681 if (name[3] == 'o' &&
6717 if (name[2] == 'o' &&
6727 if (name[2] == 'y' &&
6741 if (name[1] == 'l' &&
6755 if (name[2] == 'n' &&
6765 if (name[2] == 'o' &&
6782 if (name[2] == 'd' &&
6792 if (name[2] == 'c' &&
6809 if (name[2] == 'c' &&
6819 if (name[2] == 't' &&
6833 if (name[1] == 'k' &&
6844 if (name[1] == 'r' &&
6858 if (name[2] == 's' &&
6868 if (name[2] == 'd' &&
6885 if (name[2] == 'm' &&
6895 if (name[2] == 'i' &&
6905 if (name[2] == 'e' &&
6915 if (name[2] == 'l' &&
6925 if (name[2] == 'a' &&
6935 if (name[2] == 'u' &&
6949 if (name[1] == 'i' &&
6963 if (name[2] == 'a' &&
6976 if (name[3] == 'e' &&
7011 if (name[2] == 'i' &&
7028 if (name[2] == 'i' &&
7038 if (name[2] == 'i' &&
7055 case 6: /* 33 tokens of length 6 */
7059 if (name[1] == 'c' &&
7074 if (name[2] == 'l' &&
7085 if (name[2] == 'r' &&
7100 if (name[1] == 'e' &&
7115 if (name[2] == 's' &&
7120 if(ckWARN_d(WARN_SYNTAX))
7121 Perl_warner(aTHX_ packWARN(WARN_SYNTAX), "elseif should be elsif");
7127 if (name[2] == 'i' &&
7145 if (name[2] == 'l' &&
7156 if (name[2] == 'r' &&
7171 if (name[1] == 'm' &&
7186 if (name[2] == 'n' &&
7197 if (name[2] == 's' &&
7212 if (name[1] == 's' &&
7218 if (name[4] == 't' &&
7227 if (name[4] == 'e' &&
7236 if (name[4] == 'c' &&
7245 if (name[4] == 'n' &&
7261 if (name[1] == 'r' &&
7279 if (name[3] == 'a' &&
7289 if (name[3] == 'u' &&
7303 if (name[2] == 'n' &&
7321 if (name[2] == 'a' &&
7335 if (name[3] == 'e' &&
7348 if (name[4] == 't' &&
7357 if (name[4] == 'e' &&
7379 if (name[4] == 't' &&
7388 if (name[4] == 'e' &&
7404 if (name[2] == 'c' &&
7415 if (name[2] == 'l' &&
7426 if (name[2] == 'b' &&
7437 if (name[2] == 's' &&
7460 if (name[4] == 's' &&
7469 if (name[4] == 'n' &&
7482 if (name[3] == 'a' &&
7499 if (name[1] == 'a' &&
7514 case 7: /* 28 tokens of length 7 */
7518 if (name[1] == 'E' &&
7531 if (name[1] == '_' &&
7544 if (name[1] == 'i' &&
7551 return -KEY_binmode;
7557 if (name[1] == 'o' &&
7564 return -KEY_connect;
7573 if (name[2] == 'm' &&
7579 return -KEY_dbmopen;
7585 if (name[2] == 'f' &&
7601 if (name[1] == 'o' &&
7614 if (name[1] == 'e' &&
7621 if (name[5] == 'r' &&
7624 return -KEY_getpgrp;
7630 if (name[5] == 'i' &&
7633 return -KEY_getppid;
7646 if (name[1] == 'c' &&
7653 return -KEY_lcfirst;
7659 if (name[1] == 'p' &&
7666 return -KEY_opendir;
7672 if (name[1] == 'a' &&
7690 if (name[3] == 'd' &&
7695 return -KEY_readdir;
7701 if (name[3] == 'u' &&
7712 if (name[3] == 'e' &&
7717 return -KEY_reverse;
7736 if (name[3] == 'k' &&
7741 return -KEY_seekdir;
7747 if (name[3] == 'p' &&
7752 return -KEY_setpgrp;
7762 if (name[2] == 'm' &&
7768 return -KEY_shmread;
7774 if (name[2] == 'r' &&
7780 return -KEY_sprintf;
7789 if (name[3] == 'l' &&
7794 return -KEY_symlink;
7803 if (name[4] == 'a' &&
7807 return -KEY_syscall;
7813 if (name[4] == 'p' &&
7817 return -KEY_sysopen;
7823 if (name[4] == 'e' &&
7827 return -KEY_sysread;
7833 if (name[4] == 'e' &&
7837 return -KEY_sysseek;
7855 if (name[1] == 'e' &&
7862 return -KEY_telldir;
7871 if (name[2] == 'f' &&
7877 return -KEY_ucfirst;
7883 if (name[2] == 's' &&
7889 return -KEY_unshift;
7899 if (name[1] == 'a' &&
7906 return -KEY_waitpid;
7915 case 8: /* 26 tokens of length 8 */
7919 if (name[1] == 'U' &&
7927 return KEY_AUTOLOAD;
7938 if (name[3] == 'A' &&
7944 return KEY___DATA__;
7950 if (name[3] == 'I' &&
7956 return -KEY___FILE__;
7962 if (name[3] == 'I' &&
7968 return -KEY___LINE__;
7984 if (name[2] == 'o' &&
7991 return -KEY_closedir;
7997 if (name[2] == 'n' &&
8004 return -KEY_continue;
8014 if (name[1] == 'b' &&
8022 return -KEY_dbmclose;
8028 if (name[1] == 'n' &&
8034 if (name[4] == 'r' &&
8039 return -KEY_endgrent;
8045 if (name[4] == 'w' &&
8050 return -KEY_endpwent;
8063 if (name[1] == 'o' &&
8071 return -KEY_formline;
8077 if (name[1] == 'e' &&
8088 if (name[6] == 'n' &&
8091 return -KEY_getgrent;
8097 if (name[6] == 'i' &&
8100 return -KEY_getgrgid;
8106 if (name[6] == 'a' &&
8109 return -KEY_getgrnam;
8122 if (name[4] == 'o' &&
8127 return -KEY_getlogin;
8138 if (name[6] == 'n' &&
8141 return -KEY_getpwent;
8147 if (name[6] == 'a' &&
8150 return -KEY_getpwnam;
8156 if (name[6] == 'i' &&
8159 return -KEY_getpwuid;
8179 if (name[1] == 'e' &&
8186 if (name[5] == 'i' &&
8193 return -KEY_readline;
8198 return -KEY_readlink;
8209 if (name[5] == 'i' &&
8213 return -KEY_readpipe;
8234 if (name[4] == 'r' &&
8239 return -KEY_setgrent;
8245 if (name[4] == 'w' &&
8250 return -KEY_setpwent;
8266 if (name[3] == 'w' &&
8272 return -KEY_shmwrite;
8278 if (name[3] == 't' &&
8284 return -KEY_shutdown;
8294 if (name[2] == 's' &&
8301 return -KEY_syswrite;
8311 if (name[1] == 'r' &&
8319 return -KEY_truncate;
8328 case 9: /* 8 tokens of length 9 */
8332 if (name[1] == 'n' &&
8341 return -KEY_endnetent;
8347 if (name[1] == 'e' &&
8356 return -KEY_getnetent;
8362 if (name[1] == 'o' &&
8371 return -KEY_localtime;
8377 if (name[1] == 'r' &&
8386 return KEY_prototype;
8392 if (name[1] == 'u' &&
8401 return -KEY_quotemeta;
8407 if (name[1] == 'e' &&
8416 return -KEY_rewinddir;
8422 if (name[1] == 'e' &&
8431 return -KEY_setnetent;
8437 if (name[1] == 'a' &&
8446 return -KEY_wantarray;
8455 case 10: /* 9 tokens of length 10 */
8459 if (name[1] == 'n' &&
8465 if (name[4] == 'o' &&
8472 return -KEY_endhostent;
8478 if (name[4] == 'e' &&
8485 return -KEY_endservent;
8498 if (name[1] == 'e' &&
8504 if (name[4] == 'o' &&
8511 return -KEY_gethostent;
8520 if (name[5] == 'r' &&
8526 return -KEY_getservent;
8532 if (name[5] == 'c' &&
8538 return -KEY_getsockopt;
8563 if (name[4] == 'o' &&
8570 return -KEY_sethostent;
8579 if (name[5] == 'r' &&
8585 return -KEY_setservent;
8591 if (name[5] == 'c' &&
8597 return -KEY_setsockopt;
8614 if (name[2] == 'c' &&
8623 return -KEY_socketpair;
8636 case 11: /* 8 tokens of length 11 */
8640 if (name[1] == '_' &&
8651 return -KEY___PACKAGE__;
8657 if (name[1] == 'n' &&
8668 return -KEY_endprotoent;
8674 if (name[1] == 'e' &&
8683 if (name[5] == 'e' &&
8690 return -KEY_getpeername;
8699 if (name[6] == 'o' &&
8705 return -KEY_getpriority;
8711 if (name[6] == 't' &&
8717 return -KEY_getprotoent;
8731 if (name[4] == 'o' &&
8739 return -KEY_getsockname;
8752 if (name[1] == 'e' &&
8760 if (name[6] == 'o' &&
8766 return -KEY_setpriority;
8772 if (name[6] == 't' &&
8778 return -KEY_setprotoent;
8794 case 12: /* 2 tokens of length 12 */
8795 if (name[0] == 'g' &&
8807 if (name[9] == 'd' &&
8810 { /* getnetbyaddr */
8811 return -KEY_getnetbyaddr;
8817 if (name[9] == 'a' &&
8820 { /* getnetbyname */
8821 return -KEY_getnetbyname;
8833 case 13: /* 4 tokens of length 13 */
8834 if (name[0] == 'g' &&
8841 if (name[4] == 'o' &&
8850 if (name[10] == 'd' &&
8853 { /* gethostbyaddr */
8854 return -KEY_gethostbyaddr;
8860 if (name[10] == 'a' &&
8863 { /* gethostbyname */
8864 return -KEY_gethostbyname;
8877 if (name[4] == 'e' &&
8886 if (name[10] == 'a' &&
8889 { /* getservbyname */
8890 return -KEY_getservbyname;
8896 if (name[10] == 'o' &&
8899 { /* getservbyport */
8900 return -KEY_getservbyport;
8919 case 14: /* 1 tokens of length 14 */
8920 if (name[0] == 'g' &&
8934 { /* getprotobyname */
8935 return -KEY_getprotobyname;
8940 case 16: /* 1 tokens of length 16 */
8941 if (name[0] == 'g' &&
8957 { /* getprotobynumber */
8958 return -KEY_getprotobynumber;
8972 S_checkcomma(pTHX_ register char *s, const char *name, const char *what)
8976 if (*s == ' ' && s[1] == '(') { /* XXX gotta be a better way */
8977 if (ckWARN(WARN_SYNTAX)) {
8979 for (w = s+2; *w && level; w++) {
8986 for (; *w && isSPACE(*w); w++) ;
8987 if (!*w || !strchr(";|})]oaiuw!=", *w)) /* an advisory hack only... */
8988 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
8989 "%s (...) interpreted as function",name);
8992 while (s < PL_bufend && isSPACE(*s))
8996 while (s < PL_bufend && isSPACE(*s))
8998 if (isIDFIRST_lazy_if(s,UTF)) {
9000 while (isALNUM_lazy_if(s,UTF))
9002 while (s < PL_bufend && isSPACE(*s))
9006 *s = '\0'; /* XXX If we didn't do this, we could const a lot of toke.c */
9007 kw = keyword(w, s - w) || get_cv(w, FALSE) != 0;
9011 Perl_croak(aTHX_ "No comma allowed after %s", what);
9016 /* Either returns sv, or mortalizes sv and returns a new SV*.
9017 Best used as sv=new_constant(..., sv, ...).
9018 If s, pv are NULL, calls subroutine with one argument,
9019 and type is used with error messages only. */
9022 S_new_constant(pTHX_ const char *s, STRLEN len, const char *key, SV *sv, SV *pv,
9026 HV * const table = GvHV(PL_hintgv); /* ^H */
9030 const char *why1 = "", *why2 = "", *why3 = "";
9032 if (!table || !(PL_hints & HINT_LOCALIZE_HH)) {
9035 why2 = strEQ(key,"charnames")
9036 ? "(possibly a missing \"use charnames ...\")"
9038 msg = Perl_newSVpvf(aTHX_ "Constant(%s) unknown: %s",
9039 (type ? type: "undef"), why2);
9041 /* This is convoluted and evil ("goto considered harmful")
9042 * but I do not understand the intricacies of all the different
9043 * failure modes of %^H in here. The goal here is to make
9044 * the most probable error message user-friendly. --jhi */
9049 msg = Perl_newSVpvf(aTHX_ "Constant(%s): %s%s%s",
9050 (type ? type: "undef"), why1, why2, why3);
9052 yyerror(SvPVX_const(msg));
9056 cvp = hv_fetch(table, key, strlen(key), FALSE);
9057 if (!cvp || !SvOK(*cvp)) {
9060 why3 = "} is not defined";
9063 sv_2mortal(sv); /* Parent created it permanently */
9066 pv = sv_2mortal(newSVpvn(s, len));
9068 typesv = sv_2mortal(newSVpv(type, 0));
9070 typesv = &PL_sv_undef;
9072 PUSHSTACKi(PERLSI_OVERLOAD);
9084 call_sv(cv, G_SCALAR | ( PL_in_eval ? 0 : G_EVAL));
9088 /* Check the eval first */
9089 if (!PL_in_eval && SvTRUE(ERRSV)) {
9090 sv_catpv(ERRSV, "Propagated");
9091 yyerror(SvPV_nolen_const(ERRSV)); /* Duplicates the message inside eval */
9093 res = SvREFCNT_inc(sv);
9097 (void)SvREFCNT_inc(res);
9106 why1 = "Call to &{$^H{";
9108 why3 = "}} did not return a defined value";
9116 /* Returns a NUL terminated string, with the length of the string written to
9120 S_scan_word(pTHX_ register char *s, char *dest, STRLEN destlen, int allow_package, STRLEN *slp)
9122 register char *d = dest;
9123 register char * const e = d + destlen - 3; /* two-character token, ending NUL */
9126 Perl_croak(aTHX_ ident_too_long);
9127 if (isALNUM(*s)) /* UTF handled below */
9129 else if (*s == '\'' && allow_package && isIDFIRST_lazy_if(s+1,UTF)) {
9134 else if (*s == ':' && s[1] == ':' && allow_package && s[2] != '$') {
9138 else if (UTF && UTF8_IS_START(*s) && isALNUM_utf8((U8*)s)) {
9139 char *t = s + UTF8SKIP(s);
9140 while (UTF8_IS_CONTINUED(*t) && is_utf8_mark((U8*)t))
9142 if (d + (t - s) > e)
9143 Perl_croak(aTHX_ ident_too_long);
9144 Copy(s, d, t - s, char);
9157 S_scan_ident(pTHX_ register char *s, register const char *send, char *dest, STRLEN destlen, I32 ck_uni)
9161 char *bracket = Nullch;
9167 e = d + destlen - 3; /* two-character token, ending NUL */
9169 while (isDIGIT(*s)) {
9171 Perl_croak(aTHX_ ident_too_long);
9178 Perl_croak(aTHX_ ident_too_long);
9179 if (isALNUM(*s)) /* UTF handled below */
9181 else if (*s == '\'' && isIDFIRST_lazy_if(s+1,UTF)) {
9186 else if (*s == ':' && s[1] == ':') {
9190 else if (UTF && UTF8_IS_START(*s) && isALNUM_utf8((U8*)s)) {
9191 char *t = s + UTF8SKIP(s);
9192 while (UTF8_IS_CONTINUED(*t) && is_utf8_mark((U8*)t))
9194 if (d + (t - s) > e)
9195 Perl_croak(aTHX_ ident_too_long);
9196 Copy(s, d, t - s, char);
9207 if (PL_lex_state != LEX_NORMAL)
9208 PL_lex_state = LEX_INTERPENDMAYBE;
9211 if (*s == '$' && s[1] &&
9212 (isALNUM_lazy_if(s+1,UTF) || s[1] == '$' || s[1] == '{' || strnEQ(s+1,"::",2)) )
9225 if (*d == '^' && *s && isCONTROLVAR(*s)) {
9230 if (isSPACE(s[-1])) {
9232 const char ch = *s++;
9233 if (!SPACE_OR_TAB(ch)) {
9239 if (isIDFIRST_lazy_if(d,UTF)) {
9243 while ((e < send && isALNUM_lazy_if(e,UTF)) || *e == ':') {
9245 while (e < send && UTF8_IS_CONTINUED(*e) && is_utf8_mark((U8*)e))
9248 Copy(s, d, e - s, char);
9253 while ((isALNUM(*s) || *s == ':') && d < e)
9256 Perl_croak(aTHX_ ident_too_long);
9259 while (s < send && SPACE_OR_TAB(*s)) s++;
9260 if ((*s == '[' || (*s == '{' && strNE(dest, "sub")))) {
9261 if (ckWARN(WARN_AMBIGUOUS) && keyword(dest, d - dest)) {
9262 const char *brack = *s == '[' ? "[...]" : "{...}";
9263 Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
9264 "Ambiguous use of %c{%s%s} resolved to %c%s%s",
9265 funny, dest, brack, funny, dest, brack);
9268 PL_lex_brackstack[PL_lex_brackets++] = (char)(XOPERATOR | XFAKEBRACK);
9272 /* Handle extended ${^Foo} variables
9273 * 1999-02-27 mjd-perl-patch@plover.com */
9274 else if (!isALNUM(*d) && !isPRINT(*d) /* isCTRL(d) */
9278 while (isALNUM(*s) && d < e) {
9282 Perl_croak(aTHX_ ident_too_long);
9287 if (PL_lex_state == LEX_INTERPNORMAL && !PL_lex_brackets) {
9288 PL_lex_state = LEX_INTERPEND;
9293 if (PL_lex_state == LEX_NORMAL) {
9294 if (ckWARN(WARN_AMBIGUOUS) &&
9295 (keyword(dest, d - dest) || get_cv(dest, FALSE)))
9297 Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
9298 "Ambiguous use of %c{%s} resolved to %c%s",
9299 funny, dest, funny, dest);
9304 s = bracket; /* let the parser handle it */
9308 else if (PL_lex_state == LEX_INTERPNORMAL && !PL_lex_brackets && !intuit_more(s))
9309 PL_lex_state = LEX_INTERPEND;
9314 Perl_pmflag(pTHX_ U32* pmfl, int ch)
9319 *pmfl |= PMf_GLOBAL;
9321 *pmfl |= PMf_CONTINUE;
9325 *pmfl |= PMf_MULTILINE;
9327 *pmfl |= PMf_SINGLELINE;
9329 *pmfl |= PMf_EXTENDED;
9333 S_scan_pat(pTHX_ char *start, I32 type)
9336 char *s = scan_str(start,FALSE,FALSE);
9339 char * const delimiter = skipspace(start);
9340 Perl_croak(aTHX_ *delimiter == '?'
9341 ? "Search pattern not terminated or ternary operator parsed as search pattern"
9342 : "Search pattern not terminated" );
9345 pm = (PMOP*)newPMOP(type, 0);
9346 if (PL_multi_open == '?')
9347 pm->op_pmflags |= PMf_ONCE;
9349 while (*s && strchr("iomsx", *s))
9350 pmflag(&pm->op_pmflags,*s++);
9353 while (*s && strchr("iogcmsx", *s))
9354 pmflag(&pm->op_pmflags,*s++);
9356 /* issue a warning if /c is specified,but /g is not */
9357 if ((pm->op_pmflags & PMf_CONTINUE) && !(pm->op_pmflags & PMf_GLOBAL)
9358 && ckWARN(WARN_REGEXP))
9360 Perl_warner(aTHX_ packWARN(WARN_REGEXP), c_without_g);
9363 pm->op_pmpermflags = pm->op_pmflags;
9365 PL_lex_op = (OP*)pm;
9366 yylval.ival = OP_MATCH;
9371 S_scan_subst(pTHX_ char *start)
9379 yylval.ival = OP_NULL;
9381 s = scan_str(start,FALSE,FALSE);
9384 Perl_croak(aTHX_ "Substitution pattern not terminated");
9386 if (s[-1] == PL_multi_open)
9389 first_start = PL_multi_start;
9390 s = scan_str(s,FALSE,FALSE);
9393 SvREFCNT_dec(PL_lex_stuff);
9394 PL_lex_stuff = Nullsv;
9396 Perl_croak(aTHX_ "Substitution replacement not terminated");
9398 PL_multi_start = first_start; /* so whole substitution is taken together */
9400 pm = (PMOP*)newPMOP(OP_SUBST, 0);
9406 else if (strchr("iogcmsx", *s))
9407 pmflag(&pm->op_pmflags,*s++);
9412 /* /c is not meaningful with s/// */
9413 if ((pm->op_pmflags & PMf_CONTINUE) && ckWARN(WARN_REGEXP))
9415 Perl_warner(aTHX_ packWARN(WARN_REGEXP), c_in_subst);
9420 PL_sublex_info.super_bufptr = s;
9421 PL_sublex_info.super_bufend = PL_bufend;
9423 pm->op_pmflags |= PMf_EVAL;
9424 repl = newSVpvn("",0);
9426 sv_catpv(repl, es ? "eval " : "do ");
9427 sv_catpvn(repl, "{ ", 2);
9428 sv_catsv(repl, PL_lex_repl);
9429 sv_catpvn(repl, " };", 2);
9431 SvREFCNT_dec(PL_lex_repl);
9435 pm->op_pmpermflags = pm->op_pmflags;
9436 PL_lex_op = (OP*)pm;
9437 yylval.ival = OP_SUBST;
9442 S_scan_trans(pTHX_ char *start)
9451 yylval.ival = OP_NULL;
9453 s = scan_str(start,FALSE,FALSE);
9455 Perl_croak(aTHX_ "Transliteration pattern not terminated");
9456 if (s[-1] == PL_multi_open)
9459 s = scan_str(s,FALSE,FALSE);
9462 SvREFCNT_dec(PL_lex_stuff);
9463 PL_lex_stuff = Nullsv;
9465 Perl_croak(aTHX_ "Transliteration replacement not terminated");
9468 complement = del = squash = 0;
9472 complement = OPpTRANS_COMPLEMENT;
9475 del = OPpTRANS_DELETE;
9478 squash = OPpTRANS_SQUASH;
9487 Newx(tbl, complement&&!del?258:256, short);
9488 o = newPVOP(OP_TRANS, 0, (char*)tbl);
9489 o->op_private &= ~OPpTRANS_ALL;
9490 o->op_private |= del|squash|complement|
9491 (DO_UTF8(PL_lex_stuff)? OPpTRANS_FROM_UTF : 0)|
9492 (DO_UTF8(PL_lex_repl) ? OPpTRANS_TO_UTF : 0);
9495 yylval.ival = OP_TRANS;
9500 S_scan_heredoc(pTHX_ register char *s)
9503 I32 op_type = OP_SCALAR;
9507 const char newline[] = "\n";
9508 const char *found_newline;
9512 const int outer = (PL_rsfp && !(PL_lex_inwhat == OP_SCALAR));
9516 e = PL_tokenbuf + sizeof PL_tokenbuf - 1;
9519 for (peek = s; SPACE_OR_TAB(*peek); peek++) ;
9520 if (*peek == '`' || *peek == '\'' || *peek =='"') {
9523 s = delimcpy(d, e, s, PL_bufend, term, &len);
9533 if (!isALNUM_lazy_if(s,UTF))
9534 deprecate_old("bare << to mean <<\"\"");
9535 for (; isALNUM_lazy_if(s,UTF); s++) {
9540 if (d >= PL_tokenbuf + sizeof PL_tokenbuf - 1)
9541 Perl_croak(aTHX_ "Delimiter for here document is too long");
9544 len = d - PL_tokenbuf;
9545 #ifndef PERL_STRICT_CR
9546 d = strchr(s, '\r');
9548 char * const olds = s;
9550 while (s < PL_bufend) {
9556 else if (*s == '\n' && s[1] == '\r') { /* \015\013 on a mac? */
9565 SvCUR_set(PL_linestr, PL_bufend - SvPVX_const(PL_linestr));
9569 if ( outer || !(found_newline = ninstr(s,PL_bufend,newline,newline+1)) ) {
9570 herewas = newSVpvn(s,PL_bufend-s);
9574 herewas = newSVpvn(s,found_newline-s);
9576 s += SvCUR(herewas);
9578 tmpstr = NEWSV(87,79);
9579 sv_upgrade(tmpstr, SVt_PVIV);
9582 SvIV_set(tmpstr, -1);
9584 else if (term == '`') {
9585 op_type = OP_BACKTICK;
9586 SvIV_set(tmpstr, '\\');
9590 PL_multi_start = CopLINE(PL_curcop);
9591 PL_multi_open = PL_multi_close = '<';
9592 term = *PL_tokenbuf;
9593 if (PL_lex_inwhat == OP_SUBST && PL_in_eval && !PL_rsfp) {
9594 char *bufptr = PL_sublex_info.super_bufptr;
9595 char *bufend = PL_sublex_info.super_bufend;
9596 char * const olds = s - SvCUR(herewas);
9597 s = strchr(bufptr, '\n');
9601 while (s < bufend &&
9602 (*s != term || memNE(s,PL_tokenbuf,len)) ) {
9604 CopLINE_inc(PL_curcop);
9607 CopLINE_set(PL_curcop, (line_t)PL_multi_start);
9608 missingterm(PL_tokenbuf);
9610 sv_setpvn(herewas,bufptr,d-bufptr+1);
9611 sv_setpvn(tmpstr,d+1,s-d);
9613 sv_catpvn(herewas,s,bufend-s);
9614 Copy(SvPVX_const(herewas),bufptr,SvCUR(herewas) + 1,char);
9621 while (s < PL_bufend &&
9622 (*s != term || memNE(s,PL_tokenbuf,len)) ) {
9624 CopLINE_inc(PL_curcop);
9626 if (s >= PL_bufend) {
9627 CopLINE_set(PL_curcop, (line_t)PL_multi_start);
9628 missingterm(PL_tokenbuf);
9630 sv_setpvn(tmpstr,d+1,s-d);
9632 CopLINE_inc(PL_curcop); /* the preceding stmt passes a newline */
9634 sv_catpvn(herewas,s,PL_bufend-s);
9635 sv_setsv(PL_linestr,herewas);
9636 PL_oldoldbufptr = PL_oldbufptr = PL_bufptr = s = PL_linestart = SvPVX(PL_linestr);
9637 PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
9638 PL_last_lop = PL_last_uni = Nullch;
9641 sv_setpvn(tmpstr,"",0); /* avoid "uninitialized" warning */
9642 while (s >= PL_bufend) { /* multiple line string? */
9644 !(PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = filter_gets(PL_linestr, PL_rsfp, 0))) {
9645 CopLINE_set(PL_curcop, (line_t)PL_multi_start);
9646 missingterm(PL_tokenbuf);
9648 CopLINE_inc(PL_curcop);
9649 PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
9650 PL_last_lop = PL_last_uni = Nullch;
9651 #ifndef PERL_STRICT_CR
9652 if (PL_bufend - PL_linestart >= 2) {
9653 if ((PL_bufend[-2] == '\r' && PL_bufend[-1] == '\n') ||
9654 (PL_bufend[-2] == '\n' && PL_bufend[-1] == '\r'))
9656 PL_bufend[-2] = '\n';
9658 SvCUR_set(PL_linestr, PL_bufend - SvPVX_const(PL_linestr));
9660 else if (PL_bufend[-1] == '\r')
9661 PL_bufend[-1] = '\n';
9663 else if (PL_bufend - PL_linestart == 1 && PL_bufend[-1] == '\r')
9664 PL_bufend[-1] = '\n';
9666 if (PERLDB_LINE && PL_curstash != PL_debstash) {
9667 SV *sv = NEWSV(88,0);
9669 sv_upgrade(sv, SVt_PVMG);
9670 sv_setsv(sv,PL_linestr);
9673 av_store(CopFILEAV(PL_curcop), (I32)CopLINE(PL_curcop),sv);
9675 if (*s == term && memEQ(s,PL_tokenbuf,len)) {
9676 STRLEN off = PL_bufend - 1 - SvPVX_const(PL_linestr);
9677 *(SvPVX(PL_linestr) + off ) = ' ';
9678 sv_catsv(PL_linestr,herewas);
9679 PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
9680 s = SvPVX(PL_linestr) + off; /* In case PV of PL_linestr moved. */
9684 sv_catsv(tmpstr,PL_linestr);
9689 PL_multi_end = CopLINE(PL_curcop);
9690 if (SvCUR(tmpstr) + 5 < SvLEN(tmpstr)) {
9691 SvPV_shrink_to_cur(tmpstr);
9693 SvREFCNT_dec(herewas);
9695 if (UTF && is_utf8_string((U8*)SvPVX_const(tmpstr), SvCUR(tmpstr)))
9697 else if (PL_encoding)
9698 sv_recode_to_utf8(tmpstr, PL_encoding);
9700 PL_lex_stuff = tmpstr;
9701 yylval.ival = op_type;
9706 takes: current position in input buffer
9707 returns: new position in input buffer
9708 side-effects: yylval and lex_op are set.
9713 <FH> read from filehandle
9714 <pkg::FH> read from package qualified filehandle
9715 <pkg'FH> read from package qualified filehandle
9716 <$fh> read from filehandle in $fh
9722 S_scan_inputsymbol(pTHX_ char *start)
9724 register char *s = start; /* current position in buffer */
9730 d = PL_tokenbuf; /* start of temp holding space */
9731 e = PL_tokenbuf + sizeof PL_tokenbuf; /* end of temp holding space */
9732 end = strchr(s, '\n');
9735 s = delimcpy(d, e, s + 1, end, '>', &len); /* extract until > */
9737 /* die if we didn't have space for the contents of the <>,
9738 or if it didn't end, or if we see a newline
9741 if (len >= sizeof PL_tokenbuf)
9742 Perl_croak(aTHX_ "Excessively long <> operator");
9744 Perl_croak(aTHX_ "Unterminated <> operator");
9749 Remember, only scalar variables are interpreted as filehandles by
9750 this code. Anything more complex (e.g., <$fh{$num}>) will be
9751 treated as a glob() call.
9752 This code makes use of the fact that except for the $ at the front,
9753 a scalar variable and a filehandle look the same.
9755 if (*d == '$' && d[1]) d++;
9757 /* allow <Pkg'VALUE> or <Pkg::VALUE> */
9758 while (*d && (isALNUM_lazy_if(d,UTF) || *d == '\'' || *d == ':'))
9761 /* If we've tried to read what we allow filehandles to look like, and
9762 there's still text left, then it must be a glob() and not a getline.
9763 Use scan_str to pull out the stuff between the <> and treat it
9764 as nothing more than a string.
9767 if (d - PL_tokenbuf != len) {
9768 yylval.ival = OP_GLOB;
9770 s = scan_str(start,FALSE,FALSE);
9772 Perl_croak(aTHX_ "Glob not terminated");
9776 bool readline_overriden = FALSE;
9777 GV *gv_readline = Nullgv;
9779 /* we're in a filehandle read situation */
9782 /* turn <> into <ARGV> */
9784 Copy("ARGV",d,5,char);
9786 /* Check whether readline() is overriden */
9787 if (((gv_readline = gv_fetchpv("readline", FALSE, SVt_PVCV))
9788 && GvCVu(gv_readline) && GvIMPORTED_CV(gv_readline))
9790 ((gvp = (GV**)hv_fetch(PL_globalstash, "readline", 8, FALSE))
9791 && (gv_readline = *gvp) != (GV*)&PL_sv_undef
9792 && GvCVu(gv_readline) && GvIMPORTED_CV(gv_readline)))
9793 readline_overriden = TRUE;
9795 /* if <$fh>, create the ops to turn the variable into a
9801 /* try to find it in the pad for this block, otherwise find
9802 add symbol table ops
9804 if ((tmp = pad_findmy(d)) != NOT_IN_PAD) {
9805 if (PAD_COMPNAME_FLAGS(tmp) & SVpad_OUR) {
9806 HV *stash = PAD_COMPNAME_OURSTASH(tmp);
9807 HEK *stashname = HvNAME_HEK(stash);
9808 SV *sym = sv_2mortal(newSVhek(stashname));
9809 sv_catpvn(sym, "::", 2);
9815 OP *o = newOP(OP_PADSV, 0);
9817 PL_lex_op = readline_overriden
9818 ? (OP*)newUNOP(OP_ENTERSUB, OPf_STACKED,
9819 append_elem(OP_LIST, o,
9820 newCVREF(0, newGVOP(OP_GV,0,gv_readline))))
9821 : (OP*)newUNOP(OP_READLINE, 0, o);
9830 ? (GV_ADDMULTI | GV_ADDINEVAL)
9833 PL_lex_op = readline_overriden
9834 ? (OP*)newUNOP(OP_ENTERSUB, OPf_STACKED,
9835 append_elem(OP_LIST,
9836 newUNOP(OP_RV2SV, 0, newGVOP(OP_GV, 0, gv)),
9837 newCVREF(0, newGVOP(OP_GV, 0, gv_readline))))
9838 : (OP*)newUNOP(OP_READLINE, 0,
9839 newUNOP(OP_RV2SV, 0,
9840 newGVOP(OP_GV, 0, gv)));
9842 if (!readline_overriden)
9843 PL_lex_op->op_flags |= OPf_SPECIAL;
9844 /* we created the ops in PL_lex_op, so make yylval.ival a null op */
9845 yylval.ival = OP_NULL;
9848 /* If it's none of the above, it must be a literal filehandle
9849 (<Foo::BAR> or <FOO>) so build a simple readline OP */
9851 GV *gv = gv_fetchpv(d,TRUE, SVt_PVIO);
9852 PL_lex_op = readline_overriden
9853 ? (OP*)newUNOP(OP_ENTERSUB, OPf_STACKED,
9854 append_elem(OP_LIST,
9855 newGVOP(OP_GV, 0, gv),
9856 newCVREF(0, newGVOP(OP_GV, 0, gv_readline))))
9857 : (OP*)newUNOP(OP_READLINE, 0, newGVOP(OP_GV, 0, gv));
9858 yylval.ival = OP_NULL;
9867 takes: start position in buffer
9868 keep_quoted preserve \ on the embedded delimiter(s)
9869 keep_delims preserve the delimiters around the string
9870 returns: position to continue reading from buffer
9871 side-effects: multi_start, multi_close, lex_repl or lex_stuff, and
9872 updates the read buffer.
9874 This subroutine pulls a string out of the input. It is called for:
9875 q single quotes q(literal text)
9876 ' single quotes 'literal text'
9877 qq double quotes qq(interpolate $here please)
9878 " double quotes "interpolate $here please"
9879 qx backticks qx(/bin/ls -l)
9880 ` backticks `/bin/ls -l`
9881 qw quote words @EXPORT_OK = qw( func() $spam )
9882 m// regexp match m/this/
9883 s/// regexp substitute s/this/that/
9884 tr/// string transliterate tr/this/that/
9885 y/// string transliterate y/this/that/
9886 ($*@) sub prototypes sub foo ($)
9887 (stuff) sub attr parameters sub foo : attr(stuff)
9888 <> readline or globs <FOO>, <>, <$fh>, or <*.c>
9890 In most of these cases (all but <>, patterns and transliterate)
9891 yylex() calls scan_str(). m// makes yylex() call scan_pat() which
9892 calls scan_str(). s/// makes yylex() call scan_subst() which calls
9893 scan_str(). tr/// and y/// make yylex() call scan_trans() which
9896 It skips whitespace before the string starts, and treats the first
9897 character as the delimiter. If the delimiter is one of ([{< then
9898 the corresponding "close" character )]}> is used as the closing
9899 delimiter. It allows quoting of delimiters, and if the string has
9900 balanced delimiters ([{<>}]) it allows nesting.
9902 On success, the SV with the resulting string is put into lex_stuff or,
9903 if that is already non-NULL, into lex_repl. The second case occurs only
9904 when parsing the RHS of the special constructs s/// and tr/// (y///).
9905 For convenience, the terminating delimiter character is stuffed into
9910 S_scan_str(pTHX_ char *start, int keep_quoted, int keep_delims)
9912 SV *sv; /* scalar value: string */
9913 char *tmps; /* temp string, used for delimiter matching */
9914 register char *s = start; /* current position in the buffer */
9915 register char term; /* terminating character */
9916 register char *to; /* current position in the sv's data */
9917 I32 brackets = 1; /* bracket nesting level */
9918 bool has_utf8 = FALSE; /* is there any utf8 content? */
9919 I32 termcode; /* terminating char. code */
9920 U8 termstr[UTF8_MAXBYTES]; /* terminating string */
9921 STRLEN termlen; /* length of terminating string */
9922 char *last = NULL; /* last position for nesting bracket */
9924 /* skip space before the delimiter */
9928 /* mark where we are, in case we need to report errors */
9931 /* after skipping whitespace, the next character is the terminator */
9934 termcode = termstr[0] = term;
9938 termcode = utf8_to_uvchr((U8*)s, &termlen);
9939 Copy(s, termstr, termlen, U8);
9940 if (!UTF8_IS_INVARIANT(term))
9944 /* mark where we are */
9945 PL_multi_start = CopLINE(PL_curcop);
9946 PL_multi_open = term;
9948 /* find corresponding closing delimiter */
9949 if (term && (tmps = strchr("([{< )]}> )]}>",term)))
9950 termcode = termstr[0] = term = tmps[5];
9952 PL_multi_close = term;
9954 /* create a new SV to hold the contents. 87 is leak category, I'm
9955 assuming. 79 is the SV's initial length. What a random number. */
9957 sv_upgrade(sv, SVt_PVIV);
9958 SvIV_set(sv, termcode);
9959 (void)SvPOK_only(sv); /* validate pointer */
9961 /* move past delimiter and try to read a complete string */
9963 sv_catpvn(sv, s, termlen);
9966 if (PL_encoding && !UTF) {
9970 int offset = s - SvPVX_const(PL_linestr);
9971 const bool found = sv_cat_decode(sv, PL_encoding, PL_linestr,
9972 &offset, (char*)termstr, termlen);
9973 const char *ns = SvPVX_const(PL_linestr) + offset;
9974 char *svlast = SvEND(sv) - 1;
9976 for (; s < ns; s++) {
9977 if (*s == '\n' && !PL_rsfp)
9978 CopLINE_inc(PL_curcop);
9981 goto read_more_line;
9983 /* handle quoted delimiters */
9984 if (SvCUR(sv) > 1 && *(svlast-1) == '\\') {
9986 for (t = svlast-2; t >= SvPVX_const(sv) && *t == '\\';)
9988 if ((svlast-1 - t) % 2) {
9992 SvCUR_set(sv, SvCUR(sv) - 1);
9997 if (PL_multi_open == PL_multi_close) {
10005 for (t = w = last; t < svlast; w++, t++) {
10006 /* At here, all closes are "was quoted" one,
10007 so we don't check PL_multi_close. */
10009 if (!keep_quoted && *(t+1) == PL_multi_open)
10014 else if (*t == PL_multi_open)
10022 SvCUR_set(sv, w - SvPVX_const(sv));
10025 if (--brackets <= 0)
10030 if (!keep_delims) {
10031 SvCUR_set(sv, SvCUR(sv) - 1);
10037 /* extend sv if need be */
10038 SvGROW(sv, SvCUR(sv) + (PL_bufend - s) + 1);
10039 /* set 'to' to the next character in the sv's string */
10040 to = SvPVX(sv)+SvCUR(sv);
10042 /* if open delimiter is the close delimiter read unbridle */
10043 if (PL_multi_open == PL_multi_close) {
10044 for (; s < PL_bufend; s++,to++) {
10045 /* embedded newlines increment the current line number */
10046 if (*s == '\n' && !PL_rsfp)
10047 CopLINE_inc(PL_curcop);
10048 /* handle quoted delimiters */
10049 if (*s == '\\' && s+1 < PL_bufend && term != '\\') {
10050 if (!keep_quoted && s[1] == term)
10052 /* any other quotes are simply copied straight through */
10056 /* terminate when run out of buffer (the for() condition), or
10057 have found the terminator */
10058 else if (*s == term) {
10061 if (s+termlen <= PL_bufend && memEQ(s, (char*)termstr, termlen))
10064 else if (!has_utf8 && !UTF8_IS_INVARIANT((U8)*s) && UTF)
10070 /* if the terminator isn't the same as the start character (e.g.,
10071 matched brackets), we have to allow more in the quoting, and
10072 be prepared for nested brackets.
10075 /* read until we run out of string, or we find the terminator */
10076 for (; s < PL_bufend; s++,to++) {
10077 /* embedded newlines increment the line count */
10078 if (*s == '\n' && !PL_rsfp)
10079 CopLINE_inc(PL_curcop);
10080 /* backslashes can escape the open or closing characters */
10081 if (*s == '\\' && s+1 < PL_bufend) {
10082 if (!keep_quoted &&
10083 ((s[1] == PL_multi_open) || (s[1] == PL_multi_close)))
10088 /* allow nested opens and closes */
10089 else if (*s == PL_multi_close && --brackets <= 0)
10091 else if (*s == PL_multi_open)
10093 else if (!has_utf8 && !UTF8_IS_INVARIANT((U8)*s) && UTF)
10098 /* terminate the copied string and update the sv's end-of-string */
10100 SvCUR_set(sv, to - SvPVX_const(sv));
10103 * this next chunk reads more into the buffer if we're not done yet
10107 break; /* handle case where we are done yet :-) */
10109 #ifndef PERL_STRICT_CR
10110 if (to - SvPVX_const(sv) >= 2) {
10111 if ((to[-2] == '\r' && to[-1] == '\n') ||
10112 (to[-2] == '\n' && to[-1] == '\r'))
10116 SvCUR_set(sv, to - SvPVX_const(sv));
10118 else if (to[-1] == '\r')
10121 else if (to - SvPVX_const(sv) == 1 && to[-1] == '\r')
10126 /* if we're out of file, or a read fails, bail and reset the current
10127 line marker so we can report where the unterminated string began
10130 !(PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = filter_gets(PL_linestr, PL_rsfp, 0))) {
10132 CopLINE_set(PL_curcop, (line_t)PL_multi_start);
10135 /* we read a line, so increment our line counter */
10136 CopLINE_inc(PL_curcop);
10138 /* update debugger info */
10139 if (PERLDB_LINE && PL_curstash != PL_debstash) {
10140 SV *sv = NEWSV(88,0);
10142 sv_upgrade(sv, SVt_PVMG);
10143 sv_setsv(sv,PL_linestr);
10144 (void)SvIOK_on(sv);
10146 av_store(CopFILEAV(PL_curcop), (I32)CopLINE(PL_curcop), sv);
10149 /* having changed the buffer, we must update PL_bufend */
10150 PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
10151 PL_last_lop = PL_last_uni = Nullch;
10154 /* at this point, we have successfully read the delimited string */
10156 if (!PL_encoding || UTF) {
10158 sv_catpvn(sv, s, termlen);
10161 if (has_utf8 || PL_encoding)
10164 PL_multi_end = CopLINE(PL_curcop);
10166 /* if we allocated too much space, give some back */
10167 if (SvCUR(sv) + 5 < SvLEN(sv)) {
10168 SvLEN_set(sv, SvCUR(sv) + 1);
10169 SvPV_renew(sv, SvLEN(sv));
10172 /* decide whether this is the first or second quoted string we've read
10185 takes: pointer to position in buffer
10186 returns: pointer to new position in buffer
10187 side-effects: builds ops for the constant in yylval.op
10189 Read a number in any of the formats that Perl accepts:
10191 \d(_?\d)*(\.(\d(_?\d)*)?)?[Ee][\+\-]?(\d(_?\d)*) 12 12.34 12.
10192 \.\d(_?\d)*[Ee][\+\-]?(\d(_?\d)*) .34
10195 0x[0-9A-Fa-f](_?[0-9A-Fa-f])*
10197 Like most scan_ routines, it uses the PL_tokenbuf buffer to hold the
10200 If it reads a number without a decimal point or an exponent, it will
10201 try converting the number to an integer and see if it can do so
10202 without loss of precision.
10206 Perl_scan_num(pTHX_ const char *start, YYSTYPE* lvalp)
10208 register const char *s = start; /* current position in buffer */
10209 register char *d; /* destination in temp buffer */
10210 register char *e; /* end of temp buffer */
10211 NV nv; /* number read, as a double */
10212 SV *sv = Nullsv; /* place to put the converted number */
10213 bool floatit; /* boolean: int or float? */
10214 const char *lastub = 0; /* position of last underbar */
10215 static char const number_too_long[] = "Number too long";
10217 /* We use the first character to decide what type of number this is */
10221 Perl_croak(aTHX_ "panic: scan_num");
10223 /* if it starts with a 0, it could be an octal number, a decimal in
10224 0.13 disguise, or a hexadecimal number, or a binary number. */
10228 u holds the "number so far"
10229 shift the power of 2 of the base
10230 (hex == 4, octal == 3, binary == 1)
10231 overflowed was the number more than we can hold?
10233 Shift is used when we add a digit. It also serves as an "are
10234 we in octal/hex/binary?" indicator to disallow hex characters
10235 when in octal mode.
10240 bool overflowed = FALSE;
10241 bool just_zero = TRUE; /* just plain 0 or binary number? */
10242 static const NV nvshift[5] = { 1.0, 2.0, 4.0, 8.0, 16.0 };
10243 static const char* const bases[5] =
10244 { "", "binary", "", "octal", "hexadecimal" };
10245 static const char* const Bases[5] =
10246 { "", "Binary", "", "Octal", "Hexadecimal" };
10247 static const char* const maxima[5] =
10249 "0b11111111111111111111111111111111",
10253 const char *base, *Base, *max;
10255 /* check for hex */
10260 } else if (s[1] == 'b') {
10265 /* check for a decimal in disguise */
10266 else if (s[1] == '.' || s[1] == 'e' || s[1] == 'E')
10268 /* so it must be octal */
10275 if (ckWARN(WARN_SYNTAX))
10276 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
10277 "Misplaced _ in number");
10281 base = bases[shift];
10282 Base = Bases[shift];
10283 max = maxima[shift];
10285 /* read the rest of the number */
10287 /* x is used in the overflow test,
10288 b is the digit we're adding on. */
10293 /* if we don't mention it, we're done */
10297 /* _ are ignored -- but warned about if consecutive */
10299 if (lastub && s == lastub + 1 && ckWARN(WARN_SYNTAX))
10300 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
10301 "Misplaced _ in number");
10305 /* 8 and 9 are not octal */
10306 case '8': case '9':
10308 yyerror(Perl_form(aTHX_ "Illegal octal digit '%c'", *s));
10312 case '2': case '3': case '4':
10313 case '5': case '6': case '7':
10315 yyerror(Perl_form(aTHX_ "Illegal binary digit '%c'", *s));
10318 case '0': case '1':
10319 b = *s++ & 15; /* ASCII digit -> value of digit */
10323 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
10324 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
10325 /* make sure they said 0x */
10328 b = (*s++ & 7) + 9;
10330 /* Prepare to put the digit we have onto the end
10331 of the number so far. We check for overflows.
10337 x = u << shift; /* make room for the digit */
10339 if ((x >> shift) != u
10340 && !(PL_hints & HINT_NEW_BINARY)) {
10343 if (ckWARN_d(WARN_OVERFLOW))
10344 Perl_warner(aTHX_ packWARN(WARN_OVERFLOW),
10345 "Integer overflow in %s number",
10348 u = x | b; /* add the digit to the end */
10351 n *= nvshift[shift];
10352 /* If an NV has not enough bits in its
10353 * mantissa to represent an UV this summing of
10354 * small low-order numbers is a waste of time
10355 * (because the NV cannot preserve the
10356 * low-order bits anyway): we could just
10357 * remember when did we overflow and in the
10358 * end just multiply n by the right
10366 /* if we get here, we had success: make a scalar value from
10371 /* final misplaced underbar check */
10372 if (s[-1] == '_') {
10373 if (ckWARN(WARN_SYNTAX))
10374 Perl_warner(aTHX_ packWARN(WARN_SYNTAX), "Misplaced _ in number");
10379 if (n > 4294967295.0 && ckWARN(WARN_PORTABLE))
10380 Perl_warner(aTHX_ packWARN(WARN_PORTABLE),
10381 "%s number > %s non-portable",
10387 if (u > 0xffffffff && ckWARN(WARN_PORTABLE))
10388 Perl_warner(aTHX_ packWARN(WARN_PORTABLE),
10389 "%s number > %s non-portable",
10394 if (just_zero && (PL_hints & HINT_NEW_INTEGER))
10395 sv = new_constant(start, s - start, "integer",
10397 else if (PL_hints & HINT_NEW_BINARY)
10398 sv = new_constant(start, s - start, "binary", sv, Nullsv, NULL);
10403 handle decimal numbers.
10404 we're also sent here when we read a 0 as the first digit
10406 case '1': case '2': case '3': case '4': case '5':
10407 case '6': case '7': case '8': case '9': case '.':
10410 e = PL_tokenbuf + sizeof PL_tokenbuf - 6; /* room for various punctuation */
10413 /* read next group of digits and _ and copy into d */
10414 while (isDIGIT(*s) || *s == '_') {
10415 /* skip underscores, checking for misplaced ones
10419 if (lastub && s == lastub + 1 && ckWARN(WARN_SYNTAX))
10420 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
10421 "Misplaced _ in number");
10425 /* check for end of fixed-length buffer */
10427 Perl_croak(aTHX_ number_too_long);
10428 /* if we're ok, copy the character */
10433 /* final misplaced underbar check */
10434 if (lastub && s == lastub + 1) {
10435 if (ckWARN(WARN_SYNTAX))
10436 Perl_warner(aTHX_ packWARN(WARN_SYNTAX), "Misplaced _ in number");
10439 /* read a decimal portion if there is one. avoid
10440 3..5 being interpreted as the number 3. followed
10443 if (*s == '.' && s[1] != '.') {
10448 if (ckWARN(WARN_SYNTAX))
10449 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
10450 "Misplaced _ in number");
10454 /* copy, ignoring underbars, until we run out of digits.
10456 for (; isDIGIT(*s) || *s == '_'; s++) {
10457 /* fixed length buffer check */
10459 Perl_croak(aTHX_ number_too_long);
10461 if (lastub && s == lastub + 1 && ckWARN(WARN_SYNTAX))
10462 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
10463 "Misplaced _ in number");
10469 /* fractional part ending in underbar? */
10470 if (s[-1] == '_') {
10471 if (ckWARN(WARN_SYNTAX))
10472 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
10473 "Misplaced _ in number");
10475 if (*s == '.' && isDIGIT(s[1])) {
10476 /* oops, it's really a v-string, but without the "v" */
10482 /* read exponent part, if present */
10483 if ((*s == 'e' || *s == 'E') && strchr("+-0123456789_", s[1])) {
10487 /* regardless of whether user said 3E5 or 3e5, use lower 'e' */
10488 *d++ = 'e'; /* At least some Mach atof()s don't grok 'E' */
10490 /* stray preinitial _ */
10492 if (ckWARN(WARN_SYNTAX))
10493 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
10494 "Misplaced _ in number");
10498 /* allow positive or negative exponent */
10499 if (*s == '+' || *s == '-')
10502 /* stray initial _ */
10504 if (ckWARN(WARN_SYNTAX))
10505 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
10506 "Misplaced _ in number");
10510 /* read digits of exponent */
10511 while (isDIGIT(*s) || *s == '_') {
10514 Perl_croak(aTHX_ number_too_long);
10518 if (((lastub && s == lastub + 1) ||
10519 (!isDIGIT(s[1]) && s[1] != '_'))
10520 && ckWARN(WARN_SYNTAX))
10521 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
10522 "Misplaced _ in number");
10529 /* make an sv from the string */
10533 We try to do an integer conversion first if no characters
10534 indicating "float" have been found.
10539 int flags = grok_number (PL_tokenbuf, d - PL_tokenbuf, &uv);
10541 if (flags == IS_NUMBER_IN_UV) {
10543 sv_setiv(sv, uv); /* Prefer IVs over UVs. */
10546 } else if (flags == (IS_NUMBER_IN_UV | IS_NUMBER_NEG)) {
10547 if (uv <= (UV) IV_MIN)
10548 sv_setiv(sv, -(IV)uv);
10555 /* terminate the string */
10557 nv = Atof(PL_tokenbuf);
10561 if ( floatit ? (PL_hints & HINT_NEW_FLOAT) :
10562 (PL_hints & HINT_NEW_INTEGER) )
10563 sv = new_constant(PL_tokenbuf, d - PL_tokenbuf,
10564 (floatit ? "float" : "integer"),
10568 /* if it starts with a v, it could be a v-string */
10571 sv = NEWSV(92,5); /* preallocate storage space */
10572 s = scan_vstring(s,sv);
10576 /* make the op for the constant and return */
10579 lvalp->opval = newSVOP(OP_CONST, 0, sv);
10581 lvalp->opval = Nullop;
10587 S_scan_formline(pTHX_ register char *s)
10589 register char *eol;
10591 SV *stuff = newSVpvn("",0);
10592 bool needargs = FALSE;
10593 bool eofmt = FALSE;
10595 while (!needargs) {
10597 #ifdef PERL_STRICT_CR
10598 for (t = s+1;SPACE_OR_TAB(*t); t++) ;
10600 for (t = s+1;SPACE_OR_TAB(*t) || *t == '\r'; t++) ;
10602 if (*t == '\n' || t == PL_bufend) {
10607 if (PL_in_eval && !PL_rsfp) {
10608 eol = (char *) memchr(s,'\n',PL_bufend-s);
10613 eol = PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
10615 for (t = s; t < eol; t++) {
10616 if (*t == '~' && t[1] == '~' && SvCUR(stuff)) {
10618 goto enough; /* ~~ must be first line in formline */
10620 if (*t == '@' || *t == '^')
10624 sv_catpvn(stuff, s, eol-s);
10625 #ifndef PERL_STRICT_CR
10626 if (eol-s > 1 && eol[-2] == '\r' && eol[-1] == '\n') {
10627 char *end = SvPVX(stuff) + SvCUR(stuff);
10630 SvCUR_set(stuff, SvCUR(stuff) - 1);
10639 s = filter_gets(PL_linestr, PL_rsfp, 0);
10640 PL_oldoldbufptr = PL_oldbufptr = PL_bufptr = PL_linestart = SvPVX(PL_linestr);
10641 PL_bufend = PL_bufptr + SvCUR(PL_linestr);
10642 PL_last_lop = PL_last_uni = Nullch;
10651 if (SvCUR(stuff)) {
10654 PL_lex_state = LEX_NORMAL;
10655 PL_nextval[PL_nexttoke].ival = 0;
10659 PL_lex_state = LEX_FORMLINE;
10661 if (UTF && is_utf8_string((U8*)SvPVX_const(stuff), SvCUR(stuff)))
10663 else if (PL_encoding)
10664 sv_recode_to_utf8(stuff, PL_encoding);
10666 PL_nextval[PL_nexttoke].opval = (OP*)newSVOP(OP_CONST, 0, stuff);
10668 PL_nextval[PL_nexttoke].ival = OP_FORMLINE;
10672 SvREFCNT_dec(stuff);
10674 PL_lex_formbrack = 0;
10685 PL_cshlen = strlen(PL_cshname);
10690 Perl_start_subparse(pTHX_ I32 is_format, U32 flags)
10692 const I32 oldsavestack_ix = PL_savestack_ix;
10693 CV* outsidecv = PL_compcv;
10696 assert(SvTYPE(PL_compcv) == SVt_PVCV);
10698 SAVEI32(PL_subline);
10699 save_item(PL_subname);
10700 SAVESPTR(PL_compcv);
10702 PL_compcv = (CV*)NEWSV(1104,0);
10703 sv_upgrade((SV *)PL_compcv, is_format ? SVt_PVFM : SVt_PVCV);
10704 CvFLAGS(PL_compcv) |= flags;
10706 PL_subline = CopLINE(PL_curcop);
10707 CvPADLIST(PL_compcv) = pad_new(padnew_SAVE|padnew_SAVESUB);
10708 CvOUTSIDE(PL_compcv) = (CV*)SvREFCNT_inc(outsidecv);
10709 CvOUTSIDE_SEQ(PL_compcv) = PL_cop_seqmax;
10711 return oldsavestack_ix;
10715 #pragma segment Perl_yylex
10718 Perl_yywarn(pTHX_ const char *s)
10720 PL_in_eval |= EVAL_WARNONLY;
10722 PL_in_eval &= ~EVAL_WARNONLY;
10727 Perl_yyerror(pTHX_ const char *s)
10729 const char *where = NULL;
10730 const char *context = NULL;
10734 if (!yychar || (yychar == ';' && !PL_rsfp))
10736 else if (PL_oldoldbufptr && PL_bufptr > PL_oldoldbufptr &&
10737 PL_bufptr - PL_oldoldbufptr < 200 && PL_oldoldbufptr != PL_oldbufptr &&
10738 PL_oldbufptr != PL_bufptr) {
10741 The code below is removed for NetWare because it abends/crashes on NetWare
10742 when the script has error such as not having the closing quotes like:
10743 if ($var eq "value)
10744 Checking of white spaces is anyway done in NetWare code.
10747 while (isSPACE(*PL_oldoldbufptr))
10750 context = PL_oldoldbufptr;
10751 contlen = PL_bufptr - PL_oldoldbufptr;
10753 else if (PL_oldbufptr && PL_bufptr > PL_oldbufptr &&
10754 PL_bufptr - PL_oldbufptr < 200 && PL_oldbufptr != PL_bufptr) {
10757 The code below is removed for NetWare because it abends/crashes on NetWare
10758 when the script has error such as not having the closing quotes like:
10759 if ($var eq "value)
10760 Checking of white spaces is anyway done in NetWare code.
10763 while (isSPACE(*PL_oldbufptr))
10766 context = PL_oldbufptr;
10767 contlen = PL_bufptr - PL_oldbufptr;
10769 else if (yychar > 255)
10770 where = "next token ???";
10771 else if (yychar == -2) { /* YYEMPTY */
10772 if (PL_lex_state == LEX_NORMAL ||
10773 (PL_lex_state == LEX_KNOWNEXT && PL_lex_defer == LEX_NORMAL))
10774 where = "at end of line";
10775 else if (PL_lex_inpat)
10776 where = "within pattern";
10778 where = "within string";
10781 SV *where_sv = sv_2mortal(newSVpvn("next char ", 10));
10783 Perl_sv_catpvf(aTHX_ where_sv, "^%c", toCTRL(yychar));
10784 else if (isPRINT_LC(yychar))
10785 Perl_sv_catpvf(aTHX_ where_sv, "%c", yychar);
10787 Perl_sv_catpvf(aTHX_ where_sv, "\\%03o", yychar & 255);
10788 where = SvPVX_const(where_sv);
10790 msg = sv_2mortal(newSVpv(s, 0));
10791 Perl_sv_catpvf(aTHX_ msg, " at %s line %"IVdf", ",
10792 OutCopFILE(PL_curcop), (IV)CopLINE(PL_curcop));
10794 Perl_sv_catpvf(aTHX_ msg, "near \"%.*s\"\n", contlen, context);
10796 Perl_sv_catpvf(aTHX_ msg, "%s\n", where);
10797 if (PL_multi_start < PL_multi_end && (U32)(CopLINE(PL_curcop) - PL_multi_end) <= 1) {
10798 Perl_sv_catpvf(aTHX_ msg,
10799 " (Might be a runaway multi-line %c%c string starting on line %"IVdf")\n",
10800 (int)PL_multi_open,(int)PL_multi_close,(IV)PL_multi_start);
10803 if (PL_in_eval & EVAL_WARNONLY && ckWARN_d(WARN_SYNTAX))
10804 Perl_warner(aTHX_ packWARN(WARN_SYNTAX), "%"SVf, msg);
10807 if (PL_error_count >= 10) {
10808 if (PL_in_eval && SvCUR(ERRSV))
10809 Perl_croak(aTHX_ "%"SVf"%s has too many errors.\n",
10810 ERRSV, OutCopFILE(PL_curcop));
10812 Perl_croak(aTHX_ "%s has too many errors.\n",
10813 OutCopFILE(PL_curcop));
10816 PL_in_my_stash = Nullhv;
10820 #pragma segment Main
10824 S_swallow_bom(pTHX_ U8 *s)
10826 const STRLEN slen = SvCUR(PL_linestr);
10829 if (s[1] == 0xFE) {
10830 /* UTF-16 little-endian? (or UTF32-LE?) */
10831 if (s[2] == 0 && s[3] == 0) /* UTF-32 little-endian */
10832 Perl_croak(aTHX_ "Unsupported script encoding UTF32-LE");
10833 #ifndef PERL_NO_UTF16_FILTER
10834 if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF16-LE script encoding (BOM)\n");
10837 if (PL_bufend > (char*)s) {
10841 filter_add(utf16rev_textfilter, NULL);
10842 Newx(news, (PL_bufend - (char*)s) * 3 / 2 + 1, U8);
10843 utf16_to_utf8_reversed(s, news,
10844 PL_bufend - (char*)s - 1,
10846 sv_setpvn(PL_linestr, (const char*)news, newlen);
10848 SvUTF8_on(PL_linestr);
10849 s = (U8*)SvPVX(PL_linestr);
10850 PL_bufend = SvPVX(PL_linestr) + newlen;
10853 Perl_croak(aTHX_ "Unsupported script encoding UTF16-LE");
10858 if (s[1] == 0xFF) { /* UTF-16 big-endian? */
10859 #ifndef PERL_NO_UTF16_FILTER
10860 if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-16BE script encoding (BOM)\n");
10863 if (PL_bufend > (char *)s) {
10867 filter_add(utf16_textfilter, NULL);
10868 Newx(news, (PL_bufend - (char*)s) * 3 / 2 + 1, U8);
10869 utf16_to_utf8(s, news,
10870 PL_bufend - (char*)s,
10872 sv_setpvn(PL_linestr, (const char*)news, newlen);
10874 SvUTF8_on(PL_linestr);
10875 s = (U8*)SvPVX(PL_linestr);
10876 PL_bufend = SvPVX(PL_linestr) + newlen;
10879 Perl_croak(aTHX_ "Unsupported script encoding UTF16-BE");
10884 if (slen > 2 && s[1] == 0xBB && s[2] == 0xBF) {
10885 if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-8 script encoding (BOM)\n");
10886 s += 3; /* UTF-8 */
10892 if (s[2] == 0xFE && s[3] == 0xFF) {
10893 /* UTF-32 big-endian */
10894 Perl_croak(aTHX_ "Unsupported script encoding UTF32-BE");
10897 else if (s[2] == 0 && s[3] != 0) {
10900 * are a good indicator of UTF-16BE. */
10901 if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-16BE script encoding (no BOM)\n");
10906 if (slen > 3 && s[1] == 0 && s[2] != 0 && s[3] == 0) {
10909 * are a good indicator of UTF-16LE. */
10910 if (DEBUG_p_TEST || DEBUG_T_TEST) PerlIO_printf(Perl_debug_log, "UTF-16LE script encoding (no BOM)\n");
10919 * Restore a source filter.
10923 restore_rsfp(pTHX_ void *f)
10925 PerlIO *fp = (PerlIO*)f;
10927 if (PL_rsfp == PerlIO_stdin())
10928 PerlIO_clearerr(PL_rsfp);
10929 else if (PL_rsfp && (PL_rsfp != fp))
10930 PerlIO_close(PL_rsfp);
10934 #ifndef PERL_NO_UTF16_FILTER
10936 utf16_textfilter(pTHX_ int idx, SV *sv, int maxlen)
10938 const STRLEN old = SvCUR(sv);
10939 const I32 count = FILTER_READ(idx+1, sv, maxlen);
10940 DEBUG_P(PerlIO_printf(Perl_debug_log,
10941 "utf16_textfilter(%p): %d %d (%d)\n",
10942 utf16_textfilter, idx, maxlen, (int) count));
10946 Newx(tmps, SvCUR(sv) * 3 / 2 + 1, U8);
10947 Copy(SvPVX_const(sv), tmps, old, char);
10948 utf16_to_utf8((U8*)SvPVX_const(sv) + old, tmps + old,
10949 SvCUR(sv) - old, &newlen);
10950 sv_usepvn(sv, (char*)tmps, (STRLEN)newlen + old);
10952 DEBUG_P({sv_dump(sv);});
10957 utf16rev_textfilter(pTHX_ int idx, SV *sv, int maxlen)
10959 const STRLEN old = SvCUR(sv);
10960 const I32 count = FILTER_READ(idx+1, sv, maxlen);
10961 DEBUG_P(PerlIO_printf(Perl_debug_log,
10962 "utf16rev_textfilter(%p): %d %d (%d)\n",
10963 utf16rev_textfilter, idx, maxlen, (int) count));
10967 Newx(tmps, SvCUR(sv) * 3 / 2 + 1, U8);
10968 Copy(SvPVX_const(sv), tmps, old, char);
10969 utf16_to_utf8((U8*)SvPVX_const(sv) + old, tmps + old,
10970 SvCUR(sv) - old, &newlen);
10971 sv_usepvn(sv, (char*)tmps, (STRLEN)newlen + old);
10973 DEBUG_P({ sv_dump(sv); });
10979 Returns a pointer to the next character after the parsed
10980 vstring, as well as updating the passed in sv.
10982 Function must be called like
10985 s = scan_vstring(s,sv);
10987 The sv should already be large enough to store the vstring
10988 passed in, for performance reasons.
10993 Perl_scan_vstring(pTHX_ const char *s, SV *sv)
10995 const char *pos = s;
10996 const char *start = s;
10997 if (*pos == 'v') pos++; /* get past 'v' */
10998 while (pos < PL_bufend && (isDIGIT(*pos) || *pos == '_'))
11000 if ( *pos != '.') {
11001 /* this may not be a v-string if followed by => */
11002 const char *next = pos;
11003 while (next < PL_bufend && isSPACE(*next))
11005 if ((PL_bufend - next) >= 2 && *next == '=' && next[1] == '>' ) {
11006 /* return string not v-string */
11007 sv_setpvn(sv,(char *)s,pos-s);
11008 return (char *)pos;
11012 if (!isALPHA(*pos)) {
11014 U8 tmpbuf[UTF8_MAXBYTES+1];
11017 if (*s == 'v') s++; /* get past 'v' */
11019 sv_setpvn(sv, "", 0);
11024 /* this is atoi() that tolerates underscores */
11025 const char *end = pos;
11027 while (--end >= s) {
11032 rev += (*end - '0') * mult;
11034 if (orev > rev && ckWARN_d(WARN_OVERFLOW))
11035 Perl_warner(aTHX_ packWARN(WARN_OVERFLOW),
11036 "Integer overflow in decimal number");
11040 if (rev > 0x7FFFFFFF)
11041 Perl_croak(aTHX_ "In EBCDIC the v-string components cannot exceed 2147483647");
11043 /* Append native character for the rev point */
11044 tmpend = uvchr_to_utf8(tmpbuf, rev);
11045 sv_catpvn(sv, (const char*)tmpbuf, tmpend - tmpbuf);
11046 if (!UNI_IS_INVARIANT(NATIVE_TO_UNI(rev)))
11048 if (pos + 1 < PL_bufend && *pos == '.' && isDIGIT(pos[1]))
11054 while (pos < PL_bufend && (isDIGIT(*pos) || *pos == '_'))
11058 sv_magic(sv,NULL,PERL_MAGIC_vstring,(const char*)start, pos-start);
11066 * c-indentation-style: bsd
11067 * c-basic-offset: 4
11068 * indent-tabs-mode: t
11071 * ex: set ts=8 sts=4 sw=4 noet: