3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4 * 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
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
14 * [p.719 of _The Lord of the Rings_, IV/ix: "Shelob's Lair"]
18 * This file is the lexer for Perl. It's closely linked to the
21 * The main routine is yylex(), which returns the next token.
25 =head1 Lexer interface
26 This is the lower layer of the Perl parser, managing characters and tokens.
28 =for apidoc AmU|yy_parser *|PL_parser
30 Pointer to a structure encapsulating the state of the parsing operation
31 currently in progress. The pointer can be locally changed to perform
32 a nested parse without interfering with the state of an outer parse.
33 Individual members of C<PL_parser> have their own documentation.
39 #define PERL_IN_TOKE_C
41 #include "dquote_inline.h"
43 #define new_constant(a,b,c,d,e,f,g) \
44 S_new_constant(aTHX_ a,b,STR_WITH_LEN(c),d,e,f, g)
46 #define pl_yylval (PL_parser->yylval)
48 /* XXX temporary backwards compatibility */
49 #define PL_lex_brackets (PL_parser->lex_brackets)
50 #define PL_lex_allbrackets (PL_parser->lex_allbrackets)
51 #define PL_lex_fakeeof (PL_parser->lex_fakeeof)
52 #define PL_lex_brackstack (PL_parser->lex_brackstack)
53 #define PL_lex_casemods (PL_parser->lex_casemods)
54 #define PL_lex_casestack (PL_parser->lex_casestack)
55 #define PL_lex_dojoin (PL_parser->lex_dojoin)
56 #define PL_lex_formbrack (PL_parser->lex_formbrack)
57 #define PL_lex_inpat (PL_parser->lex_inpat)
58 #define PL_lex_inwhat (PL_parser->lex_inwhat)
59 #define PL_lex_op (PL_parser->lex_op)
60 #define PL_lex_repl (PL_parser->lex_repl)
61 #define PL_lex_starts (PL_parser->lex_starts)
62 #define PL_lex_stuff (PL_parser->lex_stuff)
63 #define PL_multi_start (PL_parser->multi_start)
64 #define PL_multi_open (PL_parser->multi_open)
65 #define PL_multi_close (PL_parser->multi_close)
66 #define PL_preambled (PL_parser->preambled)
67 #define PL_linestr (PL_parser->linestr)
68 #define PL_expect (PL_parser->expect)
69 #define PL_copline (PL_parser->copline)
70 #define PL_bufptr (PL_parser->bufptr)
71 #define PL_oldbufptr (PL_parser->oldbufptr)
72 #define PL_oldoldbufptr (PL_parser->oldoldbufptr)
73 #define PL_linestart (PL_parser->linestart)
74 #define PL_bufend (PL_parser->bufend)
75 #define PL_last_uni (PL_parser->last_uni)
76 #define PL_last_lop (PL_parser->last_lop)
77 #define PL_last_lop_op (PL_parser->last_lop_op)
78 #define PL_lex_state (PL_parser->lex_state)
79 #define PL_rsfp (PL_parser->rsfp)
80 #define PL_rsfp_filters (PL_parser->rsfp_filters)
81 #define PL_in_my (PL_parser->in_my)
82 #define PL_in_my_stash (PL_parser->in_my_stash)
83 #define PL_tokenbuf (PL_parser->tokenbuf)
84 #define PL_multi_end (PL_parser->multi_end)
85 #define PL_error_count (PL_parser->error_count)
87 # define PL_nexttoke (PL_parser->nexttoke)
88 # define PL_nexttype (PL_parser->nexttype)
89 # define PL_nextval (PL_parser->nextval)
92 #define SvEVALED(sv) \
93 (SvTYPE(sv) >= SVt_PVNV \
94 && ((XPVIV*)SvANY(sv))->xiv_u.xivu_eval_seen)
96 static const char* const ident_too_long = "Identifier too long";
98 # define NEXTVAL_NEXTTOKE PL_nextval[PL_nexttoke]
100 #define XENUMMASK 0x3f
101 #define XFAKEEOF 0x40
102 #define XFAKEBRACK 0x80
104 #ifdef USE_UTF8_SCRIPTS
105 # define UTF cBOOL(!IN_BYTES)
107 # define UTF cBOOL((PL_linestr && DO_UTF8(PL_linestr)) || ( !(PL_parser->lex_flags & LEX_IGNORE_UTF8_HINTS) && (PL_hints & HINT_UTF8)))
110 /* The maximum number of characters preceding the unrecognized one to display */
111 #define UNRECOGNIZED_PRECEDE_COUNT 10
113 /* In variables named $^X, these are the legal values for X.
114 * 1999-02-27 mjd-perl-patch@plover.com */
115 #define isCONTROLVAR(x) (isUPPER(x) || strchr("[\\]^_?", (x)))
117 #define SPACE_OR_TAB(c) isBLANK_A(c)
119 #define HEXFP_PEEK(s) \
121 (isXDIGIT(s[1]) || isALPHA_FOLD_EQ(s[1], 'p'))) || \
122 isALPHA_FOLD_EQ(s[0], 'p'))
124 /* LEX_* are values for PL_lex_state, the state of the lexer.
125 * They are arranged oddly so that the guard on the switch statement
126 * can get by with a single comparison (if the compiler is smart enough).
128 * These values refer to the various states within a sublex parse,
129 * i.e. within a double quotish string
132 /* #define LEX_NOTPARSING 11 is done in perl.h. */
134 #define LEX_NORMAL 10 /* normal code (ie not within "...") */
135 #define LEX_INTERPNORMAL 9 /* code within a string, eg "$foo[$x+1]" */
136 #define LEX_INTERPCASEMOD 8 /* expecting a \U, \Q or \E etc */
137 #define LEX_INTERPPUSH 7 /* starting a new sublex parse level */
138 #define LEX_INTERPSTART 6 /* expecting the start of a $var */
140 /* at end of code, eg "$x" followed by: */
141 #define LEX_INTERPEND 5 /* ... eg not one of [, { or -> */
142 #define LEX_INTERPENDMAYBE 4 /* ... eg one of [, { or -> */
144 #define LEX_INTERPCONCAT 3 /* expecting anything, eg at start of
145 string or after \E, $foo, etc */
146 #define LEX_INTERPCONST 2 /* NOT USED */
147 #define LEX_FORMLINE 1 /* expecting a format line */
151 static const char* const lex_state_names[] = {
166 #include "keywords.h"
168 /* CLINE is a macro that ensures PL_copline has a sane value */
170 #define CLINE (PL_copline = (CopLINE(PL_curcop) < PL_copline ? CopLINE(PL_curcop) : PL_copline))
173 * Convenience functions to return different tokens and prime the
174 * lexer for the next token. They all take an argument.
176 * TOKEN : generic token (used for '(', DOLSHARP, etc)
177 * OPERATOR : generic operator
178 * AOPERATOR : assignment operator
179 * PREBLOCK : beginning the block after an if, while, foreach, ...
180 * PRETERMBLOCK : beginning a non-code-defining {} block (eg, hash ref)
181 * PREREF : *EXPR where EXPR is not a simple identifier
182 * TERM : expression term
183 * POSTDEREF : postfix dereference (->$* ->@[...] etc.)
184 * LOOPX : loop exiting command (goto, last, dump, etc)
185 * FTST : file test operator
186 * FUN0 : zero-argument function
187 * FUN0OP : zero-argument function, with its op created in this file
188 * FUN1 : not used, except for not, which isn't a UNIOP
189 * BOop : bitwise or or xor
191 * BCop : bitwise complement
192 * SHop : shift operator
193 * PWop : power operator
194 * PMop : pattern-matching operator
195 * Aop : addition-level operator
196 * AopNOASSIGN : addition-level operator that is never part of .=
197 * Mop : multiplication-level operator
198 * Eop : equality-testing operator
199 * Rop : relational operator <= != gt
201 * Also see LOP and lop() below.
204 #ifdef DEBUGGING /* Serve -DT. */
205 # define REPORT(retval) tokereport((I32)retval, &pl_yylval)
207 # define REPORT(retval) (retval)
210 #define TOKEN(retval) return ( PL_bufptr = s, REPORT(retval))
211 #define OPERATOR(retval) return (PL_expect = XTERM, PL_bufptr = s, REPORT(retval))
212 #define AOPERATOR(retval) return ao((PL_expect = XTERM, PL_bufptr = s, retval))
213 #define PREBLOCK(retval) return (PL_expect = XBLOCK,PL_bufptr = s, REPORT(retval))
214 #define PRETERMBLOCK(retval) return (PL_expect = XTERMBLOCK,PL_bufptr = s, REPORT(retval))
215 #define PREREF(retval) return (PL_expect = XREF,PL_bufptr = s, REPORT(retval))
216 #define TERM(retval) return (CLINE, PL_expect = XOPERATOR, PL_bufptr = s, REPORT(retval))
217 #define POSTDEREF(f) return (PL_bufptr = s, S_postderef(aTHX_ REPORT(f),s[1]))
218 #define LOOPX(f) return (PL_bufptr = force_word(s,BAREWORD,TRUE,FALSE), \
220 PL_expect = PL_nexttoke ? XOPERATOR : XTERM, \
222 #define FTST(f) return (pl_yylval.ival=f, PL_expect=XTERMORDORDOR, PL_bufptr=s, REPORT((int)UNIOP))
223 #define FUN0(f) return (pl_yylval.ival=f, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC0))
224 #define FUN0OP(f) return (pl_yylval.opval=f, CLINE, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC0OP))
225 #define FUN1(f) return (pl_yylval.ival=f, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC1))
226 #define BOop(f) return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)BITOROP))
227 #define BAop(f) return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)BITANDOP))
228 #define BCop(f) return pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr = s, \
230 #define SHop(f) return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)SHIFTOP))
231 #define PWop(f) return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)POWOP))
232 #define PMop(f) return(pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)MATCHOP))
233 #define Aop(f) return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)ADDOP))
234 #define AopNOASSIGN(f) return (pl_yylval.ival=f, PL_bufptr=s, REPORT((int)ADDOP))
235 #define Mop(f) return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)MULOP))
236 #define Eop(f) return (pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)EQOP))
237 #define Rop(f) return (pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)RELOP))
239 /* This bit of chicanery makes a unary function followed by
240 * a parenthesis into a function with one argument, highest precedence.
241 * The UNIDOR macro is for unary functions that can be followed by the //
242 * operator (such as C<shift // 0>).
244 #define UNI3(f,x,have_x) { \
245 pl_yylval.ival = f; \
246 if (have_x) PL_expect = x; \
248 PL_last_uni = PL_oldbufptr; \
249 PL_last_lop_op = (f) < 0 ? -(f) : (f); \
251 return REPORT( (int)FUNC1 ); \
253 return REPORT( *s=='(' ? (int)FUNC1 : (int)UNIOP ); \
255 #define UNI(f) UNI3(f,XTERM,1)
256 #define UNIDOR(f) UNI3(f,XTERMORDORDOR,1)
257 #define UNIPROTO(f,optional) { \
258 if (optional) PL_last_uni = PL_oldbufptr; \
262 #define UNIBRACK(f) UNI3(f,0,0)
264 /* grandfather return to old style */
267 if (!PL_lex_allbrackets && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC) \
268 PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC; \
269 pl_yylval.ival = (f); \
275 #define COPLINE_INC_WITH_HERELINES \
277 CopLINE_inc(PL_curcop); \
278 if (PL_parser->herelines) \
279 CopLINE(PL_curcop) += PL_parser->herelines, \
280 PL_parser->herelines = 0; \
282 /* Called after scan_str to update CopLINE(PL_curcop), but only when there
283 * is no sublex_push to follow. */
284 #define COPLINE_SET_FROM_MULTI_END \
286 CopLINE_set(PL_curcop, PL_multi_end); \
287 if (PL_multi_end != PL_multi_start) \
288 PL_parser->herelines = 0; \
294 /* how to interpret the pl_yylval associated with the token */
298 TOKENTYPE_OPNUM, /* pl_yylval.ival contains an opcode number */
303 static struct debug_tokens {
305 enum token_type type;
307 } const debug_tokens[] =
309 { ADDOP, TOKENTYPE_OPNUM, "ADDOP" },
310 { ANDAND, TOKENTYPE_NONE, "ANDAND" },
311 { ANDOP, TOKENTYPE_NONE, "ANDOP" },
312 { ANONSUB, TOKENTYPE_IVAL, "ANONSUB" },
313 { ARROW, TOKENTYPE_NONE, "ARROW" },
314 { ASSIGNOP, TOKENTYPE_OPNUM, "ASSIGNOP" },
315 { BITANDOP, TOKENTYPE_OPNUM, "BITANDOP" },
316 { BITOROP, TOKENTYPE_OPNUM, "BITOROP" },
317 { COLONATTR, TOKENTYPE_NONE, "COLONATTR" },
318 { CONTINUE, TOKENTYPE_NONE, "CONTINUE" },
319 { DEFAULT, TOKENTYPE_NONE, "DEFAULT" },
320 { DO, TOKENTYPE_NONE, "DO" },
321 { DOLSHARP, TOKENTYPE_NONE, "DOLSHARP" },
322 { DORDOR, TOKENTYPE_NONE, "DORDOR" },
323 { DOROP, TOKENTYPE_OPNUM, "DOROP" },
324 { DOTDOT, TOKENTYPE_IVAL, "DOTDOT" },
325 { ELSE, TOKENTYPE_NONE, "ELSE" },
326 { ELSIF, TOKENTYPE_IVAL, "ELSIF" },
327 { EQOP, TOKENTYPE_OPNUM, "EQOP" },
328 { FOR, TOKENTYPE_IVAL, "FOR" },
329 { FORMAT, TOKENTYPE_NONE, "FORMAT" },
330 { FORMLBRACK, TOKENTYPE_NONE, "FORMLBRACK" },
331 { FORMRBRACK, TOKENTYPE_NONE, "FORMRBRACK" },
332 { FUNC, TOKENTYPE_OPNUM, "FUNC" },
333 { FUNC0, TOKENTYPE_OPNUM, "FUNC0" },
334 { FUNC0OP, TOKENTYPE_OPVAL, "FUNC0OP" },
335 { FUNC0SUB, TOKENTYPE_OPVAL, "FUNC0SUB" },
336 { FUNC1, TOKENTYPE_OPNUM, "FUNC1" },
337 { FUNCMETH, TOKENTYPE_OPVAL, "FUNCMETH" },
338 { GIVEN, TOKENTYPE_IVAL, "GIVEN" },
339 { HASHBRACK, TOKENTYPE_NONE, "HASHBRACK" },
340 { IF, TOKENTYPE_IVAL, "IF" },
341 { LABEL, TOKENTYPE_PVAL, "LABEL" },
342 { LOCAL, TOKENTYPE_IVAL, "LOCAL" },
343 { LOOPEX, TOKENTYPE_OPNUM, "LOOPEX" },
344 { LSTOP, TOKENTYPE_OPNUM, "LSTOP" },
345 { LSTOPSUB, TOKENTYPE_OPVAL, "LSTOPSUB" },
346 { MATCHOP, TOKENTYPE_OPNUM, "MATCHOP" },
347 { METHOD, TOKENTYPE_OPVAL, "METHOD" },
348 { MULOP, TOKENTYPE_OPNUM, "MULOP" },
349 { MY, TOKENTYPE_IVAL, "MY" },
350 { NOAMP, TOKENTYPE_NONE, "NOAMP" },
351 { NOTOP, TOKENTYPE_NONE, "NOTOP" },
352 { OROP, TOKENTYPE_IVAL, "OROP" },
353 { OROR, TOKENTYPE_NONE, "OROR" },
354 { PACKAGE, TOKENTYPE_NONE, "PACKAGE" },
355 { PLUGEXPR, TOKENTYPE_OPVAL, "PLUGEXPR" },
356 { PLUGSTMT, TOKENTYPE_OPVAL, "PLUGSTMT" },
357 { PMFUNC, TOKENTYPE_OPVAL, "PMFUNC" },
358 { POSTJOIN, TOKENTYPE_NONE, "POSTJOIN" },
359 { POSTDEC, TOKENTYPE_NONE, "POSTDEC" },
360 { POSTINC, TOKENTYPE_NONE, "POSTINC" },
361 { POWOP, TOKENTYPE_OPNUM, "POWOP" },
362 { PREDEC, TOKENTYPE_NONE, "PREDEC" },
363 { PREINC, TOKENTYPE_NONE, "PREINC" },
364 { PRIVATEREF, TOKENTYPE_OPVAL, "PRIVATEREF" },
365 { QWLIST, TOKENTYPE_OPVAL, "QWLIST" },
366 { REFGEN, TOKENTYPE_NONE, "REFGEN" },
367 { RELOP, TOKENTYPE_OPNUM, "RELOP" },
368 { REQUIRE, TOKENTYPE_NONE, "REQUIRE" },
369 { SHIFTOP, TOKENTYPE_OPNUM, "SHIFTOP" },
370 { SUB, TOKENTYPE_NONE, "SUB" },
371 { THING, TOKENTYPE_OPVAL, "THING" },
372 { UMINUS, TOKENTYPE_NONE, "UMINUS" },
373 { UNIOP, TOKENTYPE_OPNUM, "UNIOP" },
374 { UNIOPSUB, TOKENTYPE_OPVAL, "UNIOPSUB" },
375 { UNLESS, TOKENTYPE_IVAL, "UNLESS" },
376 { UNTIL, TOKENTYPE_IVAL, "UNTIL" },
377 { USE, TOKENTYPE_IVAL, "USE" },
378 { WHEN, TOKENTYPE_IVAL, "WHEN" },
379 { WHILE, TOKENTYPE_IVAL, "WHILE" },
380 { BAREWORD, TOKENTYPE_OPVAL, "BAREWORD" },
381 { YADAYADA, TOKENTYPE_IVAL, "YADAYADA" },
382 { 0, TOKENTYPE_NONE, NULL }
385 /* dump the returned token in rv, plus any optional arg in pl_yylval */
388 S_tokereport(pTHX_ I32 rv, const YYSTYPE* lvalp)
390 PERL_ARGS_ASSERT_TOKEREPORT;
393 const char *name = NULL;
394 enum token_type type = TOKENTYPE_NONE;
395 const struct debug_tokens *p;
396 SV* const report = newSVpvs("<== ");
398 for (p = debug_tokens; p->token; p++) {
399 if (p->token == (int)rv) {
406 Perl_sv_catpv(aTHX_ report, name);
407 else if (isGRAPH(rv))
409 Perl_sv_catpvf(aTHX_ report, "'%c'", (char)rv);
411 sv_catpvs(report, " (pending identifier)");
414 sv_catpvs(report, "EOF");
416 Perl_sv_catpvf(aTHX_ report, "?? %" IVdf, (IV)rv);
421 Perl_sv_catpvf(aTHX_ report, "(ival=%" IVdf ")", (IV)lvalp->ival);
423 case TOKENTYPE_OPNUM:
424 Perl_sv_catpvf(aTHX_ report, "(ival=op_%s)",
425 PL_op_name[lvalp->ival]);
428 Perl_sv_catpvf(aTHX_ report, "(pval=\"%s\")", lvalp->pval);
430 case TOKENTYPE_OPVAL:
432 Perl_sv_catpvf(aTHX_ report, "(opval=op_%s)",
433 PL_op_name[lvalp->opval->op_type]);
434 if (lvalp->opval->op_type == OP_CONST) {
435 Perl_sv_catpvf(aTHX_ report, " %s",
436 SvPEEK(cSVOPx_sv(lvalp->opval)));
441 sv_catpvs(report, "(opval=null)");
444 PerlIO_printf(Perl_debug_log, "### %s\n\n", SvPV_nolen_const(report));
450 /* print the buffer with suitable escapes */
453 S_printbuf(pTHX_ const char *const fmt, const char *const s)
455 SV* const tmp = newSVpvs("");
457 PERL_ARGS_ASSERT_PRINTBUF;
459 GCC_DIAG_IGNORE(-Wformat-nonliteral); /* fmt checked by caller */
460 PerlIO_printf(Perl_debug_log, fmt, pv_display(tmp, s, strlen(s), 0, 60));
468 S_deprecate_commaless_var_list(pTHX) {
470 deprecate_fatal_in("5.28", "Use of comma-less variable list is deprecated");
471 return REPORT(','); /* grandfather non-comma-format format */
477 * This subroutine looks for an '=' next to the operator that has just been
478 * parsed and turns it into an ASSIGNOP if it finds one.
482 S_ao(pTHX_ int toketype)
484 if (*PL_bufptr == '=') {
486 if (toketype == ANDAND)
487 pl_yylval.ival = OP_ANDASSIGN;
488 else if (toketype == OROR)
489 pl_yylval.ival = OP_ORASSIGN;
490 else if (toketype == DORDOR)
491 pl_yylval.ival = OP_DORASSIGN;
494 return REPORT(toketype);
499 * When Perl expects an operator and finds something else, no_op
500 * prints the warning. It always prints "<something> found where
501 * operator expected. It prints "Missing semicolon on previous line?"
502 * if the surprise occurs at the start of the line. "do you need to
503 * predeclare ..." is printed out for code like "sub bar; foo bar $x"
504 * where the compiler doesn't know if foo is a method call or a function.
505 * It prints "Missing operator before end of line" if there's nothing
506 * after the missing operator, or "... before <...>" if there is something
507 * after the missing operator.
509 * PL_bufptr is expected to point to the start of the thing that was found,
510 * and s after the next token or partial token.
514 S_no_op(pTHX_ const char *const what, char *s)
516 char * const oldbp = PL_bufptr;
517 const bool is_first = (PL_oldbufptr == PL_linestart);
519 PERL_ARGS_ASSERT_NO_OP;
525 yywarn(Perl_form(aTHX_ "%s found where operator expected", what), UTF ? SVf_UTF8 : 0);
526 if (ckWARN_d(WARN_SYNTAX)) {
528 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
529 "\t(Missing semicolon on previous line?)\n");
530 else if (PL_oldoldbufptr && isIDFIRST_lazy_if_safe(PL_oldoldbufptr,
535 for (t = PL_oldoldbufptr;
536 (isWORDCHAR_lazy_if_safe(t, PL_bufend, UTF) || *t == ':');
537 t += UTF ? UTF8SKIP(t) : 1)
541 if (t < PL_bufptr && isSPACE(*t))
542 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
543 "\t(Do you need to predeclare %" UTF8f "?)\n",
544 UTF8fARG(UTF, t - PL_oldoldbufptr, PL_oldoldbufptr));
548 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
549 "\t(Missing operator before %" UTF8f "?)\n",
550 UTF8fARG(UTF, s - oldbp, oldbp));
558 * Complain about missing quote/regexp/heredoc terminator.
559 * If it's called with NULL then it cauterizes the line buffer.
560 * If we're in a delimited string and the delimiter is a control
561 * character, it's reformatted into a two-char sequence like ^C.
566 S_missingterm(pTHX_ char *s)
568 char tmpbuf[UTF8_MAXBYTES + 1];
573 char * const nl = strrchr(s,'\n');
578 else if (PL_multi_close < 32) {
580 tmpbuf[1] = (char)toCTRL(PL_multi_close);
585 if (LIKELY(PL_multi_close < 256)) {
586 *tmpbuf = (char)PL_multi_close;
591 *uvchr_to_utf8((U8 *)tmpbuf, PL_multi_close) = 0;
595 q = strchr(s,'"') ? '\'' : '"';
596 sv = sv_2mortal(newSVpv(s,0));
599 Perl_croak(aTHX_ "Can't find string terminator %c%" SVf
600 "%c anywhere before EOF",q,SVfARG(sv),q);
606 * Check whether the named feature is enabled.
609 Perl_feature_is_enabled(pTHX_ const char *const name, STRLEN namelen)
611 char he_name[8 + MAX_FEATURE_LEN] = "feature_";
613 PERL_ARGS_ASSERT_FEATURE_IS_ENABLED;
615 assert(CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_CUSTOM);
617 if (namelen > MAX_FEATURE_LEN)
619 memcpy(&he_name[8], name, namelen);
621 return cBOOL(cop_hints_fetch_pvn(PL_curcop, he_name, 8 + namelen, 0,
622 REFCOUNTED_HE_EXISTS));
626 * experimental text filters for win32 carriage-returns, utf16-to-utf8 and
627 * utf16-to-utf8-reversed.
630 #ifdef PERL_CR_FILTER
634 const char *s = SvPVX_const(sv);
635 const char * const e = s + SvCUR(sv);
637 PERL_ARGS_ASSERT_STRIP_RETURN;
639 /* outer loop optimized to do nothing if there are no CR-LFs */
641 if (*s++ == '\r' && *s == '\n') {
642 /* hit a CR-LF, need to copy the rest */
646 if (*s == '\r' && s[1] == '\n')
657 S_cr_textfilter(pTHX_ int idx, SV *sv, int maxlen)
659 const I32 count = FILTER_READ(idx+1, sv, maxlen);
660 if (count > 0 && !maxlen)
667 =for apidoc Amx|void|lex_start|SV *line|PerlIO *rsfp|U32 flags
669 Creates and initialises a new lexer/parser state object, supplying
670 a context in which to lex and parse from a new source of Perl code.
671 A pointer to the new state object is placed in L</PL_parser>. An entry
672 is made on the save stack so that upon unwinding, the new state object
673 will be destroyed and the former value of L</PL_parser> will be restored.
674 Nothing else need be done to clean up the parsing context.
676 The code to be parsed comes from C<line> and C<rsfp>. C<line>, if
677 non-null, provides a string (in SV form) containing code to be parsed.
678 A copy of the string is made, so subsequent modification of C<line>
679 does not affect parsing. C<rsfp>, if non-null, provides an input stream
680 from which code will be read to be parsed. If both are non-null, the
681 code in C<line> comes first and must consist of complete lines of input,
682 and C<rsfp> supplies the remainder of the source.
684 The C<flags> parameter is reserved for future use. Currently it is only
685 used by perl internally, so extensions should always pass zero.
690 /* LEX_START_SAME_FILTER indicates that this is not a new file, so it
691 can share filters with the current parser.
692 LEX_START_DONT_CLOSE indicates that the file handle wasn't opened by the
693 caller, hence isn't owned by the parser, so shouldn't be closed on parser
694 destruction. This is used to handle the case of defaulting to reading the
695 script from the standard input because no filename was given on the command
696 line (without getting confused by situation where STDIN has been closed, so
697 the script handle is opened on fd 0) */
700 Perl_lex_start(pTHX_ SV *line, PerlIO *rsfp, U32 flags)
702 const char *s = NULL;
703 yy_parser *parser, *oparser;
704 const U8* first_bad_char_loc;
706 if (flags && flags & ~LEX_START_FLAGS)
707 Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_start");
709 /* create and initialise a parser */
711 Newxz(parser, 1, yy_parser);
712 parser->old_parser = oparser = PL_parser;
715 parser->stack = NULL;
716 parser->stack_max1 = NULL;
719 /* on scope exit, free this parser and restore any outer one */
721 parser->saved_curcop = PL_curcop;
723 /* initialise lexer state */
725 parser->nexttoke = 0;
726 parser->error_count = oparser ? oparser->error_count : 0;
727 parser->copline = parser->preambling = NOLINE;
728 parser->lex_state = LEX_NORMAL;
729 parser->expect = XSTATE;
731 parser->rsfp_filters =
732 !(flags & LEX_START_SAME_FILTER) || !oparser
734 : MUTABLE_AV(SvREFCNT_inc(
735 oparser->rsfp_filters
736 ? oparser->rsfp_filters
737 : (oparser->rsfp_filters = newAV())
740 Newx(parser->lex_brackstack, 120, char);
741 Newx(parser->lex_casestack, 12, char);
742 *parser->lex_casestack = '\0';
743 Newxz(parser->lex_shared, 1, LEXSHARED);
747 s = SvPV_const(line, len);
749 if (SvUTF8(line) && ! is_utf8_string_loc((U8 *) s,
751 &first_bad_char_loc))
753 _force_out_malformed_utf8_message(first_bad_char_loc,
754 (U8 *) s + SvCUR(line),
756 1 /* 1 means die */ );
757 NOT_REACHED; /* NOTREACHED */
760 parser->linestr = flags & LEX_START_COPIED
761 ? SvREFCNT_inc_simple_NN(line)
762 : newSVpvn_flags(s, len, SvUTF8(line));
764 sv_catpvs(parser->linestr, "\n;");
766 parser->linestr = newSVpvn("\n;", rsfp ? 1 : 2);
768 parser->oldoldbufptr =
771 parser->linestart = SvPVX(parser->linestr);
772 parser->bufend = parser->bufptr + SvCUR(parser->linestr);
773 parser->last_lop = parser->last_uni = NULL;
775 STATIC_ASSERT_STMT(FITS_IN_8_BITS(LEX_IGNORE_UTF8_HINTS|LEX_EVALBYTES
776 |LEX_DONT_CLOSE_RSFP));
777 parser->lex_flags = (U8) (flags & (LEX_IGNORE_UTF8_HINTS|LEX_EVALBYTES
778 |LEX_DONT_CLOSE_RSFP));
780 parser->in_pod = parser->filtered = 0;
784 /* delete a parser object */
787 Perl_parser_free(pTHX_ const yy_parser *parser)
789 PERL_ARGS_ASSERT_PARSER_FREE;
791 PL_curcop = parser->saved_curcop;
792 SvREFCNT_dec(parser->linestr);
794 if (PL_parser->lex_flags & LEX_DONT_CLOSE_RSFP)
795 PerlIO_clearerr(parser->rsfp);
796 else if (parser->rsfp && (!parser->old_parser
797 || (parser->old_parser && parser->rsfp != parser->old_parser->rsfp)))
798 PerlIO_close(parser->rsfp);
799 SvREFCNT_dec(parser->rsfp_filters);
800 SvREFCNT_dec(parser->lex_stuff);
801 SvREFCNT_dec(parser->lex_sub_repl);
803 Safefree(parser->lex_brackstack);
804 Safefree(parser->lex_casestack);
805 Safefree(parser->lex_shared);
806 PL_parser = parser->old_parser;
811 Perl_parser_free_nexttoke_ops(pTHX_ yy_parser *parser, OPSLAB *slab)
813 I32 nexttoke = parser->nexttoke;
814 PERL_ARGS_ASSERT_PARSER_FREE_NEXTTOKE_OPS;
816 if (S_is_opval_token(parser->nexttype[nexttoke] & 0xffff)
817 && parser->nextval[nexttoke].opval
818 && parser->nextval[nexttoke].opval->op_slabbed
819 && OpSLAB(parser->nextval[nexttoke].opval) == slab) {
820 op_free(parser->nextval[nexttoke].opval);
821 parser->nextval[nexttoke].opval = NULL;
828 =for apidoc AmxU|SV *|PL_parser-E<gt>linestr
830 Buffer scalar containing the chunk currently under consideration of the
831 text currently being lexed. This is always a plain string scalar (for
832 which C<SvPOK> is true). It is not intended to be used as a scalar by
833 normal scalar means; instead refer to the buffer directly by the pointer
834 variables described below.
836 The lexer maintains various C<char*> pointers to things in the
837 C<PL_parser-E<gt>linestr> buffer. If C<PL_parser-E<gt>linestr> is ever
838 reallocated, all of these pointers must be updated. Don't attempt to
839 do this manually, but rather use L</lex_grow_linestr> if you need to
840 reallocate the buffer.
842 The content of the text chunk in the buffer is commonly exactly one
843 complete line of input, up to and including a newline terminator,
844 but there are situations where it is otherwise. The octets of the
845 buffer may be intended to be interpreted as either UTF-8 or Latin-1.
846 The function L</lex_bufutf8> tells you which. Do not use the C<SvUTF8>
847 flag on this scalar, which may disagree with it.
849 For direct examination of the buffer, the variable
850 L</PL_parser-E<gt>bufend> points to the end of the buffer. The current
851 lexing position is pointed to by L</PL_parser-E<gt>bufptr>. Direct use
852 of these pointers is usually preferable to examination of the scalar
853 through normal scalar means.
855 =for apidoc AmxU|char *|PL_parser-E<gt>bufend
857 Direct pointer to the end of the chunk of text currently being lexed, the
858 end of the lexer buffer. This is equal to C<SvPVX(PL_parser-E<gt>linestr)
859 + SvCUR(PL_parser-E<gt>linestr)>. A C<NUL> character (zero octet) is
860 always located at the end of the buffer, and does not count as part of
861 the buffer's contents.
863 =for apidoc AmxU|char *|PL_parser-E<gt>bufptr
865 Points to the current position of lexing inside the lexer buffer.
866 Characters around this point may be freely examined, within
867 the range delimited by C<SvPVX(L</PL_parser-E<gt>linestr>)> and
868 L</PL_parser-E<gt>bufend>. The octets of the buffer may be intended to be
869 interpreted as either UTF-8 or Latin-1, as indicated by L</lex_bufutf8>.
871 Lexing code (whether in the Perl core or not) moves this pointer past
872 the characters that it consumes. It is also expected to perform some
873 bookkeeping whenever a newline character is consumed. This movement
874 can be more conveniently performed by the function L</lex_read_to>,
875 which handles newlines appropriately.
877 Interpretation of the buffer's octets can be abstracted out by
878 using the slightly higher-level functions L</lex_peek_unichar> and
879 L</lex_read_unichar>.
881 =for apidoc AmxU|char *|PL_parser-E<gt>linestart
883 Points to the start of the current line inside the lexer buffer.
884 This is useful for indicating at which column an error occurred, and
885 not much else. This must be updated by any lexing code that consumes
886 a newline; the function L</lex_read_to> handles this detail.
892 =for apidoc Amx|bool|lex_bufutf8
894 Indicates whether the octets in the lexer buffer
895 (L</PL_parser-E<gt>linestr>) should be interpreted as the UTF-8 encoding
896 of Unicode characters. If not, they should be interpreted as Latin-1
897 characters. This is analogous to the C<SvUTF8> flag for scalars.
899 In UTF-8 mode, it is not guaranteed that the lexer buffer actually
900 contains valid UTF-8. Lexing code must be robust in the face of invalid
903 The actual C<SvUTF8> flag of the L</PL_parser-E<gt>linestr> scalar
904 is significant, but not the whole story regarding the input character
905 encoding. Normally, when a file is being read, the scalar contains octets
906 and its C<SvUTF8> flag is off, but the octets should be interpreted as
907 UTF-8 if the C<use utf8> pragma is in effect. During a string eval,
908 however, the scalar may have the C<SvUTF8> flag on, and in this case its
909 octets should be interpreted as UTF-8 unless the C<use bytes> pragma
910 is in effect. This logic may change in the future; use this function
911 instead of implementing the logic yourself.
917 Perl_lex_bufutf8(pTHX)
923 =for apidoc Amx|char *|lex_grow_linestr|STRLEN len
925 Reallocates the lexer buffer (L</PL_parser-E<gt>linestr>) to accommodate
926 at least C<len> octets (including terminating C<NUL>). Returns a
927 pointer to the reallocated buffer. This is necessary before making
928 any direct modification of the buffer that would increase its length.
929 L</lex_stuff_pvn> provides a more convenient way to insert text into
932 Do not use C<SvGROW> or C<sv_grow> directly on C<PL_parser-E<gt>linestr>;
933 this function updates all of the lexer's variables that point directly
940 Perl_lex_grow_linestr(pTHX_ STRLEN len)
944 STRLEN bufend_pos, bufptr_pos, oldbufptr_pos, oldoldbufptr_pos;
945 STRLEN linestart_pos, last_uni_pos, last_lop_pos, re_eval_start_pos;
948 linestr = PL_parser->linestr;
949 buf = SvPVX(linestr);
950 if (len <= SvLEN(linestr))
953 /* Is the lex_shared linestr SV the same as the current linestr SV?
954 * Only in this case does re_eval_start need adjusting, since it
955 * points within lex_shared->ls_linestr's buffer */
956 current = ( !PL_parser->lex_shared->ls_linestr
957 || linestr == PL_parser->lex_shared->ls_linestr);
959 bufend_pos = PL_parser->bufend - buf;
960 bufptr_pos = PL_parser->bufptr - buf;
961 oldbufptr_pos = PL_parser->oldbufptr - buf;
962 oldoldbufptr_pos = PL_parser->oldoldbufptr - buf;
963 linestart_pos = PL_parser->linestart - buf;
964 last_uni_pos = PL_parser->last_uni ? PL_parser->last_uni - buf : 0;
965 last_lop_pos = PL_parser->last_lop ? PL_parser->last_lop - buf : 0;
966 re_eval_start_pos = (current && PL_parser->lex_shared->re_eval_start) ?
967 PL_parser->lex_shared->re_eval_start - buf : 0;
969 buf = sv_grow(linestr, len);
971 PL_parser->bufend = buf + bufend_pos;
972 PL_parser->bufptr = buf + bufptr_pos;
973 PL_parser->oldbufptr = buf + oldbufptr_pos;
974 PL_parser->oldoldbufptr = buf + oldoldbufptr_pos;
975 PL_parser->linestart = buf + linestart_pos;
976 if (PL_parser->last_uni)
977 PL_parser->last_uni = buf + last_uni_pos;
978 if (PL_parser->last_lop)
979 PL_parser->last_lop = buf + last_lop_pos;
980 if (current && PL_parser->lex_shared->re_eval_start)
981 PL_parser->lex_shared->re_eval_start = buf + re_eval_start_pos;
986 =for apidoc Amx|void|lex_stuff_pvn|const char *pv|STRLEN len|U32 flags
988 Insert characters into the lexer buffer (L</PL_parser-E<gt>linestr>),
989 immediately after the current lexing point (L</PL_parser-E<gt>bufptr>),
990 reallocating the buffer if necessary. This means that lexing code that
991 runs later will see the characters as if they had appeared in the input.
992 It is not recommended to do this as part of normal parsing, and most
993 uses of this facility run the risk of the inserted characters being
994 interpreted in an unintended manner.
996 The string to be inserted is represented by C<len> octets starting
997 at C<pv>. These octets are interpreted as either UTF-8 or Latin-1,
998 according to whether the C<LEX_STUFF_UTF8> flag is set in C<flags>.
999 The characters are recoded for the lexer buffer, according to how the
1000 buffer is currently being interpreted (L</lex_bufutf8>). If a string
1001 to be inserted is available as a Perl scalar, the L</lex_stuff_sv>
1002 function is more convenient.
1008 Perl_lex_stuff_pvn(pTHX_ const char *pv, STRLEN len, U32 flags)
1012 PERL_ARGS_ASSERT_LEX_STUFF_PVN;
1013 if (flags & ~(LEX_STUFF_UTF8))
1014 Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_stuff_pvn");
1016 if (flags & LEX_STUFF_UTF8) {
1019 STRLEN highhalf = 0; /* Count of variants */
1020 const char *p, *e = pv+len;
1021 for (p = pv; p != e; p++) {
1022 if (! UTF8_IS_INVARIANT(*p)) {
1028 lex_grow_linestr(SvCUR(PL_parser->linestr)+1+len+highhalf);
1029 bufptr = PL_parser->bufptr;
1030 Move(bufptr, bufptr+len+highhalf, PL_parser->bufend+1-bufptr, char);
1031 SvCUR_set(PL_parser->linestr,
1032 SvCUR(PL_parser->linestr) + len+highhalf);
1033 PL_parser->bufend += len+highhalf;
1034 for (p = pv; p != e; p++) {
1036 if (! UTF8_IS_INVARIANT(c)) {
1037 *bufptr++ = UTF8_TWO_BYTE_HI(c);
1038 *bufptr++ = UTF8_TWO_BYTE_LO(c);
1040 *bufptr++ = (char)c;
1045 if (flags & LEX_STUFF_UTF8) {
1046 STRLEN highhalf = 0;
1047 const char *p, *e = pv+len;
1048 for (p = pv; p != e; p++) {
1050 if (UTF8_IS_ABOVE_LATIN1(c)) {
1051 Perl_croak(aTHX_ "Lexing code attempted to stuff "
1052 "non-Latin-1 character into Latin-1 input");
1053 } else if (UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(p, e)) {
1056 } else if (! UTF8_IS_INVARIANT(c)) {
1057 _force_out_malformed_utf8_message((U8 *) p, (U8 *) e,
1059 1 /* 1 means die */ );
1060 NOT_REACHED; /* NOTREACHED */
1065 lex_grow_linestr(SvCUR(PL_parser->linestr)+1+len-highhalf);
1066 bufptr = PL_parser->bufptr;
1067 Move(bufptr, bufptr+len-highhalf, PL_parser->bufend+1-bufptr, char);
1068 SvCUR_set(PL_parser->linestr,
1069 SvCUR(PL_parser->linestr) + len-highhalf);
1070 PL_parser->bufend += len-highhalf;
1073 if (UTF8_IS_INVARIANT(*p)) {
1079 *bufptr++ = EIGHT_BIT_UTF8_TO_NATIVE(*p, *(p+1));
1085 lex_grow_linestr(SvCUR(PL_parser->linestr)+1+len);
1086 bufptr = PL_parser->bufptr;
1087 Move(bufptr, bufptr+len, PL_parser->bufend+1-bufptr, char);
1088 SvCUR_set(PL_parser->linestr, SvCUR(PL_parser->linestr) + len);
1089 PL_parser->bufend += len;
1090 Copy(pv, bufptr, len, char);
1096 =for apidoc Amx|void|lex_stuff_pv|const char *pv|U32 flags
1098 Insert characters into the lexer buffer (L</PL_parser-E<gt>linestr>),
1099 immediately after the current lexing point (L</PL_parser-E<gt>bufptr>),
1100 reallocating the buffer if necessary. This means that lexing code that
1101 runs later will see the characters as if they had appeared in the input.
1102 It is not recommended to do this as part of normal parsing, and most
1103 uses of this facility run the risk of the inserted characters being
1104 interpreted in an unintended manner.
1106 The string to be inserted is represented by octets starting at C<pv>
1107 and continuing to the first nul. These octets are interpreted as either
1108 UTF-8 or Latin-1, according to whether the C<LEX_STUFF_UTF8> flag is set
1109 in C<flags>. The characters are recoded for the lexer buffer, according
1110 to how the buffer is currently being interpreted (L</lex_bufutf8>).
1111 If it is not convenient to nul-terminate a string to be inserted, the
1112 L</lex_stuff_pvn> function is more appropriate.
1118 Perl_lex_stuff_pv(pTHX_ const char *pv, U32 flags)
1120 PERL_ARGS_ASSERT_LEX_STUFF_PV;
1121 lex_stuff_pvn(pv, strlen(pv), flags);
1125 =for apidoc Amx|void|lex_stuff_sv|SV *sv|U32 flags
1127 Insert characters into the lexer buffer (L</PL_parser-E<gt>linestr>),
1128 immediately after the current lexing point (L</PL_parser-E<gt>bufptr>),
1129 reallocating the buffer if necessary. This means that lexing code that
1130 runs later will see the characters as if they had appeared in the input.
1131 It is not recommended to do this as part of normal parsing, and most
1132 uses of this facility run the risk of the inserted characters being
1133 interpreted in an unintended manner.
1135 The string to be inserted is the string value of C<sv>. The characters
1136 are recoded for the lexer buffer, according to how the buffer is currently
1137 being interpreted (L</lex_bufutf8>). If a string to be inserted is
1138 not already a Perl scalar, the L</lex_stuff_pvn> function avoids the
1139 need to construct a scalar.
1145 Perl_lex_stuff_sv(pTHX_ SV *sv, U32 flags)
1149 PERL_ARGS_ASSERT_LEX_STUFF_SV;
1151 Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_stuff_sv");
1153 lex_stuff_pvn(pv, len, flags | (SvUTF8(sv) ? LEX_STUFF_UTF8 : 0));
1157 =for apidoc Amx|void|lex_unstuff|char *ptr
1159 Discards text about to be lexed, from L</PL_parser-E<gt>bufptr> up to
1160 C<ptr>. Text following C<ptr> will be moved, and the buffer shortened.
1161 This hides the discarded text from any lexing code that runs later,
1162 as if the text had never appeared.
1164 This is not the normal way to consume lexed text. For that, use
1171 Perl_lex_unstuff(pTHX_ char *ptr)
1175 PERL_ARGS_ASSERT_LEX_UNSTUFF;
1176 buf = PL_parser->bufptr;
1178 Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_unstuff");
1181 bufend = PL_parser->bufend;
1183 Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_unstuff");
1184 unstuff_len = ptr - buf;
1185 Move(ptr, buf, bufend+1-ptr, char);
1186 SvCUR_set(PL_parser->linestr, SvCUR(PL_parser->linestr) - unstuff_len);
1187 PL_parser->bufend = bufend - unstuff_len;
1191 =for apidoc Amx|void|lex_read_to|char *ptr
1193 Consume text in the lexer buffer, from L</PL_parser-E<gt>bufptr> up
1194 to C<ptr>. This advances L</PL_parser-E<gt>bufptr> to match C<ptr>,
1195 performing the correct bookkeeping whenever a newline character is passed.
1196 This is the normal way to consume lexed text.
1198 Interpretation of the buffer's octets can be abstracted out by
1199 using the slightly higher-level functions L</lex_peek_unichar> and
1200 L</lex_read_unichar>.
1206 Perl_lex_read_to(pTHX_ char *ptr)
1209 PERL_ARGS_ASSERT_LEX_READ_TO;
1210 s = PL_parser->bufptr;
1211 if (ptr < s || ptr > PL_parser->bufend)
1212 Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_read_to");
1213 for (; s != ptr; s++)
1215 COPLINE_INC_WITH_HERELINES;
1216 PL_parser->linestart = s+1;
1218 PL_parser->bufptr = ptr;
1222 =for apidoc Amx|void|lex_discard_to|char *ptr
1224 Discards the first part of the L</PL_parser-E<gt>linestr> buffer,
1225 up to C<ptr>. The remaining content of the buffer will be moved, and
1226 all pointers into the buffer updated appropriately. C<ptr> must not
1227 be later in the buffer than the position of L</PL_parser-E<gt>bufptr>:
1228 it is not permitted to discard text that has yet to be lexed.
1230 Normally it is not necessarily to do this directly, because it suffices to
1231 use the implicit discarding behaviour of L</lex_next_chunk> and things
1232 based on it. However, if a token stretches across multiple lines,
1233 and the lexing code has kept multiple lines of text in the buffer for
1234 that purpose, then after completion of the token it would be wise to
1235 explicitly discard the now-unneeded earlier lines, to avoid future
1236 multi-line tokens growing the buffer without bound.
1242 Perl_lex_discard_to(pTHX_ char *ptr)
1246 PERL_ARGS_ASSERT_LEX_DISCARD_TO;
1247 buf = SvPVX(PL_parser->linestr);
1249 Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_discard_to");
1252 if (ptr > PL_parser->bufptr)
1253 Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_discard_to");
1254 discard_len = ptr - buf;
1255 if (PL_parser->oldbufptr < ptr)
1256 PL_parser->oldbufptr = ptr;
1257 if (PL_parser->oldoldbufptr < ptr)
1258 PL_parser->oldoldbufptr = ptr;
1259 if (PL_parser->last_uni && PL_parser->last_uni < ptr)
1260 PL_parser->last_uni = NULL;
1261 if (PL_parser->last_lop && PL_parser->last_lop < ptr)
1262 PL_parser->last_lop = NULL;
1263 Move(ptr, buf, PL_parser->bufend+1-ptr, char);
1264 SvCUR_set(PL_parser->linestr, SvCUR(PL_parser->linestr) - discard_len);
1265 PL_parser->bufend -= discard_len;
1266 PL_parser->bufptr -= discard_len;
1267 PL_parser->oldbufptr -= discard_len;
1268 PL_parser->oldoldbufptr -= discard_len;
1269 if (PL_parser->last_uni)
1270 PL_parser->last_uni -= discard_len;
1271 if (PL_parser->last_lop)
1272 PL_parser->last_lop -= discard_len;
1276 =for apidoc Amx|bool|lex_next_chunk|U32 flags
1278 Reads in the next chunk of text to be lexed, appending it to
1279 L</PL_parser-E<gt>linestr>. This should be called when lexing code has
1280 looked to the end of the current chunk and wants to know more. It is
1281 usual, but not necessary, for lexing to have consumed the entirety of
1282 the current chunk at this time.
1284 If L</PL_parser-E<gt>bufptr> is pointing to the very end of the current
1285 chunk (i.e., the current chunk has been entirely consumed), normally the
1286 current chunk will be discarded at the same time that the new chunk is
1287 read in. If C<flags> has the C<LEX_KEEP_PREVIOUS> bit set, the current chunk
1288 will not be discarded. If the current chunk has not been entirely
1289 consumed, then it will not be discarded regardless of the flag.
1291 Returns true if some new text was added to the buffer, or false if the
1292 buffer has reached the end of the input text.
1297 #define LEX_FAKE_EOF 0x80000000
1298 #define LEX_NO_TERM 0x40000000 /* here-doc */
1301 Perl_lex_next_chunk(pTHX_ U32 flags)
1305 STRLEN old_bufend_pos, new_bufend_pos;
1306 STRLEN bufptr_pos, oldbufptr_pos, oldoldbufptr_pos;
1307 STRLEN linestart_pos, last_uni_pos, last_lop_pos;
1308 bool got_some_for_debugger = 0;
1310 const U8* first_bad_char_loc;
1312 if (flags & ~(LEX_KEEP_PREVIOUS|LEX_FAKE_EOF|LEX_NO_TERM))
1313 Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_next_chunk");
1314 if (!(flags & LEX_NO_TERM) && PL_lex_inwhat)
1316 linestr = PL_parser->linestr;
1317 buf = SvPVX(linestr);
1318 if (!(flags & LEX_KEEP_PREVIOUS)
1319 && PL_parser->bufptr == PL_parser->bufend)
1321 old_bufend_pos = bufptr_pos = oldbufptr_pos = oldoldbufptr_pos = 0;
1323 if (PL_parser->last_uni != PL_parser->bufend)
1324 PL_parser->last_uni = NULL;
1325 if (PL_parser->last_lop != PL_parser->bufend)
1326 PL_parser->last_lop = NULL;
1327 last_uni_pos = last_lop_pos = 0;
1331 old_bufend_pos = PL_parser->bufend - buf;
1332 bufptr_pos = PL_parser->bufptr - buf;
1333 oldbufptr_pos = PL_parser->oldbufptr - buf;
1334 oldoldbufptr_pos = PL_parser->oldoldbufptr - buf;
1335 linestart_pos = PL_parser->linestart - buf;
1336 last_uni_pos = PL_parser->last_uni ? PL_parser->last_uni - buf : 0;
1337 last_lop_pos = PL_parser->last_lop ? PL_parser->last_lop - buf : 0;
1339 if (flags & LEX_FAKE_EOF) {
1341 } else if (!PL_parser->rsfp && !PL_parser->filtered) {
1343 } else if (filter_gets(linestr, old_bufend_pos)) {
1345 got_some_for_debugger = 1;
1346 } else if (flags & LEX_NO_TERM) {
1349 if (!SvPOK(linestr)) /* can get undefined by filter_gets */
1352 /* End of real input. Close filehandle (unless it was STDIN),
1353 * then add implicit termination.
1355 if (PL_parser->lex_flags & LEX_DONT_CLOSE_RSFP)
1356 PerlIO_clearerr(PL_parser->rsfp);
1357 else if (PL_parser->rsfp)
1358 (void)PerlIO_close(PL_parser->rsfp);
1359 PL_parser->rsfp = NULL;
1360 PL_parser->in_pod = PL_parser->filtered = 0;
1361 if (!PL_in_eval && PL_minus_p) {
1363 /*{*/";}continue{print or die qq(-p destination: $!\\n);}");
1364 PL_minus_n = PL_minus_p = 0;
1365 } else if (!PL_in_eval && PL_minus_n) {
1366 sv_catpvs(linestr, /*{*/";}");
1369 sv_catpvs(linestr, ";");
1372 buf = SvPVX(linestr);
1373 new_bufend_pos = SvCUR(linestr);
1374 PL_parser->bufend = buf + new_bufend_pos;
1375 PL_parser->bufptr = buf + bufptr_pos;
1377 if (UTF && ! is_utf8_string_loc((U8 *) PL_parser->bufptr,
1378 PL_parser->bufend - PL_parser->bufptr,
1379 &first_bad_char_loc))
1381 _force_out_malformed_utf8_message(first_bad_char_loc,
1382 (U8 *) PL_parser->bufend,
1384 1 /* 1 means die */ );
1385 NOT_REACHED; /* NOTREACHED */
1388 PL_parser->oldbufptr = buf + oldbufptr_pos;
1389 PL_parser->oldoldbufptr = buf + oldoldbufptr_pos;
1390 PL_parser->linestart = buf + linestart_pos;
1391 if (PL_parser->last_uni)
1392 PL_parser->last_uni = buf + last_uni_pos;
1393 if (PL_parser->last_lop)
1394 PL_parser->last_lop = buf + last_lop_pos;
1395 if (PL_parser->preambling != NOLINE) {
1396 CopLINE_set(PL_curcop, PL_parser->preambling + 1);
1397 PL_parser->preambling = NOLINE;
1399 if ( got_some_for_debugger
1400 && PERLDB_LINE_OR_SAVESRC
1401 && PL_curstash != PL_debstash)
1403 /* debugger active and we're not compiling the debugger code,
1404 * so store the line into the debugger's array of lines
1406 update_debugger_info(NULL, buf+old_bufend_pos,
1407 new_bufend_pos-old_bufend_pos);
1413 =for apidoc Amx|I32|lex_peek_unichar|U32 flags
1415 Looks ahead one (Unicode) character in the text currently being lexed.
1416 Returns the codepoint (unsigned integer value) of the next character,
1417 or -1 if lexing has reached the end of the input text. To consume the
1418 peeked character, use L</lex_read_unichar>.
1420 If the next character is in (or extends into) the next chunk of input
1421 text, the next chunk will be read in. Normally the current chunk will be
1422 discarded at the same time, but if C<flags> has the C<LEX_KEEP_PREVIOUS>
1423 bit set, then the current chunk will not be discarded.
1425 If the input is being interpreted as UTF-8 and a UTF-8 encoding error
1426 is encountered, an exception is generated.
1432 Perl_lex_peek_unichar(pTHX_ U32 flags)
1436 if (flags & ~(LEX_KEEP_PREVIOUS))
1437 Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_peek_unichar");
1438 s = PL_parser->bufptr;
1439 bufend = PL_parser->bufend;
1445 if (!lex_next_chunk(flags))
1447 s = PL_parser->bufptr;
1448 bufend = PL_parser->bufend;
1451 if (UTF8_IS_INVARIANT(head))
1453 if (UTF8_IS_START(head)) {
1454 len = UTF8SKIP(&head);
1455 while ((STRLEN)(bufend-s) < len) {
1456 if (!lex_next_chunk(flags | LEX_KEEP_PREVIOUS))
1458 s = PL_parser->bufptr;
1459 bufend = PL_parser->bufend;
1462 unichar = utf8n_to_uvchr((U8*)s, bufend-s, &retlen, UTF8_CHECK_ONLY);
1463 if (retlen == (STRLEN)-1) {
1464 _force_out_malformed_utf8_message((U8 *) s,
1467 1 /* 1 means die */ );
1468 NOT_REACHED; /* NOTREACHED */
1473 if (!lex_next_chunk(flags))
1475 s = PL_parser->bufptr;
1482 =for apidoc Amx|I32|lex_read_unichar|U32 flags
1484 Reads the next (Unicode) character in the text currently being lexed.
1485 Returns the codepoint (unsigned integer value) of the character read,
1486 and moves L</PL_parser-E<gt>bufptr> past the character, or returns -1
1487 if lexing has reached the end of the input text. To non-destructively
1488 examine the next character, use L</lex_peek_unichar> instead.
1490 If the next character is in (or extends into) the next chunk of input
1491 text, the next chunk will be read in. Normally the current chunk will be
1492 discarded at the same time, but if C<flags> has the C<LEX_KEEP_PREVIOUS>
1493 bit set, then the current chunk will not be discarded.
1495 If the input is being interpreted as UTF-8 and a UTF-8 encoding error
1496 is encountered, an exception is generated.
1502 Perl_lex_read_unichar(pTHX_ U32 flags)
1505 if (flags & ~(LEX_KEEP_PREVIOUS))
1506 Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_read_unichar");
1507 c = lex_peek_unichar(flags);
1510 COPLINE_INC_WITH_HERELINES;
1512 PL_parser->bufptr += UTF8SKIP(PL_parser->bufptr);
1514 ++(PL_parser->bufptr);
1520 =for apidoc Amx|void|lex_read_space|U32 flags
1522 Reads optional spaces, in Perl style, in the text currently being
1523 lexed. The spaces may include ordinary whitespace characters and
1524 Perl-style comments. C<#line> directives are processed if encountered.
1525 L</PL_parser-E<gt>bufptr> is moved past the spaces, so that it points
1526 at a non-space character (or the end of the input text).
1528 If spaces extend into the next chunk of input text, the next chunk will
1529 be read in. Normally the current chunk will be discarded at the same
1530 time, but if C<flags> has the C<LEX_KEEP_PREVIOUS> bit set, then the current
1531 chunk will not be discarded.
1536 #define LEX_NO_INCLINE 0x40000000
1537 #define LEX_NO_NEXT_CHUNK 0x80000000
1540 Perl_lex_read_space(pTHX_ U32 flags)
1543 const bool can_incline = !(flags & LEX_NO_INCLINE);
1544 bool need_incline = 0;
1545 if (flags & ~(LEX_KEEP_PREVIOUS|LEX_NO_NEXT_CHUNK|LEX_NO_INCLINE))
1546 Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_read_space");
1547 s = PL_parser->bufptr;
1548 bufend = PL_parser->bufend;
1554 } while (!(c == '\n' || (c == 0 && s == bufend)));
1555 } else if (c == '\n') {
1558 PL_parser->linestart = s;
1564 } else if (isSPACE(c)) {
1566 } else if (c == 0 && s == bufend) {
1569 if (flags & LEX_NO_NEXT_CHUNK)
1571 PL_parser->bufptr = s;
1572 l = CopLINE(PL_curcop);
1573 CopLINE(PL_curcop) += PL_parser->herelines + 1;
1574 got_more = lex_next_chunk(flags);
1575 CopLINE_set(PL_curcop, l);
1576 s = PL_parser->bufptr;
1577 bufend = PL_parser->bufend;
1580 if (can_incline && need_incline && PL_parser->rsfp) {
1590 PL_parser->bufptr = s;
1595 =for apidoc EXMp|bool|validate_proto|SV *name|SV *proto|bool warn
1597 This function performs syntax checking on a prototype, C<proto>.
1598 If C<warn> is true, any illegal characters or mismatched brackets
1599 will trigger illegalproto warnings, declaring that they were
1600 detected in the prototype for C<name>.
1602 The return value is C<true> if this is a valid prototype, and
1603 C<false> if it is not, regardless of whether C<warn> was C<true> or
1606 Note that C<NULL> is a valid C<proto> and will always return C<true>.
1613 Perl_validate_proto(pTHX_ SV *name, SV *proto, bool warn)
1615 STRLEN len, origlen;
1617 bool bad_proto = FALSE;
1618 bool in_brackets = FALSE;
1619 bool after_slash = FALSE;
1620 char greedy_proto = ' ';
1621 bool proto_after_greedy_proto = FALSE;
1622 bool must_be_last = FALSE;
1623 bool underscore = FALSE;
1624 bool bad_proto_after_underscore = FALSE;
1626 PERL_ARGS_ASSERT_VALIDATE_PROTO;
1631 p = SvPV(proto, len);
1633 for (; len--; p++) {
1636 proto_after_greedy_proto = TRUE;
1638 if (!strchr(";@%", *p))
1639 bad_proto_after_underscore = TRUE;
1642 if (!strchr("$@%*;[]&\\_+", *p) || *p == '\0') {
1649 in_brackets = FALSE;
1650 else if ((*p == '@' || *p == '%')
1654 must_be_last = TRUE;
1663 after_slash = FALSE;
1668 SV *tmpsv = newSVpvs_flags("", SVs_TEMP);
1671 ? sv_uni_display(tmpsv, newSVpvn_flags(p, origlen, SVs_TEMP | SVf_UTF8),
1672 origlen, UNI_DISPLAY_ISPRINT)
1673 : pv_pretty(tmpsv, p, origlen, 60, NULL, NULL, PERL_PV_ESCAPE_NONASCII);
1675 if (proto_after_greedy_proto)
1676 Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO),
1677 "Prototype after '%c' for %" SVf " : %s",
1678 greedy_proto, SVfARG(name), p);
1680 Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO),
1681 "Missing ']' in prototype for %" SVf " : %s",
1684 Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO),
1685 "Illegal character in prototype for %" SVf " : %s",
1687 if (bad_proto_after_underscore)
1688 Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO),
1689 "Illegal character after '_' in prototype for %" SVf " : %s",
1693 return (! (proto_after_greedy_proto || bad_proto) );
1698 * This subroutine has nothing to do with tilting, whether at windmills
1699 * or pinball tables. Its name is short for "increment line". It
1700 * increments the current line number in CopLINE(PL_curcop) and checks
1701 * to see whether the line starts with a comment of the form
1702 * # line 500 "foo.pm"
1703 * If so, it sets the current line number and file to the values in the comment.
1707 S_incline(pTHX_ const char *s)
1715 PERL_ARGS_ASSERT_INCLINE;
1717 COPLINE_INC_WITH_HERELINES;
1718 if (!PL_rsfp && !PL_parser->filtered && PL_lex_state == LEX_NORMAL
1719 && s+1 == PL_bufend && *s == ';') {
1720 /* fake newline in string eval */
1721 CopLINE_dec(PL_curcop);
1726 while (SPACE_OR_TAB(*s))
1728 if (strEQs(s, "line"))
1732 if (SPACE_OR_TAB(*s))
1736 while (SPACE_OR_TAB(*s))
1744 if (!SPACE_OR_TAB(*s) && *s != '\r' && *s != '\n' && *s != '\0')
1746 while (SPACE_OR_TAB(*s))
1748 if (*s == '"' && (t = strchr(s+1, '"'))) {
1754 while (*t && !isSPACE(*t))
1758 while (SPACE_OR_TAB(*e) || *e == '\r' || *e == '\f')
1760 if (*e != '\n' && *e != '\0')
1761 return; /* false alarm */
1763 if (!grok_atoUV(n, &uv, &e))
1765 line_num = ((line_t)uv) - 1;
1768 const STRLEN len = t - s;
1770 if (!PL_rsfp && !PL_parser->filtered) {
1771 /* must copy *{"::_<(eval N)[oldfilename:L]"}
1772 * to *{"::_<newfilename"} */
1773 /* However, the long form of evals is only turned on by the
1774 debugger - usually they're "(eval %lu)" */
1775 GV * const cfgv = CopFILEGV(PL_curcop);
1778 STRLEN tmplen2 = len;
1782 if (tmplen2 + 2 <= sizeof smallbuf)
1785 Newx(tmpbuf2, tmplen2 + 2, char);
1790 memcpy(tmpbuf2 + 2, s, tmplen2);
1793 gv2 = *(GV**)hv_fetch(PL_defstash, tmpbuf2, tmplen2, TRUE);
1795 gv_init(gv2, PL_defstash, tmpbuf2, tmplen2, FALSE);
1796 /* adjust ${"::_<newfilename"} to store the new file name */
1797 GvSV(gv2) = newSVpvn(tmpbuf2 + 2, tmplen2 - 2);
1798 /* The line number may differ. If that is the case,
1799 alias the saved lines that are in the array.
1800 Otherwise alias the whole array. */
1801 if (CopLINE(PL_curcop) == line_num) {
1802 GvHV(gv2) = MUTABLE_HV(SvREFCNT_inc(GvHV(cfgv)));
1803 GvAV(gv2) = MUTABLE_AV(SvREFCNT_inc(GvAV(cfgv)));
1805 else if (GvAV(cfgv)) {
1806 AV * const av = GvAV(cfgv);
1807 const I32 start = CopLINE(PL_curcop)+1;
1808 I32 items = AvFILLp(av) - start;
1810 AV * const av2 = GvAVn(gv2);
1811 SV **svp = AvARRAY(av) + start;
1812 I32 l = (I32)line_num+1;
1814 av_store(av2, l++, SvREFCNT_inc(*svp++));
1819 if (tmpbuf2 != smallbuf) Safefree(tmpbuf2);
1822 CopFILE_free(PL_curcop);
1823 CopFILE_setn(PL_curcop, s, len);
1825 CopLINE_set(PL_curcop, line_num);
1829 S_update_debugger_info(pTHX_ SV *orig_sv, const char *const buf, STRLEN len)
1831 AV *av = CopFILEAVx(PL_curcop);
1834 if (PL_parser->preambling == NOLINE) sv = newSV_type(SVt_PVMG);
1836 sv = *av_fetch(av, 0, 1);
1837 SvUPGRADE(sv, SVt_PVMG);
1839 if (!SvPOK(sv)) SvPVCLEAR(sv);
1841 sv_catsv(sv, orig_sv);
1843 sv_catpvn(sv, buf, len);
1848 if (PL_parser->preambling == NOLINE)
1849 av_store(av, CopLINE(PL_curcop), sv);
1855 * Called to gobble the appropriate amount and type of whitespace.
1856 * Skips comments as well.
1857 * Returns the next character after the whitespace that is skipped.
1860 * Same thing, but look ahead without incrementing line numbers or
1861 * adjusting PL_linestart.
1864 #define skipspace(s) skipspace_flags(s, 0)
1865 #define peekspace(s) skipspace_flags(s, LEX_NO_INCLINE)
1868 S_skipspace_flags(pTHX_ char *s, U32 flags)
1870 PERL_ARGS_ASSERT_SKIPSPACE_FLAGS;
1871 if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) {
1872 while (s < PL_bufend && (SPACE_OR_TAB(*s) || !*s))
1875 STRLEN bufptr_pos = PL_bufptr - SvPVX(PL_linestr);
1877 lex_read_space(flags | LEX_KEEP_PREVIOUS |
1878 (PL_lex_inwhat || PL_lex_state == LEX_FORMLINE ?
1879 LEX_NO_NEXT_CHUNK : 0));
1881 PL_bufptr = SvPVX(PL_linestr) + bufptr_pos;
1882 if (PL_linestart > PL_bufptr)
1883 PL_bufptr = PL_linestart;
1891 * Check the unary operators to ensure there's no ambiguity in how they're
1892 * used. An ambiguous piece of code would be:
1894 * This doesn't mean rand() + 5. Because rand() is a unary operator,
1895 * the +5 is its argument.
1904 if (PL_oldoldbufptr != PL_last_uni)
1906 while (isSPACE(*PL_last_uni))
1909 while (isWORDCHAR_lazy_if_safe(s, PL_bufend, UTF) || *s == '-')
1910 s += UTF ? UTF8SKIP(s) : 1;
1911 if ((t = strchr(s, '(')) && t < PL_bufptr)
1914 Perl_ck_warner_d(aTHX_ packWARN(WARN_AMBIGUOUS),
1915 "Warning: Use of \"%" UTF8f "\" without parentheses is ambiguous",
1916 UTF8fARG(UTF, (int)(s - PL_last_uni), PL_last_uni));
1920 * LOP : macro to build a list operator. Its behaviour has been replaced
1921 * with a subroutine, S_lop() for which LOP is just another name.
1924 #define LOP(f,x) return lop(f,x,s)
1928 * Build a list operator (or something that might be one). The rules:
1929 * - if we have a next token, then it's a list operator (no parens) for
1930 * which the next token has already been parsed; e.g.,
1933 * - if the next thing is an opening paren, then it's a function
1934 * - else it's a list operator
1938 S_lop(pTHX_ I32 f, U8 x, char *s)
1940 PERL_ARGS_ASSERT_LOP;
1945 PL_last_lop = PL_oldbufptr;
1946 PL_last_lop_op = (OPCODE)f;
1951 return REPORT(FUNC);
1954 return REPORT(FUNC);
1957 if (!PL_lex_allbrackets && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC)
1958 PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC;
1959 return REPORT(LSTOP);
1965 * When the lexer realizes it knows the next token (for instance,
1966 * it is reordering tokens for the parser) then it can call S_force_next
1967 * to know what token to return the next time the lexer is called. Caller
1968 * will need to set PL_nextval[] and possibly PL_expect to ensure
1969 * the lexer handles the token correctly.
1973 S_force_next(pTHX_ I32 type)
1977 PerlIO_printf(Perl_debug_log, "### forced token:\n");
1978 tokereport(type, &NEXTVAL_NEXTTOKE);
1981 assert(PL_nexttoke < C_ARRAY_LENGTH(PL_nexttype));
1982 PL_nexttype[PL_nexttoke] = type;
1989 * This subroutine handles postfix deref syntax after the arrow has already
1990 * been emitted. @* $* etc. are emitted as two separate token right here.
1991 * @[ @{ %[ %{ *{ are emitted also as two tokens, but this function emits
1992 * only the first, leaving yylex to find the next.
1996 S_postderef(pTHX_ int const funny, char const next)
1998 assert(funny == DOLSHARP || strchr("$@%&*", funny));
2000 PL_expect = XOPERATOR;
2001 if (PL_lex_state == LEX_INTERPNORMAL && !PL_lex_brackets) {
2002 assert('@' == funny || '$' == funny || DOLSHARP == funny);
2003 PL_lex_state = LEX_INTERPEND;
2005 force_next(POSTJOIN);
2011 if ('@' == funny && PL_lex_state == LEX_INTERPNORMAL
2012 && !PL_lex_brackets)
2014 PL_expect = XOPERATOR;
2023 int yyc = PL_parser->yychar;
2024 if (yyc != YYEMPTY) {
2026 NEXTVAL_NEXTTOKE = PL_parser->yylval;
2027 if (yyc == '{'/*}*/ || yyc == HASHBRACK || yyc == '['/*]*/) {
2028 PL_lex_allbrackets--;
2030 yyc |= (3<<24) | (PL_lex_brackstack[PL_lex_brackets] << 16);
2031 } else if (yyc == '('/*)*/) {
2032 PL_lex_allbrackets--;
2037 PL_parser->yychar = YYEMPTY;
2042 S_newSV_maybe_utf8(pTHX_ const char *const start, STRLEN len)
2044 SV * const sv = newSVpvn_utf8(start, len,
2047 && !is_utf8_invariant_string((const U8*)start, len)
2048 && is_utf8_string((const U8*)start, len));
2054 * When the lexer knows the next thing is a word (for instance, it has
2055 * just seen -> and it knows that the next char is a word char, then
2056 * it calls S_force_word to stick the next word into the PL_nexttoke/val
2060 * char *start : buffer position (must be within PL_linestr)
2061 * int token : PL_next* will be this type of bare word
2062 * (e.g., METHOD,BAREWORD)
2063 * int check_keyword : if true, Perl checks to make sure the word isn't
2064 * a keyword (do this if the word is a label, e.g. goto FOO)
2065 * int allow_pack : if true, : characters will also be allowed (require,
2066 * use, etc. do this)
2070 S_force_word(pTHX_ char *start, int token, int check_keyword, int allow_pack)
2075 PERL_ARGS_ASSERT_FORCE_WORD;
2077 start = skipspace(start);
2079 if ( isIDFIRST_lazy_if_safe(s, PL_bufend, UTF)
2080 || (allow_pack && *s == ':' && s[1] == ':') )
2082 s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, allow_pack, &len);
2083 if (check_keyword) {
2084 char *s2 = PL_tokenbuf;
2086 if (allow_pack && len > 6 && strEQs(s2, "CORE::"))
2088 if (keyword(s2, len2, 0))
2091 if (token == METHOD) {
2096 PL_expect = XOPERATOR;
2099 NEXTVAL_NEXTTOKE.opval
2100 = newSVOP(OP_CONST,0,
2101 S_newSV_maybe_utf8(aTHX_ PL_tokenbuf, len));
2102 NEXTVAL_NEXTTOKE.opval->op_private |= OPpCONST_BARE;
2110 * Called when the lexer wants $foo *foo &foo etc, but the program
2111 * text only contains the "foo" portion. The first argument is a pointer
2112 * to the "foo", and the second argument is the type symbol to prefix.
2113 * Forces the next token to be a "BAREWORD".
2114 * Creates the symbol if it didn't already exist (via gv_fetchpv()).
2118 S_force_ident(pTHX_ const char *s, int kind)
2120 PERL_ARGS_ASSERT_FORCE_IDENT;
2123 const STRLEN len = s[1] ? strlen(s) : 1; /* s = "\"" see yylex */
2124 OP* const o = newSVOP(OP_CONST, 0, newSVpvn_flags(s, len,
2125 UTF ? SVf_UTF8 : 0));
2126 NEXTVAL_NEXTTOKE.opval = o;
2127 force_next(BAREWORD);
2129 o->op_private = OPpCONST_ENTERED;
2130 /* XXX see note in pp_entereval() for why we forgo typo
2131 warnings if the symbol must be introduced in an eval.
2133 gv_fetchpvn_flags(s, len,
2134 (PL_in_eval ? GV_ADDMULTI
2135 : GV_ADD) | ( UTF ? SVf_UTF8 : 0 ),
2136 kind == '$' ? SVt_PV :
2137 kind == '@' ? SVt_PVAV :
2138 kind == '%' ? SVt_PVHV :
2146 S_force_ident_maybe_lex(pTHX_ char pit)
2148 NEXTVAL_NEXTTOKE.ival = pit;
2153 Perl_str_to_version(pTHX_ SV *sv)
2158 const char *start = SvPV_const(sv,len);
2159 const char * const end = start + len;
2160 const bool utf = cBOOL(SvUTF8(sv));
2162 PERL_ARGS_ASSERT_STR_TO_VERSION;
2164 while (start < end) {
2168 n = utf8n_to_uvchr((U8*)start, len, &skip, 0);
2173 retval += ((NV)n)/nshift;
2182 * Forces the next token to be a version number.
2183 * If the next token appears to be an invalid version number, (e.g. "v2b"),
2184 * and if "guessing" is TRUE, then no new token is created (and the caller
2185 * must use an alternative parsing method).
2189 S_force_version(pTHX_ char *s, int guessing)
2194 PERL_ARGS_ASSERT_FORCE_VERSION;
2202 while (isDIGIT(*d) || *d == '_' || *d == '.')
2204 if (*d == ';' || isSPACE(*d) || *d == '{' || *d == '}' || !*d) {
2206 s = scan_num(s, &pl_yylval);
2207 version = pl_yylval.opval;
2208 ver = cSVOPx(version)->op_sv;
2209 if (SvPOK(ver) && !SvNIOK(ver)) {
2210 SvUPGRADE(ver, SVt_PVNV);
2211 SvNV_set(ver, str_to_version(ver));
2212 SvNOK_on(ver); /* hint that it is a version */
2215 else if (guessing) {
2220 /* NOTE: The parser sees the package name and the VERSION swapped */
2221 NEXTVAL_NEXTTOKE.opval = version;
2222 force_next(BAREWORD);
2228 * S_force_strict_version
2229 * Forces the next token to be a version number using strict syntax rules.
2233 S_force_strict_version(pTHX_ char *s)
2236 const char *errstr = NULL;
2238 PERL_ARGS_ASSERT_FORCE_STRICT_VERSION;
2240 while (isSPACE(*s)) /* leading whitespace */
2243 if (is_STRICT_VERSION(s,&errstr)) {
2245 s = (char *)scan_version(s, ver, 0);
2246 version = newSVOP(OP_CONST, 0, ver);
2248 else if ((*s != ';' && *s != '{' && *s != '}' )
2249 && (s = skipspace(s), (*s != ';' && *s != '{' && *s != '}' )))
2253 yyerror(errstr); /* version required */
2257 /* NOTE: The parser sees the package name and the VERSION swapped */
2258 NEXTVAL_NEXTTOKE.opval = version;
2259 force_next(BAREWORD);
2266 * Tokenize a quoted string passed in as an SV. It finds the next
2267 * chunk, up to end of string or a backslash. It may make a new
2268 * SV containing that chunk (if HINT_NEW_STRING is on). It also
2273 S_tokeq(pTHX_ SV *sv)
2280 PERL_ARGS_ASSERT_TOKEQ;
2284 assert (!SvIsCOW(sv));
2285 if (SvTYPE(sv) >= SVt_PVIV && SvIVX(sv) == -1) /* <<'heredoc' */
2289 /* This is relying on the SV being "well formed" with a trailing '\0' */
2290 while (s < send && !(*s == '\\' && s[1] == '\\'))
2295 if ( PL_hints & HINT_NEW_STRING ) {
2296 pv = newSVpvn_flags(SvPVX_const(pv), SvCUR(sv),
2297 SVs_TEMP | SvUTF8(sv));
2301 if (s + 1 < send && (s[1] == '\\'))
2302 s++; /* all that, just for this */
2307 SvCUR_set(sv, d - SvPVX_const(sv));
2309 if ( PL_hints & HINT_NEW_STRING )
2310 return new_constant(NULL, 0, "q", sv, pv, "q", 1);
2315 * Now come three functions related to double-quote context,
2316 * S_sublex_start, S_sublex_push, and S_sublex_done. They're used when
2317 * converting things like "\u\Lgnat" into ucfirst(lc("gnat")). They
2318 * interact with PL_lex_state, and create fake ( ... ) argument lists
2319 * to handle functions and concatenation.
2323 * stringify ( const[foo] concat lcfirst ( const[bar] ) )
2328 * Assumes that pl_yylval.ival is the op we're creating (e.g. OP_LCFIRST).
2330 * Pattern matching will set PL_lex_op to the pattern-matching op to
2331 * make (we return THING if pl_yylval.ival is OP_NULL, PMFUNC otherwise).
2333 * OP_CONST is easy--just make the new op and return.
2335 * Everything else becomes a FUNC.
2337 * Sets PL_lex_state to LEX_INTERPPUSH unless ival was OP_NULL or we
2338 * had an OP_CONST. This just sets us up for a
2339 * call to S_sublex_push().
2343 S_sublex_start(pTHX)
2345 const I32 op_type = pl_yylval.ival;
2347 if (op_type == OP_NULL) {
2348 pl_yylval.opval = PL_lex_op;
2352 if (op_type == OP_CONST) {
2353 SV *sv = PL_lex_stuff;
2354 PL_lex_stuff = NULL;
2357 if (SvTYPE(sv) == SVt_PVIV) {
2358 /* Overloaded constants, nothing fancy: Convert to SVt_PV: */
2360 const char * const p = SvPV_const(sv, len);
2361 SV * const nsv = newSVpvn_flags(p, len, SvUTF8(sv));
2365 pl_yylval.opval = newSVOP(op_type, 0, sv);
2369 PL_parser->lex_super_state = PL_lex_state;
2370 PL_parser->lex_sub_inwhat = (U16)op_type;
2371 PL_parser->lex_sub_op = PL_lex_op;
2372 PL_lex_state = LEX_INTERPPUSH;
2376 pl_yylval.opval = PL_lex_op;
2386 * Create a new scope to save the lexing state. The scope will be
2387 * ended in S_sublex_done. Returns a '(', starting the function arguments
2388 * to the uc, lc, etc. found before.
2389 * Sets PL_lex_state to LEX_INTERPCONCAT.
2396 const bool is_heredoc = PL_multi_close == '<';
2399 PL_lex_state = PL_parser->lex_super_state;
2400 SAVEI8(PL_lex_dojoin);
2401 SAVEI32(PL_lex_brackets);
2402 SAVEI32(PL_lex_allbrackets);
2403 SAVEI32(PL_lex_formbrack);
2404 SAVEI8(PL_lex_fakeeof);
2405 SAVEI32(PL_lex_casemods);
2406 SAVEI32(PL_lex_starts);
2407 SAVEI8(PL_lex_state);
2408 SAVESPTR(PL_lex_repl);
2409 SAVEVPTR(PL_lex_inpat);
2410 SAVEI16(PL_lex_inwhat);
2413 SAVECOPLINE(PL_curcop);
2414 SAVEI32(PL_multi_end);
2415 SAVEI32(PL_parser->herelines);
2416 PL_parser->herelines = 0;
2418 SAVEIV(PL_multi_close);
2419 SAVEPPTR(PL_bufptr);
2420 SAVEPPTR(PL_bufend);
2421 SAVEPPTR(PL_oldbufptr);
2422 SAVEPPTR(PL_oldoldbufptr);
2423 SAVEPPTR(PL_last_lop);
2424 SAVEPPTR(PL_last_uni);
2425 SAVEPPTR(PL_linestart);
2426 SAVESPTR(PL_linestr);
2427 SAVEGENERICPV(PL_lex_brackstack);
2428 SAVEGENERICPV(PL_lex_casestack);
2429 SAVEGENERICPV(PL_parser->lex_shared);
2430 SAVEBOOL(PL_parser->lex_re_reparsing);
2431 SAVEI32(PL_copline);
2433 /* The here-doc parser needs to be able to peek into outer lexing
2434 scopes to find the body of the here-doc. So we put PL_linestr and
2435 PL_bufptr into lex_shared, to ‘share’ those values.
2437 PL_parser->lex_shared->ls_linestr = PL_linestr;
2438 PL_parser->lex_shared->ls_bufptr = PL_bufptr;
2440 PL_linestr = PL_lex_stuff;
2441 PL_lex_repl = PL_parser->lex_sub_repl;
2442 PL_lex_stuff = NULL;
2443 PL_parser->lex_sub_repl = NULL;
2445 /* Arrange for PL_lex_stuff to be freed on scope exit, in case it gets
2446 set for an inner quote-like operator and then an error causes scope-
2447 popping. We must not have a PL_lex_stuff value left dangling, as
2448 that breaks assumptions elsewhere. See bug #123617. */
2449 SAVEGENERICSV(PL_lex_stuff);
2450 SAVEGENERICSV(PL_parser->lex_sub_repl);
2452 PL_bufend = PL_bufptr = PL_oldbufptr = PL_oldoldbufptr = PL_linestart
2453 = SvPVX(PL_linestr);
2454 PL_bufend += SvCUR(PL_linestr);
2455 PL_last_lop = PL_last_uni = NULL;
2456 SAVEFREESV(PL_linestr);
2457 if (PL_lex_repl) SAVEFREESV(PL_lex_repl);
2459 PL_lex_dojoin = FALSE;
2460 PL_lex_brackets = PL_lex_formbrack = 0;
2461 PL_lex_allbrackets = 0;
2462 PL_lex_fakeeof = LEX_FAKEEOF_NEVER;
2463 Newx(PL_lex_brackstack, 120, char);
2464 Newx(PL_lex_casestack, 12, char);
2465 PL_lex_casemods = 0;
2466 *PL_lex_casestack = '\0';
2468 PL_lex_state = LEX_INTERPCONCAT;
2470 CopLINE_set(PL_curcop, (line_t)PL_multi_start);
2471 PL_copline = NOLINE;
2473 Newxz(shared, 1, LEXSHARED);
2474 shared->ls_prev = PL_parser->lex_shared;
2475 PL_parser->lex_shared = shared;
2477 PL_lex_inwhat = PL_parser->lex_sub_inwhat;
2478 if (PL_lex_inwhat == OP_TRANSR) PL_lex_inwhat = OP_TRANS;
2479 if (PL_lex_inwhat == OP_MATCH || PL_lex_inwhat == OP_QR || PL_lex_inwhat == OP_SUBST)
2480 PL_lex_inpat = PL_parser->lex_sub_op;
2482 PL_lex_inpat = NULL;
2484 PL_parser->lex_re_reparsing = cBOOL(PL_in_eval & EVAL_RE_REPARSING);
2485 PL_in_eval &= ~EVAL_RE_REPARSING;
2492 * Restores lexer state after a S_sublex_push.
2498 if (!PL_lex_starts++) {
2499 SV * const sv = newSVpvs("");
2500 if (SvUTF8(PL_linestr))
2502 PL_expect = XOPERATOR;
2503 pl_yylval.opval = newSVOP(OP_CONST, 0, sv);
2507 if (PL_lex_casemods) { /* oops, we've got some unbalanced parens */
2508 PL_lex_state = LEX_INTERPCASEMOD;
2512 /* Is there a right-hand side to take care of? (s//RHS/ or tr//RHS/) */
2513 assert(PL_lex_inwhat != OP_TRANSR);
2515 assert (PL_lex_inwhat == OP_SUBST || PL_lex_inwhat == OP_TRANS);
2516 PL_linestr = PL_lex_repl;
2518 PL_bufend = PL_bufptr = PL_oldbufptr = PL_oldoldbufptr = PL_linestart = SvPVX(PL_linestr);
2519 PL_bufend += SvCUR(PL_linestr);
2520 PL_last_lop = PL_last_uni = NULL;
2521 PL_lex_dojoin = FALSE;
2522 PL_lex_brackets = 0;
2523 PL_lex_allbrackets = 0;
2524 PL_lex_fakeeof = LEX_FAKEEOF_NEVER;
2525 PL_lex_casemods = 0;
2526 *PL_lex_casestack = '\0';
2528 if (SvEVALED(PL_lex_repl)) {
2529 PL_lex_state = LEX_INTERPNORMAL;
2531 /* we don't clear PL_lex_repl here, so that we can check later
2532 whether this is an evalled subst; that means we rely on the
2533 logic to ensure sublex_done() is called again only via the
2534 branch (in yylex()) that clears PL_lex_repl, else we'll loop */
2537 PL_lex_state = LEX_INTERPCONCAT;
2540 if (SvTYPE(PL_linestr) >= SVt_PVNV) {
2541 CopLINE(PL_curcop) +=
2542 ((XPVNV*)SvANY(PL_linestr))->xnv_u.xnv_lines
2543 + PL_parser->herelines;
2544 PL_parser->herelines = 0;
2549 const line_t l = CopLINE(PL_curcop);
2551 if (PL_multi_close == '<')
2552 PL_parser->herelines += l - PL_multi_end;
2553 PL_bufend = SvPVX(PL_linestr);
2554 PL_bufend += SvCUR(PL_linestr);
2555 PL_expect = XOPERATOR;
2561 S_get_and_check_backslash_N_name(pTHX_ const char* s, const char* const e)
2563 /* <s> points to first character of interior of \N{}, <e> to one beyond the
2564 * interior, hence to the "}". Finds what the name resolves to, returning
2565 * an SV* containing it; NULL if no valid one found */
2567 SV* res = newSVpvn_flags(s, e - s, UTF ? SVf_UTF8 : 0);
2574 const U8* first_bad_char_loc;
2575 const char* backslash_ptr = s - 3; /* Points to the <\> of \N{... */
2577 PERL_ARGS_ASSERT_GET_AND_CHECK_BACKSLASH_N_NAME;
2580 deprecate_fatal_in("5.28", "Unknown charname '' is deprecated");
2584 if (UTF && ! is_utf8_string_loc((U8 *) backslash_ptr,
2586 &first_bad_char_loc))
2588 _force_out_malformed_utf8_message(first_bad_char_loc,
2589 (U8 *) PL_parser->bufend,
2591 0 /* 0 means don't die */ );
2592 yyerror_pv(Perl_form(aTHX_
2593 "Malformed UTF-8 character immediately after '%.*s'",
2594 (int) (first_bad_char_loc - (U8 *) backslash_ptr), backslash_ptr),
2599 res = new_constant( NULL, 0, "charnames", res, NULL, backslash_ptr,
2600 /* include the <}> */
2601 e - backslash_ptr + 1);
2603 SvREFCNT_dec_NN(res);
2607 /* See if the charnames handler is the Perl core's, and if so, we can skip
2608 * the validation needed for a user-supplied one, as Perl's does its own
2610 table = GvHV(PL_hintgv); /* ^H */
2611 cvp = hv_fetchs(table, "charnames", FALSE);
2612 if (cvp && (cv = *cvp) && SvROK(cv) && (rv = SvRV(cv),
2613 SvTYPE(rv) == SVt_PVCV) && ((stash = CvSTASH(rv)) != NULL))
2615 const char * const name = HvNAME(stash);
2616 if (HvNAMELEN(stash) == sizeof("_charnames")-1
2617 && strEQ(name, "_charnames")) {
2622 /* Here, it isn't Perl's charname handler. We can't rely on a
2623 * user-supplied handler to validate the input name. For non-ut8 input,
2624 * look to see that the first character is legal. Then loop through the
2625 * rest checking that each is a continuation */
2627 /* This code makes the reasonable assumption that the only Latin1-range
2628 * characters that begin a character name alias are alphabetic, otherwise
2629 * would have to create a isCHARNAME_BEGIN macro */
2632 if (! isALPHAU(*s)) {
2637 if (! isCHARNAME_CONT(*s)) {
2640 if (*s == ' ' && *(s-1) == ' ') {
2647 /* Similarly for utf8. For invariants can check directly; for other
2648 * Latin1, can calculate their code point and check; otherwise use a
2650 if (UTF8_IS_INVARIANT(*s)) {
2651 if (! isALPHAU(*s)) {
2655 } else if (UTF8_IS_DOWNGRADEABLE_START(*s)) {
2656 if (! isALPHAU(EIGHT_BIT_UTF8_TO_NATIVE(*s, *(s+1)))) {
2662 if (! PL_utf8_charname_begin) {
2663 U8 flags = _CORE_SWASH_INIT_ACCEPT_INVLIST;
2664 PL_utf8_charname_begin = _core_swash_init("utf8",
2665 "_Perl_Charname_Begin",
2667 1, 0, NULL, &flags);
2669 if (! swash_fetch(PL_utf8_charname_begin, (U8 *) s, TRUE)) {
2676 if (UTF8_IS_INVARIANT(*s)) {
2677 if (! isCHARNAME_CONT(*s)) {
2680 if (*s == ' ' && *(s-1) == ' ') {
2685 else if (UTF8_IS_DOWNGRADEABLE_START(*s)) {
2686 if (! isCHARNAME_CONT(EIGHT_BIT_UTF8_TO_NATIVE(*s, *(s+1))))
2693 if (! PL_utf8_charname_continue) {
2694 U8 flags = _CORE_SWASH_INIT_ACCEPT_INVLIST;
2695 PL_utf8_charname_continue = _core_swash_init("utf8",
2696 "_Perl_Charname_Continue",
2698 1, 0, NULL, &flags);
2700 if (! swash_fetch(PL_utf8_charname_continue, (U8 *) s, TRUE)) {
2707 if (*(s-1) == ' ') {
2710 "charnames alias definitions may not contain trailing "
2711 "white-space; marked by <-- HERE in %.*s<-- HERE %.*s",
2712 (int)(s - backslash_ptr + 1), backslash_ptr,
2713 (int)(e - s + 1), s + 1
2715 UTF ? SVf_UTF8 : 0);
2719 if (SvUTF8(res)) { /* Don't accept malformed input */
2720 const U8* first_bad_char_loc;
2722 const char* const str = SvPV_const(res, len);
2723 if (! is_utf8_string_loc((U8 *) str, len, &first_bad_char_loc)) {
2724 _force_out_malformed_utf8_message(first_bad_char_loc,
2725 (U8 *) PL_parser->bufend,
2727 0 /* 0 means don't die */ );
2730 "Malformed UTF-8 returned by %.*s immediately after '%.*s'",
2731 (int) (e - backslash_ptr + 1), backslash_ptr,
2732 (int) ((char *) first_bad_char_loc - str), str
2743 /* The final %.*s makes sure that should the trailing NUL be missing
2744 * that this print won't run off the end of the string */
2747 "Invalid character in \\N{...}; marked by <-- HERE in %.*s<-- HERE %.*s",
2748 (int)(s - backslash_ptr + 1), backslash_ptr,
2749 (int)(e - s + 1), s + 1
2751 UTF ? SVf_UTF8 : 0);
2758 "charnames alias definitions may not contain a sequence of "
2759 "multiple spaces; marked by <-- HERE in %.*s<-- HERE %.*s",
2760 (int)(s - backslash_ptr + 1), backslash_ptr,
2761 (int)(e - s + 1), s + 1
2763 UTF ? SVf_UTF8 : 0);
2770 Extracts the next constant part of a pattern, double-quoted string,
2771 or transliteration. This is terrifying code.
2773 For example, in parsing the double-quoted string "ab\x63$d", it would
2774 stop at the '$' and return an OP_CONST containing 'abc'.
2776 It looks at PL_lex_inwhat and PL_lex_inpat to find out whether it's
2777 processing a pattern (PL_lex_inpat is true), a transliteration
2778 (PL_lex_inwhat == OP_TRANS is true), or a double-quoted string.
2780 Returns a pointer to the character scanned up to. If this is
2781 advanced from the start pointer supplied (i.e. if anything was
2782 successfully parsed), will leave an OP_CONST for the substring scanned
2783 in pl_yylval. Caller must intuit reason for not parsing further
2784 by looking at the next characters herself.
2788 \N{FOO} => \N{U+hex_for_character_FOO}
2789 (if FOO expands to multiple characters, expands to \N{U+xx.XX.yy ...})
2792 all other \-char, including \N and \N{ apart from \N{ABC}
2795 @ and $ where it appears to be a var, but not for $ as tail anchor
2799 In transliterations:
2800 characters are VERY literal, except for - not at the start or end
2801 of the string, which indicates a range. However some backslash sequences
2802 are recognized: \r, \n, and the like
2803 \007 \o{}, \x{}, \N{}
2804 If all elements in the transliteration are below 256,
2805 scan_const expands the range to the full set of intermediate
2806 characters. If the range is in utf8, the hyphen is replaced with
2807 a certain range mark which will be handled by pmtrans() in op.c.
2809 In double-quoted strings:
2811 all those recognized in transliterations
2812 deprecated backrefs: \1 (in substitution replacements)
2813 case and quoting: \U \Q \E
2816 scan_const does *not* construct ops to handle interpolated strings.
2817 It stops processing as soon as it finds an embedded $ or @ variable
2818 and leaves it to the caller to work out what's going on.
2820 embedded arrays (whether in pattern or not) could be:
2821 @foo, @::foo, @'foo, @{foo}, @$foo, @+, @-.
2823 $ in double-quoted strings must be the symbol of an embedded scalar.
2825 $ in pattern could be $foo or could be tail anchor. Assumption:
2826 it's a tail anchor if $ is the last thing in the string, or if it's
2827 followed by one of "()| \r\n\t"
2829 \1 (backreferences) are turned into $1 in substitutions
2831 The structure of the code is
2832 while (there's a character to process) {
2833 handle transliteration ranges
2834 skip regexp comments /(?#comment)/ and codes /(?{code})/
2835 skip #-initiated comments in //x patterns
2836 check for embedded arrays
2837 check for embedded scalars
2839 deprecate \1 in substitution replacements
2840 handle string-changing backslashes \l \U \Q \E, etc.
2841 switch (what was escaped) {
2842 handle \- in a transliteration (becomes a literal -)
2843 if a pattern and not \N{, go treat as regular character
2844 handle \132 (octal characters)
2845 handle \x15 and \x{1234} (hex characters)
2846 handle \N{name} (named characters, also \N{3,5} in a pattern)
2847 handle \cV (control characters)
2848 handle printf-style backslashes (\f, \r, \n, etc)
2851 } (end if backslash)
2852 handle regular character
2853 } (end while character to read)
2858 S_scan_const(pTHX_ char *start)
2860 char *send = PL_bufend; /* end of the constant */
2861 SV *sv = newSV(send - start); /* sv for the constant. See note below
2863 char *s = start; /* start of the constant */
2864 char *d = SvPVX(sv); /* destination for copies */
2865 bool dorange = FALSE; /* are we in a translit range? */
2866 bool didrange = FALSE; /* did we just finish a range? */
2867 bool in_charclass = FALSE; /* within /[...]/ */
2868 bool has_utf8 = FALSE; /* Output constant is UTF8 */
2869 bool has_above_latin1 = FALSE; /* does something require special
2870 handling in tr/// ? */
2871 bool this_utf8 = cBOOL(UTF); /* Is the source string assumed to be
2872 UTF8? But, this can show as true
2873 when the source isn't utf8, as for
2874 example when it is entirely composed
2876 STRLEN utf8_variant_count = 0; /* When not in UTF-8, this counts the
2877 number of characters found so far
2878 that will expand (into 2 bytes)
2879 should we have to convert to
2881 SV *res; /* result from charnames */
2882 STRLEN offset_to_max; /* The offset in the output to where the range
2883 high-end character is temporarily placed */
2885 /* Note on sizing: The scanned constant is placed into sv, which is
2886 * initialized by newSV() assuming one byte of output for every byte of
2887 * input. This routine expects newSV() to allocate an extra byte for a
2888 * trailing NUL, which this routine will append if it gets to the end of
2889 * the input. There may be more bytes of input than output (eg., \N{LATIN
2890 * CAPITAL LETTER A}), or more output than input if the constant ends up
2891 * recoded to utf8, but each time a construct is found that might increase
2892 * the needed size, SvGROW() is called. Its size parameter each time is
2893 * based on the best guess estimate at the time, namely the length used so
2894 * far, plus the length the current construct will occupy, plus room for
2895 * the trailing NUL, plus one byte for every input byte still unscanned */
2897 UV uv = UV_MAX; /* Initialize to weird value to try to catch any uses
2900 int backslash_N = 0; /* ? was the character from \N{} */
2901 int non_portable_endpoint = 0; /* ? In a range is an endpoint
2902 platform-specific like \x65 */
2905 PERL_ARGS_ASSERT_SCAN_CONST;
2907 assert(PL_lex_inwhat != OP_TRANSR);
2908 if (PL_lex_inwhat == OP_TRANS && PL_parser->lex_sub_op) {
2909 /* If we are doing a trans and we know we want UTF8 set expectation */
2910 has_utf8 = PL_parser->lex_sub_op->op_private & (OPpTRANS_FROM_UTF|OPpTRANS_TO_UTF);
2911 this_utf8 = PL_parser->lex_sub_op->op_private & (PL_lex_repl ? OPpTRANS_FROM_UTF : OPpTRANS_TO_UTF);
2914 /* Protect sv from errors and fatal warnings. */
2915 ENTER_with_name("scan_const");
2919 || dorange /* Handle tr/// range at right edge of input */
2922 /* get transliterations out of the way (they're most literal) */
2923 if (PL_lex_inwhat == OP_TRANS) {
2925 /* But there isn't any special handling necessary unless there is a
2926 * range, so for most cases we just drop down and handle the value
2927 * as any other. There are two exceptions.
2929 * 1. A hyphen indicates that we are actually going to have a
2930 * range. In this case, skip the '-', set a flag, then drop
2931 * down to handle what should be the end range value.
2932 * 2. After we've handled that value, the next time through, that
2933 * flag is set and we fix up the range.
2935 * Ranges entirely within Latin1 are expanded out entirely, in
2936 * order to make the transliteration a simple table look-up.
2937 * Ranges that extend above Latin1 have to be done differently, so
2938 * there is no advantage to expanding them here, so they are
2939 * stored here as Min, ILLEGAL_UTF8_BYTE, Max. The illegal byte
2940 * signifies a hyphen without any possible ambiguity. On EBCDIC
2941 * machines, if the range is expressed as Unicode, the Latin1
2942 * portion is expanded out even if the range extends above
2943 * Latin1. This is because each code point in it has to be
2944 * processed here individually to get its native translation */
2948 /* Here, we don't think we're in a range. If the new character
2949 * is not a hyphen; or if it is a hyphen, but it's too close to
2950 * either edge to indicate a range, then it's a regular
2952 if (*s != '-' || s >= send - 1 || s == start) {
2954 /* A regular character. Process like any other, but first
2955 * clear any flags */
2959 non_portable_endpoint = 0;
2962 /* The tests here for being above Latin1 and similar ones
2963 * in the following 'else' suffice to find all such
2964 * occurences in the constant, except those added by a
2965 * backslash escape sequence, like \x{100}. And all those
2966 * set 'has_above_latin1' as appropriate */
2967 if (this_utf8 && UTF8_IS_ABOVE_LATIN1(*s)) {
2968 has_above_latin1 = TRUE;
2971 /* Drops down to generic code to process current byte */
2973 else { /* Is a '-' in the context where it means a range */
2974 if (didrange) { /* Something like y/A-C-Z// */
2975 Perl_croak(aTHX_ "Ambiguous range in transliteration"
2981 s++; /* Skip past the hyphen */
2983 /* d now points to where the end-range character will be
2984 * placed. Save it so won't have to go finding it later,
2985 * and drop down to get that character. (Actually we
2986 * instead save the offset, to handle the case where a
2987 * realloc in the meantime could change the actual
2988 * pointer). We'll finish processing the range the next
2989 * time through the loop */
2990 offset_to_max = d - SvPVX_const(sv);
2992 if (this_utf8 && UTF8_IS_ABOVE_LATIN1(*s)) {
2993 has_above_latin1 = TRUE;
2996 /* Drops down to generic code to process current byte */
2998 } /* End of not a range */
3000 /* Here we have parsed a range. Now must handle it. At this
3002 * 'sv' is a SV* that contains the output string we are
3003 * constructing. The final two characters in that string
3004 * are the range start and range end, in order.
3005 * 'd' points to just beyond the range end in the 'sv' string,
3006 * where we would next place something
3007 * 'offset_to_max' is the offset in 'sv' at which the character
3008 * (the range's maximum end point) before 'd' begins.
3010 char * max_ptr = SvPVX(sv) + offset_to_max;
3013 IV range_max; /* last character in range */
3015 Size_t offset_to_min = 0;
3018 bool convert_unicode;
3019 IV real_range_max = 0;
3022 /* Get the code point values of the range ends. */
3024 /* We know the utf8 is valid, because we just constructed
3025 * it ourselves in previous loop iterations */
3026 min_ptr = (char*) utf8_hop( (U8*) max_ptr, -1);
3027 range_min = valid_utf8_to_uvchr( (U8*) min_ptr, NULL);
3028 range_max = valid_utf8_to_uvchr( (U8*) max_ptr, NULL);
3031 min_ptr = max_ptr - 1;
3032 range_min = * (U8*) min_ptr;
3033 range_max = * (U8*) max_ptr;
3036 /* If the range is just a single code point, like tr/a-a/.../,
3037 * that code point is already in the output, twice. We can
3038 * just back up over the second instance and avoid all the rest
3039 * of the work. But if it is a variant character, it's been
3040 * counted twice, so decrement */
3041 if (UNLIKELY(range_max == range_min)) {
3043 if (! has_utf8 && ! UVCHR_IS_INVARIANT(range_max)) {
3044 utf8_variant_count--;
3050 /* On EBCDIC platforms, we may have to deal with portable
3051 * ranges. These happen if at least one range endpoint is a
3052 * Unicode value (\N{...}), or if the range is a subset of
3053 * [A-Z] or [a-z], and both ends are literal characters,
3054 * like 'A', and not like \x{C1} */
3056 cBOOL(backslash_N) /* \N{} forces Unicode,
3057 hence portable range */
3058 || ( ! non_portable_endpoint
3059 && (( isLOWER_A(range_min) && isLOWER_A(range_max))
3060 || (isUPPER_A(range_min) && isUPPER_A(range_max))));
3061 if (convert_unicode) {
3063 /* Special handling is needed for these portable ranges.
3064 * They are defined to be in Unicode terms, which includes
3065 * all the Unicode code points between the end points.
3066 * Convert to Unicode to get the Unicode range. Later we
3067 * will convert each code point in the range back to
3069 range_min = NATIVE_TO_UNI(range_min);
3070 range_max = NATIVE_TO_UNI(range_max);
3074 if (range_min > range_max) {
3076 if (convert_unicode) {
3077 /* Need to convert back to native for meaningful
3078 * messages for this platform */
3079 range_min = UNI_TO_NATIVE(range_min);
3080 range_max = UNI_TO_NATIVE(range_max);
3083 /* Use the characters themselves for the error message if
3084 * ASCII printables; otherwise some visible representation
3086 if (isPRINT_A(range_min) && isPRINT_A(range_max)) {
3088 "Invalid range \"%c-%c\" in transliteration operator",
3089 (char)range_min, (char)range_max);
3092 else if (convert_unicode) {
3093 /* diag_listed_as: Invalid range "%s" in transliteration operator */
3095 "Invalid range \"\\N{U+%04" UVXf "}-\\N{U+%04"
3096 UVXf "}\" in transliteration operator",
3097 range_min, range_max);
3101 /* diag_listed_as: Invalid range "%s" in transliteration operator */
3103 "Invalid range \"\\x{%04" UVXf "}-\\x{%04" UVXf "}\""
3104 " in transliteration operator",
3105 range_min, range_max);
3109 /* If the range is exactly two code points long, they are
3110 * already both in the output */
3111 if (UNLIKELY(range_min + 1 == range_max)) {
3115 /* Here the range contains at least 3 code points */
3119 /* If everything in the transliteration is below 256, we
3120 * can avoid special handling later. A translation table
3121 * for each of those bytes is created by op.c. So we
3122 * expand out all ranges to their constituent code points.
3123 * But if we've encountered something above 255, the
3124 * expanding won't help, so skip doing that. But if it's
3125 * EBCDIC, we may have to look at each character below 256
3126 * if we have to convert to/from Unicode values */
3127 if ( has_above_latin1
3129 && (range_min > 255 || ! convert_unicode)
3132 /* Move the high character one byte to the right; then
3133 * insert between it and the range begin, an illegal
3134 * byte which serves to indicate this is a range (using
3135 * a '-' would be ambiguous). */
3137 while (e-- > max_ptr) {
3140 *(e + 1) = (char) ILLEGAL_UTF8_BYTE;
3144 /* Here, we're going to expand out the range. For EBCDIC
3145 * the range can extend above 255 (not so in ASCII), so
3146 * for EBCDIC, split it into the parts above and below
3149 if (range_max > 255) {
3150 real_range_max = range_max;
3156 /* Here we need to expand out the string to contain each
3157 * character in the range. Grow the output to handle this.
3158 * For non-UTF8, we need a byte for each code point in the
3159 * range, minus the three that we've already allocated for: the
3160 * hyphen, the min, and the max. For UTF-8, we need this
3161 * plus an extra byte for each code point that occupies two
3162 * bytes (is variant) when in UTF-8 (except we've already
3163 * allocated for the end points, including if they are
3164 * variants). For ASCII platforms and Unicode ranges on EBCDIC
3165 * platforms, it's easy to calculate a precise number. To
3166 * start, we count the variants in the range, which we need
3167 * elsewhere in this function anyway. (For the case where it
3168 * isn't easy to calculate, 'extras' has been initialized to 0,
3169 * and the calculation is done in a loop further down.) */
3171 if (convert_unicode)
3174 /* This is executed unconditionally on ASCII, and for
3175 * Unicode ranges on EBCDIC. Under these conditions, all
3176 * code points above a certain value are variant; and none
3177 * under that value are. We just need to find out how much
3178 * of the range is above that value. We don't count the
3179 * end points here, as they will already have been counted
3180 * as they were parsed. */
3181 if (range_min >= UTF_CONTINUATION_MARK) {
3183 /* The whole range is made up of variants */
3184 extras = (range_max - 1) - (range_min + 1) + 1;
3186 else if (range_max >= UTF_CONTINUATION_MARK) {
3188 /* Only the higher portion of the range is variants */
3189 extras = (range_max - 1) - UTF_CONTINUATION_MARK + 1;
3192 utf8_variant_count += extras;
3195 /* The base growth is the number of code points in the range,
3196 * not including the endpoints, which have already been sized
3197 * for (and output). We don't subtract for the hyphen, as it
3198 * has been parsed but not output, and the SvGROW below is
3199 * based only on what's been output plus what's left to parse.
3201 grow = (range_max - 1) - (range_min + 1) + 1;
3205 /* In some cases in EBCDIC, we haven't yet calculated a
3206 * precise amount needed for the UTF-8 variants. Just
3207 * assume the worst case, that everything will expand by a
3209 if (! convert_unicode) {
3215 /* Otherwise we know exactly how many variants there
3216 * are in the range. */
3221 /* Grow, but position the output to overwrite the range min end
3222 * point, because in some cases we overwrite that */
3223 SvCUR_set(sv, d - SvPVX_const(sv));
3224 offset_to_min = min_ptr - SvPVX_const(sv);
3226 /* See Note on sizing above. */
3227 d = offset_to_min + SvGROW(sv, SvCUR(sv)
3230 + 1 /* Trailing NUL */ );
3232 /* Now, we can expand out the range. */
3234 if (convert_unicode) {
3237 /* Recall that the min and max are now in Unicode terms, so
3238 * we have to convert each character to its native
3241 for (i = range_min; i <= range_max; i++) {
3242 append_utf8_from_native_byte(
3243 LATIN1_TO_NATIVE((U8) i),
3248 for (i = range_min; i <= range_max; i++) {
3249 *d++ = (char)LATIN1_TO_NATIVE((U8) i);
3255 /* Always gets run for ASCII, and sometimes for EBCDIC. */
3259 /* Here, no conversions are necessary, which means that the
3260 * first character in the range is already in 'd' and
3261 * valid, so we can skip overwriting it */
3264 for (i = range_min + 1; i <= range_max; i++) {
3265 append_utf8_from_native_byte((U8) i, (U8 **) &d);
3270 assert(range_min + 1 <= range_max);
3271 for (i = range_min + 1; i < range_max; i++) {
3273 /* In this case on EBCDIC, we haven't calculated
3274 * the variants. Do it here, as we go along */
3275 if (! UVCHR_IS_INVARIANT(i)) {
3276 utf8_variant_count++;
3282 /* The range_max is done outside the loop so as to
3283 * avoid having to special case not incrementing
3284 * 'utf8_variant_count' on EBCDIC (it's already been
3285 * counted when originally parsed) */
3286 *d++ = (char) range_max;
3291 /* If the original range extended above 255, add in that
3293 if (real_range_max) {
3294 *d++ = (char) UTF8_TWO_BYTE_HI(0x100);
3295 *d++ = (char) UTF8_TWO_BYTE_LO(0x100);
3296 if (real_range_max > 0x100) {
3297 if (real_range_max > 0x101) {
3298 *d++ = (char) ILLEGAL_UTF8_BYTE;
3300 d = (char*)uvchr_to_utf8((U8*)d, real_range_max);
3306 /* mark the range as done, and continue */
3310 non_portable_endpoint = 0;
3314 } /* End of is a range */
3315 } /* End of transliteration. Joins main code after these else's */
3316 else if (*s == '[' && PL_lex_inpat && !in_charclass) {
3319 while (s1 >= start && *s1-- == '\\')
3322 in_charclass = TRUE;
3324 else if (*s == ']' && PL_lex_inpat && in_charclass) {
3327 while (s1 >= start && *s1-- == '\\')
3330 in_charclass = FALSE;
3332 /* skip for regexp comments /(?#comment)/, except for the last
3333 * char, which will be done separately. Stop on (?{..}) and
3335 else if (*s == '(' && PL_lex_inpat && s[1] == '?' && !in_charclass) {
3337 while (s+1 < send && *s != ')')
3340 else if (!PL_lex_casemods
3341 && ( s[2] == '{' /* This should match regcomp.c */
3342 || (s[2] == '?' && s[3] == '{')))
3347 /* likewise skip #-initiated comments in //x patterns */
3351 && ((PMOP*)PL_lex_inpat)->op_pmflags & RXf_PMf_EXTENDED)
3353 while (s < send && *s != '\n')
3356 /* no further processing of single-quoted regex */
3357 else if (PL_lex_inpat && SvIVX(PL_linestr) == '\'')
3358 goto default_action;
3360 /* check for embedded arrays
3361 * (@foo, @::foo, @'foo, @{foo}, @$foo, @+, @-)
3363 else if (*s == '@' && s[1]) {
3365 ? isIDFIRST_utf8_safe(s+1, send)
3366 : isWORDCHAR_A(s[1]))
3370 if (strchr(":'{$", s[1]))
3372 if (!PL_lex_inpat && (s[1] == '+' || s[1] == '-'))
3373 break; /* in regexp, neither @+ nor @- are interpolated */
3375 /* check for embedded scalars. only stop if we're sure it's a
3377 else if (*s == '$') {
3378 if (!PL_lex_inpat) /* not a regexp, so $ must be var */
3380 if (s + 1 < send && !strchr("()| \r\n\t", s[1])) {
3382 Perl_ck_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
3383 "Possible unintended interpolation of $\\ in regex");
3385 break; /* in regexp, $ might be tail anchor */
3389 /* End of else if chain - OP_TRANS rejoin rest */
3391 if (UNLIKELY(s >= send)) {
3397 if (*s == '\\' && s+1 < send) {
3398 char* e; /* Can be used for ending '}', etc. */
3402 /* warn on \1 - \9 in substitution replacements, but note that \11
3403 * is an octal; and \19 is \1 followed by '9' */
3404 if (PL_lex_inwhat == OP_SUBST
3410 /* diag_listed_as: \%d better written as $%d */
3411 Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX), "\\%c better written as $%c", *s, *s);
3416 /* string-change backslash escapes */
3417 if (PL_lex_inwhat != OP_TRANS && *s && strchr("lLuUEQF", *s)) {
3421 /* In a pattern, process \N, but skip any other backslash escapes.
3422 * This is because we don't want to translate an escape sequence
3423 * into a meta symbol and have the regex compiler use the meta
3424 * symbol meaning, e.g. \x{2E} would be confused with a dot. But
3425 * in spite of this, we do have to process \N here while the proper
3426 * charnames handler is in scope. See bugs #56444 and #62056.
3428 * There is a complication because \N in a pattern may also stand
3429 * for 'match a non-nl', and not mean a charname, in which case its
3430 * processing should be deferred to the regex compiler. To be a
3431 * charname it must be followed immediately by a '{', and not look
3432 * like \N followed by a curly quantifier, i.e., not something like
3433 * \N{3,}. regcurly returns a boolean indicating if it is a legal
3435 else if (PL_lex_inpat
3438 || regcurly(s + 1)))
3441 goto default_action;
3447 if ((isALPHANUMERIC(*s)))
3448 Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
3449 "Unrecognized escape \\%c passed through",
3451 /* default action is to copy the quoted character */
3452 goto default_action;
3455 /* eg. \132 indicates the octal constant 0132 */
3456 case '0': case '1': case '2': case '3':
3457 case '4': case '5': case '6': case '7':
3459 I32 flags = PERL_SCAN_SILENT_ILLDIGIT;
3461 uv = grok_oct(s, &len, &flags, NULL);
3463 if (len < 3 && s < send && isDIGIT(*s)
3464 && ckWARN(WARN_MISC))
3466 Perl_warner(aTHX_ packWARN(WARN_MISC),
3467 "%s", form_short_octal_warning(s, len));
3470 goto NUM_ESCAPE_INSERT;
3472 /* eg. \o{24} indicates the octal constant \024 */
3477 bool valid = grok_bslash_o(&s, &uv, &error,
3478 TRUE, /* Output warning */
3479 FALSE, /* Not strict */
3480 TRUE, /* Output warnings for
3485 uv = 0; /* drop through to ensure range ends are set */
3487 goto NUM_ESCAPE_INSERT;
3490 /* eg. \x24 indicates the hex constant 0x24 */
3495 bool valid = grok_bslash_x(&s, &uv, &error,
3496 TRUE, /* Output warning */
3497 FALSE, /* Not strict */
3498 TRUE, /* Output warnings for
3503 uv = 0; /* drop through to ensure range ends are set */
3508 /* Insert oct or hex escaped character. */
3510 /* Here uv is the ordinal of the next character being added */
3511 if (UVCHR_IS_INVARIANT(uv)) {
3515 if (!has_utf8 && uv > 255) {
3517 /* Here, 'uv' won't fit unless we convert to UTF-8.
3518 * If we've only seen invariants so far, all we have to
3519 * do is turn on the flag */
3520 if (utf8_variant_count == 0) {
3524 SvCUR_set(sv, d - SvPVX_const(sv));
3528 sv_utf8_upgrade_flags_grow(
3530 SV_GMAGIC|SV_FORCE_UTF8_UPGRADE,
3532 /* Since we're having to grow here,
3533 * make sure we have enough room for
3534 * this escape and a NUL, so the
3535 * code immediately below won't have
3536 * to actually grow again */
3538 + (STRLEN)(send - s) + 1);
3539 d = SvPVX(sv) + SvCUR(sv);
3542 has_above_latin1 = TRUE;
3548 utf8_variant_count++;
3551 /* Usually, there will already be enough room in 'sv'
3552 * since such escapes are likely longer than any UTF-8
3553 * sequence they can end up as. This isn't the case on
3554 * EBCDIC where \x{40000000} contains 12 bytes, and the
3555 * UTF-8 for it contains 14. And, we have to allow for
3556 * a trailing NUL. It probably can't happen on ASCII
3557 * platforms, but be safe. See Note on sizing above. */
3558 const STRLEN needed = d - SvPVX(sv)
3562 if (UNLIKELY(needed > SvLEN(sv))) {
3563 SvCUR_set(sv, d - SvPVX_const(sv));
3564 d = SvCUR(sv) + SvGROW(sv, needed);
3567 d = (char*)uvchr_to_utf8((U8*)d, uv);
3568 if (PL_lex_inwhat == OP_TRANS
3569 && PL_parser->lex_sub_op)
3571 PL_parser->lex_sub_op->op_private |=
3572 (PL_lex_repl ? OPpTRANS_FROM_UTF
3578 non_portable_endpoint++;
3583 /* In a non-pattern \N must be like \N{U+0041}, or it can be a
3584 * named character, like \N{LATIN SMALL LETTER A}, or a named
3585 * sequence, like \N{LATIN CAPITAL LETTER A WITH MACRON AND
3586 * GRAVE} (except y/// can't handle the latter, croaking). For
3587 * convenience all three forms are referred to as "named
3588 * characters" below.
3590 * For patterns, \N also can mean to match a non-newline. Code
3591 * before this 'switch' statement should already have handled
3592 * this situation, and hence this code only has to deal with
3593 * the named character cases.
3595 * For non-patterns, the named characters are converted to
3596 * their string equivalents. In patterns, named characters are
3597 * not converted to their ultimate forms for the same reasons
3598 * that other escapes aren't. Instead, they are converted to
3599 * the \N{U+...} form to get the value from the charnames that
3600 * is in effect right now, while preserving the fact that it
3601 * was a named character, so that the regex compiler knows
3604 * The structure of this section of code (besides checking for
3605 * errors and upgrading to utf8) is:
3606 * If the named character is of the form \N{U+...}, pass it
3607 * through if a pattern; otherwise convert the code point
3609 * Otherwise must be some \N{NAME}: convert to
3610 * \N{U+c1.c2...} if a pattern; otherwise convert to utf8
3612 * Transliteration is an exception. The conversion to utf8 is
3613 * only done if the code point requires it to be representable.
3615 * Here, 's' points to the 'N'; the test below is guaranteed to
3616 * succeed if we are being called on a pattern, as we already
3617 * know from a test above that the next character is a '{'. A
3618 * non-pattern \N must mean 'named character', which requires
3622 yyerror("Missing braces on \\N{}");
3627 /* If there is no matching '}', it is an error. */
3628 if (! (e = strchr(s, '}'))) {
3629 if (! PL_lex_inpat) {
3630 yyerror("Missing right brace on \\N{}");
3632 yyerror("Missing right brace on \\N{} or unescaped left brace after \\N");
3637 /* Here it looks like a named character */
3639 if (*s == 'U' && s[1] == '+') { /* \N{U+...} */
3640 s += 2; /* Skip to next char after the 'U+' */
3643 /* In patterns, we can have \N{U+xxxx.yyyy.zzzz...} */
3644 /* Check the syntax. */
3647 if (!isXDIGIT(*s)) {
3650 "Invalid hexadecimal number in \\N{U+...}"
3658 else if ((*s == '.' || *s == '_')
3664 /* Pass everything through unchanged.
3665 * +1 is for the '}' */
3666 Copy(orig_s, d, e - orig_s + 1, char);
3667 d += e - orig_s + 1;
3669 else { /* Not a pattern: convert the hex to string */
3670 I32 flags = PERL_SCAN_ALLOW_UNDERSCORES
3671 | PERL_SCAN_SILENT_ILLDIGIT
3672 | PERL_SCAN_DISALLOW_PREFIX;
3674 uv = grok_hex(s, &len, &flags, NULL);
3675 if (len == 0 || (len != (STRLEN)(e - s)))
3678 /* For non-tr///, if the destination is not in utf8,
3679 * unconditionally recode it to be so. This is
3680 * because \N{} implies Unicode semantics, and scalars
3681 * have to be in utf8 to guarantee those semantics.
3682 * tr/// doesn't care about Unicode rules, so no need
3683 * there to upgrade to UTF-8 for small enough code
3685 if (! has_utf8 && ( uv > 0xFF
3686 || PL_lex_inwhat != OP_TRANS))
3688 /* See Note on sizing above. */
3689 const STRLEN extra = OFFUNISKIP(uv) + (send - e) + 1;
3691 SvCUR_set(sv, d - SvPVX_const(sv));
3695 if (utf8_variant_count == 0) {
3697 d = SvCUR(sv) + SvGROW(sv, SvCUR(sv) + extra);
3700 sv_utf8_upgrade_flags_grow(
3702 SV_GMAGIC|SV_FORCE_UTF8_UPGRADE,
3704 d = SvPVX(sv) + SvCUR(sv);
3708 has_above_latin1 = TRUE;
3711 /* Add the (Unicode) code point to the output. */
3712 if (! has_utf8 || OFFUNI_IS_INVARIANT(uv)) {
3713 *d++ = (char) LATIN1_TO_NATIVE(uv);
3716 d = (char*) uvoffuni_to_utf8_flags((U8*)d, uv, 0);
3720 else /* Here is \N{NAME} but not \N{U+...}. */
3721 if ((res = get_and_check_backslash_N_name(s, e)))
3724 const char *str = SvPV_const(res, len);
3727 if (! len) { /* The name resolved to an empty string */
3728 Copy("\\N{}", d, 4, char);
3732 /* In order to not lose information for the regex
3733 * compiler, pass the result in the specially made
3734 * syntax: \N{U+c1.c2.c3...}, where c1 etc. are
3735 * the code points in hex of each character
3736 * returned by charnames */
3738 const char *str_end = str + len;
3739 const STRLEN off = d - SvPVX_const(sv);
3741 if (! SvUTF8(res)) {
3742 /* For the non-UTF-8 case, we can determine the
3743 * exact length needed without having to parse
3744 * through the string. Each character takes up
3745 * 2 hex digits plus either a trailing dot or
3747 const char initial_text[] = "\\N{U+";
3748 const STRLEN initial_len = sizeof(initial_text)
3750 d = off + SvGROW(sv, off
3753 /* +1 for trailing NUL */
3756 + (STRLEN)(send - e));
3757 Copy(initial_text, d, initial_len, char);
3759 while (str < str_end) {
3762 my_snprintf(hex_string,
3766 /* The regex compiler is
3767 * expecting Unicode, not
3769 NATIVE_TO_LATIN1(*str));
3770 PERL_MY_SNPRINTF_POST_GUARD(len,
3771 sizeof(hex_string));
3772 Copy(hex_string, d, 3, char);
3776 d--; /* Below, we will overwrite the final
3777 dot with a right brace */
3780 STRLEN char_length; /* cur char's byte length */
3782 /* and the number of bytes after this is
3783 * translated into hex digits */
3784 STRLEN output_length;
3786 /* 2 hex per byte; 2 chars for '\N'; 2 chars
3787 * for max('U+', '.'); and 1 for NUL */
3788 char hex_string[2 * UTF8_MAXBYTES + 5];
3790 /* Get the first character of the result. */
3791 U32 uv = utf8n_to_uvchr((U8 *) str,
3795 /* Convert first code point to Unicode hex,
3796 * including the boiler plate before it. */
3798 my_snprintf(hex_string, sizeof(hex_string),
3800 (unsigned int) NATIVE_TO_UNI(uv));
3802 /* Make sure there is enough space to hold it */
3803 d = off + SvGROW(sv, off
3805 + (STRLEN)(send - e)
3806 + 2); /* '}' + NUL */
3808 Copy(hex_string, d, output_length, char);
3811 /* For each subsequent character, append dot and
3812 * its Unicode code point in hex */
3813 while ((str += char_length) < str_end) {
3814 const STRLEN off = d - SvPVX_const(sv);
3815 U32 uv = utf8n_to_uvchr((U8 *) str,
3820 my_snprintf(hex_string,
3823 (unsigned int) NATIVE_TO_UNI(uv));
3825 d = off + SvGROW(sv, off
3827 + (STRLEN)(send - e)
3828 + 2); /* '}' + NUL */
3829 Copy(hex_string, d, output_length, char);
3834 *d++ = '}'; /* Done. Add the trailing brace */
3837 else { /* Here, not in a pattern. Convert the name to a
3840 if (PL_lex_inwhat == OP_TRANS) {
3841 str = SvPV_const(res, len);
3842 if (len > ((SvUTF8(res))
3846 yyerror(Perl_form(aTHX_
3847 "%.*s must not be a named sequence"
3848 " in transliteration operator",
3849 /* +1 to include the "}" */
3850 (int) (e + 1 - start), start));
3851 goto end_backslash_N;
3854 if (SvUTF8(res) && UTF8_IS_ABOVE_LATIN1(*str)) {
3855 has_above_latin1 = TRUE;
3859 else if (! SvUTF8(res)) {
3860 /* Make sure \N{} return is UTF-8. This is because
3861 * \N{} implies Unicode semantics, and scalars have
3862 * to be in utf8 to guarantee those semantics; but
3863 * not needed in tr/// */
3864 sv_utf8_upgrade_flags(res, 0);
3865 str = SvPV_const(res, len);
3868 /* Upgrade destination to be utf8 if this new
3870 if (! has_utf8 && SvUTF8(res)) {
3871 /* See Note on sizing above. */
3872 const STRLEN extra = len + (send - s) + 1;
3874 SvCUR_set(sv, d - SvPVX_const(sv));
3878 if (utf8_variant_count == 0) {
3880 d = SvCUR(sv) + SvGROW(sv, SvCUR(sv) + extra);
3883 sv_utf8_upgrade_flags_grow(sv,
3884 SV_GMAGIC|SV_FORCE_UTF8_UPGRADE,
3886 d = SvPVX(sv) + SvCUR(sv);
3889 } else if (len > (STRLEN)(e - s + 4)) { /* I _guess_ 4 is \N{} --jhi */
3891 /* See Note on sizing above. (NOTE: SvCUR() is not
3892 * set correctly here). */
3893 const STRLEN extra = len + (send - e) + 1;
3894 const STRLEN off = d - SvPVX_const(sv);
3895 d = off + SvGROW(sv, off + extra);
3897 Copy(str, d, len, char);
3903 } /* End \N{NAME} */
3907 backslash_N++; /* \N{} is defined to be Unicode */
3909 s = e + 1; /* Point to just after the '}' */
3912 /* \c is a control character */
3916 *d++ = grok_bslash_c(*s++, 1);
3919 yyerror("Missing control char name in \\c");
3922 non_portable_endpoint++;
3926 /* printf-style backslashes, formfeeds, newlines, etc */
3952 } /* end if (backslash) */
3955 /* Just copy the input to the output, though we may have to convert
3958 * If the input has the same representation in UTF-8 as not, it will be
3959 * a single byte, and we don't care about UTF8ness; just copy the byte */
3960 if (NATIVE_BYTE_IS_INVARIANT((U8)(*s))) {
3963 else if (! this_utf8 && ! has_utf8) {
3964 /* If neither source nor output is UTF-8, is also a single byte,
3965 * just copy it; but this byte counts should we later have to
3966 * convert to UTF-8 */
3968 utf8_variant_count++;
3970 else if (this_utf8 && has_utf8) { /* Both UTF-8, can just copy */
3971 const STRLEN len = UTF8SKIP(s);
3973 /* We expect the source to have already been checked for
3975 assert(isUTF8_CHAR((U8 *) s, (U8 *) send));
3977 Copy(s, d, len, U8);
3981 else { /* UTF8ness matters and doesn't match, need to convert */
3983 const UV nextuv = (this_utf8)
3984 ? utf8n_to_uvchr((U8*)s, send - s, &len, 0)
3986 STRLEN need = UVCHR_SKIP(nextuv);
3989 SvCUR_set(sv, d - SvPVX_const(sv));
3993 /* See Note on sizing above. */
3994 need += (STRLEN)(send - s) + 1;
3996 if (utf8_variant_count == 0) {
3998 d = SvCUR(sv) + SvGROW(sv, SvCUR(sv) + need);
4001 sv_utf8_upgrade_flags_grow(sv,
4002 SV_GMAGIC|SV_FORCE_UTF8_UPGRADE,
4004 d = SvPVX(sv) + SvCUR(sv);
4007 } else if (need > len) {
4008 /* encoded value larger than old, may need extra space (NOTE:
4009 * SvCUR() is not set correctly here). See Note on sizing
4011 const STRLEN extra = need + (send - s) + 1;
4012 const STRLEN off = d - SvPVX_const(sv);
4013 d = off + SvGROW(sv, off + extra);
4017 d = (char*)uvchr_to_utf8((U8*)d, nextuv);
4019 } /* while loop to process each character */
4021 /* terminate the string and set up the sv */
4023 SvCUR_set(sv, d - SvPVX_const(sv));
4024 if (SvCUR(sv) >= SvLEN(sv))
4025 Perl_croak(aTHX_ "panic: constant overflowed allocated space, %" UVuf
4026 " >= %" UVuf, (UV)SvCUR(sv), (UV)SvLEN(sv));
4031 if (PL_lex_inwhat == OP_TRANS && PL_parser->lex_sub_op) {
4032 PL_parser->lex_sub_op->op_private |=
4033 (PL_lex_repl ? OPpTRANS_FROM_UTF : OPpTRANS_TO_UTF);
4037 /* shrink the sv if we allocated more than we used */
4038 if (SvCUR(sv) + 5 < SvLEN(sv)) {
4039 SvPV_shrink_to_cur(sv);
4042 /* return the substring (via pl_yylval) only if we parsed anything */
4045 for (; s2 < s; s2++) {
4047 COPLINE_INC_WITH_HERELINES;
4049 SvREFCNT_inc_simple_void_NN(sv);
4050 if ( (PL_hints & ( PL_lex_inpat ? HINT_NEW_RE : HINT_NEW_STRING ))
4051 && ! PL_parser->lex_re_reparsing)
4053 const char *const key = PL_lex_inpat ? "qr" : "q";
4054 const STRLEN keylen = PL_lex_inpat ? 2 : 1;
4058 if (PL_lex_inwhat == OP_TRANS) {
4061 } else if (PL_lex_inwhat == OP_SUBST && !PL_lex_inpat) {
4064 } else if (PL_lex_inpat && SvIVX(PL_linestr) == '\'') {
4072 sv = S_new_constant(aTHX_ start, s - start, key, keylen, sv, NULL,
4075 pl_yylval.opval = newSVOP(OP_CONST, 0, sv);
4077 LEAVE_with_name("scan_const");
4082 * Returns TRUE if there's more to the expression (e.g., a subscript),
4085 * It deals with "$foo[3]" and /$foo[3]/ and /$foo[0123456789$]+/
4087 * ->[ and ->{ return TRUE
4088 * ->$* ->$#* ->@* ->@[ ->@{ return TRUE if postderef_qq is enabled
4089 * { and [ outside a pattern are always subscripts, so return TRUE
4090 * if we're outside a pattern and it's not { or [, then return FALSE
4091 * if we're in a pattern and the first char is a {
4092 * {4,5} (any digits around the comma) returns FALSE
4093 * if we're in a pattern and the first char is a [
4095 * [SOMETHING] has a funky algorithm to decide whether it's a
4096 * character class or not. It has to deal with things like
4097 * /$foo[-3]/ and /$foo[$bar]/ as well as /$foo[$\d]+/
4098 * anything else returns TRUE
4101 /* This is the one truly awful dwimmer necessary to conflate C and sed. */
4104 S_intuit_more(pTHX_ char *s)
4106 PERL_ARGS_ASSERT_INTUIT_MORE;
4108 if (PL_lex_brackets)
4110 if (*s == '-' && s[1] == '>' && (s[2] == '[' || s[2] == '{'))
4112 if (*s == '-' && s[1] == '>'
4113 && FEATURE_POSTDEREF_QQ_IS_ENABLED
4114 && ( (s[2] == '$' && (s[3] == '*' || (s[3] == '#' && s[4] == '*')))
4115 ||(s[2] == '@' && strchr("*[{",s[3])) ))
4117 if (*s != '{' && *s != '[')
4122 /* In a pattern, so maybe we have {n,m}. */
4130 /* On the other hand, maybe we have a character class */
4133 if (*s == ']' || *s == '^')
4136 /* this is terrifying, and it works */
4139 const char * const send = strchr(s,']');
4140 unsigned char un_char, last_un_char;
4141 char tmpbuf[sizeof PL_tokenbuf * 4];
4143 if (!send) /* has to be an expression */
4145 weight = 2; /* let's weigh the evidence */
4149 else if (isDIGIT(*s)) {
4151 if (isDIGIT(s[1]) && s[2] == ']')
4157 Zero(seen,256,char);
4159 for (; s < send; s++) {
4160 last_un_char = un_char;
4161 un_char = (unsigned char)*s;
4166 weight -= seen[un_char] * 10;
4167 if (isWORDCHAR_lazy_if_safe(s+1, PL_bufend, UTF)) {
4169 char *tmp = PL_bufend;
4170 PL_bufend = (char*)send;
4171 scan_ident(s, tmpbuf, sizeof tmpbuf, FALSE);
4173 len = (int)strlen(tmpbuf);
4174 if (len > 1 && gv_fetchpvn_flags(tmpbuf, len,
4175 UTF ? SVf_UTF8 : 0, SVt_PV))
4182 && strchr("[#!%*<>()-=",s[1]))
4184 if (/*{*/ strchr("])} =",s[2]))
4193 if (strchr("wds]",s[1]))
4195 else if (seen[(U8)'\''] || seen[(U8)'"'])
4197 else if (strchr("rnftbxcav",s[1]))
4199 else if (isDIGIT(s[1])) {
4201 while (s[1] && isDIGIT(s[1]))
4211 if (strchr("aA01! ",last_un_char))
4213 if (strchr("zZ79~",s[1]))
4215 if (last_un_char == 255 && (isDIGIT(s[1]) || s[1] == '$'))
4216 weight -= 5; /* cope with negative subscript */
4219 if (!isWORDCHAR(last_un_char)
4220 && !(last_un_char == '$' || last_un_char == '@'
4221 || last_un_char == '&')
4222 && isALPHA(*s) && s[1] && isALPHA(s[1])) {
4226 if (keyword(d, s - d, 0))
4229 if (un_char == last_un_char + 1)
4231 weight -= seen[un_char];
4236 if (weight >= 0) /* probably a character class */
4246 * Does all the checking to disambiguate
4248 * between foo(bar) and bar->foo. Returns 0 if not a method, otherwise
4249 * FUNCMETH (bar->foo(args)) or METHOD (bar->foo args).
4251 * First argument is the stuff after the first token, e.g. "bar".
4253 * Not a method if foo is a filehandle.
4254 * Not a method if foo is a subroutine prototyped to take a filehandle.
4255 * Not a method if it's really "Foo $bar"
4256 * Method if it's "foo $bar"
4257 * Not a method if it's really "print foo $bar"
4258 * Method if it's really "foo package::" (interpreted as package->foo)
4259 * Not a method if bar is known to be a subroutine ("sub bar; foo bar")