Commit | Line | Data |
---|---|---|
a0d0e21e | 1 | /* toke.c |
a687059c | 2 | * |
1129b882 NC |
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 | |
a687059c | 5 | * |
d48672a2 LW |
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. | |
378cc40b | 8 | * |
a0d0e21e LW |
9 | */ |
10 | ||
11 | /* | |
4ac71550 TC |
12 | * 'It all comes from here, the stench and the peril.' --Frodo |
13 | * | |
14 | * [p.719 of _The Lord of the Rings_, IV/ix: "Shelob's Lair"] | |
378cc40b LW |
15 | */ |
16 | ||
9cbb5ea2 GS |
17 | /* |
18 | * This file is the lexer for Perl. It's closely linked to the | |
4e553d73 | 19 | * parser, perly.y. |
ffb4593c NT |
20 | * |
21 | * The main routine is yylex(), which returns the next token. | |
22 | */ | |
23 | ||
f0e67a1d Z |
24 | /* |
25 | =head1 Lexer interface | |
f0e67a1d Z |
26 | This is the lower layer of the Perl parser, managing characters and tokens. |
27 | ||
28 | =for apidoc AmU|yy_parser *|PL_parser | |
29 | ||
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. | |
34 | ||
35 | =cut | |
36 | */ | |
37 | ||
378cc40b | 38 | #include "EXTERN.h" |
864dbfa3 | 39 | #define PERL_IN_TOKE_C |
378cc40b | 40 | #include "perl.h" |
f7e03a10 | 41 | #include "dquote_inline.h" |
378cc40b | 42 | |
eb0d8d16 NC |
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) | |
45 | ||
6154021b | 46 | #define pl_yylval (PL_parser->yylval) |
d3b6f988 | 47 | |
199e78b7 DM |
48 | /* XXX temporary backwards compatibility */ |
49 | #define PL_lex_brackets (PL_parser->lex_brackets) | |
78cdf107 Z |
50 | #define PL_lex_allbrackets (PL_parser->lex_allbrackets) |
51 | #define PL_lex_fakeeof (PL_parser->lex_fakeeof) | |
199e78b7 DM |
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_defer (PL_parser->lex_defer) | |
56 | #define PL_lex_dojoin (PL_parser->lex_dojoin) | |
199e78b7 DM |
57 | #define PL_lex_formbrack (PL_parser->lex_formbrack) |
58 | #define PL_lex_inpat (PL_parser->lex_inpat) | |
59 | #define PL_lex_inwhat (PL_parser->lex_inwhat) | |
60 | #define PL_lex_op (PL_parser->lex_op) | |
61 | #define PL_lex_repl (PL_parser->lex_repl) | |
62 | #define PL_lex_starts (PL_parser->lex_starts) | |
63 | #define PL_lex_stuff (PL_parser->lex_stuff) | |
64 | #define PL_multi_start (PL_parser->multi_start) | |
65 | #define PL_multi_open (PL_parser->multi_open) | |
66 | #define PL_multi_close (PL_parser->multi_close) | |
199e78b7 DM |
67 | #define PL_preambled (PL_parser->preambled) |
68 | #define PL_sublex_info (PL_parser->sublex_info) | |
bdc0bf6f | 69 | #define PL_linestr (PL_parser->linestr) |
c2598295 DM |
70 | #define PL_expect (PL_parser->expect) |
71 | #define PL_copline (PL_parser->copline) | |
f06b5848 DM |
72 | #define PL_bufptr (PL_parser->bufptr) |
73 | #define PL_oldbufptr (PL_parser->oldbufptr) | |
74 | #define PL_oldoldbufptr (PL_parser->oldoldbufptr) | |
75 | #define PL_linestart (PL_parser->linestart) | |
76 | #define PL_bufend (PL_parser->bufend) | |
77 | #define PL_last_uni (PL_parser->last_uni) | |
78 | #define PL_last_lop (PL_parser->last_lop) | |
79 | #define PL_last_lop_op (PL_parser->last_lop_op) | |
bc177e6b | 80 | #define PL_lex_state (PL_parser->lex_state) |
2f9285f8 | 81 | #define PL_rsfp (PL_parser->rsfp) |
5486870f | 82 | #define PL_rsfp_filters (PL_parser->rsfp_filters) |
12bd6ede DM |
83 | #define PL_in_my (PL_parser->in_my) |
84 | #define PL_in_my_stash (PL_parser->in_my_stash) | |
14047fc9 | 85 | #define PL_tokenbuf (PL_parser->tokenbuf) |
670a9cb2 | 86 | #define PL_multi_end (PL_parser->multi_end) |
13765c85 | 87 | #define PL_error_count (PL_parser->error_count) |
199e78b7 | 88 | |
fb205e7a DM |
89 | # define PL_nexttoke (PL_parser->nexttoke) |
90 | # define PL_nexttype (PL_parser->nexttype) | |
91 | # define PL_nextval (PL_parser->nextval) | |
199e78b7 | 92 | |
a1894d81 | 93 | static const char* const ident_too_long = "Identifier too long"; |
8903cb82 | 94 | |
9ded7720 | 95 | # define NEXTVAL_NEXTTOKE PL_nextval[PL_nexttoke] |
29595ff2 | 96 | |
a7aaec61 Z |
97 | #define XENUMMASK 0x3f |
98 | #define XFAKEEOF 0x40 | |
99 | #define XFAKEBRACK 0x80 | |
9059aa12 | 100 | |
39e02b42 | 101 | #ifdef USE_UTF8_SCRIPTS |
b3041197 | 102 | # define UTF cBOOL(!IN_BYTES) |
2b9d42f0 | 103 | #else |
b3041197 | 104 | # define UTF cBOOL((PL_linestr && DO_UTF8(PL_linestr)) || ( !(PL_parser->lex_flags & LEX_IGNORE_UTF8_HINTS) && (PL_hints & HINT_UTF8))) |
2b9d42f0 | 105 | #endif |
a0ed51b3 | 106 | |
b1fc3636 CJ |
107 | /* The maximum number of characters preceding the unrecognized one to display */ |
108 | #define UNRECOGNIZED_PRECEDE_COUNT 10 | |
109 | ||
61f0cdd9 | 110 | /* In variables named $^X, these are the legal values for X. |
2b92dfce GS |
111 | * 1999-02-27 mjd-perl-patch@plover.com */ |
112 | #define isCONTROLVAR(x) (isUPPER(x) || strchr("[\\]^_?", (x))) | |
113 | ||
14bd96d0 | 114 | #define SPACE_OR_TAB(c) isBLANK_A(c) |
bf4acbe4 | 115 | |
9ff909cf JH |
116 | #define HEXFP_PEEK(s) \ |
117 | (((s[0] == '.') && \ | |
118 | (isXDIGIT(s[1]) || isALPHA_FOLD_EQ(s[1], 'p'))) || \ | |
119 | isALPHA_FOLD_EQ(s[0], 'p')) | |
120 | ||
ffb4593c NT |
121 | /* LEX_* are values for PL_lex_state, the state of the lexer. |
122 | * They are arranged oddly so that the guard on the switch statement | |
79072805 | 123 | * can get by with a single comparison (if the compiler is smart enough). |
9da1dd8f DM |
124 | * |
125 | * These values refer to the various states within a sublex parse, | |
126 | * i.e. within a double quotish string | |
79072805 LW |
127 | */ |
128 | ||
fb73857a | 129 | /* #define LEX_NOTPARSING 11 is done in perl.h. */ |
130 | ||
b6007c36 DM |
131 | #define LEX_NORMAL 10 /* normal code (ie not within "...") */ |
132 | #define LEX_INTERPNORMAL 9 /* code within a string, eg "$foo[$x+1]" */ | |
133 | #define LEX_INTERPCASEMOD 8 /* expecting a \U, \Q or \E etc */ | |
134 | #define LEX_INTERPPUSH 7 /* starting a new sublex parse level */ | |
135 | #define LEX_INTERPSTART 6 /* expecting the start of a $var */ | |
136 | ||
137 | /* at end of code, eg "$x" followed by: */ | |
138 | #define LEX_INTERPEND 5 /* ... eg not one of [, { or -> */ | |
139 | #define LEX_INTERPENDMAYBE 4 /* ... eg one of [, { or -> */ | |
140 | ||
141 | #define LEX_INTERPCONCAT 3 /* expecting anything, eg at start of | |
142 | string or after \E, $foo, etc */ | |
143 | #define LEX_INTERPCONST 2 /* NOT USED */ | |
144 | #define LEX_FORMLINE 1 /* expecting a format line */ | |
145 | #define LEX_KNOWNEXT 0 /* next token known; just return it */ | |
146 | ||
79072805 | 147 | |
bbf60fe6 | 148 | #ifdef DEBUGGING |
27da23d5 | 149 | static const char* const lex_state_names[] = { |
bbf60fe6 DM |
150 | "KNOWNEXT", |
151 | "FORMLINE", | |
152 | "INTERPCONST", | |
153 | "INTERPCONCAT", | |
154 | "INTERPENDMAYBE", | |
155 | "INTERPEND", | |
156 | "INTERPSTART", | |
157 | "INTERPPUSH", | |
158 | "INTERPCASEMOD", | |
159 | "INTERPNORMAL", | |
160 | "NORMAL" | |
161 | }; | |
162 | #endif | |
163 | ||
79072805 | 164 | #include "keywords.h" |
fe14fcc3 | 165 | |
ffb4593c NT |
166 | /* CLINE is a macro that ensures PL_copline has a sane value */ |
167 | ||
57843af0 | 168 | #define CLINE (PL_copline = (CopLINE(PL_curcop) < PL_copline ? CopLINE(PL_curcop) : PL_copline)) |
3280af22 | 169 | |
ffb4593c NT |
170 | /* |
171 | * Convenience functions to return different tokens and prime the | |
9cbb5ea2 | 172 | * lexer for the next token. They all take an argument. |
ffb4593c NT |
173 | * |
174 | * TOKEN : generic token (used for '(', DOLSHARP, etc) | |
175 | * OPERATOR : generic operator | |
176 | * AOPERATOR : assignment operator | |
177 | * PREBLOCK : beginning the block after an if, while, foreach, ... | |
178 | * PRETERMBLOCK : beginning a non-code-defining {} block (eg, hash ref) | |
179 | * PREREF : *EXPR where EXPR is not a simple identifier | |
180 | * TERM : expression term | |
89f35911 | 181 | * POSTDEREF : postfix dereference (->$* ->@[...] etc.) |
ffb4593c NT |
182 | * LOOPX : loop exiting command (goto, last, dump, etc) |
183 | * FTST : file test operator | |
184 | * FUN0 : zero-argument function | |
7eb971ee | 185 | * FUN0OP : zero-argument function, with its op created in this file |
2d2e263d | 186 | * FUN1 : not used, except for not, which isn't a UNIOP |
ffb4593c NT |
187 | * BOop : bitwise or or xor |
188 | * BAop : bitwise and | |
8823cb89 | 189 | * BCop : bitwise complement |
ffb4593c NT |
190 | * SHop : shift operator |
191 | * PWop : power operator | |
9cbb5ea2 | 192 | * PMop : pattern-matching operator |
ffb4593c | 193 | * Aop : addition-level operator |
e4916dd1 | 194 | * AopNOASSIGN : addition-level operator that is never part of .= |
ffb4593c NT |
195 | * Mop : multiplication-level operator |
196 | * Eop : equality-testing operator | |
e5edeb50 | 197 | * Rop : relational operator <= != gt |
ffb4593c NT |
198 | * |
199 | * Also see LOP and lop() below. | |
200 | */ | |
201 | ||
998054bd | 202 | #ifdef DEBUGGING /* Serve -DT. */ |
704d4215 | 203 | # define REPORT(retval) tokereport((I32)retval, &pl_yylval) |
998054bd | 204 | #else |
bbf60fe6 | 205 | # define REPORT(retval) (retval) |
998054bd SC |
206 | #endif |
207 | ||
bbf60fe6 DM |
208 | #define TOKEN(retval) return ( PL_bufptr = s, REPORT(retval)) |
209 | #define OPERATOR(retval) return (PL_expect = XTERM, PL_bufptr = s, REPORT(retval)) | |
b1764551 | 210 | #define AOPERATOR(retval) return ao((PL_expect = XTERM, PL_bufptr = s, retval)) |
bbf60fe6 DM |
211 | #define PREBLOCK(retval) return (PL_expect = XBLOCK,PL_bufptr = s, REPORT(retval)) |
212 | #define PRETERMBLOCK(retval) return (PL_expect = XTERMBLOCK,PL_bufptr = s, REPORT(retval)) | |
213 | #define PREREF(retval) return (PL_expect = XREF,PL_bufptr = s, REPORT(retval)) | |
214 | #define TERM(retval) return (CLINE, PL_expect = XOPERATOR, PL_bufptr = s, REPORT(retval)) | |
89f35911 | 215 | #define POSTDEREF(f) return (PL_bufptr = s, S_postderef(aTHX_ REPORT(f),s[1])) |
a49203fd | 216 | #define LOOPX(f) return (PL_bufptr = force_word(s,WORD,TRUE,FALSE), \ |
7a61bf3c | 217 | pl_yylval.ival=f, \ |
a49203fd | 218 | PL_expect = PL_nexttoke ? XOPERATOR : XTERM, \ |
7a61bf3c | 219 | REPORT((int)LOOPEX)) |
6154021b RGS |
220 | #define FTST(f) return (pl_yylval.ival=f, PL_expect=XTERMORDORDOR, PL_bufptr=s, REPORT((int)UNIOP)) |
221 | #define FUN0(f) return (pl_yylval.ival=f, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC0)) | |
7eb971ee | 222 | #define FUN0OP(f) return (pl_yylval.opval=f, CLINE, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC0OP)) |
6154021b | 223 | #define FUN1(f) return (pl_yylval.ival=f, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC1)) |
b1764551 FC |
224 | #define BOop(f) return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)BITOROP)) |
225 | #define BAop(f) return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)BITANDOP)) | |
8823cb89 FC |
226 | #define BCop(f) return pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr = s, \ |
227 | REPORT('~') | |
b1764551 FC |
228 | #define SHop(f) return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)SHIFTOP)) |
229 | #define PWop(f) return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)POWOP)) | |
6154021b | 230 | #define PMop(f) return(pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)MATCHOP)) |
b1764551 | 231 | #define Aop(f) return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)ADDOP)) |
e4916dd1 | 232 | #define AopNOASSIGN(f) return (pl_yylval.ival=f, PL_bufptr=s, REPORT((int)ADDOP)) |
b1764551 | 233 | #define Mop(f) return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, (int)MULOP)) |
6154021b RGS |
234 | #define Eop(f) return (pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)EQOP)) |
235 | #define Rop(f) return (pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)RELOP)) | |
2f3197b3 | 236 | |
a687059c LW |
237 | /* This bit of chicanery makes a unary function followed by |
238 | * a parenthesis into a function with one argument, highest precedence. | |
6f33ba73 RGS |
239 | * The UNIDOR macro is for unary functions that can be followed by the // |
240 | * operator (such as C<shift // 0>). | |
a687059c | 241 | */ |
d68ce4ac | 242 | #define UNI3(f,x,have_x) { \ |
6154021b | 243 | pl_yylval.ival = f; \ |
d68ce4ac | 244 | if (have_x) PL_expect = x; \ |
376fcdbf AL |
245 | PL_bufptr = s; \ |
246 | PL_last_uni = PL_oldbufptr; \ | |
247 | PL_last_lop_op = f; \ | |
248 | if (*s == '(') \ | |
249 | return REPORT( (int)FUNC1 ); \ | |
294a536f | 250 | s = skipspace(s); \ |
376fcdbf AL |
251 | return REPORT( *s=='(' ? (int)FUNC1 : (int)UNIOP ); \ |
252 | } | |
d68ce4ac FC |
253 | #define UNI(f) UNI3(f,XTERM,1) |
254 | #define UNIDOR(f) UNI3(f,XTERMORDORDOR,1) | |
b5fb7ce3 FC |
255 | #define UNIPROTO(f,optional) { \ |
256 | if (optional) PL_last_uni = PL_oldbufptr; \ | |
22393538 MH |
257 | OPERATOR(f); \ |
258 | } | |
a687059c | 259 | |
d68ce4ac | 260 | #define UNIBRACK(f) UNI3(f,0,0) |
79072805 | 261 | |
9f68db38 | 262 | /* grandfather return to old style */ |
78cdf107 Z |
263 | #define OLDLOP(f) \ |
264 | do { \ | |
265 | if (!PL_lex_allbrackets && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC) \ | |
266 | PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC; \ | |
267 | pl_yylval.ival = (f); \ | |
268 | PL_expect = XTERM; \ | |
269 | PL_bufptr = s; \ | |
270 | return (int)LSTOP; \ | |
271 | } while(0) | |
79072805 | 272 | |
83944c01 FC |
273 | #define COPLINE_INC_WITH_HERELINES \ |
274 | STMT_START { \ | |
275 | CopLINE_inc(PL_curcop); \ | |
851b527a FC |
276 | if (PL_parser->herelines) \ |
277 | CopLINE(PL_curcop) += PL_parser->herelines, \ | |
278 | PL_parser->herelines = 0; \ | |
83944c01 | 279 | } STMT_END |
ffdb8b16 FC |
280 | /* Called after scan_str to update CopLINE(PL_curcop), but only when there |
281 | * is no sublex_push to follow. */ | |
282 | #define COPLINE_SET_FROM_MULTI_END \ | |
283 | STMT_START { \ | |
284 | CopLINE_set(PL_curcop, PL_multi_end); \ | |
285 | if (PL_multi_end != PL_multi_start) \ | |
851b527a | 286 | PL_parser->herelines = 0; \ |
ffdb8b16 | 287 | } STMT_END |
83944c01 FC |
288 | |
289 | ||
8fa7f367 JH |
290 | #ifdef DEBUGGING |
291 | ||
6154021b | 292 | /* how to interpret the pl_yylval associated with the token */ |
bbf60fe6 DM |
293 | enum token_type { |
294 | TOKENTYPE_NONE, | |
295 | TOKENTYPE_IVAL, | |
6154021b | 296 | TOKENTYPE_OPNUM, /* pl_yylval.ival contains an opcode number */ |
bbf60fe6 | 297 | TOKENTYPE_PVAL, |
aeaef349 | 298 | TOKENTYPE_OPVAL |
bbf60fe6 DM |
299 | }; |
300 | ||
6d4a66ac NC |
301 | static struct debug_tokens { |
302 | const int token; | |
303 | enum token_type type; | |
304 | const char *name; | |
305 | } const debug_tokens[] = | |
9041c2e3 | 306 | { |
bbf60fe6 DM |
307 | { ADDOP, TOKENTYPE_OPNUM, "ADDOP" }, |
308 | { ANDAND, TOKENTYPE_NONE, "ANDAND" }, | |
309 | { ANDOP, TOKENTYPE_NONE, "ANDOP" }, | |
310 | { ANONSUB, TOKENTYPE_IVAL, "ANONSUB" }, | |
311 | { ARROW, TOKENTYPE_NONE, "ARROW" }, | |
312 | { ASSIGNOP, TOKENTYPE_OPNUM, "ASSIGNOP" }, | |
313 | { BITANDOP, TOKENTYPE_OPNUM, "BITANDOP" }, | |
314 | { BITOROP, TOKENTYPE_OPNUM, "BITOROP" }, | |
315 | { COLONATTR, TOKENTYPE_NONE, "COLONATTR" }, | |
316 | { CONTINUE, TOKENTYPE_NONE, "CONTINUE" }, | |
0d863452 | 317 | { DEFAULT, TOKENTYPE_NONE, "DEFAULT" }, |
bbf60fe6 DM |
318 | { DO, TOKENTYPE_NONE, "DO" }, |
319 | { DOLSHARP, TOKENTYPE_NONE, "DOLSHARP" }, | |
320 | { DORDOR, TOKENTYPE_NONE, "DORDOR" }, | |
321 | { DOROP, TOKENTYPE_OPNUM, "DOROP" }, | |
322 | { DOTDOT, TOKENTYPE_IVAL, "DOTDOT" }, | |
323 | { ELSE, TOKENTYPE_NONE, "ELSE" }, | |
324 | { ELSIF, TOKENTYPE_IVAL, "ELSIF" }, | |
325 | { EQOP, TOKENTYPE_OPNUM, "EQOP" }, | |
326 | { FOR, TOKENTYPE_IVAL, "FOR" }, | |
327 | { FORMAT, TOKENTYPE_NONE, "FORMAT" }, | |
705fe0e5 FC |
328 | { FORMLBRACK, TOKENTYPE_NONE, "FORMLBRACK" }, |
329 | { FORMRBRACK, TOKENTYPE_NONE, "FORMRBRACK" }, | |
bbf60fe6 DM |
330 | { FUNC, TOKENTYPE_OPNUM, "FUNC" }, |
331 | { FUNC0, TOKENTYPE_OPNUM, "FUNC0" }, | |
7eb971ee | 332 | { FUNC0OP, TOKENTYPE_OPVAL, "FUNC0OP" }, |
bbf60fe6 DM |
333 | { FUNC0SUB, TOKENTYPE_OPVAL, "FUNC0SUB" }, |
334 | { FUNC1, TOKENTYPE_OPNUM, "FUNC1" }, | |
335 | { FUNCMETH, TOKENTYPE_OPVAL, "FUNCMETH" }, | |
0d863452 | 336 | { GIVEN, TOKENTYPE_IVAL, "GIVEN" }, |
bbf60fe6 DM |
337 | { HASHBRACK, TOKENTYPE_NONE, "HASHBRACK" }, |
338 | { IF, TOKENTYPE_IVAL, "IF" }, | |
5504e6cf | 339 | { LABEL, TOKENTYPE_PVAL, "LABEL" }, |
bbf60fe6 DM |
340 | { LOCAL, TOKENTYPE_IVAL, "LOCAL" }, |
341 | { LOOPEX, TOKENTYPE_OPNUM, "LOOPEX" }, | |
342 | { LSTOP, TOKENTYPE_OPNUM, "LSTOP" }, | |
343 | { LSTOPSUB, TOKENTYPE_OPVAL, "LSTOPSUB" }, | |
344 | { MATCHOP, TOKENTYPE_OPNUM, "MATCHOP" }, | |
345 | { METHOD, TOKENTYPE_OPVAL, "METHOD" }, | |
346 | { MULOP, TOKENTYPE_OPNUM, "MULOP" }, | |
347 | { MY, TOKENTYPE_IVAL, "MY" }, | |
bbf60fe6 DM |
348 | { NOAMP, TOKENTYPE_NONE, "NOAMP" }, |
349 | { NOTOP, TOKENTYPE_NONE, "NOTOP" }, | |
350 | { OROP, TOKENTYPE_IVAL, "OROP" }, | |
351 | { OROR, TOKENTYPE_NONE, "OROR" }, | |
352 | { PACKAGE, TOKENTYPE_NONE, "PACKAGE" }, | |
88e1f1a2 JV |
353 | { PLUGEXPR, TOKENTYPE_OPVAL, "PLUGEXPR" }, |
354 | { PLUGSTMT, TOKENTYPE_OPVAL, "PLUGSTMT" }, | |
bbf60fe6 | 355 | { PMFUNC, TOKENTYPE_OPVAL, "PMFUNC" }, |
cc624add | 356 | { POSTJOIN, TOKENTYPE_NONE, "POSTJOIN" }, |
bbf60fe6 DM |
357 | { POSTDEC, TOKENTYPE_NONE, "POSTDEC" }, |
358 | { POSTINC, TOKENTYPE_NONE, "POSTINC" }, | |
359 | { POWOP, TOKENTYPE_OPNUM, "POWOP" }, | |
360 | { PREDEC, TOKENTYPE_NONE, "PREDEC" }, | |
361 | { PREINC, TOKENTYPE_NONE, "PREINC" }, | |
362 | { PRIVATEREF, TOKENTYPE_OPVAL, "PRIVATEREF" }, | |
f3f204dc | 363 | { QWLIST, TOKENTYPE_OPVAL, "QWLIST" }, |
bbf60fe6 DM |
364 | { REFGEN, TOKENTYPE_NONE, "REFGEN" }, |
365 | { RELOP, TOKENTYPE_OPNUM, "RELOP" }, | |
f3f204dc | 366 | { REQUIRE, TOKENTYPE_NONE, "REQUIRE" }, |
bbf60fe6 DM |
367 | { SHIFTOP, TOKENTYPE_OPNUM, "SHIFTOP" }, |
368 | { SUB, TOKENTYPE_NONE, "SUB" }, | |
369 | { THING, TOKENTYPE_OPVAL, "THING" }, | |
370 | { UMINUS, TOKENTYPE_NONE, "UMINUS" }, | |
371 | { UNIOP, TOKENTYPE_OPNUM, "UNIOP" }, | |
372 | { UNIOPSUB, TOKENTYPE_OPVAL, "UNIOPSUB" }, | |
373 | { UNLESS, TOKENTYPE_IVAL, "UNLESS" }, | |
374 | { UNTIL, TOKENTYPE_IVAL, "UNTIL" }, | |
375 | { USE, TOKENTYPE_IVAL, "USE" }, | |
0d863452 | 376 | { WHEN, TOKENTYPE_IVAL, "WHEN" }, |
bbf60fe6 DM |
377 | { WHILE, TOKENTYPE_IVAL, "WHILE" }, |
378 | { WORD, TOKENTYPE_OPVAL, "WORD" }, | |
be25f609 | 379 | { YADAYADA, TOKENTYPE_IVAL, "YADAYADA" }, |
c35e046a | 380 | { 0, TOKENTYPE_NONE, NULL } |
bbf60fe6 DM |
381 | }; |
382 | ||
6154021b | 383 | /* dump the returned token in rv, plus any optional arg in pl_yylval */ |
998054bd | 384 | |
bbf60fe6 | 385 | STATIC int |
704d4215 | 386 | S_tokereport(pTHX_ I32 rv, const YYSTYPE* lvalp) |
bbf60fe6 | 387 | { |
7918f24d NC |
388 | PERL_ARGS_ASSERT_TOKEREPORT; |
389 | ||
bbf60fe6 | 390 | if (DEBUG_T_TEST) { |
bd61b366 | 391 | const char *name = NULL; |
bbf60fe6 | 392 | enum token_type type = TOKENTYPE_NONE; |
f54cb97a | 393 | const struct debug_tokens *p; |
396482e1 | 394 | SV* const report = newSVpvs("<== "); |
bbf60fe6 | 395 | |
f54cb97a | 396 | for (p = debug_tokens; p->token; p++) { |
bbf60fe6 DM |
397 | if (p->token == (int)rv) { |
398 | name = p->name; | |
399 | type = p->type; | |
400 | break; | |
401 | } | |
402 | } | |
403 | if (name) | |
54667de8 | 404 | Perl_sv_catpv(aTHX_ report, name); |
239f83d5 | 405 | else if (isGRAPH(rv)) |
4ebc7986 | 406 | { |
bbf60fe6 | 407 | Perl_sv_catpvf(aTHX_ report, "'%c'", (char)rv); |
4ebc7986 FC |
408 | if ((char)rv == 'p') |
409 | sv_catpvs(report, " (pending identifier)"); | |
410 | } | |
bbf60fe6 | 411 | else if (!rv) |
396482e1 | 412 | sv_catpvs(report, "EOF"); |
bbf60fe6 DM |
413 | else |
414 | Perl_sv_catpvf(aTHX_ report, "?? %"IVdf, (IV)rv); | |
415 | switch (type) { | |
416 | case TOKENTYPE_NONE: | |
bbf60fe6 DM |
417 | break; |
418 | case TOKENTYPE_IVAL: | |
704d4215 | 419 | Perl_sv_catpvf(aTHX_ report, "(ival=%"IVdf")", (IV)lvalp->ival); |
bbf60fe6 DM |
420 | break; |
421 | case TOKENTYPE_OPNUM: | |
422 | Perl_sv_catpvf(aTHX_ report, "(ival=op_%s)", | |
704d4215 | 423 | PL_op_name[lvalp->ival]); |
bbf60fe6 DM |
424 | break; |
425 | case TOKENTYPE_PVAL: | |
704d4215 | 426 | Perl_sv_catpvf(aTHX_ report, "(pval=\"%s\")", lvalp->pval); |
bbf60fe6 DM |
427 | break; |
428 | case TOKENTYPE_OPVAL: | |
704d4215 | 429 | if (lvalp->opval) { |
401441c0 | 430 | Perl_sv_catpvf(aTHX_ report, "(opval=op_%s)", |
704d4215 GG |
431 | PL_op_name[lvalp->opval->op_type]); |
432 | if (lvalp->opval->op_type == OP_CONST) { | |
b6007c36 | 433 | Perl_sv_catpvf(aTHX_ report, " %s", |
704d4215 | 434 | SvPEEK(cSVOPx_sv(lvalp->opval))); |
b6007c36 DM |
435 | } |
436 | ||
437 | } | |
401441c0 | 438 | else |
396482e1 | 439 | sv_catpvs(report, "(opval=null)"); |
bbf60fe6 DM |
440 | break; |
441 | } | |
b6007c36 | 442 | PerlIO_printf(Perl_debug_log, "### %s\n\n", SvPV_nolen_const(report)); |
bbf60fe6 DM |
443 | }; |
444 | return (int)rv; | |
998054bd SC |
445 | } |
446 | ||
b6007c36 DM |
447 | |
448 | /* print the buffer with suitable escapes */ | |
449 | ||
450 | STATIC void | |
15f169a1 | 451 | S_printbuf(pTHX_ const char *const fmt, const char *const s) |
b6007c36 | 452 | { |
396482e1 | 453 | SV* const tmp = newSVpvs(""); |
7918f24d NC |
454 | |
455 | PERL_ARGS_ASSERT_PRINTBUF; | |
456 | ||
5d37acd6 | 457 | GCC_DIAG_IGNORE(-Wformat-nonliteral); /* fmt checked by caller */ |
b6007c36 | 458 | PerlIO_printf(Perl_debug_log, fmt, pv_display(tmp, s, strlen(s), 0, 60)); |
5d37acd6 | 459 | GCC_DIAG_RESTORE; |
b6007c36 DM |
460 | SvREFCNT_dec(tmp); |
461 | } | |
462 | ||
8fa7f367 JH |
463 | #endif |
464 | ||
8290c323 NC |
465 | static int |
466 | S_deprecate_commaless_var_list(pTHX) { | |
467 | PL_expect = XTERM; | |
468 | deprecate("comma-less variable list"); | |
469 | return REPORT(','); /* grandfather non-comma-format format */ | |
470 | } | |
471 | ||
ffb4593c NT |
472 | /* |
473 | * S_ao | |
474 | * | |
f393a21a FC |
475 | * This subroutine looks for an '=' next to the operator that has just been |
476 | * parsed and turns it into an ASSIGNOP if it finds one. | |
ffb4593c NT |
477 | */ |
478 | ||
76e3520e | 479 | STATIC int |
cea2e8a9 | 480 | S_ao(pTHX_ int toketype) |
a0d0e21e | 481 | { |
3280af22 NIS |
482 | if (*PL_bufptr == '=') { |
483 | PL_bufptr++; | |
a0d0e21e | 484 | if (toketype == ANDAND) |
6154021b | 485 | pl_yylval.ival = OP_ANDASSIGN; |
a0d0e21e | 486 | else if (toketype == OROR) |
6154021b | 487 | pl_yylval.ival = OP_ORASSIGN; |
c963b151 | 488 | else if (toketype == DORDOR) |
6154021b | 489 | pl_yylval.ival = OP_DORASSIGN; |
a0d0e21e LW |
490 | toketype = ASSIGNOP; |
491 | } | |
b1764551 | 492 | return REPORT(toketype); |
a0d0e21e LW |
493 | } |
494 | ||
ffb4593c NT |
495 | /* |
496 | * S_no_op | |
497 | * When Perl expects an operator and finds something else, no_op | |
498 | * prints the warning. It always prints "<something> found where | |
499 | * operator expected. It prints "Missing semicolon on previous line?" | |
500 | * if the surprise occurs at the start of the line. "do you need to | |
501 | * predeclare ..." is printed out for code like "sub bar; foo bar $x" | |
502 | * where the compiler doesn't know if foo is a method call or a function. | |
503 | * It prints "Missing operator before end of line" if there's nothing | |
504 | * after the missing operator, or "... before <...>" if there is something | |
505 | * after the missing operator. | |
488bc579 FC |
506 | * |
507 | * PL_bufptr is expected to point to the start of the thing that was found, | |
508 | * and s after the next token or partial token. | |
ffb4593c NT |
509 | */ |
510 | ||
76e3520e | 511 | STATIC void |
15f169a1 | 512 | S_no_op(pTHX_ const char *const what, char *s) |
463ee0b2 | 513 | { |
9d4ba2ae AL |
514 | char * const oldbp = PL_bufptr; |
515 | const bool is_first = (PL_oldbufptr == PL_linestart); | |
68dc0745 | 516 | |
7918f24d NC |
517 | PERL_ARGS_ASSERT_NO_OP; |
518 | ||
1189a94a GS |
519 | if (!s) |
520 | s = oldbp; | |
07c798fb | 521 | else |
1189a94a | 522 | PL_bufptr = s; |
734ab321 | 523 | yywarn(Perl_form(aTHX_ "%s found where operator expected", what), UTF ? SVf_UTF8 : 0); |
56da5a46 RGS |
524 | if (ckWARN_d(WARN_SYNTAX)) { |
525 | if (is_first) | |
526 | Perl_warner(aTHX_ packWARN(WARN_SYNTAX), | |
527 | "\t(Missing semicolon on previous line?)\n"); | |
528 | else if (PL_oldoldbufptr && isIDFIRST_lazy_if(PL_oldoldbufptr,UTF)) { | |
f54cb97a | 529 | const char *t; |
8a2bca12 | 530 | for (t = PL_oldoldbufptr; (isWORDCHAR_lazy_if(t,UTF) || *t == ':'); |
734ab321 | 531 | t += UTF ? UTF8SKIP(t) : 1) |
c35e046a | 532 | NOOP; |
56da5a46 RGS |
533 | if (t < PL_bufptr && isSPACE(*t)) |
534 | Perl_warner(aTHX_ packWARN(WARN_SYNTAX), | |
b17a0679 FC |
535 | "\t(Do you need to predeclare %"UTF8f"?)\n", |
536 | UTF8fARG(UTF, t - PL_oldoldbufptr, PL_oldoldbufptr)); | |
56da5a46 RGS |
537 | } |
538 | else { | |
539 | assert(s >= oldbp); | |
540 | Perl_warner(aTHX_ packWARN(WARN_SYNTAX), | |
b17a0679 FC |
541 | "\t(Missing operator before %"UTF8f"?)\n", |
542 | UTF8fARG(UTF, s - oldbp, oldbp)); | |
56da5a46 | 543 | } |
07c798fb | 544 | } |
3280af22 | 545 | PL_bufptr = oldbp; |
8990e307 LW |
546 | } |
547 | ||
ffb4593c NT |
548 | /* |
549 | * S_missingterm | |
550 | * Complain about missing quote/regexp/heredoc terminator. | |
d4c19fe8 | 551 | * If it's called with NULL then it cauterizes the line buffer. |
ffb4593c NT |
552 | * If we're in a delimited string and the delimiter is a control |
553 | * character, it's reformatted into a two-char sequence like ^C. | |
554 | * This is fatal. | |
555 | */ | |
556 | ||
76e3520e | 557 | STATIC void |
cea2e8a9 | 558 | S_missingterm(pTHX_ char *s) |
8990e307 LW |
559 | { |
560 | char tmpbuf[3]; | |
561 | char q; | |
562 | if (s) { | |
9d4ba2ae | 563 | char * const nl = strrchr(s,'\n'); |
d2719217 | 564 | if (nl) |
8990e307 LW |
565 | *nl = '\0'; |
566 | } | |
ca8b19a7 | 567 | else if ((U8) PL_multi_close < 32) { |
8990e307 | 568 | *tmpbuf = '^'; |
585ec06d | 569 | tmpbuf[1] = (char)toCTRL(PL_multi_close); |
8990e307 LW |
570 | tmpbuf[2] = '\0'; |
571 | s = tmpbuf; | |
572 | } | |
573 | else { | |
eb160463 | 574 | *tmpbuf = (char)PL_multi_close; |
8990e307 LW |
575 | tmpbuf[1] = '\0'; |
576 | s = tmpbuf; | |
577 | } | |
578 | q = strchr(s,'"') ? '\'' : '"'; | |
cea2e8a9 | 579 | Perl_croak(aTHX_ "Can't find string terminator %c%s%c anywhere before EOF",q,s,q); |
463ee0b2 | 580 | } |
79072805 | 581 | |
dd0ac2b9 FC |
582 | #include "feature.h" |
583 | ||
0d863452 | 584 | /* |
0d863452 RH |
585 | * Check whether the named feature is enabled. |
586 | */ | |
26ea9e12 | 587 | bool |
3fff3427 | 588 | Perl_feature_is_enabled(pTHX_ const char *const name, STRLEN namelen) |
0d863452 | 589 | { |
4a731d7b | 590 | char he_name[8 + MAX_FEATURE_LEN] = "feature_"; |
7918f24d NC |
591 | |
592 | PERL_ARGS_ASSERT_FEATURE_IS_ENABLED; | |
ca4d40c4 FC |
593 | |
594 | assert(CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_CUSTOM); | |
7918f24d | 595 | |
26ea9e12 NC |
596 | if (namelen > MAX_FEATURE_LEN) |
597 | return FALSE; | |
3fff3427 | 598 | memcpy(&he_name[8], name, namelen); |
7d69d4a6 | 599 | |
c8ca97b0 NC |
600 | return cBOOL(cop_hints_fetch_pvn(PL_curcop, he_name, 8 + namelen, 0, |
601 | REFCOUNTED_HE_EXISTS)); | |
0d863452 RH |
602 | } |
603 | ||
ffb4593c | 604 | /* |
9cbb5ea2 GS |
605 | * experimental text filters for win32 carriage-returns, utf16-to-utf8 and |
606 | * utf16-to-utf8-reversed. | |
ffb4593c NT |
607 | */ |
608 | ||
c39cd008 GS |
609 | #ifdef PERL_CR_FILTER |
610 | static void | |
611 | strip_return(SV *sv) | |
612 | { | |
eb578fdb KW |
613 | const char *s = SvPVX_const(sv); |
614 | const char * const e = s + SvCUR(sv); | |
7918f24d NC |
615 | |
616 | PERL_ARGS_ASSERT_STRIP_RETURN; | |
617 | ||
c39cd008 GS |
618 | /* outer loop optimized to do nothing if there are no CR-LFs */ |
619 | while (s < e) { | |
620 | if (*s++ == '\r' && *s == '\n') { | |
621 | /* hit a CR-LF, need to copy the rest */ | |
eb578fdb | 622 | char *d = s - 1; |
c39cd008 GS |
623 | *d++ = *s++; |
624 | while (s < e) { | |
625 | if (*s == '\r' && s[1] == '\n') | |
626 | s++; | |
627 | *d++ = *s++; | |
628 | } | |
629 | SvCUR(sv) -= s - d; | |
630 | return; | |
631 | } | |
632 | } | |
633 | } | |
a868473f | 634 | |
76e3520e | 635 | STATIC I32 |
c39cd008 | 636 | S_cr_textfilter(pTHX_ int idx, SV *sv, int maxlen) |
a868473f | 637 | { |
f54cb97a | 638 | const I32 count = FILTER_READ(idx+1, sv, maxlen); |
c39cd008 GS |
639 | if (count > 0 && !maxlen) |
640 | strip_return(sv); | |
641 | return count; | |
a868473f NIS |
642 | } |
643 | #endif | |
644 | ||
ffb4593c | 645 | /* |
8eaa0acf Z |
646 | =for apidoc Amx|void|lex_start|SV *line|PerlIO *rsfp|U32 flags |
647 | ||
648 | Creates and initialises a new lexer/parser state object, supplying | |
649 | a context in which to lex and parse from a new source of Perl code. | |
650 | A pointer to the new state object is placed in L</PL_parser>. An entry | |
651 | is made on the save stack so that upon unwinding the new state object | |
652 | will be destroyed and the former value of L</PL_parser> will be restored. | |
653 | Nothing else need be done to clean up the parsing context. | |
654 | ||
655 | The code to be parsed comes from I<line> and I<rsfp>. I<line>, if | |
656 | non-null, provides a string (in SV form) containing code to be parsed. | |
657 | A copy of the string is made, so subsequent modification of I<line> | |
658 | does not affect parsing. I<rsfp>, if non-null, provides an input stream | |
659 | from which code will be read to be parsed. If both are non-null, the | |
660 | code in I<line> comes first and must consist of complete lines of input, | |
661 | and I<rsfp> supplies the remainder of the source. | |
662 | ||
e368b3bd FC |
663 | The I<flags> parameter is reserved for future use. Currently it is only |
664 | used by perl internally, so extensions should always pass zero. | |
8eaa0acf Z |
665 | |
666 | =cut | |
667 | */ | |
ffb4593c | 668 | |
27fcb6ee | 669 | /* LEX_START_SAME_FILTER indicates that this is not a new file, so it |
87606032 NC |
670 | can share filters with the current parser. |
671 | LEX_START_DONT_CLOSE indicates that the file handle wasn't opened by the | |
672 | caller, hence isn't owned by the parser, so shouldn't be closed on parser | |
673 | destruction. This is used to handle the case of defaulting to reading the | |
674 | script from the standard input because no filename was given on the command | |
675 | line (without getting confused by situation where STDIN has been closed, so | |
676 | the script handle is opened on fd 0) */ | |
27fcb6ee | 677 | |
a0d0e21e | 678 | void |
8eaa0acf | 679 | Perl_lex_start(pTHX_ SV *line, PerlIO *rsfp, U32 flags) |
79072805 | 680 | { |
6ef55633 | 681 | const char *s = NULL; |
5486870f | 682 | yy_parser *parser, *oparser; |
60d63348 | 683 | if (flags && flags & ~LEX_START_FLAGS) |
8eaa0acf | 684 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_start"); |
acdf0a21 DM |
685 | |
686 | /* create and initialise a parser */ | |
687 | ||
199e78b7 | 688 | Newxz(parser, 1, yy_parser); |
5486870f | 689 | parser->old_parser = oparser = PL_parser; |
acdf0a21 DM |
690 | PL_parser = parser; |
691 | ||
28ac2b49 Z |
692 | parser->stack = NULL; |
693 | parser->ps = NULL; | |
694 | parser->stack_size = 0; | |
acdf0a21 | 695 | |
e3abe207 DM |
696 | /* on scope exit, free this parser and restore any outer one */ |
697 | SAVEPARSER(parser); | |
7c4baf47 | 698 | parser->saved_curcop = PL_curcop; |
e3abe207 | 699 | |
acdf0a21 | 700 | /* initialise lexer state */ |
8990e307 | 701 | |
fb205e7a | 702 | parser->nexttoke = 0; |
ca4cfd28 | 703 | parser->error_count = oparser ? oparser->error_count : 0; |
7f1c3e8c | 704 | parser->copline = parser->preambling = NOLINE; |
5afb0a62 | 705 | parser->lex_state = LEX_NORMAL; |
c2598295 | 706 | parser->expect = XSTATE; |
2f9285f8 | 707 | parser->rsfp = rsfp; |
27fcb6ee FC |
708 | parser->rsfp_filters = |
709 | !(flags & LEX_START_SAME_FILTER) || !oparser | |
d3cd8e11 FC |
710 | ? NULL |
711 | : MUTABLE_AV(SvREFCNT_inc( | |
712 | oparser->rsfp_filters | |
713 | ? oparser->rsfp_filters | |
714 | : (oparser->rsfp_filters = newAV()) | |
715 | )); | |
2f9285f8 | 716 | |
199e78b7 DM |
717 | Newx(parser->lex_brackstack, 120, char); |
718 | Newx(parser->lex_casestack, 12, char); | |
719 | *parser->lex_casestack = '\0'; | |
d794b522 | 720 | Newxz(parser->lex_shared, 1, LEXSHARED); |
02b34bbe | 721 | |
10efb74f | 722 | if (line) { |
0528fd32 | 723 | STRLEN len; |
10efb74f | 724 | s = SvPV_const(line, len); |
0abcdfa4 FC |
725 | parser->linestr = flags & LEX_START_COPIED |
726 | ? SvREFCNT_inc_simple_NN(line) | |
727 | : newSVpvn_flags(s, len, SvUTF8(line)); | |
bf1b738b | 728 | sv_catpvn(parser->linestr, "\n;", rsfp ? 1 : 2); |
0abcdfa4 | 729 | } else { |
bf1b738b | 730 | parser->linestr = newSVpvn("\n;", rsfp ? 1 : 2); |
8990e307 | 731 | } |
f06b5848 DM |
732 | parser->oldoldbufptr = |
733 | parser->oldbufptr = | |
734 | parser->bufptr = | |
735 | parser->linestart = SvPVX(parser->linestr); | |
736 | parser->bufend = parser->bufptr + SvCUR(parser->linestr); | |
737 | parser->last_lop = parser->last_uni = NULL; | |
b54f893d | 738 | |
6d59e610 | 739 | STATIC_ASSERT_STMT(FITS_IN_8_BITS(LEX_IGNORE_UTF8_HINTS|LEX_EVALBYTES |
b54f893d KW |
740 | |LEX_DONT_CLOSE_RSFP)); |
741 | parser->lex_flags = (U8) (flags & (LEX_IGNORE_UTF8_HINTS|LEX_EVALBYTES | |
742 | |LEX_DONT_CLOSE_RSFP)); | |
737c24fc | 743 | |
60d63348 | 744 | parser->in_pod = parser->filtered = 0; |
79072805 | 745 | } |
a687059c | 746 | |
e3abe207 DM |
747 | |
748 | /* delete a parser object */ | |
749 | ||
750 | void | |
751 | Perl_parser_free(pTHX_ const yy_parser *parser) | |
752 | { | |
7918f24d NC |
753 | PERL_ARGS_ASSERT_PARSER_FREE; |
754 | ||
7c4baf47 | 755 | PL_curcop = parser->saved_curcop; |
bdc0bf6f DM |
756 | SvREFCNT_dec(parser->linestr); |
757 | ||
87606032 | 758 | if (PL_parser->lex_flags & LEX_DONT_CLOSE_RSFP) |
2f9285f8 | 759 | PerlIO_clearerr(parser->rsfp); |
799361c3 SH |
760 | else if (parser->rsfp && (!parser->old_parser || |
761 | (parser->old_parser && parser->rsfp != parser->old_parser->rsfp))) | |
2f9285f8 | 762 | PerlIO_close(parser->rsfp); |
5486870f | 763 | SvREFCNT_dec(parser->rsfp_filters); |
10002bc1 FC |
764 | SvREFCNT_dec(parser->lex_stuff); |
765 | SvREFCNT_dec(parser->sublex_info.repl); | |
3ac7ff8f FC |
766 | |
767 | Safefree(parser->lex_brackstack); | |
768 | Safefree(parser->lex_casestack); | |
769 | Safefree(parser->lex_shared); | |
770 | PL_parser = parser->old_parser; | |
771 | Safefree(parser); | |
772 | } | |
773 | ||
774 | void | |
775 | Perl_parser_free_nexttoke_ops(pTHX_ yy_parser *parser, OPSLAB *slab) | |
776 | { | |
3ac7ff8f | 777 | I32 nexttoke = parser->nexttoke; |
3ac7ff8f | 778 | PERL_ARGS_ASSERT_PARSER_FREE_NEXTTOKE_OPS; |
3ce3dcd9 | 779 | while (nexttoke--) { |
3ac7ff8f FC |
780 | if (S_is_opval_token(parser->nexttype[nexttoke] & 0xffff) |
781 | && parser->nextval[nexttoke].opval | |
782 | && parser->nextval[nexttoke].opval->op_slabbed | |
783 | && OpSLAB(parser->nextval[nexttoke].opval) == slab) { | |
3ce3dcd9 | 784 | op_free(parser->nextval[nexttoke].opval); |
3ac7ff8f FC |
785 | parser->nextval[nexttoke].opval = NULL; |
786 | } | |
3ce3dcd9 | 787 | } |
e3abe207 DM |
788 | } |
789 | ||
790 | ||
ffb4593c | 791 | /* |
f0e67a1d Z |
792 | =for apidoc AmxU|SV *|PL_parser-E<gt>linestr |
793 | ||
794 | Buffer scalar containing the chunk currently under consideration of the | |
795 | text currently being lexed. This is always a plain string scalar (for | |
796 | which C<SvPOK> is true). It is not intended to be used as a scalar by | |
797 | normal scalar means; instead refer to the buffer directly by the pointer | |
798 | variables described below. | |
799 | ||
800 | The lexer maintains various C<char*> pointers to things in the | |
801 | C<PL_parser-E<gt>linestr> buffer. If C<PL_parser-E<gt>linestr> is ever | |
802 | reallocated, all of these pointers must be updated. Don't attempt to | |
803 | do this manually, but rather use L</lex_grow_linestr> if you need to | |
804 | reallocate the buffer. | |
805 | ||
806 | The content of the text chunk in the buffer is commonly exactly one | |
807 | complete line of input, up to and including a newline terminator, | |
808 | but there are situations where it is otherwise. The octets of the | |
809 | buffer may be intended to be interpreted as either UTF-8 or Latin-1. | |
810 | The function L</lex_bufutf8> tells you which. Do not use the C<SvUTF8> | |
811 | flag on this scalar, which may disagree with it. | |
812 | ||
813 | For direct examination of the buffer, the variable | |
814 | L</PL_parser-E<gt>bufend> points to the end of the buffer. The current | |
815 | lexing position is pointed to by L</PL_parser-E<gt>bufptr>. Direct use | |
816 | of these pointers is usually preferable to examination of the scalar | |
817 | through normal scalar means. | |
818 | ||
819 | =for apidoc AmxU|char *|PL_parser-E<gt>bufend | |
820 | ||
821 | Direct pointer to the end of the chunk of text currently being lexed, the | |
822 | end of the lexer buffer. This is equal to C<SvPVX(PL_parser-E<gt>linestr) | |
6602b933 | 823 | + SvCUR(PL_parser-E<gt>linestr)>. A C<NUL> character (zero octet) is |
f0e67a1d Z |
824 | always located at the end of the buffer, and does not count as part of |
825 | the buffer's contents. | |
826 | ||
827 | =for apidoc AmxU|char *|PL_parser-E<gt>bufptr | |
828 | ||
829 | Points to the current position of lexing inside the lexer buffer. | |
830 | Characters around this point may be freely examined, within | |
831 | the range delimited by C<SvPVX(L</PL_parser-E<gt>linestr>)> and | |
832 | L</PL_parser-E<gt>bufend>. The octets of the buffer may be intended to be | |
833 | interpreted as either UTF-8 or Latin-1, as indicated by L</lex_bufutf8>. | |
834 | ||
835 | Lexing code (whether in the Perl core or not) moves this pointer past | |
836 | the characters that it consumes. It is also expected to perform some | |
837 | bookkeeping whenever a newline character is consumed. This movement | |
838 | can be more conveniently performed by the function L</lex_read_to>, | |
839 | which handles newlines appropriately. | |
840 | ||
841 | Interpretation of the buffer's octets can be abstracted out by | |
842 | using the slightly higher-level functions L</lex_peek_unichar> and | |
843 | L</lex_read_unichar>. | |
844 | ||
845 | =for apidoc AmxU|char *|PL_parser-E<gt>linestart | |
846 | ||
847 | Points to the start of the current line inside the lexer buffer. | |
848 | This is useful for indicating at which column an error occurred, and | |
849 | not much else. This must be updated by any lexing code that consumes | |
850 | a newline; the function L</lex_read_to> handles this detail. | |
851 | ||
852 | =cut | |
853 | */ | |
854 | ||
855 | /* | |
856 | =for apidoc Amx|bool|lex_bufutf8 | |
857 | ||
858 | Indicates whether the octets in the lexer buffer | |
859 | (L</PL_parser-E<gt>linestr>) should be interpreted as the UTF-8 encoding | |
860 | of Unicode characters. If not, they should be interpreted as Latin-1 | |
861 | characters. This is analogous to the C<SvUTF8> flag for scalars. | |
862 | ||
863 | In UTF-8 mode, it is not guaranteed that the lexer buffer actually | |
864 | contains valid UTF-8. Lexing code must be robust in the face of invalid | |
865 | encoding. | |
866 | ||
867 | The actual C<SvUTF8> flag of the L</PL_parser-E<gt>linestr> scalar | |
868 | is significant, but not the whole story regarding the input character | |
869 | encoding. Normally, when a file is being read, the scalar contains octets | |
870 | and its C<SvUTF8> flag is off, but the octets should be interpreted as | |
871 | UTF-8 if the C<use utf8> pragma is in effect. During a string eval, | |
872 | however, the scalar may have the C<SvUTF8> flag on, and in this case its | |
873 | octets should be interpreted as UTF-8 unless the C<use bytes> pragma | |
874 | is in effect. This logic may change in the future; use this function | |
875 | instead of implementing the logic yourself. | |
876 | ||
877 | =cut | |
878 | */ | |
879 | ||
880 | bool | |
881 | Perl_lex_bufutf8(pTHX) | |
882 | { | |
883 | return UTF; | |
884 | } | |
885 | ||
886 | /* | |
887 | =for apidoc Amx|char *|lex_grow_linestr|STRLEN len | |
888 | ||
889 | Reallocates the lexer buffer (L</PL_parser-E<gt>linestr>) to accommodate | |
6602b933 | 890 | at least I<len> octets (including terminating C<NUL>). Returns a |
f0e67a1d Z |
891 | pointer to the reallocated buffer. This is necessary before making |
892 | any direct modification of the buffer that would increase its length. | |
893 | L</lex_stuff_pvn> provides a more convenient way to insert text into | |
894 | the buffer. | |
895 | ||
896 | Do not use C<SvGROW> or C<sv_grow> directly on C<PL_parser-E<gt>linestr>; | |
897 | this function updates all of the lexer's variables that point directly | |
898 | into the buffer. | |
899 | ||
900 | =cut | |
901 | */ | |
902 | ||
903 | char * | |
904 | Perl_lex_grow_linestr(pTHX_ STRLEN len) | |
905 | { | |
906 | SV *linestr; | |
907 | char *buf; | |
908 | STRLEN bufend_pos, bufptr_pos, oldbufptr_pos, oldoldbufptr_pos; | |
c7641931 | 909 | STRLEN linestart_pos, last_uni_pos, last_lop_pos, re_eval_start_pos; |
f0e67a1d Z |
910 | linestr = PL_parser->linestr; |
911 | buf = SvPVX(linestr); | |
912 | if (len <= SvLEN(linestr)) | |
913 | return buf; | |
914 | bufend_pos = PL_parser->bufend - buf; | |
915 | bufptr_pos = PL_parser->bufptr - buf; | |
916 | oldbufptr_pos = PL_parser->oldbufptr - buf; | |
917 | oldoldbufptr_pos = PL_parser->oldoldbufptr - buf; | |
918 | linestart_pos = PL_parser->linestart - buf; | |
919 | last_uni_pos = PL_parser->last_uni ? PL_parser->last_uni - buf : 0; | |
920 | last_lop_pos = PL_parser->last_lop ? PL_parser->last_lop - buf : 0; | |
3328ab5a FC |
921 | re_eval_start_pos = PL_parser->lex_shared->re_eval_start ? |
922 | PL_parser->lex_shared->re_eval_start - buf : 0; | |
c7641931 | 923 | |
f0e67a1d | 924 | buf = sv_grow(linestr, len); |
c7641931 | 925 | |
f0e67a1d Z |
926 | PL_parser->bufend = buf + bufend_pos; |
927 | PL_parser->bufptr = buf + bufptr_pos; | |
928 | PL_parser->oldbufptr = buf + oldbufptr_pos; | |
929 | PL_parser->oldoldbufptr = buf + oldoldbufptr_pos; | |
930 | PL_parser->linestart = buf + linestart_pos; | |
931 | if (PL_parser->last_uni) | |
932 | PL_parser->last_uni = buf + last_uni_pos; | |
933 | if (PL_parser->last_lop) | |
934 | PL_parser->last_lop = buf + last_lop_pos; | |
3328ab5a FC |
935 | if (PL_parser->lex_shared->re_eval_start) |
936 | PL_parser->lex_shared->re_eval_start = buf + re_eval_start_pos; | |
f0e67a1d Z |
937 | return buf; |
938 | } | |
939 | ||
940 | /* | |
83aa740e | 941 | =for apidoc Amx|void|lex_stuff_pvn|const char *pv|STRLEN len|U32 flags |
f0e67a1d Z |
942 | |
943 | Insert characters into the lexer buffer (L</PL_parser-E<gt>linestr>), | |
944 | immediately after the current lexing point (L</PL_parser-E<gt>bufptr>), | |
945 | reallocating the buffer if necessary. This means that lexing code that | |
946 | runs later will see the characters as if they had appeared in the input. | |
947 | It is not recommended to do this as part of normal parsing, and most | |
948 | uses of this facility run the risk of the inserted characters being | |
949 | interpreted in an unintended manner. | |
950 | ||
951 | The string to be inserted is represented by I<len> octets starting | |
952 | at I<pv>. These octets are interpreted as either UTF-8 or Latin-1, | |
953 | according to whether the C<LEX_STUFF_UTF8> flag is set in I<flags>. | |
954 | The characters are recoded for the lexer buffer, according to how the | |
955 | buffer is currently being interpreted (L</lex_bufutf8>). If a string | |
9dcc53ea | 956 | to be inserted is available as a Perl scalar, the L</lex_stuff_sv> |
f0e67a1d Z |
957 | function is more convenient. |
958 | ||
959 | =cut | |
960 | */ | |
961 | ||
962 | void | |
83aa740e | 963 | Perl_lex_stuff_pvn(pTHX_ const char *pv, STRLEN len, U32 flags) |
f0e67a1d | 964 | { |
749123ff | 965 | dVAR; |
f0e67a1d Z |
966 | char *bufptr; |
967 | PERL_ARGS_ASSERT_LEX_STUFF_PVN; | |
968 | if (flags & ~(LEX_STUFF_UTF8)) | |
969 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_stuff_pvn"); | |
970 | if (UTF) { | |
971 | if (flags & LEX_STUFF_UTF8) { | |
972 | goto plain_copy; | |
973 | } else { | |
54d004e8 | 974 | STRLEN highhalf = 0; /* Count of variants */ |
83aa740e | 975 | const char *p, *e = pv+len; |
54d004e8 KW |
976 | for (p = pv; p != e; p++) { |
977 | if (! UTF8_IS_INVARIANT(*p)) { | |
978 | highhalf++; | |
979 | } | |
980 | } | |
f0e67a1d Z |
981 | if (!highhalf) |
982 | goto plain_copy; | |
983 | lex_grow_linestr(SvCUR(PL_parser->linestr)+1+len+highhalf); | |
984 | bufptr = PL_parser->bufptr; | |
985 | Move(bufptr, bufptr+len+highhalf, PL_parser->bufend+1-bufptr, char); | |
255fdf19 Z |
986 | SvCUR_set(PL_parser->linestr, |
987 | SvCUR(PL_parser->linestr) + len+highhalf); | |
f0e67a1d Z |
988 | PL_parser->bufend += len+highhalf; |
989 | for (p = pv; p != e; p++) { | |
990 | U8 c = (U8)*p; | |
54d004e8 KW |
991 | if (! UTF8_IS_INVARIANT(c)) { |
992 | *bufptr++ = UTF8_TWO_BYTE_HI(c); | |
993 | *bufptr++ = UTF8_TWO_BYTE_LO(c); | |
f0e67a1d Z |
994 | } else { |
995 | *bufptr++ = (char)c; | |
996 | } | |
997 | } | |
998 | } | |
999 | } else { | |
1000 | if (flags & LEX_STUFF_UTF8) { | |
1001 | STRLEN highhalf = 0; | |
83aa740e | 1002 | const char *p, *e = pv+len; |
f0e67a1d Z |
1003 | for (p = pv; p != e; p++) { |
1004 | U8 c = (U8)*p; | |
54d004e8 | 1005 | if (UTF8_IS_ABOVE_LATIN1(c)) { |
f0e67a1d Z |
1006 | Perl_croak(aTHX_ "Lexing code attempted to stuff " |
1007 | "non-Latin-1 character into Latin-1 input"); | |
54d004e8 | 1008 | } else if (UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(p, e)) { |
f0e67a1d Z |
1009 | p++; |
1010 | highhalf++; | |
54d004e8 | 1011 | } else if (! UTF8_IS_INVARIANT(c)) { |
f0e67a1d Z |
1012 | /* malformed UTF-8 */ |
1013 | ENTER; | |
1014 | SAVESPTR(PL_warnhook); | |
1015 | PL_warnhook = PERL_WARNHOOK_FATAL; | |
c80e42f3 | 1016 | utf8n_to_uvchr((U8*)p, e-p, NULL, 0); |
f0e67a1d Z |
1017 | LEAVE; |
1018 | } | |
1019 | } | |
1020 | if (!highhalf) | |
1021 | goto plain_copy; | |
1022 | lex_grow_linestr(SvCUR(PL_parser->linestr)+1+len-highhalf); | |
1023 | bufptr = PL_parser->bufptr; | |
1024 | Move(bufptr, bufptr+len-highhalf, PL_parser->bufend+1-bufptr, char); | |
255fdf19 Z |
1025 | SvCUR_set(PL_parser->linestr, |
1026 | SvCUR(PL_parser->linestr) + len-highhalf); | |
f0e67a1d | 1027 | PL_parser->bufend += len-highhalf; |
54d004e8 KW |
1028 | p = pv; |
1029 | while (p < e) { | |
1030 | if (UTF8_IS_INVARIANT(*p)) { | |
1031 | *bufptr++ = *p; | |
1032 | p++; | |
f0e67a1d | 1033 | } |
54d004e8 KW |
1034 | else { |
1035 | assert(p < e -1 ); | |
94bb8c36 | 1036 | *bufptr++ = TWO_BYTE_UTF8_TO_NATIVE(*p, *(p+1)); |
54d004e8 KW |
1037 | p += 2; |
1038 | } | |
f0e67a1d Z |
1039 | } |
1040 | } else { | |
54d004e8 | 1041 | plain_copy: |
f0e67a1d Z |
1042 | lex_grow_linestr(SvCUR(PL_parser->linestr)+1+len); |
1043 | bufptr = PL_parser->bufptr; | |
1044 | Move(bufptr, bufptr+len, PL_parser->bufend+1-bufptr, char); | |
255fdf19 | 1045 | SvCUR_set(PL_parser->linestr, SvCUR(PL_parser->linestr) + len); |
f0e67a1d Z |
1046 | PL_parser->bufend += len; |
1047 | Copy(pv, bufptr, len, char); | |
1048 | } | |
1049 | } | |
1050 | } | |
1051 | ||
1052 | /* | |
9dcc53ea Z |
1053 | =for apidoc Amx|void|lex_stuff_pv|const char *pv|U32 flags |
1054 | ||
1055 | Insert characters into the lexer buffer (L</PL_parser-E<gt>linestr>), | |
1056 | immediately after the current lexing point (L</PL_parser-E<gt>bufptr>), | |
1057 | reallocating the buffer if necessary. This means that lexing code that | |
1058 | runs later will see the characters as if they had appeared in the input. | |
1059 | It is not recommended to do this as part of normal parsing, and most | |
1060 | uses of this facility run the risk of the inserted characters being | |
1061 | interpreted in an unintended manner. | |
1062 | ||
1063 | The string to be inserted is represented by octets starting at I<pv> | |
1064 | and continuing to the first nul. These octets are interpreted as either | |
1065 | UTF-8 or Latin-1, according to whether the C<LEX_STUFF_UTF8> flag is set | |
1066 | in I<flags>. The characters are recoded for the lexer buffer, according | |
1067 | to how the buffer is currently being interpreted (L</lex_bufutf8>). | |
1068 | If it is not convenient to nul-terminate a string to be inserted, the | |
1069 | L</lex_stuff_pvn> function is more appropriate. | |
1070 | ||
1071 | =cut | |
1072 | */ | |
1073 | ||
1074 | void | |
1075 | Perl_lex_stuff_pv(pTHX_ const char *pv, U32 flags) | |
1076 | { | |
1077 | PERL_ARGS_ASSERT_LEX_STUFF_PV; | |
1078 | lex_stuff_pvn(pv, strlen(pv), flags); | |
1079 | } | |
1080 | ||
1081 | /* | |
f0e67a1d Z |
1082 | =for apidoc Amx|void|lex_stuff_sv|SV *sv|U32 flags |
1083 | ||
1084 | Insert characters into the lexer buffer (L</PL_parser-E<gt>linestr>), | |
1085 | immediately after the current lexing point (L</PL_parser-E<gt>bufptr>), | |
1086 | reallocating the buffer if necessary. This means that lexing code that | |
1087 | runs later will see the characters as if they had appeared in the input. | |
1088 | It is not recommended to do this as part of normal parsing, and most | |
1089 | uses of this facility run the risk of the inserted characters being | |
1090 | interpreted in an unintended manner. | |
1091 | ||
1092 | The string to be inserted is the string value of I<sv>. The characters | |
1093 | are recoded for the lexer buffer, according to how the buffer is currently | |
9dcc53ea | 1094 | being interpreted (L</lex_bufutf8>). If a string to be inserted is |
f0e67a1d Z |
1095 | not already a Perl scalar, the L</lex_stuff_pvn> function avoids the |
1096 | need to construct a scalar. | |
1097 | ||
1098 | =cut | |
1099 | */ | |
1100 | ||
1101 | void | |
1102 | Perl_lex_stuff_sv(pTHX_ SV *sv, U32 flags) | |
1103 | { | |
1104 | char *pv; | |
1105 | STRLEN len; | |
1106 | PERL_ARGS_ASSERT_LEX_STUFF_SV; | |
1107 | if (flags) | |
1108 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_stuff_sv"); | |
1109 | pv = SvPV(sv, len); | |
1110 | lex_stuff_pvn(pv, len, flags | (SvUTF8(sv) ? LEX_STUFF_UTF8 : 0)); | |
1111 | } | |
1112 | ||
1113 | /* | |
1114 | =for apidoc Amx|void|lex_unstuff|char *ptr | |
1115 | ||
1116 | Discards text about to be lexed, from L</PL_parser-E<gt>bufptr> up to | |
1117 | I<ptr>. Text following I<ptr> will be moved, and the buffer shortened. | |
1118 | This hides the discarded text from any lexing code that runs later, | |
1119 | as if the text had never appeared. | |
1120 | ||
1121 | This is not the normal way to consume lexed text. For that, use | |
1122 | L</lex_read_to>. | |
1123 | ||
1124 | =cut | |
1125 | */ | |
1126 | ||
1127 | void | |
1128 | Perl_lex_unstuff(pTHX_ char *ptr) | |
1129 | { | |
1130 | char *buf, *bufend; | |
1131 | STRLEN unstuff_len; | |
1132 | PERL_ARGS_ASSERT_LEX_UNSTUFF; | |
1133 | buf = PL_parser->bufptr; | |
1134 | if (ptr < buf) | |
1135 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_unstuff"); | |
1136 | if (ptr == buf) | |
1137 | return; | |
1138 | bufend = PL_parser->bufend; | |
1139 | if (ptr > bufend) | |
1140 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_unstuff"); | |
1141 | unstuff_len = ptr - buf; | |
1142 | Move(ptr, buf, bufend+1-ptr, char); | |
1143 | SvCUR_set(PL_parser->linestr, SvCUR(PL_parser->linestr) - unstuff_len); | |
1144 | PL_parser->bufend = bufend - unstuff_len; | |
1145 | } | |
1146 | ||
1147 | /* | |
1148 | =for apidoc Amx|void|lex_read_to|char *ptr | |
1149 | ||
1150 | Consume text in the lexer buffer, from L</PL_parser-E<gt>bufptr> up | |
1151 | to I<ptr>. This advances L</PL_parser-E<gt>bufptr> to match I<ptr>, | |
1152 | performing the correct bookkeeping whenever a newline character is passed. | |
1153 | This is the normal way to consume lexed text. | |
1154 | ||
1155 | Interpretation of the buffer's octets can be abstracted out by | |
1156 | using the slightly higher-level functions L</lex_peek_unichar> and | |
1157 | L</lex_read_unichar>. | |
1158 | ||
1159 | =cut | |
1160 | */ | |
1161 | ||
1162 | void | |
1163 | Perl_lex_read_to(pTHX_ char *ptr) | |
1164 | { | |
1165 | char *s; | |
1166 | PERL_ARGS_ASSERT_LEX_READ_TO; | |
1167 | s = PL_parser->bufptr; | |
1168 | if (ptr < s || ptr > PL_parser->bufend) | |
1169 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_read_to"); | |
1170 | for (; s != ptr; s++) | |
1171 | if (*s == '\n') { | |
83944c01 | 1172 | COPLINE_INC_WITH_HERELINES; |
f0e67a1d Z |
1173 | PL_parser->linestart = s+1; |
1174 | } | |
1175 | PL_parser->bufptr = ptr; | |
1176 | } | |
1177 | ||
1178 | /* | |
1179 | =for apidoc Amx|void|lex_discard_to|char *ptr | |
1180 | ||
1181 | Discards the first part of the L</PL_parser-E<gt>linestr> buffer, | |
1182 | up to I<ptr>. The remaining content of the buffer will be moved, and | |
1183 | all pointers into the buffer updated appropriately. I<ptr> must not | |
1184 | be later in the buffer than the position of L</PL_parser-E<gt>bufptr>: | |
1185 | it is not permitted to discard text that has yet to be lexed. | |
1186 | ||
1187 | Normally it is not necessarily to do this directly, because it suffices to | |
1188 | use the implicit discarding behaviour of L</lex_next_chunk> and things | |
1189 | based on it. However, if a token stretches across multiple lines, | |
1f317c95 | 1190 | and the lexing code has kept multiple lines of text in the buffer for |
f0e67a1d Z |
1191 | that purpose, then after completion of the token it would be wise to |
1192 | explicitly discard the now-unneeded earlier lines, to avoid future | |
1193 | multi-line tokens growing the buffer without bound. | |
1194 | ||
1195 | =cut | |
1196 | */ | |
1197 | ||
1198 | void | |
1199 | Perl_lex_discard_to(pTHX_ char *ptr) | |
1200 | { | |
1201 | char *buf; | |
1202 | STRLEN discard_len; | |
1203 | PERL_ARGS_ASSERT_LEX_DISCARD_TO; | |
1204 | buf = SvPVX(PL_parser->linestr); | |
1205 | if (ptr < buf) | |
1206 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_discard_to"); | |
1207 | if (ptr == buf) | |
1208 | return; | |
1209 | if (ptr > PL_parser->bufptr) | |
1210 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_discard_to"); | |
1211 | discard_len = ptr - buf; | |
1212 | if (PL_parser->oldbufptr < ptr) | |
1213 | PL_parser->oldbufptr = ptr; | |
1214 | if (PL_parser->oldoldbufptr < ptr) | |
1215 | PL_parser->oldoldbufptr = ptr; | |
1216 | if (PL_parser->last_uni && PL_parser->last_uni < ptr) | |
1217 | PL_parser->last_uni = NULL; | |
1218 | if (PL_parser->last_lop && PL_parser->last_lop < ptr) | |
1219 | PL_parser->last_lop = NULL; | |
1220 | Move(ptr, buf, PL_parser->bufend+1-ptr, char); | |
1221 | SvCUR_set(PL_parser->linestr, SvCUR(PL_parser->linestr) - discard_len); | |
1222 | PL_parser->bufend -= discard_len; | |
1223 | PL_parser->bufptr -= discard_len; | |
1224 | PL_parser->oldbufptr -= discard_len; | |
1225 | PL_parser->oldoldbufptr -= discard_len; | |
1226 | if (PL_parser->last_uni) | |
1227 | PL_parser->last_uni -= discard_len; | |
1228 | if (PL_parser->last_lop) | |
1229 | PL_parser->last_lop -= discard_len; | |
1230 | } | |
1231 | ||
1232 | /* | |
1233 | =for apidoc Amx|bool|lex_next_chunk|U32 flags | |
1234 | ||
1235 | Reads in the next chunk of text to be lexed, appending it to | |
1236 | L</PL_parser-E<gt>linestr>. This should be called when lexing code has | |
1237 | looked to the end of the current chunk and wants to know more. It is | |
1238 | usual, but not necessary, for lexing to have consumed the entirety of | |
1239 | the current chunk at this time. | |
1240 | ||
1241 | If L</PL_parser-E<gt>bufptr> is pointing to the very end of the current | |
1242 | chunk (i.e., the current chunk has been entirely consumed), normally the | |
1243 | current chunk will be discarded at the same time that the new chunk is | |
1244 | read in. If I<flags> includes C<LEX_KEEP_PREVIOUS>, the current chunk | |
1245 | will not be discarded. If the current chunk has not been entirely | |
1246 | consumed, then it will not be discarded regardless of the flag. | |
1247 | ||
1248 | Returns true if some new text was added to the buffer, or false if the | |
1249 | buffer has reached the end of the input text. | |
1250 | ||
1251 | =cut | |
1252 | */ | |
1253 | ||
1254 | #define LEX_FAKE_EOF 0x80000000 | |
e47d32dc | 1255 | #define LEX_NO_TERM 0x40000000 /* here-doc */ |
f0e67a1d Z |
1256 | |
1257 | bool | |
1258 | Perl_lex_next_chunk(pTHX_ U32 flags) | |
1259 | { | |
1260 | SV *linestr; | |
1261 | char *buf; | |
1262 | STRLEN old_bufend_pos, new_bufend_pos; | |
1263 | STRLEN bufptr_pos, oldbufptr_pos, oldoldbufptr_pos; | |
1264 | STRLEN linestart_pos, last_uni_pos, last_lop_pos; | |
17cc9359 | 1265 | bool got_some_for_debugger = 0; |
f0e67a1d | 1266 | bool got_some; |
112d1284 | 1267 | if (flags & ~(LEX_KEEP_PREVIOUS|LEX_FAKE_EOF|LEX_NO_TERM)) |
f0e67a1d | 1268 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_next_chunk"); |
d27f4b91 | 1269 | if (!(flags & LEX_NO_TERM) && PL_lex_inwhat) |
e47d32dc | 1270 | return FALSE; |
f0e67a1d Z |
1271 | linestr = PL_parser->linestr; |
1272 | buf = SvPVX(linestr); | |
1273 | if (!(flags & LEX_KEEP_PREVIOUS) && | |
1274 | PL_parser->bufptr == PL_parser->bufend) { | |
1275 | old_bufend_pos = bufptr_pos = oldbufptr_pos = oldoldbufptr_pos = 0; | |
1276 | linestart_pos = 0; | |
1277 | if (PL_parser->last_uni != PL_parser->bufend) | |
1278 | PL_parser->last_uni = NULL; | |
1279 | if (PL_parser->last_lop != PL_parser->bufend) | |
1280 | PL_parser->last_lop = NULL; | |
1281 | last_uni_pos = last_lop_pos = 0; | |
1282 | *buf = 0; | |
1283 | SvCUR(linestr) = 0; | |
1284 | } else { | |
1285 | old_bufend_pos = PL_parser->bufend - buf; | |
1286 | bufptr_pos = PL_parser->bufptr - buf; | |
1287 | oldbufptr_pos = PL_parser->oldbufptr - buf; | |
1288 | oldoldbufptr_pos = PL_parser->oldoldbufptr - buf; | |
1289 | linestart_pos = PL_parser->linestart - buf; | |
1290 | last_uni_pos = PL_parser->last_uni ? PL_parser->last_uni - buf : 0; | |
1291 | last_lop_pos = PL_parser->last_lop ? PL_parser->last_lop - buf : 0; | |
1292 | } | |
1293 | if (flags & LEX_FAKE_EOF) { | |
1294 | goto eof; | |
60d63348 | 1295 | } else if (!PL_parser->rsfp && !PL_parser->filtered) { |
f0e67a1d Z |
1296 | got_some = 0; |
1297 | } else if (filter_gets(linestr, old_bufend_pos)) { | |
1298 | got_some = 1; | |
17cc9359 | 1299 | got_some_for_debugger = 1; |
112d1284 FC |
1300 | } else if (flags & LEX_NO_TERM) { |
1301 | got_some = 0; | |
f0e67a1d | 1302 | } else { |
580561a3 Z |
1303 | if (!SvPOK(linestr)) /* can get undefined by filter_gets */ |
1304 | sv_setpvs(linestr, ""); | |
f0e67a1d Z |
1305 | eof: |
1306 | /* End of real input. Close filehandle (unless it was STDIN), | |
1307 | * then add implicit termination. | |
1308 | */ | |
87606032 | 1309 | if (PL_parser->lex_flags & LEX_DONT_CLOSE_RSFP) |
f0e67a1d Z |
1310 | PerlIO_clearerr(PL_parser->rsfp); |
1311 | else if (PL_parser->rsfp) | |
1312 | (void)PerlIO_close(PL_parser->rsfp); | |
1313 | PL_parser->rsfp = NULL; | |
60d63348 | 1314 | PL_parser->in_pod = PL_parser->filtered = 0; |
f0e67a1d Z |
1315 | if (!PL_in_eval && PL_minus_p) { |
1316 | sv_catpvs(linestr, | |
1317 | /*{*/";}continue{print or die qq(-p destination: $!\\n);}"); | |
1318 | PL_minus_n = PL_minus_p = 0; | |
1319 | } else if (!PL_in_eval && PL_minus_n) { | |
1320 | sv_catpvs(linestr, /*{*/";}"); | |
1321 | PL_minus_n = 0; | |
1322 | } else | |
1323 | sv_catpvs(linestr, ";"); | |
1324 | got_some = 1; | |
1325 | } | |
1326 | buf = SvPVX(linestr); | |
1327 | new_bufend_pos = SvCUR(linestr); | |
1328 | PL_parser->bufend = buf + new_bufend_pos; | |
1329 | PL_parser->bufptr = buf + bufptr_pos; | |
1330 | PL_parser->oldbufptr = buf + oldbufptr_pos; | |
1331 | PL_parser->oldoldbufptr = buf + oldoldbufptr_pos; | |
1332 | PL_parser->linestart = buf + linestart_pos; | |
1333 | if (PL_parser->last_uni) | |
1334 | PL_parser->last_uni = buf + last_uni_pos; | |
1335 | if (PL_parser->last_lop) | |
1336 | PL_parser->last_lop = buf + last_lop_pos; | |
7f1c3e8c FC |
1337 | if (PL_parser->preambling != NOLINE) { |
1338 | CopLINE_set(PL_curcop, PL_parser->preambling + 1); | |
1339 | PL_parser->preambling = NOLINE; | |
1340 | } | |
c7a622b3 | 1341 | if (got_some_for_debugger && PERLDB_LINE_OR_SAVESRC && |
f0e67a1d Z |
1342 | PL_curstash != PL_debstash) { |
1343 | /* debugger active and we're not compiling the debugger code, | |
1344 | * so store the line into the debugger's array of lines | |
1345 | */ | |
1346 | update_debugger_info(NULL, buf+old_bufend_pos, | |
1347 | new_bufend_pos-old_bufend_pos); | |
1348 | } | |
1349 | return got_some; | |
1350 | } | |
1351 | ||
1352 | /* | |
1353 | =for apidoc Amx|I32|lex_peek_unichar|U32 flags | |
1354 | ||
1355 | Looks ahead one (Unicode) character in the text currently being lexed. | |
1356 | Returns the codepoint (unsigned integer value) of the next character, | |
1357 | or -1 if lexing has reached the end of the input text. To consume the | |
1358 | peeked character, use L</lex_read_unichar>. | |
1359 | ||
1360 | If the next character is in (or extends into) the next chunk of input | |
1361 | text, the next chunk will be read in. Normally the current chunk will be | |
1362 | discarded at the same time, but if I<flags> includes C<LEX_KEEP_PREVIOUS> | |
1363 | then the current chunk will not be discarded. | |
1364 | ||
1365 | If the input is being interpreted as UTF-8 and a UTF-8 encoding error | |
1366 | is encountered, an exception is generated. | |
1367 | ||
1368 | =cut | |
1369 | */ | |
1370 | ||
1371 | I32 | |
1372 | Perl_lex_peek_unichar(pTHX_ U32 flags) | |
1373 | { | |
749123ff | 1374 | dVAR; |
f0e67a1d Z |
1375 | char *s, *bufend; |
1376 | if (flags & ~(LEX_KEEP_PREVIOUS)) | |
1377 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_peek_unichar"); | |
1378 | s = PL_parser->bufptr; | |
1379 | bufend = PL_parser->bufend; | |
1380 | if (UTF) { | |
1381 | U8 head; | |
1382 | I32 unichar; | |
1383 | STRLEN len, retlen; | |
1384 | if (s == bufend) { | |
1385 | if (!lex_next_chunk(flags)) | |
1386 | return -1; | |
1387 | s = PL_parser->bufptr; | |
1388 | bufend = PL_parser->bufend; | |
1389 | } | |
1390 | head = (U8)*s; | |
54d004e8 | 1391 | if (UTF8_IS_INVARIANT(head)) |
f0e67a1d | 1392 | return head; |
54d004e8 KW |
1393 | if (UTF8_IS_START(head)) { |
1394 | len = UTF8SKIP(&head); | |
f0e67a1d Z |
1395 | while ((STRLEN)(bufend-s) < len) { |
1396 | if (!lex_next_chunk(flags | LEX_KEEP_PREVIOUS)) | |
1397 | break; | |
1398 | s = PL_parser->bufptr; | |
1399 | bufend = PL_parser->bufend; | |
1400 | } | |
1401 | } | |
c80e42f3 | 1402 | unichar = utf8n_to_uvchr((U8*)s, bufend-s, &retlen, UTF8_CHECK_ONLY); |
f0e67a1d Z |
1403 | if (retlen == (STRLEN)-1) { |
1404 | /* malformed UTF-8 */ | |
1405 | ENTER; | |
1406 | SAVESPTR(PL_warnhook); | |
1407 | PL_warnhook = PERL_WARNHOOK_FATAL; | |
c80e42f3 | 1408 | utf8n_to_uvchr((U8*)s, bufend-s, NULL, 0); |
f0e67a1d Z |
1409 | LEAVE; |
1410 | } | |
1411 | return unichar; | |
1412 | } else { | |
1413 | if (s == bufend) { | |
1414 | if (!lex_next_chunk(flags)) | |
1415 | return -1; | |
1416 | s = PL_parser->bufptr; | |
1417 | } | |
1418 | return (U8)*s; | |
1419 | } | |
1420 | } | |
1421 | ||
1422 | /* | |
1423 | =for apidoc Amx|I32|lex_read_unichar|U32 flags | |
1424 | ||
1425 | Reads the next (Unicode) character in the text currently being lexed. | |
1426 | Returns the codepoint (unsigned integer value) of the character read, | |
1427 | and moves L</PL_parser-E<gt>bufptr> past the character, or returns -1 | |
1428 | if lexing has reached the end of the input text. To non-destructively | |
1429 | examine the next character, use L</lex_peek_unichar> instead. | |
1430 | ||
1431 | If the next character is in (or extends into) the next chunk of input | |
1432 | text, the next chunk will be read in. Normally the current chunk will be | |
1433 | discarded at the same time, but if I<flags> includes C<LEX_KEEP_PREVIOUS> | |
1434 | then the current chunk will not be discarded. | |
1435 | ||
1436 | If the input is being interpreted as UTF-8 and a UTF-8 encoding error | |
1437 | is encountered, an exception is generated. | |
1438 | ||
1439 | =cut | |
1440 | */ | |
1441 | ||
1442 | I32 | |
1443 | Perl_lex_read_unichar(pTHX_ U32 flags) | |
1444 | { | |
1445 | I32 c; | |
1446 | if (flags & ~(LEX_KEEP_PREVIOUS)) | |
1447 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_read_unichar"); | |
1448 | c = lex_peek_unichar(flags); | |
1449 | if (c != -1) { | |
1450 | if (c == '\n') | |
83944c01 | 1451 | COPLINE_INC_WITH_HERELINES; |
d9018cbe EB |
1452 | if (UTF) |
1453 | PL_parser->bufptr += UTF8SKIP(PL_parser->bufptr); | |
1454 | else | |
1455 | ++(PL_parser->bufptr); | |
f0e67a1d Z |
1456 | } |
1457 | return c; | |
1458 | } | |
1459 | ||
1460 | /* | |
1461 | =for apidoc Amx|void|lex_read_space|U32 flags | |
1462 | ||
1463 | Reads optional spaces, in Perl style, in the text currently being | |
1464 | lexed. The spaces may include ordinary whitespace characters and | |
1465 | Perl-style comments. C<#line> directives are processed if encountered. | |
1466 | L</PL_parser-E<gt>bufptr> is moved past the spaces, so that it points | |
1467 | at a non-space character (or the end of the input text). | |
1468 | ||
1469 | If spaces extend into the next chunk of input text, the next chunk will | |
1470 | be read in. Normally the current chunk will be discarded at the same | |
1471 | time, but if I<flags> includes C<LEX_KEEP_PREVIOUS> then the current | |
1472 | chunk will not be discarded. | |
1473 | ||
1474 | =cut | |
1475 | */ | |
1476 | ||
21791330 | 1477 | #define LEX_NO_INCLINE 0x40000000 |
f0998909 Z |
1478 | #define LEX_NO_NEXT_CHUNK 0x80000000 |
1479 | ||
f0e67a1d Z |
1480 | void |
1481 | Perl_lex_read_space(pTHX_ U32 flags) | |
1482 | { | |
1483 | char *s, *bufend; | |
21791330 | 1484 | const bool can_incline = !(flags & LEX_NO_INCLINE); |
f0e67a1d | 1485 | bool need_incline = 0; |
21791330 | 1486 | if (flags & ~(LEX_KEEP_PREVIOUS|LEX_NO_NEXT_CHUNK|LEX_NO_INCLINE)) |
f0e67a1d | 1487 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_read_space"); |
f0e67a1d Z |
1488 | s = PL_parser->bufptr; |
1489 | bufend = PL_parser->bufend; | |
1490 | while (1) { | |
1491 | char c = *s; | |
1492 | if (c == '#') { | |
1493 | do { | |
1494 | c = *++s; | |
1495 | } while (!(c == '\n' || (c == 0 && s == bufend))); | |
1496 | } else if (c == '\n') { | |
1497 | s++; | |
21791330 FC |
1498 | if (can_incline) { |
1499 | PL_parser->linestart = s; | |
1500 | if (s == bufend) | |
1501 | need_incline = 1; | |
1502 | else | |
1503 | incline(s); | |
1504 | } | |
f0e67a1d Z |
1505 | } else if (isSPACE(c)) { |
1506 | s++; | |
1507 | } else if (c == 0 && s == bufend) { | |
1508 | bool got_more; | |
65c68e17 | 1509 | line_t l; |
f0998909 Z |
1510 | if (flags & LEX_NO_NEXT_CHUNK) |
1511 | break; | |
f0e67a1d | 1512 | PL_parser->bufptr = s; |
65c68e17 | 1513 | l = CopLINE(PL_curcop); |
851b527a | 1514 | CopLINE(PL_curcop) += PL_parser->herelines + 1; |
f0e67a1d | 1515 | got_more = lex_next_chunk(flags); |
65c68e17 | 1516 | CopLINE_set(PL_curcop, l); |
f0e67a1d Z |
1517 | s = PL_parser->bufptr; |
1518 | bufend = PL_parser->bufend; | |
1519 | if (!got_more) | |
1520 | break; | |
21791330 | 1521 | if (can_incline && need_incline && PL_parser->rsfp) { |
f0e67a1d Z |
1522 | incline(s); |
1523 | need_incline = 0; | |
1524 | } | |
3c47da3c FC |
1525 | } else if (!c) { |
1526 | s++; | |
f0e67a1d Z |
1527 | } else { |
1528 | break; | |
1529 | } | |
1530 | } | |
f0e67a1d Z |
1531 | PL_parser->bufptr = s; |
1532 | } | |
1533 | ||
1534 | /* | |
fe788d6b PM |
1535 | |
1536 | =for apidoc EXMp|bool|validate_proto|SV *name|SV *proto|bool warn | |
1537 | ||
1538 | This function performs syntax checking on a prototype, C<proto>. | |
1539 | If C<warn> is true, any illegal characters or mismatched brackets | |
1540 | will trigger illegalproto warnings, declaring that they were | |
1541 | detected in the prototype for C<name>. | |
1542 | ||
1543 | The return value is C<true> if this is a valid prototype, and | |
1544 | C<false> if it is not, regardless of whether C<warn> was C<true> or | |
1545 | C<false>. | |
1546 | ||
1547 | Note that C<NULL> is a valid C<proto> and will always return C<true>. | |
1548 | ||
1549 | =cut | |
1550 | ||
1551 | */ | |
1552 | ||
1553 | bool | |
1554 | Perl_validate_proto(pTHX_ SV *name, SV *proto, bool warn) | |
1555 | { | |
1556 | STRLEN len, origlen; | |
1557 | char *p = proto ? SvPV(proto, len) : NULL; | |
1558 | bool bad_proto = FALSE; | |
1559 | bool in_brackets = FALSE; | |
1560 | bool after_slash = FALSE; | |
1561 | char greedy_proto = ' '; | |
1562 | bool proto_after_greedy_proto = FALSE; | |
1563 | bool must_be_last = FALSE; | |
1564 | bool underscore = FALSE; | |
f791a21a | 1565 | bool bad_proto_after_underscore = FALSE; |
fe788d6b PM |
1566 | |
1567 | PERL_ARGS_ASSERT_VALIDATE_PROTO; | |
1568 | ||
1569 | if (!proto) | |
1570 | return TRUE; | |
1571 | ||
1572 | origlen = len; | |
1573 | for (; len--; p++) { | |
1574 | if (!isSPACE(*p)) { | |
1575 | if (must_be_last) | |
1576 | proto_after_greedy_proto = TRUE; | |
f791a21a PM |
1577 | if (underscore) { |
1578 | if (!strchr(";@%", *p)) | |
1579 | bad_proto_after_underscore = TRUE; | |
1580 | underscore = FALSE; | |
1581 | } | |
fe788d6b PM |
1582 | if (!strchr("$@%*;[]&\\_+", *p) || *p == '\0') { |
1583 | bad_proto = TRUE; | |
1584 | } | |
1585 | else { | |
fe788d6b PM |
1586 | if (*p == '[') |
1587 | in_brackets = TRUE; | |
1588 | else if (*p == ']') | |
1589 | in_brackets = FALSE; | |
1590 | else if ((*p == '@' || *p == '%') && | |
1591 | !after_slash && | |
1592 | !in_brackets ) { | |
1593 | must_be_last = TRUE; | |
1594 | greedy_proto = *p; | |
1595 | } | |
1596 | else if (*p == '_') | |
f791a21a | 1597 | underscore = TRUE; |
fe788d6b PM |
1598 | } |
1599 | if (*p == '\\') | |
1600 | after_slash = TRUE; | |
1601 | else | |
1602 | after_slash = FALSE; | |
1603 | } | |
1604 | } | |
1605 | ||
1606 | if (warn) { | |
b54d603d | 1607 | SV *tmpsv = newSVpvs_flags("", SVs_TEMP); |
fe788d6b | 1608 | p -= origlen; |
b54d603d PM |
1609 | p = SvUTF8(proto) |
1610 | ? sv_uni_display(tmpsv, newSVpvn_flags(p, origlen, SVs_TEMP | SVf_UTF8), | |
1611 | origlen, UNI_DISPLAY_ISPRINT) | |
1612 | : pv_pretty(tmpsv, p, origlen, 60, NULL, NULL, PERL_PV_ESCAPE_NONASCII); | |
1613 | ||
fe788d6b PM |
1614 | if (proto_after_greedy_proto) |
1615 | Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO), | |
1616 | "Prototype after '%c' for %"SVf" : %s", | |
1617 | greedy_proto, SVfARG(name), p); | |
50278ed0 PM |
1618 | if (in_brackets) |
1619 | Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO), | |
1620 | "Missing ']' in prototype for %"SVf" : %s", | |
1621 | SVfARG(name), p); | |
b54d603d | 1622 | if (bad_proto) |
fe788d6b | 1623 | Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO), |
f791a21a PM |
1624 | "Illegal character in prototype for %"SVf" : %s", |
1625 | SVfARG(name), p); | |
1626 | if (bad_proto_after_underscore) | |
1627 | Perl_warner(aTHX_ packWARN(WARN_ILLEGALPROTO), | |
1628 | "Illegal character after '_' in prototype for %"SVf" : %s", | |
1629 | SVfARG(name), p); | |
fe788d6b PM |
1630 | } |
1631 | ||
1632 | return (! (proto_after_greedy_proto || bad_proto) ); | |
1633 | } | |
1634 | ||
1635 | /* | |
ffb4593c NT |
1636 | * S_incline |
1637 | * This subroutine has nothing to do with tilting, whether at windmills | |
1638 | * or pinball tables. Its name is short for "increment line". It | |
57843af0 | 1639 | * increments the current line number in CopLINE(PL_curcop) and checks |
ffb4593c | 1640 | * to see whether the line starts with a comment of the form |
9cbb5ea2 GS |
1641 | * # line 500 "foo.pm" |
1642 | * If so, it sets the current line number and file to the values in the comment. | |
ffb4593c NT |
1643 | */ |
1644 | ||
76e3520e | 1645 | STATIC void |
d9095cec | 1646 | S_incline(pTHX_ const char *s) |
463ee0b2 | 1647 | { |
d9095cec NC |
1648 | const char *t; |
1649 | const char *n; | |
1650 | const char *e; | |
8818d409 | 1651 | line_t line_num; |
22ff3130 | 1652 | UV uv; |
463ee0b2 | 1653 | |
7918f24d NC |
1654 | PERL_ARGS_ASSERT_INCLINE; |
1655 | ||
83944c01 | 1656 | COPLINE_INC_WITH_HERELINES; |
451f421f FC |
1657 | if (!PL_rsfp && !PL_parser->filtered && PL_lex_state == LEX_NORMAL |
1658 | && s+1 == PL_bufend && *s == ';') { | |
1659 | /* fake newline in string eval */ | |
1660 | CopLINE_dec(PL_curcop); | |
1661 | return; | |
1662 | } | |
463ee0b2 LW |
1663 | if (*s++ != '#') |
1664 | return; | |
d4c19fe8 AL |
1665 | while (SPACE_OR_TAB(*s)) |
1666 | s++; | |
73659bf1 GS |
1667 | if (strnEQ(s, "line", 4)) |
1668 | s += 4; | |
1669 | else | |
1670 | return; | |
084592ab | 1671 | if (SPACE_OR_TAB(*s)) |
73659bf1 | 1672 | s++; |
4e553d73 | 1673 | else |
73659bf1 | 1674 | return; |
d4c19fe8 AL |
1675 | while (SPACE_OR_TAB(*s)) |
1676 | s++; | |
463ee0b2 LW |
1677 | if (!isDIGIT(*s)) |
1678 | return; | |
d4c19fe8 | 1679 | |
463ee0b2 LW |
1680 | n = s; |
1681 | while (isDIGIT(*s)) | |
1682 | s++; | |
07714eb4 | 1683 | if (!SPACE_OR_TAB(*s) && *s != '\r' && *s != '\n' && *s != '\0') |
26b6dc3f | 1684 | return; |
bf4acbe4 | 1685 | while (SPACE_OR_TAB(*s)) |
463ee0b2 | 1686 | s++; |
73659bf1 | 1687 | if (*s == '"' && (t = strchr(s+1, '"'))) { |
463ee0b2 | 1688 | s++; |
73659bf1 GS |
1689 | e = t + 1; |
1690 | } | |
463ee0b2 | 1691 | else { |
c35e046a AL |
1692 | t = s; |
1693 | while (!isSPACE(*t)) | |
1694 | t++; | |
73659bf1 | 1695 | e = t; |
463ee0b2 | 1696 | } |
bf4acbe4 | 1697 | while (SPACE_OR_TAB(*e) || *e == '\r' || *e == '\f') |
73659bf1 GS |
1698 | e++; |
1699 | if (*e != '\n' && *e != '\0') | |
1700 | return; /* false alarm */ | |
1701 | ||
22ff3130 HS |
1702 | if (!grok_atoUV(n, &uv, &e)) |
1703 | return; | |
1704 | line_num = ((line_t)uv) - 1; | |
8818d409 | 1705 | |
f4dd75d9 | 1706 | if (t - s > 0) { |
d9095cec | 1707 | const STRLEN len = t - s; |
3df32bda | 1708 | |
d36ee5be | 1709 | if (!PL_rsfp && !PL_parser->filtered) { |
e66cf94c RGS |
1710 | /* must copy *{"::_<(eval N)[oldfilename:L]"} |
1711 | * to *{"::_<newfilename"} */ | |
44867030 NC |
1712 | /* However, the long form of evals is only turned on by the |
1713 | debugger - usually they're "(eval %lu)" */ | |
d36ee5be FC |
1714 | GV * const cfgv = CopFILEGV(PL_curcop); |
1715 | if (cfgv) { | |
38bd7ad8 FC |
1716 | char smallbuf[128]; |
1717 | STRLEN tmplen2 = len; | |
44867030 | 1718 | char *tmpbuf2; |
449dd039 | 1719 | GV *gv2; |
44867030 NC |
1720 | |
1721 | if (tmplen2 + 2 <= sizeof smallbuf) | |
1722 | tmpbuf2 = smallbuf; | |
1723 | else | |
1724 | Newx(tmpbuf2, tmplen2 + 2, char); | |
1725 | ||
38bd7ad8 FC |
1726 | tmpbuf2[0] = '_'; |
1727 | tmpbuf2[1] = '<'; | |
44867030 NC |
1728 | |
1729 | memcpy(tmpbuf2 + 2, s, tmplen2); | |
1730 | tmplen2 += 2; | |
1731 | ||
8a5ee598 | 1732 | gv2 = *(GV**)hv_fetch(PL_defstash, tmpbuf2, tmplen2, TRUE); |
e5527e4b | 1733 | if (!isGV(gv2)) { |
8a5ee598 | 1734 | gv_init(gv2, PL_defstash, tmpbuf2, tmplen2, FALSE); |
e5527e4b RGS |
1735 | /* adjust ${"::_<newfilename"} to store the new file name */ |
1736 | GvSV(gv2) = newSVpvn(tmpbuf2 + 2, tmplen2 - 2); | |
8818d409 FC |
1737 | /* The line number may differ. If that is the case, |
1738 | alias the saved lines that are in the array. | |
1739 | Otherwise alias the whole array. */ | |
1740 | if (CopLINE(PL_curcop) == line_num) { | |
38bd7ad8 FC |
1741 | GvHV(gv2) = MUTABLE_HV(SvREFCNT_inc(GvHV(cfgv))); |
1742 | GvAV(gv2) = MUTABLE_AV(SvREFCNT_inc(GvAV(cfgv))); | |
8818d409 | 1743 | } |
38bd7ad8 FC |
1744 | else if (GvAV(cfgv)) { |
1745 | AV * const av = GvAV(cfgv); | |
8818d409 FC |
1746 | const I32 start = CopLINE(PL_curcop)+1; |
1747 | I32 items = AvFILLp(av) - start; | |
1748 | if (items > 0) { | |
1749 | AV * const av2 = GvAVn(gv2); | |
1750 | SV **svp = AvARRAY(av) + start; | |
1751 | I32 l = (I32)line_num+1; | |
1752 | while (items--) | |
1753 | av_store(av2, l++, SvREFCNT_inc(*svp++)); | |
1754 | } | |
1755 | } | |
e5527e4b | 1756 | } |
44867030 NC |
1757 | |
1758 | if (tmpbuf2 != smallbuf) Safefree(tmpbuf2); | |
d36ee5be | 1759 | } |
e66cf94c | 1760 | } |
05ec9bb3 | 1761 | CopFILE_free(PL_curcop); |
449dd039 | 1762 | CopFILE_setn(PL_curcop, s, len); |
f4dd75d9 | 1763 | } |
8818d409 | 1764 | CopLINE_set(PL_curcop, line_num); |
463ee0b2 LW |
1765 | } |
1766 | ||
21791330 FC |
1767 | #define skipspace(s) skipspace_flags(s, 0) |
1768 | ||
29595ff2 | 1769 | |
80a702cd | 1770 | STATIC void |
15f169a1 | 1771 | S_update_debugger_info(pTHX_ SV *orig_sv, const char *const buf, STRLEN len) |
80a702cd RGS |
1772 | { |
1773 | AV *av = CopFILEAVx(PL_curcop); | |
1774 | if (av) { | |
7f1c3e8c FC |
1775 | SV * sv; |
1776 | if (PL_parser->preambling == NOLINE) sv = newSV_type(SVt_PVMG); | |
1777 | else { | |
1778 | sv = *av_fetch(av, 0, 1); | |
1779 | SvUPGRADE(sv, SVt_PVMG); | |
1780 | } | |
1781 | if (!SvPOK(sv)) sv_setpvs(sv,""); | |
5fa550fb | 1782 | if (orig_sv) |
7f1c3e8c | 1783 | sv_catsv(sv, orig_sv); |
5fa550fb | 1784 | else |
7f1c3e8c FC |
1785 | sv_catpvn(sv, buf, len); |
1786 | if (!SvIOK(sv)) { | |
1787 | (void)SvIOK_on(sv); | |
1788 | SvIV_set(sv, 0); | |
1789 | } | |
1790 | if (PL_parser->preambling == NOLINE) | |
1791 | av_store(av, CopLINE(PL_curcop), sv); | |
80a702cd RGS |
1792 | } |
1793 | } | |
1794 | ||
ffb4593c NT |
1795 | /* |
1796 | * S_skipspace | |
1797 | * Called to gobble the appropriate amount and type of whitespace. | |
1798 | * Skips comments as well. | |
1799 | */ | |
1800 | ||
76e3520e | 1801 | STATIC char * |
21791330 | 1802 | S_skipspace_flags(pTHX_ char *s, U32 flags) |
a687059c | 1803 | { |
21791330 | 1804 | PERL_ARGS_ASSERT_SKIPSPACE_FLAGS; |
3280af22 | 1805 | if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) { |
3c47da3c | 1806 | while (s < PL_bufend && (SPACE_OR_TAB(*s) || !*s)) |
463ee0b2 | 1807 | s++; |
f0e67a1d Z |
1808 | } else { |
1809 | STRLEN bufptr_pos = PL_bufptr - SvPVX(PL_linestr); | |
1810 | PL_bufptr = s; | |
21791330 | 1811 | lex_read_space(flags | LEX_KEEP_PREVIOUS | |
d27f4b91 | 1812 | (PL_lex_inwhat || PL_lex_state == LEX_FORMLINE ? |
f0998909 | 1813 | LEX_NO_NEXT_CHUNK : 0)); |
3280af22 | 1814 | s = PL_bufptr; |
f0e67a1d Z |
1815 | PL_bufptr = SvPVX(PL_linestr) + bufptr_pos; |
1816 | if (PL_linestart > PL_bufptr) | |
1817 | PL_bufptr = PL_linestart; | |
1818 | return s; | |
463ee0b2 | 1819 | } |
5db06880 | 1820 | return s; |
a687059c | 1821 | } |
378cc40b | 1822 | |
ffb4593c NT |
1823 | /* |
1824 | * S_check_uni | |
1825 | * Check the unary operators to ensure there's no ambiguity in how they're | |
1826 | * used. An ambiguous piece of code would be: | |
1827 | * rand + 5 | |
1828 | * This doesn't mean rand() + 5. Because rand() is a unary operator, | |
1829 | * the +5 is its argument. | |
1830 | */ | |
1831 | ||
76e3520e | 1832 | STATIC void |
cea2e8a9 | 1833 | S_check_uni(pTHX) |
ba106d47 | 1834 | { |
d4c19fe8 AL |
1835 | const char *s; |
1836 | const char *t; | |
2f3197b3 | 1837 | |
3280af22 | 1838 | if (PL_oldoldbufptr != PL_last_uni) |
2f3197b3 | 1839 | return; |
3280af22 NIS |
1840 | while (isSPACE(*PL_last_uni)) |
1841 | PL_last_uni++; | |
c35e046a | 1842 | s = PL_last_uni; |
8a2bca12 | 1843 | while (isWORDCHAR_lazy_if(s,UTF) || *s == '-') |
8ce2ba82 | 1844 | s += UTF ? UTF8SKIP(s) : 1; |
3280af22 | 1845 | if ((t = strchr(s, '(')) && t < PL_bufptr) |
a0d0e21e | 1846 | return; |
6136c704 | 1847 | |
9b387841 | 1848 | Perl_ck_warner_d(aTHX_ packWARN(WARN_AMBIGUOUS), |
b59c097b AV |
1849 | "Warning: Use of \"%"UTF8f"\" without parentheses is ambiguous", |
1850 | UTF8fARG(UTF, (int)(s - PL_last_uni), PL_last_uni)); | |
2f3197b3 LW |
1851 | } |
1852 | ||
ffb4593c NT |
1853 | /* |
1854 | * LOP : macro to build a list operator. Its behaviour has been replaced | |
1855 | * with a subroutine, S_lop() for which LOP is just another name. | |
1856 | */ | |
1857 | ||
a0d0e21e LW |
1858 | #define LOP(f,x) return lop(f,x,s) |
1859 | ||
ffb4593c NT |
1860 | /* |
1861 | * S_lop | |
1862 | * Build a list operator (or something that might be one). The rules: | |
41e8cbf4 FC |
1863 | * - if we have a next token, then it's a list operator (no parens) for |
1864 | * which the next token has already been parsed; e.g., | |
1865 | * sort foo @args | |
1866 | * sort foo (@args) | |
ffb4593c NT |
1867 | * - if the next thing is an opening paren, then it's a function |
1868 | * - else it's a list operator | |
1869 | */ | |
1870 | ||
76e3520e | 1871 | STATIC I32 |
a0be28da | 1872 | S_lop(pTHX_ I32 f, int x, char *s) |
ffed7fef | 1873 | { |
7918f24d NC |
1874 | PERL_ARGS_ASSERT_LOP; |
1875 | ||
6154021b | 1876 | pl_yylval.ival = f; |
35c8bce7 | 1877 | CLINE; |
3280af22 NIS |
1878 | PL_bufptr = s; |
1879 | PL_last_lop = PL_oldbufptr; | |
eb160463 | 1880 | PL_last_lop_op = (OPCODE)f; |
3280af22 | 1881 | if (PL_nexttoke) |
78cdf107 | 1882 | goto lstop; |
19f1898a | 1883 | PL_expect = x; |
79072805 | 1884 | if (*s == '(') |
bbf60fe6 | 1885 | return REPORT(FUNC); |
294a536f | 1886 | s = skipspace(s); |
79072805 | 1887 | if (*s == '(') |
bbf60fe6 | 1888 | return REPORT(FUNC); |
78cdf107 Z |
1889 | else { |
1890 | lstop: | |
1891 | if (!PL_lex_allbrackets && PL_lex_fakeeof > LEX_FAKEEOF_LOWLOGIC) | |
1892 | PL_lex_fakeeof = LEX_FAKEEOF_LOWLOGIC; | |
bbf60fe6 | 1893 | return REPORT(LSTOP); |
78cdf107 | 1894 | } |
79072805 LW |
1895 | } |
1896 | ||
ffb4593c NT |
1897 | /* |
1898 | * S_force_next | |
9cbb5ea2 | 1899 | * When the lexer realizes it knows the next token (for instance, |
ffb4593c | 1900 | * it is reordering tokens for the parser) then it can call S_force_next |
9cbb5ea2 | 1901 | * to know what token to return the next time the lexer is called. Caller |
b5bbe64a JH |
1902 | * will need to set PL_nextval[] and possibly PL_expect to ensure |
1903 | * the lexer handles the token correctly. | |
ffb4593c NT |
1904 | */ |
1905 | ||
4e553d73 | 1906 | STATIC void |
cea2e8a9 | 1907 | S_force_next(pTHX_ I32 type) |
79072805 | 1908 | { |
704d4215 GG |
1909 | #ifdef DEBUGGING |
1910 | if (DEBUG_T_TEST) { | |
1911 | PerlIO_printf(Perl_debug_log, "### forced token:\n"); | |
f05d7009 | 1912 | tokereport(type, &NEXTVAL_NEXTTOKE); |
704d4215 GG |
1913 | } |
1914 | #endif | |
1f7c3e7c | 1915 | assert(PL_nexttoke < C_ARRAY_LENGTH(PL_nexttype)); |
3280af22 NIS |
1916 | PL_nexttype[PL_nexttoke] = type; |
1917 | PL_nexttoke++; | |
1918 | if (PL_lex_state != LEX_KNOWNEXT) { | |
1919 | PL_lex_defer = PL_lex_state; | |
3280af22 | 1920 | PL_lex_state = LEX_KNOWNEXT; |
79072805 LW |
1921 | } |
1922 | } | |
1923 | ||
89f35911 FC |
1924 | /* |
1925 | * S_postderef | |
1926 | * | |
1927 | * This subroutine handles postfix deref syntax after the arrow has already | |
1928 | * been emitted. @* $* etc. are emitted as two separate token right here. | |
1929 | * @[ @{ %[ %{ *{ are emitted also as two tokens, but this function emits | |
1930 | * only the first, leaving yylex to find the next. | |
89f35911 FC |
1931 | */ |
1932 | ||
1933 | static int | |
ff25e5db | 1934 | S_postderef(pTHX_ int const funny, char const next) |
89f35911 | 1935 | { |
ff25e5db | 1936 | assert(funny == DOLSHARP || strchr("$@%&*", funny)); |
89f35911 FC |
1937 | assert(strchr("*[{", next)); |
1938 | if (next == '*') { | |
1939 | PL_expect = XOPERATOR; | |
cc624add | 1940 | if (PL_lex_state == LEX_INTERPNORMAL && !PL_lex_brackets) { |
ff25e5db | 1941 | assert('@' == funny || '$' == funny || DOLSHARP == funny); |
cc624add | 1942 | PL_lex_state = LEX_INTERPEND; |
cc624add FC |
1943 | force_next(POSTJOIN); |
1944 | } | |
89f35911 FC |
1945 | force_next(next); |
1946 | PL_bufptr+=2; | |
1947 | } | |
1948 | else { | |
760ca746 FC |
1949 | if ('@' == funny && PL_lex_state == LEX_INTERPNORMAL |
1950 | && !PL_lex_brackets) | |
1951 | PL_lex_dojoin = 2; | |
89f35911 FC |
1952 | PL_expect = XOPERATOR; |
1953 | PL_bufptr++; | |
1954 | } | |
1955 | return funny; | |
1956 | } | |
1957 | ||
28ac2b49 Z |
1958 | void |
1959 | Perl_yyunlex(pTHX) | |
1960 | { | |
a7aaec61 Z |
1961 | int yyc = PL_parser->yychar; |
1962 | if (yyc != YYEMPTY) { | |
1963 | if (yyc) { | |
a7aaec61 Z |
1964 | NEXTVAL_NEXTTOKE = PL_parser->yylval; |
1965 | if (yyc == '{'/*}*/ || yyc == HASHBRACK || yyc == '['/*]*/) { | |
78cdf107 | 1966 | PL_lex_allbrackets--; |
a7aaec61 | 1967 | PL_lex_brackets--; |
78cdf107 Z |
1968 | yyc |= (3<<24) | (PL_lex_brackstack[PL_lex_brackets] << 16); |
1969 | } else if (yyc == '('/*)*/) { | |
1970 | PL_lex_allbrackets--; | |
1971 | yyc |= (2<<24); | |
a7aaec61 Z |
1972 | } |
1973 | force_next(yyc); | |
1974 | } | |
28ac2b49 Z |
1975 | PL_parser->yychar = YYEMPTY; |
1976 | } | |
1977 | } | |
1978 | ||
d0a148a6 | 1979 | STATIC SV * |
15f169a1 | 1980 | S_newSV_maybe_utf8(pTHX_ const char *const start, STRLEN len) |
d0a148a6 | 1981 | { |
740cce10 | 1982 | SV * const sv = newSVpvn_utf8(start, len, |
eaf7a4d2 CS |
1983 | !IN_BYTES |
1984 | && UTF | |
9f10db87 | 1985 | && !is_invariant_string((const U8*)start, len) |
740cce10 | 1986 | && is_utf8_string((const U8*)start, len)); |
d0a148a6 NC |
1987 | return sv; |
1988 | } | |
1989 | ||
ffb4593c NT |
1990 | /* |
1991 | * S_force_word | |
1992 | * When the lexer knows the next thing is a word (for instance, it has | |
1993 | * just seen -> and it knows that the next char is a word char, then | |
02b34bbe DM |
1994 | * it calls S_force_word to stick the next word into the PL_nexttoke/val |
1995 | * lookahead. | |
ffb4593c NT |
1996 | * |
1997 | * Arguments: | |
b1b65b59 | 1998 | * char *start : buffer position (must be within PL_linestr) |
02b34bbe | 1999 | * int token : PL_next* will be this type of bare word (e.g., METHOD,WORD) |
ffb4593c NT |
2000 | * int check_keyword : if true, Perl checks to make sure the word isn't |
2001 | * a keyword (do this if the word is a label, e.g. goto FOO) | |
2002 | * int allow_pack : if true, : characters will also be allowed (require, | |
2003 | * use, etc. do this) | |
ffb4593c NT |
2004 | */ |
2005 | ||
76e3520e | 2006 | STATIC char * |
345b3785 | 2007 | S_force_word(pTHX_ char *start, int token, int check_keyword, int allow_pack) |
79072805 | 2008 | { |
eb578fdb | 2009 | char *s; |
463ee0b2 | 2010 | STRLEN len; |
4e553d73 | 2011 | |
7918f24d NC |
2012 | PERL_ARGS_ASSERT_FORCE_WORD; |
2013 | ||
294a536f | 2014 | start = skipspace(start); |
463ee0b2 | 2015 | s = start; |
7e2040f0 | 2016 | if (isIDFIRST_lazy_if(s,UTF) || |
345b3785 | 2017 | (allow_pack && *s == ':') ) |
a0d0e21e | 2018 | { |
3280af22 | 2019 | s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, allow_pack, &len); |
01b5ef50 FC |
2020 | if (check_keyword) { |
2021 | char *s2 = PL_tokenbuf; | |
487e470d | 2022 | STRLEN len2 = len; |
01b5ef50 | 2023 | if (allow_pack && len > 6 && strnEQ(s2, "CORE::", 6)) |
487e470d FC |
2024 | s2 += 6, len2 -= 6; |
2025 | if (keyword(s2, len2, 0)) | |
463ee0b2 | 2026 | return start; |
01b5ef50 | 2027 | } |
463ee0b2 | 2028 | if (token == METHOD) { |
294a536f | 2029 | s = skipspace(s); |
463ee0b2 | 2030 | if (*s == '(') |
3280af22 | 2031 | PL_expect = XTERM; |
463ee0b2 | 2032 | else { |
3280af22 | 2033 | PL_expect = XOPERATOR; |
463ee0b2 | 2034 | } |
79072805 | 2035 | } |
9ded7720 | 2036 | NEXTVAL_NEXTTOKE.opval |
d0a148a6 NC |
2037 | = (OP*)newSVOP(OP_CONST,0, |
2038 | S_newSV_maybe_utf8(aTHX_ PL_tokenbuf, len)); | |
9ded7720 | 2039 | NEXTVAL_NEXTTOKE.opval->op_private |= OPpCONST_BARE; |
79072805 LW |
2040 | force_next(token); |
2041 | } | |
2042 | return s; | |
2043 | } | |
2044 | ||
ffb4593c NT |
2045 | /* |
2046 | * S_force_ident | |
9cbb5ea2 | 2047 | * Called when the lexer wants $foo *foo &foo etc, but the program |
ffb4593c NT |
2048 | * text only contains the "foo" portion. The first argument is a pointer |
2049 | * to the "foo", and the second argument is the type symbol to prefix. | |
2050 | * Forces the next token to be a "WORD". | |
9cbb5ea2 | 2051 | * Creates the symbol if it didn't already exist (via gv_fetchpv()). |
ffb4593c NT |
2052 | */ |
2053 | ||
76e3520e | 2054 | STATIC void |
5aaab254 | 2055 | S_force_ident(pTHX_ const char *s, int kind) |
79072805 | 2056 | { |
7918f24d NC |
2057 | PERL_ARGS_ASSERT_FORCE_IDENT; |
2058 | ||
c9b48522 DD |
2059 | if (s[0]) { |
2060 | const STRLEN len = s[1] ? strlen(s) : 1; /* s = "\"" see yylex */ | |
728847b1 BF |
2061 | OP* const o = (OP*)newSVOP(OP_CONST, 0, newSVpvn_flags(s, len, |
2062 | UTF ? SVf_UTF8 : 0)); | |
9ded7720 | 2063 | NEXTVAL_NEXTTOKE.opval = o; |
79072805 | 2064 | force_next(WORD); |
748a9306 | 2065 | if (kind) { |
11343788 | 2066 | o->op_private = OPpCONST_ENTERED; |
55497cff | 2067 | /* XXX see note in pp_entereval() for why we forgo typo |
2068 | warnings if the symbol must be introduced in an eval. | |
2069 | GSAR 96-10-12 */ | |
90e5519e | 2070 | gv_fetchpvn_flags(s, len, |
4bff32c5 | 2071 | (PL_in_eval ? GV_ADDMULTI |
728847b1 | 2072 | : GV_ADD) | ( UTF ? SVf_UTF8 : 0 ), |
90e5519e NC |
2073 | kind == '$' ? SVt_PV : |
2074 | kind == '@' ? SVt_PVAV : | |
2075 | kind == '%' ? SVt_PVHV : | |
a0d0e21e | 2076 | SVt_PVGV |
90e5519e | 2077 | ); |
748a9306 | 2078 | } |
79072805 LW |
2079 | } |
2080 | } | |
2081 | ||
3f33d153 FC |
2082 | static void |
2083 | S_force_ident_maybe_lex(pTHX_ char pit) | |
2084 | { | |
3f33d153 FC |
2085 | NEXTVAL_NEXTTOKE.ival = pit; |
2086 | force_next('p'); | |
2087 | } | |
2088 | ||
1571675a GS |
2089 | NV |
2090 | Perl_str_to_version(pTHX_ SV *sv) | |
2091 | { | |
2092 | NV retval = 0.0; | |
2093 | NV nshift = 1.0; | |
2094 | STRLEN len; | |
cfd0369c | 2095 | const char *start = SvPV_const(sv,len); |
9d4ba2ae | 2096 | const char * const end = start + len; |
504618e9 | 2097 | const bool utf = SvUTF8(sv) ? TRUE : FALSE; |
7918f24d NC |
2098 | |
2099 | PERL_ARGS_ASSERT_STR_TO_VERSION; | |
2100 | ||
1571675a | 2101 | while (start < end) { |
ba210ebe | 2102 | STRLEN skip; |
1571675a GS |
2103 | UV n; |
2104 | if (utf) | |
9041c2e3 | 2105 | n = utf8n_to_uvchr((U8*)start, len, &skip, 0); |
1571675a GS |
2106 | else { |
2107 | n = *(U8*)start; | |
2108 | skip = 1; | |
2109 | } | |
2110 | retval += ((NV)n)/nshift; | |
2111 | start += skip; | |
2112 | nshift *= 1000; | |
2113 | } | |
2114 | return retval; | |
2115 | } | |
2116 | ||
4e553d73 | 2117 | /* |
ffb4593c NT |
2118 | * S_force_version |
2119 | * Forces the next token to be a version number. | |
e759cc13 RGS |
2120 | * If the next token appears to be an invalid version number, (e.g. "v2b"), |
2121 | * and if "guessing" is TRUE, then no new token is created (and the caller | |
2122 | * must use an alternative parsing method). | |
ffb4593c NT |
2123 | */ |
2124 | ||
76e3520e | 2125 | STATIC char * |
e759cc13 | 2126 | S_force_version(pTHX_ char *s, int guessing) |
89bfa8cd | 2127 | { |
5f66b61c | 2128 | OP *version = NULL; |
44dcb63b | 2129 | char *d; |
89bfa8cd | 2130 | |
7918f24d NC |
2131 | PERL_ARGS_ASSERT_FORCE_VERSION; |
2132 | ||
294a536f | 2133 | s = skipspace(s); |
89bfa8cd | 2134 | |
44dcb63b | 2135 | d = s; |
dd629d5b | 2136 | if (*d == 'v') |
44dcb63b | 2137 | d++; |
44dcb63b | 2138 | if (isDIGIT(*d)) { |
e759cc13 RGS |
2139 | while (isDIGIT(*d) || *d == '_' || *d == '.') |
2140 | d++; | |
4e4da3ac | 2141 | if (*d == ';' || isSPACE(*d) || *d == '{' || *d == '}' || !*d) { |
dd629d5b | 2142 | SV *ver; |
6154021b RGS |
2143 | s = scan_num(s, &pl_yylval); |
2144 | version = pl_yylval.opval; | |
dd629d5b GS |
2145 | ver = cSVOPx(version)->op_sv; |
2146 | if (SvPOK(ver) && !SvNIOK(ver)) { | |
862a34c6 | 2147 | SvUPGRADE(ver, SVt_PVNV); |
9d6ce603 | 2148 | SvNV_set(ver, str_to_version(ver)); |
1571675a | 2149 | SvNOK_on(ver); /* hint that it is a version */ |
44dcb63b | 2150 | } |
89bfa8cd | 2151 | } |
5db06880 | 2152 | else if (guessing) { |
e759cc13 | 2153 | return s; |
5db06880 | 2154 | } |
89bfa8cd | 2155 | } |
2156 | ||
2157 | /* NOTE: The parser sees the package name and the VERSION swapped */ | |
9ded7720 | 2158 | NEXTVAL_NEXTTOKE.opval = version; |
4e553d73 | 2159 | force_next(WORD); |
89bfa8cd | 2160 | |
e759cc13 | 2161 | return s; |
89bfa8cd | 2162 | } |
2163 | ||
ffb4593c | 2164 | /* |
91152fc1 DG |
2165 | * S_force_strict_version |
2166 | * Forces the next token to be a version number using strict syntax rules. | |
2167 | */ | |
2168 | ||
2169 | STATIC char * | |
2170 | S_force_strict_version(pTHX_ char *s) | |
2171 | { | |
91152fc1 | 2172 | OP *version = NULL; |
91152fc1 DG |
2173 | const char *errstr = NULL; |
2174 | ||
2175 | PERL_ARGS_ASSERT_FORCE_STRICT_VERSION; | |
2176 | ||
2177 | while (isSPACE(*s)) /* leading whitespace */ | |
2178 | s++; | |
2179 | ||
2180 | if (is_STRICT_VERSION(s,&errstr)) { | |
2181 | SV *ver = newSV(0); | |
2182 | s = (char *)scan_version(s, ver, 0); | |
2183 | version = newSVOP(OP_CONST, 0, ver); | |
2184 | } | |
4e4da3ac | 2185 | else if ( (*s != ';' && *s != '{' && *s != '}' ) && |
294a536f | 2186 | (s = skipspace(s), (*s != ';' && *s != '{' && *s != '}' ))) |
4e4da3ac | 2187 | { |
91152fc1 DG |
2188 | PL_bufptr = s; |
2189 | if (errstr) | |
2190 | yyerror(errstr); /* version required */ | |
2191 | return s; | |
2192 | } | |
2193 | ||
91152fc1 | 2194 | /* NOTE: The parser sees the package name and the VERSION swapped */ |
91152fc1 DG |
2195 | NEXTVAL_NEXTTOKE.opval = version; |
2196 | force_next(WORD); | |
2197 | ||
2198 | return s; | |
2199 | } | |
2200 | ||
2201 | /* | |
ffb4593c NT |
2202 | * S_tokeq |
2203 | * Tokenize a quoted string passed in as an SV. It finds the next | |
2204 | * chunk, up to end of string or a backslash. It may make a new | |
2205 | * SV containing that chunk (if HINT_NEW_STRING is on). It also | |
2206 | * turns \\ into \. | |
2207 | */ | |
2208 | ||
76e3520e | 2209 | STATIC SV * |
cea2e8a9 | 2210 | S_tokeq(pTHX_ SV *sv) |
79072805 | 2211 | { |
eb578fdb KW |
2212 | char *s; |
2213 | char *send; | |
2214 | char *d; | |
b3ac6de7 | 2215 | SV *pv = sv; |
79072805 | 2216 | |
7918f24d NC |
2217 | PERL_ARGS_ASSERT_TOKEQ; |
2218 | ||
279b35ad FC |
2219 | assert (SvPOK(sv)); |
2220 | assert (SvLEN(sv)); | |
2221 | assert (!SvIsCOW(sv)); | |
307ed071 | 2222 | if (SvTYPE(sv) >= SVt_PVIV && SvIVX(sv) == -1) /* <<'heredoc' */ |
b3ac6de7 | 2223 | goto finish; |
279b35ad FC |
2224 | s = SvPVX(sv); |
2225 | send = SvEND(sv); | |
dcb21ed6 NC |
2226 | /* This is relying on the SV being "well formed" with a trailing '\0' */ |
2227 | while (s < send && !(*s == '\\' && s[1] == '\\')) | |
79072805 LW |
2228 | s++; |
2229 | if (s == send) | |
b3ac6de7 | 2230 | goto finish; |
79072805 | 2231 | d = s; |
be4731d2 | 2232 | if ( PL_hints & HINT_NEW_STRING ) { |
279b35ad FC |
2233 | pv = newSVpvn_flags(SvPVX_const(pv), SvCUR(sv), |
2234 | SVs_TEMP | SvUTF8(sv)); | |
be4731d2 | 2235 | } |
79072805 LW |
2236 | while (s < send) { |
2237 | if (*s == '\\') { | |
a0d0e21e | 2238 | if (s + 1 < send && (s[1] == '\\')) |
79072805 LW |
2239 | s++; /* all that, just for this */ |
2240 | } | |
2241 | *d++ = *s++; | |
2242 | } | |
2243 | *d = '\0'; | |
95a20fc0 | 2244 | SvCUR_set(sv, d - SvPVX_const(sv)); |
b3ac6de7 | 2245 | finish: |
3280af22 | 2246 | if ( PL_hints & HINT_NEW_STRING ) |
eb0d8d16 | 2247 | return new_constant(NULL, 0, "q", sv, pv, "q", 1); |
79072805 LW |
2248 | return sv; |
2249 | } | |
2250 | ||
ffb4593c NT |
2251 | /* |
2252 | * Now come three functions related to double-quote context, | |
2253 | * S_sublex_start, S_sublex_push, and S_sublex_done. They're used when | |
2254 | * converting things like "\u\Lgnat" into ucfirst(lc("gnat")). They | |
2255 | * interact with PL_lex_state, and create fake ( ... ) argument lists | |
2256 | * to handle functions and concatenation. | |
ecd24171 DM |
2257 | * For example, |
2258 | * "foo\lbar" | |
2259 | * is tokenised as | |
2260 | * stringify ( const[foo] concat lcfirst ( const[bar] ) ) | |
ffb4593c NT |
2261 | */ |
2262 | ||
2263 | /* | |
2264 | * S_sublex_start | |
6154021b | 2265 | * Assumes that pl_yylval.ival is the op we're creating (e.g. OP_LCFIRST). |
ffb4593c NT |
2266 | * |
2267 | * Pattern matching will set PL_lex_op to the pattern-matching op to | |
6154021b | 2268 | * make (we return THING if pl_yylval.ival is OP_NULL, PMFUNC otherwise). |
ffb4593c NT |
2269 | * |
2270 | * OP_CONST and OP_READLINE are easy--just make the new op and return. | |
2271 | * | |
2272 | * Everything else becomes a FUNC. | |
2273 | * | |
2274 | * Sets PL_lex_state to LEX_INTERPPUSH unless (ival was OP_NULL or we | |
2275 | * had an OP_CONST or OP_READLINE). This just sets us up for a | |
2276 | * call to S_sublex_push(). | |
2277 | */ | |
2278 | ||
76e3520e | 2279 | STATIC I32 |
cea2e8a9 | 2280 | S_sublex_start(pTHX) |
79072805 | 2281 | { |
eb578fdb | 2282 | const I32 op_type = pl_yylval.ival; |
79072805 LW |
2283 | |
2284 | if (op_type == OP_NULL) { | |
6154021b | 2285 | pl_yylval.opval = PL_lex_op; |
5f66b61c | 2286 | PL_lex_op = NULL; |
79072805 LW |
2287 | return THING; |
2288 | } | |
466112bb | 2289 | if (op_type == OP_CONST) { |
67c71cbb FC |
2290 | SV *sv = PL_lex_stuff; |
2291 | PL_lex_stuff = NULL; | |
2292 | sv = tokeq(sv); | |
b3ac6de7 IZ |
2293 | |
2294 | if (SvTYPE(sv) == SVt_PVIV) { | |
2295 | /* Overloaded constants, nothing fancy: Convert to SVt_PV: */ | |
2296 | STRLEN len; | |
96a5add6 | 2297 | const char * const p = SvPV_const(sv, len); |
740cce10 | 2298 | SV * const nsv = newSVpvn_flags(p, len, SvUTF8(sv)); |
b3ac6de7 IZ |
2299 | SvREFCNT_dec(sv); |
2300 | sv = nsv; | |
4e553d73 | 2301 | } |
6154021b | 2302 | pl_yylval.opval = (OP*)newSVOP(op_type, 0, sv); |
79072805 LW |
2303 | return THING; |
2304 | } | |
2305 | ||
3280af22 | 2306 | PL_sublex_info.super_state = PL_lex_state; |
eac04b2e | 2307 | PL_sublex_info.sub_inwhat = (U16)op_type; |
3280af22 NIS |
2308 | PL_sublex_info.sub_op = PL_lex_op; |
2309 | PL_lex_state = LEX_INTERPPUSH; | |
55497cff | 2310 | |
3280af22 NIS |
2311 | PL_expect = XTERM; |
2312 | if (PL_lex_op) { | |
6154021b | 2313 | pl_yylval.opval = PL_lex_op; |
5f66b61c | 2314 | PL_lex_op = NULL; |
55497cff | 2315 | return PMFUNC; |
2316 | } | |
2317 | else | |
2318 | return FUNC; | |
2319 | } | |
2320 | ||
ffb4593c NT |
2321 | /* |
2322 | * S_sublex_push | |
2323 | * Create a new scope to save the lexing state. The scope will be | |
2324 | * ended in S_sublex_done. Returns a '(', starting the function arguments | |
2325 | * to the uc, lc, etc. found before. | |
2326 | * Sets PL_lex_state to LEX_INTERPCONCAT. | |
2327 | */ | |
2328 | ||
76e3520e | 2329 | STATIC I32 |
cea2e8a9 | 2330 | S_sublex_push(pTHX) |
55497cff | 2331 | { |
78a635de | 2332 | LEXSHARED *shared; |
801d32ac | 2333 | const bool is_heredoc = PL_multi_close == '<'; |
f46d017c | 2334 | ENTER; |
55497cff | 2335 | |
3280af22 | 2336 | PL_lex_state = PL_sublex_info.super_state; |
cc624add | 2337 | SAVEI8(PL_lex_dojoin); |
3280af22 | 2338 | SAVEI32(PL_lex_brackets); |
78cdf107 | 2339 | SAVEI32(PL_lex_allbrackets); |
b27dce25 | 2340 | SAVEI32(PL_lex_formbrack); |
78cdf107 | 2341 | SAVEI8(PL_lex_fakeeof); |
3280af22 NIS |
2342 | SAVEI32(PL_lex_casemods); |
2343 | SAVEI32(PL_lex_starts); | |
651b5b28 | 2344 | SAVEI8(PL_lex_state); |
c7f317a9 | 2345 | SAVEI8(PL_lex_defer); |
7cc34111 | 2346 | SAVESPTR(PL_lex_repl); |
7766f137 | 2347 | SAVEVPTR(PL_lex_inpat); |
98246f1e | 2348 | SAVEI16(PL_lex_inwhat); |
ffdb8b16 | 2349 | if (is_heredoc) |
b42366d4 | 2350 | { |
ffdb8b16 | 2351 | SAVECOPLINE(PL_curcop); |
b42366d4 | 2352 | SAVEI32(PL_multi_end); |
851b527a FC |
2353 | SAVEI32(PL_parser->herelines); |
2354 | PL_parser->herelines = 0; | |
b42366d4 FC |
2355 | } |
2356 | SAVEI8(PL_multi_close); | |
3280af22 | 2357 | SAVEPPTR(PL_bufptr); |
8452ff4b | 2358 | SAVEPPTR(PL_bufend); |
3280af22 NIS |
2359 | SAVEPPTR(PL_oldbufptr); |
2360 | SAVEPPTR(PL_oldoldbufptr); | |
207e3d1a JH |
2361 | SAVEPPTR(PL_last_lop); |
2362 | SAVEPPTR(PL_last_uni); | |
3280af22 NIS |
2363 | SAVEPPTR(PL_linestart); |
2364 | SAVESPTR(PL_linestr); | |
8edd5f42 RGS |
2365 | SAVEGENERICPV(PL_lex_brackstack); |
2366 | SAVEGENERICPV(PL_lex_casestack); | |
78a635de | 2367 | SAVEGENERICPV(PL_parser->lex_shared); |
3a54fd60 | 2368 | SAVEBOOL(PL_parser->lex_re_reparsing); |
ffdb8b16 | 2369 | SAVEI32(PL_copline); |
3280af22 | 2370 | |
99bd9d90 | 2371 | /* The here-doc parser needs to be able to peek into outer lexing |
60f40a38 FC |
2372 | scopes to find the body of the here-doc. So we put PL_linestr and |
2373 | PL_bufptr into lex_shared, to ‘share’ those values. | |
99bd9d90 | 2374 | */ |
60f40a38 FC |
2375 | PL_parser->lex_shared->ls_linestr = PL_linestr; |
2376 | PL_parser->lex_shared->ls_bufptr = PL_bufptr; | |
99bd9d90 | 2377 | |
3280af22 | 2378 | PL_linestr = PL_lex_stuff; |
7cc34111 | 2379 | PL_lex_repl = PL_sublex_info.repl; |
a0714e2c | 2380 | PL_lex_stuff = NULL; |
7cc34111 | 2381 | PL_sublex_info.repl = NULL; |
3280af22 | 2382 | |
eabab8bc FC |
2383 | /* Arrange for PL_lex_stuff to be freed on scope exit, in case it gets |
2384 | set for an inner quote-like operator and then an error causes scope- | |
2385 | popping. We must not have a PL_lex_stuff value left dangling, as | |
2386 | that breaks assumptions elsewhere. See bug #123617. */ | |
2387 | SAVEGENERICSV(PL_lex_stuff); | |
ce7c414e | 2388 | SAVEGENERICSV(PL_sublex_info.repl); |
eabab8bc | 2389 | |
9cbb5ea2 GS |
2390 | PL_bufend = PL_bufptr = PL_oldbufptr = PL_oldoldbufptr = PL_linestart |
2391 | = SvPVX(PL_linestr); | |
3280af22 | 2392 | PL_bufend += SvCUR(PL_linestr); |
bd61b366 | 2393 | PL_last_lop = PL_last_uni = NULL; |
3280af22 | 2394 | SAVEFREESV(PL_linestr); |
4dc843bc | 2395 | if (PL_lex_repl) SAVEFREESV(PL_lex_repl); |
3280af22 NIS |
2396 | |
2397 | PL_lex_dojoin = FALSE; | |
b27dce25 | 2398 | PL_lex_brackets = PL_lex_formbrack = 0; |
78cdf107 Z |
2399 | PL_lex_allbrackets = 0; |
2400 | PL_lex_fakeeof = LEX_FAKEEOF_NEVER; | |
a02a5408 JC |
2401 | Newx(PL_lex_brackstack, 120, char); |
2402 | Newx(PL_lex_casestack, 12, char); | |
3280af22 NIS |
2403 | PL_lex_casemods = 0; |
2404 | *PL_lex_casestack = '\0'; | |
2405 | PL_lex_starts = 0; | |
2406 | PL_lex_state = LEX_INTERPCONCAT; | |
ffdb8b16 | 2407 | if (is_heredoc) |
6ddcf93b | 2408 | CopLINE_set(PL_curcop, (line_t)PL_multi_start); |
ffdb8b16 | 2409 | PL_copline = NOLINE; |
78a635de FC |
2410 | |
2411 | Newxz(shared, 1, LEXSHARED); | |
2412 | shared->ls_prev = PL_parser->lex_shared; | |
2413 | PL_parser->lex_shared = shared; | |
3280af22 NIS |
2414 | |
2415 | PL_lex_inwhat = PL_sublex_info.sub_inwhat; | |
bb16bae8 | 2416 | if (PL_lex_inwhat == OP_TRANSR) PL_lex_inwhat = OP_TRANS; |
3280af22 NIS |
2417 | if (PL_lex_inwhat == OP_MATCH || PL_lex_inwhat == OP_QR || PL_lex_inwhat == OP_SUBST) |
2418 | PL_lex_inpat = PL_sublex_info.sub_op; | |
79072805 | 2419 | else |
5f66b61c | 2420 | PL_lex_inpat = NULL; |
79072805 | 2421 | |
3a54fd60 DM |
2422 | PL_parser->lex_re_reparsing = cBOOL(PL_in_eval & EVAL_RE_REPARSING); |
2423 | PL_in_eval &= ~EVAL_RE_REPARSING; | |
2424 | ||
55497cff | 2425 | return '('; |
79072805 LW |
2426 | } |
2427 | ||
ffb4593c NT |
2428 | /* |
2429 | * S_sublex_done | |
2430 | * Restores lexer state after a S_sublex_push. | |
2431 | */ | |
2432 | ||
76e3520e | 2433 | STATIC I32 |
cea2e8a9 | 2434 | S_sublex_done(pTHX) |
79072805 | 2435 | { |
3280af22 | 2436 | if (!PL_lex_starts++) { |
396482e1 | 2437 | SV * const sv = newSVpvs(""); |
9aa983d2 JH |
2438 | if (SvUTF8(PL_linestr)) |
2439 | SvUTF8_on(sv); | |
3280af22 | 2440 | PL_expect = XOPERATOR; |
6154021b | 2441 | pl_yylval.opval = (OP*)newSVOP(OP_CONST, 0, sv); |
79072805 LW |
2442 | return THING; |
2443 | } | |
2444 | ||
3280af22 NIS |
2445 | if (PL_lex_casemods) { /* oops, we've got some unbalanced parens */ |
2446 | PL_lex_state = LEX_INTERPCASEMOD; | |
cea2e8a9 | 2447 | return yylex(); |
79072805 LW |
2448 | } |
2449 | ||
ffb4593c | 2450 | /* Is there a right-hand side to take care of? (s//RHS/ or tr//RHS/) */ |
bb16bae8 | 2451 | assert(PL_lex_inwhat != OP_TRANSR); |
5aa91856 FC |
2452 | if (PL_lex_repl) { |
2453 | assert (PL_lex_inwhat == OP_SUBST || PL_lex_inwhat == OP_TRANS); | |
3280af22 NIS |
2454 | PL_linestr = PL_lex_repl; |
2455 | PL_lex_inpat = 0; | |
2456 | PL_bufend = PL_bufptr = PL_oldbufptr = PL_oldoldbufptr = PL_linestart = SvPVX(PL_linestr); | |
2457 | PL_bufend += SvCUR(PL_linestr); | |
bd61b366 | 2458 | PL_last_lop = PL_last_uni = NULL; |
3280af22 NIS |
2459 | PL_lex_dojoin = FALSE; |
2460 | PL_lex_brackets = 0; | |
78cdf107 Z |
2461 | PL_lex_allbrackets = 0; |
2462 | PL_lex_fakeeof = LEX_FAKEEOF_NEVER; | |
3280af22 NIS |
2463 | PL_lex_casemods = 0; |
2464 | *PL_lex_casestack = '\0'; | |
2465 | PL_lex_starts = 0; | |
25da4f38 | 2466 | if (SvEVALED(PL_lex_repl)) { |
3280af22 NIS |
2467 | PL_lex_state = LEX_INTERPNORMAL; |
2468 | PL_lex_starts++; | |
e9fa98b2 HS |
2469 | /* we don't clear PL_lex_repl here, so that we can check later |
2470 | whether this is an evalled subst; that means we rely on the | |
2471 | logic to ensure sublex_done() is called again only via the | |
2472 | branch (in yylex()) that clears PL_lex_repl, else we'll loop */ | |
79072805 | 2473 | } |
e9fa98b2 | 2474 | else { |
3280af22 | 2475 | PL_lex_state = LEX_INTERPCONCAT; |
a0714e2c | 2476 | PL_lex_repl = NULL; |
e9fa98b2 | 2477 | } |
ffdb8b16 FC |
2478 | if (SvTYPE(PL_linestr) >= SVt_PVNV) { |
2479 | CopLINE(PL_curcop) += | |
2480 | ((XPVNV*)SvANY(PL_linestr))->xnv_u.xpad_cop_seq.xlow | |
851b527a FC |
2481 | + PL_parser->herelines; |
2482 | PL_parser->herelines = 0; | |
ffdb8b16 | 2483 | } |
9b6b7be8 | 2484 | return '/'; |
ffed7fef LW |
2485 | } |
2486 | else { | |
b42366d4 | 2487 | const line_t l = CopLINE(PL_curcop); |
f46d017c | 2488 | LEAVE; |
b42366d4 | 2489 | if (PL_multi_close == '<') |
851b527a | 2490 | PL_parser->herelines += l - PL_multi_end; |
3280af22 NIS |
2491 | PL_bufend = SvPVX(PL_linestr); |
2492 | PL_bufend += SvCUR(PL_linestr); | |
2493 | PL_expect = XOPERATOR; | |
79072805 | 2494 | return ')'; |
ffed7fef LW |
2495 | } |
2496 | } | |
2497 | ||
6f613c73 KW |
2498 | PERL_STATIC_INLINE SV* |
2499 | S_get_and_check_backslash_N_name(pTHX_ const char* s, const char* const e) | |
2500 | { | |
140b12ad KW |
2501 | /* <s> points to first character of interior of \N{}, <e> to one beyond the |
2502 | * interior, hence to the "}". Finds what the name resolves to, returning | |
2503 | * an SV* containing it; NULL if no valid one found */ | |
2504 | ||
dd2b1b72 | 2505 | SV* res = newSVpvn_flags(s, e - s, UTF ? SVf_UTF8 : 0); |
6f613c73 | 2506 | |
0c415a79 KW |
2507 | HV * table; |
2508 | SV **cvp; | |
2509 | SV *cv; | |
2510 | SV *rv; | |
2511 | HV *stash; | |
2512 | const U8* first_bad_char_loc; | |
2513 | const char* backslash_ptr = s - 3; /* Points to the <\> of \N{... */ | |
2514 | ||
6f613c73 KW |
2515 | PERL_ARGS_ASSERT_GET_AND_CHECK_BACKSLASH_N_NAME; |
2516 | ||
b7e6151c FC |
2517 | if (!SvCUR(res)) |
2518 | return res; | |
2519 | ||
107160e2 KW |
2520 | if (UTF && ! is_utf8_string_loc((U8 *) backslash_ptr, |
2521 | e - backslash_ptr, | |
2522 | &first_bad_char_loc)) | |
2523 | { | |
2524 | /* If warnings are on, this will print a more detailed analysis of what | |
2525 | * is wrong than the error message below */ | |
c80e42f3 | 2526 | utf8n_to_uvchr(first_bad_char_loc, |
107160e2 KW |
2527 | e - ((char *) first_bad_char_loc), |
2528 | NULL, 0); | |
2529 | ||
2530 | /* We deliberately don't try to print the malformed character, which | |
2531 | * might not print very well; it also may be just the first of many | |
2532 | * malformations, so don't print what comes after it */ | |
b59c097b | 2533 | yyerror_pv(Perl_form(aTHX_ |
107160e2 | 2534 | "Malformed UTF-8 character immediately after '%.*s'", |
b59c097b AV |
2535 | (int) (first_bad_char_loc - (U8 *) backslash_ptr), backslash_ptr), |
2536 | SVf_UTF8); | |
107160e2 KW |
2537 | return NULL; |
2538 | } | |
2539 | ||
2540 | res = new_constant( NULL, 0, "charnames", res, NULL, backslash_ptr, | |
2541 | /* include the <}> */ | |
2542 | e - backslash_ptr + 1); | |
6f613c73 | 2543 | if (! SvPOK(res)) { |
b6407c49 | 2544 | SvREFCNT_dec_NN(res); |
6f613c73 KW |
2545 | return NULL; |
2546 | } | |
2547 | ||
0c415a79 KW |
2548 | /* See if the charnames handler is the Perl core's, and if so, we can skip |
2549 | * the validation needed for a user-supplied one, as Perl's does its own | |
2550 | * validation. */ | |
2551 | table = GvHV(PL_hintgv); /* ^H */ | |
2552 | cvp = hv_fetchs(table, "charnames", FALSE); | |
5882ddb3 FC |
2553 | if (cvp && (cv = *cvp) && SvROK(cv) && (rv = SvRV(cv), |
2554 | SvTYPE(rv) == SVt_PVCV) && ((stash = CvSTASH(rv)) != NULL)) | |
0c415a79 KW |
2555 | { |
2556 | const char * const name = HvNAME(stash); | |
6a642c21 FC |
2557 | if (HvNAMELEN(stash) == sizeof("_charnames")-1 |
2558 | && strEQ(name, "_charnames")) { | |
0c415a79 KW |
2559 | return res; |
2560 | } | |
2561 | } | |
2562 | ||
bde9e88d KW |
2563 | /* Here, it isn't Perl's charname handler. We can't rely on a |
2564 | * user-supplied handler to validate the input name. For non-ut8 input, | |
2565 | * look to see that the first character is legal. Then loop through the | |
2566 | * rest checking that each is a continuation */ | |
6f613c73 | 2567 | |
36897d64 KW |
2568 | /* This code makes the reasonable assumption that the only Latin1-range |
2569 | * characters that begin a character name alias are alphabetic, otherwise | |
2570 | * would have to create a isCHARNAME_BEGIN macro */ | |
b6ba1137 | 2571 | |
b6ba1137 | 2572 | if (! UTF) { |
bde9e88d | 2573 | if (! isALPHAU(*s)) { |
b6ba1137 KW |
2574 | goto bad_charname; |
2575 | } | |
bde9e88d KW |
2576 | s++; |
2577 | while (s < e) { | |
2578 | if (! isCHARNAME_CONT(*s)) { | |
b6ba1137 KW |
2579 | goto bad_charname; |
2580 | } | |
2d8eb851 KW |
2581 | if (*s == ' ' && *(s-1) == ' ') { |
2582 | goto multi_spaces; | |
bd299e29 | 2583 | } |
df758df2 KW |
2584 | if ((U8) *s == NBSP_NATIVE && ckWARN_d(WARN_DEPRECATED)) { |
2585 | Perl_warner(aTHX_ packWARN(WARN_DEPRECATED), | |
2586 | "NO-BREAK SPACE in a charnames " | |
2587 | "alias definition is deprecated"); | |
2588 | } | |
bde9e88d | 2589 | s++; |
b6ba1137 KW |
2590 | } |
2591 | } | |
2592 | else { | |
bde9e88d KW |
2593 | /* Similarly for utf8. For invariants can check directly; for other |
2594 | * Latin1, can calculate their code point and check; otherwise use a | |
2595 | * swash */ | |
2596 | if (UTF8_IS_INVARIANT(*s)) { | |
2597 | if (! isALPHAU(*s)) { | |
140b12ad KW |
2598 | goto bad_charname; |
2599 | } | |
bde9e88d KW |
2600 | s++; |
2601 | } else if (UTF8_IS_DOWNGRADEABLE_START(*s)) { | |
94bb8c36 | 2602 | if (! isALPHAU(TWO_BYTE_UTF8_TO_NATIVE(*s, *(s+1)))) { |
b6ba1137 | 2603 | goto bad_charname; |
6f613c73 | 2604 | } |
bde9e88d | 2605 | s += 2; |
6f613c73 | 2606 | } |
bde9e88d KW |
2607 | else { |
2608 | if (! PL_utf8_charname_begin) { | |
2609 | U8 flags = _CORE_SWASH_INIT_ACCEPT_INVLIST; | |
2610 | PL_utf8_charname_begin = _core_swash_init("utf8", | |
2611 | "_Perl_Charname_Begin", | |
2612 | &PL_sv_undef, | |
2613 | 1, 0, NULL, &flags); | |
2614 | } | |
2615 | if (! swash_fetch(PL_utf8_charname_begin, (U8 *) s, TRUE)) { | |
2616 | goto bad_charname; | |
2617 | } | |
2618 | s += UTF8SKIP(s); | |
2619 | } | |
2620 | ||
2621 | while (s < e) { | |
2622 | if (UTF8_IS_INVARIANT(*s)) { | |
2623 | if (! isCHARNAME_CONT(*s)) { | |
2624 | goto bad_charname; | |
2625 | } | |
2d8eb851 KW |
2626 | if (*s == ' ' && *(s-1) == ' ') { |
2627 | goto multi_spaces; | |
bd299e29 | 2628 | } |
bde9e88d KW |
2629 | s++; |
2630 | } | |
2631 | else if (UTF8_IS_DOWNGRADEABLE_START(*s)) { | |
94bb8c36 | 2632 | if (! isCHARNAME_CONT(TWO_BYTE_UTF8_TO_NATIVE(*s, *(s+1)))) |
bde9e88d KW |
2633 | { |
2634 | goto bad_charname; | |
2635 | } | |
df758df2 KW |
2636 | if (*s == *NBSP_UTF8 |
2637 | && *(s+1) == *(NBSP_UTF8+1) | |
2638 | && ckWARN_d(WARN_DEPRECATED)) | |
2639 | { | |
2640 | Perl_warner(aTHX_ packWARN(WARN_DEPRECATED), | |
2641 | "NO-BREAK SPACE in a charnames " | |
2642 | "alias definition is deprecated"); | |
2643 | } | |
bde9e88d KW |
2644 | s += 2; |
2645 | } | |
2646 | else { | |
2647 | if (! PL_utf8_charname_continue) { | |
2648 | U8 flags = _CORE_SWASH_INIT_ACCEPT_INVLIST; | |
2649 | PL_utf8_charname_continue = _core_swash_init("utf8", | |
2650 | "_Perl_Charname_Continue", | |
2651 | &PL_sv_undef, | |
2652 | 1, 0, NULL, &flags); | |
2653 | } | |
2654 | if (! swash_fetch(PL_utf8_charname_continue, (U8 *) s, TRUE)) { | |
2655 | goto bad_charname; | |
2656 | } | |
2657 | s += UTF8SKIP(s); | |
6f613c73 KW |
2658 | } |
2659 | } | |
2d8eb851 KW |
2660 | } |
2661 | if (*(s-1) == ' ') { | |
2662 | yyerror_pv( | |
2663 | Perl_form(aTHX_ | |
2664 | "charnames alias definitions may not contain trailing " | |
2665 | "white-space; marked by <-- HERE in %.*s<-- HERE %.*s", | |
2666 | (int)(s - backslash_ptr + 1), backslash_ptr, | |
2667 | (int)(e - s + 1), s + 1 | |
2668 | ), | |
2669 | UTF ? SVf_UTF8 : 0); | |
2670 | return NULL; | |
6f613c73 KW |
2671 | } |
2672 | ||
94ca1619 | 2673 | if (SvUTF8(res)) { /* Don't accept malformed input */ |
bde9e88d KW |
2674 | const U8* first_bad_char_loc; |
2675 | STRLEN len; | |
2676 | const char* const str = SvPV_const(res, len); | |
2677 | if (! is_utf8_string_loc((U8 *) str, len, &first_bad_char_loc)) { | |
2678 | /* If warnings are on, this will print a more detailed analysis of | |
2679 | * what is wrong than the error message below */ | |
c80e42f3 | 2680 | utf8n_to_uvchr(first_bad_char_loc, |
bde9e88d KW |
2681 | (char *) first_bad_char_loc - str, |
2682 | NULL, 0); | |
2683 | ||
2684 | /* We deliberately don't try to print the malformed character, | |
2685 | * which might not print very well; it also may be just the first | |
2686 | * of many malformations, so don't print what comes after it */ | |
2687 | yyerror_pv( | |
2688 | Perl_form(aTHX_ | |
2689 | "Malformed UTF-8 returned by %.*s immediately after '%.*s'", | |
2690 | (int) (e - backslash_ptr + 1), backslash_ptr, | |
2691 | (int) ((char *) first_bad_char_loc - str), str | |
2692 | ), | |
2693 | SVf_UTF8); | |
2694 | return NULL; | |
2695 | } | |
2696 | } | |
140b12ad | 2697 | |
bde9e88d | 2698 | return res; |
140b12ad | 2699 | |
bde9e88d | 2700 | bad_charname: { |
bde9e88d KW |
2701 | |
2702 | /* The final %.*s makes sure that should the trailing NUL be missing | |
2703 | * that this print won't run off the end of the string */ | |
2704 | yyerror_pv( | |
2705 | Perl_form(aTHX_ | |
2706 | "Invalid character in \\N{...}; marked by <-- HERE in %.*s<-- HERE %.*s", | |
2d8eb851 KW |
2707 | (int)(s - backslash_ptr + 1), backslash_ptr, |
2708 | (int)(e - s + 1), s + 1 | |
bde9e88d KW |
2709 | ), |
2710 | UTF ? SVf_UTF8 : 0); | |
2711 | return NULL; | |
2712 | } | |
2d8eb851 KW |
2713 | |
2714 | multi_spaces: | |
2715 | yyerror_pv( | |
2716 | Perl_form(aTHX_ | |
2717 | "charnames alias definitions may not contain a sequence of " | |
2718 | "multiple spaces; marked by <-- HERE in %.*s<-- HERE %.*s", | |
2719 | (int)(s - backslash_ptr + 1), backslash_ptr, | |
2720 | (int)(e - s + 1), s + 1 | |
2721 | ), | |
2722 | UTF ? SVf_UTF8 : 0); | |
2723 | return NULL; | |
6f613c73 KW |
2724 | } |
2725 | ||
02aa26ce NT |
2726 | /* |
2727 | scan_const | |
2728 | ||
9da1dd8f DM |
2729 | Extracts the next constant part of a pattern, double-quoted string, |
2730 | or transliteration. This is terrifying code. | |
2731 | ||
2732 | For example, in parsing the double-quoted string "ab\x63$d", it would | |
2733 | stop at the '$' and return an OP_CONST containing 'abc'. | |
02aa26ce | 2734 | |
94def140 | 2735 | It looks at PL_lex_inwhat and PL_lex_inpat to find out whether it's |
3280af22 | 2736 | processing a pattern (PL_lex_inpat is true), a transliteration |
94def140 | 2737 | (PL_lex_inwhat == OP_TRANS is true), or a double-quoted string. |
02aa26ce | 2738 | |
94def140 TS |
2739 | Returns a pointer to the character scanned up to. If this is |
2740 | advanced from the start pointer supplied (i.e. if anything was | |
9da1dd8f | 2741 | successfully parsed), will leave an OP_CONST for the substring scanned |
6154021b | 2742 | in pl_yylval. Caller must intuit reason for not parsing further |
9b599b2a GS |
2743 | by looking at the next characters herself. |
2744 | ||
02aa26ce | 2745 | In patterns: |
9da1dd8f | 2746 | expand: |
537124e4 KW |
2747 | \N{FOO} => \N{U+hex_for_character_FOO} |
2748 | (if FOO expands to multiple characters, expands to \N{U+xx.XX.yy ...}) | |
9da1dd8f DM |
2749 | |
2750 | pass through: | |
2751 | all other \-char, including \N and \N{ apart from \N{ABC} | |
2752 | ||
2753 | stops on: | |
2754 | @ and $ where it appears to be a var, but not for $ as tail anchor | |
2755 | \l \L \u \U \Q \E | |
2756 | (?{ or (??{ | |
2757 | ||
02aa26ce NT |
2758 | |
2759 | In transliterations: | |
2760 | characters are VERY literal, except for - not at the start or end | |
94def140 TS |
2761 | of the string, which indicates a range. If the range is in bytes, |
2762 | scan_const expands the range to the full set of intermediate | |
2763 | characters. If the range is in utf8, the hyphen is replaced with | |
2764 | a certain range mark which will be handled by pmtrans() in op.c. | |
02aa26ce NT |
2765 | |
2766 | In double-quoted strings: | |
2767 | backslashes: | |
2768 | double-quoted style: \r and \n | |
ff3f963a | 2769 | constants: \x31, etc. |
94def140 | 2770 | deprecated backrefs: \1 (in substitution replacements) |
02aa26ce NT |
2771 | case and quoting: \U \Q \E |
2772 | stops on @ and $ | |
2773 | ||
2774 | scan_const does *not* construct ops to handle interpolated strings. | |
2775 | It stops processing as soon as it finds an embedded $ or @ variable | |
2776 | and leaves it to the caller to work out what's going on. | |
2777 | ||
94def140 TS |
2778 | embedded arrays (whether in pattern or not) could be: |
2779 | @foo, @::foo, @'foo, @{foo}, @$foo, @+, @-. | |
2780 | ||
2781 | $ in double-quoted strings must be the symbol of an embedded scalar. | |
02aa26ce NT |
2782 | |
2783 | $ in pattern could be $foo or could be tail anchor. Assumption: | |
2784 | it's a tail anchor if $ is the last thing in the string, or if it's | |
94def140 | 2785 | followed by one of "()| \r\n\t" |
02aa26ce | 2786 | |
9da1dd8f | 2787 | \1 (backreferences) are turned into $1 in substitutions |
02aa26ce NT |
2788 | |
2789 | The structure of the code is | |
2790 | while (there's a character to process) { | |
94def140 TS |
2791 | handle transliteration ranges |
2792 | skip regexp comments /(?#comment)/ and codes /(?{code})/ | |
2793 | skip #-initiated comments in //x patterns | |
2794 | check for embedded arrays | |
02aa26ce NT |
2795 | check for embedded scalars |
2796 | if (backslash) { | |
94def140 | 2797 | deprecate \1 in substitution replacements |
02aa26ce NT |
2798 | handle string-changing backslashes \l \U \Q \E, etc. |
2799 | switch (what was escaped) { | |
94def140 | 2800 | handle \- in a transliteration (becomes a literal -) |
ff3f963a | 2801 | if a pattern and not \N{, go treat as regular character |
94def140 TS |
2802 | handle \132 (octal characters) |
2803 | handle \x15 and \x{1234} (hex characters) | |
ff3f963a | 2804 | handle \N{name} (named characters, also \N{3,5} in a pattern) |
94def140 TS |
2805 | handle \cV (control characters) |
2806 | handle printf-style backslashes (\f, \r, \n, etc) | |
02aa26ce | 2807 | } (end switch) |
77a135fe | 2808 | continue |
02aa26ce | 2809 | } (end if backslash) |
77a135fe | 2810 | handle regular character |
02aa26ce | 2811 | } (end while character to read) |
4e553d73 | 2812 | |
02aa26ce NT |
2813 | */ |
2814 | ||
76e3520e | 2815 | STATIC char * |
cea2e8a9 | 2816 | S_scan_const(pTHX_ char *start) |
79072805 | 2817 | { |
eb578fdb | 2818 | char *send = PL_bufend; /* end of the constant */ |
dc023dbb KW |
2819 | SV *sv = newSV(send - start); /* sv for the constant. See note below |
2820 | on sizing. */ | |
eb578fdb KW |
2821 | char *s = start; /* start of the constant */ |
2822 | char *d = SvPVX(sv); /* destination for copies */ | |
dc023dbb KW |
2823 | bool dorange = FALSE; /* are we in a translit range? */ |
2824 | bool didrange = FALSE; /* did we just finish a range? */ | |
2825 | bool in_charclass = FALSE; /* within /[...]/ */ | |
2826 | bool has_utf8 = FALSE; /* Output constant is UTF8 */ | |
2827 | bool this_utf8 = cBOOL(UTF); /* Is the source string assumed to be | |
2828 | UTF8? But, this can show as true | |
2829 | when the source isn't utf8, as for | |
2830 | example when it is entirely composed | |
2831 | of hex constants */ | |
6f613c73 | 2832 | SV *res; /* result from charnames */ |
77a135fe KW |
2833 | |
2834 | /* Note on sizing: The scanned constant is placed into sv, which is | |
2835 | * initialized by newSV() assuming one byte of output for every byte of | |
2836 | * input. This routine expects newSV() to allocate an extra byte for a | |
2837 | * trailing NUL, which this routine will append if it gets to the end of | |
2838 | * the input. There may be more bytes of input than output (eg., \N{LATIN | |
2839 | * CAPITAL LETTER A}), or more output than input if the constant ends up | |
2840 | * recoded to utf8, but each time a construct is found that might increase | |
2841 | * the needed size, SvGROW() is called. Its size parameter each time is | |
2842 | * based on the best guess estimate at the time, namely the length used so | |
2843 | * far, plus the length the current construct will occupy, plus room for | |
2844 | * the trailing NUL, plus one byte for every input byte still unscanned */ | |
2845 | ||
c3320c2a KW |
2846 | UV uv = UV_MAX; /* Initialize to weird value to try to catch any uses |
2847 | before set */ | |
4c3a8340 TS |
2848 | #ifdef EBCDIC |
2849 | UV literal_endpoint = 0; | |
e294cc5d | 2850 | bool native_range = TRUE; /* turned to FALSE if the first endpoint is Unicode. */ |
4c3a8340 | 2851 | #endif |
012bcf8d | 2852 | |
7918f24d NC |
2853 | PERL_ARGS_ASSERT_SCAN_CONST; |
2854 | ||
bb16bae8 | 2855 | assert(PL_lex_inwhat != OP_TRANSR); |
2b9d42f0 NIS |
2856 | if (PL_lex_inwhat == OP_TRANS && PL_sublex_info.sub_op) { |
2857 | /* If we are doing a trans and we know we want UTF8 set expectation */ | |
2858 | has_utf8 = PL_sublex_info.sub_op->op_private & (OPpTRANS_FROM_UTF|OPpTRANS_TO_UTF); | |
2859 | this_utf8 = PL_sublex_info.sub_op->op_private & (PL_lex_repl ? OPpTRANS_FROM_UTF : OPpTRANS_TO_UTF); | |
2860 | } | |
2861 | ||
b899e89d FC |
2862 | /* Protect sv from errors and fatal warnings. */ |
2863 | ENTER_with_name("scan_const"); | |
2864 | SAVEFREESV(sv); | |
2b9d42f0 | 2865 | |
79072805 | 2866 | while (s < send || dorange) { |
ff3f963a | 2867 | |
02aa26ce | 2868 | /* get transliterations out of the way (they're most literal) */ |
3280af22 | 2869 | if (PL_lex_inwhat == OP_TRANS) { |
02aa26ce | 2870 | /* expand a range A-Z to the full set of characters. AIE! */ |
79072805 | 2871 | if (dorange) { |
1ba5c669 JH |
2872 | I32 i; /* current expanded character */ |
2873 | I32 min; /* first character in range */ | |
2874 | I32 max; /* last character in range */ | |
02aa26ce | 2875 | |
e294cc5d JH |
2876 | #ifdef EBCDIC |
2877 | UV uvmax = 0; | |
2878 | #endif | |
2879 | ||
2880 | if (has_utf8 | |
2881 | #ifdef EBCDIC | |
2882 | && !native_range | |
2883 | #endif | |
1953db30 | 2884 | ) { |
9d4ba2ae | 2885 | char * const c = (char*)utf8_hop((U8*)d, -1); |
8973db79 JH |
2886 | char *e = d++; |
2887 | while (e-- > c) | |
2888 | *(e + 1) = *e; | |
e7214ce8 | 2889 | *c = (char) ILLEGAL_UTF8_BYTE; |
8973db79 JH |
2890 | /* mark the range as done, and continue */ |
2891 | dorange = FALSE; | |
2892 | didrange = TRUE; | |
2893 | continue; | |
2894 | } | |
2b9d42f0 | 2895 | |
95a20fc0 | 2896 | i = d - SvPVX_const(sv); /* remember current offset */ |
e294cc5d JH |
2897 | #ifdef EBCDIC |
2898 | SvGROW(sv, | |
dc023dbb KW |
2899 | SvLEN(sv) + ((has_utf8) |
2900 | ? (512 - UTF_CONTINUATION_MARK | |
2901 | + UNISKIP(0x100)) | |
e294cc5d JH |
2902 | : 256)); |
2903 | /* How many two-byte within 0..255: 128 in UTF-8, | |
2904 | * 96 in UTF-8-mod. */ | |
2905 | #else | |
9cbb5ea2 | 2906 | SvGROW(sv, SvLEN(sv) + 256); /* never more than 256 chars in a range */ |
e294cc5d | 2907 | #endif |
9cbb5ea2 | 2908 | d = SvPVX(sv) + i; /* refresh d after realloc */ |
e294cc5d JH |
2909 | #ifdef EBCDIC |
2910 | if (has_utf8) { | |
2911 | int j; | |
2912 | for (j = 0; j <= 1; j++) { | |
2913 | char * const c = (char*)utf8_hop((U8*)d, -1); | |
2914 | const UV uv = utf8n_to_uvchr((U8*)c, d - c, NULL, 0); | |
2915 | if (j) | |
2916 | min = (U8)uv; | |
2917 | else if (uv < 256) | |
2918 | max = (U8)uv; | |
2919 | else { | |
2920 | max = (U8)0xff; /* only to \xff */ | |
2921 | uvmax = uv; /* \x{100} to uvmax */ | |
2922 | } | |
2923 | d = c; /* eat endpoint chars */ | |
2924 | } | |
2925 | } | |
2926 | else { | |
2927 | #endif | |
2928 | d -= 2; /* eat the first char and the - */ | |
2929 | min = (U8)*d; /* first char in range */ | |
2930 | max = (U8)d[1]; /* last char in range */ | |
2931 | #ifdef EBCDIC | |
2932 | } | |
2933 | #endif | |
8ada0baa | 2934 | |
c2e66d9e | 2935 | if (min > max) { |
01ec43d0 | 2936 | Perl_croak(aTHX_ |
d1573ac7 | 2937 | "Invalid range \"%c-%c\" in transliteration operator", |
1ba5c669 | 2938 | (char)min, (char)max); |
c2e66d9e GS |
2939 | } |
2940 | ||
c7f1f016 | 2941 | #ifdef EBCDIC |
dc023dbb KW |
2942 | /* Because of the discontinuities in EBCDIC A-Z and a-z, expand |
2943 | * any subsets of these ranges into individual characters */ | |
4c3a8340 | 2944 | if (literal_endpoint == 2 && |
c286a9a6 | 2945 | ((isLOWER_A(min) && isLOWER_A(max)) || |
75e9e7bf KW |
2946 | (isUPPER_A(min) && isUPPER_A(max)))) |
2947 | { | |
2948 | for (i = min; i <= max; i++) { | |
2949 | if (isALPHA_A(i)) | |
2950 | *d++ = i; | |
8ada0baa JH |
2951 | } |
2952 | } | |
2953 | else | |
2954 | #endif | |
2955 | for (i = min; i <= max; i++) | |
e294cc5d JH |
2956 | #ifdef EBCDIC |
2957 | if (has_utf8) { | |
55d09dc8 | 2958 | append_utf8_from_native_byte(i, &d); |
e294cc5d JH |
2959 | } |
2960 | else | |
2961 | #endif | |
2962 | *d++ = (char)i; | |
2963 | ||
2964 | #ifdef EBCDIC | |
2965 | if (uvmax) { | |
2966 | d = (char*)uvchr_to_utf8((U8*)d, 0x100); | |
2967 | if (uvmax > 0x101) | |
e7214ce8 | 2968 | *d++ = (char) ILLEGAL_UTF8_BYTE; |
e294cc5d JH |
2969 | if (uvmax > 0x100) |
2970 | d = (char*)uvchr_to_utf8((U8*)d, uvmax); | |
2971 | } | |
2972 | #endif | |
02aa26ce NT |
2973 | |
2974 | /* mark the range as done, and continue */ | |
79072805 | 2975 | dorange = FALSE; |
01ec43d0 | 2976 | didrange = TRUE; |
4c3a8340 TS |
2977 | #ifdef EBCDIC |
2978 | literal_endpoint = 0; | |
2979 | #endif | |
79072805 | 2980 | continue; |
4e553d73 | 2981 | } |
02aa26ce NT |
2982 | |
2983 | /* range begins (ignore - as first or last char) */ | |
79072805 | 2984 | else if (*s == '-' && s+1 < send && s != start) { |
4e553d73 | 2985 | if (didrange) { |
1fafa243 | 2986 | Perl_croak(aTHX_ "Ambiguous range in transliteration operator"); |
01ec43d0 | 2987 | } |
e294cc5d JH |
2988 | if (has_utf8 |
2989 | #ifdef EBCDIC | |
2990 | && !native_range | |
2991 | #endif | |
2992 | ) { | |
e7214ce8 | 2993 | *d++ = (char) ILLEGAL_UTF8_BYTE; /* use illegal utf8 byte--see pmtrans */ |
a0ed51b3 LW |
2994 | s++; |
2995 | continue; | |
2996 | } | |
79072805 LW |
2997 | dorange = TRUE; |
2998 | s++; | |
01ec43d0 GS |
2999 | } |
3000 | else { | |
3001 | didrange = FALSE; | |
4c3a8340 TS |
3002 | #ifdef EBCDIC |
3003 | literal_endpoint = 0; | |
e294cc5d | 3004 | native_range = TRUE; |
4c3a8340 | 3005 | #endif |
01ec43d0 | 3006 | } |
79072805 | 3007 | } |
02aa26ce NT |
3008 | |
3009 | /* if we get here, we're not doing a transliteration */ | |
3010 | ||
e4a2df84 DM |
3011 | else if (*s == '[' && PL_lex_inpat && !in_charclass) { |
3012 | char *s1 = s-1; | |
3013 | int esc = 0; | |
3014 | while (s1 >= start && *s1-- == '\\') | |
3015 | esc = !esc; | |
3016 | if (!esc) | |
3017 | in_charclass = TRUE; | |
3018 | } | |
2866decb | 3019 | |
e4a2df84 DM |
3020 | else if (*s == ']' && PL_lex_inpat && in_charclass) { |
3021 | char *s1 = s-1; | |
3022 | int esc = 0; | |
3023 | while (s1 >= start && *s1-- == '\\') | |
3024 | esc = !esc; | |
3025 | if (!esc) | |
3026 | in_charclass = FALSE; | |
3027 | } | |
2866decb | 3028 | |
9da1dd8f DM |
3029 | /* skip for regexp comments /(?#comment)/, except for the last |
3030 | * char, which will be done separately. | |
3031 | * Stop on (?{..}) and friends */ | |
3032 | ||
c30fc27b | 3033 | else if (*s == '(' && PL_lex_inpat && s[1] == '?' && !in_charclass) { |
cc6b7395 | 3034 | if (s[2] == '#') { |
e994fd66 | 3035 | while (s+1 < send && *s != ')') |
5ff03569 | 3036 | *d++ = *s++; |
155aba94 | 3037 | } |
c30fc27b | 3038 | else if (!PL_lex_casemods && |
d3cec5e5 DM |
3039 | ( s[2] == '{' /* This should match regcomp.c */ |
3040 | || (s[2] == '?' && s[3] == '{'))) | |
155aba94 | 3041 | { |
9da1dd8f | 3042 | break; |
cc6b7395 | 3043 | } |
748a9306 | 3044 | } |
02aa26ce NT |
3045 | |
3046 | /* likewise skip #-initiated comments in //x patterns */ | |
c30fc27b | 3047 | else if (*s == '#' && PL_lex_inpat && !in_charclass && |
73134a2e | 3048 | ((PMOP*)PL_lex_inpat)->op_pmflags & RXf_PMf_EXTENDED) { |
748a9306 | 3049 | while (s+1 < send && *s != '\n') |
5ff03569 | 3050 | *d++ = *s++; |
748a9306 | 3051 | } |
02aa26ce | 3052 | |
9da1dd8f DM |
3053 | /* no further processing of single-quoted regex */ |
3054 | else if (PL_lex_inpat && SvIVX(PL_linestr) == '\'') | |
3055 | goto default_action; | |
3056 | ||
5d1d4326 | 3057 | /* check for embedded arrays |
da6eedaa | 3058 | (@foo, @::foo, @'foo, @{foo}, @$foo, @+, @-) |
5d1d4326 | 3059 | */ |
1749ea0d | 3060 | else if (*s == '@' && s[1]) { |
9d58dbc4 | 3061 | if (UTF ? isIDFIRST_utf8((U8*)s+1) : isWORDCHAR_A(s[1])) |
1749ea0d TS |
3062 | break; |
3063 | if (strchr(":'{$", s[1])) | |
3064 | break; | |
3065 | if (!PL_lex_inpat && (s[1] == '+' || s[1] == '-')) | |
3066 | break; /* in regexp, neither @+ nor @- are interpolated */ | |
3067 | } | |
02aa26ce NT |
3068 | |
3069 | /* check for embedded scalars. only stop if we're sure it's a | |
3070 | variable. | |
3071 | */ | |
79072805 | 3072 | else if (*s == '$') { |
3280af22 | 3073 | if (!PL_lex_inpat) /* not a regexp, so $ must be var */ |
79072805 | 3074 | break; |
77772344 | 3075 | if (s + 1 < send && !strchr("()| \r\n\t", s[1])) { |
a2a5de95 NC |
3076 | if (s[1] == '\\') { |
3077 | Perl_ck_warner(aTHX_ packWARN(WARN_AMBIGUOUS), | |
3078 | "Possible unintended interpolation of $\\ in regex"); | |
77772344 | 3079 | } |
79072805 | 3080 | break; /* in regexp, $ might be tail anchor */ |
77772344 | 3081 | } |
79072805 | 3082 | } |
02aa26ce | 3083 | |
2b9d42f0 NIS |
3084 | /* End of else if chain - OP_TRANS rejoin rest */ |
3085 | ||
02aa26ce | 3086 | /* backslashes */ |
79072805 | 3087 | if (*s == '\\' && s+1 < send) { |
ff3f963a KW |
3088 | char* e; /* Can be used for ending '}', etc. */ |
3089 | ||
79072805 | 3090 | s++; |
02aa26ce | 3091 | |
7d0fc23c KW |
3092 | /* warn on \1 - \9 in substitution replacements, but note that \11 |
3093 | * is an octal; and \19 is \1 followed by '9' */ | |
3280af22 | 3094 | if (PL_lex_inwhat == OP_SUBST && !PL_lex_inpat && |
a0d0e21e | 3095 | isDIGIT(*s) && *s != '0' && !isDIGIT(s[1])) |
79072805 | 3096 | { |
c782d7ee | 3097 | /* diag_listed_as: \%d better written as $%d */ |
a2a5de95 | 3098 | Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX), "\\%c better written as $%c", *s, *s); |
79072805 LW |
3099 | *--s = '$'; |
3100 | break; | |
3101 | } | |
02aa26ce NT |
3102 | |
3103 | /* string-change backslash escapes */ | |
838f2281 | 3104 | if (PL_lex_inwhat != OP_TRANS && *s && strchr("lLuUEQF", *s)) { |
79072805 LW |
3105 | --s; |
3106 | break; | |
3107 | } | |
ff3f963a KW |
3108 | /* In a pattern, process \N, but skip any other backslash escapes. |
3109 | * This is because we don't want to translate an escape sequence | |
3110 | * into a meta symbol and have the regex compiler use the meta | |
3111 | * symbol meaning, e.g. \x{2E} would be confused with a dot. But | |
3112 | * in spite of this, we do have to process \N here while the proper | |
3113 | * charnames handler is in scope. See bugs #56444 and #62056. | |
85fba779 | 3114 | * |
ff3f963a KW |
3115 | * There is a complication because \N in a pattern may also stand |
3116 | * for 'match a non-nl', and not mean a charname, in which case its | |
3117 | * processing should be deferred to the regex compiler. To be a | |
3118 | * charname it must be followed immediately by a '{', and not look | |
3119 | * like \N followed by a curly quantifier, i.e., not something like | |
3120 | * \N{3,}. regcurly returns a boolean indicating if it is a legal | |
3121 | * quantifier */ | |
3122 | else if (PL_lex_inpat | |
3123 | && (*s != 'N' | |
3124 | || s[1] != '{' | |
412f55bb | 3125 | || regcurly(s + 1))) |
ff3f963a | 3126 | { |
4d73d076 | 3127 | *d++ = '\\'; |
cc74c5bd TS |
3128 | goto default_action; |
3129 | } | |
02aa26ce | 3130 | |
79072805 | 3131 | switch (*s) { |
02aa26ce NT |
3132 | |
3133 | /* quoted - in transliterations */ | |
79072805 | 3134 | case '-': |
3280af22 | 3135 | if (PL_lex_inwhat == OP_TRANS) { |
79072805 LW |
3136 | *d++ = *s++; |
3137 | continue; | |
3138 | } | |
924ba076 | 3139 | /* FALLTHROUGH */ |
79072805 | 3140 | default: |
11b8faa4 | 3141 | { |
15861f94 | 3142 | if ((isALPHANUMERIC(*s))) |
a2a5de95 NC |
3143 | Perl_ck_warner(aTHX_ packWARN(WARN_MISC), |
3144 | "Unrecognized escape \\%c passed through", | |
3145 | *s); | |
11b8faa4 | 3146 | /* default action is to copy the quoted character */ |
f9a63242 | 3147 | goto default_action; |
11b8faa4 | 3148 | } |
02aa26ce | 3149 | |
632403cc | 3150 | /* eg. \132 indicates the octal constant 0132 */ |
79072805 LW |
3151 | case '0': case '1': case '2': case '3': |
3152 | case '4': case '5': case '6': case '7': | |
ba210ebe | 3153 | { |
5e0a247b | 3154 | I32 flags = PERL_SCAN_SILENT_ILLDIGIT; |
53305cf1 | 3155 | STRLEN len = 3; |
06972766 | 3156 | uv = grok_oct(s, &len, &flags, NULL); |
ba210ebe | 3157 | s += len; |
5e0a247b KW |
3158 | if (len < 3 && s < send && isDIGIT(*s) |
3159 | && ckWARN(WARN_MISC)) | |
3160 | { | |
3161 | Perl_warner(aTHX_ packWARN(WARN_MISC), | |
3162 | "%s", form_short_octal_warning(s, len)); | |
3163 | } | |
ba210ebe | 3164 | } |
012bcf8d | 3165 | goto NUM_ESCAPE_INSERT; |
02aa26ce | 3166 | |
f0a2b745 KW |
3167 | /* eg. \o{24} indicates the octal constant \024 */ |
3168 | case 'o': | |
3169 | { | |
454155d9 | 3170 | const char* error; |
f0a2b745 | 3171 | |
00ce5563 | 3172 | bool valid = grok_bslash_o(&s, &uv, &error, |
80f4111b KW |
3173 | TRUE, /* Output warning */ |
3174 | FALSE, /* Not strict */ | |
17896a85 KW |
3175 | TRUE, /* Output warnings for |
3176 | non-portables */ | |
80f4111b | 3177 | UTF); |
454155d9 | 3178 | if (! valid) { |
f0a2b745 KW |
3179 | yyerror(error); |
3180 | continue; | |
3181 | } | |
3182 | goto NUM_ESCAPE_INSERT; | |
3183 | } | |
3184 | ||
77a135fe | 3185 | /* eg. \x24 indicates the hex constant 0x24 */ |
79072805 | 3186 | case 'x': |
a0481293 | 3187 | { |
a0481293 | 3188 | const char* error; |
355860ce | 3189 | |
00ce5563 | 3190 | bool valid = grok_bslash_x(&s, &uv, &error, |
80f4111b KW |
3191 | TRUE, /* Output warning */ |
3192 | FALSE, /* Not strict */ | |
17896a85 KW |
3193 | TRUE, /* Output warnings for |
3194 | non-portables */ | |
80f4111b | 3195 | UTF); |
a0481293 KW |
3196 | if (! valid) { |
3197 | yyerror(error); | |
355860ce | 3198 | continue; |
ba210ebe | 3199 | } |
012bcf8d GS |
3200 | } |
3201 | ||
3202 | NUM_ESCAPE_INSERT: | |
ff3f963a KW |
3203 | /* Insert oct or hex escaped character. There will always be |
3204 | * enough room in sv since such escapes will be longer than any | |
3205 | * UTF-8 sequence they can end up as, except if they force us | |
3206 | * to recode the rest of the string into utf8 */ | |
ba7cea30 | 3207 | |
06972766 | 3208 | /* Here uv is the ordinal of the next character being added */ |
6f2d5cbc | 3209 | if (!UVCHR_IS_INVARIANT(uv)) { |
9aa983d2 | 3210 | if (!has_utf8 && uv > 255) { |
77a135fe KW |
3211 | /* Might need to recode whatever we have accumulated so |
3212 | * far if it contains any chars variant in utf8 or | |
3213 | * utf-ebcdic. */ | |
3214 | ||
3215 | SvCUR_set(sv, d - SvPVX_const(sv)); | |
3216 | SvPOK_on(sv); | |
3217 | *d = '\0'; | |
77a135fe | 3218 | /* See Note on sizing above. */ |
5eef447b KW |
3219 | sv_utf8_upgrade_flags_grow( |
3220 | sv, | |
3221 | SV_GMAGIC|SV_FORCE_UTF8_UPGRADE | |
3222 | /* Above-latin1 in string | |
3223 | * implies no encoding */ | |
3224 | |SV_UTF8_NO_ENCODING, | |
3225 | UNISKIP(uv) + (STRLEN)(send - s) + 1); | |
77a135fe KW |
3226 | d = SvPVX(sv) + SvCUR(sv); |
3227 | has_utf8 = TRUE; | |
012bcf8d GS |
3228 | } |
3229 | ||
77a135fe | 3230 | if (has_utf8) { |
c80e42f3 | 3231 | d = (char*)uvchr_to_utf8((U8*)d, uv); |
f9a63242 JH |
3232 | if (PL_lex_inwhat == OP_TRANS && |
3233 | PL_sublex_info.sub_op) { | |
3234 | PL_sublex_info.sub_op->op_private |= | |
3235 | (PL_lex_repl ? OPpTRANS_FROM_UTF | |
3236 | : OPpTRANS_TO_UTF); | |
f9a63242 | 3237 | } |
e294cc5d JH |
3238 | #ifdef EBCDIC |
3239 | if (uv > 255 && !dorange) | |
3240 | native_range = FALSE; | |
3241 | #endif | |
012bcf8d | 3242 | } |
a0ed51b3 | 3243 | else { |
012bcf8d | 3244 | *d++ = (char)uv; |
a0ed51b3 | 3245 | } |
012bcf8d GS |
3246 | } |
3247 | else { | |
c4d5f83a | 3248 | *d++ = (char) uv; |
a0ed51b3 | 3249 | } |
79072805 | 3250 | continue; |
02aa26ce | 3251 | |
4a2d328f | 3252 | case 'N': |
85fba779 KW |
3253 | /* In a non-pattern \N must be like \N{U+0041}, or it can be a |
3254 | * named character, like \N{LATIN SMALL LETTER A}, or a named | |
3255 | * sequence, like \N{LATIN CAPITAL LETTER A WITH MACRON AND | |
3256 | * GRAVE}. For convenience all three forms are referred to as | |
3257 | * "named characters" below. | |
3258 | * | |
3259 | * For patterns, \N also can mean to match a non-newline. Code | |
3260 | * before this 'switch' statement should already have handled | |
3261 | * this situation, and hence this code only has to deal with | |
3262 | * the named character cases. | |
3263 | * | |
3264 | * For non-patterns, the named characters are converted to | |
3265 | * their string equivalents. In patterns, named characters are | |
3266 | * not converted to their ultimate forms for the same reasons | |
3267 | * that other escapes aren't. Instead, they are converted to | |
3268 | * the \N{U+...} form to get the value from the charnames that | |
3269 | * is in effect right now, while preserving the fact that it | |
3270 | * was a named character, so that the regex compiler knows | |
3271 | * this. | |
3272 | * | |
3273 | * The structure of this section of code (besides checking for | |
ff3f963a | 3274 | * errors and upgrading to utf8) is: |
85fba779 KW |
3275 | * If the named character is of the form \N{U+...}, pass it |
3276 | * through if a pattern; otherwise convert the code point | |
3277 | * to utf8 | |
3278 | * Otherwise must be some \N{NAME}: convert to \N{U+c1.c2...} | |
3279 | * if a pattern; otherwise convert to utf8 | |
3280 | * | |
b6d67071 | 3281 | * Here, 's' points to the 'N'; the test below is guaranteed to |
85fba779 KW |
3282 | * succeed if we are being called on a pattern, as we already |
3283 | * know from a test above that the next character is a '{'. A | |
3284 | * non-pattern \N must mean 'named character', which requires | |
3285 | * braces */ | |
ff3f963a KW |
3286 | s++; |
3287 | if (*s != '{') { | |
3288 | yyerror("Missing braces on \\N{}"); | |
3289 | continue; | |
3290 | } | |
3291 | s++; | |
3292 | ||
0a96133f | 3293 | /* If there is no matching '}', it is an error. */ |
ff3f963a KW |
3294 | if (! (e = strchr(s, '}'))) { |
3295 | if (! PL_lex_inpat) { | |
5777a3f7 | 3296 | yyerror("Missing right brace on \\N{}"); |
0a96133f | 3297 | } else { |
4407f1b8 | 3298 | yyerror("Missing right brace on \\N{} or unescaped left brace after \\N"); |
dbc0d4f2 | 3299 | } |
0a96133f | 3300 | continue; |
ff3f963a | 3301 | } |
cddc7ef4 | 3302 | |
ff3f963a | 3303 | /* Here it looks like a named character */ |
cddc7ef4 | 3304 | |
ff3f963a | 3305 | if (*s == 'U' && s[1] == '+') { /* \N{U+...} */ |
ff3f963a | 3306 | s += 2; /* Skip to next char after the 'U+' */ |
ff3f963a | 3307 | if (PL_lex_inpat) { |
af352bf2 KW |
3308 | |
3309 | /* In patterns, we can have \N{U+xxxx.yyyy.zzzz...} */ | |
fb2eed93 FC |
3310 | /* Check the syntax. */ |
3311 | const char *orig_s; | |
3312 | orig_s = s - 5; | |
3313 | if (!isXDIGIT(*s)) { | |
3314 | bad_NU: | |
3315 | yyerror( | |
3316 | "Invalid hexadecimal number in \\N{U+...}" | |
3317 | ); | |
3318 | s = e + 1; | |
3319 | continue; | |
3320 | } | |
3321 | while (++s < e) { | |
3322 | if (isXDIGIT(*s)) | |
3323 | continue; | |
3324 | else if ((*s == '.' || *s == '_') | |
3325 | && isXDIGIT(s[1])) | |
3326 | continue; | |
3327 | goto bad_NU; | |
4cbd7e22 | 3328 | } |
af352bf2 | 3329 | |
fb2eed93 FC |
3330 | /* Pass everything through unchanged. |
3331 | * +1 is for the '}' */ | |
4cbd7e22 FC |
3332 | Copy(orig_s, d, e - orig_s + 1, char); |
3333 | d += e - orig_s + 1; | |
ff3f963a KW |
3334 | } |
3335 | else { /* Not a pattern: convert the hex to string */ | |
fb2eed93 FC |
3336 | I32 flags = PERL_SCAN_ALLOW_UNDERSCORES |
3337 | | PERL_SCAN_SILENT_ILLDIGIT | |
3338 | | PERL_SCAN_DISALLOW_PREFIX; | |
3339 | STRLEN len = e - s; | |
3340 | uv = grok_hex(s, &len, &flags, NULL); | |
3341 | if (len == 0 || (len != (STRLEN)(e - s))) | |
3342 | goto bad_NU; | |
ff3f963a | 3343 | |
85fba779 | 3344 | /* If the destination is not in utf8, unconditionally |
ff3f963a KW |
3345 | * recode it to be so. This is because \N{} implies |
3346 | * Unicode semantics, and scalars have to be in utf8 | |
3347 | * to guarantee those semantics */ | |
3348 | if (! has_utf8) { | |
3349 | SvCUR_set(sv, d - SvPVX_const(sv)); | |
3350 | SvPOK_on(sv); | |
3351 | *d = '\0'; | |
3352 | /* See Note on sizing above. */ | |
3353 | sv_utf8_upgrade_flags_grow( | |
3354 | sv, | |
3355 | SV_GMAGIC|SV_FORCE_UTF8_UPGRADE, | |
3356 | UNISKIP(uv) + (STRLEN)(send - e) + 1); | |
3357 | d = SvPVX(sv) + SvCUR(sv); | |
3358 | has_utf8 = TRUE; | |
3359 | } | |
3360 | ||
a46469e6 | 3361 | /* Add the (Unicode) code point to the output. */ |
ff3f963a | 3362 | if (UNI_IS_INVARIANT(uv)) { |
a46469e6 | 3363 | *d++ = (char) LATIN1_TO_NATIVE(uv); |
ff3f963a | 3364 | } |
a46469e6 KW |
3365 | else { |
3366 | d = (char*) uvoffuni_to_utf8_flags((U8*)d, uv, 0); | |
3367 | } | |
ff3f963a KW |
3368 | } |
3369 | } | |
6f613c73 KW |
3370 | else /* Here is \N{NAME} but not \N{U+...}. */ |
3371 | if ((res = get_and_check_backslash_N_name(s, e))) | |
3372 | { | |
3373 | STRLEN len; | |
3374 | const char *str = SvPV_const(res, len); | |
3375 | if (PL_lex_inpat) { | |
ff3f963a KW |
3376 | |
3377 | if (! len) { /* The name resolved to an empty string */ | |
3378 | Copy("\\N{}", d, 4, char); | |
3379 | d += 4; | |
3380 | } | |
3381 | else { | |
3382 | /* In order to not lose information for the regex | |
3383 | * compiler, pass the result in the specially made | |
3384 | * syntax: \N{U+c1.c2.c3...}, where c1 etc. are | |
3385 | * the code points in hex of each character | |
3386 | * returned by charnames */ | |
3387 | ||
3388 | const char *str_end = str + len; | |
3b721c4f | 3389 | const STRLEN off = d - SvPVX_const(sv); |
94ca1619 KW |
3390 | |
3391 | if (! SvUTF8(res)) { | |
3392 | /* For the non-UTF-8 case, we can determine the | |
3393 | * exact length needed without having to parse | |
3394 | * through the string. Each character takes up | |
3395 | * 2 hex digits plus either a trailing dot or | |
3396 | * the "}" */ | |
97651d61 KW |
3397 | const char initial_text[] = "\\N{U+"; |
3398 | const STRLEN initial_len = sizeof(initial_text) | |
3399 | - 1; | |
94ca1619 KW |
3400 | d = off + SvGROW(sv, off |
3401 | + 3 * len | |
97651d61 KW |
3402 | |
3403 | /* +1 for trailing NUL */ | |
3404 | + initial_len + 1 | |
3405 | ||
94ca1619 | 3406 | + (STRLEN)(send - e)); |
97651d61 KW |
3407 | Copy(initial_text, d, initial_len, char); |
3408 | d += initial_len; | |
94ca1619 KW |
3409 | while (str < str_end) { |
3410 | char hex_string[4]; | |
e8549682 | 3411 | int len = |
51f14a05 | 3412 | my_snprintf(hex_string, |
b6d67071 KW |
3413 | sizeof(hex_string), |
3414 | "%02X.", | |
3415 | ||
3416 | /* The regex compiler is | |
3417 | * expecting Unicode, not | |
3418 | * native */ | |
3419 | (U8) NATIVE_TO_LATIN1(*str)); | |
3420 | PERL_MY_SNPRINTF_POST_GUARD(len, | |
3421 | sizeof(hex_string)); | |
94ca1619 KW |
3422 | Copy(hex_string, d, 3, char); |
3423 | d += 3; | |
3424 | str++; | |
3425 | } | |
85fba779 | 3426 | d--; /* Below, we will overwrite the final |
94ca1619 KW |
3427 | dot with a right brace */ |
3428 | } | |
3429 | else { | |
1953db30 KW |
3430 | STRLEN char_length; /* cur char's byte length */ |
3431 | ||
3432 | /* and the number of bytes after this is | |
3433 | * translated into hex digits */ | |
3434 | STRLEN output_length; | |
3435 | ||
3436 | /* 2 hex per byte; 2 chars for '\N'; 2 chars | |
3437 | * for max('U+', '.'); and 1 for NUL */ | |
3438 | char hex_string[2 * UTF8_MAXBYTES + 5]; | |
3439 | ||
3440 | /* Get the first character of the result. */ | |
a46469e6 | 3441 | U32 uv = utf8n_to_uvchr((U8 *) str, |
1953db30 KW |
3442 | len, |
3443 | &char_length, | |
3444 | UTF8_ALLOW_ANYUV); | |
b6d67071 KW |
3445 | /* Convert first code point to Unicode hex, |
3446 | * including the boiler plate before it. */ | |
1953db30 KW |
3447 | output_length = |
3448 | my_snprintf(hex_string, sizeof(hex_string), | |
b6d67071 KW |
3449 | "\\N{U+%X", |
3450 | (unsigned int) NATIVE_TO_UNI(uv)); | |
1953db30 KW |
3451 | |
3452 | /* Make sure there is enough space to hold it */ | |
3453 | d = off + SvGROW(sv, off | |
3454 | + output_length | |
3455 | + (STRLEN)(send - e) | |
3456 | + 2); /* '}' + NUL */ | |
3457 | /* And output it */ | |
3458 | Copy(hex_string, d, output_length, char); | |
3459 | d += output_length; | |
3460 | ||
3461 | /* For each subsequent character, append dot and | |
b6d67071 | 3462 | * its Unicode code point in hex */ |
1953db30 KW |
3463 | while ((str += char_length) < str_end) { |
3464 | const STRLEN off = d - SvPVX_const(sv); | |
a46469e6 | 3465 | U32 uv = utf8n_to_uvchr((U8 *) str, |
1953db30 KW |
3466 | str_end - str, |
3467 | &char_length, | |
3468 | UTF8_ALLOW_ANYUV); | |
3469 | output_length = | |
3470 | my_snprintf(hex_string, | |
b6d67071 KW |
3471 | sizeof(hex_string), |
3472 | ".%X", | |
3473 | (unsigned int) NATIVE_TO_UNI(uv)); | |
1953db30 KW |
3474 | |
3475 | d = off + SvGROW(sv, off | |
3476 | + output_length | |
3477 | + (STRLEN)(send - e) | |
3478 | + 2); /* '}' + NUL */ | |
3479 | Copy(hex_string, d, output_length, char); | |
3480 | d += output_length; | |
3481 | } | |
94ca1619 | 3482 | } |
ff3f963a KW |
3483 | |
3484 | *d++ = '}'; /* Done. Add the trailing brace */ | |
3485 | } | |
3486 | } | |
3487 | else { /* Here, not in a pattern. Convert the name to a | |
3488 | * string. */ | |
3489 | ||
3490 | /* If destination is not in utf8, unconditionally | |
3491 | * recode it to be so. This is because \N{} implies | |
3492 | * Unicode semantics, and scalars have to be in utf8 | |
3493 | * to guarantee those semantics */ | |
3494 | if (! has_utf8) { | |
3495 | SvCUR_set(sv, d - SvPVX_const(sv)); | |
3496 | SvPOK_on(sv); | |
3497 | *d = '\0'; | |
3498 | /* See Note on sizing above. */ | |
3499 | sv_utf8_upgrade_flags_grow(sv, | |
3500 | SV_GMAGIC|SV_FORCE_UTF8_UPGRADE, | |
3501 | len + (STRLEN)(send - s) + 1); | |
3502 | d = SvPVX(sv) + SvCUR(sv); | |
3503 | has_utf8 = TRUE; | |
3504 | } else if (len > (STRLEN)(e - s + 4)) { /* I _guess_ 4 is \N{} --jhi */ | |
3505 | ||
3506 | /* See Note on sizing above. (NOTE: SvCUR() is not | |
3507 | * set correctly here). */ | |
3508 | const STRLEN off = d - SvPVX_const(sv); | |
3509 | d = off + SvGROW(sv, off + len + (STRLEN)(send - s) + 1); | |
3510 | } | |
716d5ef3 | 3511 | if (! SvUTF8(res)) { /* Make sure \N{} return is UTF-8 */ |
896eff3c | 3512 | sv_utf8_upgrade_flags(res, SV_UTF8_NO_ENCODING); |
7fc82458 KW |
3513 | str = SvPV_const(res, len); |
3514 | } | |
ff3f963a KW |
3515 | Copy(str, d, len, char); |
3516 | d += len; | |
423cee85 | 3517 | } |
6f613c73 | 3518 | |
423cee85 | 3519 | SvREFCNT_dec(res); |
cb233ae3 | 3520 | |
cb233ae3 | 3521 | } /* End \N{NAME} */ |
ff3f963a KW |
3522 | #ifdef EBCDIC |
3523 | if (!dorange) | |
3524 | native_range = FALSE; /* \N{} is defined to be Unicode */ | |
3525 | #endif | |
3526 | s = e + 1; /* Point to just after the '}' */ | |
423cee85 JH |
3527 | continue; |
3528 | ||
02aa26ce | 3529 | /* \c is a control character */ |
79072805 LW |
3530 | case 'c': |
3531 | s++; | |
961ce445 | 3532 | if (s < send) { |
421e43ba | 3533 | *d++ = grok_bslash_c(*s++, 1); |
ba210ebe | 3534 | } |
961ce445 RGS |
3535 | else { |
3536 | yyerror("Missing control char name in \\c"); | |
3537 | } | |
79072805 | 3538 | continue; |
02aa26ce NT |
3539 | |
3540 | /* printf-style backslashes, formfeeds, newlines, etc */ | |
79072805 | 3541 | case 'b': |
4d73d076 | 3542 | *d++ = '\b'; |
79072805 LW |
3543 | break; |
3544 | case 'n': | |
4d73d076 | 3545 | *d++ = '\n'; |
79072805 LW |
3546 | break; |
3547 | case 'r': | |
4d73d076 | 3548 | *d++ = '\r'; |
79072805 LW |
3549 | break; |
3550 | case 'f': | |
4d73d076 | 3551 | *d++ = '\f'; |
79072805 LW |
3552 | break; |
3553 | case 't': | |
4d73d076 | 3554 | *d++ = '\t'; |
79072805 | 3555 | break; |
34a3fe2a | 3556 | case 'e': |
da0334e8 | 3557 | *d++ = ESC_NATIVE; |
34a3fe2a PP |
3558 | break; |
3559 | case 'a': | |
4d73d076 | 3560 | *d++ = '\a'; |
79072805 | 3561 | break; |
02aa26ce NT |
3562 | } /* end switch */ |
3563 | ||
79072805 LW |
3564 | s++; |
3565 | continue; | |
02aa26ce | 3566 | } /* end if (backslash) */ |
4c3a8340 TS |
3567 | #ifdef EBCDIC |
3568 | else | |
3569 | literal_endpoint++; | |
3570 | #endif | |
02aa26ce | 3571 | |
f9a63242 | 3572 | default_action: |
77a135fe KW |
3573 | /* If we started with encoded form, or already know we want it, |
3574 | then encode the next character */ | |
6f2d5cbc | 3575 | if (! NATIVE_BYTE_IS_INVARIANT((U8)(*s)) && (this_utf8 || has_utf8)) { |
2b9d42f0 | 3576 | STRLEN len = 1; |
77a135fe KW |
3577 | |
3578 | ||
3579 | /* One might think that it is wasted effort in the case of the | |
3580 | * source being utf8 (this_utf8 == TRUE) to take the next character | |
3581 | * in the source, convert it to an unsigned value, and then convert | |
3582 | * it back again. But the source has not been validated here. The | |
3583 | * routine that does the conversion checks for errors like | |
3584 | * malformed utf8 */ | |
3585 | ||
233ca360 KW |
3586 | const UV nextuv = (this_utf8) |
3587 | ? utf8n_to_uvchr((U8*)s, send - s, &len, 0) | |
3588 | : (UV) ((U8) *s); | |
5aaebcb3 | 3589 | const STRLEN need = UNISKIP(nextuv); |
77a135fe KW |
3590 | if (!has_utf8) { |
3591 | SvCUR_set(sv, d - SvPVX_const(sv)); | |
3592 | SvPOK_on(sv); | |
3593 | *d = '\0'; | |
77a135fe | 3594 | /* See Note on sizing above. */ |
7bf79863 KW |
3595 | sv_utf8_upgrade_flags_grow(sv, |
3596 | SV_GMAGIC|SV_FORCE_UTF8_UPGRADE, | |
3597 | need + (STRLEN)(send - s) + 1); | |
77a135fe KW |
3598 | d = SvPVX(sv) + SvCUR(sv); |
3599 | has_utf8 = TRUE; | |
3600 | } else if (need > len) { | |
3601 | /* encoded value larger than old, may need extra space (NOTE: | |
3602 | * SvCUR() is not set correctly here). See Note on sizing | |
3603 | * above. */ | |
9d4ba2ae | 3604 | const STRLEN off = d - SvPVX_const(sv); |
77a135fe | 3605 | d = SvGROW(sv, off + need + (STRLEN)(send - s) + 1) + off; |
2b9d42f0 | 3606 | } |
77a135fe KW |
3607 | s += len; |
3608 | ||
5f66b61c | 3609 | d = (char*)uvchr_to_utf8((U8*)d, nextuv); |
e294cc5d JH |
3610 | #ifdef EBCDIC |
3611 | if (uv > 255 && !dorange) | |
3612 | native_range = FALSE; | |
3613 | #endif | |
2b9d42f0 NIS |
3614 | } |
3615 | else { | |
5ff03569 | 3616 | *d++ = *s++; |
2b9d42f0 | 3617 | } |
02aa26ce NT |
3618 | } /* while loop to process each character */ |
3619 | ||
3620 | /* terminate the string and set up the sv */ | |
79072805 | 3621 | *d = '\0'; |
95a20fc0 | 3622 | SvCUR_set(sv, d - SvPVX_const(sv)); |
2b9d42f0 | 3623 | if (SvCUR(sv) >= SvLEN(sv)) |
5637ef5b NC |
3624 | Perl_croak(aTHX_ "panic: constant overflowed allocated space, %"UVuf |
3625 | " >= %"UVuf, (UV)SvCUR(sv), (UV)SvLEN(sv)); | |
2b9d42f0 | 3626 | |
79072805 | 3627 | SvPOK_on( |