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 | |
26 | ||
27 | This is the lower layer of the Perl parser, managing characters and tokens. | |
28 | ||
29 | =for apidoc AmU|yy_parser *|PL_parser | |
30 | ||
31 | Pointer to a structure encapsulating the state of the parsing operation | |
32 | currently in progress. The pointer can be locally changed to perform | |
33 | a nested parse without interfering with the state of an outer parse. | |
34 | Individual members of C<PL_parser> have their own documentation. | |
35 | ||
36 | =cut | |
37 | */ | |
38 | ||
378cc40b | 39 | #include "EXTERN.h" |
864dbfa3 | 40 | #define PERL_IN_TOKE_C |
378cc40b | 41 | #include "perl.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 | |
acdf0a21 DM |
48 | /* YYINITDEPTH -- initial size of the parser's stacks. */ |
49 | #define YYINITDEPTH 200 | |
50 | ||
199e78b7 DM |
51 | /* XXX temporary backwards compatibility */ |
52 | #define PL_lex_brackets (PL_parser->lex_brackets) | |
53 | #define PL_lex_brackstack (PL_parser->lex_brackstack) | |
54 | #define PL_lex_casemods (PL_parser->lex_casemods) | |
55 | #define PL_lex_casestack (PL_parser->lex_casestack) | |
56 | #define PL_lex_defer (PL_parser->lex_defer) | |
57 | #define PL_lex_dojoin (PL_parser->lex_dojoin) | |
58 | #define PL_lex_expect (PL_parser->lex_expect) | |
59 | #define PL_lex_formbrack (PL_parser->lex_formbrack) | |
60 | #define PL_lex_inpat (PL_parser->lex_inpat) | |
61 | #define PL_lex_inwhat (PL_parser->lex_inwhat) | |
62 | #define PL_lex_op (PL_parser->lex_op) | |
63 | #define PL_lex_repl (PL_parser->lex_repl) | |
64 | #define PL_lex_starts (PL_parser->lex_starts) | |
65 | #define PL_lex_stuff (PL_parser->lex_stuff) | |
66 | #define PL_multi_start (PL_parser->multi_start) | |
67 | #define PL_multi_open (PL_parser->multi_open) | |
68 | #define PL_multi_close (PL_parser->multi_close) | |
69 | #define PL_pending_ident (PL_parser->pending_ident) | |
70 | #define PL_preambled (PL_parser->preambled) | |
71 | #define PL_sublex_info (PL_parser->sublex_info) | |
bdc0bf6f | 72 | #define PL_linestr (PL_parser->linestr) |
c2598295 DM |
73 | #define PL_expect (PL_parser->expect) |
74 | #define PL_copline (PL_parser->copline) | |
f06b5848 DM |
75 | #define PL_bufptr (PL_parser->bufptr) |
76 | #define PL_oldbufptr (PL_parser->oldbufptr) | |
77 | #define PL_oldoldbufptr (PL_parser->oldoldbufptr) | |
78 | #define PL_linestart (PL_parser->linestart) | |
79 | #define PL_bufend (PL_parser->bufend) | |
80 | #define PL_last_uni (PL_parser->last_uni) | |
81 | #define PL_last_lop (PL_parser->last_lop) | |
82 | #define PL_last_lop_op (PL_parser->last_lop_op) | |
bc177e6b | 83 | #define PL_lex_state (PL_parser->lex_state) |
2f9285f8 | 84 | #define PL_rsfp (PL_parser->rsfp) |
5486870f | 85 | #define PL_rsfp_filters (PL_parser->rsfp_filters) |
12bd6ede DM |
86 | #define PL_in_my (PL_parser->in_my) |
87 | #define PL_in_my_stash (PL_parser->in_my_stash) | |
14047fc9 | 88 | #define PL_tokenbuf (PL_parser->tokenbuf) |
670a9cb2 | 89 | #define PL_multi_end (PL_parser->multi_end) |
13765c85 | 90 | #define PL_error_count (PL_parser->error_count) |
199e78b7 DM |
91 | |
92 | #ifdef PERL_MAD | |
93 | # define PL_endwhite (PL_parser->endwhite) | |
94 | # define PL_faketokens (PL_parser->faketokens) | |
95 | # define PL_lasttoke (PL_parser->lasttoke) | |
96 | # define PL_nextwhite (PL_parser->nextwhite) | |
97 | # define PL_realtokenstart (PL_parser->realtokenstart) | |
98 | # define PL_skipwhite (PL_parser->skipwhite) | |
99 | # define PL_thisclose (PL_parser->thisclose) | |
100 | # define PL_thismad (PL_parser->thismad) | |
101 | # define PL_thisopen (PL_parser->thisopen) | |
102 | # define PL_thisstuff (PL_parser->thisstuff) | |
103 | # define PL_thistoken (PL_parser->thistoken) | |
104 | # define PL_thiswhite (PL_parser->thiswhite) | |
fb205e7a DM |
105 | # define PL_thiswhite (PL_parser->thiswhite) |
106 | # define PL_nexttoke (PL_parser->nexttoke) | |
107 | # define PL_curforce (PL_parser->curforce) | |
108 | #else | |
109 | # define PL_nexttoke (PL_parser->nexttoke) | |
110 | # define PL_nexttype (PL_parser->nexttype) | |
111 | # define PL_nextval (PL_parser->nextval) | |
199e78b7 DM |
112 | #endif |
113 | ||
16173588 NC |
114 | /* This can't be done with embed.fnc, because struct yy_parser contains a |
115 | member named pending_ident, which clashes with the generated #define */ | |
3cbf51f5 DM |
116 | static int |
117 | S_pending_ident(pTHX); | |
199e78b7 | 118 | |
0bd48802 | 119 | static const char ident_too_long[] = "Identifier too long"; |
8903cb82 | 120 | |
29595ff2 | 121 | #ifdef PERL_MAD |
29595ff2 | 122 | # define CURMAD(slot,sv) if (PL_madskills) { curmad(slot,sv); sv = 0; } |
cd81e915 | 123 | # define NEXTVAL_NEXTTOKE PL_nexttoke[PL_curforce].next_val |
9ded7720 | 124 | #else |
5db06880 | 125 | # define CURMAD(slot,sv) |
9ded7720 | 126 | # define NEXTVAL_NEXTTOKE PL_nextval[PL_nexttoke] |
29595ff2 NC |
127 | #endif |
128 | ||
9059aa12 LW |
129 | #define XFAKEBRACK 128 |
130 | #define XENUMMASK 127 | |
131 | ||
39e02b42 JH |
132 | #ifdef USE_UTF8_SCRIPTS |
133 | # define UTF (!IN_BYTES) | |
2b9d42f0 | 134 | #else |
746b446a | 135 | # define UTF ((PL_linestr && DO_UTF8(PL_linestr)) || (PL_hints & HINT_UTF8)) |
2b9d42f0 | 136 | #endif |
a0ed51b3 | 137 | |
b1fc3636 CJ |
138 | /* The maximum number of characters preceding the unrecognized one to display */ |
139 | #define UNRECOGNIZED_PRECEDE_COUNT 10 | |
140 | ||
61f0cdd9 | 141 | /* In variables named $^X, these are the legal values for X. |
2b92dfce GS |
142 | * 1999-02-27 mjd-perl-patch@plover.com */ |
143 | #define isCONTROLVAR(x) (isUPPER(x) || strchr("[\\]^_?", (x))) | |
144 | ||
bf4acbe4 | 145 | #define SPACE_OR_TAB(c) ((c)==' '||(c)=='\t') |
bf4acbe4 | 146 | |
ffb4593c NT |
147 | /* LEX_* are values for PL_lex_state, the state of the lexer. |
148 | * They are arranged oddly so that the guard on the switch statement | |
79072805 LW |
149 | * can get by with a single comparison (if the compiler is smart enough). |
150 | */ | |
151 | ||
fb73857a | 152 | /* #define LEX_NOTPARSING 11 is done in perl.h. */ |
153 | ||
b6007c36 DM |
154 | #define LEX_NORMAL 10 /* normal code (ie not within "...") */ |
155 | #define LEX_INTERPNORMAL 9 /* code within a string, eg "$foo[$x+1]" */ | |
156 | #define LEX_INTERPCASEMOD 8 /* expecting a \U, \Q or \E etc */ | |
157 | #define LEX_INTERPPUSH 7 /* starting a new sublex parse level */ | |
158 | #define LEX_INTERPSTART 6 /* expecting the start of a $var */ | |
159 | ||
160 | /* at end of code, eg "$x" followed by: */ | |
161 | #define LEX_INTERPEND 5 /* ... eg not one of [, { or -> */ | |
162 | #define LEX_INTERPENDMAYBE 4 /* ... eg one of [, { or -> */ | |
163 | ||
164 | #define LEX_INTERPCONCAT 3 /* expecting anything, eg at start of | |
165 | string or after \E, $foo, etc */ | |
166 | #define LEX_INTERPCONST 2 /* NOT USED */ | |
167 | #define LEX_FORMLINE 1 /* expecting a format line */ | |
168 | #define LEX_KNOWNEXT 0 /* next token known; just return it */ | |
169 | ||
79072805 | 170 | |
bbf60fe6 | 171 | #ifdef DEBUGGING |
27da23d5 | 172 | static const char* const lex_state_names[] = { |
bbf60fe6 DM |
173 | "KNOWNEXT", |
174 | "FORMLINE", | |
175 | "INTERPCONST", | |
176 | "INTERPCONCAT", | |
177 | "INTERPENDMAYBE", | |
178 | "INTERPEND", | |
179 | "INTERPSTART", | |
180 | "INTERPPUSH", | |
181 | "INTERPCASEMOD", | |
182 | "INTERPNORMAL", | |
183 | "NORMAL" | |
184 | }; | |
185 | #endif | |
186 | ||
79072805 LW |
187 | #ifdef ff_next |
188 | #undef ff_next | |
d48672a2 LW |
189 | #endif |
190 | ||
79072805 | 191 | #include "keywords.h" |
fe14fcc3 | 192 | |
ffb4593c NT |
193 | /* CLINE is a macro that ensures PL_copline has a sane value */ |
194 | ||
ae986130 LW |
195 | #ifdef CLINE |
196 | #undef CLINE | |
197 | #endif | |
57843af0 | 198 | #define CLINE (PL_copline = (CopLINE(PL_curcop) < PL_copline ? CopLINE(PL_curcop) : PL_copline)) |
3280af22 | 199 | |
5db06880 | 200 | #ifdef PERL_MAD |
29595ff2 NC |
201 | # define SKIPSPACE0(s) skipspace0(s) |
202 | # define SKIPSPACE1(s) skipspace1(s) | |
203 | # define SKIPSPACE2(s,tsv) skipspace2(s,&tsv) | |
204 | # define PEEKSPACE(s) skipspace2(s,0) | |
205 | #else | |
206 | # define SKIPSPACE0(s) skipspace(s) | |
207 | # define SKIPSPACE1(s) skipspace(s) | |
208 | # define SKIPSPACE2(s,tsv) skipspace(s) | |
209 | # define PEEKSPACE(s) skipspace(s) | |
210 | #endif | |
211 | ||
ffb4593c NT |
212 | /* |
213 | * Convenience functions to return different tokens and prime the | |
9cbb5ea2 | 214 | * lexer for the next token. They all take an argument. |
ffb4593c NT |
215 | * |
216 | * TOKEN : generic token (used for '(', DOLSHARP, etc) | |
217 | * OPERATOR : generic operator | |
218 | * AOPERATOR : assignment operator | |
219 | * PREBLOCK : beginning the block after an if, while, foreach, ... | |
220 | * PRETERMBLOCK : beginning a non-code-defining {} block (eg, hash ref) | |
221 | * PREREF : *EXPR where EXPR is not a simple identifier | |
222 | * TERM : expression term | |
223 | * LOOPX : loop exiting command (goto, last, dump, etc) | |
224 | * FTST : file test operator | |
225 | * FUN0 : zero-argument function | |
2d2e263d | 226 | * FUN1 : not used, except for not, which isn't a UNIOP |
ffb4593c NT |
227 | * BOop : bitwise or or xor |
228 | * BAop : bitwise and | |
229 | * SHop : shift operator | |
230 | * PWop : power operator | |
9cbb5ea2 | 231 | * PMop : pattern-matching operator |
ffb4593c NT |
232 | * Aop : addition-level operator |
233 | * Mop : multiplication-level operator | |
234 | * Eop : equality-testing operator | |
e5edeb50 | 235 | * Rop : relational operator <= != gt |
ffb4593c NT |
236 | * |
237 | * Also see LOP and lop() below. | |
238 | */ | |
239 | ||
998054bd | 240 | #ifdef DEBUGGING /* Serve -DT. */ |
704d4215 | 241 | # define REPORT(retval) tokereport((I32)retval, &pl_yylval) |
998054bd | 242 | #else |
bbf60fe6 | 243 | # define REPORT(retval) (retval) |
998054bd SC |
244 | #endif |
245 | ||
bbf60fe6 DM |
246 | #define TOKEN(retval) return ( PL_bufptr = s, REPORT(retval)) |
247 | #define OPERATOR(retval) return (PL_expect = XTERM, PL_bufptr = s, REPORT(retval)) | |
248 | #define AOPERATOR(retval) return ao((PL_expect = XTERM, PL_bufptr = s, REPORT(retval))) | |
249 | #define PREBLOCK(retval) return (PL_expect = XBLOCK,PL_bufptr = s, REPORT(retval)) | |
250 | #define PRETERMBLOCK(retval) return (PL_expect = XTERMBLOCK,PL_bufptr = s, REPORT(retval)) | |
251 | #define PREREF(retval) return (PL_expect = XREF,PL_bufptr = s, REPORT(retval)) | |
252 | #define TERM(retval) return (CLINE, PL_expect = XOPERATOR, PL_bufptr = s, REPORT(retval)) | |
6154021b RGS |
253 | #define LOOPX(f) return (pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)LOOPEX)) |
254 | #define FTST(f) return (pl_yylval.ival=f, PL_expect=XTERMORDORDOR, PL_bufptr=s, REPORT((int)UNIOP)) | |
255 | #define FUN0(f) return (pl_yylval.ival=f, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC0)) | |
256 | #define FUN1(f) return (pl_yylval.ival=f, PL_expect=XOPERATOR, PL_bufptr=s, REPORT((int)FUNC1)) | |
257 | #define BOop(f) return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)BITOROP))) | |
258 | #define BAop(f) return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)BITANDOP))) | |
259 | #define SHop(f) return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)SHIFTOP))) | |
260 | #define PWop(f) return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)POWOP))) | |
261 | #define PMop(f) return(pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)MATCHOP)) | |
262 | #define Aop(f) return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)ADDOP))) | |
263 | #define Mop(f) return ao((pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)MULOP))) | |
264 | #define Eop(f) return (pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)EQOP)) | |
265 | #define Rop(f) return (pl_yylval.ival=f, PL_expect=XTERM, PL_bufptr=s, REPORT((int)RELOP)) | |
2f3197b3 | 266 | |
a687059c LW |
267 | /* This bit of chicanery makes a unary function followed by |
268 | * a parenthesis into a function with one argument, highest precedence. | |
6f33ba73 RGS |
269 | * The UNIDOR macro is for unary functions that can be followed by the // |
270 | * operator (such as C<shift // 0>). | |
a687059c | 271 | */ |
376fcdbf | 272 | #define UNI2(f,x) { \ |
6154021b | 273 | pl_yylval.ival = f; \ |
376fcdbf AL |
274 | PL_expect = x; \ |
275 | PL_bufptr = s; \ | |
276 | PL_last_uni = PL_oldbufptr; \ | |
277 | PL_last_lop_op = f; \ | |
278 | if (*s == '(') \ | |
279 | return REPORT( (int)FUNC1 ); \ | |
29595ff2 | 280 | s = PEEKSPACE(s); \ |
376fcdbf AL |
281 | return REPORT( *s=='(' ? (int)FUNC1 : (int)UNIOP ); \ |
282 | } | |
6f33ba73 RGS |
283 | #define UNI(f) UNI2(f,XTERM) |
284 | #define UNIDOR(f) UNI2(f,XTERMORDORDOR) | |
a687059c | 285 | |
376fcdbf | 286 | #define UNIBRACK(f) { \ |
6154021b | 287 | pl_yylval.ival = f; \ |
376fcdbf AL |
288 | PL_bufptr = s; \ |
289 | PL_last_uni = PL_oldbufptr; \ | |
290 | if (*s == '(') \ | |
291 | return REPORT( (int)FUNC1 ); \ | |
29595ff2 | 292 | s = PEEKSPACE(s); \ |
376fcdbf AL |
293 | return REPORT( (*s == '(') ? (int)FUNC1 : (int)UNIOP ); \ |
294 | } | |
79072805 | 295 | |
9f68db38 | 296 | /* grandfather return to old style */ |
6154021b | 297 | #define OLDLOP(f) return(pl_yylval.ival=f,PL_expect = XTERM,PL_bufptr = s,(int)LSTOP) |
79072805 | 298 | |
8fa7f367 JH |
299 | #ifdef DEBUGGING |
300 | ||
6154021b | 301 | /* how to interpret the pl_yylval associated with the token */ |
bbf60fe6 DM |
302 | enum token_type { |
303 | TOKENTYPE_NONE, | |
304 | TOKENTYPE_IVAL, | |
6154021b | 305 | TOKENTYPE_OPNUM, /* pl_yylval.ival contains an opcode number */ |
bbf60fe6 DM |
306 | TOKENTYPE_PVAL, |
307 | TOKENTYPE_OPVAL, | |
308 | TOKENTYPE_GVVAL | |
309 | }; | |
310 | ||
6d4a66ac NC |
311 | static struct debug_tokens { |
312 | const int token; | |
313 | enum token_type type; | |
314 | const char *name; | |
315 | } const debug_tokens[] = | |
9041c2e3 | 316 | { |
bbf60fe6 DM |
317 | { ADDOP, TOKENTYPE_OPNUM, "ADDOP" }, |
318 | { ANDAND, TOKENTYPE_NONE, "ANDAND" }, | |
319 | { ANDOP, TOKENTYPE_NONE, "ANDOP" }, | |
320 | { ANONSUB, TOKENTYPE_IVAL, "ANONSUB" }, | |
321 | { ARROW, TOKENTYPE_NONE, "ARROW" }, | |
322 | { ASSIGNOP, TOKENTYPE_OPNUM, "ASSIGNOP" }, | |
323 | { BITANDOP, TOKENTYPE_OPNUM, "BITANDOP" }, | |
324 | { BITOROP, TOKENTYPE_OPNUM, "BITOROP" }, | |
325 | { COLONATTR, TOKENTYPE_NONE, "COLONATTR" }, | |
326 | { CONTINUE, TOKENTYPE_NONE, "CONTINUE" }, | |
0d863452 | 327 | { DEFAULT, TOKENTYPE_NONE, "DEFAULT" }, |
bbf60fe6 DM |
328 | { DO, TOKENTYPE_NONE, "DO" }, |
329 | { DOLSHARP, TOKENTYPE_NONE, "DOLSHARP" }, | |
330 | { DORDOR, TOKENTYPE_NONE, "DORDOR" }, | |
331 | { DOROP, TOKENTYPE_OPNUM, "DOROP" }, | |
332 | { DOTDOT, TOKENTYPE_IVAL, "DOTDOT" }, | |
333 | { ELSE, TOKENTYPE_NONE, "ELSE" }, | |
334 | { ELSIF, TOKENTYPE_IVAL, "ELSIF" }, | |
335 | { EQOP, TOKENTYPE_OPNUM, "EQOP" }, | |
336 | { FOR, TOKENTYPE_IVAL, "FOR" }, | |
337 | { FORMAT, TOKENTYPE_NONE, "FORMAT" }, | |
338 | { FUNC, TOKENTYPE_OPNUM, "FUNC" }, | |
339 | { FUNC0, TOKENTYPE_OPNUM, "FUNC0" }, | |
340 | { FUNC0SUB, TOKENTYPE_OPVAL, "FUNC0SUB" }, | |
341 | { FUNC1, TOKENTYPE_OPNUM, "FUNC1" }, | |
342 | { FUNCMETH, TOKENTYPE_OPVAL, "FUNCMETH" }, | |
0d863452 | 343 | { GIVEN, TOKENTYPE_IVAL, "GIVEN" }, |
bbf60fe6 DM |
344 | { HASHBRACK, TOKENTYPE_NONE, "HASHBRACK" }, |
345 | { IF, TOKENTYPE_IVAL, "IF" }, | |
346 | { LABEL, TOKENTYPE_PVAL, "LABEL" }, | |
347 | { LOCAL, TOKENTYPE_IVAL, "LOCAL" }, | |
348 | { LOOPEX, TOKENTYPE_OPNUM, "LOOPEX" }, | |
349 | { LSTOP, TOKENTYPE_OPNUM, "LSTOP" }, | |
350 | { LSTOPSUB, TOKENTYPE_OPVAL, "LSTOPSUB" }, | |
351 | { MATCHOP, TOKENTYPE_OPNUM, "MATCHOP" }, | |
352 | { METHOD, TOKENTYPE_OPVAL, "METHOD" }, | |
353 | { MULOP, TOKENTYPE_OPNUM, "MULOP" }, | |
354 | { MY, TOKENTYPE_IVAL, "MY" }, | |
355 | { MYSUB, TOKENTYPE_NONE, "MYSUB" }, | |
356 | { NOAMP, TOKENTYPE_NONE, "NOAMP" }, | |
357 | { NOTOP, TOKENTYPE_NONE, "NOTOP" }, | |
358 | { OROP, TOKENTYPE_IVAL, "OROP" }, | |
359 | { OROR, TOKENTYPE_NONE, "OROR" }, | |
360 | { PACKAGE, TOKENTYPE_NONE, "PACKAGE" }, | |
88e1f1a2 JV |
361 | { PLUGEXPR, TOKENTYPE_OPVAL, "PLUGEXPR" }, |
362 | { PLUGSTMT, TOKENTYPE_OPVAL, "PLUGSTMT" }, | |
bbf60fe6 DM |
363 | { PMFUNC, TOKENTYPE_OPVAL, "PMFUNC" }, |
364 | { POSTDEC, TOKENTYPE_NONE, "POSTDEC" }, | |
365 | { POSTINC, TOKENTYPE_NONE, "POSTINC" }, | |
366 | { POWOP, TOKENTYPE_OPNUM, "POWOP" }, | |
367 | { PREDEC, TOKENTYPE_NONE, "PREDEC" }, | |
368 | { PREINC, TOKENTYPE_NONE, "PREINC" }, | |
369 | { PRIVATEREF, TOKENTYPE_OPVAL, "PRIVATEREF" }, | |
370 | { REFGEN, TOKENTYPE_NONE, "REFGEN" }, | |
371 | { RELOP, TOKENTYPE_OPNUM, "RELOP" }, | |
372 | { SHIFTOP, TOKENTYPE_OPNUM, "SHIFTOP" }, | |
373 | { SUB, TOKENTYPE_NONE, "SUB" }, | |
374 | { THING, TOKENTYPE_OPVAL, "THING" }, | |
375 | { UMINUS, TOKENTYPE_NONE, "UMINUS" }, | |
376 | { UNIOP, TOKENTYPE_OPNUM, "UNIOP" }, | |
377 | { UNIOPSUB, TOKENTYPE_OPVAL, "UNIOPSUB" }, | |
378 | { UNLESS, TOKENTYPE_IVAL, "UNLESS" }, | |
379 | { UNTIL, TOKENTYPE_IVAL, "UNTIL" }, | |
380 | { USE, TOKENTYPE_IVAL, "USE" }, | |
0d863452 | 381 | { WHEN, TOKENTYPE_IVAL, "WHEN" }, |
bbf60fe6 DM |
382 | { WHILE, TOKENTYPE_IVAL, "WHILE" }, |
383 | { WORD, TOKENTYPE_OPVAL, "WORD" }, | |
be25f609 | 384 | { YADAYADA, TOKENTYPE_IVAL, "YADAYADA" }, |
c35e046a | 385 | { 0, TOKENTYPE_NONE, NULL } |
bbf60fe6 DM |
386 | }; |
387 | ||
6154021b | 388 | /* dump the returned token in rv, plus any optional arg in pl_yylval */ |
998054bd | 389 | |
bbf60fe6 | 390 | STATIC int |
704d4215 | 391 | S_tokereport(pTHX_ I32 rv, const YYSTYPE* lvalp) |
bbf60fe6 | 392 | { |
97aff369 | 393 | dVAR; |
7918f24d NC |
394 | |
395 | PERL_ARGS_ASSERT_TOKEREPORT; | |
396 | ||
bbf60fe6 | 397 | if (DEBUG_T_TEST) { |
bd61b366 | 398 | const char *name = NULL; |
bbf60fe6 | 399 | enum token_type type = TOKENTYPE_NONE; |
f54cb97a | 400 | const struct debug_tokens *p; |
396482e1 | 401 | SV* const report = newSVpvs("<== "); |
bbf60fe6 | 402 | |
f54cb97a | 403 | for (p = debug_tokens; p->token; p++) { |
bbf60fe6 DM |
404 | if (p->token == (int)rv) { |
405 | name = p->name; | |
406 | type = p->type; | |
407 | break; | |
408 | } | |
409 | } | |
410 | if (name) | |
54667de8 | 411 | Perl_sv_catpv(aTHX_ report, name); |
bbf60fe6 DM |
412 | else if ((char)rv > ' ' && (char)rv < '~') |
413 | Perl_sv_catpvf(aTHX_ report, "'%c'", (char)rv); | |
414 | else if (!rv) | |
396482e1 | 415 | sv_catpvs(report, "EOF"); |
bbf60fe6 DM |
416 | else |
417 | Perl_sv_catpvf(aTHX_ report, "?? %"IVdf, (IV)rv); | |
418 | switch (type) { | |
419 | case TOKENTYPE_NONE: | |
420 | case TOKENTYPE_GVVAL: /* doesn't appear to be used */ | |
421 | break; | |
422 | case TOKENTYPE_IVAL: | |
704d4215 | 423 | Perl_sv_catpvf(aTHX_ report, "(ival=%"IVdf")", (IV)lvalp->ival); |
bbf60fe6 DM |
424 | break; |
425 | case TOKENTYPE_OPNUM: | |
426 | Perl_sv_catpvf(aTHX_ report, "(ival=op_%s)", | |
704d4215 | 427 | PL_op_name[lvalp->ival]); |
bbf60fe6 DM |
428 | break; |
429 | case TOKENTYPE_PVAL: | |
704d4215 | 430 | Perl_sv_catpvf(aTHX_ report, "(pval=\"%s\")", lvalp->pval); |
bbf60fe6 DM |
431 | break; |
432 | case TOKENTYPE_OPVAL: | |
704d4215 | 433 | if (lvalp->opval) { |
401441c0 | 434 | Perl_sv_catpvf(aTHX_ report, "(opval=op_%s)", |
704d4215 GG |
435 | PL_op_name[lvalp->opval->op_type]); |
436 | if (lvalp->opval->op_type == OP_CONST) { | |
b6007c36 | 437 | Perl_sv_catpvf(aTHX_ report, " %s", |
704d4215 | 438 | SvPEEK(cSVOPx_sv(lvalp->opval))); |
b6007c36 DM |
439 | } |
440 | ||
441 | } | |
401441c0 | 442 | else |
396482e1 | 443 | sv_catpvs(report, "(opval=null)"); |
bbf60fe6 DM |
444 | break; |
445 | } | |
b6007c36 | 446 | PerlIO_printf(Perl_debug_log, "### %s\n\n", SvPV_nolen_const(report)); |
bbf60fe6 DM |
447 | }; |
448 | return (int)rv; | |
998054bd SC |
449 | } |
450 | ||
b6007c36 DM |
451 | |
452 | /* print the buffer with suitable escapes */ | |
453 | ||
454 | STATIC void | |
15f169a1 | 455 | S_printbuf(pTHX_ const char *const fmt, const char *const s) |
b6007c36 | 456 | { |
396482e1 | 457 | SV* const tmp = newSVpvs(""); |
7918f24d NC |
458 | |
459 | PERL_ARGS_ASSERT_PRINTBUF; | |
460 | ||
b6007c36 DM |
461 | PerlIO_printf(Perl_debug_log, fmt, pv_display(tmp, s, strlen(s), 0, 60)); |
462 | SvREFCNT_dec(tmp); | |
463 | } | |
464 | ||
8fa7f367 JH |
465 | #endif |
466 | ||
8290c323 NC |
467 | static int |
468 | S_deprecate_commaless_var_list(pTHX) { | |
469 | PL_expect = XTERM; | |
470 | deprecate("comma-less variable list"); | |
471 | return REPORT(','); /* grandfather non-comma-format format */ | |
472 | } | |
473 | ||
ffb4593c NT |
474 | /* |
475 | * S_ao | |
476 | * | |
c963b151 BD |
477 | * This subroutine detects &&=, ||=, and //= and turns an ANDAND, OROR or DORDOR |
478 | * into an OP_ANDASSIGN, OP_ORASSIGN, or OP_DORASSIGN | |
ffb4593c NT |
479 | */ |
480 | ||
76e3520e | 481 | STATIC int |
cea2e8a9 | 482 | S_ao(pTHX_ int toketype) |
a0d0e21e | 483 | { |
97aff369 | 484 | dVAR; |
3280af22 NIS |
485 | if (*PL_bufptr == '=') { |
486 | PL_bufptr++; | |
a0d0e21e | 487 | if (toketype == ANDAND) |
6154021b | 488 | pl_yylval.ival = OP_ANDASSIGN; |
a0d0e21e | 489 | else if (toketype == OROR) |
6154021b | 490 | pl_yylval.ival = OP_ORASSIGN; |
c963b151 | 491 | else if (toketype == DORDOR) |
6154021b | 492 | pl_yylval.ival = OP_DORASSIGN; |
a0d0e21e LW |
493 | toketype = ASSIGNOP; |
494 | } | |
495 | return toketype; | |
496 | } | |
497 | ||
ffb4593c NT |
498 | /* |
499 | * S_no_op | |
500 | * When Perl expects an operator and finds something else, no_op | |
501 | * prints the warning. It always prints "<something> found where | |
502 | * operator expected. It prints "Missing semicolon on previous line?" | |
503 | * if the surprise occurs at the start of the line. "do you need to | |
504 | * predeclare ..." is printed out for code like "sub bar; foo bar $x" | |
505 | * where the compiler doesn't know if foo is a method call or a function. | |
506 | * It prints "Missing operator before end of line" if there's nothing | |
507 | * after the missing operator, or "... before <...>" if there is something | |
508 | * after the missing operator. | |
509 | */ | |
510 | ||
76e3520e | 511 | STATIC void |
15f169a1 | 512 | S_no_op(pTHX_ const char *const what, char *s) |
463ee0b2 | 513 | { |
97aff369 | 514 | dVAR; |
9d4ba2ae AL |
515 | char * const oldbp = PL_bufptr; |
516 | const bool is_first = (PL_oldbufptr == PL_linestart); | |
68dc0745 | 517 | |
7918f24d NC |
518 | PERL_ARGS_ASSERT_NO_OP; |
519 | ||
1189a94a GS |
520 | if (!s) |
521 | s = oldbp; | |
07c798fb | 522 | else |
1189a94a | 523 | PL_bufptr = s; |
cea2e8a9 | 524 | yywarn(Perl_form(aTHX_ "%s found where operator expected", what)); |
56da5a46 RGS |
525 | if (ckWARN_d(WARN_SYNTAX)) { |
526 | if (is_first) | |
527 | Perl_warner(aTHX_ packWARN(WARN_SYNTAX), | |
528 | "\t(Missing semicolon on previous line?)\n"); | |
529 | else if (PL_oldoldbufptr && isIDFIRST_lazy_if(PL_oldoldbufptr,UTF)) { | |
f54cb97a | 530 | const char *t; |
c35e046a AL |
531 | for (t = PL_oldoldbufptr; (isALNUM_lazy_if(t,UTF) || *t == ':'); t++) |
532 | NOOP; | |
56da5a46 RGS |
533 | if (t < PL_bufptr && isSPACE(*t)) |
534 | Perl_warner(aTHX_ packWARN(WARN_SYNTAX), | |
535 | "\t(Do you need to predeclare %.*s?)\n", | |
551405c4 | 536 | (int)(t - PL_oldoldbufptr), PL_oldoldbufptr); |
56da5a46 RGS |
537 | } |
538 | else { | |
539 | assert(s >= oldbp); | |
540 | Perl_warner(aTHX_ packWARN(WARN_SYNTAX), | |
551405c4 | 541 | "\t(Missing operator before %.*s?)\n", (int)(s - oldbp), oldbp); |
56da5a46 | 542 | } |
07c798fb | 543 | } |
3280af22 | 544 | PL_bufptr = oldbp; |
8990e307 LW |
545 | } |
546 | ||
ffb4593c NT |
547 | /* |
548 | * S_missingterm | |
549 | * Complain about missing quote/regexp/heredoc terminator. | |
d4c19fe8 | 550 | * If it's called with NULL then it cauterizes the line buffer. |
ffb4593c NT |
551 | * If we're in a delimited string and the delimiter is a control |
552 | * character, it's reformatted into a two-char sequence like ^C. | |
553 | * This is fatal. | |
554 | */ | |
555 | ||
76e3520e | 556 | STATIC void |
cea2e8a9 | 557 | S_missingterm(pTHX_ char *s) |
8990e307 | 558 | { |
97aff369 | 559 | dVAR; |
8990e307 LW |
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 | } | |
463559e7 | 567 | else if (isCNTRL(PL_multi_close)) { |
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 | |
ef89dcc3 | 582 | #define FEATURE_IS_ENABLED(name) \ |
0d863452 | 583 | ((0 != (PL_hints & HINT_LOCALIZE_HH)) \ |
89529cee | 584 | && S_feature_is_enabled(aTHX_ STR_WITH_LEN(name))) |
4a731d7b | 585 | /* The longest string we pass in. */ |
1863b879 | 586 | #define MAX_FEATURE_LEN (sizeof("unicode_strings")-1) |
4a731d7b | 587 | |
0d863452 RH |
588 | /* |
589 | * S_feature_is_enabled | |
590 | * Check whether the named feature is enabled. | |
591 | */ | |
592 | STATIC bool | |
15f169a1 | 593 | S_feature_is_enabled(pTHX_ const char *const name, STRLEN namelen) |
0d863452 | 594 | { |
97aff369 | 595 | dVAR; |
0d863452 | 596 | HV * const hinthv = GvHV(PL_hintgv); |
4a731d7b | 597 | char he_name[8 + MAX_FEATURE_LEN] = "feature_"; |
7918f24d NC |
598 | |
599 | PERL_ARGS_ASSERT_FEATURE_IS_ENABLED; | |
600 | ||
4a731d7b NC |
601 | assert(namelen <= MAX_FEATURE_LEN); |
602 | memcpy(&he_name[8], name, namelen); | |
d4c19fe8 | 603 | |
7b9ef140 | 604 | return (hinthv && hv_exists(hinthv, he_name, 8 + namelen)); |
0d863452 RH |
605 | } |
606 | ||
ffb4593c | 607 | /* |
9cbb5ea2 GS |
608 | * experimental text filters for win32 carriage-returns, utf16-to-utf8 and |
609 | * utf16-to-utf8-reversed. | |
ffb4593c NT |
610 | */ |
611 | ||
c39cd008 GS |
612 | #ifdef PERL_CR_FILTER |
613 | static void | |
614 | strip_return(SV *sv) | |
615 | { | |
95a20fc0 | 616 | register const char *s = SvPVX_const(sv); |
9d4ba2ae | 617 | register const char * const e = s + SvCUR(sv); |
7918f24d NC |
618 | |
619 | PERL_ARGS_ASSERT_STRIP_RETURN; | |
620 | ||
c39cd008 GS |
621 | /* outer loop optimized to do nothing if there are no CR-LFs */ |
622 | while (s < e) { | |
623 | if (*s++ == '\r' && *s == '\n') { | |
624 | /* hit a CR-LF, need to copy the rest */ | |
625 | register char *d = s - 1; | |
626 | *d++ = *s++; | |
627 | while (s < e) { | |
628 | if (*s == '\r' && s[1] == '\n') | |
629 | s++; | |
630 | *d++ = *s++; | |
631 | } | |
632 | SvCUR(sv) -= s - d; | |
633 | return; | |
634 | } | |
635 | } | |
636 | } | |
a868473f | 637 | |
76e3520e | 638 | STATIC I32 |
c39cd008 | 639 | S_cr_textfilter(pTHX_ int idx, SV *sv, int maxlen) |
a868473f | 640 | { |
f54cb97a | 641 | const I32 count = FILTER_READ(idx+1, sv, maxlen); |
c39cd008 GS |
642 | if (count > 0 && !maxlen) |
643 | strip_return(sv); | |
644 | return count; | |
a868473f NIS |
645 | } |
646 | #endif | |
647 | ||
199e78b7 DM |
648 | |
649 | ||
ffb4593c NT |
650 | /* |
651 | * Perl_lex_start | |
5486870f | 652 | * |
e3abe207 | 653 | * Create a parser object and initialise its parser and lexer fields |
5486870f DM |
654 | * |
655 | * rsfp is the opened file handle to read from (if any), | |
656 | * | |
657 | * line holds any initial content already read from the file (or in | |
658 | * the case of no file, such as an eval, the whole contents); | |
659 | * | |
660 | * new_filter indicates that this is a new file and it shouldn't inherit | |
661 | * the filters from the current parser (ie require). | |
ffb4593c NT |
662 | */ |
663 | ||
a0d0e21e | 664 | void |
5486870f | 665 | Perl_lex_start(pTHX_ SV *line, PerlIO *rsfp, bool new_filter) |
79072805 | 666 | { |
97aff369 | 667 | dVAR; |
6ef55633 | 668 | const char *s = NULL; |
8990e307 | 669 | STRLEN len; |
5486870f | 670 | yy_parser *parser, *oparser; |
acdf0a21 DM |
671 | |
672 | /* create and initialise a parser */ | |
673 | ||
199e78b7 | 674 | Newxz(parser, 1, yy_parser); |
5486870f | 675 | parser->old_parser = oparser = PL_parser; |
acdf0a21 DM |
676 | PL_parser = parser; |
677 | ||
678 | Newx(parser->stack, YYINITDEPTH, yy_stack_frame); | |
679 | parser->ps = parser->stack; | |
680 | parser->stack_size = YYINITDEPTH; | |
681 | ||
682 | parser->stack->state = 0; | |
683 | parser->yyerrstatus = 0; | |
684 | parser->yychar = YYEMPTY; /* Cause a token to be read. */ | |
685 | ||
e3abe207 DM |
686 | /* on scope exit, free this parser and restore any outer one */ |
687 | SAVEPARSER(parser); | |
7c4baf47 | 688 | parser->saved_curcop = PL_curcop; |
e3abe207 | 689 | |
acdf0a21 | 690 | /* initialise lexer state */ |
8990e307 | 691 | |
fb205e7a DM |
692 | #ifdef PERL_MAD |
693 | parser->curforce = -1; | |
694 | #else | |
695 | parser->nexttoke = 0; | |
696 | #endif | |
ca4cfd28 | 697 | parser->error_count = oparser ? oparser->error_count : 0; |
c2598295 | 698 | parser->copline = NOLINE; |
5afb0a62 | 699 | parser->lex_state = LEX_NORMAL; |
c2598295 | 700 | parser->expect = XSTATE; |
2f9285f8 | 701 | parser->rsfp = rsfp; |
56b27c9a | 702 | parser->rsfp_filters = (new_filter || !oparser) ? newAV() |
502c6561 | 703 | : MUTABLE_AV(SvREFCNT_inc(oparser->rsfp_filters)); |
2f9285f8 | 704 | |
199e78b7 DM |
705 | Newx(parser->lex_brackstack, 120, char); |
706 | Newx(parser->lex_casestack, 12, char); | |
707 | *parser->lex_casestack = '\0'; | |
02b34bbe | 708 | |
10efb74f NC |
709 | if (line) { |
710 | s = SvPV_const(line, len); | |
711 | } else { | |
712 | len = 0; | |
713 | } | |
bdc0bf6f | 714 | |
10efb74f | 715 | if (!len) { |
bdc0bf6f | 716 | parser->linestr = newSVpvs("\n;"); |
10efb74f | 717 | } else if (SvREADONLY(line) || s[len-1] != ';') { |
bdc0bf6f | 718 | parser->linestr = newSVsv(line); |
10efb74f | 719 | if (s[len-1] != ';') |
bdc0bf6f | 720 | sv_catpvs(parser->linestr, "\n;"); |
6c5ce11d NC |
721 | } else { |
722 | SvTEMP_off(line); | |
723 | SvREFCNT_inc_simple_void_NN(line); | |
bdc0bf6f | 724 | parser->linestr = line; |
8990e307 | 725 | } |
f06b5848 DM |
726 | parser->oldoldbufptr = |
727 | parser->oldbufptr = | |
728 | parser->bufptr = | |
729 | parser->linestart = SvPVX(parser->linestr); | |
730 | parser->bufend = parser->bufptr + SvCUR(parser->linestr); | |
731 | parser->last_lop = parser->last_uni = NULL; | |
79072805 | 732 | } |
a687059c | 733 | |
e3abe207 DM |
734 | |
735 | /* delete a parser object */ | |
736 | ||
737 | void | |
738 | Perl_parser_free(pTHX_ const yy_parser *parser) | |
739 | { | |
7918f24d NC |
740 | PERL_ARGS_ASSERT_PARSER_FREE; |
741 | ||
7c4baf47 | 742 | PL_curcop = parser->saved_curcop; |
bdc0bf6f DM |
743 | SvREFCNT_dec(parser->linestr); |
744 | ||
2f9285f8 DM |
745 | if (parser->rsfp == PerlIO_stdin()) |
746 | PerlIO_clearerr(parser->rsfp); | |
799361c3 SH |
747 | else if (parser->rsfp && (!parser->old_parser || |
748 | (parser->old_parser && parser->rsfp != parser->old_parser->rsfp))) | |
2f9285f8 | 749 | PerlIO_close(parser->rsfp); |
5486870f | 750 | SvREFCNT_dec(parser->rsfp_filters); |
2f9285f8 | 751 | |
e3abe207 DM |
752 | Safefree(parser->stack); |
753 | Safefree(parser->lex_brackstack); | |
754 | Safefree(parser->lex_casestack); | |
755 | PL_parser = parser->old_parser; | |
756 | Safefree(parser); | |
757 | } | |
758 | ||
759 | ||
ffb4593c NT |
760 | /* |
761 | * Perl_lex_end | |
9cbb5ea2 GS |
762 | * Finalizer for lexing operations. Must be called when the parser is |
763 | * done with the lexer. | |
ffb4593c NT |
764 | */ |
765 | ||
463ee0b2 | 766 | void |
864dbfa3 | 767 | Perl_lex_end(pTHX) |
463ee0b2 | 768 | { |
97aff369 | 769 | dVAR; |
3280af22 | 770 | PL_doextract = FALSE; |
463ee0b2 LW |
771 | } |
772 | ||
ffb4593c | 773 | /* |
f0e67a1d Z |
774 | =for apidoc AmxU|SV *|PL_parser-E<gt>linestr |
775 | ||
776 | Buffer scalar containing the chunk currently under consideration of the | |
777 | text currently being lexed. This is always a plain string scalar (for | |
778 | which C<SvPOK> is true). It is not intended to be used as a scalar by | |
779 | normal scalar means; instead refer to the buffer directly by the pointer | |
780 | variables described below. | |
781 | ||
782 | The lexer maintains various C<char*> pointers to things in the | |
783 | C<PL_parser-E<gt>linestr> buffer. If C<PL_parser-E<gt>linestr> is ever | |
784 | reallocated, all of these pointers must be updated. Don't attempt to | |
785 | do this manually, but rather use L</lex_grow_linestr> if you need to | |
786 | reallocate the buffer. | |
787 | ||
788 | The content of the text chunk in the buffer is commonly exactly one | |
789 | complete line of input, up to and including a newline terminator, | |
790 | but there are situations where it is otherwise. The octets of the | |
791 | buffer may be intended to be interpreted as either UTF-8 or Latin-1. | |
792 | The function L</lex_bufutf8> tells you which. Do not use the C<SvUTF8> | |
793 | flag on this scalar, which may disagree with it. | |
794 | ||
795 | For direct examination of the buffer, the variable | |
796 | L</PL_parser-E<gt>bufend> points to the end of the buffer. The current | |
797 | lexing position is pointed to by L</PL_parser-E<gt>bufptr>. Direct use | |
798 | of these pointers is usually preferable to examination of the scalar | |
799 | through normal scalar means. | |
800 | ||
801 | =for apidoc AmxU|char *|PL_parser-E<gt>bufend | |
802 | ||
803 | Direct pointer to the end of the chunk of text currently being lexed, the | |
804 | end of the lexer buffer. This is equal to C<SvPVX(PL_parser-E<gt>linestr) | |
805 | + SvCUR(PL_parser-E<gt>linestr)>. A NUL character (zero octet) is | |
806 | always located at the end of the buffer, and does not count as part of | |
807 | the buffer's contents. | |
808 | ||
809 | =for apidoc AmxU|char *|PL_parser-E<gt>bufptr | |
810 | ||
811 | Points to the current position of lexing inside the lexer buffer. | |
812 | Characters around this point may be freely examined, within | |
813 | the range delimited by C<SvPVX(L</PL_parser-E<gt>linestr>)> and | |
814 | L</PL_parser-E<gt>bufend>. The octets of the buffer may be intended to be | |
815 | interpreted as either UTF-8 or Latin-1, as indicated by L</lex_bufutf8>. | |
816 | ||
817 | Lexing code (whether in the Perl core or not) moves this pointer past | |
818 | the characters that it consumes. It is also expected to perform some | |
819 | bookkeeping whenever a newline character is consumed. This movement | |
820 | can be more conveniently performed by the function L</lex_read_to>, | |
821 | which handles newlines appropriately. | |
822 | ||
823 | Interpretation of the buffer's octets can be abstracted out by | |
824 | using the slightly higher-level functions L</lex_peek_unichar> and | |
825 | L</lex_read_unichar>. | |
826 | ||
827 | =for apidoc AmxU|char *|PL_parser-E<gt>linestart | |
828 | ||
829 | Points to the start of the current line inside the lexer buffer. | |
830 | This is useful for indicating at which column an error occurred, and | |
831 | not much else. This must be updated by any lexing code that consumes | |
832 | a newline; the function L</lex_read_to> handles this detail. | |
833 | ||
834 | =cut | |
835 | */ | |
836 | ||
837 | /* | |
838 | =for apidoc Amx|bool|lex_bufutf8 | |
839 | ||
840 | Indicates whether the octets in the lexer buffer | |
841 | (L</PL_parser-E<gt>linestr>) should be interpreted as the UTF-8 encoding | |
842 | of Unicode characters. If not, they should be interpreted as Latin-1 | |
843 | characters. This is analogous to the C<SvUTF8> flag for scalars. | |
844 | ||
845 | In UTF-8 mode, it is not guaranteed that the lexer buffer actually | |
846 | contains valid UTF-8. Lexing code must be robust in the face of invalid | |
847 | encoding. | |
848 | ||
849 | The actual C<SvUTF8> flag of the L</PL_parser-E<gt>linestr> scalar | |
850 | is significant, but not the whole story regarding the input character | |
851 | encoding. Normally, when a file is being read, the scalar contains octets | |
852 | and its C<SvUTF8> flag is off, but the octets should be interpreted as | |
853 | UTF-8 if the C<use utf8> pragma is in effect. During a string eval, | |
854 | however, the scalar may have the C<SvUTF8> flag on, and in this case its | |
855 | octets should be interpreted as UTF-8 unless the C<use bytes> pragma | |
856 | is in effect. This logic may change in the future; use this function | |
857 | instead of implementing the logic yourself. | |
858 | ||
859 | =cut | |
860 | */ | |
861 | ||
862 | bool | |
863 | Perl_lex_bufutf8(pTHX) | |
864 | { | |
865 | return UTF; | |
866 | } | |
867 | ||
868 | /* | |
869 | =for apidoc Amx|char *|lex_grow_linestr|STRLEN len | |
870 | ||
871 | Reallocates the lexer buffer (L</PL_parser-E<gt>linestr>) to accommodate | |
872 | at least I<len> octets (including terminating NUL). Returns a | |
873 | pointer to the reallocated buffer. This is necessary before making | |
874 | any direct modification of the buffer that would increase its length. | |
875 | L</lex_stuff_pvn> provides a more convenient way to insert text into | |
876 | the buffer. | |
877 | ||
878 | Do not use C<SvGROW> or C<sv_grow> directly on C<PL_parser-E<gt>linestr>; | |
879 | this function updates all of the lexer's variables that point directly | |
880 | into the buffer. | |
881 | ||
882 | =cut | |
883 | */ | |
884 | ||
885 | char * | |
886 | Perl_lex_grow_linestr(pTHX_ STRLEN len) | |
887 | { | |
888 | SV *linestr; | |
889 | char *buf; | |
890 | STRLEN bufend_pos, bufptr_pos, oldbufptr_pos, oldoldbufptr_pos; | |
891 | STRLEN linestart_pos, last_uni_pos, last_lop_pos; | |
892 | linestr = PL_parser->linestr; | |
893 | buf = SvPVX(linestr); | |
894 | if (len <= SvLEN(linestr)) | |
895 | return buf; | |
896 | bufend_pos = PL_parser->bufend - buf; | |
897 | bufptr_pos = PL_parser->bufptr - buf; | |
898 | oldbufptr_pos = PL_parser->oldbufptr - buf; | |
899 | oldoldbufptr_pos = PL_parser->oldoldbufptr - buf; | |
900 | linestart_pos = PL_parser->linestart - buf; | |
901 | last_uni_pos = PL_parser->last_uni ? PL_parser->last_uni - buf : 0; | |
902 | last_lop_pos = PL_parser->last_lop ? PL_parser->last_lop - buf : 0; | |
903 | buf = sv_grow(linestr, len); | |
904 | PL_parser->bufend = buf + bufend_pos; | |
905 | PL_parser->bufptr = buf + bufptr_pos; | |
906 | PL_parser->oldbufptr = buf + oldbufptr_pos; | |
907 | PL_parser->oldoldbufptr = buf + oldoldbufptr_pos; | |
908 | PL_parser->linestart = buf + linestart_pos; | |
909 | if (PL_parser->last_uni) | |
910 | PL_parser->last_uni = buf + last_uni_pos; | |
911 | if (PL_parser->last_lop) | |
912 | PL_parser->last_lop = buf + last_lop_pos; | |
913 | return buf; | |
914 | } | |
915 | ||
916 | /* | |
917 | =for apidoc Amx|void|lex_stuff_pvn|char *pv|STRLEN len|U32 flags | |
918 | ||
919 | Insert characters into the lexer buffer (L</PL_parser-E<gt>linestr>), | |
920 | immediately after the current lexing point (L</PL_parser-E<gt>bufptr>), | |
921 | reallocating the buffer if necessary. This means that lexing code that | |
922 | runs later will see the characters as if they had appeared in the input. | |
923 | It is not recommended to do this as part of normal parsing, and most | |
924 | uses of this facility run the risk of the inserted characters being | |
925 | interpreted in an unintended manner. | |
926 | ||
927 | The string to be inserted is represented by I<len> octets starting | |
928 | at I<pv>. These octets are interpreted as either UTF-8 or Latin-1, | |
929 | according to whether the C<LEX_STUFF_UTF8> flag is set in I<flags>. | |
930 | The characters are recoded for the lexer buffer, according to how the | |
931 | buffer is currently being interpreted (L</lex_bufutf8>). If a string | |
932 | to be interpreted is available as a Perl scalar, the L</lex_stuff_sv> | |
933 | function is more convenient. | |
934 | ||
935 | =cut | |
936 | */ | |
937 | ||
938 | void | |
939 | Perl_lex_stuff_pvn(pTHX_ char *pv, STRLEN len, U32 flags) | |
940 | { | |
941 | char *bufptr; | |
942 | PERL_ARGS_ASSERT_LEX_STUFF_PVN; | |
943 | if (flags & ~(LEX_STUFF_UTF8)) | |
944 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_stuff_pvn"); | |
945 | if (UTF) { | |
946 | if (flags & LEX_STUFF_UTF8) { | |
947 | goto plain_copy; | |
948 | } else { | |
949 | STRLEN highhalf = 0; | |
950 | char *p, *e = pv+len; | |
951 | for (p = pv; p != e; p++) | |
952 | highhalf += !!(((U8)*p) & 0x80); | |
953 | if (!highhalf) | |
954 | goto plain_copy; | |
955 | lex_grow_linestr(SvCUR(PL_parser->linestr)+1+len+highhalf); | |
956 | bufptr = PL_parser->bufptr; | |
957 | Move(bufptr, bufptr+len+highhalf, PL_parser->bufend+1-bufptr, char); | |
958 | PL_parser->bufend += len+highhalf; | |
959 | for (p = pv; p != e; p++) { | |
960 | U8 c = (U8)*p; | |
961 | if (c & 0x80) { | |
962 | *bufptr++ = (char)(0xc0 | (c >> 6)); | |
963 | *bufptr++ = (char)(0x80 | (c & 0x3f)); | |
964 | } else { | |
965 | *bufptr++ = (char)c; | |
966 | } | |
967 | } | |
968 | } | |
969 | } else { | |
970 | if (flags & LEX_STUFF_UTF8) { | |
971 | STRLEN highhalf = 0; | |
972 | char *p, *e = pv+len; | |
973 | for (p = pv; p != e; p++) { | |
974 | U8 c = (U8)*p; | |
975 | if (c >= 0xc4) { | |
976 | Perl_croak(aTHX_ "Lexing code attempted to stuff " | |
977 | "non-Latin-1 character into Latin-1 input"); | |
978 | } else if (c >= 0xc2 && p+1 != e && | |
979 | (((U8)p[1]) & 0xc0) == 0x80) { | |
980 | p++; | |
981 | highhalf++; | |
982 | } else if (c >= 0x80) { | |
983 | /* malformed UTF-8 */ | |
984 | ENTER; | |
985 | SAVESPTR(PL_warnhook); | |
986 | PL_warnhook = PERL_WARNHOOK_FATAL; | |
987 | utf8n_to_uvuni((U8*)p, e-p, NULL, 0); | |
988 | LEAVE; | |
989 | } | |
990 | } | |
991 | if (!highhalf) | |
992 | goto plain_copy; | |
993 | lex_grow_linestr(SvCUR(PL_parser->linestr)+1+len-highhalf); | |
994 | bufptr = PL_parser->bufptr; | |
995 | Move(bufptr, bufptr+len-highhalf, PL_parser->bufend+1-bufptr, char); | |
996 | PL_parser->bufend += len-highhalf; | |
997 | for (p = pv; p != e; p++) { | |
998 | U8 c = (U8)*p; | |
999 | if (c & 0x80) { | |
1000 | *bufptr++ = (char)(((c & 0x3) << 6) | (p[1] & 0x3f)); | |
1001 | p++; | |
1002 | } else { | |
1003 | *bufptr++ = (char)c; | |
1004 | } | |
1005 | } | |
1006 | } else { | |
1007 | plain_copy: | |
1008 | lex_grow_linestr(SvCUR(PL_parser->linestr)+1+len); | |
1009 | bufptr = PL_parser->bufptr; | |
1010 | Move(bufptr, bufptr+len, PL_parser->bufend+1-bufptr, char); | |
1011 | PL_parser->bufend += len; | |
1012 | Copy(pv, bufptr, len, char); | |
1013 | } | |
1014 | } | |
1015 | } | |
1016 | ||
1017 | /* | |
1018 | =for apidoc Amx|void|lex_stuff_sv|SV *sv|U32 flags | |
1019 | ||
1020 | Insert characters into the lexer buffer (L</PL_parser-E<gt>linestr>), | |
1021 | immediately after the current lexing point (L</PL_parser-E<gt>bufptr>), | |
1022 | reallocating the buffer if necessary. This means that lexing code that | |
1023 | runs later will see the characters as if they had appeared in the input. | |
1024 | It is not recommended to do this as part of normal parsing, and most | |
1025 | uses of this facility run the risk of the inserted characters being | |
1026 | interpreted in an unintended manner. | |
1027 | ||
1028 | The string to be inserted is the string value of I<sv>. The characters | |
1029 | are recoded for the lexer buffer, according to how the buffer is currently | |
1030 | being interpreted (L</lex_bufutf8>). If a string to be interpreted is | |
1031 | not already a Perl scalar, the L</lex_stuff_pvn> function avoids the | |
1032 | need to construct a scalar. | |
1033 | ||
1034 | =cut | |
1035 | */ | |
1036 | ||
1037 | void | |
1038 | Perl_lex_stuff_sv(pTHX_ SV *sv, U32 flags) | |
1039 | { | |
1040 | char *pv; | |
1041 | STRLEN len; | |
1042 | PERL_ARGS_ASSERT_LEX_STUFF_SV; | |
1043 | if (flags) | |
1044 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_stuff_sv"); | |
1045 | pv = SvPV(sv, len); | |
1046 | lex_stuff_pvn(pv, len, flags | (SvUTF8(sv) ? LEX_STUFF_UTF8 : 0)); | |
1047 | } | |
1048 | ||
1049 | /* | |
1050 | =for apidoc Amx|void|lex_unstuff|char *ptr | |
1051 | ||
1052 | Discards text about to be lexed, from L</PL_parser-E<gt>bufptr> up to | |
1053 | I<ptr>. Text following I<ptr> will be moved, and the buffer shortened. | |
1054 | This hides the discarded text from any lexing code that runs later, | |
1055 | as if the text had never appeared. | |
1056 | ||
1057 | This is not the normal way to consume lexed text. For that, use | |
1058 | L</lex_read_to>. | |
1059 | ||
1060 | =cut | |
1061 | */ | |
1062 | ||
1063 | void | |
1064 | Perl_lex_unstuff(pTHX_ char *ptr) | |
1065 | { | |
1066 | char *buf, *bufend; | |
1067 | STRLEN unstuff_len; | |
1068 | PERL_ARGS_ASSERT_LEX_UNSTUFF; | |
1069 | buf = PL_parser->bufptr; | |
1070 | if (ptr < buf) | |
1071 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_unstuff"); | |
1072 | if (ptr == buf) | |
1073 | return; | |
1074 | bufend = PL_parser->bufend; | |
1075 | if (ptr > bufend) | |
1076 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_unstuff"); | |
1077 | unstuff_len = ptr - buf; | |
1078 | Move(ptr, buf, bufend+1-ptr, char); | |
1079 | SvCUR_set(PL_parser->linestr, SvCUR(PL_parser->linestr) - unstuff_len); | |
1080 | PL_parser->bufend = bufend - unstuff_len; | |
1081 | } | |
1082 | ||
1083 | /* | |
1084 | =for apidoc Amx|void|lex_read_to|char *ptr | |
1085 | ||
1086 | Consume text in the lexer buffer, from L</PL_parser-E<gt>bufptr> up | |
1087 | to I<ptr>. This advances L</PL_parser-E<gt>bufptr> to match I<ptr>, | |
1088 | performing the correct bookkeeping whenever a newline character is passed. | |
1089 | This is the normal way to consume lexed text. | |
1090 | ||
1091 | Interpretation of the buffer's octets can be abstracted out by | |
1092 | using the slightly higher-level functions L</lex_peek_unichar> and | |
1093 | L</lex_read_unichar>. | |
1094 | ||
1095 | =cut | |
1096 | */ | |
1097 | ||
1098 | void | |
1099 | Perl_lex_read_to(pTHX_ char *ptr) | |
1100 | { | |
1101 | char *s; | |
1102 | PERL_ARGS_ASSERT_LEX_READ_TO; | |
1103 | s = PL_parser->bufptr; | |
1104 | if (ptr < s || ptr > PL_parser->bufend) | |
1105 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_read_to"); | |
1106 | for (; s != ptr; s++) | |
1107 | if (*s == '\n') { | |
1108 | CopLINE_inc(PL_curcop); | |
1109 | PL_parser->linestart = s+1; | |
1110 | } | |
1111 | PL_parser->bufptr = ptr; | |
1112 | } | |
1113 | ||
1114 | /* | |
1115 | =for apidoc Amx|void|lex_discard_to|char *ptr | |
1116 | ||
1117 | Discards the first part of the L</PL_parser-E<gt>linestr> buffer, | |
1118 | up to I<ptr>. The remaining content of the buffer will be moved, and | |
1119 | all pointers into the buffer updated appropriately. I<ptr> must not | |
1120 | be later in the buffer than the position of L</PL_parser-E<gt>bufptr>: | |
1121 | it is not permitted to discard text that has yet to be lexed. | |
1122 | ||
1123 | Normally it is not necessarily to do this directly, because it suffices to | |
1124 | use the implicit discarding behaviour of L</lex_next_chunk> and things | |
1125 | based on it. However, if a token stretches across multiple lines, | |
1126 | and the lexing code has kept multiple lines of text in the buffer fof | |
1127 | that purpose, then after completion of the token it would be wise to | |
1128 | explicitly discard the now-unneeded earlier lines, to avoid future | |
1129 | multi-line tokens growing the buffer without bound. | |
1130 | ||
1131 | =cut | |
1132 | */ | |
1133 | ||
1134 | void | |
1135 | Perl_lex_discard_to(pTHX_ char *ptr) | |
1136 | { | |
1137 | char *buf; | |
1138 | STRLEN discard_len; | |
1139 | PERL_ARGS_ASSERT_LEX_DISCARD_TO; | |
1140 | buf = SvPVX(PL_parser->linestr); | |
1141 | if (ptr < buf) | |
1142 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_discard_to"); | |
1143 | if (ptr == buf) | |
1144 | return; | |
1145 | if (ptr > PL_parser->bufptr) | |
1146 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_discard_to"); | |
1147 | discard_len = ptr - buf; | |
1148 | if (PL_parser->oldbufptr < ptr) | |
1149 | PL_parser->oldbufptr = ptr; | |
1150 | if (PL_parser->oldoldbufptr < ptr) | |
1151 | PL_parser->oldoldbufptr = ptr; | |
1152 | if (PL_parser->last_uni && PL_parser->last_uni < ptr) | |
1153 | PL_parser->last_uni = NULL; | |
1154 | if (PL_parser->last_lop && PL_parser->last_lop < ptr) | |
1155 | PL_parser->last_lop = NULL; | |
1156 | Move(ptr, buf, PL_parser->bufend+1-ptr, char); | |
1157 | SvCUR_set(PL_parser->linestr, SvCUR(PL_parser->linestr) - discard_len); | |
1158 | PL_parser->bufend -= discard_len; | |
1159 | PL_parser->bufptr -= discard_len; | |
1160 | PL_parser->oldbufptr -= discard_len; | |
1161 | PL_parser->oldoldbufptr -= discard_len; | |
1162 | if (PL_parser->last_uni) | |
1163 | PL_parser->last_uni -= discard_len; | |
1164 | if (PL_parser->last_lop) | |
1165 | PL_parser->last_lop -= discard_len; | |
1166 | } | |
1167 | ||
1168 | /* | |
1169 | =for apidoc Amx|bool|lex_next_chunk|U32 flags | |
1170 | ||
1171 | Reads in the next chunk of text to be lexed, appending it to | |
1172 | L</PL_parser-E<gt>linestr>. This should be called when lexing code has | |
1173 | looked to the end of the current chunk and wants to know more. It is | |
1174 | usual, but not necessary, for lexing to have consumed the entirety of | |
1175 | the current chunk at this time. | |
1176 | ||
1177 | If L</PL_parser-E<gt>bufptr> is pointing to the very end of the current | |
1178 | chunk (i.e., the current chunk has been entirely consumed), normally the | |
1179 | current chunk will be discarded at the same time that the new chunk is | |
1180 | read in. If I<flags> includes C<LEX_KEEP_PREVIOUS>, the current chunk | |
1181 | will not be discarded. If the current chunk has not been entirely | |
1182 | consumed, then it will not be discarded regardless of the flag. | |
1183 | ||
1184 | Returns true if some new text was added to the buffer, or false if the | |
1185 | buffer has reached the end of the input text. | |
1186 | ||
1187 | =cut | |
1188 | */ | |
1189 | ||
1190 | #define LEX_FAKE_EOF 0x80000000 | |
1191 | ||
1192 | bool | |
1193 | Perl_lex_next_chunk(pTHX_ U32 flags) | |
1194 | { | |
1195 | SV *linestr; | |
1196 | char *buf; | |
1197 | STRLEN old_bufend_pos, new_bufend_pos; | |
1198 | STRLEN bufptr_pos, oldbufptr_pos, oldoldbufptr_pos; | |
1199 | STRLEN linestart_pos, last_uni_pos, last_lop_pos; | |
17cc9359 | 1200 | bool got_some_for_debugger = 0; |
f0e67a1d Z |
1201 | bool got_some; |
1202 | if (flags & ~(LEX_KEEP_PREVIOUS|LEX_FAKE_EOF)) | |
1203 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_next_chunk"); | |
f0e67a1d Z |
1204 | linestr = PL_parser->linestr; |
1205 | buf = SvPVX(linestr); | |
1206 | if (!(flags & LEX_KEEP_PREVIOUS) && | |
1207 | PL_parser->bufptr == PL_parser->bufend) { | |
1208 | old_bufend_pos = bufptr_pos = oldbufptr_pos = oldoldbufptr_pos = 0; | |
1209 | linestart_pos = 0; | |
1210 | if (PL_parser->last_uni != PL_parser->bufend) | |
1211 | PL_parser->last_uni = NULL; | |
1212 | if (PL_parser->last_lop != PL_parser->bufend) | |
1213 | PL_parser->last_lop = NULL; | |
1214 | last_uni_pos = last_lop_pos = 0; | |
1215 | *buf = 0; | |
1216 | SvCUR(linestr) = 0; | |
1217 | } else { | |
1218 | old_bufend_pos = PL_parser->bufend - buf; | |
1219 | bufptr_pos = PL_parser->bufptr - buf; | |
1220 | oldbufptr_pos = PL_parser->oldbufptr - buf; | |
1221 | oldoldbufptr_pos = PL_parser->oldoldbufptr - buf; | |
1222 | linestart_pos = PL_parser->linestart - buf; | |
1223 | last_uni_pos = PL_parser->last_uni ? PL_parser->last_uni - buf : 0; | |
1224 | last_lop_pos = PL_parser->last_lop ? PL_parser->last_lop - buf : 0; | |
1225 | } | |
1226 | if (flags & LEX_FAKE_EOF) { | |
1227 | goto eof; | |
1228 | } else if (!PL_parser->rsfp) { | |
1229 | got_some = 0; | |
1230 | } else if (filter_gets(linestr, old_bufend_pos)) { | |
1231 | got_some = 1; | |
17cc9359 | 1232 | got_some_for_debugger = 1; |
f0e67a1d | 1233 | } else { |
580561a3 Z |
1234 | if (!SvPOK(linestr)) /* can get undefined by filter_gets */ |
1235 | sv_setpvs(linestr, ""); | |
f0e67a1d Z |
1236 | eof: |
1237 | /* End of real input. Close filehandle (unless it was STDIN), | |
1238 | * then add implicit termination. | |
1239 | */ | |
1240 | if ((PerlIO*)PL_parser->rsfp == PerlIO_stdin()) | |
1241 | PerlIO_clearerr(PL_parser->rsfp); | |
1242 | else if (PL_parser->rsfp) | |
1243 | (void)PerlIO_close(PL_parser->rsfp); | |
1244 | PL_parser->rsfp = NULL; | |
1245 | PL_doextract = FALSE; | |
1246 | #ifdef PERL_MAD | |
1247 | if (PL_madskills && !PL_in_eval && (PL_minus_p || PL_minus_n)) | |
1248 | PL_faketokens = 1; | |
1249 | #endif | |
1250 | if (!PL_in_eval && PL_minus_p) { | |
1251 | sv_catpvs(linestr, | |
1252 | /*{*/";}continue{print or die qq(-p destination: $!\\n);}"); | |
1253 | PL_minus_n = PL_minus_p = 0; | |
1254 | } else if (!PL_in_eval && PL_minus_n) { | |
1255 | sv_catpvs(linestr, /*{*/";}"); | |
1256 | PL_minus_n = 0; | |
1257 | } else | |
1258 | sv_catpvs(linestr, ";"); | |
1259 | got_some = 1; | |
1260 | } | |
1261 | buf = SvPVX(linestr); | |
1262 | new_bufend_pos = SvCUR(linestr); | |
1263 | PL_parser->bufend = buf + new_bufend_pos; | |
1264 | PL_parser->bufptr = buf + bufptr_pos; | |
1265 | PL_parser->oldbufptr = buf + oldbufptr_pos; | |
1266 | PL_parser->oldoldbufptr = buf + oldoldbufptr_pos; | |
1267 | PL_parser->linestart = buf + linestart_pos; | |
1268 | if (PL_parser->last_uni) | |
1269 | PL_parser->last_uni = buf + last_uni_pos; | |
1270 | if (PL_parser->last_lop) | |
1271 | PL_parser->last_lop = buf + last_lop_pos; | |
17cc9359 | 1272 | if (got_some_for_debugger && (PERLDB_LINE || PERLDB_SAVESRC) && |
f0e67a1d Z |
1273 | PL_curstash != PL_debstash) { |
1274 | /* debugger active and we're not compiling the debugger code, | |
1275 | * so store the line into the debugger's array of lines | |
1276 | */ | |
1277 | update_debugger_info(NULL, buf+old_bufend_pos, | |
1278 | new_bufend_pos-old_bufend_pos); | |
1279 | } | |
1280 | return got_some; | |
1281 | } | |
1282 | ||
1283 | /* | |
1284 | =for apidoc Amx|I32|lex_peek_unichar|U32 flags | |
1285 | ||
1286 | Looks ahead one (Unicode) character in the text currently being lexed. | |
1287 | Returns the codepoint (unsigned integer value) of the next character, | |
1288 | or -1 if lexing has reached the end of the input text. To consume the | |
1289 | peeked character, use L</lex_read_unichar>. | |
1290 | ||
1291 | If the next character is in (or extends into) the next chunk of input | |
1292 | text, the next chunk will be read in. Normally the current chunk will be | |
1293 | discarded at the same time, but if I<flags> includes C<LEX_KEEP_PREVIOUS> | |
1294 | then the current chunk will not be discarded. | |
1295 | ||
1296 | If the input is being interpreted as UTF-8 and a UTF-8 encoding error | |
1297 | is encountered, an exception is generated. | |
1298 | ||
1299 | =cut | |
1300 | */ | |
1301 | ||
1302 | I32 | |
1303 | Perl_lex_peek_unichar(pTHX_ U32 flags) | |
1304 | { | |
1305 | char *s, *bufend; | |
1306 | if (flags & ~(LEX_KEEP_PREVIOUS)) | |
1307 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_peek_unichar"); | |
1308 | s = PL_parser->bufptr; | |
1309 | bufend = PL_parser->bufend; | |
1310 | if (UTF) { | |
1311 | U8 head; | |
1312 | I32 unichar; | |
1313 | STRLEN len, retlen; | |
1314 | if (s == bufend) { | |
1315 | if (!lex_next_chunk(flags)) | |
1316 | return -1; | |
1317 | s = PL_parser->bufptr; | |
1318 | bufend = PL_parser->bufend; | |
1319 | } | |
1320 | head = (U8)*s; | |
1321 | if (!(head & 0x80)) | |
1322 | return head; | |
1323 | if (head & 0x40) { | |
1324 | len = PL_utf8skip[head]; | |
1325 | while ((STRLEN)(bufend-s) < len) { | |
1326 | if (!lex_next_chunk(flags | LEX_KEEP_PREVIOUS)) | |
1327 | break; | |
1328 | s = PL_parser->bufptr; | |
1329 | bufend = PL_parser->bufend; | |
1330 | } | |
1331 | } | |
1332 | unichar = utf8n_to_uvuni((U8*)s, bufend-s, &retlen, UTF8_CHECK_ONLY); | |
1333 | if (retlen == (STRLEN)-1) { | |
1334 | /* malformed UTF-8 */ | |
1335 | ENTER; | |
1336 | SAVESPTR(PL_warnhook); | |
1337 | PL_warnhook = PERL_WARNHOOK_FATAL; | |
1338 | utf8n_to_uvuni((U8*)s, bufend-s, NULL, 0); | |
1339 | LEAVE; | |
1340 | } | |
1341 | return unichar; | |
1342 | } else { | |
1343 | if (s == bufend) { | |
1344 | if (!lex_next_chunk(flags)) | |
1345 | return -1; | |
1346 | s = PL_parser->bufptr; | |
1347 | } | |
1348 | return (U8)*s; | |
1349 | } | |
1350 | } | |
1351 | ||
1352 | /* | |
1353 | =for apidoc Amx|I32|lex_read_unichar|U32 flags | |
1354 | ||
1355 | Reads the next (Unicode) character in the text currently being lexed. | |
1356 | Returns the codepoint (unsigned integer value) of the character read, | |
1357 | and moves L</PL_parser-E<gt>bufptr> past the character, or returns -1 | |
1358 | if lexing has reached the end of the input text. To non-destructively | |
1359 | examine the next character, use L</lex_peek_unichar> instead. | |
1360 | ||
1361 | If the next character is in (or extends into) the next chunk of input | |
1362 | text, the next chunk will be read in. Normally the current chunk will be | |
1363 | discarded at the same time, but if I<flags> includes C<LEX_KEEP_PREVIOUS> | |
1364 | then the current chunk will not be discarded. | |
1365 | ||
1366 | If the input is being interpreted as UTF-8 and a UTF-8 encoding error | |
1367 | is encountered, an exception is generated. | |
1368 | ||
1369 | =cut | |
1370 | */ | |
1371 | ||
1372 | I32 | |
1373 | Perl_lex_read_unichar(pTHX_ U32 flags) | |
1374 | { | |
1375 | I32 c; | |
1376 | if (flags & ~(LEX_KEEP_PREVIOUS)) | |
1377 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_read_unichar"); | |
1378 | c = lex_peek_unichar(flags); | |
1379 | if (c != -1) { | |
1380 | if (c == '\n') | |
1381 | CopLINE_inc(PL_curcop); | |
1382 | PL_parser->bufptr += UTF8SKIP(PL_parser->bufptr); | |
1383 | } | |
1384 | return c; | |
1385 | } | |
1386 | ||
1387 | /* | |
1388 | =for apidoc Amx|void|lex_read_space|U32 flags | |
1389 | ||
1390 | Reads optional spaces, in Perl style, in the text currently being | |
1391 | lexed. The spaces may include ordinary whitespace characters and | |
1392 | Perl-style comments. C<#line> directives are processed if encountered. | |
1393 | L</PL_parser-E<gt>bufptr> is moved past the spaces, so that it points | |
1394 | at a non-space character (or the end of the input text). | |
1395 | ||
1396 | If spaces extend into the next chunk of input text, the next chunk will | |
1397 | be read in. Normally the current chunk will be discarded at the same | |
1398 | time, but if I<flags> includes C<LEX_KEEP_PREVIOUS> then the current | |
1399 | chunk will not be discarded. | |
1400 | ||
1401 | =cut | |
1402 | */ | |
1403 | ||
f0998909 Z |
1404 | #define LEX_NO_NEXT_CHUNK 0x80000000 |
1405 | ||
f0e67a1d Z |
1406 | void |
1407 | Perl_lex_read_space(pTHX_ U32 flags) | |
1408 | { | |
1409 | char *s, *bufend; | |
1410 | bool need_incline = 0; | |
f0998909 | 1411 | if (flags & ~(LEX_KEEP_PREVIOUS|LEX_NO_NEXT_CHUNK)) |
f0e67a1d Z |
1412 | Perl_croak(aTHX_ "Lexing code internal error (%s)", "lex_read_space"); |
1413 | #ifdef PERL_MAD | |
1414 | if (PL_skipwhite) { | |
1415 | sv_free(PL_skipwhite); | |
1416 | PL_skipwhite = NULL; | |
1417 | } | |
1418 | if (PL_madskills) | |
1419 | PL_skipwhite = newSVpvs(""); | |
1420 | #endif /* PERL_MAD */ | |
1421 | s = PL_parser->bufptr; | |
1422 | bufend = PL_parser->bufend; | |
1423 | while (1) { | |
1424 | char c = *s; | |
1425 | if (c == '#') { | |
1426 | do { | |
1427 | c = *++s; | |
1428 | } while (!(c == '\n' || (c == 0 && s == bufend))); | |
1429 | } else if (c == '\n') { | |
1430 | s++; | |
1431 | PL_parser->linestart = s; | |
1432 | if (s == bufend) | |
1433 | need_incline = 1; | |
1434 | else | |
1435 | incline(s); | |
1436 | } else if (isSPACE(c)) { | |
1437 | s++; | |
1438 | } else if (c == 0 && s == bufend) { | |
1439 | bool got_more; | |
1440 | #ifdef PERL_MAD | |
1441 | if (PL_madskills) | |
1442 | sv_catpvn(PL_skipwhite, PL_parser->bufptr, s-PL_parser->bufptr); | |
1443 | #endif /* PERL_MAD */ | |
f0998909 Z |
1444 | if (flags & LEX_NO_NEXT_CHUNK) |
1445 | break; | |
f0e67a1d Z |
1446 | PL_parser->bufptr = s; |
1447 | CopLINE_inc(PL_curcop); | |
1448 | got_more = lex_next_chunk(flags); | |
1449 | CopLINE_dec(PL_curcop); | |
1450 | s = PL_parser->bufptr; | |
1451 | bufend = PL_parser->bufend; | |
1452 | if (!got_more) | |
1453 | break; | |
1454 | if (need_incline && PL_parser->rsfp) { | |
1455 | incline(s); | |
1456 | need_incline = 0; | |
1457 | } | |
1458 | } else { | |
1459 | break; | |
1460 | } | |
1461 | } | |
1462 | #ifdef PERL_MAD | |
1463 | if (PL_madskills) | |
1464 | sv_catpvn(PL_skipwhite, PL_parser->bufptr, s-PL_parser->bufptr); | |
1465 | #endif /* PERL_MAD */ | |
1466 | PL_parser->bufptr = s; | |
1467 | } | |
1468 | ||
1469 | /* | |
ffb4593c NT |
1470 | * S_incline |
1471 | * This subroutine has nothing to do with tilting, whether at windmills | |
1472 | * or pinball tables. Its name is short for "increment line". It | |
57843af0 | 1473 | * increments the current line number in CopLINE(PL_curcop) and checks |
ffb4593c | 1474 | * to see whether the line starts with a comment of the form |
9cbb5ea2 GS |
1475 | * # line 500 "foo.pm" |
1476 | * If so, it sets the current line number and file to the values in the comment. | |
ffb4593c NT |
1477 | */ |
1478 | ||
76e3520e | 1479 | STATIC void |
d9095cec | 1480 | S_incline(pTHX_ const char *s) |
463ee0b2 | 1481 | { |
97aff369 | 1482 | dVAR; |
d9095cec NC |
1483 | const char *t; |
1484 | const char *n; | |
1485 | const char *e; | |
463ee0b2 | 1486 | |
7918f24d NC |
1487 | PERL_ARGS_ASSERT_INCLINE; |
1488 | ||
57843af0 | 1489 | CopLINE_inc(PL_curcop); |
463ee0b2 LW |
1490 | if (*s++ != '#') |
1491 | return; | |
d4c19fe8 AL |
1492 | while (SPACE_OR_TAB(*s)) |
1493 | s++; | |
73659bf1 GS |
1494 | if (strnEQ(s, "line", 4)) |
1495 | s += 4; | |
1496 | else | |
1497 | return; | |
084592ab | 1498 | if (SPACE_OR_TAB(*s)) |
73659bf1 | 1499 | s++; |
4e553d73 | 1500 | else |
73659bf1 | 1501 | return; |
d4c19fe8 AL |
1502 | while (SPACE_OR_TAB(*s)) |
1503 | s++; | |
463ee0b2 LW |
1504 | if (!isDIGIT(*s)) |
1505 | return; | |
d4c19fe8 | 1506 | |
463ee0b2 LW |
1507 | n = s; |
1508 | while (isDIGIT(*s)) | |
1509 | s++; | |
07714eb4 | 1510 | if (!SPACE_OR_TAB(*s) && *s != '\r' && *s != '\n' && *s != '\0') |
26b6dc3f | 1511 | return; |
bf4acbe4 | 1512 | while (SPACE_OR_TAB(*s)) |
463ee0b2 | 1513 | s++; |
73659bf1 | 1514 | if (*s == '"' && (t = strchr(s+1, '"'))) { |
463ee0b2 | 1515 | s++; |
73659bf1 GS |
1516 | e = t + 1; |
1517 | } | |
463ee0b2 | 1518 | else { |
c35e046a AL |
1519 | t = s; |
1520 | while (!isSPACE(*t)) | |
1521 | t++; | |
73659bf1 | 1522 | e = t; |
463ee0b2 | 1523 | } |
bf4acbe4 | 1524 | while (SPACE_OR_TAB(*e) || *e == '\r' || *e == '\f') |
73659bf1 GS |
1525 | e++; |
1526 | if (*e != '\n' && *e != '\0') | |
1527 | return; /* false alarm */ | |
1528 | ||
f4dd75d9 | 1529 | if (t - s > 0) { |
d9095cec | 1530 | const STRLEN len = t - s; |
8a5ee598 | 1531 | #ifndef USE_ITHREADS |
19bad673 NC |
1532 | SV *const temp_sv = CopFILESV(PL_curcop); |
1533 | const char *cf; | |
1534 | STRLEN tmplen; | |
1535 | ||
1536 | if (temp_sv) { | |
1537 | cf = SvPVX(temp_sv); | |
1538 | tmplen = SvCUR(temp_sv); | |
1539 | } else { | |
1540 | cf = NULL; | |
1541 | tmplen = 0; | |
1542 | } | |
1543 | ||
42d9b98d | 1544 | if (tmplen > 7 && strnEQ(cf, "(eval ", 6)) { |
e66cf94c RGS |
1545 | /* must copy *{"::_<(eval N)[oldfilename:L]"} |
1546 | * to *{"::_<newfilename"} */ | |
44867030 NC |
1547 | /* However, the long form of evals is only turned on by the |
1548 | debugger - usually they're "(eval %lu)" */ | |
1549 | char smallbuf[128]; | |
1550 | char *tmpbuf; | |
1551 | GV **gvp; | |
d9095cec | 1552 | STRLEN tmplen2 = len; |
798b63bc | 1553 | if (tmplen + 2 <= sizeof smallbuf) |
e66cf94c RGS |
1554 | tmpbuf = smallbuf; |
1555 | else | |
2ae0db35 | 1556 | Newx(tmpbuf, tmplen + 2, char); |
44867030 NC |
1557 | tmpbuf[0] = '_'; |
1558 | tmpbuf[1] = '<'; | |
2ae0db35 | 1559 | memcpy(tmpbuf + 2, cf, tmplen); |
44867030 | 1560 | tmplen += 2; |
8a5ee598 RGS |
1561 | gvp = (GV**)hv_fetch(PL_defstash, tmpbuf, tmplen, FALSE); |
1562 | if (gvp) { | |
44867030 NC |
1563 | char *tmpbuf2; |
1564 | GV *gv2; | |
1565 | ||
1566 | if (tmplen2 + 2 <= sizeof smallbuf) | |
1567 | tmpbuf2 = smallbuf; | |
1568 | else | |
1569 | Newx(tmpbuf2, tmplen2 + 2, char); | |
1570 | ||
1571 | if (tmpbuf2 != smallbuf || tmpbuf != smallbuf) { | |
1572 | /* Either they malloc'd it, or we malloc'd it, | |
1573 | so no prefix is present in ours. */ | |
1574 | tmpbuf2[0] = '_'; | |
1575 | tmpbuf2[1] = '<'; | |
1576 | } | |
1577 | ||
1578 | memcpy(tmpbuf2 + 2, s, tmplen2); | |
1579 | tmplen2 += 2; | |
1580 | ||
8a5ee598 | 1581 | gv2 = *(GV**)hv_fetch(PL_defstash, tmpbuf2, tmplen2, TRUE); |
e5527e4b | 1582 | if (!isGV(gv2)) { |
8a5ee598 | 1583 | gv_init(gv2, PL_defstash, tmpbuf2, tmplen2, FALSE); |
e5527e4b RGS |
1584 | /* adjust ${"::_<newfilename"} to store the new file name */ |
1585 | GvSV(gv2) = newSVpvn(tmpbuf2 + 2, tmplen2 - 2); | |
3cb1dbc6 NC |
1586 | GvHV(gv2) = MUTABLE_HV(SvREFCNT_inc(GvHV(*gvp))); |
1587 | GvAV(gv2) = MUTABLE_AV(SvREFCNT_inc(GvAV(*gvp))); | |
e5527e4b | 1588 | } |
44867030 NC |
1589 | |
1590 | if (tmpbuf2 != smallbuf) Safefree(tmpbuf2); | |
8a5ee598 | 1591 | } |
e66cf94c | 1592 | if (tmpbuf != smallbuf) Safefree(tmpbuf); |
e66cf94c | 1593 | } |
8a5ee598 | 1594 | #endif |
05ec9bb3 | 1595 | CopFILE_free(PL_curcop); |
d9095cec | 1596 | CopFILE_setn(PL_curcop, s, len); |
f4dd75d9 | 1597 | } |
57843af0 | 1598 | CopLINE_set(PL_curcop, atoi(n)-1); |
463ee0b2 LW |
1599 | } |
1600 | ||
29595ff2 | 1601 | #ifdef PERL_MAD |
cd81e915 | 1602 | /* skip space before PL_thistoken */ |
29595ff2 NC |
1603 | |
1604 | STATIC char * | |
1605 | S_skipspace0(pTHX_ register char *s) | |
1606 | { | |
7918f24d NC |
1607 | PERL_ARGS_ASSERT_SKIPSPACE0; |
1608 | ||
29595ff2 NC |
1609 | s = skipspace(s); |
1610 | if (!PL_madskills) | |
1611 | return s; | |
cd81e915 NC |
1612 | if (PL_skipwhite) { |
1613 | if (!PL_thiswhite) | |
6b29d1f5 | 1614 | PL_thiswhite = newSVpvs(""); |
cd81e915 NC |
1615 | sv_catsv(PL_thiswhite, PL_skipwhite); |
1616 | sv_free(PL_skipwhite); | |
1617 | PL_skipwhite = 0; | |
1618 | } | |
1619 | PL_realtokenstart = s - SvPVX(PL_linestr); | |
29595ff2 NC |
1620 | return s; |
1621 | } | |
1622 | ||
cd81e915 | 1623 | /* skip space after PL_thistoken */ |
29595ff2 NC |
1624 | |
1625 | STATIC char * | |
1626 | S_skipspace1(pTHX_ register char *s) | |
1627 | { | |
d4c19fe8 | 1628 | const char *start = s; |
29595ff2 NC |
1629 | I32 startoff = start - SvPVX(PL_linestr); |
1630 | ||
7918f24d NC |
1631 | PERL_ARGS_ASSERT_SKIPSPACE1; |
1632 | ||
29595ff2 NC |
1633 | s = skipspace(s); |
1634 | if (!PL_madskills) | |
1635 | return s; | |
1636 | start = SvPVX(PL_linestr) + startoff; | |
cd81e915 | 1637 | if (!PL_thistoken && PL_realtokenstart >= 0) { |
d4c19fe8 | 1638 | const char * const tstart = SvPVX(PL_linestr) + PL_realtokenstart; |
cd81e915 NC |
1639 | PL_thistoken = newSVpvn(tstart, start - tstart); |
1640 | } | |
1641 | PL_realtokenstart = -1; | |
1642 | if (PL_skipwhite) { | |
1643 | if (!PL_nextwhite) | |
6b29d1f5 | 1644 | PL_nextwhite = newSVpvs(""); |
cd81e915 NC |
1645 | sv_catsv(PL_nextwhite, PL_skipwhite); |
1646 | sv_free(PL_skipwhite); | |
1647 | PL_skipwhite = 0; | |
29595ff2 NC |
1648 | } |
1649 | return s; | |
1650 | } | |
1651 | ||
1652 | STATIC char * | |
1653 | S_skipspace2(pTHX_ register char *s, SV **svp) | |
1654 | { | |
c35e046a AL |
1655 | char *start; |
1656 | const I32 bufptroff = PL_bufptr - SvPVX(PL_linestr); | |
1657 | const I32 startoff = s - SvPVX(PL_linestr); | |
1658 | ||
7918f24d NC |
1659 | PERL_ARGS_ASSERT_SKIPSPACE2; |
1660 | ||
29595ff2 NC |
1661 | s = skipspace(s); |
1662 | PL_bufptr = SvPVX(PL_linestr) + bufptroff; | |
1663 | if (!PL_madskills || !svp) | |
1664 | return s; | |
1665 | start = SvPVX(PL_linestr) + startoff; | |
cd81e915 | 1666 | if (!PL_thistoken && PL_realtokenstart >= 0) { |
d4c19fe8 | 1667 | char * const tstart = SvPVX(PL_linestr) + PL_realtokenstart; |
cd81e915 NC |
1668 | PL_thistoken = newSVpvn(tstart, start - tstart); |
1669 | PL_realtokenstart = -1; | |
29595ff2 | 1670 | } |
cd81e915 | 1671 | if (PL_skipwhite) { |
29595ff2 | 1672 | if (!*svp) |
6b29d1f5 | 1673 | *svp = newSVpvs(""); |
cd81e915 NC |
1674 | sv_setsv(*svp, PL_skipwhite); |
1675 | sv_free(PL_skipwhite); | |
1676 | PL_skipwhite = 0; | |
29595ff2 NC |
1677 | } |
1678 | ||
1679 | return s; | |
1680 | } | |
1681 | #endif | |
1682 | ||
80a702cd | 1683 | STATIC void |
15f169a1 | 1684 | S_update_debugger_info(pTHX_ SV *orig_sv, const char *const buf, STRLEN len) |
80a702cd RGS |
1685 | { |
1686 | AV *av = CopFILEAVx(PL_curcop); | |
1687 | if (av) { | |
b9f83d2f | 1688 | SV * const sv = newSV_type(SVt_PVMG); |
5fa550fb NC |
1689 | if (orig_sv) |
1690 | sv_setsv(sv, orig_sv); | |
1691 | else | |
1692 | sv_setpvn(sv, buf, len); | |
80a702cd RGS |
1693 | (void)SvIOK_on(sv); |
1694 | SvIV_set(sv, 0); | |
1695 | av_store(av, (I32)CopLINE(PL_curcop), sv); | |
1696 | } | |
1697 | } | |
1698 | ||
ffb4593c NT |
1699 | /* |
1700 | * S_skipspace | |
1701 | * Called to gobble the appropriate amount and type of whitespace. | |
1702 | * Skips comments as well. | |
1703 | */ | |
1704 | ||
76e3520e | 1705 | STATIC char * |
cea2e8a9 | 1706 | S_skipspace(pTHX_ register char *s) |
a687059c | 1707 | { |
5db06880 | 1708 | #ifdef PERL_MAD |
f0e67a1d Z |
1709 | char *start = s; |
1710 | #endif /* PERL_MAD */ | |
7918f24d | 1711 | PERL_ARGS_ASSERT_SKIPSPACE; |
f0e67a1d | 1712 | #ifdef PERL_MAD |
cd81e915 NC |
1713 | if (PL_skipwhite) { |
1714 | sv_free(PL_skipwhite); | |
f0e67a1d | 1715 | PL_skipwhite = NULL; |
5db06880 | 1716 | } |
f0e67a1d | 1717 | #endif /* PERL_MAD */ |
3280af22 | 1718 | if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) { |
bf4acbe4 | 1719 | while (s < PL_bufend && SPACE_OR_TAB(*s)) |
463ee0b2 | 1720 | s++; |
f0e67a1d Z |
1721 | } else { |
1722 | STRLEN bufptr_pos = PL_bufptr - SvPVX(PL_linestr); | |
1723 | PL_bufptr = s; | |
f0998909 Z |
1724 | lex_read_space(LEX_KEEP_PREVIOUS | |
1725 | (PL_sublex_info.sub_inwhat || PL_lex_state == LEX_FORMLINE ? | |
1726 | LEX_NO_NEXT_CHUNK : 0)); | |
3280af22 | 1727 | s = PL_bufptr; |
f0e67a1d Z |
1728 | PL_bufptr = SvPVX(PL_linestr) + bufptr_pos; |
1729 | if (PL_linestart > PL_bufptr) | |
1730 | PL_bufptr = PL_linestart; | |
1731 | return s; | |
463ee0b2 | 1732 | } |
5db06880 | 1733 | #ifdef PERL_MAD |
f0e67a1d Z |
1734 | if (PL_madskills) |
1735 | PL_skipwhite = newSVpvn(start, s-start); | |
1736 | #endif /* PERL_MAD */ | |
5db06880 | 1737 | return s; |
a687059c | 1738 | } |
378cc40b | 1739 | |
ffb4593c NT |
1740 | /* |
1741 | * S_check_uni | |
1742 | * Check the unary operators to ensure there's no ambiguity in how they're | |
1743 | * used. An ambiguous piece of code would be: | |
1744 | * rand + 5 | |
1745 | * This doesn't mean rand() + 5. Because rand() is a unary operator, | |
1746 | * the +5 is its argument. | |
1747 | */ | |
1748 | ||
76e3520e | 1749 | STATIC void |
cea2e8a9 | 1750 | S_check_uni(pTHX) |
ba106d47 | 1751 | { |
97aff369 | 1752 | dVAR; |
d4c19fe8 AL |
1753 | const char *s; |
1754 | const char *t; | |
2f3197b3 | 1755 | |
3280af22 | 1756 | if (PL_oldoldbufptr != PL_last_uni) |
2f3197b3 | 1757 | return; |
3280af22 NIS |
1758 | while (isSPACE(*PL_last_uni)) |
1759 | PL_last_uni++; | |
c35e046a AL |
1760 | s = PL_last_uni; |
1761 | while (isALNUM_lazy_if(s,UTF) || *s == '-') | |
1762 | s++; | |
3280af22 | 1763 | if ((t = strchr(s, '(')) && t < PL_bufptr) |
a0d0e21e | 1764 | return; |
6136c704 | 1765 | |
9b387841 NC |
1766 | Perl_ck_warner_d(aTHX_ packWARN(WARN_AMBIGUOUS), |
1767 | "Warning: Use of \"%.*s\" without parentheses is ambiguous", | |
1768 | (int)(s - PL_last_uni), PL_last_uni); | |
2f3197b3 LW |
1769 | } |
1770 | ||
ffb4593c NT |
1771 | /* |
1772 | * LOP : macro to build a list operator. Its behaviour has been replaced | |
1773 | * with a subroutine, S_lop() for which LOP is just another name. | |
1774 | */ | |
1775 | ||
a0d0e21e LW |
1776 | #define LOP(f,x) return lop(f,x,s) |
1777 | ||
ffb4593c NT |
1778 | /* |
1779 | * S_lop | |
1780 | * Build a list operator (or something that might be one). The rules: | |
1781 | * - if we have a next token, then it's a list operator [why?] | |
1782 | * - if the next thing is an opening paren, then it's a function | |
1783 | * - else it's a list operator | |
1784 | */ | |
1785 | ||
76e3520e | 1786 | STATIC I32 |
a0be28da | 1787 | S_lop(pTHX_ I32 f, int x, char *s) |
ffed7fef | 1788 | { |
97aff369 | 1789 | dVAR; |
7918f24d NC |
1790 | |
1791 | PERL_ARGS_ASSERT_LOP; | |
1792 | ||
6154021b | 1793 | pl_yylval.ival = f; |
35c8bce7 | 1794 | CLINE; |
3280af22 NIS |
1795 | PL_expect = x; |
1796 | PL_bufptr = s; | |
1797 | PL_last_lop = PL_oldbufptr; | |
eb160463 | 1798 | PL_last_lop_op = (OPCODE)f; |
5db06880 NC |
1799 | #ifdef PERL_MAD |
1800 | if (PL_lasttoke) | |
1801 | return REPORT(LSTOP); | |
1802 | #else | |
3280af22 | 1803 | if (PL_nexttoke) |
bbf60fe6 | 1804 | return REPORT(LSTOP); |
5db06880 | 1805 | #endif |
79072805 | 1806 | if (*s == '(') |
bbf60fe6 | 1807 | return REPORT(FUNC); |
29595ff2 | 1808 | s = PEEKSPACE(s); |
79072805 | 1809 | if (*s == '(') |
bbf60fe6 | 1810 | return REPORT(FUNC); |
79072805 | 1811 | else |
bbf60fe6 | 1812 | return REPORT(LSTOP); |
79072805 LW |
1813 | } |
1814 | ||
5db06880 NC |
1815 | #ifdef PERL_MAD |
1816 | /* | |
1817 | * S_start_force | |
1818 | * Sets up for an eventual force_next(). start_force(0) basically does | |
1819 | * an unshift, while start_force(-1) does a push. yylex removes items | |
1820 | * on the "pop" end. | |
1821 | */ | |
1822 | ||
1823 | STATIC void | |
1824 | S_start_force(pTHX_ int where) | |
1825 | { | |
1826 | int i; | |
1827 | ||
cd81e915 | 1828 | if (where < 0) /* so people can duplicate start_force(PL_curforce) */ |
5db06880 | 1829 | where = PL_lasttoke; |
cd81e915 NC |
1830 | assert(PL_curforce < 0 || PL_curforce == where); |
1831 | if (PL_curforce != where) { | |
5db06880 NC |
1832 | for (i = PL_lasttoke; i > where; --i) { |
1833 | PL_nexttoke[i] = PL_nexttoke[i-1]; | |
1834 | } | |
1835 | PL_lasttoke++; | |
1836 | } | |
cd81e915 | 1837 | if (PL_curforce < 0) /* in case of duplicate start_force() */ |
5db06880 | 1838 | Zero(&PL_nexttoke[where], 1, NEXTTOKE); |
cd81e915 NC |
1839 | PL_curforce = where; |
1840 | if (PL_nextwhite) { | |
5db06880 | 1841 | if (PL_madskills) |
6b29d1f5 | 1842 | curmad('^', newSVpvs("")); |
cd81e915 | 1843 | CURMAD('_', PL_nextwhite); |
5db06880 NC |
1844 | } |
1845 | } | |
1846 | ||
1847 | STATIC void | |
1848 | S_curmad(pTHX_ char slot, SV *sv) | |
1849 | { | |
1850 | MADPROP **where; | |
1851 | ||
1852 | if (!sv) | |
1853 | return; | |
cd81e915 NC |
1854 | if (PL_curforce < 0) |
1855 | where = &PL_thismad; | |
5db06880 | 1856 | else |
cd81e915 | 1857 | where = &PL_nexttoke[PL_curforce].next_mad; |
5db06880 | 1858 | |
cd81e915 | 1859 | if (PL_faketokens) |
76f68e9b | 1860 | sv_setpvs(sv, ""); |
5db06880 NC |
1861 | else { |
1862 | if (!IN_BYTES) { | |
1863 | if (UTF && is_utf8_string((U8*)SvPVX(sv), SvCUR(sv))) | |
1864 | SvUTF8_on(sv); | |
1865 | else if (PL_encoding) { | |
1866 | sv_recode_to_utf8(sv, PL_encoding); | |
1867 | } | |
1868 | } | |
1869 | } | |
1870 | ||
1871 | /* keep a slot open for the head of the list? */ | |
1872 | if (slot != '_' && *where && (*where)->mad_key == '^') { | |
1873 | (*where)->mad_key = slot; | |
daba3364 | 1874 | sv_free(MUTABLE_SV(((*where)->mad_val))); |
5db06880 NC |
1875 | (*where)->mad_val = (void*)sv; |
1876 | } | |
1877 | else | |
1878 | addmad(newMADsv(slot, sv), where, 0); | |
1879 | } | |
1880 | #else | |
b3f24c00 MHM |
1881 | # define start_force(where) NOOP |
1882 | # define curmad(slot, sv) NOOP | |
5db06880 NC |
1883 | #endif |
1884 | ||
ffb4593c NT |
1885 | /* |
1886 | * S_force_next | |
9cbb5ea2 | 1887 | * When the lexer realizes it knows the next token (for instance, |
ffb4593c | 1888 | * it is reordering tokens for the parser) then it can call S_force_next |
9cbb5ea2 | 1889 | * to know what token to return the next time the lexer is called. Caller |
5db06880 NC |
1890 | * will need to set PL_nextval[] (or PL_nexttoke[].next_val with PERL_MAD), |
1891 | * and possibly PL_expect to ensure the lexer handles the token correctly. | |
ffb4593c NT |
1892 | */ |
1893 | ||
4e553d73 | 1894 | STATIC void |
cea2e8a9 | 1895 | S_force_next(pTHX_ I32 type) |
79072805 | 1896 | { |
97aff369 | 1897 | dVAR; |
704d4215 GG |
1898 | #ifdef DEBUGGING |
1899 | if (DEBUG_T_TEST) { | |
1900 | PerlIO_printf(Perl_debug_log, "### forced token:\n"); | |
f05d7009 | 1901 | tokereport(type, &NEXTVAL_NEXTTOKE); |
704d4215 GG |
1902 | } |
1903 | #endif | |
5db06880 | 1904 | #ifdef PERL_MAD |
cd81e915 | 1905 | if (PL_curforce < 0) |
5db06880 | 1906 | start_force(PL_lasttoke); |
cd81e915 | 1907 | PL_nexttoke[PL_curforce].next_type = type; |
5db06880 NC |
1908 | if (PL_lex_state != LEX_KNOWNEXT) |
1909 | PL_lex_defer = PL_lex_state; | |
1910 | PL_lex_state = LEX_KNOWNEXT; | |
1911 | PL_lex_expect = PL_expect; | |
cd81e915 | 1912 | PL_curforce = -1; |
5db06880 | 1913 | #else |
3280af22 NIS |
1914 | PL_nexttype[PL_nexttoke] = type; |
1915 | PL_nexttoke++; | |
1916 | if (PL_lex_state != LEX_KNOWNEXT) { | |
1917 | PL_lex_defer = PL_lex_state; | |
1918 | PL_lex_expect = PL_expect; | |
1919 | PL_lex_state = LEX_KNOWNEXT; | |
79072805 | 1920 | } |
5db06880 | 1921 | #endif |
79072805 LW |
1922 | } |
1923 | ||
d0a148a6 | 1924 | STATIC SV * |
15f169a1 | 1925 | S_newSV_maybe_utf8(pTHX_ const char *const start, STRLEN len) |
d0a148a6 | 1926 | { |
97aff369 | 1927 | dVAR; |
740cce10 | 1928 | SV * const sv = newSVpvn_utf8(start, len, |
eaf7a4d2 CS |
1929 | !IN_BYTES |
1930 | && UTF | |
1931 | && !is_ascii_string((const U8*)start, len) | |
740cce10 | 1932 | && is_utf8_string((const U8*)start, len)); |
d0a148a6 NC |
1933 | return sv; |
1934 | } | |
1935 | ||
ffb4593c NT |
1936 | /* |
1937 | * S_force_word | |
1938 | * When the lexer knows the next thing is a word (for instance, it has | |
1939 | * just seen -> and it knows that the next char is a word char, then | |
02b34bbe DM |
1940 | * it calls S_force_word to stick the next word into the PL_nexttoke/val |
1941 | * lookahead. | |
ffb4593c NT |
1942 | * |
1943 | * Arguments: | |
b1b65b59 | 1944 | * char *start : buffer position (must be within PL_linestr) |
02b34bbe | 1945 | * int token : PL_next* will be this type of bare word (e.g., METHOD,WORD) |
ffb4593c NT |
1946 | * int check_keyword : if true, Perl checks to make sure the word isn't |
1947 | * a keyword (do this if the word is a label, e.g. goto FOO) | |
1948 | * int allow_pack : if true, : characters will also be allowed (require, | |
1949 | * use, etc. do this) | |
9cbb5ea2 | 1950 | * int allow_initial_tick : used by the "sub" lexer only. |
ffb4593c NT |
1951 | */ |
1952 | ||
76e3520e | 1953 | STATIC char * |
cea2e8a9 | 1954 | S_force_word(pTHX_ register char *start, int token, int check_keyword, int allow_pack, int allow_initial_tick) |
79072805 | 1955 | { |
97aff369 | 1956 | dVAR; |
463ee0b2 LW |
1957 | register char *s; |
1958 | STRLEN len; | |
4e553d73 | 1959 | |
7918f24d NC |
1960 | PERL_ARGS_ASSERT_FORCE_WORD; |
1961 | ||
29595ff2 | 1962 | start = SKIPSPACE1(start); |
463ee0b2 | 1963 | s = start; |
7e2040f0 | 1964 | if (isIDFIRST_lazy_if(s,UTF) || |
a0d0e21e | 1965 | (allow_pack && *s == ':') || |
15f0808c | 1966 | (allow_initial_tick && *s == '\'') ) |
a0d0e21e | 1967 | { |
3280af22 | 1968 | s = scan_word(s, PL_tokenbuf, sizeof PL_tokenbuf, allow_pack, &len); |
5458a98a | 1969 | if (check_keyword && keyword(PL_tokenbuf, len, 0)) |
463ee0b2 | 1970 | return start; |
cd81e915 | 1971 | start_force(PL_curforce); |
5db06880 NC |
1972 | if (PL_madskills) |
1973 | curmad('X', newSVpvn(start,s-start)); | |
463ee0b2 | 1974 | if (token == METHOD) { |
29595ff2 | 1975 | s = SKIPSPACE1(s); |
463ee0b2 | 1976 | if (*s == '(') |
3280af22 | 1977 | PL_expect = XTERM; |
463ee0b2 | 1978 | else { |
3280af22 | 1979 | PL_expect = XOPERATOR; |
463ee0b2 | 1980 | } |
79072805 | 1981 | } |
e74e6b3d | 1982 | if (PL_madskills) |
63575281 | 1983 | curmad('g', newSVpvs( "forced" )); |
9ded7720 | 1984 | NEXTVAL_NEXTTOKE.opval |
d0a148a6 NC |
1985 | = (OP*)newSVOP(OP_CONST,0, |
1986 | S_newSV_maybe_utf8(aTHX_ PL_tokenbuf, len)); | |
9ded7720 | 1987 | NEXTVAL_NEXTTOKE.opval->op_private |= OPpCONST_BARE; |
79072805 LW |
1988 | force_next(token); |
1989 | } | |
1990 | return s; | |
1991 | } | |
1992 | ||
ffb4593c NT |
1993 | /* |
1994 | * S_force_ident | |
9cbb5ea2 | 1995 | * Called when the lexer wants $foo *foo &foo etc, but the program |
ffb4593c NT |
1996 | * text only contains the "foo" portion. The first argument is a pointer |
1997 | * to the "foo", and the second argument is the type symbol to prefix. | |
1998 | * Forces the next token to be a "WORD". | |
9cbb5ea2 | 1999 | * Creates the symbol if it didn't already exist (via gv_fetchpv()). |
ffb4593c NT |
2000 | */ |
2001 | ||
76e3520e | 2002 | STATIC void |
bfed75c6 | 2003 | S_force_ident(pTHX_ register const char *s, int kind) |
79072805 | 2004 | { |
97aff369 | 2005 | dVAR; |
7918f24d NC |
2006 | |
2007 | PERL_ARGS_ASSERT_FORCE_IDENT; | |
2008 | ||
c35e046a | 2009 | if (*s) { |
90e5519e NC |
2010 | const STRLEN len = strlen(s); |
2011 | OP* const o = (OP*)newSVOP(OP_CONST, 0, newSVpvn(s, len)); | |
cd81e915 | 2012 | start_force(PL_curforce); |
9ded7720 | 2013 | NEXTVAL_NEXTTOKE.opval = o; |
79072805 | 2014 | force_next(WORD); |
748a9306 | 2015 | if (kind) { |
11343788 | 2016 | o->op_private = OPpCONST_ENTERED; |
55497cff | 2017 | /* XXX see note in pp_entereval() for why we forgo typo |
2018 | warnings if the symbol must be introduced in an eval. | |
2019 | GSAR 96-10-12 */ | |
90e5519e NC |
2020 | gv_fetchpvn_flags(s, len, |
2021 | PL_in_eval ? (GV_ADDMULTI | GV_ADDINEVAL) | |
2022 | : GV_ADD, | |
2023 | kind == '$' ? SVt_PV : | |
2024 | kind == '@' ? SVt_PVAV : | |
2025 | kind == '%' ? SVt_PVHV : | |
a0d0e21e | 2026 | SVt_PVGV |
90e5519e | 2027 | ); |
748a9306 | 2028 | } |
79072805 LW |
2029 | } |
2030 | } | |
2031 | ||
1571675a GS |
2032 | NV |
2033 | Perl_str_to_version(pTHX_ SV *sv) | |
2034 | { | |
2035 | NV retval = 0.0; | |
2036 | NV nshift = 1.0; | |
2037 | STRLEN len; | |
cfd0369c | 2038 | const char *start = SvPV_const(sv,len); |
9d4ba2ae | 2039 | const char * const end = start + len; |
504618e9 | 2040 | const bool utf = SvUTF8(sv) ? TRUE : FALSE; |
7918f24d NC |
2041 | |
2042 | PERL_ARGS_ASSERT_STR_TO_VERSION; | |
2043 | ||
1571675a | 2044 | while (start < end) { |
ba210ebe | 2045 | STRLEN skip; |
1571675a GS |
2046 | UV n; |
2047 | if (utf) | |
9041c2e3 | 2048 | n = utf8n_to_uvchr((U8*)start, len, &skip, 0); |
1571675a GS |
2049 | else { |
2050 | n = *(U8*)start; | |
2051 | skip = 1; | |
2052 | } | |
2053 | retval += ((NV)n)/nshift; | |
2054 | start += skip; | |
2055 | nshift *= 1000; | |
2056 | } | |
2057 | return retval; | |
2058 | } | |
2059 | ||
4e553d73 | 2060 | /* |
ffb4593c NT |
2061 | * S_force_version |
2062 | * Forces the next token to be a version number. | |
e759cc13 RGS |
2063 | * If the next token appears to be an invalid version number, (e.g. "v2b"), |
2064 | * and if "guessing" is TRUE, then no new token is created (and the caller | |
2065 | * must use an alternative parsing method). | |
ffb4593c NT |
2066 | */ |
2067 | ||
76e3520e | 2068 | STATIC char * |
e759cc13 | 2069 | S_force_version(pTHX_ char *s, int guessing) |
89bfa8cd | 2070 | { |
97aff369 | 2071 | dVAR; |
5f66b61c | 2072 | OP *version = NULL; |
44dcb63b | 2073 | char *d; |
5db06880 NC |
2074 | #ifdef PERL_MAD |
2075 | I32 startoff = s - SvPVX(PL_linestr); | |
2076 | #endif | |
89bfa8cd | 2077 | |
7918f24d NC |
2078 | PERL_ARGS_ASSERT_FORCE_VERSION; |
2079 | ||
29595ff2 | 2080 | s = SKIPSPACE1(s); |
89bfa8cd | 2081 | |
44dcb63b | 2082 | d = s; |
dd629d5b | 2083 | if (*d == 'v') |
44dcb63b | 2084 | d++; |
44dcb63b | 2085 | if (isDIGIT(*d)) { |
e759cc13 RGS |
2086 | while (isDIGIT(*d) || *d == '_' || *d == '.') |
2087 | d++; | |
5db06880 NC |
2088 | #ifdef PERL_MAD |
2089 | if (PL_madskills) { | |
cd81e915 | 2090 | start_force(PL_curforce); |
5db06880 NC |
2091 | curmad('X', newSVpvn(s,d-s)); |
2092 | } | |
2093 | #endif | |
9f3d182e | 2094 | if (*d == ';' || isSPACE(*d) || *d == '}' || !*d) { |
dd629d5b | 2095 | SV *ver; |
6154021b RGS |
2096 | s = scan_num(s, &pl_yylval); |
2097 | version = pl_yylval.opval; | |
dd629d5b GS |
2098 | ver = cSVOPx(version)->op_sv; |
2099 | if (SvPOK(ver) && !SvNIOK(ver)) { | |
862a34c6 | 2100 | SvUPGRADE(ver, SVt_PVNV); |
9d6ce603 | 2101 | SvNV_set(ver, str_to_version(ver)); |
1571675a | 2102 | SvNOK_on(ver); /* hint that it is a version */ |
44dcb63b | 2103 | } |
89bfa8cd | 2104 | } |
5db06880 NC |
2105 | else if (guessing) { |
2106 | #ifdef PERL_MAD | |
2107 | if (PL_madskills) { | |
cd81e915 NC |
2108 | sv_free(PL_nextwhite); /* let next token collect whitespace */ |
2109 | PL_nextwhite = 0; | |
5db06880 NC |
2110 | s = SvPVX(PL_linestr) + startoff; |
2111 | } | |
2112 | #endif | |
e759cc13 | 2113 | return s; |
5db06880 | 2114 | } |
89bfa8cd | 2115 | } |
2116 | ||
5db06880 NC |
2117 | #ifdef PERL_MAD |
2118 | if (PL_madskills && !version) { | |
cd81e915 NC |
2119 | sv_free(PL_nextwhite); /* let next token collect whitespace */ |
2120 | PL_nextwhite = 0; | |
5db06880 NC |
2121 | s = SvPVX(PL_linestr) + startoff; |
2122 | } | |
2123 | #endif | |
89bfa8cd | 2124 | /* NOTE: The parser sees the package name and the VERSION swapped */ |
cd81e915 | 2125 | start_force(PL_curforce); |
9ded7720 | 2126 | NEXTVAL_NEXTTOKE.opval = version; |
4e553d73 | 2127 | force_next(WORD); |
89bfa8cd | 2128 | |
e759cc13 | 2129 | return s; |
89bfa8cd | 2130 | } |
2131 | ||
ffb4593c NT |
2132 | /* |
2133 | * S_tokeq | |
2134 | * Tokenize a quoted string passed in as an SV. It finds the next | |
2135 | * chunk, up to end of string or a backslash. It may make a new | |
2136 | * SV containing that chunk (if HINT_NEW_STRING is on). It also | |
2137 | * turns \\ into \. | |
2138 | */ | |
2139 | ||
76e3520e | 2140 | STATIC SV * |
cea2e8a9 | 2141 | S_tokeq(pTHX_ SV *sv) |
79072805 | 2142 | { |
97aff369 | 2143 | dVAR; |
79072805 LW |
2144 | register char *s; |
2145 | register char *send; | |
2146 | register char *d; | |
b3ac6de7 IZ |
2147 | STRLEN len = 0; |
2148 | SV *pv = sv; | |
79072805 | 2149 | |
7918f24d NC |
2150 | PERL_ARGS_ASSERT_TOKEQ; |
2151 | ||
79072805 | 2152 | if (!SvLEN(sv)) |
b3ac6de7 | 2153 | goto finish; |
79072805 | 2154 | |
a0d0e21e | 2155 | s = SvPV_force(sv, len); |
21a311ee | 2156 | if (SvTYPE(sv) >= SVt_PVIV && SvIVX(sv) == -1) |
b3ac6de7 | 2157 | goto finish; |
463ee0b2 | 2158 | send = s + len; |
79072805 LW |
2159 | while (s < send && *s != '\\') |
2160 | s++; | |
2161 | if (s == send) | |
b3ac6de7 | 2162 | goto finish; |
79072805 | 2163 | d = s; |
be4731d2 | 2164 | if ( PL_hints & HINT_NEW_STRING ) { |
59cd0e26 | 2165 | pv = newSVpvn_flags(SvPVX_const(pv), len, SVs_TEMP | SvUTF8(sv)); |
be4731d2 | 2166 | } |
79072805 LW |
2167 | while (s < send) { |
2168 | if (*s == '\\') { | |
a0d0e21e | 2169 | if (s + 1 < send && (s[1] == '\\')) |
79072805 LW |
2170 | s++; /* all that, just for this */ |
2171 | } | |
2172 | *d++ = *s++; | |
2173 | } | |
2174 | *d = '\0'; | |
95a20fc0 | 2175 | SvCUR_set(sv, d - SvPVX_const(sv)); |
b3ac6de7 | 2176 | finish: |
3280af22 | 2177 | if ( PL_hints & HINT_NEW_STRING ) |
eb0d8d16 | 2178 | return new_constant(NULL, 0, "q", sv, pv, "q", 1); |
79072805 LW |
2179 | return sv; |
2180 | } | |
2181 | ||
ffb4593c NT |
2182 | /* |
2183 | * Now come three functions related to double-quote context, | |
2184 | * S_sublex_start, S_sublex_push, and S_sublex_done. They're used when | |
2185 | * converting things like "\u\Lgnat" into ucfirst(lc("gnat")). They | |
2186 | * interact with PL_lex_state, and create fake ( ... ) argument lists | |
2187 | * to handle functions and concatenation. | |
2188 | * They assume that whoever calls them will be setting up a fake | |
2189 | * join call, because each subthing puts a ',' after it. This lets | |
2190 | * "lower \luPpEr" | |
2191 | * become | |
2192 | * join($, , 'lower ', lcfirst( 'uPpEr', ) ,) | |
2193 | * | |
2194 | * (I'm not sure whether the spurious commas at the end of lcfirst's | |
2195 | * arguments and join's arguments are created or not). | |
2196 | */ | |
2197 | ||
2198 | /* | |
2199 | * S_sublex_start | |
6154021b | 2200 | * Assumes that pl_yylval.ival is the op we're creating (e.g. OP_LCFIRST). |
ffb4593c NT |
2201 | * |
2202 | * Pattern matching will set PL_lex_op to the pattern-matching op to | |
6154021b | 2203 | * make (we return THING if pl_yylval.ival is OP_NULL, PMFUNC otherwise). |
ffb4593c NT |
2204 | * |
2205 | * OP_CONST and OP_READLINE are easy--just make the new op and return. | |
2206 | * | |
2207 | * Everything else becomes a FUNC. | |
2208 | * | |
2209 | * Sets PL_lex_state to LEX_INTERPPUSH unless (ival was OP_NULL or we | |
2210 | * had an OP_CONST or OP_READLINE). This just sets us up for a | |
2211 | * call to S_sublex_push(). | |
2212 | */ | |
2213 | ||
76e3520e | 2214 | STATIC I32 |
cea2e8a9 | 2215 | S_sublex_start(pTHX) |
79072805 | 2216 | { |
97aff369 | 2217 | dVAR; |
6154021b | 2218 | register const I32 op_type = pl_yylval.ival; |
79072805 LW |
2219 | |
2220 | if (op_type == OP_NULL) { | |
6154021b | 2221 | pl_yylval.opval = PL_lex_op; |
5f66b61c | 2222 | PL_lex_op = NULL; |
79072805 LW |
2223 | return THING; |
2224 | } | |
2225 | if (op_type == OP_CONST || op_type == OP_READLINE) { | |
3280af22 | 2226 | SV *sv = tokeq(PL_lex_stuff); |
b3ac6de7 IZ |
2227 | |
2228 | if (SvTYPE(sv) == SVt_PVIV) { | |
2229 | /* Overloaded constants, nothing fancy: Convert to SVt_PV: */ | |
2230 | STRLEN len; | |
96a5add6 | 2231 | const char * const p = SvPV_const(sv, len); |
740cce10 | 2232 | SV * const nsv = newSVpvn_flags(p, len, SvUTF8(sv)); |
b3ac6de7 IZ |
2233 | SvREFCNT_dec(sv); |
2234 | sv = nsv; | |
4e553d73 | 2235 | } |
6154021b | 2236 | pl_yylval.opval = (OP*)newSVOP(op_type, 0, sv); |
a0714e2c | 2237 | PL_lex_stuff = NULL; |
6f33ba73 RGS |
2238 | /* Allow <FH> // "foo" */ |
2239 | if (op_type == OP_READLINE) | |
2240 | PL_expect = XTERMORDORDOR; | |
79072805 LW |
2241 | return THING; |
2242 | } | |
e3f73d4e RGS |
2243 | else if (op_type == OP_BACKTICK && PL_lex_op) { |
2244 | /* readpipe() vas overriden */ | |
2245 | cSVOPx(cLISTOPx(cUNOPx(PL_lex_op)->op_first)->op_first->op_sibling)->op_sv = tokeq(PL_lex_stuff); | |
6154021b | 2246 | pl_yylval.opval = PL_lex_op; |
9b201d7d | 2247 | PL_lex_op = NULL; |
e3f73d4e RGS |
2248 | PL_lex_stuff = NULL; |
2249 | return THING; | |
2250 | } | |
79072805 | 2251 | |
3280af22 | 2252 | PL_sublex_info.super_state = PL_lex_state; |
eac04b2e | 2253 | PL_sublex_info.sub_inwhat = (U16)op_type; |
3280af22 NIS |
2254 | PL_sublex_info.sub_op = PL_lex_op; |
2255 | PL_lex_state = LEX_INTERPPUSH; | |
55497cff | 2256 | |
3280af22 NIS |
2257 | PL_expect = XTERM; |
2258 | if (PL_lex_op) { | |
6154021b | 2259 | pl_yylval.opval = PL_lex_op; |
5f66b61c | 2260 | PL_lex_op = NULL; |
55497cff | 2261 | return PMFUNC; |
2262 | } | |
2263 | else | |
2264 | return FUNC; | |
2265 | } | |
2266 | ||
ffb4593c NT |
2267 | /* |
2268 | * S_sublex_push | |
2269 | * Create a new scope to save the lexing state. The scope will be | |
2270 | * ended in S_sublex_done. Returns a '(', starting the function arguments | |
2271 | * to the uc, lc, etc. found before. | |
2272 | * Sets PL_lex_state to LEX_INTERPCONCAT. | |
2273 | */ | |
2274 | ||
76e3520e | 2275 | STATIC I32 |
cea2e8a9 | 2276 | S_sublex_push(pTHX) |
55497cff | 2277 | { |
27da23d5 | 2278 | dVAR; |
f46d017c | 2279 | ENTER; |
55497cff | 2280 | |
3280af22 | 2281 | PL_lex_state = PL_sublex_info.super_state; |
651b5b28 | 2282 | SAVEBOOL(PL_lex_dojoin); |
3280af22 | 2283 | SAVEI32(PL_lex_brackets); |
3280af22 NIS |
2284 | SAVEI32(PL_lex_casemods); |
2285 | SAVEI32(PL_lex_starts); | |
651b5b28 | 2286 | SAVEI8(PL_lex_state); |
7766f137 | 2287 | SAVEVPTR(PL_lex_inpat); |
98246f1e | 2288 | SAVEI16(PL_lex_inwhat); |
57843af0 | 2289 | SAVECOPLINE(PL_curcop); |
3280af22 | 2290 | SAVEPPTR(PL_bufptr); |
8452ff4b | 2291 | SAVEPPTR(PL_bufend); |
3280af22 NIS |
2292 | SAVEPPTR(PL_oldbufptr); |
2293 | SAVEPPTR(PL_oldoldbufptr); | |
207e3d1a JH |
2294 | SAVEPPTR(PL_last_lop); |
2295 | SAVEPPTR(PL_last_uni); | |
3280af22 NIS |
2296 | SAVEPPTR(PL_linestart); |
2297 | SAVESPTR(PL_linestr); | |
8edd5f42 RGS |
2298 | SAVEGENERICPV(PL_lex_brackstack); |
2299 | SAVEGENERICPV(PL_lex_casestack); | |
3280af22 NIS |
2300 | |
2301 | PL_linestr = PL_lex_stuff; | |
a0714e2c | 2302 | PL_lex_stuff = NULL; |
3280af22 | 2303 | |
9cbb5ea2 GS |
2304 | PL_bufend = PL_bufptr = PL_oldbufptr = PL_oldoldbufptr = PL_linestart |
2305 | = SvPVX(PL_linestr); | |
3280af22 | 2306 | PL_bufend += SvCUR(PL_linestr); |
bd61b366 | 2307 | PL_last_lop = PL_last_uni = NULL; |
3280af22 NIS |
2308 | SAVEFREESV(PL_linestr); |
2309 | ||
2310 | PL_lex_dojoin = FALSE; | |
2311 | PL_lex_brackets = 0; | |
a02a5408 JC |
2312 | Newx(PL_lex_brackstack, 120, char); |
2313 | Newx(PL_lex_casestack, 12, char); | |
3280af22 NIS |
2314 | PL_lex_casemods = 0; |
2315 | *PL_lex_casestack = '\0'; | |
2316 | PL_lex_starts = 0; | |
2317 | PL_lex_state = LEX_INTERPCONCAT; | |
eb160463 | 2318 | CopLINE_set(PL_curcop, (line_t)PL_multi_start); |
3280af22 NIS |
2319 | |
2320 | PL_lex_inwhat = PL_sublex_info.sub_inwhat; | |
2321 | if (PL_lex_inwhat == OP_MATCH || PL_lex_inwhat == OP_QR || PL_lex_inwhat == OP_SUBST) | |
2322 | PL_lex_inpat = PL_sublex_info.sub_op; | |
79072805 | 2323 | else |
5f66b61c | 2324 | PL_lex_inpat = NULL; |
79072805 | 2325 | |
55497cff | 2326 | return '('; |
79072805 LW |
2327 | } |
2328 | ||
ffb4593c NT |
2329 | /* |
2330 | * S_sublex_done | |
2331 | * Restores lexer state after a S_sublex_push. | |
2332 | */ | |
2333 | ||
76e3520e | 2334 | STATIC I32 |
cea2e8a9 | 2335 | S_sublex_done(pTHX) |
79072805 | 2336 | { |
27da23d5 | 2337 | dVAR; |
3280af22 | 2338 | if (!PL_lex_starts++) { |
396482e1 | 2339 | SV * const sv = newSVpvs(""); |
9aa983d2 JH |
2340 | if (SvUTF8(PL_linestr)) |
2341 | SvUTF8_on(sv); | |
3280af22 | 2342 | PL_expect = XOPERATOR; |
6154021b | 2343 | pl_yylval.opval = (OP*)newSVOP(OP_CONST, 0, sv); |
79072805 LW |
2344 | return THING; |
2345 | } | |
2346 | ||
3280af22 NIS |
2347 | if (PL_lex_casemods) { /* oops, we've got some unbalanced parens */ |
2348 | PL_lex_state = LEX_INTERPCASEMOD; | |
cea2e8a9 | 2349 | return yylex(); |
79072805 LW |
2350 | } |
2351 | ||
ffb4593c | 2352 | /* Is there a right-hand side to take care of? (s//RHS/ or tr//RHS/) */ |
3280af22 NIS |
2353 | if (PL_lex_repl && (PL_lex_inwhat == OP_SUBST || PL_lex_inwhat == OP_TRANS)) { |
2354 | PL_linestr = PL_lex_repl; | |
2355 | PL_lex_inpat = 0; | |
2356 | PL_bufend = PL_bufptr = PL_oldbufptr = PL_oldoldbufptr = PL_linestart = SvPVX(PL_linestr); | |
2357 | PL_bufend += SvCUR(PL_linestr); | |
bd61b366 | 2358 | PL_last_lop = PL_last_uni = NULL; |
3280af22 NIS |
2359 | SAVEFREESV(PL_linestr); |
2360 | PL_lex_dojoin = FALSE; | |
2361 | PL_lex_brackets = 0; | |
3280af22 NIS |
2362 | PL_lex_casemods = 0; |
2363 | *PL_lex_casestack = '\0'; | |
2364 | PL_lex_starts = 0; | |
25da4f38 | 2365 | if (SvEVALED(PL_lex_repl)) { |
3280af22 NIS |
2366 | PL_lex_state = LEX_INTERPNORMAL; |
2367 | PL_lex_starts++; | |
e9fa98b2 HS |
2368 | /* we don't clear PL_lex_repl here, so that we can check later |
2369 | whether this is an evalled subst; that means we rely on the | |
2370 | logic to ensure sublex_done() is called again only via the | |
2371 | branch (in yylex()) that clears PL_lex_repl, else we'll loop */ | |
79072805 | 2372 | } |
e9fa98b2 | 2373 | else { |
3280af22 | 2374 | PL_lex_state = LEX_INTERPCONCAT; |
a0714e2c | 2375 | PL_lex_repl = NULL; |
e9fa98b2 | 2376 | } |
79072805 | 2377 | return ','; |
ffed7fef LW |
2378 | } |
2379 | else { | |
5db06880 NC |
2380 | #ifdef PERL_MAD |
2381 | if (PL_madskills) { | |
cd81e915 NC |
2382 | if (PL_thiswhite) { |
2383 | if (!PL_endwhite) | |
6b29d1f5 | 2384 | PL_endwhite = newSVpvs(""); |
cd81e915 NC |
2385 | sv_catsv(PL_endwhite, PL_thiswhite); |
2386 | PL_thiswhite = 0; | |
2387 | } | |
2388 | if (PL_thistoken) | |
76f68e9b | 2389 | sv_setpvs(PL_thistoken,""); |
5db06880 | 2390 | else |
cd81e915 | 2391 | PL_realtokenstart = -1; |
5db06880 NC |
2392 | } |
2393 | #endif | |
f46d017c | 2394 | LEAVE; |
3280af22 NIS |
2395 | PL_bufend = SvPVX(PL_linestr); |
2396 | PL_bufend += SvCUR(PL_linestr); | |
2397 | PL_expect = XOPERATOR; | |
09bef843 | 2398 | PL_sublex_info.sub_inwhat = 0; |
79072805 | 2399 | return ')'; |
ffed7fef LW |
2400 | } |
2401 | } | |
2402 | ||
02aa26ce NT |
2403 | /* |
2404 | scan_const | |
2405 | ||
2406 | Extracts a pattern, double-quoted string, or transliteration. This | |
2407 | is terrifying code. | |
2408 | ||
94def140 | 2409 | It looks at PL_lex_inwhat and PL_lex_inpat to find out whether it's |
3280af22 | 2410 | processing a pattern (PL_lex_inpat is true), a transliteration |
94def140 | 2411 | (PL_lex_inwhat == OP_TRANS is true), or a double-quoted string. |
02aa26ce | 2412 | |
94def140 TS |
2413 | Returns a pointer to the character scanned up to. If this is |
2414 | advanced from the start pointer supplied (i.e. if anything was | |
9b599b2a | 2415 | successfully parsed), will leave an OP for the substring scanned |
6154021b | 2416 | in pl_yylval. Caller must intuit reason for not parsing further |
9b599b2a GS |
2417 | by looking at the next characters herself. |
2418 | ||
02aa26ce NT |
2419 | In patterns: |
2420 | backslashes: | |
2421 | double-quoted style: \r and \n | |
2422 | regexp special ones: \D \s | |
94def140 TS |
2423 | constants: \x31 |
2424 | backrefs: \1 | |
02aa26ce NT |
2425 | case and quoting: \U \Q \E |
2426 | stops on @ and $, but not for $ as tail anchor | |
2427 | ||
2428 | In transliterations: | |
2429 | characters are VERY literal, except for - not at the start or end | |
94def140 TS |
2430 | of the string, which indicates a range. If the range is in bytes, |
2431 | scan_const expands the range to the full set of intermediate | |
2432 | characters. If the range is in utf8, the hyphen is replaced with | |
2433 | a certain range mark which will be handled by pmtrans() in op.c. | |
02aa26ce NT |
2434 | |
2435 | In double-quoted strings: | |
2436 | backslashes: | |
2437 | double-quoted style: \r and \n | |
94def140 TS |
2438 | constants: \x31 |
2439 | deprecated backrefs: \1 (in substitution replacements) | |
02aa26ce NT |
2440 | case and quoting: \U \Q \E |
2441 | stops on @ and $ | |
2442 | ||
2443 | scan_const does *not* construct ops to handle interpolated strings. | |
2444 | It stops processing as soon as it finds an embedded $ or @ variable | |
2445 | and leaves it to the caller to work out what's going on. | |
2446 | ||
94def140 TS |
2447 | embedded arrays (whether in pattern or not) could be: |
2448 | @foo, @::foo, @'foo, @{foo}, @$foo, @+, @-. | |
2449 | ||
2450 | $ in double-quoted strings must be the symbol of an embedded scalar. | |
02aa26ce NT |
2451 | |
2452 | $ in pattern could be $foo or could be tail anchor. Assumption: | |
2453 | it's a tail anchor if $ is the last thing in the string, or if it's | |
94def140 | 2454 | followed by one of "()| \r\n\t" |
02aa26ce NT |
2455 | |
2456 | \1 (backreferences) are turned into $1 | |
2457 | ||
2458 | The structure of the code is | |
2459 | while (there's a character to process) { | |
94def140 TS |
2460 | handle transliteration ranges |
2461 | skip regexp comments /(?#comment)/ and codes /(?{code})/ | |
2462 | skip #-initiated comments in //x patterns | |
2463 | check for embedded arrays | |
02aa26ce NT |
2464 | check for embedded scalars |
2465 | if (backslash) { | |
94def140 TS |
2466 | leave intact backslashes from leaveit (below) |
2467 | deprecate \1 in substitution replacements | |
02aa26ce NT |
2468 | handle string-changing backslashes \l \U \Q \E, etc. |
2469 | switch (what was escaped) { | |
94def140 TS |
2470 | handle \- in a transliteration (becomes a literal -) |
2471 | handle \132 (octal characters) | |
2472 | handle \x15 and \x{1234} (hex characters) | |
2473 | handle \N{name} (named characters) | |
2474 | handle \cV (control characters) | |
2475 | handle printf-style backslashes (\f, \r, \n, etc) | |
02aa26ce | 2476 | } (end switch) |
77a135fe | 2477 | continue |
02aa26ce | 2478 | } (end if backslash) |
77a135fe | 2479 | handle regular character |
02aa26ce | 2480 | } (end while character to read) |
4e553d73 | 2481 | |
02aa26ce NT |
2482 | */ |
2483 | ||
76e3520e | 2484 | STATIC char * |
cea2e8a9 | 2485 | S_scan_const(pTHX_ char *start) |
79072805 | 2486 | { |
97aff369 | 2487 | dVAR; |
3280af22 | 2488 | register char *send = PL_bufend; /* end of the constant */ |
77a135fe KW |
2489 | SV *sv = newSV(send - start); /* sv for the constant. See |
2490 | note below on sizing. */ | |
02aa26ce NT |
2491 | register char *s = start; /* start of the constant */ |
2492 | register char *d = SvPVX(sv); /* destination for copies */ | |
2493 | bool dorange = FALSE; /* are we in a translit range? */ | |
c2e66d9e | 2494 | bool didrange = FALSE; /* did we just finish a range? */ |
2b9d42f0 | 2495 | I32 has_utf8 = FALSE; /* Output constant is UTF8 */ |
77a135fe KW |
2496 | I32 this_utf8 = UTF; /* Is the source string assumed |
2497 | to be UTF8? But, this can | |
2498 | show as true when the source | |
2499 | isn't utf8, as for example | |
2500 | when it is entirely composed | |
2501 | of hex constants */ | |
2502 | ||
2503 | /* Note on sizing: The scanned constant is placed into sv, which is | |
2504 | * initialized by newSV() assuming one byte of output for every byte of | |
2505 | * input. This routine expects newSV() to allocate an extra byte for a | |
2506 | * trailing NUL, which this routine will append if it gets to the end of | |
2507 | * the input. There may be more bytes of input than output (eg., \N{LATIN | |
2508 | * CAPITAL LETTER A}), or more output than input if the constant ends up | |
2509 | * recoded to utf8, but each time a construct is found that might increase | |
2510 | * the needed size, SvGROW() is called. Its size parameter each time is | |
2511 | * based on the best guess estimate at the time, namely the length used so | |
2512 | * far, plus the length the current construct will occupy, plus room for | |
2513 | * the trailing NUL, plus one byte for every input byte still unscanned */ | |
2514 | ||
012bcf8d | 2515 | UV uv; |
4c3a8340 TS |
2516 | #ifdef EBCDIC |
2517 | UV literal_endpoint = 0; | |
e294cc5d | 2518 | bool native_range = TRUE; /* turned to FALSE if the first endpoint is Unicode. */ |
4c3a8340 | 2519 | #endif |
012bcf8d | 2520 | |
7918f24d NC |
2521 | PERL_ARGS_ASSERT_SCAN_CONST; |
2522 | ||
2b9d42f0 NIS |
2523 | if (PL_lex_inwhat == OP_TRANS && PL_sublex_info.sub_op) { |
2524 | /* If we are doing a trans and we know we want UTF8 set expectation */ | |
2525 | has_utf8 = PL_sublex_info.sub_op->op_private & (OPpTRANS_FROM_UTF|OPpTRANS_TO_UTF); | |
2526 | this_utf8 = PL_sublex_info.sub_op->op_private & (PL_lex_repl ? OPpTRANS_FROM_UTF : OPpTRANS_TO_UTF); | |
2527 | } | |
2528 | ||
2529 | ||
79072805 | 2530 | while (s < send || dorange) { |
02aa26ce | 2531 | /* get transliterations out of the way (they're most literal) */ |
3280af22 | 2532 | if (PL_lex_inwhat == OP_TRANS) { |
02aa26ce | 2533 | /* expand a range A-Z to the full set of characters. AIE! */ |
79072805 | 2534 | if (dorange) { |
1ba5c669 JH |
2535 | I32 i; /* current expanded character */ |
2536 | I32 min; /* first character in range */ | |
2537 | I32 max; /* last character in range */ | |
02aa26ce | 2538 | |
e294cc5d JH |
2539 | #ifdef EBCDIC |
2540 | UV uvmax = 0; | |
2541 | #endif | |
2542 | ||
2543 | if (has_utf8 | |
2544 | #ifdef EBCDIC | |
2545 | && !native_range | |
2546 | #endif | |
2547 | ) { | |
9d4ba2ae | 2548 | char * const c = (char*)utf8_hop((U8*)d, -1); |
8973db79 JH |
2549 | char *e = d++; |
2550 | while (e-- > c) | |
2551 | *(e + 1) = *e; | |
25716404 | 2552 | *c = (char)UTF_TO_NATIVE(0xff); |
8973db79 JH |
2553 | /* mark the range as done, and continue */ |
2554 | dorange = FALSE; | |
2555 | didrange = TRUE; | |
2556 | continue; | |
2557 | } | |
2b9d42f0 | 2558 | |
95a20fc0 | 2559 | i = d - SvPVX_const(sv); /* remember current offset */ |
e294cc5d JH |
2560 | #ifdef EBCDIC |
2561 | SvGROW(sv, | |
2562 | SvLEN(sv) + (has_utf8 ? | |
2563 | (512 - UTF_CONTINUATION_MARK + | |
2564 | UNISKIP(0x100)) | |
2565 | : 256)); | |
2566 | /* How many two-byte within 0..255: 128 in UTF-8, | |
2567 | * 96 in UTF-8-mod. */ | |
2568 | #else | |
9cbb5ea2 | 2569 | SvGROW(sv, SvLEN(sv) + 256); /* never more than 256 chars in a range */ |
e294cc5d | 2570 | #endif |
9cbb5ea2 | 2571 | d = SvPVX(sv) + i; /* refresh d after realloc */ |
e294cc5d JH |
2572 | #ifdef EBCDIC |
2573 | if (has_utf8) { | |
2574 | int j; | |
2575 | for (j = 0; j <= 1; j++) { | |
2576 | char * const c = (char*)utf8_hop((U8*)d, -1); | |
2577 | const UV uv = utf8n_to_uvchr((U8*)c, d - c, NULL, 0); | |
2578 | if (j) | |
2579 | min = (U8)uv; | |
2580 | else if (uv < 256) | |
2581 | max = (U8)uv; | |
2582 | else { | |
2583 | max = (U8)0xff; /* only to \xff */ | |
2584 | uvmax = uv; /* \x{100} to uvmax */ | |
2585 | } | |
2586 | d = c; /* eat endpoint chars */ | |
2587 | } | |
2588 | } | |
2589 | else { | |
2590 | #endif | |
2591 | d -= 2; /* eat the first char and the - */ | |
2592 | min = (U8)*d; /* first char in range */ | |
2593 | max = (U8)d[1]; /* last char in range */ | |
2594 | #ifdef EBCDIC | |
2595 | } | |
2596 | #endif | |
8ada0baa | 2597 | |
c2e66d9e | 2598 | if (min > max) { |
01ec43d0 | 2599 | Perl_croak(aTHX_ |
d1573ac7 | 2600 | "Invalid range \"%c-%c\" in transliteration operator", |
1ba5c669 | 2601 | (char)min, (char)max); |
c2e66d9e GS |
2602 | } |
2603 | ||
c7f1f016 | 2604 | #ifdef EBCDIC |
4c3a8340 TS |
2605 | if (literal_endpoint == 2 && |
2606 | ((isLOWER(min) && isLOWER(max)) || | |
2607 | (isUPPER(min) && isUPPER(max)))) { | |
8ada0baa JH |
2608 | if (isLOWER(min)) { |
2609 | for (i = min; i <= max; i++) | |
2610 | if (isLOWER(i)) | |
db42d148 | 2611 | *d++ = NATIVE_TO_NEED(has_utf8,i); |
8ada0baa JH |
2612 | } else { |
2613 | for (i = min; i <= max; i++) | |
2614 | if (isUPPER(i)) | |
db42d148 | 2615 | *d++ = NATIVE_TO_NEED(has_utf8,i); |
8ada0baa JH |
2616 | } |
2617 | } | |
2618 | else | |
2619 | #endif | |
2620 | for (i = min; i <= max; i++) | |
e294cc5d JH |
2621 | #ifdef EBCDIC |
2622 | if (has_utf8) { | |
2623 | const U8 ch = (U8)NATIVE_TO_UTF(i); | |
2624 | if (UNI_IS_INVARIANT(ch)) | |
2625 | *d++ = (U8)i; | |
2626 | else { | |
2627 | *d++ = (U8)UTF8_EIGHT_BIT_HI(ch); | |
2628 | *d++ = (U8)UTF8_EIGHT_BIT_LO(ch); | |
2629 | } | |
2630 | } | |
2631 | else | |
2632 | #endif | |
2633 | *d++ = (char)i; | |
2634 | ||
2635 | #ifdef EBCDIC | |
2636 | if (uvmax) { | |
2637 | d = (char*)uvchr_to_utf8((U8*)d, 0x100); | |
2638 | if (uvmax > 0x101) | |
2639 | *d++ = (char)UTF_TO_NATIVE(0xff); | |
2640 | if (uvmax > 0x100) | |
2641 | d = (char*)uvchr_to_utf8((U8*)d, uvmax); | |
2642 | } | |
2643 | #endif | |
02aa26ce NT |
2644 | |
2645 | /* mark the range as done, and continue */ | |
79072805 | 2646 | dorange = FALSE; |
01ec43d0 | 2647 | didrange = TRUE; |
4c3a8340 TS |
2648 | #ifdef EBCDIC |
2649 | literal_endpoint = 0; | |
2650 | #endif | |
79072805 | 2651 | continue; |
4e553d73 | 2652 | } |
02aa26ce NT |
2653 | |
2654 | /* range begins (ignore - as first or last char) */ | |
79072805 | 2655 | else if (*s == '-' && s+1 < send && s != start) { |
4e553d73 | 2656 | if (didrange) { |
1fafa243 | 2657 | Perl_croak(aTHX_ "Ambiguous range in transliteration operator"); |
01ec43d0 | 2658 | } |
e294cc5d JH |
2659 | if (has_utf8 |
2660 | #ifdef EBCDIC | |
2661 | && !native_range | |
2662 | #endif | |
2663 | ) { | |
25716404 | 2664 | *d++ = (char)UTF_TO_NATIVE(0xff); /* use illegal utf8 byte--see pmtrans */ |
a0ed51b3 LW |
2665 | s++; |
2666 | continue; | |
2667 | } | |
79072805 LW |
2668 | dorange = TRUE; |
2669 | s++; | |
01ec43d0 GS |
2670 | } |
2671 | else { | |
2672 | didrange = FALSE; | |
4c3a8340 TS |
2673 | #ifdef EBCDIC |
2674 | literal_endpoint = 0; | |
e294cc5d | 2675 | native_range = TRUE; |
4c3a8340 | 2676 | #endif |
01ec43d0 | 2677 | } |
79072805 | 2678 | } |
02aa26ce NT |
2679 | |
2680 | /* if we get here, we're not doing a transliteration */ | |
2681 | ||
0f5d15d6 IZ |
2682 | /* skip for regexp comments /(?#comment)/ and code /(?{code})/, |
2683 | except for the last char, which will be done separately. */ | |
3280af22 | 2684 | else if (*s == '(' && PL_lex_inpat && s[1] == '?') { |
cc6b7395 | 2685 | if (s[2] == '#') { |
e994fd66 | 2686 | while (s+1 < send && *s != ')') |
db42d148 | 2687 | *d++ = NATIVE_TO_NEED(has_utf8,*s++); |
155aba94 GS |
2688 | } |
2689 | else if (s[2] == '{' /* This should match regcomp.c */ | |
67edc0c9 | 2690 | || (s[2] == '?' && s[3] == '{')) |
155aba94 | 2691 | { |
cc6b7395 | 2692 | I32 count = 1; |
0f5d15d6 | 2693 | char *regparse = s + (s[2] == '{' ? 3 : 4); |
cc6b7395 IZ |
2694 | char c; |
2695 | ||
d9f97599 GS |
2696 | while (count && (c = *regparse)) { |
2697 | if (c == '\\' && regparse[1]) | |
2698 | regparse++; | |
4e553d73 | 2699 | else if (c == '{') |
cc6b7395 | 2700 | count++; |
4e553d73 | 2701 | else if (c == '}') |
cc6b7395 | 2702 | count--; |
d9f97599 | 2703 | regparse++; |
cc6b7395 | 2704 | } |
e994fd66 | 2705 | if (*regparse != ')') |
5bdf89e7 | 2706 | regparse--; /* Leave one char for continuation. */ |
0f5d15d6 | 2707 | while (s < regparse) |
db42d148 | 2708 | *d++ = NATIVE_TO_NEED(has_utf8,*s++); |
cc6b7395 | 2709 | } |
748a9306 | 2710 | } |
02aa26ce NT |
2711 | |
2712 | /* likewise skip #-initiated comments in //x patterns */ | |
3280af22 NIS |
2713 | else if (*s == '#' && PL_lex_inpat && |
2714 | ((PMOP*)PL_lex_inpat)->op_pmflags & PMf_EXTENDED) { | |
748a9306 | 2715 | while (s+1 < send && *s != '\n') |
db42d148 | 2716 | *d++ = NATIVE_TO_NEED(has_utf8,*s++); |
748a9306 | 2717 | } |
02aa26ce | 2718 | |
5d1d4326 | 2719 | /* check for embedded arrays |
da6eedaa | 2720 | (@foo, @::foo, @'foo, @{foo}, @$foo, @+, @-) |
5d1d4326 | 2721 | */ |
1749ea0d TS |
2722 | else if (*s == '@' && s[1]) { |
2723 | if (isALNUM_lazy_if(s+1,UTF)) | |
2724 | break; | |
2725 | if (strchr(":'{$", s[1])) | |
2726 | break; | |
2727 | if (!PL_lex_inpat && (s[1] == '+' || s[1] == '-')) | |
2728 | break; /* in regexp, neither @+ nor @- are interpolated */ | |
2729 | } | |
02aa26ce NT |
2730 | |
2731 | /* check for embedded scalars. only stop if we're sure it's a | |
2732 | variable. | |
2733 | */ | |
79072805 | 2734 | else if (*s == '$') { |
3280af22 | 2735 | if (!PL_lex_inpat) /* not a regexp, so $ must be var */ |
79072805 | 2736 | break; |
77772344 | 2737 | if (s + 1 < send && !strchr("()| \r\n\t", s[1])) { |
a2a5de95 NC |
2738 | if (s[1] == '\\') { |
2739 | Perl_ck_warner(aTHX_ packWARN(WARN_AMBIGUOUS), | |
2740 | "Possible unintended interpolation of $\\ in regex"); | |
77772344 | 2741 | } |
79072805 | 2742 | break; /* in regexp, $ might be tail anchor */ |
77772344 | 2743 | } |
79072805 | 2744 | } |
02aa26ce | 2745 | |
2b9d42f0 NIS |
2746 | /* End of else if chain - OP_TRANS rejoin rest */ |
2747 | ||
02aa26ce | 2748 | /* backslashes */ |
79072805 LW |
2749 | if (*s == '\\' && s+1 < send) { |
2750 | s++; | |
02aa26ce | 2751 | |
02aa26ce | 2752 | /* deprecate \1 in strings and substitution replacements */ |
3280af22 | 2753 | if (PL_lex_inwhat == OP_SUBST && !PL_lex_inpat && |
a0d0e21e | 2754 | isDIGIT(*s) && *s != '0' && !isDIGIT(s[1])) |
79072805 | 2755 | { |
a2a5de95 | 2756 | Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX), "\\%c better written as $%c", *s, *s); |
79072805 LW |
2757 | *--s = '$'; |
2758 | break; | |
2759 | } | |
02aa26ce NT |
2760 | |
2761 | /* string-change backslash escapes */ | |
3280af22 | 2762 | if (PL_lex_inwhat != OP_TRANS && *s && strchr("lLuUEQ", *s)) { |
79072805 LW |
2763 | --s; |
2764 | break; | |
2765 | } | |
cc74c5bd TS |
2766 | /* skip any other backslash escapes in a pattern */ |
2767 | else if (PL_lex_inpat) { | |
2768 | *d++ = NATIVE_TO_NEED(has_utf8,'\\'); | |
2769 | goto default_action; | |
2770 | } | |
02aa26ce NT |
2771 | |
2772 | /* if we get here, it's either a quoted -, or a digit */ | |
79072805 | 2773 | switch (*s) { |
02aa26ce NT |
2774 | |
2775 | /* quoted - in transliterations */ | |
79072805 | 2776 | case '-': |
3280af22 | 2777 | if (PL_lex_inwhat == OP_TRANS) { |
79072805 LW |
2778 | *d++ = *s++; |
2779 | continue; | |
2780 | } | |
2781 | /* FALL THROUGH */ | |
2782 | default: | |
11b8faa4 | 2783 | { |
a2a5de95 NC |
2784 | if ((isALPHA(*s) || isDIGIT(*s))) |
2785 | Perl_ck_warner(aTHX_ packWARN(WARN_MISC), | |
2786 | "Unrecognized escape \\%c passed through", | |
2787 | *s); | |
11b8faa4 | 2788 | /* default action is to copy the quoted character */ |
f9a63242 | 2789 | goto default_action; |
11b8faa4 | 2790 | } |
02aa26ce | 2791 | |
77a135fe | 2792 | /* eg. \132 indicates the octal constant 0x132 */ |
79072805 LW |
2793 | case '0': case '1': case '2': case '3': |
2794 | case '4': case '5': case '6': case '7': | |
ba210ebe | 2795 | { |
53305cf1 NC |
2796 | I32 flags = 0; |
2797 | STRLEN len = 3; | |
77a135fe | 2798 | uv = NATIVE_TO_UNI(grok_oct(s, &len, &flags, NULL)); |
ba210ebe JH |
2799 | s += len; |
2800 | } | |
012bcf8d | 2801 | goto NUM_ESCAPE_INSERT; |
02aa26ce | 2802 | |
77a135fe | 2803 | /* eg. \x24 indicates the hex constant 0x24 */ |
79072805 | 2804 | case 'x': |
a0ed51b3 LW |
2805 | ++s; |
2806 | if (*s == '{') { | |
9d4ba2ae | 2807 | char* const e = strchr(s, '}'); |
a4c04bdc NC |
2808 | I32 flags = PERL_SCAN_ALLOW_UNDERSCORES | |
2809 | PERL_SCAN_DISALLOW_PREFIX; | |
53305cf1 | 2810 | STRLEN len; |
355860ce | 2811 | |
53305cf1 | 2812 | ++s; |
adaeee49 | 2813 | if (!e) { |
a0ed51b3 | 2814 | yyerror("Missing right brace on \\x{}"); |
355860ce | 2815 | continue; |
ba210ebe | 2816 | } |
53305cf1 | 2817 | len = e - s; |
77a135fe | 2818 | uv = NATIVE_TO_UNI(grok_hex(s, &len, &flags, NULL)); |
ba210ebe | 2819 | s = e + 1; |
a0ed51b3 LW |
2820 | } |
2821 | else { | |
ba210ebe | 2822 | { |
53305cf1 | 2823 | STRLEN len = 2; |
a4c04bdc | 2824 | I32 flags = PERL_SCAN_DISALLOW_PREFIX; |
77a135fe | 2825 | uv = NATIVE_TO_UNI(grok_hex(s, &len, &flags, NULL)); |
ba210ebe JH |
2826 | s += len; |
2827 | } | |
012bcf8d GS |
2828 | } |
2829 | ||
2830 | NUM_ESCAPE_INSERT: | |
77a135fe KW |
2831 | /* Insert oct, hex, or \N{U+...} escaped character. There will |
2832 | * always be enough room in sv since such escapes will be | |
2833 | * longer than any UTF-8 sequence they can end up as, except if | |
2834 | * they force us to recode the rest of the string into utf8 */ | |
ba7cea30 | 2835 | |
77a135fe KW |
2836 | /* Here uv is the ordinal of the next character being added in |
2837 | * unicode (converted from native). (It has to be done before | |
2838 | * here because \N is interpreted as unicode, and oct and hex | |
2839 | * as native.) */ | |
2840 | if (!UNI_IS_INVARIANT(uv)) { | |
9aa983d2 | 2841 | if (!has_utf8 && uv > 255) { |
77a135fe KW |
2842 | /* Might need to recode whatever we have accumulated so |
2843 | * far if it contains any chars variant in utf8 or | |
2844 | * utf-ebcdic. */ | |
2845 | ||
2846 | SvCUR_set(sv, d - SvPVX_const(sv)); | |
2847 | SvPOK_on(sv); | |
2848 | *d = '\0'; | |
77a135fe | 2849 | /* See Note on sizing above. */ |
7bf79863 KW |
2850 | sv_utf8_upgrade_flags_grow(sv, |
2851 | SV_GMAGIC|SV_FORCE_UTF8_UPGRADE, | |
2852 | UNISKIP(uv) + (STRLEN)(send - s) + 1); | |
77a135fe KW |
2853 | d = SvPVX(sv) + SvCUR(sv); |
2854 | has_utf8 = TRUE; | |
012bcf8d GS |
2855 | } |
2856 | ||
77a135fe KW |
2857 | if (has_utf8) { |
2858 | d = (char*)uvuni_to_utf8((U8*)d, uv); | |
f9a63242 JH |
2859 | if (PL_lex_inwhat == OP_TRANS && |
2860 | PL_sublex_info.sub_op) { | |
2861 | PL_sublex_info.sub_op->op_private |= | |
2862 | (PL_lex_repl ? OPpTRANS_FROM_UTF | |
2863 | : OPpTRANS_TO_UTF); | |
f9a63242 | 2864 | } |
e294cc5d JH |
2865 | #ifdef EBCDIC |
2866 | if (uv > 255 && !dorange) | |
2867 | native_range = FALSE; | |
2868 | #endif | |
012bcf8d | 2869 | } |
a0ed51b3 | 2870 | else { |
012bcf8d | 2871 | *d++ = (char)uv; |
a0ed51b3 | 2872 | } |
012bcf8d GS |
2873 | } |
2874 | else { | |
c4d5f83a | 2875 | *d++ = (char) uv; |
a0ed51b3 | 2876 | } |
79072805 | 2877 | continue; |
02aa26ce | 2878 | |
77a135fe KW |
2879 | /* \N{LATIN SMALL LETTER A} is a named character, and so is |
2880 | * \N{U+0041} */ | |
4a2d328f | 2881 | case 'N': |
55eda711 | 2882 | ++s; |
423cee85 JH |
2883 | if (*s == '{') { |
2884 | char* e = strchr(s, '}'); | |
155aba94 | 2885 | SV *res; |
423cee85 | 2886 | STRLEN len; |
cfd0369c | 2887 | const char *str; |
4e553d73 | 2888 | |
423cee85 | 2889 | if (!e) { |
5777a3f7 | 2890 | yyerror("Missing right brace on \\N{}"); |
423cee85 JH |
2891 | e = s - 1; |
2892 | goto cont_scan; | |
2893 | } | |
dbc0d4f2 | 2894 | if (e > s + 2 && s[1] == 'U' && s[2] == '+') { |
77a135fe KW |
2895 | /* \N{U+...} The ... is a unicode value even on EBCDIC |
2896 | * machines */ | |
dbc0d4f2 JH |
2897 | I32 flags = PERL_SCAN_ALLOW_UNDERSCORES | |
2898 | PERL_SCAN_DISALLOW_PREFIX; | |
2899 | s += 3; | |
2900 | len = e - s; | |
2901 | uv = grok_hex(s, &len, &flags, NULL); | |
b57a0404 JH |
2902 | if ( e > s && len != (STRLEN)(e - s) ) { |
2903 | uv = 0xFFFD; | |
fc8cd66c | 2904 | } |
dbc0d4f2 JH |
2905 | s = e + 1; |
2906 | goto NUM_ESCAPE_INSERT; | |
2907 | } | |
55eda711 | 2908 | res = newSVpvn(s + 1, e - s - 1); |
bd61b366 | 2909 | res = new_constant( NULL, 0, "charnames", |
eb0d8d16 | 2910 | res, NULL, s - 2, e - s + 3 ); |
f9a63242 JH |
2911 | if (has_utf8) |
2912 | sv_utf8_upgrade(res); | |
cfd0369c | 2913 | str = SvPV_const(res,len); |
1c47067b JH |
2914 | #ifdef EBCDIC_NEVER_MIND |
2915 | /* charnames uses pack U and that has been | |
2916 | * recently changed to do the below uni->native | |
2917 | * mapping, so this would be redundant (and wrong, | |
2918 | * the code point would be doubly converted). | |
2919 | * But leave this in just in case the pack U change | |
2920 | * gets revoked, but the semantics is still | |
2921 | * desireable for charnames. --jhi */ | |
cddc7ef4 | 2922 | { |
cfd0369c | 2923 | UV uv = utf8_to_uvchr((const U8*)str, 0); |
cddc7ef4 JH |
2924 | |
2925 | if (uv < 0x100) { | |
89ebb4a3 | 2926 | U8 tmpbuf[UTF8_MAXBYTES+1], *d; |
cddc7ef4 JH |
2927 | |
2928 | d = uvchr_to_utf8(tmpbuf, UNI_TO_NATIVE(uv)); | |
2929 | sv_setpvn(res, (char *)tmpbuf, d - tmpbuf); | |
cfd0369c | 2930 | str = SvPV_const(res, len); |
cddc7ef4 JH |
2931 | } |
2932 | } | |
2933 | #endif | |
77a135fe KW |
2934 | /* If destination is not in utf8 but this new character is, |
2935 | * recode the dest to utf8 */ | |
89491803 | 2936 | if (!has_utf8 && SvUTF8(res)) { |
77a135fe | 2937 | SvCUR_set(sv, d - SvPVX_const(sv)); |
f08d6ad9 | 2938 | SvPOK_on(sv); |
e4f3eed8 | 2939 | *d = '\0'; |
77a135fe | 2940 | /* See Note on sizing above. */ |
7bf79863 KW |
2941 | sv_utf8_upgrade_flags_grow(sv, |
2942 | SV_GMAGIC|SV_FORCE_UTF8_UPGRADE, | |
2943 | len + (STRLEN)(send - s) + 1); | |
f08d6ad9 | 2944 | d = SvPVX(sv) + SvCUR(sv); |
89491803 | 2945 | has_utf8 = TRUE; |
77a135fe | 2946 | } else if (len > (STRLEN)(e - s + 4)) { /* I _guess_ 4 is \N{} --jhi */ |
423cee85 | 2947 | |
77a135fe KW |
2948 | /* See Note on sizing above. (NOTE: SvCUR() is not set |
2949 | * correctly here). */ | |
2950 | const STRLEN off = d - SvPVX_const(sv); | |
2951 | d = SvGROW(sv, off + len + (STRLEN)(send - s) + 1) + off; | |
423cee85 | 2952 | } |
e294cc5d JH |
2953 | #ifdef EBCDIC |
2954 | if (!dorange) | |
2955 | native_range = FALSE; /* \N{} is guessed to be Unicode */ | |
2956 | #endif | |
423cee85 JH |
2957 | Copy(str, d, len, char); |
2958 | d += len; | |
2959 | SvREFCNT_dec(res); | |
2960 | cont_scan: | |
2961 | s = e + 1; | |
2962 | } | |
2963 | else | |
5777a3f7 | 2964 | yyerror("Missing braces on \\N{}"); |
423cee85 JH |
2965 | continue; |
2966 | ||
02aa26ce | 2967 | /* \c is a control character */ |
79072805 LW |
2968 | case 'c': |
2969 | s++; | |
961ce445 | 2970 | if (s < send) { |
ba210ebe | 2971 | U8 c = *s++; |
c7f1f016 NIS |
2972 | #ifdef EBCDIC |
2973 | if (isLOWER(c)) | |
2974 | c = toUPPER(c); | |
2975 | #endif | |
db42d148 | 2976 | *d++ = NATIVE_TO_NEED(has_utf8,toCTRL(c)); |
ba210ebe | 2977 | } |
961ce445 RGS |
2978 | else { |
2979 | yyerror("Missing control char name in \\c"); | |
2980 | } | |
79072805 | 2981 | continue; |
02aa26ce NT |
2982 | |
2983 | /* printf-style backslashes, formfeeds, newlines, etc */ | |
79072805 | 2984 | case 'b': |
db42d148 | 2985 | *d++ = NATIVE_TO_NEED(has_utf8,'\b'); |
79072805 LW |
2986 | break; |
2987 | case 'n': | |
db42d148 | 2988 | *d++ = NATIVE_TO_NEED(has_utf8,'\n'); |
79072805 LW |
2989 | break; |
2990 | case 'r': | |
db42d148 | 2991 | *d++ = NATIVE_TO_NEED(has_utf8,'\r'); |
79072805 LW |
2992 | break; |
2993 | case 'f': | |
db42d148 | 2994 | *d++ = NATIVE_TO_NEED(has_utf8,'\f'); |
79072805 LW |
2995 | break; |
2996 | case 't': | |
db42d148 | 2997 | *d++ = NATIVE_TO_NEED(has_utf8,'\t'); |
79072805 | 2998 | break; |
34a3fe2a | 2999 | case 'e': |
db42d148 | 3000 | *d++ = ASCII_TO_NEED(has_utf8,'\033'); |
34a3fe2a PP |
3001 | break; |
3002 | case 'a': | |
db42d148 | 3003 | *d++ = ASCII_TO_NEED(has_utf8,'\007'); |
79072805 | 3004 | break; |
02aa26ce NT |
3005 | } /* end switch */ |
3006 | ||
79072805 LW |
3007 | s++; |
3008 | continue; | |
02aa26ce | 3009 | } /* end if (backslash) */ |
4c3a8340 TS |
3010 | #ifdef EBCDIC |
3011 | else | |
3012 | literal_endpoint++; | |
3013 | #endif | |
02aa26ce | 3014 | |
f9a63242 | 3015 | default_action: |
77a135fe KW |
3016 | /* If we started with encoded form, or already know we want it, |
3017 | then encode the next character */ | |
3018 | if (! NATIVE_IS_INVARIANT((U8)(*s)) && (this_utf8 || has_utf8)) { | |
2b9d42f0 | 3019 | STRLEN len = 1; |
77a135fe KW |
3020 | |
3021 | ||
3022 | /* One might think that it is wasted effort in the case of the | |
3023 | * source being utf8 (this_utf8 == TRUE) to take the next character | |
3024 | * in the source, convert it to an unsigned value, and then convert | |
3025 | * it back again. But the source has not been validated here. The | |
3026 | * routine that does the conversion checks for errors like | |
3027 | * malformed utf8 */ | |
3028 | ||
5f66b61c AL |
3029 | const UV nextuv = (this_utf8) ? utf8n_to_uvchr((U8*)s, send - s, &len, 0) : (UV) ((U8) *s); |
3030 | const STRLEN need = UNISKIP(NATIVE_TO_UNI(nextuv)); | |
77a135fe KW |
3031 | if (!has_utf8) { |
3032 | SvCUR_set(sv, d - SvPVX_const(sv)); | |
3033 | SvPOK_on(sv); | |
3034 | *d = '\0'; | |
77a135fe | 3035 | /* See Note on sizing above. */ |
7bf79863 KW |
3036 | sv_utf8_upgrade_flags_grow(sv, |
3037 | SV_GMAGIC|SV_FORCE_UTF8_UPGRADE, | |
3038 | need + (STRLEN)(send - s) + 1); | |
77a135fe KW |
3039 | d = SvPVX(sv) + SvCUR(sv); |
3040 | has_utf8 = TRUE; | |
3041 | } else if (need > len) { | |
3042 | /* encoded value larger than old, may need extra space (NOTE: | |
3043 | * SvCUR() is not set correctly here). See Note on sizing | |
3044 | * above. */ | |
9d4ba2ae | 3045 | const STRLEN off = d - SvPVX_const(sv); |
77a135fe | 3046 | d = SvGROW(sv, off + need + (STRLEN)(send - s) + 1) + off; |
2b9d42f0 | 3047 | } |
77a135fe KW |
3048 | s += len; |
3049 | ||
5f66b61c | 3050 | d = (char*)uvchr_to_utf8((U8*)d, nextuv); |
e294cc5d JH |
3051 | #ifdef EBCDIC |
3052 | if (uv > 255 && !dorange) | |
3053 | native_range = FALSE; | |
3054 | #endif | |
2b9d42f0 NIS |
3055 | } |
3056 | else { | |
3057 | *d++ = NATIVE_TO_NEED(has_utf8,*s++); | |
3058 | } | |
02aa26ce NT |
3059 | } /* while loop to process each character */ |
3060 | ||
3061 | /* terminate the string and set up the sv */ | |
79072805 | 3062 | *d = '\0'; |
95a20fc0 | 3063 | SvCUR_set(sv, d - SvPVX_const(sv)); |
2b9d42f0 | 3064 | if (SvCUR(sv) >= SvLEN(sv)) |
d0063567 | 3065 | Perl_croak(aTHX_ "panic: constant overflowed allocated space"); |
2b9d42f0 | 3066 | |
79072805 | 3067 | SvPOK_on(sv); |
9f4817db | 3068 | if (PL_encoding && !has_utf8) { |
d0063567 DK |
3069 | sv_recode_to_utf8(sv, PL_encoding); |
3070 | if (SvUTF8(sv)) | |
3071 | has_utf8 = TRUE; | |
9f4817db | 3072 | } |
2b9d42f0 | 3073 | if (has_utf8) { |
7e2040f0 | 3074 | SvUTF8_on(sv); |
2b9d42f0 | 3075 | if (PL_lex_inwhat == OP_TRANS && PL_sublex_info.sub_op) { |
d0063567 | 3076 | PL_sublex_info.sub_op->op_private |= |
2b9d42f0 NIS |
3077 | (PL_lex_repl ? OPpTRANS_FROM_UTF : OPpTRANS_TO_UTF); |
3078 | } | |
3079 | } | |
79072805 | 3080 | |
02aa26ce | 3081 | /* shrink the sv if we allocated more than we used */ |
79072805 | 3082 | if (SvCUR(sv) + 5 < SvLEN(sv)) { |
1da4ca5f | 3083 | SvPV_shrink_to_cur(sv); |
79072805 | 3084 | } |
02aa26ce | 3085 | |
6154021b | 3086 | /* return the substring (via pl_yylval) only if we parsed anything */ |
3280af22 | 3087 | if (s > PL_bufptr) { |
eb0d8d16 NC |
3088 | if ( PL_hints & ( PL_lex_inpat ? HINT_NEW_RE : HINT_NEW_STRING ) ) { |
3089 | const char *const key = PL_lex_inpat ? "qr" : "q"; | |
3090 | const STRLEN keylen = PL_lex_inpat ? 2 : 1; | |
3091 | const char *type; | |
3092 | STRLEN typelen; | |
3093 | ||
3094 | if (PL_lex_inwhat == OP_TRANS) { | |
3095 | type = "tr"; | |
3096 | typelen = 2; | |
3097 | } else if (PL_lex_inwhat == OP_SUBST && !PL_lex_inpat) { | |
3098 | type = "s"; | |
3099 | typelen = 1; | |
3100 | } else { | |
3101 | type = "qq"; | |
3102 | typelen = 2; | |
3103 | } | |
3104 | ||
3105 | sv = S_new_constant(aTHX_ start, s - start, key, keylen, sv, NULL, | |
3106 | type, typelen); | |
3107 | } | |
6154021b | 3108 | pl_yylval.opval = (OP*)newSVOP(OP_CONST, 0, sv); |
b3ac6de7 | 3109 | } else |
8990e307 | 3110 | SvREFCNT_dec(sv); |
79072805 LW |
3111 | return s; |
3112 | } | |
3113 | ||
ffb4593c NT |
3114 | /* S_intuit_more |
3115 | * Returns TRUE if there's more to the expression (e.g., a subscript), | |
3116 | * FALSE otherwise. | |
ffb4593c NT |
3117 | * |
3118 | * It deals with "$foo[3]" and /$foo[3]/ and /$foo[0123456789$]+/ | |
3119 | * | |
3120 | * ->[ and ->{ return TRUE | |
3121 | * { and [ outside a pattern are always subscripts, so return TRUE | |
3122 | * if we're outside a pattern and it's not { or [, then return FALSE | |
3123 | * if we're in a pattern and the first char is a { | |
3124 | * {4,5} (any digits around the comma) returns FALSE | |
3125 | * if we're in a pattern and the first char is a [ | |
3126 | * [] returns FALSE | |
3127 | * [SOMETHING] has a funky algorithm to decide whether it's a | |
3128 | * character class or not. It has to deal with things like | |
3129 | * /$foo[-3]/ and /$foo[$bar]/ as well as /$foo[$\d]+/ | |
3130 | * anything else returns TRUE | |
3131 | */ | |
3132 | ||
9cbb5ea2 GS |
3133 | /* This is the one truly awful dwimmer necessary to conflate C and sed. */ |
3134 | ||
76e3520e | 3135 | STATIC int |
cea2e8a9 | 3136 | S_intuit_more(pTHX_ register char *s) |
79072805 | 3137 | { |
97aff369 | 3138 | dVAR; |
7918f24d NC |
3139 | |
3140 | PERL_ARGS_ASSERT_INTUIT_MORE; | |
3141 | ||
3280af22 | 3142 | if (PL_lex_brackets) |
79072805 LW |
3143 | return TRUE; |
3144 | if (*s == '-' && s[1] == '>' && (s[2] == '[' || s[2] == '{')) | |
3145 | return TRUE; | |
3146 | if (*s != '{' && *s != '[') | |
3147 | return FALSE; | |
3280af22 | 3148 | if (!PL_lex_inpat) |
79072805 LW |
3149 | return TRUE; |
3150 | ||
3151 | /* In a pattern, so maybe we have {n,m}. */ | |
3152 | if (*s == '{') { | |
3153 | s++; | |
3154 | if (!isDIGIT(*s)) | |
3155 | return TRUE; | |
3156 | while (isDIGIT(*s)) | |
3157 | s++; | |
3158 | if (*s == ',') | |
3159 | s++; | |
3160 | while (isDIGIT(*s)) | |
3161 | s++; | |
3162 | if (*s == '}') | |
3163 | return FALSE; | |
3164 | return TRUE; | |
3165 | ||
3166 | } | |
3167 | ||
3168 | /* On the other hand, maybe we have a character class */ | |
3169 | ||
3170 | s++; | |
3171 | if (*s == ']' || *s == '^') | |
3172 | return FALSE; | |
3173 | else { | |
ffb4593c | 3174 | /* this is terrifying, and it works */ |
79072805 LW |
3175 | int weight = 2; /* let's weigh the evidence */ |
3176 | char seen[256]; | |
f27ffc4a | 3177 | unsigned char un_char = 255, last_un_char; |
9d4ba2ae | 3178 | const char * const send = strchr(s,']'); |
3280af22 | 3179 | char tmpbuf[sizeof PL_tokenbuf * 4]; |
79072805 LW |
3180 | |
3181 | if (!send) /* has to be an expression */ | |
3182 | return TRUE; | |
3183 | ||
3184 | Zero(seen,256,char); | |
3185 | if (*s == '$') | |
3186 | weight -= 3; | |
3187 | else if (isDIGIT(*s)) { | |
3188 | if (s[1] != ']') { | |
3189 | if (isDIGIT(s[1]) && s[2] == ']') | |
3190 | weight -= 10; | |
3191 | } | |
3192 | else | |
3193 | weight -= 100; | |
3194 | } | |
3195 | for (; s < send; s++) { | |
3196 | last_un_char = un_char; | |
3197 | un_char = (unsigned char)*s; | |
3198 | switch (*s) { | |
3199 | case '@': | |
3200 | case '&': | |
3201 | case '$': | |
3202 | weight -= seen[un_char] * 10; | |
7e2040f0 | 3203 | if (isALNUM_lazy_if(s+1,UTF)) { |
90e5519e | 3204 | int len; |
8903cb82 | 3205 | scan_ident(s, send, tmpbuf, sizeof tmpbuf, FALSE); |
90e5519e NC |
3206 | len = (int)strlen(tmpbuf); |
3207 | if (len > 1 && gv_fetchpvn_flags(tmpbuf, len, 0, SVt_PV)) | |
79072805 LW |
3208 | weight -= 100; |
3209 | else | |
3210 | weight -= 10; | |
3211 | } | |
3212 | else if (*s == '$' && s[1] && | |
93a17b20 LW |
3213 | strchr("[#!%*<>()-=",s[1])) { |
3214 | if (/*{*/ strchr("])} =",s[2])) | |
79072805 LW |
3215 | weight -= 10; |
3216 | else | |
3217 | weight -= 1; | |
3218 | } | |
3219 | break; | |
3220 | case '\\': | |
3221 | un_char = 254; | |
3222 | if (s[1]) { | |
93a17b20 | 3223 | if (strchr("wds]",s[1])) |
79072805 | 3224 | weight += 100; |
10edeb5d | 3225 | else if (seen[(U8)'\''] || seen[(U8)'"']) |
79072805 | 3226 | weight += 1; |
93a17b20 | 3227 | else if (strchr("rnftbxcav",s[1])) |
79072805 LW |
3228 | weight += 40; |
3229 | else if (isDIGIT(s[1])) { | |
3230 | weight += 40; | |
3231 | while (s[1] && isDIGIT(s[1])) | |
3232 | s++; | |
3233 | } | |
3234 | } | |
3235 | else | |
3236 | weight += 100; | |
3237 | break; | |
3238 | case '-': | |
3239 | if (s[1] == '\\') | |
3240 | weight += 50; | |
93a17b20 | 3241 | if (strchr("aA01! ",last_un_char)) |
79072805 | 3242 | weight += 30; |
93a17b20 | 3243 | if (strchr("zZ79~",s[1])) |
79072805 | 3244 | weight += 30; |
f27ffc4a GS |
3245 | if (last_un_char == 255 && (isDIGIT(s[1]) || s[1] == '$')) |
3246 | weight -= 5; /* cope with negative subscript */ | |
79072805 LW |
3247 | break; |
3248 | default: | |
3792a11b NC |
3249 | if (!isALNUM(last_un_char) |
3250 | && !(last_un_char == '$' || last_un_char == '@' | |
3251 | || last_un_char == '&') | |
3252 | && isALPHA(*s) && s[1] && isALPHA(s[1])) { | |
79072805 LW |
3253 | char *d = tmpbuf; |
3254 | while (isALPHA(*s)) | |
3255 | *d++ = *s++; | |
3256 | *d = '\0'; | |
5458a98a | 3257 | if (keyword(tmpbuf, d - tmpbuf, 0)) |
79072805 LW |
3258 | weight -= 150; |
3259 | } | |
3260 | if (un_char == last_un_char + 1) | |
3261 | weight += 5; | |
3262 | weight -= seen[un_char]; | |
3263 | break; | |
3264 | } | |
3265 | seen[un_char]++; | |
3266 | } | |
3267 | if (weight >= 0) /* probably a character class */ | |
3268 | return FALSE; | |
3269 | } | |
3270 | ||
3271 | return TRUE; | |
3272 | } | |
ffed7fef | 3273 | |
ffb4593c NT |
3274 | /* |
3275 | * S_intuit_method | |
3276 | * | |
3277 | * Does all the checking to disambiguate | |
3278 | * foo bar | |
3279 | * between foo(bar) and bar->foo. Returns 0 if not a method, otherwise | |
3280 | * FUNCMETH (bar->foo(args)) or METHOD (bar->foo args). | |
3281 | * | |
3282 | * First argument is the stuff after the first token, e.g. "bar". | |
3283 | * | |
3284 | * Not a method if bar is a filehandle. | |
3285 | * Not a method if foo is a subroutine prototyped to take a filehandle. | |
3286 | * Not a method if it's really "Foo $bar" | |
3287 | * Method if it's "foo $bar" | |
3288 | * Not a method if it's really "print foo $bar" | |
3289 | * Method if it's really "foo package::" (interpreted as package->foo) | |
8f8cf39c | 3290 | * Not a method if bar is known to be a subroutine ("sub bar; foo bar") |
3cb0bbe5 | 3291 | * Not a method if bar is a filehandle or package, but is quoted with |
ffb4593c NT |
3292 | * => |
3293 | */ | |
3294 | ||
76e3520e | 3295 | STATIC int |
62d55b22 | 3296 | S_intuit_method(pTHX_ char *start, GV *gv, CV *cv) |
a0d0e21e | 3297 | { |
97aff369 | 3298 | dVAR; |
a0d0e21e | 3299 | char *s = start + (*start == '$'); |
3280af22 | 3300 | char tmpbuf[sizeof PL_tokenbuf]; |
a0d0e21e LW |
3301 | STRLEN len; |
3302 | GV* indirgv; | |
5db06880 NC |
3303 | #ifdef PERL_MAD |
3304 | int soff; | |
3305 | #endif | |
a0d0e21e | 3306 | |
7918f24d NC |
3307 | PERL_ARGS_ASSERT_INTUIT_METHOD; |
3308 | ||
a0d0e21e | 3309 | if (gv) { |
62d55b22 | 3310 | if (SvTYPE(gv) == SVt_PVGV && GvIO(gv)) |
a0d0e21e | 3311 | return 0; |
62d55b22 NC |
3312 | if (cv) { |
3313 | if (SvPOK(cv)) { | |
3314 | const char *proto = SvPVX_const(cv); | |
3315 | if (proto) { | |
3316 | if (*proto == ';') | |
3317 | proto++; | |
3318 | if (*proto == '*') | |
3319 | return 0; | |
3320 | } | |
b6c543e3 IZ |
3321 | } |
3322 | } else | |
c35e046a | 3323 | gv = NULL; |
a0d0e21e | 3324 | } |
8903cb82 | 3325 | s = scan_word(s, tmpbuf, sizeof tmpbuf, TRUE, &len); |
ffb4593c NT |
3326 | /* start is the beginning of the possible filehandle/object, |
3327 | * and s is the end of it | |
3328 | * tmpbuf is a copy of it | |
3329 | */ | |
3330 | ||
a0d0e21e | 3331 | if (*start == '$') { |
3ef1310e RGS |
3332 | if (gv || PL_last_lop_op == OP_PRINT || PL_last_lop_op == OP_SAY || |
3333 | isUPPER(*PL_tokenbuf)) | |
a0d0e21e | 3334 | return 0; |
5db06880 NC |
3335 | #ifdef PERL_MAD |
3336 | len = start - SvPVX(PL_linestr); | |
3337 | #endif | |
29595ff2 | 3338 | s = PEEKSPACE(s); |
f0092767 | 3339 | #ifdef PERL_MAD |
5db06880 NC |
3340 | start = SvPVX(PL_linestr) + len; |
3341 | #endif | |
3280af22 NIS |
3342 | PL_bufptr = start; |
3343 | PL_expect = XREF; | |
a0d0e21e LW |
3344 | return *s == '(' ? FUNCMETH : METHOD; |
3345 | } | |
5458a98a | 3346 | if (!keyword(tmpbuf, len, 0)) { |
c3e0f903 GS |
3347 | if (len > 2 && tmpbuf[len - 2] == ':' && tmpbuf[len - 1] == ':') { |
3348 | len -= 2; | |
3349 | tmpbuf[len] = '\0'; | |
5db06880 NC |
3350 | #ifdef PERL_MAD |
3351 | soff = s - SvPVX(PL_linestr); | |
3352 | #endif | |
c3e0f903 GS |
3353 | goto bare_package; |
3354 | } | |
90e5519e | 3355 | indirgv = gv_fetchpvn_flags(tmpbuf, len, 0, SVt_PVCV); |
8ebc5c01 | 3356 | if (indirgv && GvCVu(indirgv)) |
a0d0e21e LW |
3357 | return 0; |
3358 | /* filehandle or package name makes it a method */ | |
da51bb9b | 3359 | if (!gv || GvIO(indirgv) || gv_stashpvn(tmpbuf, len, 0)) { |
5db06880 NC |
3360 | #ifdef PERL_MAD |
3361 | soff = s - SvPVX(PL_linestr); | |
3362 | #endif | |
29595ff2 | 3363 | s = PEEKSPACE(s); |
3280af22 | 3364 | if ((PL_bufend - s) >= 2 && *s == '=' && *(s+1) == '>') |
55497cff | 3365 | return 0; /* no assumptions -- "=>" quotes bearword */ |
c3e0f903 | 3366 | bare_package: |
cd81e915 | 3367 | start_force(PL_curforce); |
9ded7720 | 3368 | NEXTVAL_NEXTTOKE.opval = (OP*)newSVOP(OP_CONST, 0, |
64142370 | 3369 | S_newSV_maybe_utf8(aTHX_ tmpbuf, len)); |
9ded7720 | 3370 | NEXTVAL_NEXTTOKE.opval->op_private = OPpCONST_BARE; |
5db06880 NC |
3371 | if (PL_madskills) |
3372 | curmad('X', newSVpvn(start,SvPVX(PL_linestr) + soff - start)); | |
3280af22 | 3373 | PL_expect = XTERM; |
a0d0e21e | 3374 | force_next(WORD); |
3280af22 | 3375 | PL_bufptr = s; |
5db06880 NC |
3376 | #ifdef PERL_MAD |
3377 | PL_bufptr = SvPVX(PL_linestr) + soff; /* restart before space */ | |
3378 | #endif | |
a0d0e21e LW |
3379 | return *s == '(' ? FUNCMETH : METHOD; |
3380 | } | |
3381 | } | |
3382 | return 0; | |
3383 | } | |
3384 | ||
16d20bd9 | 3385 | /* Encoded script support. filter_add() effectively inserts a |
4e553d73 | 3386 | * 'pre-processing' function into the current source input stream. |
16d20bd9 AD |
3387 | * Note that the filter function only applies to the current source file |
3388 | * (e.g., it will not affect files 'require'd or 'use'd by this one). | |
3389 | * | |
3390 | * The datasv parameter (which may be NULL) can be used to pass | |
3391 | * private data to this instance of the filter. The filter function | |
3392 | * can recover the SV using the FILTER_DATA macro and use it to | |
3393 | * store private buffers and state information. | |
3394 | * | |
3395 | * The supplied datasv parameter is upgraded to a PVIO type | |
4755096e | 3396 | * and the IoDIRP/IoANY field is used to store the function pointer, |
e0c19803 | 3397 | * and IOf_FAKE_DIRP is enabled on datasv to mark this as such. |
16d20bd9 AD |
3398 | * Note that IoTOP_NAME, IoFMT_NAME, IoBOTTOM_NAME, if set for |
3399 | * private use must be set using malloc'd pointers. | |
3400 | */ | |
16d20bd9 AD |
3401 | |
3402 | SV * | |
864dbfa3 | 3403 | Perl_filter_add(pTHX_ filter_t funcp, SV *datasv) |
16d20bd9 | 3404 | { |
97aff369 | 3405 | dVAR; |
f4c556ac | 3406 | if (!funcp) |
a0714e2c | 3407 | return NULL; |
f4c556ac | 3408 | |
5486870f DM |
3409 | if (!PL_parser) |
3410 | return NULL; | |
3411 | ||
3280af22 NIS |
3412 | if (!PL_rsfp_filters) |
3413 | PL_rsfp_filters = newAV(); | |
16d20bd9 | 3414 | if (!datasv) |
561b68a9 | 3415 | datasv = newSV(0); |
862a34c6 | 3416 | SvUPGRADE(datasv, SVt_PVIO); |
8141890a | 3417 | IoANY(datasv) = FPTR2DPTR(void *, funcp); /* stash funcp into spare field */ |
e0c19803 | 3418 | IoFLAGS(datasv) |= IOf_FAKE_DIRP; |
f4c556ac | 3419 | DEBUG_P(PerlIO_printf(Perl_debug_log, "filter_add func %p (%s)\n", |
55662e27 JH |
3420 | FPTR2DPTR(void *, IoANY(datasv)), |
3421 | SvPV_nolen(datasv))); | |
3280af22 NIS |
3422 | av_unshift(PL_rsfp_filters, 1); |
3423 | av_store(PL_rsfp_filters, 0, datasv) ; | |
16d20bd9 AD |
3424 | return(datasv); |
3425 | } | |
4e553d73 | 3426 | |
16d20bd9 AD |
3427 | |
3428 | /* Delete most recently added instance of this filter function. */ | |
a0d0e21e | 3429 | void |
864dbfa3 | 3430 | Perl_filter_del(pTHX_ filter_t funcp) |
16d20bd9 | 3431 | { |
97aff369 | 3432 | dVAR; |
e0c19803 | 3433 | SV *datasv; |
24801a4b | 3434 | |
7918f24d NC |
3435 | PERL_ARGS_ASSERT_FILTER_DEL; |
3436 | ||
33073adb | 3437 | #ifdef DEBUGGING |
55662e27 JH |
3438 | DEBUG_P(PerlIO_printf(Perl_debug_log, "filter_del func %p", |
3439 | FPTR2DPTR(void*, funcp))); | |
33073adb | 3440 | #endif |
5486870f | 3441 | if (!PL_parser || !PL_rsfp_filters || AvFILLp(PL_rsfp_filters)<0) |
16d20bd9 AD |
3442 | return; |
3443 | /* if filter is on top of stack (usual case) just pop it off */ | |
e0c19803 | 3444 | datasv = FILTER_DATA(AvFILLp(PL_rsfp_filters)); |
8141890a | 3445 | if (IoANY(datasv) == FPTR2DPTR(void *, funcp)) { |
e0c19803 | 3446 | IoFLAGS(datasv) &= ~IOf_FAKE_DIRP; |
4755096e | 3447 | IoANY(datasv) = (void *)NULL; |
3280af22 | 3448 | sv_free(av_pop(PL_rsfp_filters)); |
e50aee73 | 3449 | |
16d20bd9 AD |
3450 | return; |
3451 | } | |
3452 | /* we need to search for the correct entry and clear it */ | |
cea2e8a9 | 3453 | Perl_die(aTHX_ "filter_del can only delete in reverse order (currently)"); |
16d20bd9 AD |
3454 | } |
3455 | ||
3456 | ||
1de9afcd RGS |
3457 | /* Invoke the idxth filter function for the current rsfp. */ |
3458 | /* maxlen 0 = read one text line */ | |
16d20bd9 | 3459 | I32 |
864dbfa3 | 3460 | Perl_filter_read(pTHX_ int idx, SV *buf_sv, int maxlen) |
a0d0e21e | 3461 | { |
97aff369 | 3462 | dVAR; |
16d20bd9 AD |
3463 | filter_t funcp; |
3464 | SV *datasv = NULL; | |
f482118e NC |
3465 | /* This API is bad. It should have been using unsigned int for maxlen. |
3466 | Not sure if we want to change the API, but if not we should sanity | |
3467 | check the value here. */ | |
39cd7a59 NC |
3468 | const unsigned int correct_length |
3469 | = maxlen < 0 ? | |
3470 | #ifdef PERL_MICRO | |
3471 | 0x7FFFFFFF | |
3472 | #else | |
3473 | INT_MAX | |
3474 | #endif | |
3475 | : maxlen; | |
e50aee73 | 3476 | |
7918f24d NC |
3477 | PERL_ARGS_ASSERT_FILTER_READ; |
3478 | ||
5486870f | 3479 | if (!PL_parser || !PL_rsfp_filters) |
16d20bd9 | 3480 | return -1; |
1de9afcd | 3481 | if (idx > AvFILLp(PL_rsfp_filters)) { /* Any more filters? */ |
16d20bd9 AD |
3482 | /* Provide a default input filter to make life easy. */ |
3483 | /* Note that we append to the line. This is handy. */ | |
f4c556ac GS |
3484 | DEBUG_P(PerlIO_printf(Perl_debug_log, |
3485 | "filter_read %d: from rsfp\n", idx)); | |
f482118e | 3486 | if (correct_length) { |
16d20bd9 AD |
3487 | /* Want a block */ |
3488 | int len ; | |
f54cb97a | 3489 | const int old_len = SvCUR(buf_sv); |
16d20bd9 AD |
3490 | |
3491 | /* ensure buf_sv is large enough */ | |
881d8f0a | 3492 | SvGROW(buf_sv, (STRLEN)(old_len + correct_length + 1)) ; |
f482118e NC |
3493 | if ((len = PerlIO_read(PL_rsfp, SvPVX(buf_sv) + old_len, |
3494 | correct_length)) <= 0) { | |
3280af22 | 3495 | if (PerlIO_error(PL_rsfp)) |
37120919 AD |
3496 | return -1; /* error */ |
3497 | else | |
3498 | return 0 ; /* end of file */ | |
3499 | } | |
16d20bd9 | 3500 | SvCUR_set(buf_sv, old_len + len) ; |
881d8f0a | 3501 | SvPVX(buf_sv)[old_len + len] = '\0'; |
16d20bd9 AD |
3502 | } else { |
3503 | /* Want a line */ | |
3280af22 NIS |
3504 | if (sv_gets(buf_sv, PL_rsfp, SvCUR(buf_sv)) == NULL) { |
3505 | if (PerlIO_error(PL_rsfp)) | |
37120919 AD |
3506 | return -1; /* error */ |
3507 | else | |
3508 | return 0 ; /* end of file */ | |
3509 | } | |
16d20bd9 AD |
3510 | } |
3511 | return SvCUR(buf_sv); | |
3512 | } | |
3513 | /* Skip this filter slot if filter has been deleted */ | |
1de9afcd | 3514 | if ( (datasv = FILTER_DATA(idx)) == &PL_sv_undef) { |
f4c556ac GS |
3515 | DEBUG_P(PerlIO_printf(Perl_debug_log, |
3516 | "filter_read %d: skipped (filter deleted)\n", | |
3517 | idx)); | |
f482118e | 3518 | return FILTER_READ(idx+1, buf_sv, correct_length); /* recurse */ |
16d20bd9 AD |
3519 | } |
3520 | /* Get function pointer hidden within datasv */ | |
8141890a | 3521 | funcp = DPTR2FPTR(filter_t, IoANY(datasv)); |
f4c556ac GS |
3522 | DEBUG_P(PerlIO_printf(Perl_debug_log, |
3523 | "filter_read %d: via function %p (%s)\n", | |
ca0270c4 | 3524 | idx, (void*)datasv, SvPV_nolen_const(datasv))); |
16d20bd9 AD |
3525 | /* Call function. The function is expected to */ |
3526 | /* call "FILTER_READ(idx+1, buf_sv)" first. */ | |
37120919 | 3527 | /* Return: <0:error, =0:eof, >0:not eof */ |
f482118e | 3528 | return (*funcp)(aTHX_ idx, buf_sv, correct_length); |
16d20bd9 AD |
3529 | } |
3530 | ||
76e3520e | 3531 | STATIC char * |
5cc814fd | 3532 | S_filter_gets(pTHX_ register SV *sv, STRLEN append) |
16d20bd9 | 3533 | { |
97aff369 | 3534 | dVAR; |
7918f24d NC |
3535 | |
3536 | PERL_ARGS_ASSERT_FILTER_GETS; | |
3537 | ||
c39cd008 | 3538 | #ifdef PERL_CR_FILTER |
3280af22 | 3539 | if (!PL_rsfp_filters) { |
c39cd008 | 3540 | filter_add(S_cr_textfilter,NULL); |
a868473f NIS |
3541 | } |
3542 | #endif | |
3280af22 | 3543 | if (PL_rsfp_filters) { |
55497cff | 3544 | if (!append) |
3545 | SvCUR_set(sv, 0); /* start with empty line */ | |
16d20bd9 AD |
3546 | if (FILTER_READ(0, sv, 0) > 0) |
3547 | return ( SvPVX(sv) ) ; | |
3548 | else | |
bd61b366 | 3549 | return NULL ; |
16d20bd9 | 3550 | } |
9d116dd7 | 3551 | else |
5cc814fd | 3552 | return (sv_gets(sv, PL_rsfp, append)); |
a0d0e21e LW |
3553 | } |
3554 | ||
01ec43d0 | 3555 | STATIC HV * |
9bde8eb0 | 3556 | S_find_in_my_stash(pTHX_ const char *pkgname, STRLEN len) |
def3634b | 3557 | { |
97aff369 | 3558 | dVAR; |
def3634b GS |
3559 | GV *gv; |
3560 | ||
7918f24d NC |
3561 | PERL_ARGS_ASSERT_FIND_IN_MY_STASH; |
3562 | ||
01ec43d0 | 3563 | if (len == 11 && *pkgname == '_' && strEQ(pkgname, "__PACKAGE__")) |
def3634b GS |
3564 | return PL_curstash; |
3565 | ||
3566 | if (len > 2 && | |
3567 | (pkgname[len - 2] == ':' && pkgname[len - 1] == ':') && | |
90e5519e | 3568 | (gv = gv_fetchpvn_flags(pkgname, len, 0, SVt_PVHV))) |
01ec43d0 GS |
3569 | { |
3570 | return GvHV(gv); /* Foo:: */ | |
def3634b GS |
3571 | } |
3572 | ||
3573 | /* use constant CLASS => 'MyClass' */ | |
c35e046a AL |
3574 | gv = gv_fetchpvn_flags(pkgname, len, 0, SVt_PVCV); |
3575 | if (gv && GvCV(gv)) { | |
3576 | SV * const sv = cv_const_sv(GvCV(gv)); | |
3577 | if (sv) | |
9bde8eb0 | 3578 | pkgname = SvPV_const(sv, len); |
def3634b GS |
3579 | } |
3580 | ||
9bde8eb0 | 3581 | return gv_stashpvn(pkgname, len, 0); |
def3634b | 3582 | } |
a0d0e21e | 3583 | |
e3f73d4e RGS |
3584 | /* |
3585 | * S_readpipe_override | |
3586 | * Check whether readpipe() is overriden, and generates the appropriate | |
3587 | * optree, provided sublex_start() is called afterwards. | |
3588 | */ | |
3589 | STATIC void | |
1d51329b | 3590 | S_readpipe_override(pTHX) |
e3f73d4e RGS |
3591 | { |
3592 | GV **gvp; | |
3593 | GV *gv_readpipe = gv_fetchpvs("readpipe", GV_NOTQUAL, SVt_PVCV); | |
6154021b | 3594 | pl_yylval.ival = OP_BACKTICK; |
e3f73d4e RGS |
3595 | if ((gv_readpipe |
3596 | && GvCVu(gv_readpipe) && GvIMPORTED_CV(gv_readpipe)) | |
3597 | || | |
3598 | ((gvp = (GV**)hv_fetchs(PL_globalstash, "readpipe", FALSE)) | |
d5e716f5 | 3599 | && (gv_readpipe = *gvp) && isGV_with_GP(gv_readpipe) |
e3f73d4e RGS |
3600 | && GvCVu(gv_readpipe) && GvIMPORTED_CV(gv_readpipe))) |
3601 | { | |
3602 | PL_lex_op = (OP*)newUNOP(OP_ENTERSUB, OPf_STACKED, | |
3603 | append_elem(OP_LIST, | |
3604 | newSVOP(OP_CONST, 0, &PL_sv_undef), /* value will be read later */ | |
3605 | newCVREF(0, newGVOP(OP_GV, 0, gv_readpipe)))); | |
3606 | } | |
e3f73d4e RGS |
3607 | } |
3608 | ||
5db06880 NC |
3609 | #ifdef PERL_MAD |
3610 | /* | |
3611 | * Perl_madlex | |
3612 | * The intent of this yylex wrapper is to minimize the changes to the | |
3613 | * tokener when we aren't interested in collecting madprops. It remains | |
3614 | * to be seen how successful this strategy will be... | |
3615 | */ | |
3616 | ||
3617 | int | |
3618 | Perl_madlex(pTHX) | |
3619 | { | |
3620 | int optype; | |
3621 | char *s = PL_bufptr; | |
3622 | ||
cd81e915 NC |
3623 | /* make sure PL_thiswhite is initialized */ |
3624 | PL_thiswhite = 0; | |
3625 | PL_thismad = 0; | |
5db06880 | 3626 | |
cd81e915 | 3627 | /* just do what yylex would do on pending identifier; leave PL_thiswhite alone */ |
5db06880 NC |
3628 | if (PL_pending_ident) |
3629 | return S_pending_ident(aTHX); | |
3630 | ||
3631 | /* previous token ate up our whitespace? */ | |
cd81e915 NC |
3632 | if (!PL_lasttoke && PL_nextwhite) { |
3633 | PL_thiswhite = PL_nextwhite; | |
3634 | PL_nextwhite = 0; | |
5db06880 NC |
3635 | } |
3636 | ||
3637 | /* isolate the token, and figure out where it is without whitespace */ | |
cd81e915 NC |
3638 | PL_realtokenstart = -1; |
3639 | PL_thistoken = 0; | |
5db06880 NC |
3640 | optype = yylex(); |
3641 | s = PL_bufptr; | |
cd81e915 | 3642 | assert(PL_curforce < 0); |
5db06880 | 3643 | |
cd81e915 NC |
3644 | if (!PL_thismad || PL_thismad->mad_key == '^') { /* not forced already? */ |
3645 | if (!PL_thistoken) { | |
3646 | if (PL_realtokenstart < 0 || !CopLINE(PL_curcop)) | |
6b29d1f5 | 3647 | PL_thistoken = newSVpvs(""); |
5db06880 | 3648 | else { |
c35e046a | 3649 | char * const tstart = SvPVX(PL_linestr) + PL_realtokenstart; |
cd81e915 | 3650 | PL_thistoken = newSVpvn(tstart, s - tstart); |
5db06880 NC |
3651 | } |
3652 | } | |
cd81e915 NC |
3653 | if (PL_thismad) /* install head */ |
3654 | CURMAD('X', PL_thistoken); | |
5db06880 NC |
3655 | } |
3656 | ||
3657 | /* last whitespace of a sublex? */ | |
cd81e915 NC |
3658 | if (optype == ')' && PL_endwhite) { |
3659 | CURMAD('X', PL_endwhite); | |
5db06880 NC |
3660 | } |
3661 | ||
cd81e915 | 3662 | if (!PL_thismad) { |
5db06880 NC |
3663 | |
3664 | /* if no whitespace and we're at EOF, bail. Otherwise fake EOF below. */ | |
cd81e915 NC |
3665 | if (!PL_thiswhite && !PL_endwhite && !optype) { |
3666 | sv_free(PL_thistoken); | |
3667 | PL_thistoken = 0; | |
5db06880 NC |
3668 | return 0; |
3669 | } | |
3670 | ||
3671 | /* put off final whitespace till peg */ | |
3672 | if (optype == ';' && !PL_rsfp) { | |
cd81e915 NC |
3673 | PL_nextwhite = PL_thiswhite; |
3674 | PL_thiswhite = 0; | |
5db06880 | 3675 | } |
cd81e915 NC |
3676 | else if (PL_thisopen) { |
3677 | CURMAD('q', PL_thisopen); | |
3678 | if (PL_thistoken) | |
3679 | sv_free(PL_thistoken); | |
3680 | PL_thistoken = 0; | |
5db06880 NC |
3681 | } |
3682 | else { | |
3683 | /* Store actual token text as madprop X */ | |
cd81e915 | 3684 | CURMAD('X', PL_thistoken); |
5db06880 NC |
3685 | } |
3686 | ||
cd81e915 | 3687 | if (PL_thiswhite) { |
5db06880 | 3688 | /* add preceding whitespace as madprop _ */ |
cd81e915 | 3689 | CURMAD('_', PL_thiswhite); |
5db06880 NC |
3690 | } |
3691 | ||
cd81e915 | 3692 | if (PL_thisstuff) { |
5db06880 | 3693 | /* add quoted material as madprop = */ |
cd81e915 | 3694 | CURMAD('=', PL_thisstuff); |
5db06880 NC |
3695 | } |
3696 | ||
cd81e915 | 3697 | if (PL_thisclose) { |
5db06880 | 3698 | /* add terminating quote as madprop Q */ |
cd81e915 | 3699 | CURMAD('Q', PL_thisclose); |
5db06880 NC |
3700 | } |
3701 | } | |
3702 | ||
3703 | /* special |