Commit | Line | Data |
---|---|---|
a0d0e21e LW |
1 | /* pp_ctl.c |
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 | |
a0d0e21e LW |
5 | * |
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. | |
8 | * | |
9 | */ | |
10 | ||
11 | /* | |
4ac71550 TC |
12 | * Now far ahead the Road has gone, |
13 | * And I must follow, if I can, | |
14 | * Pursuing it with eager feet, | |
15 | * Until it joins some larger way | |
16 | * Where many paths and errands meet. | |
17 | * And whither then? I cannot say. | |
18 | * | |
19 | * [Bilbo on p.35 of _The Lord of the Rings_, I/i: "A Long-Expected Party"] | |
a0d0e21e LW |
20 | */ |
21 | ||
166f8a29 DM |
22 | /* This file contains control-oriented pp ("push/pop") functions that |
23 | * execute the opcodes that make up a perl program. A typical pp function | |
24 | * expects to find its arguments on the stack, and usually pushes its | |
25 | * results onto the stack, hence the 'pp' terminology. Each OP structure | |
26 | * contains a pointer to the relevant pp_foo() function. | |
27 | * | |
28 | * Control-oriented means things like pp_enteriter() and pp_next(), which | |
29 | * alter the flow of control of the program. | |
30 | */ | |
31 | ||
32 | ||
a0d0e21e | 33 | #include "EXTERN.h" |
864dbfa3 | 34 | #define PERL_IN_PP_CTL_C |
a0d0e21e LW |
35 | #include "perl.h" |
36 | ||
54310121 | 37 | #define DOCATCH(o) ((CATCH_GET == TRUE) ? docatch(o) : (o)) |
1e422769 | 38 | |
94fcd414 NC |
39 | #define dopoptosub(plop) dopoptosub_at(cxstack, (plop)) |
40 | ||
a0d0e21e LW |
41 | PP(pp_wantarray) |
42 | { | |
39644a26 | 43 | dSP; |
a0d0e21e | 44 | I32 cxix; |
93f0bc49 | 45 | const PERL_CONTEXT *cx; |
a0d0e21e LW |
46 | EXTEND(SP, 1); |
47 | ||
93f0bc49 FC |
48 | if (PL_op->op_private & OPpOFFBYONE) { |
49 | if (!(cx = caller_cx(1,NULL))) RETPUSHUNDEF; | |
50 | } | |
51 | else { | |
52 | cxix = dopoptosub(cxstack_ix); | |
53 | if (cxix < 0) | |
a0d0e21e | 54 | RETPUSHUNDEF; |
93f0bc49 FC |
55 | cx = &cxstack[cxix]; |
56 | } | |
a0d0e21e | 57 | |
93f0bc49 | 58 | switch (cx->blk_gimme) { |
54310121 | 59 | case G_ARRAY: |
a0d0e21e | 60 | RETPUSHYES; |
54310121 | 61 | case G_SCALAR: |
a0d0e21e | 62 | RETPUSHNO; |
54310121 | 63 | default: |
64 | RETPUSHUNDEF; | |
65 | } | |
a0d0e21e LW |
66 | } |
67 | ||
2cd61cdb IZ |
68 | PP(pp_regcreset) |
69 | { | |
0b4182de | 70 | TAINT_NOT; |
2cd61cdb IZ |
71 | return NORMAL; |
72 | } | |
73 | ||
b3eb6a9b GS |
74 | PP(pp_regcomp) |
75 | { | |
39644a26 | 76 | dSP; |
eb578fdb | 77 | PMOP *pm = (PMOP*)cLOGOP->op_other; |
9f141731 | 78 | SV **args; |
df787a7b | 79 | int nargs; |
84679df5 | 80 | REGEXP *re = NULL; |
9f141731 DM |
81 | REGEXP *new_re; |
82 | const regexp_engine *eng; | |
dbc200c5 | 83 | bool is_bare_re= FALSE; |
bfed75c6 | 84 | |
df787a7b DM |
85 | if (PL_op->op_flags & OPf_STACKED) { |
86 | dMARK; | |
87 | nargs = SP - MARK; | |
88 | args = ++MARK; | |
89 | } | |
90 | else { | |
91 | nargs = 1; | |
92 | args = SP; | |
93 | } | |
94 | ||
4b5a0d1c | 95 | /* prevent recompiling under /o and ithreads. */ |
3db8f154 | 96 | #if defined(USE_ITHREADS) |
131b3ad0 | 97 | if (pm->op_pmflags & PMf_KEEP && PM_GETRE(pm)) { |
df787a7b | 98 | SP = args-1; |
131b3ad0 DM |
99 | RETURN; |
100 | } | |
513629ba | 101 | #endif |
d4b87e75 | 102 | |
9f141731 DM |
103 | re = PM_GETRE(pm); |
104 | assert (re != (REGEXP*) &PL_sv_undef); | |
105 | eng = re ? RX_ENGINE(re) : current_re_engine(); | |
106 | ||
dbc200c5 YO |
107 | /* |
108 | In the below logic: these are basically the same - check if this regcomp is part of a split. | |
109 | ||
110 | (PL_op->op_pmflags & PMf_split ) | |
111 | (PL_op->op_next->op_type == OP_PUSHRE) | |
112 | ||
113 | We could add a new mask for this and copy the PMf_split, if we did | |
114 | some bit definition fiddling first. | |
115 | ||
116 | For now we leave this | |
117 | */ | |
118 | ||
3c13cae6 DM |
119 | new_re = (eng->op_comp |
120 | ? eng->op_comp | |
121 | : &Perl_re_op_compile | |
122 | )(aTHX_ args, nargs, pm->op_code_list, eng, re, | |
346d3070 | 123 | &is_bare_re, |
dbc200c5 | 124 | (pm->op_pmflags & RXf_PMf_FLAGCOPYMASK), |
a5ae69f0 DM |
125 | pm->op_pmflags | |
126 | (PL_op->op_flags & OPf_SPECIAL ? PMf_USE_RE_EVAL : 0)); | |
dbc200c5 | 127 | |
346d3070 | 128 | if (pm->op_pmflags & PMf_HAS_CV) |
8d919b0a | 129 | ReANY(new_re)->qr_anoncv |
9fe3265f | 130 | = (CV*) SvREFCNT_inc(PAD_SV(PL_op->op_targ)); |
9f141731 DM |
131 | |
132 | if (is_bare_re) { | |
133 | REGEXP *tmp; | |
134 | /* The match's LHS's get-magic might need to access this op's regexp | |
135 | (e.g. $' =~ /$re/ while foo; see bug 70764). So we must call | |
136 | get-magic now before we replace the regexp. Hopefully this hack can | |
137 | be replaced with the approach described at | |
138 | http://www.nntp.perl.org/group/perl.perl5.porters/2007/03/msg122415.html | |
139 | some day. */ | |
140 | if (pm->op_type == OP_MATCH) { | |
141 | SV *lhs; | |
284167a5 | 142 | const bool was_tainted = TAINT_get; |
9f141731 DM |
143 | if (pm->op_flags & OPf_STACKED) |
144 | lhs = args[-1]; | |
6ffceeb7 | 145 | else if (pm->op_targ) |
9f141731 DM |
146 | lhs = PAD_SV(pm->op_targ); |
147 | else lhs = DEFSV; | |
148 | SvGETMAGIC(lhs); | |
149 | /* Restore the previous value of PL_tainted (which may have been | |
150 | modified by get-magic), to avoid incorrectly setting the | |
284167a5 S |
151 | RXf_TAINTED flag with RX_TAINT_on further down. */ |
152 | TAINT_set(was_tainted); | |
dc6d7f5c | 153 | #ifdef NO_TAINT_SUPPORT |
9a9b5ec9 DM |
154 | PERL_UNUSED_VAR(was_tainted); |
155 | #endif | |
df787a7b | 156 | } |
9f141731 DM |
157 | tmp = reg_temp_copy(NULL, new_re); |
158 | ReREFCNT_dec(new_re); | |
159 | new_re = tmp; | |
df787a7b | 160 | } |
dbc200c5 | 161 | |
9f141731 DM |
162 | if (re != new_re) { |
163 | ReREFCNT_dec(re); | |
164 | PM_SETRE(pm, new_re); | |
c277df42 | 165 | } |
d4b87e75 | 166 | |
dbc200c5 | 167 | |
d48c660d DM |
168 | assert(TAINTING_get || !TAINT_get); |
169 | if (TAINT_get) { | |
9f141731 | 170 | SvTAINTED_on((SV*)new_re); |
284167a5 | 171 | RX_TAINT_on(new_re); |
72311751 | 172 | } |
72311751 | 173 | |
c737faaf YO |
174 | #if !defined(USE_ITHREADS) |
175 | /* can't change the optree at runtime either */ | |
176 | /* PMf_KEEP is handled differently under threads to avoid these problems */ | |
9f141731 DM |
177 | if (!RX_PRELEN(PM_GETRE(pm)) && PL_curpm) |
178 | pm = PL_curpm; | |
a0d0e21e | 179 | if (pm->op_pmflags & PMf_KEEP) { |
c90c0ff4 | 180 | pm->op_private &= ~OPpRUNTIME; /* no point compiling again */ |
533c011a | 181 | cLOGOP->op_first->op_next = PL_op->op_next; |
a0d0e21e | 182 | } |
c737faaf | 183 | #endif |
9f141731 | 184 | |
df787a7b | 185 | SP = args-1; |
a0d0e21e LW |
186 | RETURN; |
187 | } | |
188 | ||
9f141731 | 189 | |
a0d0e21e LW |
190 | PP(pp_substcont) |
191 | { | |
39644a26 | 192 | dSP; |
4ebe6e95 | 193 | PERL_CONTEXT *cx = CX_CUR(); |
eb578fdb KW |
194 | PMOP * const pm = (PMOP*) cLOGOP->op_other; |
195 | SV * const dstr = cx->sb_dstr; | |
196 | char *s = cx->sb_s; | |
197 | char *m = cx->sb_m; | |
a0d0e21e | 198 | char *orig = cx->sb_orig; |
eb578fdb | 199 | REGEXP * const rx = cx->sb_rx; |
c445ea15 | 200 | SV *nsv = NULL; |
988e6e7e | 201 | REGEXP *old = PM_GETRE(pm); |
f410a211 NC |
202 | |
203 | PERL_ASYNC_CHECK(); | |
204 | ||
988e6e7e | 205 | if(old != rx) { |
bfed75c6 | 206 | if(old) |
988e6e7e | 207 | ReREFCNT_dec(old); |
d6106309 | 208 | PM_SETRE(pm,ReREFCNT_inc(rx)); |
d8f2cf8a AB |
209 | } |
210 | ||
d9f97599 | 211 | rxres_restore(&cx->sb_rxres, rx); |
c90c0ff4 | 212 | |
a0d0e21e | 213 | if (cx->sb_iters++) { |
3c6ef0a5 | 214 | const SSize_t saviters = cx->sb_iters; |
a0d0e21e | 215 | if (cx->sb_iters > cx->sb_maxiters) |
cea2e8a9 | 216 | DIE(aTHX_ "Substitution loop"); |
a0d0e21e | 217 | |
447ee134 DM |
218 | SvGETMAGIC(TOPs); /* possibly clear taint on $1 etc: #67962 */ |
219 | ||
ef07e810 | 220 | /* See "how taint works" above pp_subst() */ |
20be6587 DM |
221 | if (SvTAINTED(TOPs)) |
222 | cx->sb_rxtainted |= SUBST_TAINT_REPL; | |
447ee134 | 223 | sv_catsv_nomg(dstr, POPs); |
2c296965 | 224 | if (CxONCE(cx) || s < orig || |
03c83e26 DM |
225 | !CALLREGEXEC(rx, s, cx->sb_strend, orig, |
226 | (s == m), cx->sb_targ, NULL, | |
d5e7783a | 227 | (REXEC_IGNOREPOS|REXEC_NOT_FIRST|REXEC_FAIL_ON_UNDERFLOW))) |
a0d0e21e | 228 | { |
8ca8a454 | 229 | SV *targ = cx->sb_targ; |
748a9306 | 230 | |
078c425b JH |
231 | assert(cx->sb_strend >= s); |
232 | if(cx->sb_strend > s) { | |
233 | if (DO_UTF8(dstr) && !SvUTF8(targ)) | |
4bac9ae4 | 234 | sv_catpvn_nomg_utf8_upgrade(dstr, s, cx->sb_strend - s, nsv); |
078c425b | 235 | else |
4bac9ae4 | 236 | sv_catpvn_nomg(dstr, s, cx->sb_strend - s); |
078c425b | 237 | } |
20be6587 DM |
238 | if (RX_MATCH_TAINTED(rx)) /* run time pattern taint, eg locale */ |
239 | cx->sb_rxtainted |= SUBST_TAINT_PAT; | |
9212bbba | 240 | |
8ca8a454 NC |
241 | if (pm->op_pmflags & PMf_NONDESTRUCT) { |
242 | PUSHs(dstr); | |
243 | /* From here on down we're using the copy, and leaving the | |
244 | original untouched. */ | |
245 | targ = dstr; | |
246 | } | |
247 | else { | |
9e0ea7f3 FC |
248 | SV_CHECK_THINKFIRST_COW_DROP(targ); |
249 | if (isGV(targ)) Perl_croak_no_modify(); | |
250 | SvPV_free(targ); | |
8ca8a454 NC |
251 | SvPV_set(targ, SvPVX(dstr)); |
252 | SvCUR_set(targ, SvCUR(dstr)); | |
253 | SvLEN_set(targ, SvLEN(dstr)); | |
254 | if (DO_UTF8(dstr)) | |
255 | SvUTF8_on(targ); | |
256 | SvPV_set(dstr, NULL); | |
257 | ||
52c47e16 | 258 | PL_tainted = 0; |
4f4d7508 | 259 | mPUSHi(saviters - 1); |
48c036b1 | 260 | |
8ca8a454 NC |
261 | (void)SvPOK_only_UTF8(targ); |
262 | } | |
5cd24f17 | 263 | |
20be6587 | 264 | /* update the taint state of various various variables in |
ef07e810 DM |
265 | * preparation for final exit. |
266 | * See "how taint works" above pp_subst() */ | |
284167a5 | 267 | if (TAINTING_get) { |
20be6587 DM |
268 | if ((cx->sb_rxtainted & SUBST_TAINT_PAT) || |
269 | ((cx->sb_rxtainted & (SUBST_TAINT_STR|SUBST_TAINT_RETAINT)) | |
270 | == (SUBST_TAINT_STR|SUBST_TAINT_RETAINT)) | |
271 | ) | |
272 | (RX_MATCH_TAINTED_on(rx)); /* taint $1 et al */ | |
273 | ||
274 | if (!(cx->sb_rxtainted & SUBST_TAINT_BOOLRET) | |
275 | && (cx->sb_rxtainted & (SUBST_TAINT_STR|SUBST_TAINT_PAT)) | |
276 | ) | |
277 | SvTAINTED_on(TOPs); /* taint return value */ | |
278 | /* needed for mg_set below */ | |
284167a5 S |
279 | TAINT_set( |
280 | cBOOL(cx->sb_rxtainted & | |
281 | (SUBST_TAINT_STR|SUBST_TAINT_PAT|SUBST_TAINT_REPL)) | |
282 | ); | |
20be6587 DM |
283 | SvTAINT(TARG); |
284 | } | |
285 | /* PL_tainted must be correctly set for this mg_set */ | |
286 | SvSETMAGIC(TARG); | |
287 | TAINT_NOT; | |
80d88db0 | 288 | |
8e7e33ef | 289 | CX_LEAVE_SCOPE(cx); |
a0d0e21e | 290 | POPSUBST(cx); |
5da525e9 | 291 | CX_POP(cx); |
80d88db0 | 292 | |
47c9d59f | 293 | PERL_ASYNC_CHECK(); |
a0d0e21e | 294 | RETURNOP(pm->op_next); |
e5964223 | 295 | NOT_REACHED; /* NOTREACHED */ |
a0d0e21e | 296 | } |
8e5e9ebe | 297 | cx->sb_iters = saviters; |
a0d0e21e | 298 | } |
07bc277f | 299 | if (RX_MATCH_COPIED(rx) && RX_SUBBEG(rx) != orig) { |
a0d0e21e LW |
300 | m = s; |
301 | s = orig; | |
6502e081 | 302 | assert(!RX_SUBOFFSET(rx)); |
07bc277f | 303 | cx->sb_orig = orig = RX_SUBBEG(rx); |
a0d0e21e LW |
304 | s = orig + (m - s); |
305 | cx->sb_strend = s + (cx->sb_strend - m); | |
306 | } | |
07bc277f | 307 | cx->sb_m = m = RX_OFFS(rx)[0].start + orig; |
db79b45b | 308 | if (m > s) { |
bfed75c6 | 309 | if (DO_UTF8(dstr) && !SvUTF8(cx->sb_targ)) |
4bac9ae4 | 310 | sv_catpvn_nomg_utf8_upgrade(dstr, s, m - s, nsv); |
db79b45b | 311 | else |
4bac9ae4 | 312 | sv_catpvn_nomg(dstr, s, m-s); |
db79b45b | 313 | } |
07bc277f | 314 | cx->sb_s = RX_OFFS(rx)[0].end + orig; |
084916e3 | 315 | { /* Update the pos() information. */ |
8ca8a454 NC |
316 | SV * const sv |
317 | = (pm->op_pmflags & PMf_NONDESTRUCT) ? cx->sb_dstr : cx->sb_targ; | |
084916e3 | 318 | MAGIC *mg; |
a911bb25 DM |
319 | |
320 | /* the string being matched against may no longer be a string, | |
321 | * e.g. $_=0; s/.../$_++/ge */ | |
322 | ||
323 | if (!SvPOK(sv)) | |
324 | SvPV_force_nomg_nolen(sv); | |
325 | ||
96c2a8ff FC |
326 | if (!(mg = mg_find_mglob(sv))) { |
327 | mg = sv_magicext_mglob(sv); | |
084916e3 | 328 | } |
cda67c99 | 329 | MgBYTEPOS_set(mg, sv, SvPVX(sv), m - orig); |
084916e3 | 330 | } |
988e6e7e | 331 | if (old != rx) |
d6106309 | 332 | (void)ReREFCNT_inc(rx); |
20be6587 | 333 | /* update the taint state of various various variables in preparation |
ef07e810 DM |
334 | * for calling the code block. |
335 | * See "how taint works" above pp_subst() */ | |
284167a5 | 336 | if (TAINTING_get) { |
20be6587 DM |
337 | if (RX_MATCH_TAINTED(rx)) /* run time pattern taint, eg locale */ |
338 | cx->sb_rxtainted |= SUBST_TAINT_PAT; | |
339 | ||
340 | if ((cx->sb_rxtainted & SUBST_TAINT_PAT) || | |
341 | ((cx->sb_rxtainted & (SUBST_TAINT_STR|SUBST_TAINT_RETAINT)) | |
342 | == (SUBST_TAINT_STR|SUBST_TAINT_RETAINT)) | |
343 | ) | |
344 | (RX_MATCH_TAINTED_on(rx)); /* taint $1 et al */ | |
345 | ||
346 | if (cx->sb_iters > 1 && (cx->sb_rxtainted & | |
347 | (SUBST_TAINT_STR|SUBST_TAINT_PAT|SUBST_TAINT_REPL))) | |
8ca8a454 NC |
348 | SvTAINTED_on((pm->op_pmflags & PMf_NONDESTRUCT) |
349 | ? cx->sb_dstr : cx->sb_targ); | |
20be6587 DM |
350 | TAINT_NOT; |
351 | } | |
d9f97599 | 352 | rxres_save(&cx->sb_rxres, rx); |
af9838cc | 353 | PL_curpm = pm; |
29f2e912 | 354 | RETURNOP(pm->op_pmstashstartu.op_pmreplstart); |
a0d0e21e LW |
355 | } |
356 | ||
c90c0ff4 | 357 | void |
864dbfa3 | 358 | Perl_rxres_save(pTHX_ void **rsp, REGEXP *rx) |
c90c0ff4 | 359 | { |
360 | UV *p = (UV*)*rsp; | |
361 | U32 i; | |
7918f24d NC |
362 | |
363 | PERL_ARGS_ASSERT_RXRES_SAVE; | |
96a5add6 | 364 | PERL_UNUSED_CONTEXT; |
c90c0ff4 | 365 | |
07bc277f | 366 | if (!p || p[1] < RX_NPARENS(rx)) { |
db2c6cb3 | 367 | #ifdef PERL_ANY_COW |
6502e081 | 368 | i = 7 + (RX_NPARENS(rx)+1) * 2; |
ed252734 | 369 | #else |
6502e081 | 370 | i = 6 + (RX_NPARENS(rx)+1) * 2; |
ed252734 | 371 | #endif |
c90c0ff4 | 372 | if (!p) |
a02a5408 | 373 | Newx(p, i, UV); |
c90c0ff4 | 374 | else |
375 | Renew(p, i, UV); | |
376 | *rsp = (void*)p; | |
377 | } | |
378 | ||
5eabab15 DM |
379 | /* what (if anything) to free on croak */ |
380 | *p++ = PTR2UV(RX_MATCH_COPIED(rx) ? RX_SUBBEG(rx) : NULL); | |
cf93c79d | 381 | RX_MATCH_COPIED_off(rx); |
6c31ff74 | 382 | *p++ = RX_NPARENS(rx); |
c90c0ff4 | 383 | |
db2c6cb3 | 384 | #ifdef PERL_ANY_COW |
bdd9a1b1 NC |
385 | *p++ = PTR2UV(RX_SAVED_COPY(rx)); |
386 | RX_SAVED_COPY(rx) = NULL; | |
ed252734 NC |
387 | #endif |
388 | ||
07bc277f NC |
389 | *p++ = PTR2UV(RX_SUBBEG(rx)); |
390 | *p++ = (UV)RX_SUBLEN(rx); | |
6502e081 DM |
391 | *p++ = (UV)RX_SUBOFFSET(rx); |
392 | *p++ = (UV)RX_SUBCOFFSET(rx); | |
07bc277f NC |
393 | for (i = 0; i <= RX_NPARENS(rx); ++i) { |
394 | *p++ = (UV)RX_OFFS(rx)[i].start; | |
395 | *p++ = (UV)RX_OFFS(rx)[i].end; | |
c90c0ff4 | 396 | } |
397 | } | |
398 | ||
9c105995 NC |
399 | static void |
400 | S_rxres_restore(pTHX_ void **rsp, REGEXP *rx) | |
c90c0ff4 | 401 | { |
402 | UV *p = (UV*)*rsp; | |
403 | U32 i; | |
7918f24d NC |
404 | |
405 | PERL_ARGS_ASSERT_RXRES_RESTORE; | |
96a5add6 | 406 | PERL_UNUSED_CONTEXT; |
c90c0ff4 | 407 | |
ed252734 | 408 | RX_MATCH_COPY_FREE(rx); |
cf93c79d | 409 | RX_MATCH_COPIED_set(rx, *p); |
c90c0ff4 | 410 | *p++ = 0; |
6c31ff74 | 411 | RX_NPARENS(rx) = *p++; |
c90c0ff4 | 412 | |
db2c6cb3 | 413 | #ifdef PERL_ANY_COW |
bdd9a1b1 NC |
414 | if (RX_SAVED_COPY(rx)) |
415 | SvREFCNT_dec (RX_SAVED_COPY(rx)); | |
416 | RX_SAVED_COPY(rx) = INT2PTR(SV*,*p); | |
ed252734 NC |
417 | *p++ = 0; |
418 | #endif | |
419 | ||
07bc277f NC |
420 | RX_SUBBEG(rx) = INT2PTR(char*,*p++); |
421 | RX_SUBLEN(rx) = (I32)(*p++); | |
6502e081 DM |
422 | RX_SUBOFFSET(rx) = (I32)*p++; |
423 | RX_SUBCOFFSET(rx) = (I32)*p++; | |
07bc277f NC |
424 | for (i = 0; i <= RX_NPARENS(rx); ++i) { |
425 | RX_OFFS(rx)[i].start = (I32)(*p++); | |
426 | RX_OFFS(rx)[i].end = (I32)(*p++); | |
c90c0ff4 | 427 | } |
428 | } | |
429 | ||
9c105995 NC |
430 | static void |
431 | S_rxres_free(pTHX_ void **rsp) | |
c90c0ff4 | 432 | { |
44f8325f | 433 | UV * const p = (UV*)*rsp; |
7918f24d NC |
434 | |
435 | PERL_ARGS_ASSERT_RXRES_FREE; | |
96a5add6 | 436 | PERL_UNUSED_CONTEXT; |
c90c0ff4 | 437 | |
438 | if (p) { | |
94010e71 | 439 | void *tmp = INT2PTR(char*,*p); |
6c31ff74 | 440 | #ifdef PERL_POISON |
db2c6cb3 | 441 | #ifdef PERL_ANY_COW |
6c31ff74 | 442 | U32 i = 9 + p[1] * 2; |
94010e71 | 443 | #else |
6c31ff74 | 444 | U32 i = 8 + p[1] * 2; |
94010e71 | 445 | #endif |
6c31ff74 NC |
446 | #endif |
447 | ||
db2c6cb3 | 448 | #ifdef PERL_ANY_COW |
6c31ff74 | 449 | SvREFCNT_dec (INT2PTR(SV*,p[2])); |
ed252734 | 450 | #endif |
6c31ff74 NC |
451 | #ifdef PERL_POISON |
452 | PoisonFree(p, i, sizeof(UV)); | |
453 | #endif | |
454 | ||
455 | Safefree(tmp); | |
c90c0ff4 | 456 | Safefree(p); |
4608196e | 457 | *rsp = NULL; |
c90c0ff4 | 458 | } |
459 | } | |
460 | ||
a701009a DM |
461 | #define FORM_NUM_BLANK (1<<30) |
462 | #define FORM_NUM_POINT (1<<29) | |
463 | ||
a0d0e21e LW |
464 | PP(pp_formline) |
465 | { | |
20b7effb | 466 | dSP; dMARK; dORIGMARK; |
eb578fdb | 467 | SV * const tmpForm = *++MARK; |
086b26f3 | 468 | SV *formsv; /* contains text of original format */ |
eb578fdb KW |
469 | U32 *fpc; /* format ops program counter */ |
470 | char *t; /* current append position in target string */ | |
086b26f3 | 471 | const char *f; /* current position in format string */ |
eb578fdb KW |
472 | I32 arg; |
473 | SV *sv = NULL; /* current item */ | |
086b26f3 | 474 | const char *item = NULL;/* string value of current item */ |
9b4bdfd4 DM |
475 | I32 itemsize = 0; /* length (chars) of item, possibly truncated */ |
476 | I32 itembytes = 0; /* as itemsize, but length in bytes */ | |
086b26f3 DM |
477 | I32 fieldsize = 0; /* width of current field */ |
478 | I32 lines = 0; /* number of lines that have been output */ | |
479 | bool chopspace = (strchr(PL_chopset, ' ') != NULL); /* does $: have space */ | |
480 | const char *chophere = NULL; /* where to chop current item */ | |
f5ada144 | 481 | STRLEN linemark = 0; /* pos of start of line in output */ |
65202027 | 482 | NV value; |
086b26f3 | 483 | bool gotsome = FALSE; /* seen at least one non-blank item on this line */ |
9b4bdfd4 | 484 | STRLEN len; /* length of current sv */ |
26e935cf | 485 | STRLEN linemax; /* estimate of output size in bytes */ |
1bd51a4c IH |
486 | bool item_is_utf8 = FALSE; |
487 | bool targ_is_utf8 = FALSE; | |
bd7084a6 | 488 | const char *fmt; |
74e0ddf7 | 489 | MAGIC *mg = NULL; |
4ff700b9 DM |
490 | U8 *source; /* source of bytes to append */ |
491 | STRLEN to_copy; /* how may bytes to append */ | |
ea60cfe8 | 492 | char trans; /* what chars to translate */ |
74e0ddf7 | 493 | |
3808a683 | 494 | mg = doparseform(tmpForm); |
a0d0e21e | 495 | |
74e0ddf7 | 496 | fpc = (U32*)mg->mg_ptr; |
3808a683 DM |
497 | /* the actual string the format was compiled from. |
498 | * with overload etc, this may not match tmpForm */ | |
499 | formsv = mg->mg_obj; | |
500 | ||
74e0ddf7 | 501 | |
3280af22 | 502 | SvPV_force(PL_formtarget, len); |
3808a683 | 503 | if (SvTAINTED(tmpForm) || SvTAINTED(formsv)) |
125b9982 | 504 | SvTAINTED_on(PL_formtarget); |
1bd51a4c IH |
505 | if (DO_UTF8(PL_formtarget)) |
506 | targ_is_utf8 = TRUE; | |
26e935cf DM |
507 | linemax = (SvCUR(formsv) * (IN_BYTES ? 1 : 3) + 1); |
508 | t = SvGROW(PL_formtarget, len + linemax + 1); | |
509 | /* XXX from now onwards, SvCUR(PL_formtarget) is invalid */ | |
a0d0e21e | 510 | t += len; |
3808a683 | 511 | f = SvPV_const(formsv, len); |
a0d0e21e LW |
512 | |
513 | for (;;) { | |
514 | DEBUG_f( { | |
bfed75c6 | 515 | const char *name = "???"; |
a0d0e21e LW |
516 | arg = -1; |
517 | switch (*fpc) { | |
518 | case FF_LITERAL: arg = fpc[1]; name = "LITERAL"; break; | |
519 | case FF_BLANK: arg = fpc[1]; name = "BLANK"; break; | |
520 | case FF_SKIP: arg = fpc[1]; name = "SKIP"; break; | |
521 | case FF_FETCH: arg = fpc[1]; name = "FETCH"; break; | |
522 | case FF_DECIMAL: arg = fpc[1]; name = "DECIMAL"; break; | |
523 | ||
524 | case FF_CHECKNL: name = "CHECKNL"; break; | |
525 | case FF_CHECKCHOP: name = "CHECKCHOP"; break; | |
526 | case FF_SPACE: name = "SPACE"; break; | |
527 | case FF_HALFSPACE: name = "HALFSPACE"; break; | |
528 | case FF_ITEM: name = "ITEM"; break; | |
529 | case FF_CHOP: name = "CHOP"; break; | |
530 | case FF_LINEGLOB: name = "LINEGLOB"; break; | |
531 | case FF_NEWLINE: name = "NEWLINE"; break; | |
532 | case FF_MORE: name = "MORE"; break; | |
533 | case FF_LINEMARK: name = "LINEMARK"; break; | |
534 | case FF_END: name = "END"; break; | |
bfed75c6 | 535 | case FF_0DECIMAL: name = "0DECIMAL"; break; |
a1b95068 | 536 | case FF_LINESNGL: name = "LINESNGL"; break; |
a0d0e21e LW |
537 | } |
538 | if (arg >= 0) | |
bf49b057 | 539 | PerlIO_printf(Perl_debug_log, "%-16s%ld\n", name, (long) arg); |
a0d0e21e | 540 | else |
bf49b057 | 541 | PerlIO_printf(Perl_debug_log, "%-16s\n", name); |
5f80b19c | 542 | } ); |
a0d0e21e | 543 | switch (*fpc++) { |
4a73dc0b | 544 | case FF_LINEMARK: /* start (or end) of a line */ |
f5ada144 | 545 | linemark = t - SvPVX(PL_formtarget); |
a0d0e21e LW |
546 | lines++; |
547 | gotsome = FALSE; | |
548 | break; | |
549 | ||
4a73dc0b | 550 | case FF_LITERAL: /* append <arg> literal chars */ |
ea60cfe8 DM |
551 | to_copy = *fpc++; |
552 | source = (U8 *)f; | |
553 | f += to_copy; | |
554 | trans = '~'; | |
75645721 | 555 | item_is_utf8 = targ_is_utf8 ? !!DO_UTF8(formsv) : !!SvUTF8(formsv); |
ea60cfe8 | 556 | goto append; |
a0d0e21e | 557 | |
4a73dc0b | 558 | case FF_SKIP: /* skip <arg> chars in format */ |
a0d0e21e LW |
559 | f += *fpc++; |
560 | break; | |
561 | ||
4a73dc0b | 562 | case FF_FETCH: /* get next item and set field size to <arg> */ |
a0d0e21e LW |
563 | arg = *fpc++; |
564 | f += arg; | |
565 | fieldsize = arg; | |
566 | ||
567 | if (MARK < SP) | |
568 | sv = *++MARK; | |
569 | else { | |
3280af22 | 570 | sv = &PL_sv_no; |
a2a5de95 | 571 | Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX), "Not enough format arguments"); |
a0d0e21e | 572 | } |
125b9982 NT |
573 | if (SvTAINTED(sv)) |
574 | SvTAINTED_on(PL_formtarget); | |
a0d0e21e LW |
575 | break; |
576 | ||
4a73dc0b | 577 | case FF_CHECKNL: /* find max len of item (up to \n) that fits field */ |
5a34cab7 | 578 | { |
5a34cab7 | 579 | const char *s = item = SvPV_const(sv, len); |
9b4bdfd4 DM |
580 | const char *send = s + len; |
581 | ||
582 | itemsize = 0; | |
583 | item_is_utf8 = DO_UTF8(sv); | |
584 | while (s < send) { | |
585 | if (!isCNTRL(*s)) | |
586 | gotsome = TRUE; | |
587 | else if (*s == '\n') | |
588 | break; | |
589 | ||
590 | if (item_is_utf8) | |
591 | s += UTF8SKIP(s); | |
592 | else | |
593 | s++; | |
594 | itemsize++; | |
595 | if (itemsize == fieldsize) | |
596 | break; | |
597 | } | |
598 | itembytes = s - item; | |
62db6ea5 | 599 | chophere = s; |
5a34cab7 | 600 | break; |
a0ed51b3 | 601 | } |
a0d0e21e | 602 | |
4a73dc0b | 603 | case FF_CHECKCHOP: /* like CHECKNL, but up to highest split point */ |
5a34cab7 NC |
604 | { |
605 | const char *s = item = SvPV_const(sv, len); | |
9b4bdfd4 DM |
606 | const char *send = s + len; |
607 | I32 size = 0; | |
608 | ||
609 | chophere = NULL; | |
610 | item_is_utf8 = DO_UTF8(sv); | |
611 | while (s < send) { | |
612 | /* look for a legal split position */ | |
613 | if (isSPACE(*s)) { | |
614 | if (*s == '\r') { | |
615 | chophere = s; | |
616 | itemsize = size; | |
617 | break; | |
618 | } | |
619 | if (chopspace) { | |
620 | /* provisional split point */ | |
621 | chophere = s; | |
622 | itemsize = size; | |
623 | } | |
624 | /* we delay testing fieldsize until after we've | |
625 | * processed the possible split char directly | |
626 | * following the last field char; so if fieldsize=3 | |
627 | * and item="a b cdef", we consume "a b", not "a". | |
628 | * Ditto further down. | |
629 | */ | |
630 | if (size == fieldsize) | |
631 | break; | |
632 | } | |
633 | else { | |
634 | if (strchr(PL_chopset, *s)) { | |
635 | /* provisional split point */ | |
636 | /* for a non-space split char, we include | |
637 | * the split char; hence the '+1' */ | |
638 | chophere = s + 1; | |
639 | itemsize = size; | |
640 | } | |
641 | if (size == fieldsize) | |
642 | break; | |
643 | if (!isCNTRL(*s)) | |
644 | gotsome = TRUE; | |
645 | } | |
646 | ||
647 | if (item_is_utf8) | |
648 | s += UTF8SKIP(s); | |
649 | else | |
077dbbf3 | 650 | s++; |
9b4bdfd4 DM |
651 | size++; |
652 | } | |
653 | if (!chophere || s == send) { | |
654 | chophere = s; | |
655 | itemsize = size; | |
656 | } | |
657 | itembytes = chophere - item; | |
658 | ||
5a34cab7 | 659 | break; |
a0d0e21e | 660 | } |
a0d0e21e | 661 | |
4a73dc0b | 662 | case FF_SPACE: /* append padding space (diff of field, item size) */ |
a0d0e21e LW |
663 | arg = fieldsize - itemsize; |
664 | if (arg) { | |
665 | fieldsize -= arg; | |
666 | while (arg-- > 0) | |
667 | *t++ = ' '; | |
668 | } | |
669 | break; | |
670 | ||
4a73dc0b | 671 | case FF_HALFSPACE: /* like FF_SPACE, but only append half as many */ |
a0d0e21e LW |
672 | arg = fieldsize - itemsize; |
673 | if (arg) { | |
674 | arg /= 2; | |
675 | fieldsize -= arg; | |
676 | while (arg-- > 0) | |
677 | *t++ = ' '; | |
678 | } | |
679 | break; | |
680 | ||
4a73dc0b | 681 | case FF_ITEM: /* append a text item, while blanking ctrl chars */ |
9b4bdfd4 | 682 | to_copy = itembytes; |
8aa7beb6 DM |
683 | source = (U8 *)item; |
684 | trans = 1; | |
8aa7beb6 | 685 | goto append; |
a0d0e21e | 686 | |
4a73dc0b | 687 | case FF_CHOP: /* (for ^*) chop the current item */ |
fb9282c3 | 688 | if (sv != &PL_sv_no) { |
5a34cab7 NC |
689 | const char *s = chophere; |
690 | if (chopspace) { | |
af68e756 | 691 | while (isSPACE(*s)) |
5a34cab7 NC |
692 | s++; |
693 | } | |
9b4bdfd4 DM |
694 | if (SvPOKp(sv)) |
695 | sv_chop(sv,s); | |
696 | else | |
697 | /* tied, overloaded or similar strangeness. | |
698 | * Do it the hard way */ | |
699 | sv_setpvn(sv, s, len - (s-item)); | |
5a34cab7 NC |
700 | SvSETMAGIC(sv); |
701 | break; | |
a0d0e21e | 702 | } |
a0d0e21e | 703 | |
4a73dc0b | 704 | case FF_LINESNGL: /* process ^* */ |
a1b95068 | 705 | chopspace = 0; |
c67159e1 | 706 | /* FALLTHROUGH */ |
4a73dc0b DM |
707 | |
708 | case FF_LINEGLOB: /* process @* */ | |
5a34cab7 | 709 | { |
e32383e2 | 710 | const bool oneline = fpc[-1] == FF_LINESNGL; |
5a34cab7 | 711 | const char *s = item = SvPV_const(sv, len); |
7440a75b | 712 | const char *const send = s + len; |
7440a75b | 713 | |
f3f2f1a3 | 714 | item_is_utf8 = DO_UTF8(sv); |
fb9282c3 | 715 | chophere = s + len; |
a1137ee5 | 716 | if (!len) |
7440a75b | 717 | break; |
ea60cfe8 | 718 | trans = 0; |
0d21cefe | 719 | gotsome = TRUE; |
4ff700b9 DM |
720 | source = (U8 *) s; |
721 | to_copy = len; | |
0d21cefe DM |
722 | while (s < send) { |
723 | if (*s++ == '\n') { | |
724 | if (oneline) { | |
9b4bdfd4 | 725 | to_copy = s - item - 1; |
0d21cefe DM |
726 | chophere = s; |
727 | break; | |
728 | } else { | |
729 | if (s == send) { | |
0d21cefe DM |
730 | to_copy--; |
731 | } else | |
732 | lines++; | |
1bd51a4c | 733 | } |
a0d0e21e | 734 | } |
0d21cefe | 735 | } |
a2c0032b DM |
736 | } |
737 | ||
ea60cfe8 DM |
738 | append: |
739 | /* append to_copy bytes from source to PL_formstring. | |
740 | * item_is_utf8 implies source is utf8. | |
741 | * if trans, translate certain characters during the copy */ | |
a2c0032b DM |
742 | { |
743 | U8 *tmp = NULL; | |
26e935cf | 744 | STRLEN grow = 0; |
0325ce87 DM |
745 | |
746 | SvCUR_set(PL_formtarget, | |
747 | t - SvPVX_const(PL_formtarget)); | |
748 | ||
0d21cefe DM |
749 | if (targ_is_utf8 && !item_is_utf8) { |
750 | source = tmp = bytes_to_utf8(source, &to_copy); | |
0d21cefe DM |
751 | } else { |
752 | if (item_is_utf8 && !targ_is_utf8) { | |
f5ada144 | 753 | U8 *s; |
0d21cefe | 754 | /* Upgrade targ to UTF8, and then we reduce it to |
0325ce87 DM |
755 | a problem we have a simple solution for. |
756 | Don't need get magic. */ | |
0d21cefe | 757 | sv_utf8_upgrade_nomg(PL_formtarget); |
0325ce87 | 758 | targ_is_utf8 = TRUE; |
f5ada144 DM |
759 | /* re-calculate linemark */ |
760 | s = (U8*)SvPVX(PL_formtarget); | |
26e935cf DM |
761 | /* the bytes we initially allocated to append the |
762 | * whole line may have been gobbled up during the | |
763 | * upgrade, so allocate a whole new line's worth | |
764 | * for safety */ | |
765 | grow = linemax; | |
f5ada144 DM |
766 | while (linemark--) |
767 | s += UTF8SKIP(s); | |
768 | linemark = s - (U8*)SvPVX(PL_formtarget); | |
e8e72d41 | 769 | } |
0d21cefe DM |
770 | /* Easy. They agree. */ |
771 | assert (item_is_utf8 == targ_is_utf8); | |
772 | } | |
26e935cf DM |
773 | if (!trans) |
774 | /* @* and ^* are the only things that can exceed | |
775 | * the linemax, so grow by the output size, plus | |
776 | * a whole new form's worth in case of any further | |
777 | * output */ | |
778 | grow = linemax + to_copy; | |
779 | if (grow) | |
780 | SvGROW(PL_formtarget, SvCUR(PL_formtarget) + grow + 1); | |
0d21cefe DM |
781 | t = SvPVX(PL_formtarget) + SvCUR(PL_formtarget); |
782 | ||
783 | Copy(source, t, to_copy, char); | |
ea60cfe8 | 784 | if (trans) { |
8aa7beb6 DM |
785 | /* blank out ~ or control chars, depending on trans. |
786 | * works on bytes not chars, so relies on not | |
787 | * matching utf8 continuation bytes */ | |
ea60cfe8 DM |
788 | U8 *s = (U8*)t; |
789 | U8 *send = s + to_copy; | |
790 | while (s < send) { | |
8aa7beb6 | 791 | const int ch = *s; |
077dbbf3 | 792 | if (trans == '~' ? (ch == '~') : isCNTRL(ch)) |
ea60cfe8 DM |
793 | *s = ' '; |
794 | s++; | |
795 | } | |
796 | } | |
797 | ||
0d21cefe DM |
798 | t += to_copy; |
799 | SvCUR_set(PL_formtarget, SvCUR(PL_formtarget) + to_copy); | |
a1137ee5 | 800 | if (tmp) |
0d21cefe | 801 | Safefree(tmp); |
5a34cab7 | 802 | break; |
a0d0e21e | 803 | } |
a0d0e21e | 804 | |
4a73dc0b | 805 | case FF_0DECIMAL: /* like FF_DECIMAL but for 0### */ |
a0d0e21e | 806 | arg = *fpc++; |
bd7084a6 | 807 | fmt = (const char *) |
a029fa42 | 808 | ((arg & FORM_NUM_POINT) ? "%#0*.*" NVff : "%0*.*" NVff); |
bd7084a6 | 809 | goto ff_dec; |
5d37acd6 | 810 | |
bd7084a6 DM |
811 | case FF_DECIMAL: /* do @##, ^##, where <arg>=(precision|flags) */ |
812 | arg = *fpc++; | |
bd7084a6 | 813 | fmt = (const char *) |
a029fa42 | 814 | ((arg & FORM_NUM_POINT) ? "%#*.*" NVff : "%*.*" NVff); |
bd7084a6 | 815 | ff_dec: |
784707d5 JP |
816 | /* If the field is marked with ^ and the value is undefined, |
817 | blank it out. */ | |
a701009a | 818 | if ((arg & FORM_NUM_BLANK) && !SvOK(sv)) { |
784707d5 JP |
819 | arg = fieldsize; |
820 | while (arg--) | |
821 | *t++ = ' '; | |
822 | break; | |
823 | } | |
824 | gotsome = TRUE; | |
825 | value = SvNV(sv); | |
a1b95068 | 826 | /* overflow evidence */ |
bfed75c6 | 827 | if (num_overflow(value, fieldsize, arg)) { |
a1b95068 WL |
828 | arg = fieldsize; |
829 | while (arg--) | |
830 | *t++ = '#'; | |
831 | break; | |
832 | } | |
784707d5 JP |
833 | /* Formats aren't yet marked for locales, so assume "yes". */ |
834 | { | |
e8549682 JH |
835 | Size_t max = SvLEN(PL_formtarget) - (t - SvPVX(PL_formtarget)); |
836 | int len; | |
67d796ae KW |
837 | DECLARATION_FOR_LC_NUMERIC_MANIPULATION; |
838 | STORE_LC_NUMERIC_SET_TO_NEEDED(); | |
51f14a05 | 839 | arg &= ~(FORM_NUM_POINT|FORM_NUM_BLANK); |
a4eca1d4 JH |
840 | #ifdef USE_QUADMATH |
841 | { | |
842 | const char* qfmt = quadmath_format_single(fmt); | |
843 | int len; | |
844 | if (!qfmt) | |
845 | Perl_croak_nocontext("panic: quadmath invalid format \"%s\"", fmt); | |
846 | len = quadmath_snprintf(t, max, qfmt, (int) fieldsize, (int) arg, value); | |
847 | if (len == -1) | |
848 | Perl_croak_nocontext("panic: quadmath_snprintf failed, format \"%s\"", qfmt); | |
849 | if (qfmt != fmt) | |
850 | Safefree(fmt); | |
851 | } | |
852 | #else | |
b587c0e8 DM |
853 | /* we generate fmt ourselves so it is safe */ |
854 | GCC_DIAG_IGNORE(-Wformat-nonliteral); | |
e8549682 | 855 | len = my_snprintf(t, max, fmt, (int) fieldsize, (int) arg, value); |
b587c0e8 | 856 | GCC_DIAG_RESTORE; |
a4eca1d4 JH |
857 | #endif |
858 | PERL_MY_SNPRINTF_POST_GUARD(len, max); | |
a2287a13 | 859 | RESTORE_LC_NUMERIC(); |
784707d5 JP |
860 | } |
861 | t += fieldsize; | |
862 | break; | |
a1b95068 | 863 | |
4a73dc0b | 864 | case FF_NEWLINE: /* delete trailing spaces, then append \n */ |
a0d0e21e | 865 | f++; |
f5ada144 | 866 | while (t-- > (SvPVX(PL_formtarget) + linemark) && *t == ' ') ; |
a0d0e21e LW |
867 | t++; |
868 | *t++ = '\n'; | |
869 | break; | |
870 | ||
4a73dc0b | 871 | case FF_BLANK: /* for arg==0: do '~'; for arg>0 : do '~~' */ |
a0d0e21e LW |
872 | arg = *fpc++; |
873 | if (gotsome) { | |
874 | if (arg) { /* repeat until fields exhausted? */ | |
11f9eeaf DM |
875 | fpc--; |
876 | goto end; | |
a0d0e21e LW |
877 | } |
878 | } | |
879 | else { | |
f5ada144 | 880 | t = SvPVX(PL_formtarget) + linemark; |
a0d0e21e LW |
881 | lines--; |
882 | } | |
883 | break; | |
884 | ||
4a73dc0b | 885 | case FF_MORE: /* replace long end of string with '...' */ |
5a34cab7 NC |
886 | { |
887 | const char *s = chophere; | |
888 | const char *send = item + len; | |
889 | if (chopspace) { | |
af68e756 | 890 | while (isSPACE(*s) && (s < send)) |
5a34cab7 | 891 | s++; |
a0d0e21e | 892 | } |
5a34cab7 NC |
893 | if (s < send) { |
894 | char *s1; | |
895 | arg = fieldsize - itemsize; | |
896 | if (arg) { | |
897 | fieldsize -= arg; | |
898 | while (arg-- > 0) | |
899 | *t++ = ' '; | |
900 | } | |
901 | s1 = t - 3; | |
902 | if (strnEQ(s1," ",3)) { | |
903 | while (s1 > SvPVX_const(PL_formtarget) && isSPACE(s1[-1])) | |
904 | s1--; | |
905 | } | |
906 | *s1++ = '.'; | |
907 | *s1++ = '.'; | |
908 | *s1++ = '.'; | |
a0d0e21e | 909 | } |
5a34cab7 | 910 | break; |
a0d0e21e | 911 | } |
4a73dc0b DM |
912 | |
913 | case FF_END: /* tidy up, then return */ | |
11f9eeaf | 914 | end: |
bf2bec63 | 915 | assert(t < SvPVX_const(PL_formtarget) + SvLEN(PL_formtarget)); |
a0d0e21e | 916 | *t = '\0'; |
b15aece3 | 917 | SvCUR_set(PL_formtarget, t - SvPVX_const(PL_formtarget)); |
1bd51a4c IH |
918 | if (targ_is_utf8) |
919 | SvUTF8_on(PL_formtarget); | |
3280af22 | 920 | FmLINES(PL_formtarget) += lines; |
a0d0e21e | 921 | SP = ORIGMARK; |
11f9eeaf DM |
922 | if (fpc[-1] == FF_BLANK) |
923 | RETURNOP(cLISTOP->op_first); | |
924 | else | |
925 | RETPUSHYES; | |
a0d0e21e LW |
926 | } |
927 | } | |
928 | } | |
929 | ||
930 | PP(pp_grepstart) | |
931 | { | |
20b7effb | 932 | dSP; |
a0d0e21e LW |
933 | SV *src; |
934 | ||
6cae08a8 | 935 | if (PL_stack_base + TOPMARK == SP) { |
a0d0e21e | 936 | (void)POPMARK; |
54310121 | 937 | if (GIMME_V == G_SCALAR) |
6e449a3a | 938 | mXPUSHi(0); |
533c011a | 939 | RETURNOP(PL_op->op_next->op_next); |
a0d0e21e | 940 | } |
6cae08a8 | 941 | PL_stack_sp = PL_stack_base + TOPMARK + 1; |
897d3989 NC |
942 | Perl_pp_pushmark(aTHX); /* push dst */ |
943 | Perl_pp_pushmark(aTHX); /* push src */ | |
d343c3ef | 944 | ENTER_with_name("grep"); /* enter outer scope */ |
a0d0e21e LW |
945 | |
946 | SAVETMPS; | |
ffd49c98 | 947 | SAVE_DEFSV; |
d343c3ef | 948 | ENTER_with_name("grep_item"); /* enter inner scope */ |
7766f137 | 949 | SAVEVPTR(PL_curpm); |
a0d0e21e | 950 | |
6cae08a8 | 951 | src = PL_stack_base[TOPMARK]; |
60779a30 | 952 | if (SvPADTMP(src)) { |
6cae08a8 | 953 | src = PL_stack_base[TOPMARK] = sv_mortalcopy(src); |
a0ed822e FC |
954 | PL_tmps_floor++; |
955 | } | |
a0d0e21e | 956 | SvTEMP_off(src); |
ffd49c98 | 957 | DEFSV_set(src); |
a0d0e21e LW |
958 | |
959 | PUTBACK; | |
533c011a | 960 | if (PL_op->op_type == OP_MAPSTART) |
897d3989 | 961 | Perl_pp_pushmark(aTHX); /* push top */ |
533c011a | 962 | return ((LOGOP*)PL_op->op_next)->op_other; |
a0d0e21e LW |
963 | } |
964 | ||
a0d0e21e LW |
965 | PP(pp_mapwhile) |
966 | { | |
20b7effb | 967 | dSP; |
f54cb97a | 968 | const I32 gimme = GIMME_V; |
6cae08a8 | 969 | I32 items = (SP - PL_stack_base) - TOPMARK; /* how many new items */ |
a0d0e21e LW |
970 | I32 count; |
971 | I32 shift; | |
972 | SV** src; | |
ac27b0f5 | 973 | SV** dst; |
a0d0e21e | 974 | |
544f3153 | 975 | /* first, move source pointer to the next item in the source list */ |
3280af22 | 976 | ++PL_markstack_ptr[-1]; |
544f3153 GS |
977 | |
978 | /* if there are new items, push them into the destination list */ | |
4c90a460 | 979 | if (items && gimme != G_VOID) { |
544f3153 GS |
980 | /* might need to make room back there first */ |
981 | if (items > PL_markstack_ptr[-1] - PL_markstack_ptr[-2]) { | |
982 | /* XXX this implementation is very pessimal because the stack | |
983 | * is repeatedly extended for every set of items. Is possible | |
984 | * to do this without any stack extension or copying at all | |
985 | * by maintaining a separate list over which the map iterates | |
18ef8bea | 986 | * (like foreach does). --gsar */ |
544f3153 GS |
987 | |
988 | /* everything in the stack after the destination list moves | |
989 | * towards the end the stack by the amount of room needed */ | |
990 | shift = items - (PL_markstack_ptr[-1] - PL_markstack_ptr[-2]); | |
991 | ||
992 | /* items to shift up (accounting for the moved source pointer) */ | |
993 | count = (SP - PL_stack_base) - (PL_markstack_ptr[-1] - 1); | |
18ef8bea BT |
994 | |
995 | /* This optimization is by Ben Tilly and it does | |
996 | * things differently from what Sarathy (gsar) | |
997 | * is describing. The downside of this optimization is | |
998 | * that leaves "holes" (uninitialized and hopefully unused areas) | |
999 | * to the Perl stack, but on the other hand this | |
1000 | * shouldn't be a problem. If Sarathy's idea gets | |
1001 | * implemented, this optimization should become | |
1002 | * irrelevant. --jhi */ | |
1003 | if (shift < count) | |
1004 | shift = count; /* Avoid shifting too often --Ben Tilly */ | |
bfed75c6 | 1005 | |
924508f0 GS |
1006 | EXTEND(SP,shift); |
1007 | src = SP; | |
1008 | dst = (SP += shift); | |
3280af22 NIS |
1009 | PL_markstack_ptr[-1] += shift; |
1010 | *PL_markstack_ptr += shift; | |
544f3153 | 1011 | while (count--) |
a0d0e21e LW |
1012 | *dst-- = *src--; |
1013 | } | |
544f3153 | 1014 | /* copy the new items down to the destination list */ |
ac27b0f5 | 1015 | dst = PL_stack_base + (PL_markstack_ptr[-2] += items) - 1; |
22023b26 | 1016 | if (gimme == G_ARRAY) { |
b2a2a901 DM |
1017 | /* add returned items to the collection (making mortal copies |
1018 | * if necessary), then clear the current temps stack frame | |
1019 | * *except* for those items. We do this splicing the items | |
1020 | * into the start of the tmps frame (so some items may be on | |
59d53fd6 | 1021 | * the tmps stack twice), then moving PL_tmps_floor above |
b2a2a901 DM |
1022 | * them, then freeing the frame. That way, the only tmps that |
1023 | * accumulate over iterations are the return values for map. | |
1024 | * We have to do to this way so that everything gets correctly | |
1025 | * freed if we die during the map. | |
1026 | */ | |
1027 | I32 tmpsbase; | |
1028 | I32 i = items; | |
1029 | /* make space for the slice */ | |
1030 | EXTEND_MORTAL(items); | |
1031 | tmpsbase = PL_tmps_floor + 1; | |
1032 | Move(PL_tmps_stack + tmpsbase, | |
1033 | PL_tmps_stack + tmpsbase + items, | |
1034 | PL_tmps_ix - PL_tmps_floor, | |
1035 | SV*); | |
1036 | PL_tmps_ix += items; | |
1037 | ||
1038 | while (i-- > 0) { | |
1039 | SV *sv = POPs; | |
1040 | if (!SvTEMP(sv)) | |
1041 | sv = sv_mortalcopy(sv); | |
1042 | *dst-- = sv; | |
1043 | PL_tmps_stack[tmpsbase++] = SvREFCNT_inc_simple(sv); | |
1044 | } | |
1045 | /* clear the stack frame except for the items */ | |
1046 | PL_tmps_floor += items; | |
1047 | FREETMPS; | |
1048 | /* FREETMPS may have cleared the TEMP flag on some of the items */ | |
1049 | i = items; | |
1050 | while (i-- > 0) | |
1051 | SvTEMP_on(PL_tmps_stack[--tmpsbase]); | |
22023b26 | 1052 | } |
bfed75c6 | 1053 | else { |
22023b26 TP |
1054 | /* scalar context: we don't care about which values map returns |
1055 | * (we use undef here). And so we certainly don't want to do mortal | |
1056 | * copies of meaningless values. */ | |
1057 | while (items-- > 0) { | |
b988aa42 | 1058 | (void)POPs; |
22023b26 TP |
1059 | *dst-- = &PL_sv_undef; |
1060 | } | |
b2a2a901 | 1061 | FREETMPS; |
22023b26 | 1062 | } |
a0d0e21e | 1063 | } |
b2a2a901 DM |
1064 | else { |
1065 | FREETMPS; | |
1066 | } | |
d343c3ef | 1067 | LEAVE_with_name("grep_item"); /* exit inner scope */ |
a0d0e21e LW |
1068 | |
1069 | /* All done yet? */ | |
6cae08a8 | 1070 | if (PL_markstack_ptr[-1] > TOPMARK) { |
a0d0e21e LW |
1071 | |
1072 | (void)POPMARK; /* pop top */ | |
d343c3ef | 1073 | LEAVE_with_name("grep"); /* exit outer scope */ |
a0d0e21e | 1074 | (void)POPMARK; /* pop src */ |
3280af22 | 1075 | items = --*PL_markstack_ptr - PL_markstack_ptr[-1]; |
a0d0e21e | 1076 | (void)POPMARK; /* pop dst */ |
3280af22 | 1077 | SP = PL_stack_base + POPMARK; /* pop original mark */ |
54310121 | 1078 | if (gimme == G_SCALAR) { |
7cc47870 RGS |
1079 | dTARGET; |
1080 | XPUSHi(items); | |
a0d0e21e | 1081 | } |
54310121 | 1082 | else if (gimme == G_ARRAY) |
1083 | SP += items; | |
a0d0e21e LW |
1084 | RETURN; |
1085 | } | |
1086 | else { | |
1087 | SV *src; | |
1088 | ||
d343c3ef | 1089 | ENTER_with_name("grep_item"); /* enter inner scope */ |
7766f137 | 1090 | SAVEVPTR(PL_curpm); |
a0d0e21e | 1091 | |
544f3153 | 1092 | /* set $_ to the new source item */ |
3280af22 | 1093 | src = PL_stack_base[PL_markstack_ptr[-1]]; |
60779a30 | 1094 | if (SvPADTMP(src)) { |
60779a30 DM |
1095 | src = sv_mortalcopy(src); |
1096 | } | |
a0d0e21e | 1097 | SvTEMP_off(src); |
ffd49c98 | 1098 | DEFSV_set(src); |
a0d0e21e LW |
1099 | |
1100 | RETURNOP(cLOGOP->op_other); | |
1101 | } | |
1102 | } | |
1103 | ||
a0d0e21e LW |
1104 | /* Range stuff. */ |
1105 | ||
1106 | PP(pp_range) | |
1107 | { | |
82334630 | 1108 | if (GIMME_V == G_ARRAY) |
1a67a97c | 1109 | return NORMAL; |
538573f7 | 1110 | if (SvTRUEx(PAD_SV(PL_op->op_targ))) |
1a67a97c | 1111 | return cLOGOP->op_other; |
538573f7 | 1112 | else |
1a67a97c | 1113 | return NORMAL; |
a0d0e21e LW |
1114 | } |
1115 | ||
1116 | PP(pp_flip) | |
1117 | { | |
39644a26 | 1118 | dSP; |
a0d0e21e | 1119 | |
82334630 | 1120 | if (GIMME_V == G_ARRAY) { |
1a67a97c | 1121 | RETURNOP(((LOGOP*)cUNOP->op_first)->op_other); |
a0d0e21e LW |
1122 | } |
1123 | else { | |
1124 | dTOPss; | |
44f8325f | 1125 | SV * const targ = PAD_SV(PL_op->op_targ); |
bfed75c6 | 1126 | int flip = 0; |
790090df | 1127 | |
bfed75c6 | 1128 | if (PL_op->op_private & OPpFLIP_LINENUM) { |
4e3399f9 YST |
1129 | if (GvIO(PL_last_in_gv)) { |
1130 | flip = SvIV(sv) == (IV)IoLINES(GvIOp(PL_last_in_gv)); | |
1131 | } | |
1132 | else { | |
fafc274c | 1133 | GV * const gv = gv_fetchpvs(".", GV_ADD|GV_NOTQUAL, SVt_PV); |
44f8325f AL |
1134 | if (gv && GvSV(gv)) |
1135 | flip = SvIV(sv) == SvIV(GvSV(gv)); | |
4e3399f9 | 1136 | } |
bfed75c6 AL |
1137 | } else { |
1138 | flip = SvTRUE(sv); | |
1139 | } | |
1140 | if (flip) { | |
a0d0e21e | 1141 | sv_setiv(PAD_SV(cUNOP->op_first->op_targ), 1); |
533c011a | 1142 | if (PL_op->op_flags & OPf_SPECIAL) { |
a0d0e21e | 1143 | sv_setiv(targ, 1); |
3e3baf6d | 1144 | SETs(targ); |
a0d0e21e LW |
1145 | RETURN; |
1146 | } | |
1147 | else { | |
1148 | sv_setiv(targ, 0); | |
924508f0 | 1149 | SP--; |
1a67a97c | 1150 | RETURNOP(((LOGOP*)cUNOP->op_first)->op_other); |
a0d0e21e LW |
1151 | } |
1152 | } | |
76f68e9b | 1153 | sv_setpvs(TARG, ""); |
a0d0e21e LW |
1154 | SETs(targ); |
1155 | RETURN; | |
1156 | } | |
1157 | } | |
1158 | ||
8e9bbdb9 RGS |
1159 | /* This code tries to decide if "$left .. $right" should use the |
1160 | magical string increment, or if the range is numeric (we make | |
1161 | an exception for .."0" [#18165]). AMS 20021031. */ | |
1162 | ||
1163 | #define RANGE_IS_NUMERIC(left,right) ( \ | |
b0e74086 RGS |
1164 | SvNIOKp(left) || (SvOK(left) && !SvPOKp(left)) || \ |
1165 | SvNIOKp(right) || (SvOK(right) && !SvPOKp(right)) || \ | |
e0ab1c0e | 1166 | (((!SvOK(left) && SvOK(right)) || ((!SvOK(left) || \ |
b15aece3 | 1167 | looks_like_number(left)) && SvPOKp(left) && *SvPVX_const(left) != '0')) \ |
e0ab1c0e | 1168 | && (!SvOK(right) || looks_like_number(right)))) |
8e9bbdb9 | 1169 | |
a0d0e21e LW |
1170 | PP(pp_flop) |
1171 | { | |
20b7effb | 1172 | dSP; |
a0d0e21e | 1173 | |
82334630 | 1174 | if (GIMME_V == G_ARRAY) { |
a0d0e21e | 1175 | dPOPPOPssrl; |
86cb7173 | 1176 | |
5b295bef RD |
1177 | SvGETMAGIC(left); |
1178 | SvGETMAGIC(right); | |
a0d0e21e | 1179 | |
8e9bbdb9 | 1180 | if (RANGE_IS_NUMERIC(left,right)) { |
b262c4c9 | 1181 | IV i, j, n; |
4d91eccc FC |
1182 | if ((SvOK(left) && !SvIOK(left) && SvNV_nomg(left) < IV_MIN) || |
1183 | (SvOK(right) && (SvIOK(right) | |
1184 | ? SvIsUV(right) && SvUV(right) > IV_MAX | |
1185 | : SvNV_nomg(right) > IV_MAX))) | |
d470f89e | 1186 | DIE(aTHX_ "Range iterator outside integer range"); |
f52e41ad | 1187 | i = SvIV_nomg(left); |
b262c4c9 JH |
1188 | j = SvIV_nomg(right); |
1189 | if (j >= i) { | |
1190 | /* Dance carefully around signed max. */ | |
1191 | bool overflow = (i <= 0 && j > SSize_t_MAX + i - 1); | |
1192 | if (!overflow) { | |
1193 | n = j - i + 1; | |
1194 | /* The wraparound of signed integers is undefined | |
1195 | * behavior, but here we aim for count >=1, and | |
1196 | * negative count is just wrong. */ | |
a1e27170 TC |
1197 | if (n < 1 |
1198 | #if IVSIZE > Size_t_size | |
1199 | || n > SSize_t_MAX | |
1200 | #endif | |
1201 | ) | |
b262c4c9 JH |
1202 | overflow = TRUE; |
1203 | } | |
1204 | if (overflow) | |
1205 | Perl_croak(aTHX_ "Out of memory during list extend"); | |
1206 | EXTEND_MORTAL(n); | |
1207 | EXTEND(SP, n); | |
bbce6d69 | 1208 | } |
c1ab3db2 | 1209 | else |
b262c4c9 JH |
1210 | n = 0; |
1211 | while (n--) { | |
fc01cab4 | 1212 | SV * const sv = sv_2mortal(newSViv(i)); |
a0d0e21e | 1213 | PUSHs(sv); |
fc01cab4 DM |
1214 | if (n) /* avoid incrementing above IV_MAX */ |
1215 | i++; | |
a0d0e21e LW |
1216 | } |
1217 | } | |
1218 | else { | |
3c323193 FC |
1219 | STRLEN len, llen; |
1220 | const char * const lpv = SvPV_nomg_const(left, llen); | |
f52e41ad | 1221 | const char * const tmps = SvPV_nomg_const(right, len); |
a0d0e21e | 1222 | |
3c323193 | 1223 | SV *sv = newSVpvn_flags(lpv, llen, SvUTF8(left)|SVs_TEMP); |
89ea2908 | 1224 | while (!SvNIOKp(sv) && SvCUR(sv) <= len) { |
a0d0e21e | 1225 | XPUSHs(sv); |
b15aece3 | 1226 | if (strEQ(SvPVX_const(sv),tmps)) |
89ea2908 | 1227 | break; |
a0d0e21e LW |
1228 | sv = sv_2mortal(newSVsv(sv)); |
1229 | sv_inc(sv); | |
1230 | } | |
a0d0e21e LW |
1231 | } |
1232 | } | |
1233 | else { | |
1234 | dTOPss; | |
901017d6 | 1235 | SV * const targ = PAD_SV(cUNOP->op_first->op_targ); |
4e3399f9 | 1236 | int flop = 0; |
a0d0e21e | 1237 | sv_inc(targ); |
4e3399f9 YST |
1238 | |
1239 | if (PL_op->op_private & OPpFLIP_LINENUM) { | |
1240 | if (GvIO(PL_last_in_gv)) { | |
1241 | flop = SvIV(sv) == (IV)IoLINES(GvIOp(PL_last_in_gv)); | |
1242 | } | |
1243 | else { | |
fafc274c | 1244 | GV * const gv = gv_fetchpvs(".", GV_ADD|GV_NOTQUAL, SVt_PV); |
4e3399f9 YST |
1245 | if (gv && GvSV(gv)) flop = SvIV(sv) == SvIV(GvSV(gv)); |
1246 | } | |
1247 | } | |
1248 | else { | |
1249 | flop = SvTRUE(sv); | |
1250 | } | |
1251 | ||
1252 | if (flop) { | |
a0d0e21e | 1253 | sv_setiv(PAD_SV(((UNOP*)cUNOP->op_first)->op_first->op_targ), 0); |
396482e1 | 1254 | sv_catpvs(targ, "E0"); |
a0d0e21e LW |
1255 | } |
1256 | SETs(targ); | |
1257 | } | |
1258 | ||
1259 | RETURN; | |
1260 | } | |
1261 | ||
1262 | /* Control. */ | |
1263 | ||
27da23d5 | 1264 | static const char * const context_name[] = { |
515afda2 | 1265 | "pseudo-block", |
f31522f3 | 1266 | NULL, /* CXt_WHEN never actually needs "block" */ |
76753e7f | 1267 | NULL, /* CXt_BLOCK never actually needs "block" */ |
f31522f3 | 1268 | NULL, /* CXt_GIVEN never actually needs "block" */ |
76753e7f | 1269 | NULL, /* CXt_LOOP_PLAIN never actually needs "loop" */ |
76753e7f | 1270 | NULL, /* CXt_LOOP_LAZYIV never actually needs "loop" */ |
93661e56 DM |
1271 | NULL, /* CXt_LOOP_LAZYSV never actually needs "loop" */ |
1272 | NULL, /* CXt_LOOP_LIST never actually needs "loop" */ | |
1273 | NULL, /* CXt_LOOP_ARY never actually needs "loop" */ | |
515afda2 | 1274 | "subroutine", |
76753e7f | 1275 | "format", |
515afda2 | 1276 | "eval", |
515afda2 | 1277 | "substitution", |
515afda2 NC |
1278 | }; |
1279 | ||
76e3520e | 1280 | STATIC I32 |
5db1eb8d | 1281 | S_dopoptolabel(pTHX_ const char *label, STRLEN len, U32 flags) |
a0d0e21e | 1282 | { |
eb578fdb | 1283 | I32 i; |
a0d0e21e | 1284 | |
7918f24d NC |
1285 | PERL_ARGS_ASSERT_DOPOPTOLABEL; |
1286 | ||
a0d0e21e | 1287 | for (i = cxstack_ix; i >= 0; i--) { |
eb578fdb | 1288 | const PERL_CONTEXT * const cx = &cxstack[i]; |
6b35e009 | 1289 | switch (CxTYPE(cx)) { |
a0d0e21e | 1290 | case CXt_SUBST: |
a0d0e21e | 1291 | case CXt_SUB: |
7766f137 | 1292 | case CXt_FORMAT: |
a0d0e21e | 1293 | case CXt_EVAL: |
0a753a76 | 1294 | case CXt_NULL: |
dcbac5bb | 1295 | /* diag_listed_as: Exiting subroutine via %s */ |
a2a5de95 NC |
1296 | Perl_ck_warner(aTHX_ packWARN(WARN_EXITING), "Exiting %s via %s", |
1297 | context_name[CxTYPE(cx)], OP_NAME(PL_op)); | |
79646418 | 1298 | if (CxTYPE(cx) == CXt_NULL) /* sort BLOCK */ |
515afda2 NC |
1299 | return -1; |
1300 | break; | |
93661e56 | 1301 | case CXt_LOOP_PLAIN: |
c6fdafd0 | 1302 | case CXt_LOOP_LAZYIV: |
d01136d6 | 1303 | case CXt_LOOP_LAZYSV: |
93661e56 DM |
1304 | case CXt_LOOP_LIST: |
1305 | case CXt_LOOP_ARY: | |
7e8f1eac | 1306 | { |
5db1eb8d BF |
1307 | STRLEN cx_label_len = 0; |
1308 | U32 cx_label_flags = 0; | |
1309 | const char *cx_label = CxLABEL_len_flags(cx, &cx_label_len, &cx_label_flags); | |
1310 | if (!cx_label || !( | |
1311 | ( (cx_label_flags & SVf_UTF8) != (flags & SVf_UTF8) ) ? | |
1312 | (flags & SVf_UTF8) | |
1313 | ? (bytes_cmp_utf8( | |
1314 | (const U8*)cx_label, cx_label_len, | |
1315 | (const U8*)label, len) == 0) | |
1316 | : (bytes_cmp_utf8( | |
1317 | (const U8*)label, len, | |
1318 | (const U8*)cx_label, cx_label_len) == 0) | |
eade7155 BF |
1319 | : (len == cx_label_len && ((cx_label == label) |
1320 | || memEQ(cx_label, label, len))) )) { | |
1c98cc53 | 1321 | DEBUG_l(Perl_deb(aTHX_ "(poptolabel(): skipping label at cx=%ld %s)\n", |
7e8f1eac | 1322 | (long)i, cx_label)); |
a0d0e21e LW |
1323 | continue; |
1324 | } | |
1c98cc53 | 1325 | DEBUG_l( Perl_deb(aTHX_ "(poptolabel(): found label at cx=%ld %s)\n", (long)i, label)); |
a0d0e21e | 1326 | return i; |
7e8f1eac | 1327 | } |
a0d0e21e LW |
1328 | } |
1329 | } | |
1330 | return i; | |
1331 | } | |
1332 | ||
0d863452 RH |
1333 | |
1334 | ||
e50aee73 | 1335 | I32 |
864dbfa3 | 1336 | Perl_dowantarray(pTHX) |
e50aee73 | 1337 | { |
f54cb97a | 1338 | const I32 gimme = block_gimme(); |
54310121 | 1339 | return (gimme == G_VOID) ? G_SCALAR : gimme; |
1340 | } | |
1341 | ||
1342 | I32 | |
864dbfa3 | 1343 | Perl_block_gimme(pTHX) |
54310121 | 1344 | { |
06b5626a | 1345 | const I32 cxix = dopoptosub(cxstack_ix); |
a05700a8 | 1346 | U8 gimme; |
e50aee73 | 1347 | if (cxix < 0) |
46fc3d4c | 1348 | return G_VOID; |
e50aee73 | 1349 | |
a05700a8 DM |
1350 | gimme = (cxstack[cxix].blk_gimme & G_WANT); |
1351 | if (!gimme) | |
1352 | Perl_croak(aTHX_ "panic: bad gimme: %d\n", gimme); | |
1353 | return gimme; | |
e50aee73 AD |
1354 | } |
1355 | ||
a05700a8 | 1356 | |
78f9721b SM |
1357 | I32 |
1358 | Perl_is_lvalue_sub(pTHX) | |
1359 | { | |
06b5626a | 1360 | const I32 cxix = dopoptosub(cxstack_ix); |
78f9721b SM |
1361 | assert(cxix >= 0); /* We should only be called from inside subs */ |
1362 | ||
bafb2adc NC |
1363 | if (CxLVAL(cxstack + cxix) && CvLVALUE(cxstack[cxix].blk_sub.cv)) |
1364 | return CxLVAL(cxstack + cxix); | |
78f9721b SM |
1365 | else |
1366 | return 0; | |
1367 | } | |
1368 | ||
777d9014 FC |
1369 | /* only used by PUSHSUB */ |
1370 | I32 | |
1371 | Perl_was_lvalue_sub(pTHX) | |
1372 | { | |
777d9014 FC |
1373 | const I32 cxix = dopoptosub(cxstack_ix-1); |
1374 | assert(cxix >= 0); /* We should only be called from inside subs */ | |
1375 | ||
1376 | if (CxLVAL(cxstack + cxix) && CvLVALUE(cxstack[cxix].blk_sub.cv)) | |
1377 | return CxLVAL(cxstack + cxix); | |
1378 | else | |
1379 | return 0; | |
1380 | } | |
1381 | ||
76e3520e | 1382 | STATIC I32 |
901017d6 | 1383 | S_dopoptosub_at(pTHX_ const PERL_CONTEXT *cxstk, I32 startingblock) |
2c375eb9 | 1384 | { |
a0d0e21e | 1385 | I32 i; |
7918f24d NC |
1386 | |
1387 | PERL_ARGS_ASSERT_DOPOPTOSUB_AT; | |
81611534 JH |
1388 | #ifndef DEBUGGING |
1389 | PERL_UNUSED_CONTEXT; | |
1390 | #endif | |
7918f24d | 1391 | |
a0d0e21e | 1392 | for (i = startingblock; i >= 0; i--) { |
eb578fdb | 1393 | const PERL_CONTEXT * const cx = &cxstk[i]; |
6b35e009 | 1394 | switch (CxTYPE(cx)) { |
a0d0e21e LW |
1395 | default: |
1396 | continue; | |
a0d0e21e | 1397 | case CXt_SUB: |
5fbe8311 DM |
1398 | /* in sub foo { /(?{...})/ }, foo ends up on the CX stack |
1399 | * twice; the first for the normal foo() call, and the second | |
1400 | * for a faked up re-entry into the sub to execute the | |
1401 | * code block. Hide this faked entry from the world. */ | |
1402 | if (cx->cx_type & CXp_SUB_RE_FAKE) | |
1403 | continue; | |
c67159e1 | 1404 | /* FALLTHROUGH */ |
5fbe8311 | 1405 | case CXt_EVAL: |
7766f137 | 1406 | case CXt_FORMAT: |
1c98cc53 | 1407 | DEBUG_l( Perl_deb(aTHX_ "(dopoptosub_at(): found sub at cx=%ld)\n", (long)i)); |
a0d0e21e LW |
1408 | return i; |
1409 | } | |
1410 | } | |
1411 | return i; | |
1412 | } | |
1413 | ||
76e3520e | 1414 | STATIC I32 |
cea2e8a9 | 1415 | S_dopoptoeval(pTHX_ I32 startingblock) |
a0d0e21e LW |
1416 | { |
1417 | I32 i; | |
a0d0e21e | 1418 | for (i = startingblock; i >= 0; i--) { |
eb578fdb | 1419 | const PERL_CONTEXT *cx = &cxstack[i]; |
6b35e009 | 1420 | switch (CxTYPE(cx)) { |
a0d0e21e LW |
1421 | default: |
1422 | continue; | |
1423 | case CXt_EVAL: | |
1c98cc53 | 1424 | DEBUG_l( Perl_deb(aTHX_ "(dopoptoeval(): found eval at cx=%ld)\n", (long)i)); |
a0d0e21e LW |
1425 | return i; |
1426 | } | |
1427 | } | |
1428 | return i; | |
1429 | } | |
1430 | ||
76e3520e | 1431 | STATIC I32 |
cea2e8a9 | 1432 | S_dopoptoloop(pTHX_ I32 startingblock) |
a0d0e21e LW |
1433 | { |
1434 | I32 i; | |
a0d0e21e | 1435 | for (i = startingblock; i >= 0; i--) { |
eb578fdb | 1436 | const PERL_CONTEXT * const cx = &cxstack[i]; |
6b35e009 | 1437 | switch (CxTYPE(cx)) { |
a0d0e21e | 1438 | case CXt_SUBST: |
a0d0e21e | 1439 | case CXt_SUB: |
7766f137 | 1440 | case CXt_FORMAT: |
a0d0e21e | 1441 | case CXt_EVAL: |
0a753a76 | 1442 | case CXt_NULL: |
dcbac5bb | 1443 | /* diag_listed_as: Exiting subroutine via %s */ |
a2a5de95 NC |
1444 | Perl_ck_warner(aTHX_ packWARN(WARN_EXITING), "Exiting %s via %s", |
1445 | context_name[CxTYPE(cx)], OP_NAME(PL_op)); | |
79646418 | 1446 | if ((CxTYPE(cx)) == CXt_NULL) /* sort BLOCK */ |
515afda2 NC |
1447 | return -1; |
1448 | break; | |
93661e56 | 1449 | case CXt_LOOP_PLAIN: |
c6fdafd0 | 1450 | case CXt_LOOP_LAZYIV: |
d01136d6 | 1451 | case CXt_LOOP_LAZYSV: |
93661e56 DM |
1452 | case CXt_LOOP_LIST: |
1453 | case CXt_LOOP_ARY: | |
1c98cc53 | 1454 | DEBUG_l( Perl_deb(aTHX_ "(dopoptoloop(): found loop at cx=%ld)\n", (long)i)); |
a0d0e21e LW |
1455 | return i; |
1456 | } | |
1457 | } | |
1458 | return i; | |
1459 | } | |
1460 | ||
28e0cf42 | 1461 | /* find the next GIVEN or FOR (with implicit $_) loop context block */ |
97f2561e | 1462 | |
0d863452 | 1463 | STATIC I32 |
97f2561e | 1464 | S_dopoptogivenfor(pTHX_ I32 startingblock) |
0d863452 RH |
1465 | { |
1466 | I32 i; | |
1467 | for (i = startingblock; i >= 0; i--) { | |
eb578fdb | 1468 | const PERL_CONTEXT *cx = &cxstack[i]; |
0d863452 RH |
1469 | switch (CxTYPE(cx)) { |
1470 | default: | |
1471 | continue; | |
1472 | case CXt_GIVEN: | |
97f2561e | 1473 | DEBUG_l( Perl_deb(aTHX_ "(dopoptogivenfor(): found given at cx=%ld)\n", (long)i)); |
0d863452 | 1474 | return i; |
3b719c58 | 1475 | case CXt_LOOP_PLAIN: |
93661e56 | 1476 | assert(!(cx->cx_type & CXp_FOR_DEF)); |
3b719c58 | 1477 | break; |
c6fdafd0 | 1478 | case CXt_LOOP_LAZYIV: |
d01136d6 | 1479 | case CXt_LOOP_LAZYSV: |
93661e56 DM |
1480 | case CXt_LOOP_LIST: |
1481 | case CXt_LOOP_ARY: | |
1482 | if (cx->cx_type & CXp_FOR_DEF) { | |
97f2561e | 1483 | DEBUG_l( Perl_deb(aTHX_ "(dopoptogivenfor(): found foreach at cx=%ld)\n", (long)i)); |
0d863452 RH |
1484 | return i; |
1485 | } | |
1486 | } | |
1487 | } | |
1488 | return i; | |
1489 | } | |
1490 | ||
1491 | STATIC I32 | |
1492 | S_dopoptowhen(pTHX_ I32 startingblock) | |
1493 | { | |
1494 | I32 i; | |
1495 | for (i = startingblock; i >= 0; i--) { | |
eb578fdb | 1496 | const PERL_CONTEXT *cx = &cxstack[i]; |
0d863452 RH |
1497 | switch (CxTYPE(cx)) { |
1498 | default: | |
1499 | continue; | |
1500 | case CXt_WHEN: | |
1c98cc53 | 1501 | DEBUG_l( Perl_deb(aTHX_ "(dopoptowhen(): found when at cx=%ld)\n", (long)i)); |
0d863452 RH |
1502 | return i; |
1503 | } | |
1504 | } | |
1505 | return i; | |
1506 | } | |
1507 | ||
abaf5d5a | 1508 | /* dounwind(): pop all contexts above (but not including) cxix. |
fc6e609e DM |
1509 | * Note that it clears the savestack frame associated with each popped |
1510 | * context entry, but doesn't free any temps. | |
1511 | * It does a POPBLOCK of the last frame that it pops, and leaves | |
1512 | * cxstack_ix equal to cxix. | |
abaf5d5a DM |
1513 | */ |
1514 | ||
a0d0e21e | 1515 | void |
864dbfa3 | 1516 | Perl_dounwind(pTHX_ I32 cxix) |
a0d0e21e | 1517 | { |
f144f1e3 DM |
1518 | if (!PL_curstackinfo) /* can happen if die during thread cloning */ |
1519 | return; | |
1520 | ||
a0d0e21e | 1521 | while (cxstack_ix > cxix) { |
4ebe6e95 | 1522 | PERL_CONTEXT *cx = CX_CUR(); |
5e691bc6 DM |
1523 | |
1524 | CX_DEBUG(cx, "UNWIND"); | |
a0d0e21e | 1525 | /* Note: we don't need to restore the base context info till the end. */ |
76d10131 DM |
1526 | |
1527 | CX_LEAVE_SCOPE(cx); | |
1528 | ||
6b35e009 | 1529 | switch (CxTYPE(cx)) { |
c90c0ff4 | 1530 | case CXt_SUBST: |
1531 | POPSUBST(cx); | |
80d88db0 | 1532 | break; |
a0d0e21e | 1533 | case CXt_SUB: |
88c90157 | 1534 | POPSUB(cx); |
a0d0e21e LW |
1535 | break; |
1536 | case CXt_EVAL: | |
1537 | POPEVAL(cx); | |
03e489bc | 1538 | break; |
f5319de9 | 1539 | case CXt_BLOCK: |
c5369ccc | 1540 | POPBASICBLK(cx); |
a0d0e21e | 1541 | break; |
93661e56 | 1542 | case CXt_LOOP_PLAIN: |
c6fdafd0 | 1543 | case CXt_LOOP_LAZYIV: |
d01136d6 | 1544 | case CXt_LOOP_LAZYSV: |
93661e56 DM |
1545 | case CXt_LOOP_LIST: |
1546 | case CXt_LOOP_ARY: | |
a0d0e21e LW |
1547 | POPLOOP(cx); |
1548 | break; | |
b95eccd3 DM |
1549 | case CXt_WHEN: |
1550 | POPWHEN(cx); | |
1551 | break; | |
1552 | case CXt_GIVEN: | |
1553 | POPGIVEN(cx); | |
1554 | break; | |
0a753a76 | 1555 | case CXt_NULL: |
2f450c1b | 1556 | /* there isn't a POPNULL ! */ |
a0d0e21e | 1557 | break; |
7766f137 GS |
1558 | case CXt_FORMAT: |
1559 | POPFORMAT(cx); | |
1560 | break; | |
a0d0e21e | 1561 | } |
fc6e609e DM |
1562 | if (cxstack_ix == cxix + 1) { |
1563 | POPBLOCK(cx); | |
1564 | } | |
c90c0ff4 | 1565 | cxstack_ix--; |
a0d0e21e | 1566 | } |
fc6e609e | 1567 | |
a0d0e21e LW |
1568 | } |
1569 | ||
5a844595 GS |
1570 | void |
1571 | Perl_qerror(pTHX_ SV *err) | |
1572 | { | |
7918f24d NC |
1573 | PERL_ARGS_ASSERT_QERROR; |
1574 | ||
6b2fb389 DM |
1575 | if (PL_in_eval) { |
1576 | if (PL_in_eval & EVAL_KEEPERR) { | |
ecad31f0 BF |
1577 | Perl_ck_warner(aTHX_ packWARN(WARN_MISC), "\t(in cleanup) %"SVf, |
1578 | SVfARG(err)); | |
6b2fb389 DM |
1579 | } |
1580 | else | |
1581 | sv_catsv(ERRSV, err); | |
1582 | } | |
5a844595 GS |
1583 | else if (PL_errors) |
1584 | sv_catsv(PL_errors, err); | |
1585 | else | |
be2597df | 1586 | Perl_warn(aTHX_ "%"SVf, SVfARG(err)); |
13765c85 DM |
1587 | if (PL_parser) |
1588 | ++PL_parser->error_count; | |
5a844595 GS |
1589 | } |
1590 | ||
d308a779 DM |
1591 | |
1592 | ||
8a1fd305 | 1593 | /* undef or delete the $INC{namesv} entry, then croak. |
d308a779 DM |
1594 | * require0 indicates that the require didn't return a true value */ |
1595 | ||
8a1fd305 DM |
1596 | static void |
1597 | S_undo_inc_then_croak(pTHX_ SV *namesv, SV *err, bool require0) | |
d308a779 DM |
1598 | { |
1599 | const char *fmt; | |
1600 | HV *inc_hv = GvHVn(PL_incgv); | |
d308a779 DM |
1601 | I32 klen = SvUTF8(namesv) ? -(I32)SvCUR(namesv) : (I32)SvCUR(namesv); |
1602 | const char *key = SvPVX_const(namesv); | |
1603 | ||
d308a779 DM |
1604 | if (require0) { |
1605 | (void)hv_delete(inc_hv, key, klen, G_DISCARD); | |
1606 | fmt = "%"SVf" did not return a true value"; | |
1607 | err = namesv; | |
1608 | } | |
1609 | else { | |
1610 | (void)hv_store(inc_hv, key, klen, &PL_sv_undef, 0); | |
1611 | fmt = "%"SVf"Compilation failed in require"; | |
1612 | err = err ? err : newSVpvs_flags("Unknown error\n", SVs_TEMP); | |
1613 | } | |
1614 | ||
d308a779 DM |
1615 | Perl_croak(aTHX_ fmt, SVfARG(err)); |
1616 | } | |
1617 | ||
1618 | ||
bb4c52e0 | 1619 | void |
c5df3096 | 1620 | Perl_die_unwind(pTHX_ SV *msv) |
a0d0e21e | 1621 | { |
c5df3096 | 1622 | SV *exceptsv = sv_mortalcopy(msv); |
96d9b9cd | 1623 | U8 in_eval = PL_in_eval; |
c5df3096 | 1624 | PERL_ARGS_ASSERT_DIE_UNWIND; |
87582a92 | 1625 | |
96d9b9cd | 1626 | if (in_eval) { |
a0d0e21e | 1627 | I32 cxix; |
a0d0e21e | 1628 | |
22a30693 Z |
1629 | /* |
1630 | * Historically, perl used to set ERRSV ($@) early in the die | |
1631 | * process and rely on it not getting clobbered during unwinding. | |
1632 | * That sucked, because it was liable to get clobbered, so the | |
1633 | * setting of ERRSV used to emit the exception from eval{} has | |
1634 | * been moved to much later, after unwinding (see just before | |
1635 | * JMPENV_JUMP below). However, some modules were relying on the | |
1636 | * early setting, by examining $@ during unwinding to use it as | |
1637 | * a flag indicating whether the current unwinding was caused by | |
1638 | * an exception. It was never a reliable flag for that purpose, | |
1639 | * being totally open to false positives even without actual | |
1640 | * clobberage, but was useful enough for production code to | |
1641 | * semantically rely on it. | |
1642 | * | |
1643 | * We'd like to have a proper introspective interface that | |
1644 | * explicitly describes the reason for whatever unwinding | |
1645 | * operations are currently in progress, so that those modules | |
1646 | * work reliably and $@ isn't further overloaded. But we don't | |
1647 | * have one yet. In its absence, as a stopgap measure, ERRSV is | |
1648 | * now *additionally* set here, before unwinding, to serve as the | |
1649 | * (unreliable) flag that it used to. | |
1650 | * | |
1651 | * This behaviour is temporary, and should be removed when a | |
1652 | * proper way to detect exceptional unwinding has been developed. | |
1653 | * As of 2010-12, the authors of modules relying on the hack | |
1654 | * are aware of the issue, because the modules failed on | |
1655 | * perls 5.13.{1..7} which had late setting of $@ without this | |
1656 | * early-setting hack. | |
1657 | */ | |
1658 | if (!(in_eval & EVAL_KEEPERR)) { | |
1659 | SvTEMP_off(exceptsv); | |
1660 | sv_setsv(ERRSV, exceptsv); | |
1661 | } | |
1662 | ||
fc941f37 Z |
1663 | if (in_eval & EVAL_KEEPERR) { |
1664 | Perl_ck_warner(aTHX_ packWARN(WARN_MISC), "\t(in cleanup) %"SVf, | |
1665 | SVfARG(exceptsv)); | |
1666 | } | |
1667 | ||
5a844595 GS |
1668 | while ((cxix = dopoptoeval(cxstack_ix)) < 0 |
1669 | && PL_curstackinfo->si_prev) | |
1670 | { | |
bac4b2ad | 1671 | dounwind(-1); |
d3acc0f7 | 1672 | POPSTACK; |
bac4b2ad | 1673 | } |
e336de0d | 1674 | |
a0d0e21e | 1675 | if (cxix >= 0) { |
8a1fd305 | 1676 | SV *namesv = NULL; |
eb578fdb | 1677 | PERL_CONTEXT *cx; |
f5ddd604 | 1678 | SV **oldsp; |
f7d0774b | 1679 | I32 gimme; |
8f89e5a9 Z |
1680 | JMPENV *restartjmpenv; |
1681 | OP *restartop; | |
a0d0e21e LW |
1682 | |
1683 | if (cxix < cxstack_ix) | |
1684 | dounwind(cxix); | |
1685 | ||
4ebe6e95 | 1686 | cx = CX_CUR(); |
f7d0774b | 1687 | assert(CxTYPE(cx) == CXt_EVAL); |
e17c1e7c DM |
1688 | |
1689 | /* return false to the caller of eval */ | |
f5ddd604 | 1690 | oldsp = PL_stack_base + cx->blk_oldsp; |
f7d0774b | 1691 | gimme = cx->blk_gimme; |
f7d0774b | 1692 | if (gimme == G_SCALAR) |
f5ddd604 DM |
1693 | *++oldsp = &PL_sv_undef; |
1694 | PL_stack_sp = oldsp; | |
f7d0774b | 1695 | |
2f450c1b | 1696 | CX_LEAVE_SCOPE(cx); |
a0d0e21e | 1697 | POPEVAL(cx); |
dd748f45 | 1698 | POPBLOCK(cx); |
8f89e5a9 Z |
1699 | restartjmpenv = cx->blk_eval.cur_top_env; |
1700 | restartop = cx->blk_eval.retop; | |
8a1fd305 DM |
1701 | if (CxOLD_OP_TYPE(cx) == OP_REQUIRE) |
1702 | namesv = cx->blk_eval.old_namesv; | |
1703 | CX_POP(cx); | |
1704 | ||
1705 | if (namesv) { | |
1706 | /* note that unlike pp_entereval, pp_require isn't | |
1707 | * supposed to trap errors. So now that we've popped the | |
1708 | * EVAL that pp_require pushed, process the error message | |
1709 | * and rethrow the error */ | |
1710 | S_undo_inc_then_croak(aTHX_ namesv, exceptsv, FALSE); | |
d308a779 DM |
1711 | NOT_REACHED; /* NOTREACHED */ |
1712 | } | |
a0d0e21e | 1713 | |
fc941f37 | 1714 | if (!(in_eval & EVAL_KEEPERR)) |
96d9b9cd | 1715 | sv_setsv(ERRSV, exceptsv); |
8f89e5a9 Z |
1716 | PL_restartjmpenv = restartjmpenv; |
1717 | PL_restartop = restartop; | |
bb4c52e0 | 1718 | JMPENV_JUMP(3); |
e5964223 | 1719 | NOT_REACHED; /* NOTREACHED */ |
a0d0e21e LW |
1720 | } |
1721 | } | |
87582a92 | 1722 | |
96d9b9cd | 1723 | write_to_stderr(exceptsv); |
f86702cc | 1724 | my_failure_exit(); |
e5964223 | 1725 | NOT_REACHED; /* NOTREACHED */ |
a0d0e21e LW |
1726 | } |
1727 | ||
1728 | PP(pp_xor) | |
1729 | { | |
20b7effb | 1730 | dSP; dPOPTOPssrl; |
a0d0e21e LW |
1731 | if (SvTRUE(left) != SvTRUE(right)) |
1732 | RETSETYES; | |
1733 | else | |
1734 | RETSETNO; | |
1735 | } | |
1736 | ||
8dff4fc5 | 1737 | /* |
dcccc8ff KW |
1738 | |
1739 | =head1 CV Manipulation Functions | |
1740 | ||
8dff4fc5 BM |
1741 | =for apidoc caller_cx |
1742 | ||
72d33970 | 1743 | The XSUB-writer's equivalent of L<caller()|perlfunc/caller>. The |
8dff4fc5 | 1744 | returned C<PERL_CONTEXT> structure can be interrogated to find all the |
72d33970 | 1745 | information returned to Perl by C<caller>. Note that XSUBs don't get a |
8dff4fc5 BM |
1746 | stack frame, so C<caller_cx(0, NULL)> will return information for the |
1747 | immediately-surrounding Perl code. | |
1748 | ||
1749 | This function skips over the automatic calls to C<&DB::sub> made on the | |
72d33970 | 1750 | behalf of the debugger. If the stack frame requested was a sub called by |
8dff4fc5 BM |
1751 | C<DB::sub>, the return value will be the frame for the call to |
1752 | C<DB::sub>, since that has the correct line number/etc. for the call | |
72d33970 | 1753 | site. If I<dbcxp> is non-C<NULL>, it will be set to a pointer to the |
8dff4fc5 BM |
1754 | frame for the sub call itself. |
1755 | ||
1756 | =cut | |
1757 | */ | |
1758 | ||
1759 | const PERL_CONTEXT * | |
1760 | Perl_caller_cx(pTHX_ I32 count, const PERL_CONTEXT **dbcxp) | |
a0d0e21e | 1761 | { |
eb578fdb KW |
1762 | I32 cxix = dopoptosub(cxstack_ix); |
1763 | const PERL_CONTEXT *cx; | |
1764 | const PERL_CONTEXT *ccstack = cxstack; | |
901017d6 | 1765 | const PERL_SI *top_si = PL_curstackinfo; |
27d41816 | 1766 | |
a0d0e21e | 1767 | for (;;) { |
2c375eb9 GS |
1768 | /* we may be in a higher stacklevel, so dig down deeper */ |
1769 | while (cxix < 0 && top_si->si_type != PERLSI_MAIN) { | |
1770 | top_si = top_si->si_prev; | |
1771 | ccstack = top_si->si_cxstack; | |
1772 | cxix = dopoptosub_at(ccstack, top_si->si_cxix); | |
1773 | } | |
8dff4fc5 BM |
1774 | if (cxix < 0) |
1775 | return NULL; | |
f2a7f298 DG |
1776 | /* caller() should not report the automatic calls to &DB::sub */ |
1777 | if (PL_DBsub && GvCV(PL_DBsub) && cxix >= 0 && | |
3280af22 | 1778 | ccstack[cxix].blk_sub.cv == GvCV(PL_DBsub)) |
a0d0e21e LW |
1779 | count++; |
1780 | if (!count--) | |
1781 | break; | |
2c375eb9 | 1782 | cxix = dopoptosub_at(ccstack, cxix - 1); |
a0d0e21e | 1783 | } |
2c375eb9 GS |
1784 | |
1785 | cx = &ccstack[cxix]; | |
8dff4fc5 BM |
1786 | if (dbcxp) *dbcxp = cx; |
1787 | ||
7766f137 | 1788 | if (CxTYPE(cx) == CXt_SUB || CxTYPE(cx) == CXt_FORMAT) { |
f54cb97a | 1789 | const I32 dbcxix = dopoptosub_at(ccstack, cxix - 1); |
2c375eb9 | 1790 | /* We expect that ccstack[dbcxix] is CXt_SUB, anyway, the |
06a5b730 | 1791 | field below is defined for any cx. */ |
f2a7f298 DG |
1792 | /* caller() should not report the automatic calls to &DB::sub */ |
1793 | if (PL_DBsub && GvCV(PL_DBsub) && dbcxix >= 0 && ccstack[dbcxix].blk_sub.cv == GvCV(PL_DBsub)) | |
2c375eb9 | 1794 | cx = &ccstack[dbcxix]; |
06a5b730 | 1795 | } |
1796 | ||
8dff4fc5 BM |
1797 | return cx; |
1798 | } | |
1799 | ||
1800 | PP(pp_caller) | |
1801 | { | |
8dff4fc5 | 1802 | dSP; |
eb578fdb | 1803 | const PERL_CONTEXT *cx; |
8dff4fc5 | 1804 | const PERL_CONTEXT *dbcx; |
48ebc325 | 1805 | I32 gimme = GIMME_V; |
d527ce7c | 1806 | const HEK *stash_hek; |
8dff4fc5 | 1807 | I32 count = 0; |
ce0b554b | 1808 | bool has_arg = MAXARG && TOPs; |
25502127 | 1809 | const COP *lcop; |
8dff4fc5 | 1810 | |
ce0b554b FC |
1811 | if (MAXARG) { |
1812 | if (has_arg) | |
8dff4fc5 | 1813 | count = POPi; |
ce0b554b FC |
1814 | else (void)POPs; |
1815 | } | |
8dff4fc5 | 1816 | |
ce0b554b | 1817 | cx = caller_cx(count + !!(PL_op->op_private & OPpOFFBYONE), &dbcx); |
8dff4fc5 | 1818 | if (!cx) { |
48ebc325 | 1819 | if (gimme != G_ARRAY) { |
8dff4fc5 BM |
1820 | EXTEND(SP, 1); |
1821 | RETPUSHUNDEF; | |
1822 | } | |
1823 | RETURN; | |
1824 | } | |
1825 | ||
5e691bc6 | 1826 | CX_DEBUG(cx, "CALLER"); |
d0279c7c | 1827 | assert(CopSTASH(cx->blk_oldcop)); |
e7886211 FC |
1828 | stash_hek = SvTYPE(CopSTASH(cx->blk_oldcop)) == SVt_PVHV |
1829 | ? HvNAME_HEK((HV*)CopSTASH(cx->blk_oldcop)) | |
1830 | : NULL; | |
48ebc325 | 1831 | if (gimme != G_ARRAY) { |
27d41816 | 1832 | EXTEND(SP, 1); |
d527ce7c | 1833 | if (!stash_hek) |
3280af22 | 1834 | PUSHs(&PL_sv_undef); |
49d8d3a1 MB |
1835 | else { |
1836 | dTARGET; | |
d527ce7c | 1837 | sv_sethek(TARG, stash_hek); |
49d8d3a1 MB |
1838 | PUSHs(TARG); |
1839 | } | |
a0d0e21e LW |
1840 | RETURN; |
1841 | } | |
a0d0e21e | 1842 | |
b3ca2e83 | 1843 | EXTEND(SP, 11); |
27d41816 | 1844 | |
d527ce7c | 1845 | if (!stash_hek) |
3280af22 | 1846 | PUSHs(&PL_sv_undef); |
d527ce7c BF |
1847 | else { |
1848 | dTARGET; | |
1849 | sv_sethek(TARG, stash_hek); | |
1850 | PUSHTARG; | |
1851 | } | |
6e449a3a | 1852 | mPUSHs(newSVpv(OutCopFILE(cx->blk_oldcop), 0)); |
e6dae479 | 1853 | lcop = closest_cop(cx->blk_oldcop, OpSIBLING(cx->blk_oldcop), |
25502127 FC |
1854 | cx->blk_sub.retop, TRUE); |
1855 | if (!lcop) | |
1856 | lcop = cx->blk_oldcop; | |
e9e9e546 | 1857 | mPUSHu(CopLINE(lcop)); |
ce0b554b | 1858 | if (!has_arg) |
a0d0e21e | 1859 | RETURN; |
7766f137 GS |
1860 | if (CxTYPE(cx) == CXt_SUB || CxTYPE(cx) == CXt_FORMAT) { |
1861 | /* So is ccstack[dbcxix]. */ | |
a5f47741 | 1862 | if (CvHASGV(dbcx->blk_sub.cv)) { |
ecf05a58 | 1863 | PUSHs(cv_name(dbcx->blk_sub.cv, 0, 0)); |
bf38a478 | 1864 | PUSHs(boolSV(CxHASARGS(cx))); |
07b8c804 RGS |
1865 | } |
1866 | else { | |
84bafc02 | 1867 | PUSHs(newSVpvs_flags("(unknown)", SVs_TEMP)); |
bf38a478 | 1868 | PUSHs(boolSV(CxHASARGS(cx))); |
07b8c804 | 1869 | } |
a0d0e21e LW |
1870 | } |
1871 | else { | |
84bafc02 | 1872 | PUSHs(newSVpvs_flags("(eval)", SVs_TEMP)); |
6e449a3a | 1873 | mPUSHi(0); |
a0d0e21e | 1874 | } |
54310121 | 1875 | gimme = (I32)cx->blk_gimme; |
1876 | if (gimme == G_VOID) | |
3280af22 | 1877 | PUSHs(&PL_sv_undef); |
54310121 | 1878 | else |
98625aca | 1879 | PUSHs(boolSV((gimme & G_WANT) == G_ARRAY)); |
6b35e009 | 1880 | if (CxTYPE(cx) == CXt_EVAL) { |
811a4de9 | 1881 | /* eval STRING */ |
85a64632 | 1882 | if (CxOLD_OP_TYPE(cx) == OP_ENTEREVAL) { |
78beb4ca TC |
1883 | SV *cur_text = cx->blk_eval.cur_text; |
1884 | if (SvCUR(cur_text) >= 2) { | |
1885 | PUSHs(newSVpvn_flags(SvPVX(cur_text), SvCUR(cur_text)-2, | |
1886 | SvUTF8(cur_text)|SVs_TEMP)); | |
1887 | } | |
1888 | else { | |
1889 | /* I think this is will always be "", but be sure */ | |
1890 | PUSHs(sv_2mortal(newSVsv(cur_text))); | |
1891 | } | |
1892 | ||
3280af22 | 1893 | PUSHs(&PL_sv_no); |
0f79a09d | 1894 | } |
811a4de9 | 1895 | /* require */ |
0f79a09d | 1896 | else if (cx->blk_eval.old_namesv) { |
6e449a3a | 1897 | mPUSHs(newSVsv(cx->blk_eval.old_namesv)); |
3280af22 | 1898 | PUSHs(&PL_sv_yes); |
06a5b730 | 1899 | } |
811a4de9 GS |
1900 | /* eval BLOCK (try blocks have old_namesv == 0) */ |
1901 | else { | |
1902 | PUSHs(&PL_sv_undef); | |
1903 | PUSHs(&PL_sv_undef); | |
1904 | } | |
4633a7c4 | 1905 | } |
a682de96 GS |
1906 | else { |
1907 | PUSHs(&PL_sv_undef); | |
1908 | PUSHs(&PL_sv_undef); | |
1909 | } | |
bafb2adc | 1910 | if (CxTYPE(cx) == CXt_SUB && CxHASARGS(cx) |
ed094faf | 1911 | && CopSTASH_eq(PL_curcop, PL_debstash)) |
4633a7c4 | 1912 | { |
9513529b DM |
1913 | /* slot 0 of the pad contains the original @_ */ |
1914 | AV * const ary = MUTABLE_AV(AvARRAY(MUTABLE_AV( | |
1915 | PadlistARRAY(CvPADLIST(cx->blk_sub.cv))[ | |
1916 | cx->blk_sub.olddepth+1]))[0]); | |
c70927a6 | 1917 | const SSize_t off = AvARRAY(ary) - AvALLOC(ary); |
a0d0e21e | 1918 | |
e1a80902 | 1919 | Perl_init_dbargs(aTHX); |
a0d0e21e | 1920 | |
3280af22 NIS |
1921 | if (AvMAX(PL_dbargs) < AvFILLp(ary) + off) |
1922 | av_extend(PL_dbargs, AvFILLp(ary) + off); | |
1923 | Copy(AvALLOC(ary), AvARRAY(PL_dbargs), AvFILLp(ary) + 1 + off, SV*); | |
1924 | AvFILLp(PL_dbargs) = AvFILLp(ary) + off; | |
a0d0e21e | 1925 | } |
6e449a3a | 1926 | mPUSHi(CopHINTS_get(cx->blk_oldcop)); |
e476b1b5 GS |
1927 | { |
1928 | SV * mask ; | |
72dc9ed5 | 1929 | STRLEN * const old_warnings = cx->blk_oldcop->cop_warnings ; |
114bafba | 1930 | |
f07626ad | 1931 | if (old_warnings == pWARN_NONE) |
e476b1b5 | 1932 | mask = newSVpvn(WARN_NONEstring, WARNsize) ; |
f07626ad FC |
1933 | else if (old_warnings == pWARN_STD && (PL_dowarn & G_WARN_ON) == 0) |
1934 | mask = &PL_sv_undef ; | |
ac27b0f5 | 1935 | else if (old_warnings == pWARN_ALL || |
75b6c4ca RGS |
1936 | (old_warnings == pWARN_STD && PL_dowarn & G_WARN_ON)) { |
1937 | /* Get the bit mask for $warnings::Bits{all}, because | |
1938 | * it could have been extended by warnings::register */ | |
1939 | SV **bits_all; | |
6673a63c | 1940 | HV * const bits = get_hv("warnings::Bits", 0); |
017a3ce5 | 1941 | if (bits && (bits_all=hv_fetchs(bits, "all", FALSE))) { |
75b6c4ca RGS |
1942 | mask = newSVsv(*bits_all); |
1943 | } | |
1944 | else { | |
1945 | mask = newSVpvn(WARN_ALLstring, WARNsize) ; | |
1946 | } | |
1947 | } | |
e476b1b5 | 1948 | else |
72dc9ed5 | 1949 | mask = newSVpvn((char *) (old_warnings + 1), old_warnings[0]); |
6e449a3a | 1950 | mPUSHs(mask); |
e476b1b5 | 1951 | } |
b3ca2e83 | 1952 | |
c28fe1ec | 1953 | PUSHs(cx->blk_oldcop->cop_hints_hash ? |
20439bc7 | 1954 | sv_2mortal(newRV_noinc(MUTABLE_SV(cop_hints_2hv(cx->blk_oldcop, 0)))) |
b3ca2e83 | 1955 | : &PL_sv_undef); |
a0d0e21e LW |
1956 | RETURN; |
1957 | } | |
1958 | ||
a0d0e21e LW |
1959 | PP(pp_reset) |
1960 | { | |
39644a26 | 1961 | dSP; |
ca826051 FC |
1962 | const char * tmps; |
1963 | STRLEN len = 0; | |
1964 | if (MAXARG < 1 || (!TOPs && !POPs)) | |
1965 | tmps = NULL, len = 0; | |
1966 | else | |
1967 | tmps = SvPVx_const(POPs, len); | |
1968 | sv_resetpvn(tmps, len, CopSTASH(PL_curcop)); | |
3280af22 | 1969 | PUSHs(&PL_sv_yes); |
a0d0e21e LW |
1970 | RETURN; |
1971 | } | |
1972 | ||
dd2155a4 DM |
1973 | /* like pp_nextstate, but used instead when the debugger is active */ |
1974 | ||
a0d0e21e LW |
1975 | PP(pp_dbstate) |
1976 | { | |
533c011a | 1977 | PL_curcop = (COP*)PL_op; |
a0d0e21e | 1978 | TAINT_NOT; /* Each statement is presumed innocent */ |
4ebe6e95 | 1979 | PL_stack_sp = PL_stack_base + CX_CUR()->blk_oldsp; |
a0d0e21e LW |
1980 | FREETMPS; |
1981 | ||
f410a211 NC |
1982 | PERL_ASYNC_CHECK(); |
1983 | ||
88df5f01 | 1984 | if (PL_op->op_flags & OPf_SPECIAL /* breakpoint */ |
a6d69523 | 1985 | || PL_DBsingle_iv || PL_DBsignal_iv || PL_DBtrace_iv) |
a0d0e21e | 1986 | { |
39644a26 | 1987 | dSP; |
eb578fdb | 1988 | PERL_CONTEXT *cx; |
f54cb97a | 1989 | const I32 gimme = G_ARRAY; |
0bd48802 | 1990 | GV * const gv = PL_DBgv; |
432d4561 JL |
1991 | CV * cv = NULL; |
1992 | ||
1993 | if (gv && isGV_with_GP(gv)) | |
1994 | cv = GvCV(gv); | |
a0d0e21e | 1995 | |
c2cb6f77 | 1996 | if (!cv || (!CvROOT(cv) && !CvXSUB(cv))) |
cea2e8a9 | 1997 | DIE(aTHX_ "No DB::DB routine defined"); |
a0d0e21e | 1998 | |
aea4f609 DM |
1999 | if (CvDEPTH(cv) >= 1 && !(PL_debug & DEBUG_DB_RECURSE_FLAG)) |
2000 | /* don't do recursive DB::DB call */ | |
a0d0e21e | 2001 | return NORMAL; |
748a9306 | 2002 | |
aed2304a | 2003 | if (CvISXSUB(cv)) { |
8ae997c5 DM |
2004 | ENTER; |
2005 | SAVEI32(PL_debug); | |
2006 | PL_debug = 0; | |
2007 | SAVESTACK_POS(); | |
8a44b450 | 2008 | SAVETMPS; |
c127bd3a SF |
2009 | PUSHMARK(SP); |
2010 | (void)(*CvXSUB(cv))(aTHX_ cv); | |
c127bd3a | 2011 | FREETMPS; |
a57c6685 | 2012 | LEAVE; |
c127bd3a SF |
2013 | return NORMAL; |
2014 | } | |
2015 | else { | |
8ae997c5 | 2016 | U8 hasargs = 0; |
c127bd3a SF |
2017 | PUSHBLOCK(cx, CXt_SUB, SP); |
2018 | PUSHSUB_DB(cx); | |
2019 | cx->blk_sub.retop = PL_op->op_next; | |
e992140c | 2020 | cx->blk_oldsaveix = PL_savestack_ix; |
8ae997c5 DM |
2021 | |
2022 | SAVEI32(PL_debug); | |
2023 | PL_debug = 0; | |
2024 | SAVESTACK_POS(); | |
c127bd3a | 2025 | CvDEPTH(cv)++; |
9d976ff5 FC |
2026 | if (CvDEPTH(cv) >= 2) { |
2027 | PERL_STACK_OVERFLOW_CHECK(); | |
2028 | pad_push(CvPADLIST(cv), CvDEPTH(cv)); | |
2029 | } | |
9d976ff5 | 2030 | PAD_SET_CUR_NOSAVE(CvPADLIST(cv), CvDEPTH(cv)); |
c127bd3a SF |
2031 | RETURNOP(CvSTART(cv)); |
2032 | } | |
a0d0e21e LW |
2033 | } |
2034 | else | |
2035 | return NORMAL; | |
2036 | } | |
2037 | ||
0663a8f8 | 2038 | |
2b9a6457 VP |
2039 | PP(pp_enter) |
2040 | { | |
20b7effb | 2041 | dSP; |
eb578fdb | 2042 | PERL_CONTEXT *cx; |
7c2d9d03 | 2043 | I32 gimme = GIMME_V; |
2b9a6457 | 2044 | |
2b9a6457 | 2045 | PUSHBLOCK(cx, CXt_BLOCK, SP); |
c5369ccc | 2046 | PUSHBASICBLK(cx); |
2b9a6457 VP |
2047 | |
2048 | RETURN; | |
2049 | } | |
2050 | ||
2051 | PP(pp_leave) | |
2052 | { | |
eb578fdb | 2053 | PERL_CONTEXT *cx; |
f5ddd604 | 2054 | SV **oldsp; |
2b9a6457 VP |
2055 | I32 gimme; |
2056 | ||
4ebe6e95 | 2057 | cx = CX_CUR(); |
61d3b95a | 2058 | assert(CxTYPE(cx) == CXt_BLOCK); |
4df352a8 DM |
2059 | |
2060 | if (PL_op->op_flags & OPf_SPECIAL) | |
2061 | cx->blk_oldpm = PL_curpm; /* fake block should preserve $1 et al */ | |
2062 | ||
f5ddd604 | 2063 | oldsp = PL_stack_base + cx->blk_oldsp; |
61d3b95a | 2064 | gimme = cx->blk_gimme; |
2b9a6457 | 2065 | |
0663a8f8 | 2066 | if (gimme == G_VOID) |
f5ddd604 | 2067 | PL_stack_sp = oldsp; |
0663a8f8 | 2068 | else |
f5ddd604 | 2069 | leave_adjust_stacks(oldsp, oldsp, gimme, |
75bc488d | 2070 | PL_op->op_private & OPpLVALUE ? 3 : 1); |
67f63db7 | 2071 | |
2f450c1b | 2072 | CX_LEAVE_SCOPE(cx); |
c5369ccc | 2073 | POPBASICBLK(cx); |
dd748f45 | 2074 | POPBLOCK(cx); |
5da525e9 | 2075 | CX_POP(cx); |
2b9a6457 | 2076 | |
0663a8f8 | 2077 | return NORMAL; |
2b9a6457 VP |
2078 | } |
2079 | ||
eaa9f768 JH |
2080 | static bool |
2081 | S_outside_integer(pTHX_ SV *sv) | |
2082 | { | |
2083 | if (SvOK(sv)) { | |
2084 | const NV nv = SvNV_nomg(sv); | |
415b66b2 JH |
2085 | if (Perl_isinfnan(nv)) |
2086 | return TRUE; | |
eaa9f768 JH |
2087 | #ifdef NV_PRESERVES_UV |
2088 | if (nv < (NV)IV_MIN || nv > (NV)IV_MAX) | |
2089 | return TRUE; | |
2090 | #else | |
2091 | if (nv <= (NV)IV_MIN) | |
2092 | return TRUE; | |
2093 | if ((nv > 0) && | |
2094 | ((nv > (NV)UV_MAX || | |
2095 | SvUV_nomg(sv) > (UV)IV_MAX))) | |
2096 | return TRUE; | |
2097 | #endif | |
2098 | } | |
2099 | return FALSE; | |
2100 | } | |
2101 | ||
a0d0e21e LW |
2102 | PP(pp_enteriter) |
2103 | { | |
20b7effb | 2104 | dSP; dMARK; |
eb578fdb | 2105 | PERL_CONTEXT *cx; |
f54cb97a | 2106 | const I32 gimme = GIMME_V; |
4ad63d70 | 2107 | void *itervarp; /* GV or pad slot of the iteration variable */ |
f0bb9bf7 | 2108 | SV *itersave; /* the old var in the iterator var slot */ |
93661e56 | 2109 | U8 cxflags = 0; |
a0d0e21e | 2110 | |
aafca525 | 2111 | if (PL_op->op_targ) { /* "my" variable */ |
4ad63d70 DM |
2112 | itervarp = &PAD_SVl(PL_op->op_targ); |
2113 | itersave = *(SV**)itervarp; | |
2114 | assert(itersave); | |
aafca525 | 2115 | if (PL_op->op_private & OPpLVAL_INTRO) { /* for my $x (...) */ |
fdb8b82b DM |
2116 | /* the SV currently in the pad slot is never live during |
2117 | * iteration (the slot is always aliased to one of the items) | |
2118 | * so it's always stale */ | |
4ad63d70 | 2119 | SvPADSTALE_on(itersave); |
14f338dc | 2120 | } |
4ad63d70 | 2121 | SvREFCNT_inc_simple_void_NN(itersave); |
93661e56 | 2122 | cxflags = CXp_FOR_PAD; |
54b9620d | 2123 | } |
d39c26a6 FC |
2124 | else { |
2125 | SV * const sv = POPs; | |
4ad63d70 | 2126 | itervarp = (void *)sv; |
d4e2b4d6 | 2127 | if (LIKELY(isGV(sv))) { /* symbol table variable */ |
6d3ca00e DM |
2128 | itersave = GvSV(sv); |
2129 | SvREFCNT_inc_simple_void(itersave); | |
93661e56 | 2130 | cxflags = CXp_FOR_GV; |
28e0cf42 DM |
2131 | if (PL_op->op_private & OPpITER_DEF) |
2132 | cxflags |= CXp_FOR_DEF; | |
d4e2b4d6 DM |
2133 | } |
2134 | else { /* LV ref: for \$foo (...) */ | |
2135 | assert(SvTYPE(sv) == SVt_PVMG); | |
2136 | assert(SvMAGIC(sv)); | |
2137 | assert(SvMAGIC(sv)->mg_type == PERL_MAGIC_lvref); | |
2138 | itersave = NULL; | |
93661e56 | 2139 | cxflags = CXp_FOR_LVREF; |
d4e2b4d6 | 2140 | } |
d39c26a6 | 2141 | } |
28e0cf42 DM |
2142 | /* OPpITER_DEF (implicit $_) should only occur with a GV iter var */ |
2143 | assert((cxflags & CXp_FOR_GV) || !(PL_op->op_private & OPpITER_DEF)); | |
0d863452 | 2144 | |
1bef65a2 DM |
2145 | PUSHBLOCK(cx, cxflags, MARK); |
2146 | PUSHLOOP_FOR(cx, itervarp, itersave); | |
2c49879e | 2147 | |
533c011a | 2148 | if (PL_op->op_flags & OPf_STACKED) { |
2c49879e DM |
2149 | /* OPf_STACKED implies either a single array: for(@), with a |
2150 | * single AV on the stack, or a range: for (1..5), with 1 and 5 on | |
2151 | * the stack */ | |
d01136d6 BS |
2152 | SV *maybe_ary = POPs; |
2153 | if (SvTYPE(maybe_ary) != SVt_PVAV) { | |
2c49879e | 2154 | /* range */ |
89ea2908 | 2155 | dPOPss; |
d01136d6 | 2156 | SV * const right = maybe_ary; |
93661e56 | 2157 | if (UNLIKELY(cxflags & CXp_FOR_LVREF)) |
d39c26a6 | 2158 | DIE(aTHX_ "Assigned value is not a reference"); |
984a4bea RD |
2159 | SvGETMAGIC(sv); |
2160 | SvGETMAGIC(right); | |
4fe3f0fa | 2161 | if (RANGE_IS_NUMERIC(sv,right)) { |
c6fdafd0 | 2162 | cx->cx_type |= CXt_LOOP_LAZYIV; |
eaa9f768 JH |
2163 | if (S_outside_integer(aTHX_ sv) || |
2164 | S_outside_integer(aTHX_ right)) | |
076d9a11 | 2165 | DIE(aTHX_ "Range iterator outside integer range"); |
f52e41ad FC |
2166 | cx->blk_loop.state_u.lazyiv.cur = SvIV_nomg(sv); |
2167 | cx->blk_loop.state_u.lazyiv.end = SvIV_nomg(right); | |
89ea2908 | 2168 | } |
3f63a782 | 2169 | else { |
d01136d6 | 2170 | cx->cx_type |= CXt_LOOP_LAZYSV; |
d01136d6 BS |
2171 | cx->blk_loop.state_u.lazysv.cur = newSVsv(sv); |
2172 | cx->blk_loop.state_u.lazysv.end = right; | |
2c49879e | 2173 | SvREFCNT_inc_simple_void_NN(right); |
d01136d6 | 2174 | (void) SvPV_force_nolen(cx->blk_loop.state_u.lazysv.cur); |
267cc4a8 NC |
2175 | /* This will do the upgrade to SVt_PV, and warn if the value |
2176 | is uninitialised. */ | |
10516c54 | 2177 | (void) SvPV_nolen_const(right); |
267cc4a8 NC |
2178 | /* Doing this avoids a check every time in pp_iter in pp_hot.c |
2179 | to replace !SvOK() with a pointer to "". */ | |
2180 | if (!SvOK(right)) { | |
2181 | SvREFCNT_dec(right); | |
d01136d6 | 2182 | cx->blk_loop.state_u.lazysv.end = &PL_sv_no; |
267cc4a8 | 2183 | } |
3f63a782 | 2184 | } |
89ea2908 | 2185 | } |
d01136d6 | 2186 | else /* SvTYPE(maybe_ary) == SVt_PVAV */ { |
2c49879e | 2187 | /* for (@array) {} */ |
93661e56 | 2188 | cx->cx_type |= CXt_LOOP_ARY; |
502c6561 | 2189 | cx->blk_loop.state_u.ary.ary = MUTABLE_AV(maybe_ary); |
2c49879e | 2190 | SvREFCNT_inc_simple_void_NN(maybe_ary); |
d01136d6 BS |
2191 | cx->blk_loop.state_u.ary.ix = |
2192 | (PL_op->op_private & OPpITER_REVERSED) ? | |
2193 | AvFILL(cx->blk_loop.state_u.ary.ary) + 1 : | |
2194 | -1; | |
ef3e5ea9 | 2195 | } |
8a1f10dd | 2196 | /* EXTEND(SP, 1) not needed in this branch because we just did POPs */ |
89ea2908 | 2197 | } |
d01136d6 | 2198 | else { /* iterating over items on the stack */ |
93661e56 | 2199 | cx->cx_type |= CXt_LOOP_LIST; |
1bef65a2 | 2200 | cx->blk_oldsp = SP - PL_stack_base; |
93661e56 DM |
2201 | cx->blk_loop.state_u.stack.basesp = MARK - PL_stack_base; |
2202 | cx->blk_loop.state_u.stack.ix = | |
2203 | (PL_op->op_private & OPpITER_REVERSED) | |
2204 | ? cx->blk_oldsp + 1 | |
2205 | : cx->blk_loop.state_u.stack.basesp; | |
8a1f10dd DM |
2206 | /* pre-extend stack so pp_iter doesn't have to check every time |
2207 | * it pushes yes/no */ | |
2208 | EXTEND(SP, 1); | |
4633a7c4 | 2209 | } |
a0d0e21e LW |
2210 | |
2211 | RETURN; | |
2212 | } | |
2213 | ||
2214 | PP(pp_enterloop) | |
2215 | { | |
20b7effb | 2216 | dSP; |
eb578fdb | 2217 | PERL_CONTEXT *cx; |
f54cb97a | 2218 | const I32 gimme = GIMME_V; |
a0d0e21e | 2219 | |
3b719c58 | 2220 | PUSHBLOCK(cx, CXt_LOOP_PLAIN, SP); |
1bef65a2 | 2221 | PUSHLOOP_PLAIN(cx); |
a0d0e21e LW |
2222 | |
2223 | RETURN; | |
2224 | } | |
2225 | ||
2226 | PP(pp_leaveloop) | |
2227 | { | |
eb578fdb | 2228 | PERL_CONTEXT *cx; |
a0d0e21e | 2229 | I32 gimme; |
f5ddd604 | 2230 | SV **oldsp; |
a0d0e21e LW |
2231 | SV **mark; |
2232 | ||
4ebe6e95 | 2233 | cx = CX_CUR(); |
3b719c58 | 2234 | assert(CxTYPE_is_LOOP(cx)); |
61d3b95a | 2235 | mark = PL_stack_base + cx->blk_oldsp; |
f5ddd604 | 2236 | oldsp = CxTYPE(cx) == CXt_LOOP_LIST |
1bef65a2 DM |
2237 | ? PL_stack_base + cx->blk_loop.state_u.stack.basesp |
2238 | : mark; | |
61d3b95a | 2239 | gimme = cx->blk_gimme; |
f86702cc | 2240 | |
0663a8f8 | 2241 | if (gimme == G_VOID) |
f5ddd604 | 2242 | PL_stack_sp = oldsp; |
0663a8f8 | 2243 | else |
f5ddd604 | 2244 | leave_adjust_stacks(MARK, oldsp, gimme, |
75bc488d | 2245 | PL_op->op_private & OPpLVALUE ? 3 : 1); |
f86702cc | 2246 | |
2f450c1b | 2247 | CX_LEAVE_SCOPE(cx); |
a8bba7fa | 2248 | POPLOOP(cx); /* Stack values are safe: release loop vars ... */ |
dd748f45 | 2249 | POPBLOCK(cx); |
5da525e9 | 2250 | CX_POP(cx); |
f86702cc | 2251 | |
f86702cc | 2252 | return NORMAL; |
a0d0e21e LW |
2253 | } |
2254 | ||
31ccb4f5 DM |
2255 | |
2256 | /* This duplicates most of pp_leavesub, but with additional code to handle | |
2257 | * return args in lvalue context. It was forked from pp_leavesub to | |
2258 | * avoid slowing down that function any further. | |
2259 | * | |
2260 | * Any changes made to this function may need to be copied to pp_leavesub | |
2261 | * and vice-versa. | |
57486a97 DM |
2262 | */ |
2263 | ||
31ccb4f5 | 2264 | PP(pp_leavesublv) |
3bdf583b | 2265 | { |
57486a97 DM |
2266 | I32 gimme; |
2267 | PERL_CONTEXT *cx; | |
799da9d7 | 2268 | SV **oldsp; |
5da525e9 | 2269 | OP *retop; |
57486a97 | 2270 | |
4ebe6e95 | 2271 | cx = CX_CUR(); |
61d3b95a DM |
2272 | assert(CxTYPE(cx) == CXt_SUB); |
2273 | ||
2274 | if (CxMULTICALL(cx)) { | |
1f0ba93b DM |
2275 | /* entry zero of a stack is always PL_sv_undef, which |
2276 | * simplifies converting a '()' return into undef in scalar context */ | |
2277 | assert(PL_stack_sp > PL_stack_base || *PL_stack_base == &PL_sv_undef); | |
85ecf147 | 2278 | return 0; |
1f0ba93b | 2279 | } |
85ecf147 | 2280 | |
61d3b95a | 2281 | gimme = cx->blk_gimme; |
799da9d7 | 2282 | oldsp = PL_stack_base + cx->blk_oldsp; /* last arg of previous frame */ |
57486a97 | 2283 | |
799da9d7 DM |
2284 | if (gimme == G_VOID) |
2285 | PL_stack_sp = oldsp; | |
2286 | else { | |
2287 | U8 lval = CxLVAL(cx); | |
2288 | bool is_lval = (lval && !(lval & OPpENTERSUB_INARGS)); | |
2289 | const char *what = NULL; | |
2290 | ||
2291 | if (gimme == G_SCALAR) { | |
2292 | if (is_lval) { | |
2293 | /* check for bad return arg */ | |
2294 | if (oldsp < PL_stack_sp) { | |
2295 | SV *sv = *PL_stack_sp; | |
2296 | if ((SvPADTMP(sv) || SvREADONLY(sv))) { | |
2297 | what = | |
2298 | SvREADONLY(sv) ? (sv == &PL_sv_undef) ? "undef" | |
2299 | : "a readonly value" : "a temporary"; | |
2300 | } | |
2301 | else goto ok; | |
2302 | } | |
2303 | else { | |
2304 | /* sub:lvalue{} will take us here. */ | |
2305 | what = "undef"; | |
2306 | } | |
2307 | croak: | |
2308 | Perl_croak(aTHX_ | |
2309 | "Can't return %s from lvalue subroutine", what); | |
2310 | } | |
57486a97 | 2311 | |
799da9d7 | 2312 | ok: |
e02ce34b | 2313 | leave_adjust_stacks(oldsp, oldsp, gimme, is_lval ? 3 : 2); |
e80c4acf | 2314 | |
799da9d7 DM |
2315 | if (lval & OPpDEREF) { |
2316 | /* lval_sub()->{...} and similar */ | |
2317 | dSP; | |
2318 | SvGETMAGIC(TOPs); | |
2319 | if (!SvOK(TOPs)) { | |
2320 | TOPs = vivify_ref(TOPs, CxLVAL(cx) & OPpDEREF); | |
2321 | } | |
2322 | PUTBACK; | |
2323 | } | |
2324 | } | |
2325 | else { | |
2326 | assert(gimme == G_ARRAY); | |
2327 | assert (!(lval & OPpDEREF)); | |
2328 | ||
2329 | if (is_lval) { | |
2330 | /* scan for bad return args */ | |
2331 | SV **p; | |
2332 | for (p = PL_stack_sp; p > oldsp; p--) { | |
2333 | SV *sv = *p; | |
2334 | /* the PL_sv_undef exception is to allow things like | |
2335 | * this to work, where PL_sv_undef acts as 'skip' | |
2336 | * placeholder on the LHS of list assigns: | |
2337 | * sub foo :lvalue { undef } | |
2338 | * ($a, undef, foo(), $b) = 1..4; | |
2339 | */ | |
2340 | if (sv != &PL_sv_undef && (SvPADTMP(sv) || SvREADONLY(sv))) | |
2341 | { | |
2342 | /* Might be flattened array after $#array = */ | |
2343 | what = SvREADONLY(sv) | |
2344 | ? "a readonly value" : "a temporary"; | |
2345 | goto croak; | |
2346 | } | |
2347 | } | |
2348 | } | |
2349 | ||
e02ce34b | 2350 | leave_adjust_stacks(oldsp, oldsp, gimme, is_lval ? 3 : 2); |
799da9d7 | 2351 | } |
3bdf583b | 2352 | } |
57486a97 | 2353 | |
2f450c1b | 2354 | CX_LEAVE_SCOPE(cx); |
88c90157 | 2355 | POPSUB(cx); /* Stack values are safe: release CV and @_ ... */ |
dd748f45 | 2356 | POPBLOCK(cx); |
5da525e9 DM |
2357 | retop = cx->blk_sub.retop; |
2358 | CX_POP(cx); | |
57486a97 | 2359 | |
5da525e9 | 2360 | return retop; |
3bdf583b FC |
2361 | } |
2362 | ||
57486a97 | 2363 | |
a0d0e21e LW |
2364 | PP(pp_return) |
2365 | { | |
20b7effb | 2366 | dSP; dMARK; |
eb578fdb | 2367 | PERL_CONTEXT *cx; |
0bd48802 AL |
2368 | const I32 cxix = dopoptosub(cxstack_ix); |
2369 | ||
d40dc6b1 DM |
2370 | assert(cxstack_ix >= 0); |
2371 | if (cxix < cxstack_ix) { | |
2372 | if (cxix < 0) { | |
79646418 DM |
2373 | if (!( PL_curstackinfo->si_type == PERLSI_SORT |
2374 | || ( PL_curstackinfo->si_type == PERLSI_MULTICALL | |
2375 | && (cxstack[0].cx_type & CXp_SUB_RE_FAKE)) | |
2376 | ) | |
2377 | ) | |
3089a108 | 2378 | DIE(aTHX_ "Can't return outside a subroutine"); |
79646418 DM |
2379 | /* We must be in: |
2380 | * a sort block, which is a CXt_NULL not a CXt_SUB; | |
2381 | * or a /(?{...})/ block. | |
2382 | * Handle specially. */ | |
2383 | assert(CxTYPE(&cxstack[0]) == CXt_NULL | |
2384 | || ( CxTYPE(&cxstack[0]) == CXt_SUB | |
2385 | && (cxstack[0].cx_type & CXp_SUB_RE_FAKE))); | |
3089a108 DM |
2386 | if (cxstack_ix > 0) { |
2387 | /* See comment below about context popping. Since we know | |
2388 | * we're scalar and not lvalue, we can preserve the return | |
2389 | * value in a simpler fashion than there. */ | |
2390 | SV *sv = *SP; | |
d40dc6b1 | 2391 | assert(cxstack[0].blk_gimme == G_SCALAR); |
3089a108 DM |
2392 | if ( (sp != PL_stack_base) |
2393 | && !(SvFLAGS(sv) & (SVs_TEMP|SVs_PADTMP)) | |
2394 | ) | |
2395 | *SP = sv_mortalcopy(sv); | |
2396 | dounwind(0); | |
d40dc6b1 | 2397 | } |
3089a108 DM |
2398 | /* caller responsible for popping cxstack[0] */ |
2399 | return 0; | |
d40dc6b1 | 2400 | } |
3089a108 DM |
2401 | |
2402 | /* There are contexts that need popping. Doing this may free the | |
2403 | * return value(s), so preserve them first, e.g. popping the plain | |
2404 | * loop here would free $x: | |
2405 | * sub f { { my $x = 1; return $x } } | |
2406 | * We may also need to shift the args down; for example, | |
2407 | * for (1,2) { return 3,4 } | |
2408 | * leaves 1,2,3,4 on the stack. Both these actions can be done by | |
e02ce34b DM |
2409 | * leave_adjust_stacks(). By calling it with and lvalue "pass |
2410 | * all" action, we just bump the ref count and mortalise the args | |
2411 | * that need it, do a FREETMPS. The "scan the args and maybe copy | |
2412 | * them" process will be repeated by whoever we tail-call (e.g. | |
2413 | * pp_leaveeval), where any copying etc will be done. That is to | |
2414 | * say, in this code path two scans of the args will be done; the | |
2415 | * first just shifts and preserves; the second is the "real" arg | |
2416 | * processing, based on the type of return. | |
3089a108 DM |
2417 | */ |
2418 | cx = &cxstack[cxix]; | |
3089a108 | 2419 | PUTBACK; |
e02ce34b DM |
2420 | if (cx->blk_gimme != G_VOID) |
2421 | leave_adjust_stacks(MARK, PL_stack_base + cx->blk_oldsp, | |
fc6e609e DM |
2422 | cx->blk_gimme, |
2423 | CxTYPE(cx) == CXt_SUB && CvLVALUE(cx->blk_sub.cv) | |
2424 | ? 3 : 0); | |
0663a8f8 | 2425 | SPAGAIN; |
a0d0e21e | 2426 | dounwind(cxix); |
42831ce4 | 2427 | cx = &cxstack[cxix]; /* CX stack may have been realloced */ |
d40dc6b1 | 2428 | } |
3089a108 DM |
2429 | else { |
2430 | /* Like in the branch above, we need to handle any extra junk on | |
2431 | * the stack. But because we're not also popping extra contexts, we | |
2432 | * don't have to worry about prematurely freeing args. So we just | |
2433 | * need to do the bare minimum to handle junk, and leave the main | |
2434 | * arg processing in the function we tail call, e.g. pp_leavesub. | |
2435 | * In list context we have to splice out the junk; in scalar | |
2436 | * context we can leave as-is (pp_leavesub will later return the | |
2437 | * top stack element). But for an empty arg list, e.g. | |
2438 | * for (1,2) { return } | |
2439 | * we need to set sp = oldsp so that pp_leavesub knows to push | |
2440 | * &PL_sv_undef onto the stack. | |
2441 | */ | |
3ebe7c5a DM |
2442 | SV **oldsp; |
2443 | cx = &cxstack[cxix]; | |
2444 | oldsp = PL_stack_base + cx->blk_oldsp; | |
2445 | if (oldsp != MARK) { | |
2446 | SSize_t nargs = SP - MARK; | |
2447 | if (nargs) { | |
2448 | if (cx->blk_gimme == G_ARRAY) { | |
2449 | /* shift return args to base of call stack frame */ | |
2450 | Move(MARK + 1, oldsp + 1, nargs, SV*); | |
2451 | PL_stack_sp = oldsp + nargs; | |
2452 | } | |
6228a1e1 | 2453 | } |
3ebe7c5a DM |
2454 | else |
2455 | PL_stack_sp = oldsp; | |
13929c4c | 2456 | } |
3089a108 | 2457 | } |
617a4f41 DM |
2458 | |
2459 | /* fall through to a normal exit */ | |
2460 | switch (CxTYPE(cx)) { | |
2461 | case CXt_EVAL: | |
2462 | return CxTRYBLOCK(cx) | |
2463 | ? Perl_pp_leavetry(aTHX) | |
2464 | : Perl_pp_leaveeval(aTHX); | |
2465 | case CXt_SUB: | |
13929c4c | 2466 | return CvLVALUE(cx->blk_sub.cv) |
31ccb4f5 | 2467 | ? Perl_pp_leavesublv(aTHX) |
13929c4c | 2468 | : Perl_pp_leavesub(aTHX); |
7766f137 | 2469 | case CXt_FORMAT: |
617a4f41 | 2470 | return Perl_pp_leavewrite(aTHX); |
a0d0e21e | 2471 | default: |
5637ef5b | 2472 | DIE(aTHX_ "panic: return, type=%u", (unsigned) CxTYPE(cx)); |
a0d0e21e | 2473 | } |
a0d0e21e LW |
2474 | } |
2475 | ||
fc6e609e DM |
2476 | /* find the enclosing loop or labelled loop and dounwind() back to it. |
2477 | * opname is for errors */ | |
4f443c3d | 2478 | |
1f039d60 FC |
2479 | static I32 |
2480 | S_unwind_loop(pTHX_ const char * const opname) | |
a0d0e21e | 2481 | { |
a0d0e21e | 2482 | I32 cxix; |
1f039d60 FC |
2483 | if (PL_op->op_flags & OPf_SPECIAL) { |
2484 | cxix = dopoptoloop(cxstack_ix); | |
2485 | if (cxix < 0) | |
2486 | /* diag_listed_as: Can't "last" outside a loop block */ | |
2487 | Perl_croak(aTHX_ "Can't \"%s\" outside a loop block", opname); | |
2488 | } | |
2489 | else { | |
2490 | dSP; | |
2491 | STRLEN label_len; | |
2492 | const char * const label = | |
2493 | PL_op->op_flags & OPf_STACKED | |
2494 | ? SvPV(TOPs,label_len) | |
2495 | : (label_len = strlen(cPVOP->op_pv), cPVOP->op_pv); | |
2496 | const U32 label_flags = | |
2497 | PL_op->op_flags & OPf_STACKED | |
2498 | ? SvUTF8(POPs) | |
2499 | : (cPVOP->op_private & OPpPV_IS_UTF8) ? SVf_UTF8 : 0; | |
2500 | PUTBACK; | |
2501 | cxix = dopoptolabel(label, label_len, label_flags); | |
2502 | if (cxix < 0) | |
2503 | /* diag_listed_as: Label not found for "last %s" */ | |
2504 | Perl_croak(aTHX_ "Label not found for \"%s %"SVf"\"", | |
2505 | opname, | |
2506 | SVfARG(PL_op->op_flags & OPf_STACKED | |
2507 | && !SvGMAGICAL(TOPp1s) | |
2508 | ? TOPp1s | |
2509 | : newSVpvn_flags(label, | |
2510 | label_len, | |
2511 | label_flags | SVs_TEMP))); | |
2512 | } | |
2513 | if (cxix < cxstack_ix) | |
2514 | dounwind(cxix); | |
2515 | return cxix; | |
2516 | } | |
2517 | ||
2518 | PP(pp_last) | |
2519 | { | |
eb578fdb | 2520 | PERL_CONTEXT *cx; |
5da525e9 | 2521 | OP* nextop; |
9d4ba2ae | 2522 | |
1f039d60 | 2523 | S_unwind_loop(aTHX_ "last"); |
a0d0e21e | 2524 | |
4ebe6e95 | 2525 | cx = CX_CUR(); |
4df352a8 | 2526 | |
93661e56 | 2527 | assert(CxTYPE_is_LOOP(cx)); |
1bef65a2 DM |
2528 | PL_stack_sp = PL_stack_base |
2529 | + (CxTYPE(cx) == CXt_LOOP_LIST | |
2530 | ? cx->blk_loop.state_u.stack.basesp | |
2531 | : cx->blk_oldsp | |
2532 | ); | |
a0d0e21e | 2533 | |
a1f49e72 | 2534 | TAINT_NOT; |
f86702cc | 2535 | |
2536 | /* Stack values are safe: */ | |
2f450c1b | 2537 | CX_LEAVE_SCOPE(cx); |
d3e5e568 | 2538 | POPLOOP(cx); /* release loop vars ... */ |
dd748f45 | 2539 | POPBLOCK(cx); |
5da525e9 DM |
2540 | nextop = cx->blk_loop.my_op->op_lastop->op_next; |
2541 | CX_POP(cx); | |
a0d0e21e | 2542 | |
5da525e9 | 2543 | return nextop; |
a0d0e21e LW |
2544 | } |
2545 | ||
2546 | PP(pp_next) | |
2547 | { | |
eb578fdb | 2548 | PERL_CONTEXT *cx; |
a0d0e21e | 2549 | |
1f039d60 | 2550 | S_unwind_loop(aTHX_ "next"); |
a0d0e21e | 2551 | |
7e637ba4 | 2552 | cx = CX_CUR(); |
1ba6ee2b | 2553 | TOPBLOCK(cx); |
3a1b2b9e | 2554 | PL_curcop = cx->blk_oldcop; |
47c9d59f | 2555 | PERL_ASYNC_CHECK(); |
d57ce4df | 2556 | return (cx)->blk_loop.my_op->op_nextop; |
a0d0e21e LW |
2557 | } |
2558 | ||
2559 | PP(pp_redo) | |
2560 | { | |
1f039d60 | 2561 | const I32 cxix = S_unwind_loop(aTHX_ "redo"); |
eb578fdb | 2562 | PERL_CONTEXT *cx; |
1f039d60 | 2563 | OP* redo_op = cxstack[cxix].blk_loop.my_op->op_redoop; |
a0d0e21e | 2564 | |
a034e688 DM |
2565 | if (redo_op->op_type == OP_ENTER) { |
2566 | /* pop one less context to avoid $x being freed in while (my $x..) */ | |
2567 | cxstack_ix++; | |
4ebe6e95 | 2568 | assert(CxTYPE(CX_CUR()) == CXt_BLOCK); |
a034e688 DM |
2569 | redo_op = redo_op->op_next; |
2570 | } | |
2571 | ||
7e637ba4 | 2572 | cx = CX_CUR(); |
a0d0e21e | 2573 | TOPBLOCK(cx); |
dfe0f39b | 2574 | CX_LEAVE_SCOPE(cx); |
936c78b5 | 2575 | FREETMPS; |
3a1b2b9e | 2576 | PL_curcop = cx->blk_oldcop; |
47c9d59f | 2577 | PERL_ASYNC_CHECK(); |
a034e688 | 2578 | return redo_op; |
a0d0e21e LW |
2579 | } |
2580 | ||
0824fdcb | 2581 | STATIC OP * |
5db1eb8d | 2582 | S_dofindlabel(pTHX_ OP *o, const char *label, STRLEN len, U32 flags, OP **opstack, OP **oplimit) |
a0d0e21e | 2583 | { |
a0d0e21e | 2584 | OP **ops = opstack; |
a1894d81 | 2585 | static const char* const too_deep = "Target of goto is too deeply nested"; |
a0d0e21e | 2586 | |
7918f24d NC |
2587 | PERL_ARGS_ASSERT_DOFINDLABEL; |
2588 | ||
fc36a67e | 2589 | if (ops >= oplimit) |
0157ef98 | 2590 | Perl_croak(aTHX_ "%s", too_deep); |
11343788 MB |
2591 | if (o->op_type == OP_LEAVE || |
2592 | o->op_type == OP_SCOPE || | |
2593 | o->op_type == OP_LEAVELOOP || | |
33d34e4c | 2594 | o->op_type == OP_LEAVESUB || |
11343788 | 2595 | o->op_type == OP_LEAVETRY) |
fc36a67e | 2596 | { |
5dc0d613 | 2597 | *ops++ = cUNOPo->op_first; |
fc36a67e | 2598 | if (ops >= oplimit) |
0157ef98 | 2599 | Perl_croak(aTHX_ "%s", too_deep); |
fc36a67e | 2600 | } |
c4aa4e48 | 2601 | *ops = 0; |
11343788 | 2602 | if (o->op_flags & OPf_KIDS) { |
aec46f14 | 2603 | OP *kid; |
a0d0e21e | 2604 | /* First try all the kids at this level, since that's likeliest. */ |
e6dae479 | 2605 | for (kid = cUNOPo->op_first; kid; kid = OpSIBLING(kid)) { |
7e8f1eac | 2606 | if (kid->op_type == OP_NEXTSTATE || kid->op_type == OP_DBSTATE) { |
5db1eb8d BF |
2607 | STRLEN kid_label_len; |
2608 | U32 kid_label_flags; | |
2609 | const char *kid_label = CopLABEL_len_flags(kCOP, | |
2610 | &kid_label_len, &kid_label_flags); | |
2611 | if (kid_label && ( | |
2612 | ( (kid_label_flags & SVf_UTF8) != (flags & SVf_UTF8) ) ? | |
2613 | (flags & SVf_UTF8) | |
2614 | ? (bytes_cmp_utf8( | |
2615 | (const U8*)kid_label, kid_label_len, | |
2616 | (const U8*)label, len) == 0) | |
2617 | : (bytes_cmp_utf8( | |
2618 | (const U8*)label, len, | |
2619 | (const U8*)kid_label, kid_label_len) == 0) | |
eade7155 BF |
2620 | : ( len == kid_label_len && ((kid_label == label) |
2621 | || memEQ(kid_label, label, len))))) | |
7e8f1eac AD |
2622 | return kid; |
2623 | } | |
a0d0e21e | 2624 | } |
e6dae479 | 2625 | for (kid = cUNOPo->op_first; kid; kid = OpSIBLING(kid)) { |
3280af22 | 2626 | if (kid == PL_lastgotoprobe) |
a0d0e21e | 2627 | continue; |
ed8d0fe2 SM |
2628 | if (kid->op_type == OP_NEXTSTATE || kid->op_type == OP_DBSTATE) { |
2629 | if (ops == opstack) | |
2630 | *ops++ = kid; | |
2631 | else if (ops[-1]->op_type == OP_NEXTSTATE || | |
2632 | ops[-1]->op_type == OP_DBSTATE) | |
2633 | ops[-1] = kid; | |
2634 | else | |
2635 | *ops++ = kid; | |
2636 | } | |
5db1eb8d | 2637 | if ((o = dofindlabel(kid, label, len, flags, ops, oplimit))) |
11343788 | 2638 | return o; |
a0d0e21e LW |
2639 | } |
2640 | } | |
c4aa4e48 | 2641 | *ops = 0; |
a0d0e21e LW |
2642 | return 0; |
2643 | } | |
2644 | ||
b1c05ba5 DM |
2645 | |
2646 | /* also used for: pp_dump() */ | |
2647 | ||
2648 | PP(pp_goto) | |
a0d0e21e | 2649 | { |
27da23d5 | 2650 | dVAR; dSP; |
cbbf8932 | 2651 | OP *retop = NULL; |
a0d0e21e | 2652 | I32 ix; |
eb578fdb | 2653 | PERL_CONTEXT *cx; |
fc36a67e | 2654 | #define GOTO_DEPTH 64 |
2655 | OP *enterops[GOTO_DEPTH]; | |
cbbf8932 | 2656 | const char *label = NULL; |
5db1eb8d BF |
2657 | STRLEN label_len = 0; |
2658 | U32 label_flags = 0; | |
bfed75c6 | 2659 | const bool do_dump = (PL_op->op_type == OP_DUMP); |
a1894d81 | 2660 | static const char* const must_have_label = "goto must have label"; |
a0d0e21e | 2661 | |
533c011a | 2662 | if (PL_op->op_flags & OPf_STACKED) { |
7d1d69cb DM |
2663 | /* goto EXPR or goto &foo */ |
2664 | ||
9d4ba2ae | 2665 | SV * const sv = POPs; |
55b37f1c | 2666 | SvGETMAGIC(sv); |
a0d0e21e | 2667 | |
a0d0e21e | 2668 | if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVCV) { |
0fa3d31d | 2669 | /* This egregious kludge implements goto &subroutine */ |
a0d0e21e | 2670 | I32 cxix; |
eb578fdb | 2671 | PERL_CONTEXT *cx; |
ea726b52 | 2672 | CV *cv = MUTABLE_CV(SvRV(sv)); |
049bd5ff | 2673 | AV *arg = GvAV(PL_defgv); |
a0d0e21e | 2674 | |
5d52e310 | 2675 | while (!CvROOT(cv) && !CvXSUB(cv)) { |
7fc63493 | 2676 | const GV * const gv = CvGV(cv); |
e8f7dd13 | 2677 | if (gv) { |
7fc63493 | 2678 | GV *autogv; |
e8f7dd13 GS |
2679 | SV *tmpstr; |
2680 | /* autoloaded stub? */ | |
2681 | if (cv != GvCV(gv) && (cv = GvCV(gv))) | |
5d52e310 | 2682 | continue; |
c271df94 BF |
2683 | autogv = gv_autoload_pvn(GvSTASH(gv), GvNAME(gv), |
2684 | GvNAMELEN(gv), | |
2685 | GvNAMEUTF8(gv) ? SVf_UTF8 : 0); | |
e8f7dd13 | 2686 | if (autogv && (cv = GvCV(autogv))) |
5d52e310 | 2687 | continue; |
e8f7dd13 | 2688 | tmpstr = sv_newmortal(); |
c445ea15 | 2689 | gv_efullname3(tmpstr, gv, NULL); |
be2597df | 2690 | DIE(aTHX_ "Goto undefined subroutine &%"SVf"", SVfARG(tmpstr)); |
4aa0a1f7 | 2691 | } |
cea2e8a9 | 2692 | DIE(aTHX_ "Goto undefined subroutine"); |
4aa0a1f7 AD |
2693 | } |
2694 | ||
a0d0e21e | 2695 | cxix = dopoptosub(cxstack_ix); |
d338c0c2 DM |
2696 | if (cxix < 0) { |
2697 | DIE(aTHX_ "Can't goto subroutine outside a subroutine"); | |
8da3792e | 2698 | } |
d338c0c2 | 2699 | cx = &cxstack[cxix]; |
564abe23 | 2700 | /* ban goto in eval: see <20050521150056.GC20213@iabyn.com> */ |
2d43a17f | 2701 | if (CxTYPE(cx) == CXt_EVAL) { |
c74ace89 | 2702 | if (CxREALEVAL(cx)) |
00455a92 | 2703 | /* diag_listed_as: Can't goto subroutine from an eval-%s */ |
c74ace89 DM |
2704 | DIE(aTHX_ "Can't goto subroutine from an eval-string"); |
2705 | else | |
00455a92 | 2706 | /* diag_listed_as: Can't goto subroutine from an eval-%s */ |
c74ace89 | 2707 | DIE(aTHX_ "Can't goto subroutine from an eval-block"); |
2d43a17f | 2708 | } |
9850bf21 RH |
2709 | else if (CxMULTICALL(cx)) |
2710 | DIE(aTHX_ "Can't goto subroutine from a sort sub (or similar callback)"); | |
d338c0c2 DM |
2711 | |
2712 | /* First do some returnish stuff. */ | |
2713 | ||
2714 | SvREFCNT_inc_simple_void(cv); /* avoid premature free during unwind */ | |
2715 | FREETMPS; | |
2716 | if (cxix < cxstack_ix) { | |
2717 | dounwind(cxix); | |
2718 | } | |
7e637ba4 | 2719 | cx = CX_CUR(); |
d338c0c2 DM |
2720 | TOPBLOCK(cx); |
2721 | SPAGAIN; | |
39de75fd | 2722 | |
8ae997c5 DM |
2723 | /* protect @_ during save stack unwind. */ |
2724 | if (arg) | |
2725 | SvREFCNT_inc_NN(sv_2mortal(MUTABLE_SV(arg))); | |
2726 | ||
2727 | assert(PL_scopestack_ix == cx->blk_oldscopesp); | |
dfe0f39b | 2728 | CX_LEAVE_SCOPE(cx); |
8ae997c5 | 2729 | |
bafb2adc | 2730 | if (CxTYPE(cx) == CXt_SUB && CxHASARGS(cx)) { |
dbf345cf | 2731 | /* this is part of POPSUB_ARGS() */ |
9513529b | 2732 | AV* av = MUTABLE_AV(PAD_SVl(0)); |
e2657e18 DM |
2733 | assert(AvARRAY(MUTABLE_AV( |
2734 | PadlistARRAY(CvPADLIST(cx->blk_sub.cv))[ | |
2735 | CvDEPTH(cx->blk_sub.cv)])) == PL_curpad); | |
2736 | ||
f72bdec3 DM |
2737 | /* we are going to donate the current @_ from the old sub |
2738 | * to the new sub. This first part of the donation puts a | |
2739 | * new empty AV in the pad[0] slot of the old sub, | |
2740 | * unless pad[0] and @_ differ (e.g. if the old sub did | |
2741 | * local *_ = []); in which case clear the old pad[0] | |
2742 | * array in the usual way */ | |
95b2f486 DM |
2743 | if (av == arg || AvREAL(av)) |
2744 | clear_defarray(av, av == arg); | |
049bd5ff | 2745 | else CLEAR_ARGARRAY(av); |
a0d0e21e | 2746 | } |
88c11d84 | 2747 | |
b1e25d05 DM |
2748 | /* don't restore PL_comppad here. It won't be needed if the |
2749 | * sub we're going to is non-XS, but restoring it early then | |
2750 | * croaking (e.g. the "Goto undefined subroutine" below) | |
2751 | * means the CX block gets processed again in dounwind, | |
2752 | * but this time with the wrong PL_comppad */ | |
88c11d84 | 2753 | |
1d59c038 FC |
2754 | /* A destructor called during LEAVE_SCOPE could have undefined |
2755 | * our precious cv. See bug #99850. */ | |
2756 | if (!CvROOT(cv) && !CvXSUB(cv)) { | |
2757 | const GV * const gv = CvGV(cv); | |
2758 | if (gv) { | |
2759 | SV * const tmpstr = sv_newmortal(); | |
2760 | gv_efullname3(tmpstr, gv, NULL); | |
2761 | DIE(aTHX_ "Goto undefined subroutine &%"SVf"", | |
2762 | SVfARG(tmpstr)); | |
2763 | } | |
2764 | DIE(aTHX_ "Goto undefined subroutine"); | |
2765 | } | |
2766 | ||
cd17cc2e DM |
2767 | if (CxTYPE(cx) == CXt_SUB) { |
2768 | CvDEPTH(cx->blk_sub.cv) = cx->blk_sub.olddepth; | |
2769 | SvREFCNT_dec_NN(cx->blk_sub.cv); | |
2770 | } | |
2771 | ||
a0d0e21e | 2772 | /* Now do some callish stuff. */ |
aed2304a | 2773 | if (CvISXSUB(cv)) { |
ad39f3a2 | 2774 | const SSize_t items = arg ? AvFILL(arg) + 1 : 0; |
cd313eb4 | 2775 | const bool m = arg ? cBOOL(SvRMAGICAL(arg)) : 0; |
049bd5ff FC |
2776 | SV** mark; |
2777 | ||
8ae997c5 | 2778 | ENTER; |
80774f05 DM |
2779 | SAVETMPS; |
2780 | SAVEFREESV(cv); /* later, undo the 'avoid premature free' hack */ | |
2781 | ||
049bd5ff | 2782 | /* put GvAV(defgv) back onto stack */ |
8c9d3376 FC |
2783 | if (items) { |
2784 | EXTEND(SP, items+1); /* @_ could have been extended. */ | |
8c9d3376 | 2785 | } |
049bd5ff | 2786 | mark = SP; |
ad39f3a2 | 2787 | if (items) { |
de935cc9 | 2788 | SSize_t index; |
ad39f3a2 | 2789 | bool r = cBOOL(AvREAL(arg)); |
b1464ded | 2790 | for (index=0; index<items; index++) |
ad39f3a2 FC |
2791 | { |
2792 | SV *sv; | |
2793 | if (m) { | |
2794 | SV ** const svp = av_fetch(arg, index, 0); | |
2795 | sv = svp ? *svp : NULL; | |
dd2a7f90 | 2796 | } |
ad39f3a2 FC |
2797 | else sv = AvARRAY(arg)[index]; |
2798 | SP[index+1] = sv | |
2799 | ? r ? SvREFCNT_inc_NN(sv_2mortal(sv)) : sv | |
2800 | : sv_2mortal(newSVavdefelem(arg, index, 1)); | |
2801 | } | |
049bd5ff | 2802 | } |
ad39f3a2 | 2803 | SP += items; |
049bd5ff FC |
2804 | if (CxTYPE(cx) == CXt_SUB && CxHASARGS(cx)) { |
2805 | /* Restore old @_ */ | |
6fb05a88 | 2806 | POP_SAVEARRAY(cx); |
b1464ded | 2807 | } |
1fa4e549 | 2808 | |
51eb35b5 | 2809 | retop = cx->blk_sub.retop; |
b1e25d05 DM |
2810 | PL_comppad = cx->blk_sub.prevcomppad; |
2811 | PL_curpad = LIKELY(PL_comppad) ? AvARRAY(PL_comppad) : NULL; | |
8ae997c5 DM |
2812 | |
2813 | /* XS subs don't have a CXt_SUB, so pop it; | |
2814 | * this is a POPBLOCK(), less all the stuff we already did | |
2815 | * for TOPBLOCK() earlier */ | |
2816 | PL_curcop = cx->blk_oldcop; | |
5da525e9 | 2817 | CX_POP(cx); |
8ae997c5 | 2818 | |
b37c2d43 AL |
2819 | /* Push a mark for the start of arglist */ |
2820 | PUSHMARK(mark); | |
2821 | PUTBACK; | |
2822 | (void)(*CvXSUB(cv))(aTHX_ cv); | |
a57c6685 | 2823 | LEAVE; |
51eb35b5 | 2824 | goto _return; |
a0d0e21e LW |
2825 | } |
2826 | else { | |
b70d5558 | 2827 | PADLIST * const padlist = CvPADLIST(cv); |
39de75fd | 2828 | |
80774f05 DM |
2829 | SAVEFREESV(cv); /* later, undo the 'avoid premature free' hack */ |
2830 | ||
39de75fd DM |
2831 | /* partial unrolled PUSHSUB(): */ |
2832 | ||
a0d0e21e | 2833 | cx->blk_sub.cv = cv; |
1a5b3db4 | 2834 | cx->blk_sub.olddepth = CvDEPTH(cv); |
dd2155a4 | 2835 | |
a0d0e21e | 2836 | CvDEPTH(cv)++; |
2c50b7ed DM |
2837 | SvREFCNT_inc_simple_void_NN(cv); |
2838 | if (CvDEPTH(cv) > 1) { | |
2b9dff67 | 2839 | if (CvDEPTH(cv) == PERL_SUB_DEPTH_WARN && ckWARN(WARN_RECURSION)) |
44a8e56a | 2840 | sub_crush_depth(cv); |
26019298 | 2841 | pad_push(padlist, CvDEPTH(cv)); |
a0d0e21e | 2842 | } |
426a09cd | 2843 | PL_curcop = cx->blk_oldcop; |
fd617465 | 2844 | PAD_SET_CUR_NOSAVE(padlist, CvDEPTH(cv)); |
bafb2adc | 2845 | if (CxHASARGS(cx)) |
6d4ff0d2 | 2846 | { |
f72bdec3 DM |
2847 | /* second half of donating @_ from the old sub to the |
2848 | * new sub: abandon the original pad[0] AV in the | |
2849 | * new sub, and replace it with the donated @_. | |
2850 | * pad[0] takes ownership of the extra refcount | |
2851 | * we gave arg earlier */ | |
bfa371b6 FC |
2852 | if (arg) { |
2853 | SvREFCNT_dec(PAD_SVl(0)); | |
fed4514a | 2854 | PAD_SVl(0) = (SV *)arg; |
13122036 | 2855 | SvREFCNT_inc_simple_void_NN(arg); |
bfa371b6 | 2856 | } |
049bd5ff FC |
2857 | |
2858 | /* GvAV(PL_defgv) might have been modified on scope | |
f72bdec3 | 2859 | exit, so point it at arg again. */ |
049bd5ff FC |
2860 | if (arg != GvAV(PL_defgv)) { |
2861 | AV * const av = GvAV(PL_defgv); | |
2862 | GvAV(PL_defgv) = (AV *)SvREFCNT_inc_simple(arg); | |
2863 | SvREFCNT_dec(av); | |
a0d0e21e LW |
2864 | } |
2865 | } | |
13122036 | 2866 | |
491527d0 | 2867 | if (PERLDB_SUB) { /* Checking curstash breaks DProf. */ |
005a8a35 | 2868 | Perl_get_db_sub(aTHX_ NULL, cv); |
b37c2d43 | 2869 | if (PERLDB_GOTO) { |
b96d8cd9 | 2870 | CV * const gotocv = get_cvs("DB::goto", 0); |
b37c2d43 AL |
2871 | if (gotocv) { |
2872 | PUSHMARK( PL_stack_sp ); | |
ad64d0ec | 2873 | call_sv(MUTABLE_SV(gotocv), G_SCALAR | G_NODEBUG); |
b37c2d43 AL |
2874 | PL_stack_sp--; |
2875 | } | |
491527d0 | 2876 | } |
1ce6579f | 2877 | } |
51eb35b5 DD |
2878 | retop = CvSTART(cv); |
2879 | goto putback_return; | |
a0d0e21e LW |
2880 | } |
2881 | } | |
1614b0e3 | 2882 | else { |
7d1d69cb | 2883 | /* goto EXPR */ |
55b37f1c | 2884 | label = SvPV_nomg_const(sv, label_len); |
5db1eb8d | 2885 | label_flags = SvUTF8(sv); |
1614b0e3 | 2886 | } |
a0d0e21e | 2887 | } |
2fc690dc | 2888 | else if (!(PL_op->op_flags & OPf_SPECIAL)) { |
7d1d69cb | 2889 | /* goto LABEL or dump LABEL */ |
5db1eb8d BF |
2890 | label = cPVOP->op_pv; |
2891 | label_flags = (cPVOP->op_private & OPpPV_IS_UTF8) ? SVf_UTF8 : 0; | |
2892 | label_len = strlen(label); | |
2893 | } | |
0157ef98 | 2894 | if (!(do_dump || label_len)) DIE(aTHX_ "%s", must_have_label); |
a0d0e21e | 2895 | |
f410a211 NC |
2896 | PERL_ASYNC_CHECK(); |
2897 | ||
3532f34a | 2898 | if (label_len) { |
cbbf8932 | 2899 | OP *gotoprobe = NULL; |
3b2447bc | 2900 | bool leaving_eval = FALSE; |
33d34e4c | 2901 | bool in_block = FALSE; |
cbbf8932 | 2902 | PERL_CONTEXT *last_eval_cx = NULL; |
a0d0e21e LW |
2903 | |
2904 | /* find label */ | |
2905 | ||
d4c19fe8 | 2906 | PL_lastgotoprobe = NULL; |
a0d0e21e LW |
2907 | *enterops = 0; |
2908 | for (ix = cxstack_ix; ix >= 0; ix--) { | |
2909 | cx = &cxstack[ix]; | |
6b35e009 | 2910 | switch (CxTYPE(cx)) { |
a0d0e21e | 2911 | case CXt_EVAL: |
3b2447bc | 2912 | leaving_eval = TRUE; |
971ecbe6 | 2913 | if (!CxTRYBLOCK(cx)) { |
a4f3a277 RH |
2914 | gotoprobe = (last_eval_cx ? |
2915 | last_eval_cx->blk_eval.old_eval_root : | |
2916 | PL_eval_root); | |
2917 | last_eval_cx = cx; | |
9c5794fe RH |
2918 | break; |
2919 | } | |
2920 | /* else fall through */ | |
93661e56 DM |
2921 | case CXt_LOOP_PLAIN: |
2922 | case CXt_LOOP_LAZYIV: | |
2923 | case CXt_LOOP_LAZYSV: | |
2924 | case CXt_LOOP_LIST: | |
2925 | case CXt_LOOP_ARY: | |
bb5aedc1 VP |
2926 | case CXt_GIVEN: |
2927 | case CXt_WHEN: | |
e6dae479 | 2928 | gotoprobe = OpSIBLING(cx->blk_oldcop); |
a0d0e21e LW |
2929 | break; |
2930 | case CXt_SUBST: | |
2931 | continue; | |
2932 | case CXt_BLOCK: | |
33d34e4c | 2933 | if (ix) { |
e6dae479 | 2934 | gotoprobe = OpSIBLING(cx->blk_oldcop); |
33d34e4c AE |
2935 | in_block = TRUE; |
2936 | } else | |
3280af22 | 2937 | gotoprobe = PL_main_root; |
a0d0e21e | 2938 | break; |
b3933176 | 2939 | case CXt_SUB: |
9850bf21 | 2940 | if (CvDEPTH(cx->blk_sub.cv) && !CxMULTICALL(cx)) { |
b3933176 CS |
2941 | gotoprobe = CvROOT(cx->blk_sub.cv); |
2942 | break; | |
2943 | } | |
924ba076 | 2944 | /* FALLTHROUGH */ |
7766f137 | 2945 | case CXt_FORMAT: |
0a753a76 | 2946 | case CXt_NULL: |
a651a37d | 2947 | DIE(aTHX_ "Can't \"goto\" out of a pseudo block"); |
a0d0e21e LW |
2948 | default: |
2949 | if (ix) | |
5637ef5b NC |
2950 | DIE(aTHX_ "panic: goto, type=%u, ix=%ld", |
2951 | CxTYPE(cx), (long) ix); | |
3280af22 | 2952 | gotoprobe = PL_main_root; |
a0d0e21e LW |
2953 | break; |
2954 | } | |
2b597662 | 2955 | if (gotoprobe) { |
29e61fd9 DM |
2956 | OP *sibl1, *sibl2; |
2957 | ||
5db1eb8d | 2958 | retop = dofindlabel(gotoprobe, label, label_len, label_flags, |
2b597662 GS |
2959 | enterops, enterops + GOTO_DEPTH); |
2960 | if (retop) | |
2961 | break; | |
e6dae479 | 2962 | if ( (sibl1 = OpSIBLING(gotoprobe)) && |
29e61fd9 | 2963 | sibl1->op_type == OP_UNSTACK && |
e6dae479 | 2964 | (sibl2 = OpSIBLING(sibl1))) |
29e61fd9 DM |
2965 | { |
2966 | retop = dofindlabel(sibl2, | |
5db1eb8d BF |
2967 | label, label_len, label_flags, enterops, |
2968 | enterops + GOTO_DEPTH); | |
eae48c89 Z |
2969 | if (retop) |
2970 | break; | |
2971 | } | |
2b597662 | 2972 | } |
3280af22 | 2973 | PL_lastgotoprobe = gotoprobe; |
a0d0e21e LW |
2974 | } |
2975 | if (!retop) | |
b17a0679 FC |
2976 | DIE(aTHX_ "Can't find label %"UTF8f, |
2977 | UTF8fARG(label_flags, label_len, label)); | |
a0d0e21e | 2978 | |
3b2447bc RH |
2979 | /* if we're leaving an eval, check before we pop any frames |
2980 | that we're not going to punt, otherwise the error | |
2981 | won't be caught */ | |
2982 | ||
2983 | if (leaving_eval && *enterops && enterops[1]) { | |
2984 | I32 i; | |
2985 | for (i = 1; enterops[i]; i++) | |
2986 | if (enterops[i]->op_type == OP_ENTERITER) | |
2987 | DIE(aTHX_ "Can't \"goto\" into the middle of a foreach loop"); | |
2988 | } | |
2989 | ||
b500e03b GG |
2990 | if (*enterops && enterops[1]) { |
2991 | I32 i = enterops[1]->op_type == OP_ENTER && in_block ? 2 : 1; | |
2992 | if (enterops[i]) | |
2993 | deprecate("\"goto\" to jump into a construct"); | |
2994 | } | |
2995 | ||
a0d0e21e LW |
2996 | /* pop unwanted frames */ |
2997 | ||
2998 | if (ix < cxstack_ix) { | |
a0d0e21e | 2999 | if (ix < 0) |
5edb7975 | 3000 | DIE(aTHX_ "panic: docatch: illegal ix=%ld", (long)ix); |
a0d0e21e | 3001 | dounwind(ix); |
7e637ba4 | 3002 | cx = CX_CUR(); |
a0d0e21e | 3003 | TOPBLOCK(cx); |
a0d0e21e LW |
3004 | } |
3005 | ||
3006 | /* push wanted frames */ | |
3007 | ||
748a9306 | 3008 | if (*enterops && enterops[1]) { |
0bd48802 | 3009 | OP * const oldop = PL_op; |
33d34e4c AE |
3010 | ix = enterops[1]->op_type == OP_ENTER && in_block ? 2 : 1; |
3011 | for (; enterops[ix]; ix++) { | |
533c011a | 3012 | PL_op = enterops[ix]; |
84902520 TB |
3013 | /* Eventually we may want to stack the needed arguments |
3014 | * for each op. For now, we punt on the hard ones. */ | |
533c011a | 3015 | if (PL_op->op_type == OP_ENTERITER) |
894356b3 | 3016 | DIE(aTHX_ "Can't \"goto\" into the middle of a foreach loop"); |
16c91539 | 3017 | PL_op->op_ppaddr(aTHX); |
a0d0e21e | 3018 | } |
533c011a | 3019 | PL_op = oldop; |
a0d0e21e LW |
3020 | } |
3021 | } | |
3022 | ||
2631bbca | 3023 | if (do_dump) { |
a5f75d66 | 3024 | #ifdef VMS |
6b88bc9c | 3025 | if (!retop) retop = PL_main_start; |
a5f75d66 | 3026 | #endif |
3280af22 NIS |
3027 | PL_restartop = retop; |
3028 | PL_do_undump = TRUE; | |
a0d0e21e LW |
3029 | |
3030 | my_unexec(); | |
3031 | ||
3280af22 NIS |
3032 | PL_restartop = 0; /* hmm, must be GNU unexec().. */ |
3033 | PL_do_undump = FALSE; | |
a0d0e21e LW |
3034 | } |
3035 | ||
51eb35b5 DD |
3036 | putback_return: |
3037 | PL_stack_sp = sp; | |
3038 | _return: | |
47c9d59f | 3039 | PERL_ASYNC_CHECK(); |
51eb35b5 | 3040 | return retop; |
a0d0e21e LW |
3041 | } |
3042 | ||
3043 | PP(pp_exit) | |
3044 | { | |
39644a26 | 3045 | dSP; |
a0d0e21e LW |
3046 | I32 anum; |
3047 | ||
3048 | if (MAXARG < 1) | |
3049 | anum = 0; | |
9d3c658e FC |
3050 | else if (!TOPs) { |
3051 | anum = 0; (void)POPs; | |
3052 | } | |
ff0cee69 | 3053 | else { |
a0d0e21e | 3054 | anum = SvIVx(POPs); |
d98f61e7 | 3055 | #ifdef VMS |
5450b4d8 FC |
3056 | if (anum == 1 |
3057 | && SvTRUE(cop_hints_fetch_pvs(PL_curcop, "vmsish_exit", 0))) | |
ff0cee69 | 3058 | anum = 0; |
97124ef6 FC |
3059 | VMSISH_HUSHED = |
3060 | VMSISH_HUSHED || (PL_curcop->op_private & OPpHUSH_VMSISH); | |
ff0cee69 | 3061 | #endif |
3062 | } | |
cc3604b1 | 3063 | PL_exit_flags |= PERL_EXIT_EXPECTED; |
a0d0e21e | 3064 | my_exit(anum); |
3280af22 | 3065 | PUSHs(&PL_sv_undef); |
a0d0e21e LW |
3066 | RETURN; |
3067 | } | |
3068 | ||
a0d0e21e LW |
3069 | /* Eval. */ |
3070 | ||
0824fdcb | 3071 | STATIC void |
cea2e8a9 | 3072 | S_save_lines(pTHX_ AV *array, SV *sv) |
a0d0e21e | 3073 | { |
504618e9 | 3074 | const char *s = SvPVX_const(sv); |
890ce7af | 3075 | const char * const send = SvPVX_const(sv) + SvCUR(sv); |
504618e9 | 3076 | I32 line = 1; |
a0d0e21e | 3077 | |
7918f24d NC |
3078 | PERL_ARGS_ASSERT_SAVE_LINES; |
3079 | ||
a0d0e21e | 3080 | while (s && s < send) { |
f54cb97a | 3081 | const char *t; |
b9f83d2f | 3082 | SV * const tmpstr = newSV_type(SVt_PVMG); |
a0d0e21e | 3083 | |
1d963ff3 | 3084 | t = (const char *)memchr(s, '\n', send - s); |
a0d0e21e LW |
3085 | if (t) |
3086 | t++; | |
3087 | else | |
3088 | t = send; | |
3089 | ||
3090 | sv_setpvn(tmpstr, s, t - s); | |
3091 | av_store(array, line++, tmpstr); | |
3092 | s = t; | |
3093 | } | |
3094 | } | |
3095 | ||
22f16304 RU |
3096 | /* |
3097 | =for apidoc docatch | |
3098 | ||
3099 | Check for the cases 0 or 3 of cur_env.je_ret, only used inside an eval context. | |
3100 | ||
3101 | 0 is used as continue inside eval, | |
3102 | ||
3103 | 3 is used for a die caught by an inner eval - continue inner loop | |
3104 | ||
75af9d73 | 3105 | See F<cop.h>: je_mustcatch, when set at any runlevel to TRUE, means eval ops must |
22f16304 RU |
3106 | establish a local jmpenv to handle exception traps. |
3107 | ||
3108 | =cut | |
3109 | */ | |
0824fdcb | 3110 | STATIC OP * |
cea2e8a9 | 3111 | S_docatch(pTHX_ OP *o) |
1e422769 | 3112 | { |
6224f72b | 3113 | int ret; |
06b5626a | 3114 | OP * const oldop = PL_op; |
db36c5a1 | 3115 | dJMPENV; |
1e422769 | 3116 | |
1e422769 | 3117 | #ifdef DEBUGGING |
54310121 | 3118 | assert(CATCH_GET == TRUE); |
1e422769 | 3119 | #endif |
312caa8e | 3120 | PL_op = o; |
8bffa5f8 | 3121 | |
14dd3ad8 | 3122 | JMPENV_PUSH(ret); |
6224f72b | 3123 | switch (ret) { |
312caa8e | 3124 | case 0: |
abd70938 | 3125 | assert(cxstack_ix >= 0); |
4ebe6e95 DM |
3126 | assert(CxTYPE(CX_CUR()) == CXt_EVAL); |
3127 | CX_CUR()->blk_eval.cur_top_env = PL_top_env; | |
14dd3ad8 | 3128 | redo_body: |
85aaa934 | 3129 | CALLRUNOPS(aTHX); |
312caa8e CS |
3130 | break; |
3131 | case 3: | |
8bffa5f8 | 3132 | /* die caught by an inner eval - continue inner loop */ |
febb3a6d Z |
3133 | if (PL_restartop && PL_restartjmpenv == PL_top_env) { |
3134 | PL_restartjmpenv = NULL; | |
312caa8e CS |
3135 | PL_op = PL_restartop; |
3136 | PL_restartop = 0; | |
3137 | goto redo_body; | |
3138 | } | |
924ba076 | 3139 | /* FALLTHROUGH */ |
312caa8e | 3140 | default: |
14dd3ad8 | 3141 | JMPENV_POP; |
533c011a | 3142 | PL_op = oldop; |
6224f72b | 3143 | JMPENV_JUMP(ret); |
e5964223 | 3144 | NOT_REACHED; /* NOTREACHED */ |
1e422769 | 3145 | } |
14dd3ad8 | 3146 | JMPENV_POP; |
533c011a | 3147 | PL_op = oldop; |
5f66b61c | 3148 | return NULL; |
1e422769 | 3149 | } |
3150 | ||
a3985cdc DM |
3151 | |
3152 | /* | |
3153 | =for apidoc find_runcv | |
3154 | ||
3155 | Locate the CV corresponding to the currently executing sub or eval. | |
796b6530 KW |
3156 | If C<db_seqp> is non_null, skip CVs that are in the DB package and populate |
3157 | C<*db_seqp> with the cop sequence number at the point that the DB:: code was | |
72d33970 FC |
3158 | entered. (This allows debuggers to eval in the scope of the breakpoint |
3159 | rather than in the scope of the debugger itself.) | |
a3985cdc DM |
3160 | |
3161 | =cut | |
3162 | */ | |
3163 | ||
3164 | CV* | |
d819b83a | 3165 | Perl_find_runcv(pTHX_ U32 *db_seqp) |
a3985cdc | 3166 | { |
db4cf31d | 3167 | return Perl_find_runcv_where(aTHX_ 0, 0, db_seqp); |
70794f7b FC |
3168 | } |
3169 | ||
3170 | /* If this becomes part of the API, it might need a better name. */ | |
3171 | CV * | |
db4cf31d | 3172 | Perl_find_runcv_where(pTHX_ U8 cond, IV arg, U32 *db_seqp) |
70794f7b | 3173 | { |
a3985cdc | 3174 | PERL_SI *si; |
b4b0692a | 3175 | int level = 0; |
a3985cdc | 3176 | |
d819b83a | 3177 | if (db_seqp) |
c3923c33 DM |
3178 | *db_seqp = |
3179 | PL_curcop == &PL_compiling | |
3180 | ? PL_cop_seqmax | |
3181 | : PL_curcop->cop_seq; | |
3182 | ||
a3985cdc | 3183 | for (si = PL_curstackinfo; si; si = si->si_prev) { |
06b5626a | 3184 | I32 ix; |
a3985cdc | 3185 | for (ix = si->si_cxix; ix >= 0; ix--) { |
06b5626a | 3186 | const PERL_CONTEXT *cx = &(si->si_cxstack[ix]); |
70794f7b | 3187 | CV *cv = NULL; |
d819b83a | 3188 | if (CxTYPE(cx) == CXt_SUB || CxTYPE(cx) == CXt_FORMAT) { |
70794f7b | 3189 | cv = cx->blk_sub.cv; |
d819b83a DM |
3190 | /* skip DB:: code */ |
3191 | if (db_seqp && PL_debstash && CvSTASH(cv) == PL_debstash) { | |
3192 | *db_seqp = cx->blk_oldcop->cop_seq; | |
3193 | continue; | |
3194 | } | |
a453e28a DM |
3195 | if (cx->cx_type & CXp_SUB_RE) |
3196 | continue; | |
d819b83a | 3197 | } |
a3985cdc | 3198 | else if (CxTYPE(cx) == CXt_EVAL && !CxTRYBLOCK(cx)) |
70794f7b FC |
3199 | cv = cx->blk_eval.cv; |
3200 | if (cv) { | |
3201 | switch (cond) { | |
db4cf31d FC |
3202 | case FIND_RUNCV_padid_eq: |
3203 | if (!CvPADLIST(cv) | |
b4db5868 | 3204 | || CvPADLIST(cv)->xpadl_id != (U32)arg) |
8771da69 | 3205 | continue; |
b4b0692a FC |
3206 | return cv; |
3207 | case FIND_RUNCV_level_eq: | |
db4cf31d | 3208 | if (level++ != arg) continue; |
70794f7b FC |
3209 | /* GERONIMO! */ |
3210 | default: | |
3211 | return cv; | |
3212 | } | |
3213 | } | |
a3985cdc DM |
3214 | } |
3215 | } | |
db4cf31d | 3216 | return cond == FIND_RUNCV_padid_eq ? NULL : PL_main_cv; |
a3985cdc DM |
3217 | } |
3218 | ||
3219 | ||
27e90453 DM |
3220 | /* Run yyparse() in a setjmp wrapper. Returns: |
3221 | * 0: yyparse() successful | |
3222 | * 1: yyparse() failed | |
3223 | * 3: yyparse() died | |
3224 | */ | |
3225 | STATIC int | |
28ac2b49 | 3226 | S_try_yyparse(pTHX_ int gramtype) |
27e90453 DM |
3227 | { |
3228 | int ret; | |
3229 | dJMPENV; | |
3230 | ||
4ebe6e95 | 3231 | assert(CxTYPE(CX_CUR()) == CXt_EVAL); |
27e90453 DM |
3232 | JMPENV_PUSH(ret); |
3233 | switch (ret) { | |
3234 | case 0: | |
28ac2b49 | 3235 | ret = yyparse(gramtype) ? 1 : 0; |
27e90453 DM |
3236 | break; |
3237 | case 3: | |
3238 | break; | |
3239 | default: | |
3240 | JMPENV_POP; | |
3241 | JMPENV_JUMP(ret); | |
e5964223 | 3242 | NOT_REACHED; /* NOTREACHED */ |
27e90453 DM |
3243 | } |
3244 | JMPENV_POP; | |
3245 | return ret; | |
3246 | } | |
3247 | ||
3248 | ||
104a8185 DM |
3249 | /* Compile a require/do or an eval ''. |
3250 | * | |
a3985cdc | 3251 | * outside is the lexically enclosing CV (if any) that invoked us. |
104a8185 DM |
3252 | * seq is the current COP scope value. |
3253 | * hh is the saved hints hash, if any. | |
3254 | * | |
410be5db | 3255 | * Returns a bool indicating whether the compile was successful; if so, |
104a8185 DM |
3256 | * PL_eval_start contains the first op of the compiled code; otherwise, |
3257 | * pushes undef. | |
3258 | * | |
3259 | * This function is called from two places: pp_require and pp_entereval. | |
3260 | * These can be distinguished by whether PL_op is entereval. | |
7d116edc FC |
3261 | */ |
3262 | ||
410be5db | 3263 | STATIC bool |
9aba0c93 | 3264 | S_doeval_compile(pTHX_ int gimme, CV* outside, U32 seq, HV *hh) |
a0d0e21e | 3265 | { |
20b7effb | 3266 | dSP; |
46c461b5 | 3267 | OP * const saveop = PL_op; |
104a8185 | 3268 | bool clear_hints = saveop->op_type != OP_ENTEREVAL; |
f45b078d | 3269 | COP * const oldcurcop = PL_curcop; |
26c9400e | 3270 | bool in_require = (saveop->op_type == OP_REQUIRE); |
27e90453 | 3271 | int yystatus; |
676a678a | 3272 | CV *evalcv; |
a0d0e21e | 3273 | |
27e90453 | 3274 | PL_in_eval = (in_require |
6dc8a9e4 | 3275 | ? (EVAL_INREQUIRE | (PL_in_eval & EVAL_INEVAL)) |
a1941760 DM |
3276 | : (EVAL_INEVAL | |
3277 | ((PL_op->op_private & OPpEVAL_RE_REPARSING) | |
3278 | ? EVAL_RE_REPARSING : 0))); | |
a0d0e21e | 3279 | |
1ce6579f | 3280 | PUSHMARK(SP); |
3281 | ||
676a678a Z |
3282 | evalcv = MUTABLE_CV(newSV_type(SVt_PVCV)); |
3283 | CvEVAL_on(evalcv); | |
4ebe6e95 DM |
3284 | assert(CxTYPE(CX_CUR()) == CXt_EVAL); |
3285 | CX_CUR()->blk_eval.cv = evalcv; | |
3286 | CX_CUR()->blk_gimme = gimme; | |
2090ab20 | 3287 | |
676a678a Z |
3288 | CvOUTSIDE_SEQ(evalcv) = seq; |
3289 | CvOUTSIDE(evalcv) = MUTABLE_CV(SvREFCNT_inc_simple(outside)); | |
a3985cdc | 3290 | |
dd2155a4 | 3291 | /* set up a scratch pad */ |
a0d0e21e | 3292 | |
eacbb379 | 3293 | CvPADLIST_set(evalcv, pad_new(padnew_SAVE)); |
cecbe010 | 3294 | PL_op = NULL; /* avoid PL_op and PL_curpad referring to different CVs */ |
2c05e328 | 3295 | |
07055b4c | 3296 | |
b5bbe64a | 3297 | SAVEMORTALIZESV(evalcv); /* must remain until end of current statement */ |
748a9306 | 3298 | |
a0d0e21e LW |
3299 | /* make sure we compile in the right package */ |
3300 | ||
ed094faf | 3301 | if (CopSTASH_ne(PL_curcop, PL_curstash)) { |
03d9f026 | 3302 | SAVEGENERICSV(PL_curstash); |
cb1ad50e FC |
3303 | PL_curstash = (HV *)CopSTASH(PL_curcop); |
3304 | if (SvTYPE(PL_curstash) != SVt_PVHV) PL_curstash = NULL; | |
3305 | else SvREFCNT_inc_simple_void(PL_curstash); | |
a0d0e21e | 3306 | } |
3c10abe3 | 3307 | /* XXX:ajgo do we really need to alloc an AV for begin/checkunit */ |
3280af22 NIS |
3308 | SAVESPTR(PL_beginav); |
3309 | PL_beginav = newAV(); | |
3310 | SAVEFREESV(PL_beginav); | |
3c10abe3 AG |
3311 | SAVESPTR(PL_unitcheckav); |
3312 | PL_unitcheckav = newAV(); | |
3313 | SAVEFREESV(PL_unitcheckav); | |
a0d0e21e | 3314 | |
81d86705 | 3315 | |
104a8185 | 3316 | ENTER_with_name("evalcomp"); |
676a678a Z |
3317 | SAVESPTR(PL_compcv); |
3318 | PL_compcv = evalcv; | |
3319 | ||
a0d0e21e LW |
3320 | /* try to compile it */ |
3321 | ||
5f66b61c | 3322 | PL_eval_root = NULL; |
3280af22 | 3323 | PL_curcop = &PL_compiling; |
26c9400e | 3324 | if ((saveop->op_type != OP_REQUIRE) && (saveop->op_flags & OPf_SPECIAL)) |
faef0170 | 3325 | PL_in_eval |= EVAL_KEEPERR; |
ab69dbc2 RGS |
3326 | else |
3327 | CLEAR_ERRSV(); | |
27e90453 | 3328 | |
377b5421 DM |
3329 | SAVEHINTS(); |
3330 | if (clear_hints) { | |
3331 | PL_hints = 0; | |
3332 | hv_clear(GvHV(PL_hintgv)); | |
3333 | } | |
3334 | else { | |
3335 | PL_hints = saveop->op_private & OPpEVAL_COPHH | |
3336 | ? oldcurcop->cop_hints : saveop->op_targ; | |
4f3e2518 DM |
3337 | |
3338 | /* making 'use re eval' not be in scope when compiling the | |
3339 | * qr/mabye_has_runtime_code_block/ ensures that we don't get | |
3340 | * infinite recursion when S_has_runtime_code() gives a false | |
3341 | * positive: the second time round, HINT_RE_EVAL isn't set so we | |
3342 | * don't bother calling S_has_runtime_code() */ | |
3343 | if (PL_in_eval & EVAL_RE_REPARSING) | |
3344 | PL_hints &= ~HINT_RE_EVAL; | |
3345 | ||
377b5421 DM |
3346 | if (hh) { |
3347 | /* SAVEHINTS created a new HV in PL_hintgv, which we need to GC */ | |
3348 | SvREFCNT_dec(GvHV(PL_hintgv)); | |
3349 | GvHV(PL_hintgv) = hh; | |
3350 | } | |
3351 | } | |
3352 | SAVECOMPILEWARNINGS(); | |
3353 | if (clear_hints) { | |
3354 | if (PL_dowarn & G_WARN_ALL_ON) | |
3355 | PL_compiling.cop_warnings = pWARN_ALL ; | |
3356 | else if (PL_dowarn & G_WARN_ALL_OFF) | |
3357 | PL_compiling.cop_warnings = pWARN_NONE ; | |
3358 | else | |
3359 | PL_compiling.cop_warnings = pWARN_STD ; | |
3360 | } | |
3361 | else { | |
3362 | PL_compiling.cop_warnings = | |
3363 | DUP_WARNINGS(oldcurcop->cop_warnings); | |
3364 | cophh_free(CopHINTHASH_get(&PL_compiling)); | |
3365 | if (Perl_cop_fetch_label(aTHX_ oldcurcop, NULL, NULL)) { | |
3366 | /* The label, if present, is the first entry on the chain. So rather | |
3367 | than writing a blank label in front of it (which involves an | |
3368 | allocation), just use the next entry in the chain. */ | |
3369 | PL_compiling.cop_hints_hash | |
3370 | = cophh_copy(oldcurcop->cop_hints_hash->refcounted_he_next); | |
3371 | /* Check the assumption that this removed the label. */ | |
3372 | assert(Perl_cop_fetch_label(aTHX_ &PL_compiling, NULL, NULL) == NULL); | |
f45b078d | 3373 | } |
377b5421 DM |
3374 | else |
3375 | PL_compiling.cop_hints_hash = cophh_copy(oldcurcop->cop_hints_hash); | |
3376 | } | |
f45b078d | 3377 | |
a88d97bf | 3378 | CALL_BLOCK_HOOKS(bhk_eval, saveop); |
52db365a | 3379 | |
27e90453 DM |
3380 | /* note that yyparse() may raise an exception, e.g. C<BEGIN{die}>, |
3381 | * so honour CATCH_GET and trap it here if necessary */ | |
3382 | ||
fc69996c DM |
3383 | |
3384 | /* compile the code */ | |
28ac2b49 | 3385 | yystatus = (!in_require && CATCH_GET) ? S_try_yyparse(aTHX_ GRAMPROG) : yyparse(GRAMPROG); |
27e90453 DM |
3386 | |
3387 | if (yystatus || PL_parser->error_count || !PL_eval_root) { | |
8a1fd305 | 3388 | SV *namesv = NULL; /* initialise to avoid compiler warning */ |
d164302a | 3389 | PERL_CONTEXT *cx; |
d308a779 | 3390 | SV *errsv; |
bfed75c6 | 3391 | |
d308a779 | 3392 | PL_op = saveop; |
fc69996c DM |
3393 | /* note that if yystatus == 3, then the require/eval died during |
3394 | * compilation, so the EVAL CX block has already been popped, and | |
3395 | * various vars restored */ | |
27e90453 | 3396 | if (yystatus != 3) { |
c86ffc32 DM |
3397 | if (PL_eval_root) { |
3398 | op_free(PL_eval_root); | |
3399 | PL_eval_root = NULL; | |
3400 | } | |
27e90453 | 3401 | SP = PL_stack_base + POPMARK; /* pop original mark */ |
4ebe6e95 | 3402 | cx = CX_CUR(); |
2f450c1b | 3403 | CX_LEAVE_SCOPE(cx); |
377b5421 | 3404 | POPEVAL(cx); |
dd748f45 | 3405 | POPBLOCK(cx); |
8a1fd305 DM |
3406 | if (in_require) |
3407 | namesv = cx->blk_eval.old_namesv; | |
5da525e9 | 3408 | CX_POP(cx); |
cd6472fc | 3409 | } |
9d4ba2ae | 3410 | |
eed484f9 | 3411 | errsv = ERRSV; |