This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[perl #102586] version->new("version") SEGVs
[perl5.git] / pp_ctl.c
CommitLineData
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
41PP(pp_wantarray)
42{
97aff369 43 dVAR;
39644a26 44 dSP;
a0d0e21e 45 I32 cxix;
93f0bc49 46 const PERL_CONTEXT *cx;
a0d0e21e
LW
47 EXTEND(SP, 1);
48
93f0bc49
FC
49 if (PL_op->op_private & OPpOFFBYONE) {
50 if (!(cx = caller_cx(1,NULL))) RETPUSHUNDEF;
51 }
52 else {
53 cxix = dopoptosub(cxstack_ix);
54 if (cxix < 0)
a0d0e21e 55 RETPUSHUNDEF;
93f0bc49
FC
56 cx = &cxstack[cxix];
57 }
a0d0e21e 58
93f0bc49 59 switch (cx->blk_gimme) {
54310121 60 case G_ARRAY:
a0d0e21e 61 RETPUSHYES;
54310121 62 case G_SCALAR:
a0d0e21e 63 RETPUSHNO;
54310121 64 default:
65 RETPUSHUNDEF;
66 }
a0d0e21e
LW
67}
68
2cd61cdb
IZ
69PP(pp_regcreset)
70{
97aff369 71 dVAR;
2cd61cdb
IZ
72 /* XXXX Should store the old value to allow for tie/overload - and
73 restore in regcomp, where marked with XXXX. */
3280af22 74 PL_reginterp_cnt = 0;
0b4182de 75 TAINT_NOT;
2cd61cdb
IZ
76 return NORMAL;
77}
78
b3eb6a9b
GS
79PP(pp_regcomp)
80{
97aff369 81 dVAR;
39644a26 82 dSP;
a0d0e21e 83 register PMOP *pm = (PMOP*)cLOGOP->op_other;
a0d0e21e 84 SV *tmpstr;
84679df5 85 REGEXP *re = NULL;
bfed75c6 86
4b5a0d1c 87 /* prevent recompiling under /o and ithreads. */
3db8f154 88#if defined(USE_ITHREADS)
131b3ad0
DM
89 if (pm->op_pmflags & PMf_KEEP && PM_GETRE(pm)) {
90 if (PL_op->op_flags & OPf_STACKED) {
91 dMARK;
92 SP = MARK;
93 }
94 else
95 (void)POPs;
96 RETURN;
97 }
513629ba 98#endif
d4b87e75
BM
99
100#define tryAMAGICregexp(rx) \
101 STMT_START { \
6f1401dc 102 SvGETMAGIC(rx); \
d4b87e75 103 if (SvROK(rx) && SvAMAGIC(rx)) { \
31d632c3 104 SV *sv = AMG_CALLunary(rx, regexp_amg); \
d4b87e75
BM
105 if (sv) { \
106 if (SvROK(sv)) \
107 sv = SvRV(sv); \
108 if (SvTYPE(sv) != SVt_REGEXP) \
109 Perl_croak(aTHX_ "Overloaded qr did not return a REGEXP"); \
110 rx = sv; \
111 } \
112 } \
113 } STMT_END
114
115
131b3ad0 116 if (PL_op->op_flags & OPf_STACKED) {
486ec47a 117 /* multiple args; concatenate them */
131b3ad0
DM
118 dMARK; dORIGMARK;
119 tmpstr = PAD_SV(ARGTARG);
76f68e9b 120 sv_setpvs(tmpstr, "");
131b3ad0 121 while (++MARK <= SP) {
d4b87e75 122 SV *msv = *MARK;
79a8d529 123 SV *sv;
d4b87e75 124
79a8d529 125 tryAMAGICregexp(msv);
d4b87e75 126
79a8d529
DM
127 if ((SvAMAGIC(tmpstr) || SvAMAGIC(msv)) &&
128 (sv = amagic_call(tmpstr, msv, concat_amg, AMGf_assign)))
129 {
130 sv_setsv(tmpstr, sv);
131 continue;
131b3ad0 132 }
a9984b10 133 sv_catsv_nomg(tmpstr, msv);
131b3ad0
DM
134 }
135 SvSETMAGIC(tmpstr);
136 SP = ORIGMARK;
137 }
d4b87e75 138 else {
131b3ad0 139 tmpstr = POPs;
d4b87e75
BM
140 tryAMAGICregexp(tmpstr);
141 }
142
143#undef tryAMAGICregexp
513629ba 144
b3eb6a9b 145 if (SvROK(tmpstr)) {
d8f6592e 146 SV * const sv = SvRV(tmpstr);
5c35adbb 147 if (SvTYPE(sv) == SVt_REGEXP)
d2f13c59 148 re = (REGEXP*) sv;
c277df42 149 }
d4b87e75
BM
150 else if (SvTYPE(tmpstr) == SVt_REGEXP)
151 re = (REGEXP*) tmpstr;
152
5c35adbb 153 if (re) {
69dc4b30
FC
154 /* The match's LHS's get-magic might need to access this op's reg-
155 exp (as is sometimes the case with $'; see bug 70764). So we
156 must call get-magic now before we replace the regexp. Hopeful-
157 ly this hack can be replaced with the approach described at
158 http://www.nntp.perl.org/group/perl.perl5.porters/2007/03
159 /msg122415.html some day. */
455d9033
FC
160 if(pm->op_type == OP_MATCH) {
161 SV *lhs;
162 const bool was_tainted = PL_tainted;
163 if (pm->op_flags & OPf_STACKED)
69dc4b30 164 lhs = TOPs;
455d9033
FC
165 else if (pm->op_private & OPpTARGET_MY)
166 lhs = PAD_SV(pm->op_targ);
167 else lhs = DEFSV;
168 SvGETMAGIC(lhs);
169 /* Restore the previous value of PL_tainted (which may have been
170 modified by get-magic), to avoid incorrectly setting the
171 RXf_TAINTED flag further down. */
172 PL_tainted = was_tainted;
173 }
69dc4b30 174
f0826785 175 re = reg_temp_copy(NULL, re);
aaa362c4 176 ReREFCNT_dec(PM_GETRE(pm));
28d8d7f4 177 PM_SETRE(pm, re);
c277df42
IZ
178 }
179 else {
f3ec07c7
DM
180 STRLEN len = 0;
181 const char *t = SvOK(tmpstr) ? SvPV_nomg_const(tmpstr, len) : "";
182
c737faaf 183 re = PM_GETRE(pm);
14a49a24 184 assert (re != (REGEXP*) &PL_sv_undef);
c277df42 185
20408e3c 186 /* Check against the last compiled regexp. */
a11c8683 187 if (!re || !RX_PRECOMP(re) || RX_PRELEN(re) != len ||
220fc49f 188 memNE(RX_PRECOMP(re), t, len))
85aff577 189 {
07bc277f 190 const regexp_engine *eng = re ? RX_ENGINE(re) : NULL;
73134a2e 191 U32 pm_flags = pm->op_pmflags & RXf_PMf_COMPILETIME;
d8f6592e
AL
192 if (re) {
193 ReREFCNT_dec(re);
14a49a24
NC
194#ifdef USE_ITHREADS
195 PM_SETRE(pm, (REGEXP*) &PL_sv_undef);
196#else
4608196e 197 PM_SETRE(pm, NULL); /* crucial if regcomp aborts */
14a49a24 198#endif
1e2e3d02 199 } else if (PL_curcop->cop_hints_hash) {
20439bc7 200 SV *ptr = cop_hints_fetch_pvs(PL_curcop, "regcomp", 0);
1e2e3d02
YO
201 if (ptr && SvIOK(ptr) && SvIV(ptr))
202 eng = INT2PTR(regexp_engine*,SvIV(ptr));
c277df42 203 }
664e119d 204
533c011a 205 if (PL_op->op_flags & OPf_SPECIAL)
3280af22 206 PL_reginterp_cnt = I32_MAX; /* Mark as safe. */
a0d0e21e 207
15d9c083 208 if (!DO_UTF8(tmpstr) && SvUTF8(tmpstr)) {
b9ad30b4
NC
209 /* Not doing UTF-8, despite what the SV says. Is this only if
210 we're trapped in use 'bytes'? */
211 /* Make a copy of the octet sequence, but without the flag on,
212 as the compiler now honours the SvUTF8 flag on tmpstr. */
213 STRLEN len;
214 const char *const p = SvPV(tmpstr, len);
215 tmpstr = newSVpvn_flags(p, len, SVs_TEMP);
216 }
3e102237 217 else if (SvAMAGIC(tmpstr) || SvGMAGICAL(tmpstr)) {
f3ec07c7 218 /* make a copy to avoid extra stringifies */
0479a84a 219 tmpstr = newSVpvn_flags(t, len, SVs_TEMP | SvUTF8(tmpstr));
f3ec07c7 220 }
c737faaf 221
5a8697a7 222 if (eng)
3ab4a224 223 PM_SETRE(pm, CALLREGCOMP_ENG(eng, tmpstr, pm_flags));
5a8697a7 224 else
3ab4a224 225 PM_SETRE(pm, CALLREGCOMP(tmpstr, pm_flags));
c737faaf 226
f86aaa29 227 PL_reginterp_cnt = 0; /* XXXX Be extra paranoid - needed
2cd61cdb 228 inside tie/overload accessors. */
c277df42 229 }
4633a7c4 230 }
c737faaf
YO
231
232 re = PM_GETRE(pm);
a0d0e21e 233
72311751 234#ifndef INCOMPLETE_TAINTS
3280af22 235 if (PL_tainting) {
9274aefd
DM
236 if (PL_tainted) {
237 SvTAINTED_on((SV*)re);
07bc277f 238 RX_EXTFLAGS(re) |= RXf_TAINTED;
9274aefd 239 }
72311751
GS
240 }
241#endif
242
220fc49f 243 if (!RX_PRELEN(PM_GETRE(pm)) && PL_curpm)
3280af22 244 pm = PL_curpm;
a0d0e21e 245
c737faaf
YO
246
247#if !defined(USE_ITHREADS)
248 /* can't change the optree at runtime either */
249 /* PMf_KEEP is handled differently under threads to avoid these problems */
a0d0e21e 250 if (pm->op_pmflags & PMf_KEEP) {
c90c0ff4 251 pm->op_private &= ~OPpRUNTIME; /* no point compiling again */
533c011a 252 cLOGOP->op_first->op_next = PL_op->op_next;
a0d0e21e 253 }
c737faaf 254#endif
a0d0e21e
LW
255 RETURN;
256}
257
258PP(pp_substcont)
259{
97aff369 260 dVAR;
39644a26 261 dSP;
c09156bb 262 register PERL_CONTEXT *cx = &cxstack[cxstack_ix];
901017d6
AL
263 register PMOP * const pm = (PMOP*) cLOGOP->op_other;
264 register SV * const dstr = cx->sb_dstr;
a0d0e21e
LW
265 register char *s = cx->sb_s;
266 register char *m = cx->sb_m;
267 char *orig = cx->sb_orig;
901017d6 268 register REGEXP * const rx = cx->sb_rx;
c445ea15 269 SV *nsv = NULL;
988e6e7e 270 REGEXP *old = PM_GETRE(pm);
f410a211
NC
271
272 PERL_ASYNC_CHECK();
273
988e6e7e 274 if(old != rx) {
bfed75c6 275 if(old)
988e6e7e 276 ReREFCNT_dec(old);
d6106309 277 PM_SETRE(pm,ReREFCNT_inc(rx));
d8f2cf8a
AB
278 }
279
d9f97599 280 rxres_restore(&cx->sb_rxres, rx);
01b35787 281 RX_MATCH_UTF8_set(rx, DO_UTF8(cx->sb_targ));
c90c0ff4 282
a0d0e21e 283 if (cx->sb_iters++) {
a3b680e6 284 const I32 saviters = cx->sb_iters;
a0d0e21e 285 if (cx->sb_iters > cx->sb_maxiters)
cea2e8a9 286 DIE(aTHX_ "Substitution loop");
a0d0e21e 287
447ee134
DM
288 SvGETMAGIC(TOPs); /* possibly clear taint on $1 etc: #67962 */
289
ef07e810 290 /* See "how taint works" above pp_subst() */
20be6587
DM
291 if (SvTAINTED(TOPs))
292 cx->sb_rxtainted |= SUBST_TAINT_REPL;
447ee134 293 sv_catsv_nomg(dstr, POPs);
2c296965
YO
294 /* XXX: adjust for positive offsets of \G for instance s/(.)\G//g with positive pos() */
295 s -= RX_GOFS(rx);
a0d0e21e
LW
296
297 /* Are we done */
134b8cd8
NC
298 /* I believe that we can't set REXEC_SCREAM here if
299 SvSCREAM(cx->sb_targ) is true because SvPVX(cx->sb_targ) isn't always
300 equal to s. [See the comment before Perl_re_intuit_start(), which is
301 called from Perl_regexec_flags(), which says that it should be when
302 SvSCREAM() is true.] s, cx->sb_strend and orig will be consistent
303 with SvPVX(cx->sb_targ), as substconst doesn't modify cx->sb_targ
304 during the match. */
2c296965
YO
305 if (CxONCE(cx) || s < orig ||
306 !CALLREGEXEC(rx, s, cx->sb_strend, orig,
307 (s == m) + RX_GOFS(rx), cx->sb_targ, NULL,
308 ((cx->sb_rflags & REXEC_COPY_STR)
309 ? (REXEC_IGNOREPOS|REXEC_NOT_FIRST)
310 : (REXEC_COPY_STR|REXEC_IGNOREPOS|REXEC_NOT_FIRST))))
a0d0e21e 311 {
8ca8a454 312 SV *targ = cx->sb_targ;
748a9306 313
078c425b
JH
314 assert(cx->sb_strend >= s);
315 if(cx->sb_strend > s) {
316 if (DO_UTF8(dstr) && !SvUTF8(targ))
317 sv_catpvn_utf8_upgrade(dstr, s, cx->sb_strend - s, nsv);
318 else
319 sv_catpvn(dstr, s, cx->sb_strend - s);
320 }
20be6587
DM
321 if (RX_MATCH_TAINTED(rx)) /* run time pattern taint, eg locale */
322 cx->sb_rxtainted |= SUBST_TAINT_PAT;
9212bbba 323
8ca8a454
NC
324 if (pm->op_pmflags & PMf_NONDESTRUCT) {
325 PUSHs(dstr);
326 /* From here on down we're using the copy, and leaving the
327 original untouched. */
328 targ = dstr;
329 }
330 else {
f8c7b90f 331#ifdef PERL_OLD_COPY_ON_WRITE
8ca8a454
NC
332 if (SvIsCOW(targ)) {
333 sv_force_normal_flags(targ, SV_COW_DROP_PV);
334 } else
ed252734 335#endif
8ca8a454
NC
336 {
337 SvPV_free(targ);
338 }
339 SvPV_set(targ, SvPVX(dstr));
340 SvCUR_set(targ, SvCUR(dstr));
341 SvLEN_set(targ, SvLEN(dstr));
342 if (DO_UTF8(dstr))
343 SvUTF8_on(targ);
344 SvPV_set(dstr, NULL);
345
4f4d7508 346 mPUSHi(saviters - 1);
48c036b1 347
8ca8a454
NC
348 (void)SvPOK_only_UTF8(targ);
349 }
5cd24f17 350
20be6587 351 /* update the taint state of various various variables in
ef07e810
DM
352 * preparation for final exit.
353 * See "how taint works" above pp_subst() */
20be6587
DM
354 if (PL_tainting) {
355 if ((cx->sb_rxtainted & SUBST_TAINT_PAT) ||
356 ((cx->sb_rxtainted & (SUBST_TAINT_STR|SUBST_TAINT_RETAINT))
357 == (SUBST_TAINT_STR|SUBST_TAINT_RETAINT))
358 )
359 (RX_MATCH_TAINTED_on(rx)); /* taint $1 et al */
360
361 if (!(cx->sb_rxtainted & SUBST_TAINT_BOOLRET)
362 && (cx->sb_rxtainted & (SUBST_TAINT_STR|SUBST_TAINT_PAT))
363 )
364 SvTAINTED_on(TOPs); /* taint return value */
365 /* needed for mg_set below */
366 PL_tainted = cBOOL(cx->sb_rxtainted &
367 (SUBST_TAINT_STR|SUBST_TAINT_PAT|SUBST_TAINT_REPL));
368 SvTAINT(TARG);
369 }
370 /* PL_tainted must be correctly set for this mg_set */
371 SvSETMAGIC(TARG);
372 TAINT_NOT;
4633a7c4 373 LEAVE_SCOPE(cx->sb_oldsave);
a0d0e21e
LW
374 POPSUBST(cx);
375 RETURNOP(pm->op_next);
20be6587 376 /* NOTREACHED */
a0d0e21e 377 }
8e5e9ebe 378 cx->sb_iters = saviters;
a0d0e21e 379 }
07bc277f 380 if (RX_MATCH_COPIED(rx) && RX_SUBBEG(rx) != orig) {
a0d0e21e
LW
381 m = s;
382 s = orig;
07bc277f 383 cx->sb_orig = orig = RX_SUBBEG(rx);
a0d0e21e
LW
384 s = orig + (m - s);
385 cx->sb_strend = s + (cx->sb_strend - m);
386 }
07bc277f 387 cx->sb_m = m = RX_OFFS(rx)[0].start + orig;
db79b45b 388 if (m > s) {
bfed75c6 389 if (DO_UTF8(dstr) && !SvUTF8(cx->sb_targ))
db79b45b
JH
390 sv_catpvn_utf8_upgrade(dstr, s, m - s, nsv);
391 else
392 sv_catpvn(dstr, s, m-s);
393 }
07bc277f 394 cx->sb_s = RX_OFFS(rx)[0].end + orig;
084916e3 395 { /* Update the pos() information. */
8ca8a454
NC
396 SV * const sv
397 = (pm->op_pmflags & PMf_NONDESTRUCT) ? cx->sb_dstr : cx->sb_targ;
084916e3 398 MAGIC *mg;
7a7f3e45 399 SvUPGRADE(sv, SVt_PVMG);
14befaf4 400 if (!(mg = mg_find(sv, PERL_MAGIC_regex_global))) {
d83f0a82 401#ifdef PERL_OLD_COPY_ON_WRITE
51a9ea20 402 if (SvIsCOW(sv))
d83f0a82
NC
403 sv_force_normal_flags(sv, 0);
404#endif
405 mg = sv_magicext(sv, NULL, PERL_MAGIC_regex_global, &PL_vtbl_mglob,
406 NULL, 0);
084916e3 407 }
ce474962 408 mg->mg_len = m - orig;
084916e3 409 }
988e6e7e 410 if (old != rx)
d6106309 411 (void)ReREFCNT_inc(rx);
20be6587 412 /* update the taint state of various various variables in preparation
ef07e810
DM
413 * for calling the code block.
414 * See "how taint works" above pp_subst() */
20be6587
DM
415 if (PL_tainting) {
416 if (RX_MATCH_TAINTED(rx)) /* run time pattern taint, eg locale */
417 cx->sb_rxtainted |= SUBST_TAINT_PAT;
418
419 if ((cx->sb_rxtainted & SUBST_TAINT_PAT) ||
420 ((cx->sb_rxtainted & (SUBST_TAINT_STR|SUBST_TAINT_RETAINT))
421 == (SUBST_TAINT_STR|SUBST_TAINT_RETAINT))
422 )
423 (RX_MATCH_TAINTED_on(rx)); /* taint $1 et al */
424
425 if (cx->sb_iters > 1 && (cx->sb_rxtainted &
426 (SUBST_TAINT_STR|SUBST_TAINT_PAT|SUBST_TAINT_REPL)))
8ca8a454
NC
427 SvTAINTED_on((pm->op_pmflags & PMf_NONDESTRUCT)
428 ? cx->sb_dstr : cx->sb_targ);
20be6587
DM
429 TAINT_NOT;
430 }
d9f97599 431 rxres_save(&cx->sb_rxres, rx);
af9838cc 432 PL_curpm = pm;
29f2e912 433 RETURNOP(pm->op_pmstashstartu.op_pmreplstart);
a0d0e21e
LW
434}
435
c90c0ff4 436void
864dbfa3 437Perl_rxres_save(pTHX_ void **rsp, REGEXP *rx)
c90c0ff4 438{
439 UV *p = (UV*)*rsp;
440 U32 i;
7918f24d
NC
441
442 PERL_ARGS_ASSERT_RXRES_SAVE;
96a5add6 443 PERL_UNUSED_CONTEXT;
c90c0ff4 444
07bc277f 445 if (!p || p[1] < RX_NPARENS(rx)) {
f8c7b90f 446#ifdef PERL_OLD_COPY_ON_WRITE
07bc277f 447 i = 7 + RX_NPARENS(rx) * 2;
ed252734 448#else
07bc277f 449 i = 6 + RX_NPARENS(rx) * 2;
ed252734 450#endif
c90c0ff4 451 if (!p)
a02a5408 452 Newx(p, i, UV);
c90c0ff4 453 else
454 Renew(p, i, UV);
455 *rsp = (void*)p;
456 }
457
07bc277f 458 *p++ = PTR2UV(RX_MATCH_COPIED(rx) ? RX_SUBBEG(rx) : NULL);
cf93c79d 459 RX_MATCH_COPIED_off(rx);
c90c0ff4 460
f8c7b90f 461#ifdef PERL_OLD_COPY_ON_WRITE
bdd9a1b1
NC
462 *p++ = PTR2UV(RX_SAVED_COPY(rx));
463 RX_SAVED_COPY(rx) = NULL;
ed252734
NC
464#endif
465
07bc277f 466 *p++ = RX_NPARENS(rx);
c90c0ff4 467
07bc277f
NC
468 *p++ = PTR2UV(RX_SUBBEG(rx));
469 *p++ = (UV)RX_SUBLEN(rx);
470 for (i = 0; i <= RX_NPARENS(rx); ++i) {
471 *p++ = (UV)RX_OFFS(rx)[i].start;
472 *p++ = (UV)RX_OFFS(rx)[i].end;
c90c0ff4 473 }
474}
475
9c105995
NC
476static void
477S_rxres_restore(pTHX_ void **rsp, REGEXP *rx)
c90c0ff4 478{
479 UV *p = (UV*)*rsp;
480 U32 i;
7918f24d
NC
481
482 PERL_ARGS_ASSERT_RXRES_RESTORE;
96a5add6 483 PERL_UNUSED_CONTEXT;
c90c0ff4 484
ed252734 485 RX_MATCH_COPY_FREE(rx);
cf93c79d 486 RX_MATCH_COPIED_set(rx, *p);
c90c0ff4 487 *p++ = 0;
488
f8c7b90f 489#ifdef PERL_OLD_COPY_ON_WRITE
bdd9a1b1
NC
490 if (RX_SAVED_COPY(rx))
491 SvREFCNT_dec (RX_SAVED_COPY(rx));
492 RX_SAVED_COPY(rx) = INT2PTR(SV*,*p);
ed252734
NC
493 *p++ = 0;
494#endif
495
07bc277f 496 RX_NPARENS(rx) = *p++;
c90c0ff4 497
07bc277f
NC
498 RX_SUBBEG(rx) = INT2PTR(char*,*p++);
499 RX_SUBLEN(rx) = (I32)(*p++);
500 for (i = 0; i <= RX_NPARENS(rx); ++i) {
501 RX_OFFS(rx)[i].start = (I32)(*p++);
502 RX_OFFS(rx)[i].end = (I32)(*p++);
c90c0ff4 503 }
504}
505
9c105995
NC
506static void
507S_rxres_free(pTHX_ void **rsp)
c90c0ff4 508{
44f8325f 509 UV * const p = (UV*)*rsp;
7918f24d
NC
510
511 PERL_ARGS_ASSERT_RXRES_FREE;
96a5add6 512 PERL_UNUSED_CONTEXT;
c90c0ff4 513
514 if (p) {
94010e71
NC
515#ifdef PERL_POISON
516 void *tmp = INT2PTR(char*,*p);
517 Safefree(tmp);
518 if (*p)
7e337ee0 519 PoisonFree(*p, 1, sizeof(*p));
94010e71 520#else
56431972 521 Safefree(INT2PTR(char*,*p));
94010e71 522#endif
f8c7b90f 523#ifdef PERL_OLD_COPY_ON_WRITE
ed252734
NC
524 if (p[1]) {
525 SvREFCNT_dec (INT2PTR(SV*,p[1]));
526 }
527#endif
c90c0ff4 528 Safefree(p);
4608196e 529 *rsp = NULL;
c90c0ff4 530 }
531}
532
a701009a
DM
533#define FORM_NUM_BLANK (1<<30)
534#define FORM_NUM_POINT (1<<29)
535
a0d0e21e
LW
536PP(pp_formline)
537{
97aff369 538 dVAR; dSP; dMARK; dORIGMARK;
823a54a3 539 register SV * const tmpForm = *++MARK;
086b26f3
DM
540 SV *formsv; /* contains text of original format */
541 register U32 *fpc; /* format ops program counter */
542 register char *t; /* current append position in target string */
543 const char *f; /* current position in format string */
a0d0e21e 544 register I32 arg;
086b26f3
DM
545 register SV *sv = NULL; /* current item */
546 const char *item = NULL;/* string value of current item */
547 I32 itemsize = 0; /* length of current item, possibly truncated */
548 I32 fieldsize = 0; /* width of current field */
549 I32 lines = 0; /* number of lines that have been output */
550 bool chopspace = (strchr(PL_chopset, ' ') != NULL); /* does $: have space */
551 const char *chophere = NULL; /* where to chop current item */
f5ada144 552 STRLEN linemark = 0; /* pos of start of line in output */
65202027 553 NV value;
086b26f3 554 bool gotsome = FALSE; /* seen at least one non-blank item on this line */
a0d0e21e 555 STRLEN len;
26e935cf 556 STRLEN linemax; /* estimate of output size in bytes */
1bd51a4c
IH
557 bool item_is_utf8 = FALSE;
558 bool targ_is_utf8 = FALSE;
bfed75c6 559 const char *fmt;
74e0ddf7 560 MAGIC *mg = NULL;
4ff700b9
DM
561 U8 *source; /* source of bytes to append */
562 STRLEN to_copy; /* how may bytes to append */
ea60cfe8 563 char trans; /* what chars to translate */
74e0ddf7 564
3808a683 565 mg = doparseform(tmpForm);
a0d0e21e 566
74e0ddf7 567 fpc = (U32*)mg->mg_ptr;
3808a683
DM
568 /* the actual string the format was compiled from.
569 * with overload etc, this may not match tmpForm */
570 formsv = mg->mg_obj;
571
74e0ddf7 572
3280af22 573 SvPV_force(PL_formtarget, len);
3808a683 574 if (SvTAINTED(tmpForm) || SvTAINTED(formsv))
125b9982 575 SvTAINTED_on(PL_formtarget);
1bd51a4c
IH
576 if (DO_UTF8(PL_formtarget))
577 targ_is_utf8 = TRUE;
26e935cf
DM
578 linemax = (SvCUR(formsv) * (IN_BYTES ? 1 : 3) + 1);
579 t = SvGROW(PL_formtarget, len + linemax + 1);
580 /* XXX from now onwards, SvCUR(PL_formtarget) is invalid */
a0d0e21e 581 t += len;
3808a683 582 f = SvPV_const(formsv, len);
a0d0e21e
LW
583
584 for (;;) {
585 DEBUG_f( {
bfed75c6 586 const char *name = "???";
a0d0e21e
LW
587 arg = -1;
588 switch (*fpc) {
589 case FF_LITERAL: arg = fpc[1]; name = "LITERAL"; break;
590 case FF_BLANK: arg = fpc[1]; name = "BLANK"; break;
591 case FF_SKIP: arg = fpc[1]; name = "SKIP"; break;
592 case FF_FETCH: arg = fpc[1]; name = "FETCH"; break;
593 case FF_DECIMAL: arg = fpc[1]; name = "DECIMAL"; break;
594
595 case FF_CHECKNL: name = "CHECKNL"; break;
596 case FF_CHECKCHOP: name = "CHECKCHOP"; break;
597 case FF_SPACE: name = "SPACE"; break;
598 case FF_HALFSPACE: name = "HALFSPACE"; break;
599 case FF_ITEM: name = "ITEM"; break;
600 case FF_CHOP: name = "CHOP"; break;
601 case FF_LINEGLOB: name = "LINEGLOB"; break;
602 case FF_NEWLINE: name = "NEWLINE"; break;
603 case FF_MORE: name = "MORE"; break;
604 case FF_LINEMARK: name = "LINEMARK"; break;
605 case FF_END: name = "END"; break;
bfed75c6 606 case FF_0DECIMAL: name = "0DECIMAL"; break;
a1b95068 607 case FF_LINESNGL: name = "LINESNGL"; break;
a0d0e21e
LW
608 }
609 if (arg >= 0)
bf49b057 610 PerlIO_printf(Perl_debug_log, "%-16s%ld\n", name, (long) arg);
a0d0e21e 611 else
bf49b057 612 PerlIO_printf(Perl_debug_log, "%-16s\n", name);
5f80b19c 613 } );
a0d0e21e
LW
614 switch (*fpc++) {
615 case FF_LINEMARK:
f5ada144 616 linemark = t - SvPVX(PL_formtarget);
a0d0e21e
LW
617 lines++;
618 gotsome = FALSE;
619 break;
620
621 case FF_LITERAL:
ea60cfe8
DM
622 to_copy = *fpc++;
623 source = (U8 *)f;
624 f += to_copy;
625 trans = '~';
75645721 626 item_is_utf8 = targ_is_utf8 ? !!DO_UTF8(formsv) : !!SvUTF8(formsv);
ea60cfe8 627 goto append;
a0d0e21e
LW
628
629 case FF_SKIP:
630 f += *fpc++;
631 break;
632
633 case FF_FETCH:
634 arg = *fpc++;
635 f += arg;
636 fieldsize = arg;
637
638 if (MARK < SP)
639 sv = *++MARK;
640 else {
3280af22 641 sv = &PL_sv_no;
a2a5de95 642 Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX), "Not enough format arguments");
a0d0e21e 643 }
125b9982
NT
644 if (SvTAINTED(sv))
645 SvTAINTED_on(PL_formtarget);
a0d0e21e
LW
646 break;
647
648 case FF_CHECKNL:
5a34cab7
NC
649 {
650 const char *send;
651 const char *s = item = SvPV_const(sv, len);
652 itemsize = len;
653 if (DO_UTF8(sv)) {
654 itemsize = sv_len_utf8(sv);
655 if (itemsize != (I32)len) {
656 I32 itembytes;
657 if (itemsize > fieldsize) {
658 itemsize = fieldsize;
659 itembytes = itemsize;
660 sv_pos_u2b(sv, &itembytes, 0);
661 }
662 else
663 itembytes = len;
664 send = chophere = s + itembytes;
665 while (s < send) {
666 if (*s & ~31)
667 gotsome = TRUE;
668 else if (*s == '\n')
669 break;
670 s++;
671 }
672 item_is_utf8 = TRUE;
673 itemsize = s - item;
674 sv_pos_b2u(sv, &itemsize);
675 break;
a0ed51b3 676 }
a0ed51b3 677 }
5a34cab7
NC
678 item_is_utf8 = FALSE;
679 if (itemsize > fieldsize)
680 itemsize = fieldsize;
681 send = chophere = s + itemsize;
682 while (s < send) {
683 if (*s & ~31)
684 gotsome = TRUE;
685 else if (*s == '\n')
686 break;
687 s++;
688 }
689 itemsize = s - item;
690 break;
a0ed51b3 691 }
a0d0e21e
LW
692
693 case FF_CHECKCHOP:
5a34cab7
NC
694 {
695 const char *s = item = SvPV_const(sv, len);
696 itemsize = len;
697 if (DO_UTF8(sv)) {
698 itemsize = sv_len_utf8(sv);
699 if (itemsize != (I32)len) {
700 I32 itembytes;
701 if (itemsize <= fieldsize) {
702 const char *send = chophere = s + itemsize;
703 while (s < send) {
704 if (*s == '\r') {
705 itemsize = s - item;
a0ed51b3 706 chophere = s;
a0ed51b3 707 break;
5a34cab7
NC
708 }
709 if (*s++ & ~31)
a0ed51b3 710 gotsome = TRUE;
a0ed51b3 711 }
a0ed51b3 712 }
5a34cab7
NC
713 else {
714 const char *send;
715 itemsize = fieldsize;
716 itembytes = itemsize;
717 sv_pos_u2b(sv, &itembytes, 0);
718 send = chophere = s + itembytes;
719 while (s < send || (s == send && isSPACE(*s))) {
720 if (isSPACE(*s)) {
721 if (chopspace)
722 chophere = s;
723 if (*s == '\r')
724 break;
725 }
726 else {
727 if (*s & ~31)
728 gotsome = TRUE;
729 if (strchr(PL_chopset, *s))
730 chophere = s + 1;
731 }
732 s++;
733 }
734 itemsize = chophere - item;
735 sv_pos_b2u(sv, &itemsize);
736 }
737 item_is_utf8 = TRUE;
a0d0e21e
LW
738 break;
739 }
a0d0e21e 740 }
5a34cab7
NC
741 item_is_utf8 = FALSE;
742 if (itemsize <= fieldsize) {
743 const char *const send = chophere = s + itemsize;
744 while (s < send) {
745 if (*s == '\r') {
746 itemsize = s - item;
a0d0e21e 747 chophere = s;
a0d0e21e 748 break;
5a34cab7
NC
749 }
750 if (*s++ & ~31)
a0d0e21e 751 gotsome = TRUE;
a0d0e21e 752 }
a0d0e21e 753 }
5a34cab7
NC
754 else {
755 const char *send;
756 itemsize = fieldsize;
757 send = chophere = s + itemsize;
758 while (s < send || (s == send && isSPACE(*s))) {
759 if (isSPACE(*s)) {
760 if (chopspace)
761 chophere = s;
762 if (*s == '\r')
763 break;
764 }
765 else {
766 if (*s & ~31)
767 gotsome = TRUE;
768 if (strchr(PL_chopset, *s))
769 chophere = s + 1;
770 }
771 s++;
772 }
773 itemsize = chophere - item;
774 }
775 break;
a0d0e21e 776 }
a0d0e21e
LW
777
778 case FF_SPACE:
779 arg = fieldsize - itemsize;
780 if (arg) {
781 fieldsize -= arg;
782 while (arg-- > 0)
783 *t++ = ' ';
784 }
785 break;
786
787 case FF_HALFSPACE:
788 arg = fieldsize - itemsize;
789 if (arg) {
790 arg /= 2;
791 fieldsize -= arg;
792 while (arg-- > 0)
793 *t++ = ' ';
794 }
795 break;
796
797 case FF_ITEM:
8aa7beb6
DM
798 to_copy = itemsize;
799 source = (U8 *)item;
800 trans = 1;
801 if (item_is_utf8) {
802 /* convert to_copy from chars to bytes */
803 U8 *s = source;
804 while (to_copy--)
805 s += UTF8SKIP(s);
806 to_copy = s - source;
a0d0e21e 807 }
8aa7beb6 808 goto append;
a0d0e21e
LW
809
810 case FF_CHOP:
5a34cab7
NC
811 {
812 const char *s = chophere;
813 if (chopspace) {
af68e756 814 while (isSPACE(*s))
5a34cab7
NC
815 s++;
816 }
817 sv_chop(sv,s);
818 SvSETMAGIC(sv);
819 break;
a0d0e21e 820 }
a0d0e21e 821
a1b95068
WL
822 case FF_LINESNGL:
823 chopspace = 0;
a0d0e21e 824 case FF_LINEGLOB:
5a34cab7 825 {
e32383e2 826 const bool oneline = fpc[-1] == FF_LINESNGL;
5a34cab7 827 const char *s = item = SvPV_const(sv, len);
7440a75b 828 const char *const send = s + len;
7440a75b 829
f3f2f1a3 830 item_is_utf8 = DO_UTF8(sv);
a1137ee5 831 if (!len)
7440a75b 832 break;
ea60cfe8 833 trans = 0;
0d21cefe 834 gotsome = TRUE;
a1137ee5 835 chophere = s + len;
4ff700b9
DM
836 source = (U8 *) s;
837 to_copy = len;
0d21cefe
DM
838 while (s < send) {
839 if (*s++ == '\n') {
840 if (oneline) {
841 to_copy = s - SvPVX_const(sv) - 1;
842 chophere = s;
843 break;
844 } else {
845 if (s == send) {
0d21cefe
DM
846 to_copy--;
847 } else
848 lines++;
1bd51a4c 849 }
a0d0e21e 850 }
0d21cefe 851 }
a2c0032b
DM
852 }
853
ea60cfe8
DM
854 append:
855 /* append to_copy bytes from source to PL_formstring.
856 * item_is_utf8 implies source is utf8.
857 * if trans, translate certain characters during the copy */
a2c0032b
DM
858 {
859 U8 *tmp = NULL;
26e935cf 860 STRLEN grow = 0;
0325ce87
DM
861
862 SvCUR_set(PL_formtarget,
863 t - SvPVX_const(PL_formtarget));
864
0d21cefe
DM
865 if (targ_is_utf8 && !item_is_utf8) {
866 source = tmp = bytes_to_utf8(source, &to_copy);
0d21cefe
DM
867 } else {
868 if (item_is_utf8 && !targ_is_utf8) {
f5ada144 869 U8 *s;
0d21cefe 870 /* Upgrade targ to UTF8, and then we reduce it to
0325ce87
DM
871 a problem we have a simple solution for.
872 Don't need get magic. */
0d21cefe 873 sv_utf8_upgrade_nomg(PL_formtarget);
0325ce87 874 targ_is_utf8 = TRUE;
f5ada144
DM
875 /* re-calculate linemark */
876 s = (U8*)SvPVX(PL_formtarget);
26e935cf
DM
877 /* the bytes we initially allocated to append the
878 * whole line may have been gobbled up during the
879 * upgrade, so allocate a whole new line's worth
880 * for safety */
881 grow = linemax;
f5ada144
DM
882 while (linemark--)
883 s += UTF8SKIP(s);
884 linemark = s - (U8*)SvPVX(PL_formtarget);
e8e72d41 885 }
0d21cefe
DM
886 /* Easy. They agree. */
887 assert (item_is_utf8 == targ_is_utf8);
888 }
26e935cf
DM
889 if (!trans)
890 /* @* and ^* are the only things that can exceed
891 * the linemax, so grow by the output size, plus
892 * a whole new form's worth in case of any further
893 * output */
894 grow = linemax + to_copy;
895 if (grow)
896 SvGROW(PL_formtarget, SvCUR(PL_formtarget) + grow + 1);
0d21cefe
DM
897 t = SvPVX(PL_formtarget) + SvCUR(PL_formtarget);
898
899 Copy(source, t, to_copy, char);
ea60cfe8 900 if (trans) {
8aa7beb6
DM
901 /* blank out ~ or control chars, depending on trans.
902 * works on bytes not chars, so relies on not
903 * matching utf8 continuation bytes */
ea60cfe8
DM
904 U8 *s = (U8*)t;
905 U8 *send = s + to_copy;
906 while (s < send) {
8aa7beb6
DM
907 const int ch = *s;
908 if (trans == '~' ? (ch == '~') :
909#ifdef EBCDIC
910 iscntrl(ch)
911#else
912 (!(ch & ~31))
913#endif
914 )
ea60cfe8
DM
915 *s = ' ';
916 s++;
917 }
918 }
919
0d21cefe
DM
920 t += to_copy;
921 SvCUR_set(PL_formtarget, SvCUR(PL_formtarget) + to_copy);
a1137ee5 922 if (tmp)
0d21cefe 923 Safefree(tmp);
5a34cab7 924 break;
a0d0e21e 925 }
a0d0e21e 926
a1b95068
WL
927 case FF_0DECIMAL:
928 arg = *fpc++;
929#if defined(USE_LONG_DOUBLE)
10edeb5d 930 fmt = (const char *)
a701009a 931 ((arg & FORM_NUM_POINT) ?
10edeb5d 932 "%#0*.*" PERL_PRIfldbl : "%0*.*" PERL_PRIfldbl);
a1b95068 933#else
10edeb5d 934 fmt = (const char *)
a701009a 935 ((arg & FORM_NUM_POINT) ?
10edeb5d 936 "%#0*.*f" : "%0*.*f");
a1b95068
WL
937#endif
938 goto ff_dec;
a0d0e21e 939 case FF_DECIMAL:
a0d0e21e 940 arg = *fpc++;
65202027 941#if defined(USE_LONG_DOUBLE)
10edeb5d 942 fmt = (const char *)
a701009a 943 ((arg & FORM_NUM_POINT) ? "%#*.*" PERL_PRIfldbl : "%*.*" PERL_PRIfldbl);
65202027 944#else
10edeb5d 945 fmt = (const char *)
a701009a 946 ((arg & FORM_NUM_POINT) ? "%#*.*f" : "%*.*f");
65202027 947#endif
a1b95068 948 ff_dec:
784707d5
JP
949 /* If the field is marked with ^ and the value is undefined,
950 blank it out. */
a701009a 951 if ((arg & FORM_NUM_BLANK) && !SvOK(sv)) {
784707d5
JP
952 arg = fieldsize;
953 while (arg--)
954 *t++ = ' ';
955 break;
956 }
957 gotsome = TRUE;
958 value = SvNV(sv);
a1b95068 959 /* overflow evidence */
bfed75c6 960 if (num_overflow(value, fieldsize, arg)) {
a1b95068
WL
961 arg = fieldsize;
962 while (arg--)
963 *t++ = '#';
964 break;
965 }
784707d5
JP
966 /* Formats aren't yet marked for locales, so assume "yes". */
967 {
968 STORE_NUMERIC_STANDARD_SET_LOCAL();
a701009a
DM
969 arg &= ~(FORM_NUM_POINT|FORM_NUM_BLANK);
970 my_snprintf(t, SvLEN(PL_formtarget) - (t - SvPVX(PL_formtarget)), fmt, (int) fieldsize, (int) arg, value);
784707d5
JP
971 RESTORE_NUMERIC_STANDARD();
972 }
973 t += fieldsize;
974 break;
a1b95068 975
a0d0e21e
LW
976 case FF_NEWLINE:
977 f++;
f5ada144 978 while (t-- > (SvPVX(PL_formtarget) + linemark) && *t == ' ') ;
a0d0e21e
LW
979 t++;
980 *t++ = '\n';
981 break;
982
983 case FF_BLANK:
984 arg = *fpc++;
985 if (gotsome) {
986 if (arg) { /* repeat until fields exhausted? */
11f9eeaf
DM
987 fpc--;
988 goto end;
a0d0e21e
LW
989 }
990 }
991 else {
f5ada144 992 t = SvPVX(PL_formtarget) + linemark;
a0d0e21e
LW
993 lines--;
994 }
995 break;
996
997 case FF_MORE:
5a34cab7
NC
998 {
999 const char *s = chophere;
1000 const char *send = item + len;
1001 if (chopspace) {
af68e756 1002 while (isSPACE(*s) && (s < send))
5a34cab7 1003 s++;
a0d0e21e 1004 }
5a34cab7
NC
1005 if (s < send) {
1006 char *s1;
1007 arg = fieldsize - itemsize;
1008 if (arg) {
1009 fieldsize -= arg;
1010 while (arg-- > 0)
1011 *t++ = ' ';
1012 }
1013 s1 = t - 3;
1014 if (strnEQ(s1," ",3)) {
1015 while (s1 > SvPVX_const(PL_formtarget) && isSPACE(s1[-1]))
1016 s1--;
1017 }
1018 *s1++ = '.';
1019 *s1++ = '.';
1020 *s1++ = '.';
a0d0e21e 1021 }
5a34cab7 1022 break;
a0d0e21e 1023 }
a0d0e21e 1024 case FF_END:
11f9eeaf 1025 end:
bf2bec63 1026 assert(t < SvPVX_const(PL_formtarget) + SvLEN(PL_formtarget));
a0d0e21e 1027 *t = '\0';
b15aece3 1028 SvCUR_set(PL_formtarget, t - SvPVX_const(PL_formtarget));
1bd51a4c
IH
1029 if (targ_is_utf8)
1030 SvUTF8_on(PL_formtarget);
3280af22 1031 FmLINES(PL_formtarget) += lines;
a0d0e21e 1032 SP = ORIGMARK;
11f9eeaf
DM
1033 if (fpc[-1] == FF_BLANK)
1034 RETURNOP(cLISTOP->op_first);
1035 else
1036 RETPUSHYES;
a0d0e21e
LW
1037 }
1038 }
1039}
1040
1041PP(pp_grepstart)
1042{
27da23d5 1043 dVAR; dSP;
a0d0e21e
LW
1044 SV *src;
1045
3280af22 1046 if (PL_stack_base + *PL_markstack_ptr == SP) {
a0d0e21e 1047 (void)POPMARK;
54310121 1048 if (GIMME_V == G_SCALAR)
6e449a3a 1049 mXPUSHi(0);
533c011a 1050 RETURNOP(PL_op->op_next->op_next);
a0d0e21e 1051 }
3280af22 1052 PL_stack_sp = PL_stack_base + *PL_markstack_ptr + 1;
897d3989
NC
1053 Perl_pp_pushmark(aTHX); /* push dst */
1054 Perl_pp_pushmark(aTHX); /* push src */
d343c3ef 1055 ENTER_with_name("grep"); /* enter outer scope */
a0d0e21e
LW
1056
1057 SAVETMPS;
59f00321
RGS
1058 if (PL_op->op_private & OPpGREP_LEX)
1059 SAVESPTR(PAD_SVl(PL_op->op_targ));
1060 else
1061 SAVE_DEFSV;
d343c3ef 1062 ENTER_with_name("grep_item"); /* enter inner scope */
7766f137 1063 SAVEVPTR(PL_curpm);
a0d0e21e 1064
3280af22 1065 src = PL_stack_base[*PL_markstack_ptr];
a0d0e21e 1066 SvTEMP_off(src);
59f00321
RGS
1067 if (PL_op->op_private & OPpGREP_LEX)
1068 PAD_SVl(PL_op->op_targ) = src;
1069 else
414bf5ae 1070 DEFSV_set(src);
a0d0e21e
LW
1071
1072 PUTBACK;
533c011a 1073 if (PL_op->op_type == OP_MAPSTART)
897d3989 1074 Perl_pp_pushmark(aTHX); /* push top */
533c011a 1075 return ((LOGOP*)PL_op->op_next)->op_other;
a0d0e21e
LW
1076}
1077
a0d0e21e
LW
1078PP(pp_mapwhile)
1079{
27da23d5 1080 dVAR; dSP;
f54cb97a 1081 const I32 gimme = GIMME_V;
544f3153 1082 I32 items = (SP - PL_stack_base) - *PL_markstack_ptr; /* how many new items */
a0d0e21e
LW
1083 I32 count;
1084 I32 shift;
1085 SV** src;
ac27b0f5 1086 SV** dst;
a0d0e21e 1087
544f3153 1088 /* first, move source pointer to the next item in the source list */
3280af22 1089 ++PL_markstack_ptr[-1];
544f3153
GS
1090
1091 /* if there are new items, push them into the destination list */
4c90a460 1092 if (items && gimme != G_VOID) {
544f3153
GS
1093 /* might need to make room back there first */
1094 if (items > PL_markstack_ptr[-1] - PL_markstack_ptr[-2]) {
1095 /* XXX this implementation is very pessimal because the stack
1096 * is repeatedly extended for every set of items. Is possible
1097 * to do this without any stack extension or copying at all
1098 * by maintaining a separate list over which the map iterates
18ef8bea 1099 * (like foreach does). --gsar */
544f3153
GS
1100
1101 /* everything in the stack after the destination list moves
1102 * towards the end the stack by the amount of room needed */
1103 shift = items - (PL_markstack_ptr[-1] - PL_markstack_ptr[-2]);
1104
1105 /* items to shift up (accounting for the moved source pointer) */
1106 count = (SP - PL_stack_base) - (PL_markstack_ptr[-1] - 1);
18ef8bea
BT
1107
1108 /* This optimization is by Ben Tilly and it does
1109 * things differently from what Sarathy (gsar)
1110 * is describing. The downside of this optimization is
1111 * that leaves "holes" (uninitialized and hopefully unused areas)
1112 * to the Perl stack, but on the other hand this
1113 * shouldn't be a problem. If Sarathy's idea gets
1114 * implemented, this optimization should become
1115 * irrelevant. --jhi */
1116 if (shift < count)
1117 shift = count; /* Avoid shifting too often --Ben Tilly */
bfed75c6 1118
924508f0
GS
1119 EXTEND(SP,shift);
1120 src = SP;
1121 dst = (SP += shift);
3280af22
NIS
1122 PL_markstack_ptr[-1] += shift;
1123 *PL_markstack_ptr += shift;
544f3153 1124 while (count--)
a0d0e21e
LW
1125 *dst-- = *src--;
1126 }
544f3153 1127 /* copy the new items down to the destination list */
ac27b0f5 1128 dst = PL_stack_base + (PL_markstack_ptr[-2] += items) - 1;
22023b26 1129 if (gimme == G_ARRAY) {
b2a2a901
DM
1130 /* add returned items to the collection (making mortal copies
1131 * if necessary), then clear the current temps stack frame
1132 * *except* for those items. We do this splicing the items
1133 * into the start of the tmps frame (so some items may be on
59d53fd6 1134 * the tmps stack twice), then moving PL_tmps_floor above
b2a2a901
DM
1135 * them, then freeing the frame. That way, the only tmps that
1136 * accumulate over iterations are the return values for map.
1137 * We have to do to this way so that everything gets correctly
1138 * freed if we die during the map.
1139 */
1140 I32 tmpsbase;
1141 I32 i = items;
1142 /* make space for the slice */
1143 EXTEND_MORTAL(items);
1144 tmpsbase = PL_tmps_floor + 1;
1145 Move(PL_tmps_stack + tmpsbase,
1146 PL_tmps_stack + tmpsbase + items,
1147 PL_tmps_ix - PL_tmps_floor,
1148 SV*);
1149 PL_tmps_ix += items;
1150
1151 while (i-- > 0) {
1152 SV *sv = POPs;
1153 if (!SvTEMP(sv))
1154 sv = sv_mortalcopy(sv);
1155 *dst-- = sv;
1156 PL_tmps_stack[tmpsbase++] = SvREFCNT_inc_simple(sv);
1157 }
1158 /* clear the stack frame except for the items */
1159 PL_tmps_floor += items;
1160 FREETMPS;
1161 /* FREETMPS may have cleared the TEMP flag on some of the items */
1162 i = items;
1163 while (i-- > 0)
1164 SvTEMP_on(PL_tmps_stack[--tmpsbase]);
22023b26 1165 }
bfed75c6 1166 else {
22023b26
TP
1167 /* scalar context: we don't care about which values map returns
1168 * (we use undef here). And so we certainly don't want to do mortal
1169 * copies of meaningless values. */
1170 while (items-- > 0) {
b988aa42 1171 (void)POPs;
22023b26
TP
1172 *dst-- = &PL_sv_undef;
1173 }
b2a2a901 1174 FREETMPS;
22023b26 1175 }
a0d0e21e 1176 }
b2a2a901
DM
1177 else {
1178 FREETMPS;
1179 }
d343c3ef 1180 LEAVE_with_name("grep_item"); /* exit inner scope */
a0d0e21e
LW
1181
1182 /* All done yet? */
3280af22 1183 if (PL_markstack_ptr[-1] > *PL_markstack_ptr) {
a0d0e21e
LW
1184
1185 (void)POPMARK; /* pop top */
d343c3ef 1186 LEAVE_with_name("grep"); /* exit outer scope */
a0d0e21e 1187 (void)POPMARK; /* pop src */
3280af22 1188 items = --*PL_markstack_ptr - PL_markstack_ptr[-1];
a0d0e21e 1189 (void)POPMARK; /* pop dst */
3280af22 1190 SP = PL_stack_base + POPMARK; /* pop original mark */
54310121 1191 if (gimme == G_SCALAR) {
7cc47870
RGS
1192 if (PL_op->op_private & OPpGREP_LEX) {
1193 SV* sv = sv_newmortal();
1194 sv_setiv(sv, items);
1195 PUSHs(sv);
1196 }
1197 else {
1198 dTARGET;
1199 XPUSHi(items);
1200 }
a0d0e21e 1201 }
54310121 1202 else if (gimme == G_ARRAY)
1203 SP += items;
a0d0e21e
LW
1204 RETURN;
1205 }
1206 else {
1207 SV *src;
1208
d343c3ef 1209 ENTER_with_name("grep_item"); /* enter inner scope */
7766f137 1210 SAVEVPTR(PL_curpm);
a0d0e21e 1211
544f3153 1212 /* set $_ to the new source item */
3280af22 1213 src = PL_stack_base[PL_markstack_ptr[-1]];
a0d0e21e 1214 SvTEMP_off(src);
59f00321
RGS
1215 if (PL_op->op_private & OPpGREP_LEX)
1216 PAD_SVl(PL_op->op_targ) = src;
1217 else
414bf5ae 1218 DEFSV_set(src);
a0d0e21e
LW
1219
1220 RETURNOP(cLOGOP->op_other);
1221 }
1222}
1223
a0d0e21e
LW
1224/* Range stuff. */
1225
1226PP(pp_range)
1227{
97aff369 1228 dVAR;
a0d0e21e 1229 if (GIMME == G_ARRAY)
1a67a97c 1230 return NORMAL;
538573f7 1231 if (SvTRUEx(PAD_SV(PL_op->op_targ)))
1a67a97c 1232 return cLOGOP->op_other;
538573f7 1233 else
1a67a97c 1234 return NORMAL;
a0d0e21e
LW
1235}
1236
1237PP(pp_flip)
1238{
97aff369 1239 dVAR;
39644a26 1240 dSP;
a0d0e21e
LW
1241
1242 if (GIMME == G_ARRAY) {
1a67a97c 1243 RETURNOP(((LOGOP*)cUNOP->op_first)->op_other);
a0d0e21e
LW
1244 }
1245 else {
1246 dTOPss;
44f8325f 1247 SV * const targ = PAD_SV(PL_op->op_targ);
bfed75c6 1248 int flip = 0;
790090df 1249
bfed75c6 1250 if (PL_op->op_private & OPpFLIP_LINENUM) {
4e3399f9
YST
1251 if (GvIO(PL_last_in_gv)) {
1252 flip = SvIV(sv) == (IV)IoLINES(GvIOp(PL_last_in_gv));
1253 }
1254 else {
fafc274c 1255 GV * const gv = gv_fetchpvs(".", GV_ADD|GV_NOTQUAL, SVt_PV);
44f8325f
AL
1256 if (gv && GvSV(gv))
1257 flip = SvIV(sv) == SvIV(GvSV(gv));
4e3399f9 1258 }
bfed75c6
AL
1259 } else {
1260 flip = SvTRUE(sv);
1261 }
1262 if (flip) {
a0d0e21e 1263 sv_setiv(PAD_SV(cUNOP->op_first->op_targ), 1);
533c011a 1264 if (PL_op->op_flags & OPf_SPECIAL) {
a0d0e21e 1265 sv_setiv(targ, 1);
3e3baf6d 1266 SETs(targ);
a0d0e21e
LW
1267 RETURN;
1268 }
1269 else {
1270 sv_setiv(targ, 0);
924508f0 1271 SP--;
1a67a97c 1272 RETURNOP(((LOGOP*)cUNOP->op_first)->op_other);
a0d0e21e
LW
1273 }
1274 }
76f68e9b 1275 sv_setpvs(TARG, "");
a0d0e21e
LW
1276 SETs(targ);
1277 RETURN;
1278 }
1279}
1280
8e9bbdb9
RGS
1281/* This code tries to decide if "$left .. $right" should use the
1282 magical string increment, or if the range is numeric (we make
1283 an exception for .."0" [#18165]). AMS 20021031. */
1284
1285#define RANGE_IS_NUMERIC(left,right) ( \
b0e74086
RGS
1286 SvNIOKp(left) || (SvOK(left) && !SvPOKp(left)) || \
1287 SvNIOKp(right) || (SvOK(right) && !SvPOKp(right)) || \
e0ab1c0e 1288 (((!SvOK(left) && SvOK(right)) || ((!SvOK(left) || \
b15aece3 1289 looks_like_number(left)) && SvPOKp(left) && *SvPVX_const(left) != '0')) \
e0ab1c0e 1290 && (!SvOK(right) || looks_like_number(right))))
8e9bbdb9 1291
a0d0e21e
LW
1292PP(pp_flop)
1293{
97aff369 1294 dVAR; dSP;
a0d0e21e
LW
1295
1296 if (GIMME == G_ARRAY) {
1297 dPOPPOPssrl;
86cb7173 1298
5b295bef
RD
1299 SvGETMAGIC(left);
1300 SvGETMAGIC(right);
a0d0e21e 1301
8e9bbdb9 1302 if (RANGE_IS_NUMERIC(left,right)) {
901017d6
AL
1303 register IV i, j;
1304 IV max;
f52e41ad
FC
1305 if ((SvOK(left) && SvNV_nomg(left) < IV_MIN) ||
1306 (SvOK(right) && SvNV_nomg(right) > IV_MAX))
d470f89e 1307 DIE(aTHX_ "Range iterator outside integer range");
f52e41ad
FC
1308 i = SvIV_nomg(left);
1309 max = SvIV_nomg(right);
bbce6d69 1310 if (max >= i) {
c1ab3db2
AK
1311 j = max - i + 1;
1312 EXTEND_MORTAL(j);
1313 EXTEND(SP, j);
bbce6d69 1314 }
c1ab3db2
AK
1315 else
1316 j = 0;
1317 while (j--) {
901017d6 1318 SV * const sv = sv_2mortal(newSViv(i++));
a0d0e21e
LW
1319 PUSHs(sv);
1320 }
1321 }
1322 else {
3c323193
FC
1323 STRLEN len, llen;
1324 const char * const lpv = SvPV_nomg_const(left, llen);
f52e41ad 1325 const char * const tmps = SvPV_nomg_const(right, len);
a0d0e21e 1326
3c323193 1327 SV *sv = newSVpvn_flags(lpv, llen, SvUTF8(left)|SVs_TEMP);
89ea2908 1328 while (!SvNIOKp(sv) && SvCUR(sv) <= len) {
a0d0e21e 1329 XPUSHs(sv);
b15aece3 1330 if (strEQ(SvPVX_const(sv),tmps))
89ea2908 1331 break;
a0d0e21e
LW
1332 sv = sv_2mortal(newSVsv(sv));
1333 sv_inc(sv);
1334 }
a0d0e21e
LW
1335 }
1336 }
1337 else {
1338 dTOPss;
901017d6 1339 SV * const targ = PAD_SV(cUNOP->op_first->op_targ);
4e3399f9 1340 int flop = 0;
a0d0e21e 1341 sv_inc(targ);
4e3399f9
YST
1342
1343 if (PL_op->op_private & OPpFLIP_LINENUM) {
1344 if (GvIO(PL_last_in_gv)) {
1345 flop = SvIV(sv) == (IV)IoLINES(GvIOp(PL_last_in_gv));
1346 }
1347 else {
fafc274c 1348 GV * const gv = gv_fetchpvs(".", GV_ADD|GV_NOTQUAL, SVt_PV);
4e3399f9
YST
1349 if (gv && GvSV(gv)) flop = SvIV(sv) == SvIV(GvSV(gv));
1350 }
1351 }
1352 else {
1353 flop = SvTRUE(sv);
1354 }
1355
1356 if (flop) {
a0d0e21e 1357 sv_setiv(PAD_SV(((UNOP*)cUNOP->op_first)->op_first->op_targ), 0);
396482e1 1358 sv_catpvs(targ, "E0");
a0d0e21e
LW
1359 }
1360 SETs(targ);
1361 }
1362
1363 RETURN;
1364}
1365
1366/* Control. */
1367
27da23d5 1368static const char * const context_name[] = {
515afda2 1369 "pseudo-block",
f31522f3 1370 NULL, /* CXt_WHEN never actually needs "block" */
76753e7f 1371 NULL, /* CXt_BLOCK never actually needs "block" */
f31522f3 1372 NULL, /* CXt_GIVEN never actually needs "block" */
76753e7f
NC
1373 NULL, /* CXt_LOOP_FOR never actually needs "loop" */
1374 NULL, /* CXt_LOOP_PLAIN never actually needs "loop" */
1375 NULL, /* CXt_LOOP_LAZYSV never actually needs "loop" */
1376 NULL, /* CXt_LOOP_LAZYIV never actually needs "loop" */
515afda2 1377 "subroutine",
76753e7f 1378 "format",
515afda2 1379 "eval",
515afda2 1380 "substitution",
515afda2
NC
1381};
1382
76e3520e 1383STATIC I32
06b5626a 1384S_dopoptolabel(pTHX_ const char *label)
a0d0e21e 1385{
97aff369 1386 dVAR;
a0d0e21e 1387 register I32 i;
a0d0e21e 1388
7918f24d
NC
1389 PERL_ARGS_ASSERT_DOPOPTOLABEL;
1390
a0d0e21e 1391 for (i = cxstack_ix; i >= 0; i--) {
901017d6 1392 register const PERL_CONTEXT * const cx = &cxstack[i];
6b35e009 1393 switch (CxTYPE(cx)) {
a0d0e21e 1394 case CXt_SUBST:
a0d0e21e 1395 case CXt_SUB:
7766f137 1396 case CXt_FORMAT:
a0d0e21e 1397 case CXt_EVAL:
0a753a76 1398 case CXt_NULL:
a2a5de95
NC
1399 Perl_ck_warner(aTHX_ packWARN(WARN_EXITING), "Exiting %s via %s",
1400 context_name[CxTYPE(cx)], OP_NAME(PL_op));
515afda2
NC
1401 if (CxTYPE(cx) == CXt_NULL)
1402 return -1;
1403 break;
c6fdafd0 1404 case CXt_LOOP_LAZYIV:
d01136d6 1405 case CXt_LOOP_LAZYSV:
3b719c58
NC
1406 case CXt_LOOP_FOR:
1407 case CXt_LOOP_PLAIN:
7e8f1eac
AD
1408 {
1409 const char *cx_label = CxLABEL(cx);
1410 if (!cx_label || strNE(label, cx_label) ) {
1c98cc53 1411 DEBUG_l(Perl_deb(aTHX_ "(poptolabel(): skipping label at cx=%ld %s)\n",
7e8f1eac 1412 (long)i, cx_label));
a0d0e21e
LW
1413 continue;
1414 }
1c98cc53 1415 DEBUG_l( Perl_deb(aTHX_ "(poptolabel(): found label at cx=%ld %s)\n", (long)i, label));
a0d0e21e 1416 return i;
7e8f1eac 1417 }
a0d0e21e
LW
1418 }
1419 }
1420 return i;
1421}
1422
0d863452
RH
1423
1424
e50aee73 1425I32
864dbfa3 1426Perl_dowantarray(pTHX)
e50aee73 1427{
97aff369 1428 dVAR;
f54cb97a 1429 const I32 gimme = block_gimme();
54310121 1430 return (gimme == G_VOID) ? G_SCALAR : gimme;
1431}
1432
1433I32
864dbfa3 1434Perl_block_gimme(pTHX)
54310121 1435{
97aff369 1436 dVAR;
06b5626a 1437 const I32 cxix = dopoptosub(cxstack_ix);
e50aee73 1438 if (cxix < 0)
46fc3d4c 1439 return G_VOID;
e50aee73 1440
54310121 1441 switch (cxstack[cxix].blk_gimme) {
d2719217
GS
1442 case G_VOID:
1443 return G_VOID;
54310121 1444 case G_SCALAR:
e50aee73 1445 return G_SCALAR;
54310121 1446 case G_ARRAY:
1447 return G_ARRAY;
1448 default:
cea2e8a9 1449 Perl_croak(aTHX_ "panic: bad gimme: %d\n", cxstack[cxix].blk_gimme);
d2719217
GS
1450 /* NOTREACHED */
1451 return 0;
54310121 1452 }
e50aee73
AD
1453}
1454
78f9721b
SM
1455I32
1456Perl_is_lvalue_sub(pTHX)
1457{
97aff369 1458 dVAR;
06b5626a 1459 const I32 cxix = dopoptosub(cxstack_ix);
78f9721b
SM
1460 assert(cxix >= 0); /* We should only be called from inside subs */
1461
bafb2adc
NC
1462 if (CxLVAL(cxstack + cxix) && CvLVALUE(cxstack[cxix].blk_sub.cv))
1463 return CxLVAL(cxstack + cxix);
78f9721b
SM
1464 else
1465 return 0;
1466}
1467
777d9014
FC
1468/* only used by PUSHSUB */
1469I32
1470Perl_was_lvalue_sub(pTHX)
1471{
1472 dVAR;
1473 const I32 cxix = dopoptosub(cxstack_ix-1);
1474 assert(cxix >= 0); /* We should only be called from inside subs */
1475
1476 if (CxLVAL(cxstack + cxix) && CvLVALUE(cxstack[cxix].blk_sub.cv))
1477 return CxLVAL(cxstack + cxix);
1478 else
1479 return 0;
1480}
1481
76e3520e 1482STATIC I32
901017d6 1483S_dopoptosub_at(pTHX_ const PERL_CONTEXT *cxstk, I32 startingblock)
2c375eb9 1484{
97aff369 1485 dVAR;
a0d0e21e 1486 I32 i;
7918f24d
NC
1487
1488 PERL_ARGS_ASSERT_DOPOPTOSUB_AT;
1489
a0d0e21e 1490 for (i = startingblock; i >= 0; i--) {
901017d6 1491 register const PERL_CONTEXT * const cx = &cxstk[i];
6b35e009 1492 switch (CxTYPE(cx)) {
a0d0e21e
LW
1493 default:
1494 continue;
1495 case CXt_EVAL:
1496 case CXt_SUB:
7766f137 1497 case CXt_FORMAT:
1c98cc53 1498 DEBUG_l( Perl_deb(aTHX_ "(dopoptosub_at(): found sub at cx=%ld)\n", (long)i));
a0d0e21e
LW
1499 return i;
1500 }
1501 }
1502 return i;
1503}
1504
76e3520e 1505STATIC I32
cea2e8a9 1506S_dopoptoeval(pTHX_ I32 startingblock)
a0d0e21e 1507{
97aff369 1508 dVAR;
a0d0e21e 1509 I32 i;
a0d0e21e 1510 for (i = startingblock; i >= 0; i--) {
06b5626a 1511 register const PERL_CONTEXT *cx = &cxstack[i];
6b35e009 1512 switch (CxTYPE(cx)) {
a0d0e21e
LW
1513 default:
1514 continue;
1515 case CXt_EVAL:
1c98cc53 1516 DEBUG_l( Perl_deb(aTHX_ "(dopoptoeval(): found eval at cx=%ld)\n", (long)i));
a0d0e21e
LW
1517 return i;
1518 }
1519 }
1520 return i;
1521}
1522
76e3520e 1523STATIC I32
cea2e8a9 1524S_dopoptoloop(pTHX_ I32 startingblock)
a0d0e21e 1525{
97aff369 1526 dVAR;
a0d0e21e 1527 I32 i;
a0d0e21e 1528 for (i = startingblock; i >= 0; i--) {
901017d6 1529 register const PERL_CONTEXT * const cx = &cxstack[i];
6b35e009 1530 switch (CxTYPE(cx)) {
a0d0e21e 1531 case CXt_SUBST:
a0d0e21e 1532 case CXt_SUB:
7766f137 1533 case CXt_FORMAT:
a0d0e21e 1534 case CXt_EVAL:
0a753a76 1535 case CXt_NULL:
a2a5de95
NC
1536 Perl_ck_warner(aTHX_ packWARN(WARN_EXITING), "Exiting %s via %s",
1537 context_name[CxTYPE(cx)], OP_NAME(PL_op));
515afda2
NC
1538 if ((CxTYPE(cx)) == CXt_NULL)
1539 return -1;
1540 break;
c6fdafd0 1541 case CXt_LOOP_LAZYIV:
d01136d6 1542 case CXt_LOOP_LAZYSV:
3b719c58
NC
1543 case CXt_LOOP_FOR:
1544 case CXt_LOOP_PLAIN:
1c98cc53 1545 DEBUG_l( Perl_deb(aTHX_ "(dopoptoloop(): found loop at cx=%ld)\n", (long)i));
a0d0e21e
LW
1546 return i;
1547 }
1548 }
1549 return i;
1550}
1551
0d863452
RH
1552STATIC I32
1553S_dopoptogiven(pTHX_ I32 startingblock)
1554{
97aff369 1555 dVAR;
0d863452
RH
1556 I32 i;
1557 for (i = startingblock; i >= 0; i--) {
1558 register const PERL_CONTEXT *cx = &cxstack[i];
1559 switch (CxTYPE(cx)) {
1560 default:
1561 continue;
1562 case CXt_GIVEN:
1c98cc53 1563 DEBUG_l( Perl_deb(aTHX_ "(dopoptogiven(): found given at cx=%ld)\n", (long)i));
0d863452 1564 return i;
3b719c58
NC
1565 case CXt_LOOP_PLAIN:
1566 assert(!CxFOREACHDEF(cx));
1567 break;
c6fdafd0 1568 case CXt_LOOP_LAZYIV:
d01136d6 1569 case CXt_LOOP_LAZYSV:
3b719c58 1570 case CXt_LOOP_FOR:
0d863452 1571 if (CxFOREACHDEF(cx)) {
1c98cc53 1572 DEBUG_l( Perl_deb(aTHX_ "(dopoptogiven(): found foreach at cx=%ld)\n", (long)i));
0d863452
RH
1573 return i;
1574 }
1575 }
1576 }
1577 return i;
1578}
1579
1580STATIC I32
1581S_dopoptowhen(pTHX_ I32 startingblock)
1582{
97aff369 1583 dVAR;
0d863452
RH
1584 I32 i;
1585 for (i = startingblock; i >= 0; i--) {
1586 register const PERL_CONTEXT *cx = &cxstack[i];
1587 switch (CxTYPE(cx)) {
1588 default:
1589 continue;
1590 case CXt_WHEN:
1c98cc53 1591 DEBUG_l( Perl_deb(aTHX_ "(dopoptowhen(): found when at cx=%ld)\n", (long)i));
0d863452
RH
1592 return i;
1593 }
1594 }
1595 return i;
1596}
1597
a0d0e21e 1598void
864dbfa3 1599Perl_dounwind(pTHX_ I32 cxix)
a0d0e21e 1600{
97aff369 1601 dVAR;
a0d0e21e
LW
1602 I32 optype;
1603
f144f1e3
DM
1604 if (!PL_curstackinfo) /* can happen if die during thread cloning */
1605 return;
1606
a0d0e21e 1607 while (cxstack_ix > cxix) {
b0d9ce38 1608 SV *sv;
06b5626a 1609 register PERL_CONTEXT *cx = &cxstack[cxstack_ix];
1c98cc53 1610 DEBUG_CX("UNWIND"); \
a0d0e21e 1611 /* Note: we don't need to restore the base context info till the end. */
6b35e009 1612 switch (CxTYPE(cx)) {
c90c0ff4 1613 case CXt_SUBST:
1614 POPSUBST(cx);
1615 continue; /* not break */
a0d0e21e 1616 case CXt_SUB:
b0d9ce38
GS
1617 POPSUB(cx,sv);
1618 LEAVESUB(sv);
a0d0e21e
LW
1619 break;
1620 case CXt_EVAL:
1621 POPEVAL(cx);
1622 break;
c6fdafd0 1623 case CXt_LOOP_LAZYIV:
d01136d6 1624 case CXt_LOOP_LAZYSV:
3b719c58
NC
1625 case CXt_LOOP_FOR:
1626 case CXt_LOOP_PLAIN:
a0d0e21e
LW
1627 POPLOOP(cx);
1628 break;
0a753a76 1629 case CXt_NULL:
a0d0e21e 1630 break;
7766f137
GS
1631 case CXt_FORMAT:
1632 POPFORMAT(cx);
1633 break;
a0d0e21e 1634 }
c90c0ff4 1635 cxstack_ix--;
a0d0e21e 1636 }
1b6737cc 1637 PERL_UNUSED_VAR(optype);
a0d0e21e
LW
1638}
1639
5a844595
GS
1640void
1641Perl_qerror(pTHX_ SV *err)
1642{
97aff369 1643 dVAR;
7918f24d
NC
1644
1645 PERL_ARGS_ASSERT_QERROR;
1646
6b2fb389
DM
1647 if (PL_in_eval) {
1648 if (PL_in_eval & EVAL_KEEPERR) {
ecad31f0
BF
1649 Perl_ck_warner(aTHX_ packWARN(WARN_MISC), "\t(in cleanup) %"SVf,
1650 SVfARG(err));
6b2fb389
DM
1651 }
1652 else
1653 sv_catsv(ERRSV, err);
1654 }
5a844595
GS
1655 else if (PL_errors)
1656 sv_catsv(PL_errors, err);
1657 else
be2597df 1658 Perl_warn(aTHX_ "%"SVf, SVfARG(err));
13765c85
DM
1659 if (PL_parser)
1660 ++PL_parser->error_count;
5a844595
GS
1661}
1662
bb4c52e0 1663void
c5df3096 1664Perl_die_unwind(pTHX_ SV *msv)
a0d0e21e 1665{
27da23d5 1666 dVAR;
c5df3096 1667 SV *exceptsv = sv_mortalcopy(msv);
96d9b9cd 1668 U8 in_eval = PL_in_eval;
c5df3096 1669 PERL_ARGS_ASSERT_DIE_UNWIND;
87582a92 1670
96d9b9cd 1671 if (in_eval) {
a0d0e21e 1672 I32 cxix;
a0d0e21e 1673 I32 gimme;
a0d0e21e 1674
22a30693
Z
1675 /*
1676 * Historically, perl used to set ERRSV ($@) early in the die
1677 * process and rely on it not getting clobbered during unwinding.
1678 * That sucked, because it was liable to get clobbered, so the
1679 * setting of ERRSV used to emit the exception from eval{} has
1680 * been moved to much later, after unwinding (see just before
1681 * JMPENV_JUMP below). However, some modules were relying on the
1682 * early setting, by examining $@ during unwinding to use it as
1683 * a flag indicating whether the current unwinding was caused by
1684 * an exception. It was never a reliable flag for that purpose,
1685 * being totally open to false positives even without actual
1686 * clobberage, but was useful enough for production code to
1687 * semantically rely on it.
1688 *
1689 * We'd like to have a proper introspective interface that
1690 * explicitly describes the reason for whatever unwinding
1691 * operations are currently in progress, so that those modules
1692 * work reliably and $@ isn't further overloaded. But we don't
1693 * have one yet. In its absence, as a stopgap measure, ERRSV is
1694 * now *additionally* set here, before unwinding, to serve as the
1695 * (unreliable) flag that it used to.
1696 *
1697 * This behaviour is temporary, and should be removed when a
1698 * proper way to detect exceptional unwinding has been developed.
1699 * As of 2010-12, the authors of modules relying on the hack
1700 * are aware of the issue, because the modules failed on
1701 * perls 5.13.{1..7} which had late setting of $@ without this
1702 * early-setting hack.
1703 */
1704 if (!(in_eval & EVAL_KEEPERR)) {
1705 SvTEMP_off(exceptsv);
1706 sv_setsv(ERRSV, exceptsv);
1707 }
1708
5a844595
GS
1709 while ((cxix = dopoptoeval(cxstack_ix)) < 0
1710 && PL_curstackinfo->si_prev)
1711 {
bac4b2ad 1712 dounwind(-1);
d3acc0f7 1713 POPSTACK;
bac4b2ad 1714 }
e336de0d 1715
a0d0e21e
LW
1716 if (cxix >= 0) {
1717 I32 optype;
b6494f15 1718 SV *namesv;
35a4481c 1719 register PERL_CONTEXT *cx;
901017d6 1720 SV **newsp;
8f89e5a9
Z
1721 COP *oldcop;
1722 JMPENV *restartjmpenv;
1723 OP *restartop;
a0d0e21e
LW
1724
1725 if (cxix < cxstack_ix)
1726 dounwind(cxix);
1727
3280af22 1728 POPBLOCK(cx,PL_curpm);
6b35e009 1729 if (CxTYPE(cx) != CXt_EVAL) {
7d0994e0 1730 STRLEN msglen;
96d9b9cd 1731 const char* message = SvPVx_const(exceptsv, msglen);
10edeb5d 1732 PerlIO_write(Perl_error_log, (const char *)"panic: die ", 11);
bf49b057 1733 PerlIO_write(Perl_error_log, message, msglen);
a0d0e21e
LW
1734 my_exit(1);
1735 }
1736 POPEVAL(cx);
b6494f15 1737 namesv = cx->blk_eval.old_namesv;
8f89e5a9
Z
1738 oldcop = cx->blk_oldcop;
1739 restartjmpenv = cx->blk_eval.cur_top_env;
1740 restartop = cx->blk_eval.retop;
a0d0e21e
LW
1741
1742 if (gimme == G_SCALAR)
3280af22
NIS
1743 *++newsp = &PL_sv_undef;
1744 PL_stack_sp = newsp;
a0d0e21e
LW
1745
1746 LEAVE;
748a9306 1747
7fb6a879
GS
1748 /* LEAVE could clobber PL_curcop (see save_re_context())
1749 * XXX it might be better to find a way to avoid messing with
1750 * PL_curcop in save_re_context() instead, but this is a more
1751 * minimal fix --GSAR */
8f89e5a9 1752 PL_curcop = oldcop;
7fb6a879 1753
7a2e2cd6 1754 if (optype == OP_REQUIRE) {
b6494f15 1755 (void)hv_store(GvHVn(PL_incgv),
ecad31f0 1756 SvPVX_const(namesv),
c60dbbc3 1757 SvUTF8(namesv) ? -(I32)SvCUR(namesv) : (I32)SvCUR(namesv),
27bcc0a7 1758 &PL_sv_undef, 0);
27e90453
DM
1759 /* note that unlike pp_entereval, pp_require isn't
1760 * supposed to trap errors. So now that we've popped the
1761 * EVAL that pp_require pushed, and processed the error
1762 * message, rethrow the error */
ecad31f0
BF
1763 Perl_croak(aTHX_ "%"SVf"Compilation failed in require",
1764 SVfARG(exceptsv ? exceptsv : newSVpvs_flags("Unknown error\n",
1765 SVs_TEMP)));
7a2e2cd6 1766 }
c5df3096 1767 if (in_eval & EVAL_KEEPERR) {
ecad31f0
BF
1768 Perl_ck_warner(aTHX_ packWARN(WARN_MISC), "\t(in cleanup) %"SVf,
1769 SVfARG(exceptsv));
96d9b9cd
Z
1770 }
1771 else {
1772 sv_setsv(ERRSV, exceptsv);
1773 }
8f89e5a9
Z
1774 PL_restartjmpenv = restartjmpenv;
1775 PL_restartop = restartop;
bb4c52e0
GG
1776 JMPENV_JUMP(3);
1777 /* NOTREACHED */
a0d0e21e
LW
1778 }
1779 }
87582a92 1780
96d9b9cd 1781 write_to_stderr(exceptsv);
f86702cc 1782 my_failure_exit();
1783 /* NOTREACHED */
a0d0e21e
LW
1784}
1785
1786PP(pp_xor)
1787{
97aff369 1788 dVAR; dSP; dPOPTOPssrl;
a0d0e21e
LW
1789 if (SvTRUE(left) != SvTRUE(right))
1790 RETSETYES;
1791 else
1792 RETSETNO;
1793}
1794
8dff4fc5
BM
1795/*
1796=for apidoc caller_cx
1797
1798The XSUB-writer's equivalent of L<caller()|perlfunc/caller>. The
1799returned C<PERL_CONTEXT> structure can be interrogated to find all the
1800information returned to Perl by C<caller>. Note that XSUBs don't get a
1801stack frame, so C<caller_cx(0, NULL)> will return information for the
1802immediately-surrounding Perl code.
1803
1804This function skips over the automatic calls to C<&DB::sub> made on the
1805behalf of the debugger. If the stack frame requested was a sub called by
1806C<DB::sub>, the return value will be the frame for the call to
1807C<DB::sub>, since that has the correct line number/etc. for the call
1808site. If I<dbcxp> is non-C<NULL>, it will be set to a pointer to the
1809frame for the sub call itself.
1810
1811=cut
1812*/
1813
1814const PERL_CONTEXT *
1815Perl_caller_cx(pTHX_ I32 count, const PERL_CONTEXT **dbcxp)
a0d0e21e 1816{
a0d0e21e 1817 register I32 cxix = dopoptosub(cxstack_ix);
901017d6
AL
1818 register const PERL_CONTEXT *cx;
1819 register const PERL_CONTEXT *ccstack = cxstack;
1820 const PERL_SI *top_si = PL_curstackinfo;
27d41816 1821
a0d0e21e 1822 for (;;) {
2c375eb9
GS
1823 /* we may be in a higher stacklevel, so dig down deeper */
1824 while (cxix < 0 && top_si->si_type != PERLSI_MAIN) {
1825 top_si = top_si->si_prev;
1826 ccstack = top_si->si_cxstack;
1827 cxix = dopoptosub_at(ccstack, top_si->si_cxix);
1828 }
8dff4fc5
BM
1829 if (cxix < 0)
1830 return NULL;
f2a7f298
DG
1831 /* caller() should not report the automatic calls to &DB::sub */
1832 if (PL_DBsub && GvCV(PL_DBsub) && cxix >= 0 &&
3280af22 1833 ccstack[cxix].blk_sub.cv == GvCV(PL_DBsub))
a0d0e21e
LW
1834 count++;
1835 if (!count--)
1836 break;
2c375eb9 1837 cxix = dopoptosub_at(ccstack, cxix - 1);
a0d0e21e 1838 }
2c375eb9
GS
1839
1840 cx = &ccstack[cxix];
8dff4fc5
BM
1841 if (dbcxp) *dbcxp = cx;
1842
7766f137 1843 if (CxTYPE(cx) == CXt_SUB || CxTYPE(cx) == CXt_FORMAT) {
f54cb97a 1844 const I32 dbcxix = dopoptosub_at(ccstack, cxix - 1);
2c375eb9 1845 /* We expect that ccstack[dbcxix] is CXt_SUB, anyway, the
06a5b730 1846 field below is defined for any cx. */
f2a7f298
DG
1847 /* caller() should not report the automatic calls to &DB::sub */
1848 if (PL_DBsub && GvCV(PL_DBsub) && dbcxix >= 0 && ccstack[dbcxix].blk_sub.cv == GvCV(PL_DBsub))
2c375eb9 1849 cx = &ccstack[dbcxix];
06a5b730 1850 }
1851
8dff4fc5
BM
1852 return cx;
1853}
1854
1855PP(pp_caller)
1856{
1857 dVAR;
1858 dSP;
1859 register const PERL_CONTEXT *cx;
1860 const PERL_CONTEXT *dbcx;
1861 I32 gimme;
d527ce7c 1862 const HEK *stash_hek;
8dff4fc5 1863 I32 count = 0;
ce0b554b 1864 bool has_arg = MAXARG && TOPs;
8dff4fc5 1865
ce0b554b
FC
1866 if (MAXARG) {
1867 if (has_arg)
8dff4fc5 1868 count = POPi;
ce0b554b
FC
1869 else (void)POPs;
1870 }
8dff4fc5 1871
ce0b554b 1872 cx = caller_cx(count + !!(PL_op->op_private & OPpOFFBYONE), &dbcx);
8dff4fc5
BM
1873 if (!cx) {
1874 if (GIMME != G_ARRAY) {
1875 EXTEND(SP, 1);
1876 RETPUSHUNDEF;
1877 }
1878 RETURN;
1879 }
1880
d527ce7c 1881 stash_hek = HvNAME_HEK((HV*)CopSTASH(cx->blk_oldcop));
a0d0e21e 1882 if (GIMME != G_ARRAY) {
27d41816 1883 EXTEND(SP, 1);
d527ce7c 1884 if (!stash_hek)
3280af22 1885 PUSHs(&PL_sv_undef);
49d8d3a1
MB
1886 else {
1887 dTARGET;
d527ce7c 1888 sv_sethek(TARG, stash_hek);
49d8d3a1
MB
1889 PUSHs(TARG);
1890 }
a0d0e21e
LW
1891 RETURN;
1892 }
a0d0e21e 1893
b3ca2e83 1894 EXTEND(SP, 11);
27d41816 1895
d527ce7c 1896 if (!stash_hek)
3280af22 1897 PUSHs(&PL_sv_undef);
d527ce7c
BF
1898 else {
1899 dTARGET;
1900 sv_sethek(TARG, stash_hek);
1901 PUSHTARG;
1902 }
6e449a3a
MHM
1903 mPUSHs(newSVpv(OutCopFILE(cx->blk_oldcop), 0));
1904 mPUSHi((I32)CopLINE(cx->blk_oldcop));
ce0b554b 1905 if (!has_arg)
a0d0e21e 1906 RETURN;
7766f137 1907 if (CxTYPE(cx) == CXt_SUB || CxTYPE(cx) == CXt_FORMAT) {
8dff4fc5 1908 GV * const cvgv = CvGV(dbcx->blk_sub.cv);
7766f137 1909 /* So is ccstack[dbcxix]. */
07b8c804 1910 if (isGV(cvgv)) {
561b68a9 1911 SV * const sv = newSV(0);
c445ea15 1912 gv_efullname3(sv, cvgv, NULL);
6e449a3a 1913 mPUSHs(sv);
bf38a478 1914 PUSHs(boolSV(CxHASARGS(cx)));
07b8c804
RGS
1915 }
1916 else {
84bafc02 1917 PUSHs(newSVpvs_flags("(unknown)", SVs_TEMP));
bf38a478 1918 PUSHs(boolSV(CxHASARGS(cx)));
07b8c804 1919 }
a0d0e21e
LW
1920 }
1921 else {
84bafc02 1922 PUSHs(newSVpvs_flags("(eval)", SVs_TEMP));
6e449a3a 1923 mPUSHi(0);
a0d0e21e 1924 }
54310121 1925 gimme = (I32)cx->blk_gimme;
1926 if (gimme == G_VOID)
3280af22 1927 PUSHs(&PL_sv_undef);
54310121 1928 else
98625aca 1929 PUSHs(boolSV((gimme & G_WANT) == G_ARRAY));
6b35e009 1930 if (CxTYPE(cx) == CXt_EVAL) {
811a4de9 1931 /* eval STRING */
85a64632 1932 if (CxOLD_OP_TYPE(cx) == OP_ENTEREVAL) {
4633a7c4 1933 PUSHs(cx->blk_eval.cur_text);
3280af22 1934 PUSHs(&PL_sv_no);
0f79a09d 1935 }
811a4de9 1936 /* require */
0f79a09d 1937 else if (cx->blk_eval.old_namesv) {
6e449a3a 1938 mPUSHs(newSVsv(cx->blk_eval.old_namesv));
3280af22 1939 PUSHs(&PL_sv_yes);
06a5b730 1940 }
811a4de9
GS
1941 /* eval BLOCK (try blocks have old_namesv == 0) */
1942 else {
1943 PUSHs(&PL_sv_undef);
1944 PUSHs(&PL_sv_undef);
1945 }
4633a7c4 1946 }
a682de96
GS
1947 else {
1948 PUSHs(&PL_sv_undef);
1949 PUSHs(&PL_sv_undef);
1950 }
bafb2adc 1951 if (CxTYPE(cx) == CXt_SUB && CxHASARGS(cx)
ed094faf 1952 && CopSTASH_eq(PL_curcop, PL_debstash))
4633a7c4 1953 {
66a1b24b
AL
1954 AV * const ary = cx->blk_sub.argarray;
1955 const int off = AvARRAY(ary) - AvALLOC(ary);
a0d0e21e 1956
e1a80902 1957 Perl_init_dbargs(aTHX);
a0d0e21e 1958
3280af22
NIS
1959 if (AvMAX(PL_dbargs) < AvFILLp(ary) + off)
1960 av_extend(PL_dbargs, AvFILLp(ary) + off);
1961 Copy(AvALLOC(ary), AvARRAY(PL_dbargs), AvFILLp(ary) + 1 + off, SV*);
1962 AvFILLp(PL_dbargs) = AvFILLp(ary) + off;
a0d0e21e 1963 }
f3aa04c2
GS
1964 /* XXX only hints propagated via op_private are currently
1965 * visible (others are not easily accessible, since they
1966 * use the global PL_hints) */
6e449a3a 1967 mPUSHi(CopHINTS_get(cx->blk_oldcop));
e476b1b5
GS
1968 {
1969 SV * mask ;
72dc9ed5 1970 STRLEN * const old_warnings = cx->blk_oldcop->cop_warnings ;
114bafba 1971
ac27b0f5 1972 if (old_warnings == pWARN_NONE ||
114bafba 1973 (old_warnings == pWARN_STD && (PL_dowarn & G_WARN_ON) == 0))
e476b1b5 1974 mask = newSVpvn(WARN_NONEstring, WARNsize) ;
ac27b0f5 1975 else if (old_warnings == pWARN_ALL ||
75b6c4ca
RGS
1976 (old_warnings == pWARN_STD && PL_dowarn & G_WARN_ON)) {
1977 /* Get the bit mask for $warnings::Bits{all}, because
1978 * it could have been extended by warnings::register */
1979 SV **bits_all;
6673a63c 1980 HV * const bits = get_hv("warnings::Bits", 0);
017a3ce5 1981 if (bits && (bits_all=hv_fetchs(bits, "all", FALSE))) {
75b6c4ca
RGS
1982 mask = newSVsv(*bits_all);
1983 }
1984 else {
1985 mask = newSVpvn(WARN_ALLstring, WARNsize) ;
1986 }
1987 }
e476b1b5 1988 else
72dc9ed5 1989 mask = newSVpvn((char *) (old_warnings + 1), old_warnings[0]);
6e449a3a 1990 mPUSHs(mask);
e476b1b5 1991 }
b3ca2e83 1992
c28fe1ec 1993 PUSHs(cx->blk_oldcop->cop_hints_hash ?
20439bc7 1994 sv_2mortal(newRV_noinc(MUTABLE_SV(cop_hints_2hv(cx->blk_oldcop, 0))))
b3ca2e83 1995 : &PL_sv_undef);
a0d0e21e
LW
1996 RETURN;
1997}
1998
a0d0e21e
LW
1999PP(pp_reset)
2000{
97aff369 2001 dVAR;
39644a26 2002 dSP;
f650fa72
FC
2003 const char * const tmps =
2004 (MAXARG < 1 || (!TOPs && !POPs)) ? (const char *)"" : POPpconstx;
11faa288 2005 sv_reset(tmps, CopSTASH(PL_curcop));
3280af22 2006 PUSHs(&PL_sv_yes);
a0d0e21e
LW
2007 RETURN;
2008}
2009
dd2155a4
DM
2010/* like pp_nextstate, but used instead when the debugger is active */
2011
a0d0e21e
LW
2012PP(pp_dbstate)
2013{
27da23d5 2014 dVAR;
533c011a 2015 PL_curcop = (COP*)PL_op;
a0d0e21e 2016 TAINT_NOT; /* Each statement is presumed innocent */
3280af22 2017 PL_stack_sp = PL_stack_base + cxstack[cxstack_ix].blk_oldsp;
a0d0e21e
LW
2018 FREETMPS;
2019
f410a211
NC
2020 PERL_ASYNC_CHECK();
2021
5df8de69
DM
2022 if (PL_op->op_flags & OPf_SPECIAL /* breakpoint */
2023 || SvIV(PL_DBsingle) || SvIV(PL_DBsignal) || SvIV(PL_DBtrace))
a0d0e21e 2024 {
39644a26 2025 dSP;
c09156bb 2026 register PERL_CONTEXT *cx;
f54cb97a 2027 const I32 gimme = G_ARRAY;
eb160463 2028 U8 hasargs;
0bd48802
AL
2029 GV * const gv = PL_DBgv;
2030 register CV * const cv = GvCV(gv);
a0d0e21e 2031
a0d0e21e 2032 if (!cv)
cea2e8a9 2033 DIE(aTHX_ "No DB::DB routine defined");
a0d0e21e 2034
aea4f609
DM
2035 if (CvDEPTH(cv) >= 1 && !(PL_debug & DEBUG_DB_RECURSE_FLAG))
2036 /* don't do recursive DB::DB call */
a0d0e21e 2037 return NORMAL;
748a9306 2038
a57c6685 2039 ENTER;
4633a7c4
LW
2040 SAVETMPS;
2041
3280af22 2042 SAVEI32(PL_debug);
55497cff 2043 SAVESTACK_POS();
3280af22 2044 PL_debug = 0;
748a9306 2045 hasargs = 0;
924508f0 2046 SPAGAIN;
748a9306 2047
aed2304a 2048 if (CvISXSUB(cv)) {
c127bd3a
SF
2049 CvDEPTH(cv)++;
2050 PUSHMARK(SP);
2051 (void)(*CvXSUB(cv))(aTHX_ cv);
2052 CvDEPTH(cv)--;
2053 FREETMPS;
a57c6685 2054 LEAVE;
c127bd3a
SF
2055 return NORMAL;
2056 }
2057 else {
2058 PUSHBLOCK(cx, CXt_SUB, SP);
2059 PUSHSUB_DB(cx);
2060 cx->blk_sub.retop = PL_op->op_next;
2061 CvDEPTH(cv)++;
2062 SAVECOMPPAD();
2063 PAD_SET_CUR_NOSAVE(CvPADLIST(cv), 1);
2064 RETURNOP(CvSTART(cv));
2065 }
a0d0e21e
LW
2066 }
2067 else
2068 return NORMAL;
2069}
2070
b9d76716
VP
2071STATIC SV **
2072S_adjust_stack_on_leave(pTHX_ SV **newsp, SV **sp, SV **mark, I32 gimme, U32 flags)
2073{
9a214eec 2074 bool padtmp = 0;
b9d76716
VP
2075 PERL_ARGS_ASSERT_ADJUST_STACK_ON_LEAVE;
2076
9a214eec
DM
2077 if (flags & SVs_PADTMP) {
2078 flags &= ~SVs_PADTMP;
2079 padtmp = 1;
2080 }
b9d76716
VP
2081 if (gimme == G_SCALAR) {
2082 if (MARK < SP)
9a214eec
DM
2083 *++newsp = ((SvFLAGS(*SP) & flags) || (padtmp && SvPADTMP(*SP)))
2084 ? *SP : sv_mortalcopy(*SP);
b9d76716
VP
2085 else {
2086 /* MEXTEND() only updates MARK, so reuse it instead of newsp. */
2087 MARK = newsp;
2088 MEXTEND(MARK, 1);
2089 *++MARK = &PL_sv_undef;
2090 return MARK;
2091 }
2092 }
2093 else if (gimme == G_ARRAY) {
2094 /* in case LEAVE wipes old return values */
2095 while (++MARK <= SP) {
9a214eec 2096 if ((SvFLAGS(*MARK) & flags) || (padtmp && SvPADTMP(*MARK)))
b9d76716
VP
2097 *++newsp = *MARK;
2098 else {
2099 *++newsp = sv_mortalcopy(*MARK);
2100 TAINT_NOT; /* Each item is independent */
2101 }
2102 }
2103 /* When this function was called with MARK == newsp, we reach this
2104 * point with SP == newsp. */
2105 }
2106
2107 return newsp;
2108}
2109
2b9a6457
VP
2110PP(pp_enter)
2111{
2112 dVAR; dSP;
2113 register PERL_CONTEXT *cx;
7c2d9d03 2114 I32 gimme = GIMME_V;
2b9a6457
VP
2115
2116 ENTER_with_name("block");
2117
2118 SAVETMPS;
2119 PUSHBLOCK(cx, CXt_BLOCK, SP);
2120
2121 RETURN;
2122}
2123
2124PP(pp_leave)
2125{
2126 dVAR; dSP;
2127 register PERL_CONTEXT *cx;
2128 SV **newsp;
2129 PMOP *newpm;
2130 I32 gimme;
2131
2132 if (PL_op->op_flags & OPf_SPECIAL) {
2133 cx = &cxstack[cxstack_ix];
2134 cx->blk_oldpm = PL_curpm; /* fake block should preserve $1 et al */
2135 }
2136
2137 POPBLOCK(cx,newpm);
2138
2139 gimme = OP_GIMME(PL_op, (cxstack_ix >= 0) ? gimme : G_SCALAR);
2140
2141 TAINT_NOT;
f02ea43c 2142 SP = adjust_stack_on_leave(newsp, SP, newsp, gimme, SVs_PADTMP|SVs_TEMP);
2b9a6457
VP
2143 PL_curpm = newpm; /* Don't pop $1 et al till now */
2144
2145 LEAVE_with_name("block");
2146
2147 RETURN;
2148}
2149
a0d0e21e
LW
2150PP(pp_enteriter)
2151{
27da23d5 2152 dVAR; dSP; dMARK;
c09156bb 2153 register PERL_CONTEXT *cx;
f54cb97a 2154 const I32 gimme = GIMME_V;
df530c37 2155 void *itervar; /* location of the iteration variable */
840fe433 2156 U8 cxtype = CXt_LOOP_FOR;
a0d0e21e 2157
d343c3ef 2158 ENTER_with_name("loop1");
4633a7c4
LW
2159 SAVETMPS;
2160
aafca525
DM
2161 if (PL_op->op_targ) { /* "my" variable */
2162 if (PL_op->op_private & OPpLVAL_INTRO) { /* for my $x (...) */
14f338dc
DM
2163 SvPADSTALE_off(PAD_SVl(PL_op->op_targ));
2164 SAVESETSVFLAGS(PAD_SVl(PL_op->op_targ),
2165 SVs_PADSTALE, SVs_PADSTALE);
2166 }
09edbca0 2167 SAVEPADSVANDMORTALIZE(PL_op->op_targ);
89e00a7c 2168#ifdef USE_ITHREADS
df530c37 2169 itervar = PL_comppad;
89e00a7c 2170#else
aafca525 2171 itervar = &PAD_SVl(PL_op->op_targ);
7766f137 2172#endif
54b9620d 2173 }
aafca525 2174 else { /* symbol table variable */
159b6efe 2175 GV * const gv = MUTABLE_GV(POPs);
f83b46a0
DM
2176 SV** svp = &GvSV(gv);
2177 save_pushptrptr(gv, SvREFCNT_inc(*svp), SAVEt_GVSV);
561b68a9 2178 *svp = newSV(0);
df530c37 2179 itervar = (void *)gv;
54b9620d 2180 }
4633a7c4 2181
0d863452
RH
2182 if (PL_op->op_private & OPpITER_DEF)
2183 cxtype |= CXp_FOR_DEF;
2184
d343c3ef 2185 ENTER_with_name("loop2");
a0d0e21e 2186
7766f137 2187 PUSHBLOCK(cx, cxtype, SP);
df530c37 2188 PUSHLOOP_FOR(cx, itervar, MARK);
533c011a 2189 if (PL_op->op_flags & OPf_STACKED) {
d01136d6
BS
2190 SV *maybe_ary = POPs;
2191 if (SvTYPE(maybe_ary) != SVt_PVAV) {
89ea2908 2192 dPOPss;
d01136d6 2193 SV * const right = maybe_ary;
984a4bea
RD
2194 SvGETMAGIC(sv);
2195 SvGETMAGIC(right);
4fe3f0fa 2196 if (RANGE_IS_NUMERIC(sv,right)) {
d01136d6 2197 cx->cx_type &= ~CXTYPEMASK;
c6fdafd0
NC
2198 cx->cx_type |= CXt_LOOP_LAZYIV;
2199 /* Make sure that no-one re-orders cop.h and breaks our
2200 assumptions */
2201 assert(CxTYPE(cx) == CXt_LOOP_LAZYIV);
a2309040 2202#ifdef NV_PRESERVES_UV
f52e41ad
FC
2203 if ((SvOK(sv) && ((SvNV_nomg(sv) < (NV)IV_MIN) ||
2204 (SvNV_nomg(sv) > (NV)IV_MAX)))
a2309040 2205 ||
f52e41ad
FC
2206 (SvOK(right) && ((SvNV_nomg(right) > (NV)IV_MAX) ||
2207 (SvNV_nomg(right) < (NV)IV_MIN))))
a2309040 2208#else
f52e41ad 2209 if ((SvOK(sv) && ((SvNV_nomg(sv) <= (NV)IV_MIN)
a2309040 2210 ||
f52e41ad
FC
2211 ((SvNV_nomg(sv) > 0) &&
2212 ((SvUV_nomg(sv) > (UV)IV_MAX) ||
2213 (SvNV_nomg(sv) > (NV)UV_MAX)))))
a2309040 2214 ||
f52e41ad 2215 (SvOK(right) && ((SvNV_nomg(right) <= (NV)IV_MIN)
a2309040 2216 ||
f52e41ad
FC
2217 ((SvNV_nomg(right) > 0) &&
2218 ((SvUV_nomg(right) > (UV)IV_MAX) ||
2219 (SvNV_nomg(right) > (NV)UV_MAX))
2220 ))))
a2309040 2221#endif
076d9a11 2222 DIE(aTHX_ "Range iterator outside integer range");
f52e41ad
FC
2223 cx->blk_loop.state_u.lazyiv.cur = SvIV_nomg(sv);
2224 cx->blk_loop.state_u.lazyiv.end = SvIV_nomg(right);
d4665a05
DM
2225#ifdef DEBUGGING
2226 /* for correct -Dstv display */
2227 cx->blk_oldsp = sp - PL_stack_base;
2228#endif
89ea2908 2229 }
3f63a782 2230 else {
d01136d6
BS
2231 cx->cx_type &= ~CXTYPEMASK;
2232 cx->cx_type |= CXt_LOOP_LAZYSV;
2233 /* Make sure that no-one re-orders cop.h and breaks our
2234 assumptions */
2235 assert(CxTYPE(cx) == CXt_LOOP_LAZYSV);
2236 cx->blk_loop.state_u.lazysv.cur = newSVsv(sv);
2237 cx->blk_loop.state_u.lazysv.end = right;
2238 SvREFCNT_inc(right);
2239 (void) SvPV_force_nolen(cx->blk_loop.state_u.lazysv.cur);
267cc4a8
NC
2240 /* This will do the upgrade to SVt_PV, and warn if the value
2241 is uninitialised. */
10516c54 2242 (void) SvPV_nolen_const(right);
267cc4a8
NC
2243 /* Doing this avoids a check every time in pp_iter in pp_hot.c
2244 to replace !SvOK() with a pointer to "". */
2245 if (!SvOK(right)) {
2246 SvREFCNT_dec(right);
d01136d6 2247 cx->blk_loop.state_u.lazysv.end = &PL_sv_no;
267cc4a8 2248 }
3f63a782 2249 }
89ea2908 2250 }
d01136d6 2251 else /* SvTYPE(maybe_ary) == SVt_PVAV */ {
502c6561 2252 cx->blk_loop.state_u.ary.ary = MUTABLE_AV(maybe_ary);
d01136d6
BS
2253 SvREFCNT_inc(maybe_ary);
2254 cx->blk_loop.state_u.ary.ix =
2255 (PL_op->op_private & OPpITER_REVERSED) ?
2256 AvFILL(cx->blk_loop.state_u.ary.ary) + 1 :
2257 -1;
ef3e5ea9 2258 }
89ea2908 2259 }
d01136d6
BS
2260 else { /* iterating over items on the stack */
2261 cx->blk_loop.state_u.ary.ary = NULL; /* means to use the stack */
ef3e5ea9 2262 if (PL_op->op_private & OPpITER_REVERSED) {
d01136d6 2263 cx->blk_loop.state_u.ary.ix = cx->blk_oldsp + 1;
ef3e5ea9
NC
2264 }
2265 else {
d01136d6 2266 cx->blk_loop.state_u.ary.ix = MARK - PL_stack_base;
ef3e5ea9 2267 }
4633a7c4 2268 }
a0d0e21e
LW
2269
2270 RETURN;
2271}
2272
2273PP(pp_enterloop)
2274{
27da23d5 2275 dVAR; dSP;
c09156bb 2276 register PERL_CONTEXT *cx;
f54cb97a 2277 const I32 gimme = GIMME_V;
a0d0e21e 2278
d343c3ef 2279 ENTER_with_name("loop1");
a0d0e21e 2280 SAVETMPS;
d343c3ef 2281 ENTER_with_name("loop2");
a0d0e21e 2282
3b719c58
NC
2283 PUSHBLOCK(cx, CXt_LOOP_PLAIN, SP);
2284 PUSHLOOP_PLAIN(cx, SP);
a0d0e21e
LW
2285
2286 RETURN;
2287}
2288
2289PP(pp_leaveloop)
2290{
27da23d5 2291 dVAR; dSP;
c09156bb 2292 register PERL_CONTEXT *cx;
a0d0e21e
LW
2293 I32 gimme;
2294 SV **newsp;
2295 PMOP *newpm;
2296 SV **mark;
2297
2298 POPBLOCK(cx,newpm);
3b719c58 2299 assert(CxTYPE_is_LOOP(cx));
4fdae800 2300 mark = newsp;
a8bba7fa 2301 newsp = PL_stack_base + cx->blk_loop.resetsp;
f86702cc 2302
a1f49e72 2303 TAINT_NOT;
b9d76716 2304 SP = adjust_stack_on_leave(newsp, SP, MARK, gimme, 0);
f86702cc 2305 PUTBACK;
2306
a8bba7fa 2307 POPLOOP(cx); /* Stack values are safe: release loop vars ... */
3280af22 2308 PL_curpm = newpm; /* ... and pop $1 et al */
f86702cc 2309
d343c3ef
GG
2310 LEAVE_with_name("loop2");
2311 LEAVE_with_name("loop1");
a0d0e21e 2312
f86702cc 2313 return NORMAL;
a0d0e21e
LW
2314}
2315
3bdf583b
FC
2316STATIC void
2317S_return_lvalues(pTHX_ SV **mark, SV **sp, SV **newsp, I32 gimme,
d25b0d7b 2318 PERL_CONTEXT *cx, PMOP *newpm)
3bdf583b 2319{
80422e24 2320 const bool ref = !!(CxLVAL(cx) & OPpENTERSUB_INARGS);
3bdf583b 2321 if (gimme == G_SCALAR) {
d25b0d7b
FC
2322 if (CxLVAL(cx) && !ref) { /* Leave it as it is if we can. */
2323 SV *sv;
001de122 2324 const char *what = NULL;
d25b0d7b
FC
2325 if (MARK < SP) {
2326 assert(MARK+1 == SP);
2327 if ((SvPADTMP(TOPs) ||
2328 (SvFLAGS(TOPs) & (SVf_READONLY | SVf_FAKE))
2329 == SVf_READONLY
2330 ) &&
2331 !SvSMAGICAL(TOPs)) {
001de122 2332 what =
d25b0d7b 2333 SvREADONLY(TOPs) ? (TOPs == &PL_sv_undef) ? "undef"
001de122 2334 : "a readonly value" : "a temporary";
d25b0d7b 2335 }
001de122 2336 else goto copy_sv;
d25b0d7b
FC
2337 }
2338 else {
2339 /* sub:lvalue{} will take us here. */
001de122 2340 what = "undef";
d25b0d7b 2341 }
001de122
FC
2342 LEAVE;
2343 cxstack_ix--;
2344 POPSUB(cx,sv);
2345 PL_curpm = newpm;
2346 LEAVESUB(sv);
2347 Perl_croak(aTHX_
2348 "Can't return %s from lvalue subroutine", what
2349 );
d25b0d7b 2350 }
93905212 2351 if (MARK < SP) {
a5ad7a5a 2352 copy_sv:
3bdf583b
FC
2353 if (cx->blk_sub.cv && CvDEPTH(cx->blk_sub.cv) > 1) {
2354 *++newsp = SvREFCNT_inc(*SP);
2355 FREETMPS;
2356 sv_2mortal(*newsp);
2357 }
2358 else
e08be60b 2359 *++newsp =
e08be60b
FC
2360 !SvTEMP(*SP)
2361 ? sv_2mortal(SvREFCNT_inc_simple_NN(*SP))
2362 : *SP;
3bdf583b 2363 }
0d235c77
FC
2364 else {
2365 EXTEND(newsp,1);
3bdf583b 2366 *++newsp = &PL_sv_undef;
0d235c77 2367 }
0e9700df 2368 if (CxLVAL(cx) & OPpDEREF) {
767eda44
FC
2369 SvGETMAGIC(TOPs);
2370 if (!SvOK(TOPs)) {
0e9700df 2371 TOPs = vivify_ref(TOPs, CxLVAL(cx) & OPpDEREF);
767eda44
FC
2372 }
2373 }
3bdf583b
FC
2374 }
2375 else if (gimme == G_ARRAY) {
0e9700df 2376 assert (!(CxLVAL(cx) & OPpDEREF));
80422e24 2377 if (ref || !CxLVAL(cx))
e08be60b
FC
2378 while (++MARK <= SP)
2379 *++newsp =
2380 SvTEMP(*MARK)
2381 ? *MARK
80422e24
FC
2382 : ref && SvFLAGS(*MARK) & SVs_PADTMP
2383 ? sv_mortalcopy(*MARK)
2384 : sv_2mortal(SvREFCNT_inc_simple_NN(*MARK));
e08be60b 2385 else while (++MARK <= SP) {
d25b0d7b
FC
2386 if (*MARK != &PL_sv_undef
2387 && (SvPADTMP(*MARK)
2388 || (SvFLAGS(*MARK) & (SVf_READONLY|SVf_FAKE))
2389 == SVf_READONLY
2390 )
2391 ) {
2392 SV *sv;
2393 /* Might be flattened array after $#array = */
2394 PUTBACK;
2395 LEAVE;
2396 cxstack_ix--;
2397 POPSUB(cx,sv);
2398 PL_curpm = newpm;
2399 LEAVESUB(sv);
2400 Perl_croak(aTHX_
2401 "Can't return a %s from lvalue subroutine",
2402 SvREADONLY(TOPs) ? "readonly value" : "temporary");
2403 }
2404 else
4bee03f8
FC
2405 *++newsp =
2406 SvTEMP(*MARK)
2407 ? *MARK
2408 : sv_2mortal(SvREFCNT_inc_simple_NN(*MARK));
3bdf583b
FC
2409 }
2410 }
2411 PL_stack_sp = newsp;
2412}
2413
a0d0e21e
LW
2414PP(pp_return)
2415{
27da23d5 2416 dVAR; dSP; dMARK;
c09156bb 2417 register PERL_CONTEXT *cx;
f86702cc 2418 bool popsub2 = FALSE;
b45de488 2419 bool clear_errsv = FALSE;
fa1e92c4 2420 bool lval = FALSE;
a0d0e21e
LW
2421 I32 gimme;
2422 SV **newsp;
2423 PMOP *newpm;
2424 I32 optype = 0;
b6494f15 2425 SV *namesv;
b0d9ce38 2426 SV *sv;
b263a1ad 2427 OP *retop = NULL;
a0d0e21e 2428
0bd48802
AL
2429 const I32 cxix = dopoptosub(cxstack_ix);
2430
9850bf21
RH
2431 if (cxix < 0) {
2432 if (CxMULTICALL(cxstack)) { /* In this case we must be in a
2433 * sort block, which is a CXt_NULL
2434 * not a CXt_SUB */
2435 dounwind(0);
d7507f74
RH
2436 PL_stack_base[1] = *PL_stack_sp;
2437 PL_stack_sp = PL_stack_base + 1;
a0d0e21e
LW
2438 return 0;
2439 }
9850bf21
RH
2440 else
2441 DIE(aTHX_ "Can't return outside a subroutine");
a0d0e21e 2442 }
a0d0e21e
LW
2443 if (cxix < cxstack_ix)
2444 dounwind(cxix);
2445
d7507f74
RH
2446 if (CxMULTICALL(&cxstack[cxix])) {
2447 gimme = cxstack[cxix].blk_gimme;
2448 if (gimme == G_VOID)
2449 PL_stack_sp = PL_stack_base;
2450 else if (gimme == G_SCALAR) {
2451 PL_stack_base[1] = *PL_stack_sp;
2452 PL_stack_sp = PL_stack_base + 1;
2453 }
9850bf21 2454 return 0;
d7507f74 2455 }
9850bf21 2456
a0d0e21e 2457 POPBLOCK(cx,newpm);
6b35e009 2458 switch (CxTYPE(cx)) {
a0d0e21e 2459 case CXt_SUB:
f86702cc 2460 popsub2 = TRUE;
fa1e92c4 2461 lval = !!CvLVALUE(cx->blk_sub.cv);
f39bc417 2462 retop = cx->blk_sub.retop;
5dd42e15 2463 cxstack_ix++; /* preserve cx entry on stack for use by POPSUB */
a0d0e21e
LW
2464 break;
2465 case CXt_EVAL:
b45de488
GS
2466 if (!(PL_in_eval & EVAL_KEEPERR))
2467 clear_errsv = TRUE;
a0d0e21e 2468 POPEVAL(cx);
b6494f15 2469 namesv = cx->blk_eval.old_namesv;
f39bc417 2470 retop = cx->blk_eval.retop;
1d76a5c3
GS
2471 if (CxTRYBLOCK(cx))
2472 break;
748a9306
LW
2473 if (optype == OP_REQUIRE &&
2474 (MARK == SP || (gimme == G_SCALAR && !SvTRUE(*SP))) )
2475 {
54310121 2476 /* Unassume the success we assumed earlier. */
b6494f15 2477 (void)hv_delete(GvHVn(PL_incgv),
ecad31f0 2478 SvPVX_const(namesv),
c60dbbc3 2479 SvUTF8(namesv) ? -(I32)SvCUR(namesv) : (I32)SvCUR(namesv),
b6494f15
VP
2480 G_DISCARD);
2481 DIE(aTHX_ "%"SVf" did not return a true value", SVfARG(namesv));
748a9306 2482 }
a0d0e21e 2483 break;
7766f137
GS
2484 case CXt_FORMAT:
2485 POPFORMAT(cx);
f39bc417 2486 retop = cx->blk_sub.retop;
7766f137 2487 break;
a0d0e21e 2488 default:
cea2e8a9 2489 DIE(aTHX_ "panic: return");
a0d0e21e
LW
2490 }
2491
a1f49e72 2492 TAINT_NOT;
d25b0d7b 2493 if (lval) S_return_lvalues(aTHX_ MARK, SP, newsp, gimme, cx, newpm);
3bdf583b
FC
2494 else {
2495 if (gimme == G_SCALAR) {
a29cdaf0
IZ
2496 if (MARK < SP) {
2497 if (popsub2) {
a8bba7fa 2498 if (cx->blk_sub.cv && CvDEPTH(cx->blk_sub.cv) > 1) {
3ed94dc0 2499 if (SvTEMP(TOPs) && SvREFCNT(TOPs) == 1) {
a29cdaf0
IZ
2500 *++newsp = SvREFCNT_inc(*SP);
2501 FREETMPS;
2502 sv_2mortal(*newsp);
959e3673
GS
2503 }
2504 else {
2505 sv = SvREFCNT_inc(*SP); /* FREETMPS could clobber it */
a29cdaf0 2506 FREETMPS;
959e3673
GS
2507 *++newsp = sv_mortalcopy(sv);
2508 SvREFCNT_dec(sv);
a29cdaf0 2509 }
959e3673 2510 }
3ed94dc0 2511 else if (SvTEMP(*SP) && SvREFCNT(*SP) == 1) {
767eda44 2512 *++newsp = *SP;
767eda44 2513 }
959e3673 2514 else
767eda44 2515 *++newsp = sv_mortalcopy(*SP);
959e3673
GS
2516 }
2517 else
a29cdaf0 2518 *++newsp = sv_mortalcopy(*SP);
959e3673
GS
2519 }
2520 else
3280af22 2521 *++newsp = &PL_sv_undef;
3bdf583b
FC
2522 }
2523 else if (gimme == G_ARRAY) {
a1f49e72 2524 while (++MARK <= SP) {
3ed94dc0 2525 *++newsp = popsub2 && SvTEMP(*MARK) && SvREFCNT(*MARK) == 1
f86702cc 2526 ? *MARK : sv_mortalcopy(*MARK);
a1f49e72
CS
2527 TAINT_NOT; /* Each item is independent */
2528 }
3bdf583b
FC
2529 }
2530 PL_stack_sp = newsp;
a0d0e21e 2531 }
a0d0e21e 2532
5dd42e15 2533 LEAVE;
f86702cc 2534 /* Stack values are safe: */
2535 if (popsub2) {
5dd42e15 2536 cxstack_ix--;
b0d9ce38 2537 POPSUB(cx,sv); /* release CV and @_ ... */
f86702cc 2538 }
b0d9ce38 2539 else
c445ea15 2540 sv = NULL;
3280af22 2541 PL_curpm = newpm; /* ... and pop $1 et al */
f86702cc 2542
b0d9ce38 2543 LEAVESUB(sv);
8433848b 2544 if (clear_errsv) {
ab69dbc2 2545 CLEAR_ERRSV();
8433848b 2546 }
f39bc417 2547 return retop;
a0d0e21e
LW
2548}
2549
4f443c3d
FC
2550/* This duplicates parts of pp_leavesub, so that it can share code with
2551 * pp_return */
2552PP(pp_leavesublv)
2553{
2554 dVAR; dSP;
4f443c3d
FC
2555 SV **newsp;
2556 PMOP *newpm;
2557 I32 gimme;
2558 register PERL_CONTEXT *cx;
2559 SV *sv;
2560
2561 if (CxMULTICALL(&cxstack[cxstack_ix]))
2562 return 0;
2563
2564 POPBLOCK(cx,newpm);
2565 cxstack_ix++; /* temporarily protect top context */
4f443c3d
FC
2566
2567 TAINT_NOT;
2568
0d235c77 2569 S_return_lvalues(aTHX_ newsp, SP, newsp, gimme, cx, newpm);
4f443c3d
FC
2570
2571 LEAVE;
2572 cxstack_ix--;
2573 POPSUB(cx,sv); /* Stack values are safe: release CV and @_ ... */
2574 PL_curpm = newpm; /* ... and pop $1 et al */
2575
2576 LEAVESUB(sv);
2577 return cx->blk_sub.retop;
2578}
2579
a0d0e21e
LW
2580PP(pp_last)
2581{
27da23d5 2582 dVAR; dSP;
a0d0e21e 2583 I32 cxix;
c09156bb 2584 register PERL_CONTEXT *cx;
f86702cc 2585 I32 pop2 = 0;
a0d0e21e 2586 I32 gimme;
8772537c 2587 I32 optype;
b263a1ad 2588 OP *nextop = NULL;
a0d0e21e
LW
2589 SV **newsp;
2590 PMOP *newpm;
a8bba7fa 2591 SV **mark;
c445ea15 2592 SV *sv = NULL;
9d4ba2ae 2593
a0d0e21e 2594
533c011a 2595 if (PL_op->op_flags & OPf_SPECIAL) {
a0d0e21e
LW
2596 cxix = dopoptoloop(cxstack_ix);
2597 if (cxix < 0)
a651a37d 2598 DIE(aTHX_ "Can't \"last\" outside a loop block");
a0d0e21e
LW
2599 }
2600 else {
2601 cxix = dopoptolabel(cPVOP->op_pv);
2602 if (cxix < 0)
cea2e8a9 2603 DIE(aTHX_ "Label not found for \"last %s\"", cPVOP->op_pv);
a0d0e21e
LW
2604 }
2605 if (cxix < cxstack_ix)
2606 dounwind(cxix);
2607
2608 POPBLOCK(cx,newpm);
5dd42e15 2609 cxstack_ix++; /* temporarily protect top context */
a8bba7fa 2610 mark = newsp;
6b35e009 2611 switch (CxTYPE(cx)) {
c6fdafd0 2612 case CXt_LOOP_LAZYIV:
d01136d6 2613 case CXt_LOOP_LAZYSV:
3b719c58
NC
2614 case CXt_LOOP_FOR:
2615 case CXt_LOOP_PLAIN:
2616 pop2 = CxTYPE(cx);
a8bba7fa 2617 newsp = PL_stack_base + cx->blk_loop.resetsp;
022eaa24 2618 nextop = cx->blk_loop.my_op->op_lastop->op_next;
a0d0e21e 2619 break;
f86702cc 2620 case CXt_SUB:
f86702cc 2621 pop2 = CXt_SUB;
f39bc417 2622 nextop = cx->blk_sub.retop;
a0d0e21e 2623 break;
f86702cc 2624 case CXt_EVAL:
2625 POPEVAL(cx);
f39bc417 2626 nextop = cx->blk_eval.retop;
a0d0e21e 2627 break;
7766f137
GS
2628 case CXt_FORMAT:
2629 POPFORMAT(cx);
f39bc417 2630 nextop = cx->blk_sub.retop;
7766f137 2631 break;
a0d0e21e 2632 default:
cea2e8a9 2633 DIE(aTHX_ "panic: last");
a0d0e21e
LW
2634 }
2635
a1f49e72 2636 TAINT_NOT;
b9d76716
VP
2637 SP = adjust_stack_on_leave(newsp, SP, MARK, gimme,
2638 pop2 == CXt_SUB ? SVs_TEMP : 0);
f86702cc 2639 PUTBACK;
2640
5dd42e15
DM
2641 LEAVE;
2642 cxstack_ix--;
f86702cc 2643 /* Stack values are safe: */
2644 switch (pop2) {
c6fdafd0 2645 case CXt_LOOP_LAZYIV:
3b719c58 2646 case CXt_LOOP_PLAIN:
d01136d6 2647 case CXt_LOOP_LAZYSV:
3b719c58 2648 case CXt_LOOP_FOR:
a8bba7fa 2649 POPLOOP(cx); /* release loop vars ... */
4fdae800 2650 LEAVE;
f86702cc 2651 break;
2652 case CXt_SUB:
b0d9ce38 2653 POPSUB(cx,sv); /* release CV and @_ ... */
f86702cc 2654 break;
a0d0e21e 2655 }
3280af22 2656 PL_curpm = newpm; /* ... and pop $1 et al */
a0d0e21e 2657
b0d9ce38 2658 LEAVESUB(sv);
9d4ba2ae
AL
2659 PERL_UNUSED_VAR(optype);
2660 PERL_UNUSED_VAR(gimme);
f86702cc 2661 return nextop;
a0d0e21e
LW
2662}
2663
2664PP(pp_next)
2665{
27da23d5 2666 dVAR;
a0d0e21e 2667 I32 cxix;
c09156bb 2668 register PERL_CONTEXT *cx;
85538317 2669 I32 inner;
a0d0e21e 2670
533c011a 2671 if (PL_op->op_flags & OPf_SPECIAL) {
a0d0e21e
LW
2672 cxix = dopoptoloop(cxstack_ix);
2673 if (cxix < 0)
a651a37d 2674 DIE(aTHX_ "Can't \"next\" outside a loop block");
a0d0e21e
LW
2675 }
2676 else {
2677 cxix = dopoptolabel(cPVOP->op_pv);
2678 if (cxix < 0)
cea2e8a9 2679 DIE(aTHX_ "Label not found for \"next %s\"", cPVOP->op_pv);
a0d0e21e
LW
2680 }
2681 if (cxix < cxstack_ix)
2682 dounwind(cxix);
2683
85538317
GS
2684 /* clear off anything above the scope we're re-entering, but
2685 * save the rest until after a possible continue block */
2686 inner = PL_scopestack_ix;
1ba6ee2b 2687 TOPBLOCK(cx);
85538317
GS
2688 if (PL_scopestack_ix < inner)
2689 leave_scope(PL_scopestack[PL_scopestack_ix]);
3a1b2b9e 2690 PL_curcop = cx->blk_oldcop;
d57ce4df 2691 return (cx)->blk_loop.my_op->op_nextop;
a0d0e21e
LW
2692}
2693
2694PP(pp_redo)
2695{
27da23d5 2696 dVAR;
a0d0e21e 2697 I32 cxix;
c09156bb 2698 register PERL_CONTEXT *cx;
a0d0e21e 2699 I32 oldsave;
a034e688 2700 OP* redo_op;
a0d0e21e 2701
533c011a 2702 if (PL_op->op_flags & OPf_SPECIAL) {
a0d0e21e
LW
2703 cxix = dopoptoloop(cxstack_ix);
2704 if (cxix < 0)
a651a37d 2705 DIE(aTHX_ "Can't \"redo\" outside a loop block");
a0d0e21e
LW
2706 }
2707 else {
2708 cxix = dopoptolabel(cPVOP->op_pv);
2709 if (cxix < 0)
cea2e8a9 2710 DIE(aTHX_ "Label not found for \"redo %s\"", cPVOP->op_pv);
a0d0e21e
LW
2711 }
2712 if (cxix < cxstack_ix)
2713 dounwind(cxix);
2714
022eaa24 2715 redo_op = cxstack[cxix].blk_loop.my_op->op_redoop;
a034e688
DM
2716 if (redo_op->op_type == OP_ENTER) {
2717 /* pop one less context to avoid $x being freed in while (my $x..) */
2718 cxstack_ix++;
2719 assert(CxTYPE(&cxstack[cxstack_ix]) == CXt_BLOCK);
2720 redo_op = redo_op->op_next;
2721 }
2722
a0d0e21e 2723 TOPBLOCK(cx);
3280af22 2724 oldsave = PL_scopestack[PL_scopestack_ix - 1];
a0d0e21e 2725 LEAVE_SCOPE(oldsave);
936c78b5 2726 FREETMPS;
3a1b2b9e 2727 PL_curcop = cx->blk_oldcop;
a034e688 2728 return redo_op;
a0d0e21e
LW
2729}
2730
0824fdcb 2731STATIC OP *
bfed75c6 2732S_dofindlabel(pTHX_ OP *o, const char *label, OP **opstack, OP **oplimit)
a0d0e21e 2733{
97aff369 2734 dVAR;
a0d0e21e 2735 OP **ops = opstack;
bfed75c6 2736 static const char too_deep[] = "Target of goto is too deeply nested";
a0d0e21e 2737
7918f24d
NC
2738 PERL_ARGS_ASSERT_DOFINDLABEL;
2739
fc36a67e 2740 if (ops >= oplimit)
cea2e8a9 2741 Perl_croak(aTHX_ too_deep);
11343788
MB
2742 if (o->op_type == OP_LEAVE ||
2743 o->op_type == OP_SCOPE ||
2744 o->op_type == OP_LEAVELOOP ||
33d34e4c 2745 o->op_type == OP_LEAVESUB ||
11343788 2746 o->op_type == OP_LEAVETRY)
fc36a67e 2747 {
5dc0d613 2748 *ops++ = cUNOPo->op_first;
fc36a67e 2749 if (ops >= oplimit)
cea2e8a9 2750 Perl_croak(aTHX_ too_deep);
fc36a67e 2751 }
c4aa4e48 2752 *ops = 0;
11343788 2753 if (o->op_flags & OPf_KIDS) {
aec46f14 2754 OP *kid;
a0d0e21e 2755 /* First try all the kids at this level, since that's likeliest. */
11343788 2756 for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) {
7e8f1eac
AD
2757 if (kid->op_type == OP_NEXTSTATE || kid->op_type == OP_DBSTATE) {
2758 const char *kid_label = CopLABEL(kCOP);
2759 if (kid_label && strEQ(kid_label, label))
2760 return kid;
2761 }
a0d0e21e 2762 }
11343788 2763 for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) {
3280af22 2764 if (kid == PL_lastgotoprobe)
a0d0e21e 2765 continue;
ed8d0fe2
SM
2766 if (kid->op_type == OP_NEXTSTATE || kid->op_type == OP_DBSTATE) {
2767 if (ops == opstack)
2768 *ops++ = kid;
2769 else if (ops[-1]->op_type == OP_NEXTSTATE ||
2770 ops[-1]->op_type == OP_DBSTATE)
2771 ops[-1] = kid;
2772 else
2773 *ops++ = kid;
2774 }
155aba94 2775 if ((o = dofindlabel(kid, label, ops, oplimit)))
11343788 2776 return o;
a0d0e21e
LW
2777 }
2778 }
c4aa4e48 2779 *ops = 0;
a0d0e21e
LW
2780 return 0;
2781}
2782
a0d0e21e
LW
2783PP(pp_goto)
2784{
27da23d5 2785 dVAR; dSP;
cbbf8932 2786 OP *retop = NULL;
a0d0e21e 2787 I32 ix;
c09156bb 2788 register PERL_CONTEXT *cx;
fc36a67e 2789#define GOTO_DEPTH 64
2790 OP *enterops[GOTO_DEPTH];
cbbf8932 2791 const char *label = NULL;
bfed75c6
AL
2792 const bool do_dump = (PL_op->op_type == OP_DUMP);
2793 static const char must_have_label[] = "goto must have label";
a0d0e21e 2794
533c011a 2795 if (PL_op->op_flags & OPf_STACKED) {
9d4ba2ae 2796 SV * const sv = POPs;
a0d0e21e
LW
2797
2798 /* This egregious kludge implements goto &subroutine */
2799 if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVCV) {
2800 I32 cxix;
c09156bb 2801 register PERL_CONTEXT *cx;
ea726b52 2802 CV *cv = MUTABLE_CV(SvRV(sv));
a0d0e21e
LW
2803 SV** mark;
2804 I32 items = 0;
2805 I32 oldsave;
b1464ded 2806 bool reified = 0;
a0d0e21e 2807
e8f7dd13 2808 retry:
4aa0a1f7 2809 if (!CvROOT(cv) && !CvXSUB(cv)) {
7fc63493 2810 const GV * const gv = CvGV(cv);
e8f7dd13 2811 if (gv) {
7fc63493 2812 GV *autogv;
e8f7dd13
GS
2813 SV *tmpstr;
2814 /* autoloaded stub? */
2815 if (cv != GvCV(gv) && (cv = GvCV(gv)))
2816 goto retry;
c271df94
BF
2817 autogv = gv_autoload_pvn(GvSTASH(gv), GvNAME(gv),
2818 GvNAMELEN(gv),
2819 GvNAMEUTF8(gv) ? SVf_UTF8 : 0);
e8f7dd13
GS
2820 if (autogv && (cv = GvCV(autogv)))
2821 goto retry;
2822 tmpstr = sv_newmortal();
c445ea15 2823 gv_efullname3(tmpstr, gv, NULL);
be2597df 2824 DIE(aTHX_ "Goto undefined subroutine &%"SVf"", SVfARG(tmpstr));
4aa0a1f7 2825 }
cea2e8a9 2826 DIE(aTHX_ "Goto undefined subroutine");
4aa0a1f7
AD
2827 }
2828
a0d0e21e 2829 /* First do some returnish stuff. */
b37c2d43 2830 SvREFCNT_inc_simple_void(cv); /* avoid premature free during unwind */
71fc2216 2831 FREETMPS;
a0d0e21e
LW
2832 cxix = dopoptosub(cxstack_ix);
2833 if (cxix < 0)
cea2e8a9 2834 DIE(aTHX_ "Can't goto subroutine outside a subroutine");
a0d0e21e
LW
2835 if (cxix < cxstack_ix)
2836 dounwind(cxix);
2837 TOPBLOCK(cx);
2d43a17f 2838 SPAGAIN;
564abe23 2839 /* ban goto in eval: see <20050521150056.GC20213@iabyn.com> */
2d43a17f 2840 if (CxTYPE(cx) == CXt_EVAL) {
c74ace89
DM
2841 if (CxREALEVAL(cx))
2842 DIE(aTHX_ "Can't goto subroutine from an eval-string");
2843 else
2844 DIE(aTHX_ "Can't goto subroutine from an eval-block");
2d43a17f 2845 }
9850bf21
RH
2846 else if (CxMULTICALL(cx))
2847 DIE(aTHX_ "Can't goto subroutine from a sort sub (or similar callback)");
bafb2adc 2848 if (CxTYPE(cx) == CXt_SUB && CxHASARGS(cx)) {
d8b46c1b 2849 /* put @_ back onto stack */
a0d0e21e 2850 AV* av = cx->blk_sub.argarray;
bfed75c6 2851
93965878 2852 items = AvFILLp(av) + 1;
a45cdc79
DM
2853 EXTEND(SP, items+1); /* @_ could have been extended. */
2854 Copy(AvARRAY(av), SP + 1, items, SV*);
3280af22
NIS
2855 SvREFCNT_dec(GvAV(PL_defgv));
2856 GvAV(PL_defgv) = cx->blk_sub.savearray;
b1464ded 2857 CLEAR_ARGARRAY(av);
d8b46c1b 2858 /* abandon @_ if it got reified */
62b1ebc2 2859 if (AvREAL(av)) {
b1464ded
DM
2860 reified = 1;
2861 SvREFCNT_dec(av);
d8b46c1b
GS
2862 av = newAV();
2863 av_extend(av, items-1);
11ca45c0 2864 AvREIFY_only(av);
ad64d0ec 2865 PAD_SVl(0) = MUTABLE_SV(cx->blk_sub.argarray = av);
62b1ebc2 2866 }
a0d0e21e 2867 }
aed2304a 2868 else if (CvISXSUB(cv)) { /* put GvAV(defgv) back onto stack */
890ce7af 2869 AV* const av = GvAV(PL_defgv);
1fa4e549 2870 items = AvFILLp(av) + 1;
a45cdc79
DM
2871 EXTEND(SP, items+1); /* @_ could have been extended. */
2872 Copy(AvARRAY(av), SP + 1, items, SV*);
1fa4e549 2873 }
a45cdc79
DM
2874 mark = SP;
2875 SP += items;
6b35e009 2876 if (CxTYPE(cx) == CXt_SUB &&
b150fb22 2877 !(CvDEPTH(cx->blk_sub.cv) = cx->blk_sub.olddepth))
a0d0e21e 2878 SvREFCNT_dec(cx->blk_sub.cv);
3280af22 2879 oldsave = PL_scopestack[PL_scopestack_ix - 1];
a0d0e21e
LW
2880 LEAVE_SCOPE(oldsave);
2881
2882 /* Now do some callish stuff. */
2883 SAVETMPS;
5023d17a 2884 SAVEFREESV(cv); /* later, undo the 'avoid premature free' hack */
aed2304a 2885 if (CvISXSUB(cv)) {
b37c2d43 2886 OP* const retop = cx->blk_sub.retop;
9d63fa07
KW
2887 SV **newsp PERL_UNUSED_DECL;
2888 I32 gimme PERL_UNUSED_DECL;
b1464ded
DM
2889 if (reified) {
2890 I32 index;
2891 for (index=0; index<items; index++)
2892 sv_2mortal(SP[-index]);
2893 }
1fa4e549 2894
b37c2d43
AL
2895 /* XS subs don't have a CxSUB, so pop it */
2896 POPBLOCK(cx, PL_curpm);
2897 /* Push a mark for the start of arglist */
2898 PUSHMARK(mark);
2899 PUTBACK;
2900 (void)(*CvXSUB(cv))(aTHX_ cv);
a57c6685 2901 LEAVE;
5eff7df7 2902 return retop;
a0d0e21e
LW
2903 }
2904 else {
b37c2d43 2905 AV* const padlist = CvPADLIST(cv);
6b35e009 2906 if (CxTYPE(cx) == CXt_EVAL) {
85a64632 2907 PL_in_eval = CxOLD_IN_EVAL(cx);
3280af22 2908 PL_eval_root = cx->blk_eval.old_eval_root;
b150fb22 2909 cx->cx_type = CXt_SUB;
b150fb22 2910 }
a0d0e21e 2911 cx->blk_sub.cv = cv;
1a5b3db4 2912 cx->blk_sub.olddepth = CvDEPTH(cv);
dd2155a4 2913
a0d0e21e
LW
2914 CvDEPTH(cv)++;
2915 if (CvDEPTH(cv) < 2)
74c765eb 2916 SvREFCNT_inc_simple_void_NN(cv);
dd2155a4 2917 else {
2b9dff67 2918 if (CvDEPTH(cv) == PERL_SUB_DEPTH_WARN && ckWARN(WARN_RECURSION))
44a8e56a 2919 sub_crush_depth(cv);
26019298 2920 pad_push(padlist, CvDEPTH(cv));
a0d0e21e 2921 }
426a09cd 2922 PL_curcop = cx->blk_oldcop;
fd617465
DM
2923 SAVECOMPPAD();
2924 PAD_SET_CUR_NOSAVE(padlist, CvDEPTH(cv));
bafb2adc 2925 if (CxHASARGS(cx))
6d4ff0d2 2926 {
502c6561 2927 AV *const av = MUTABLE_AV(PAD_SVl(0));
a0d0e21e 2928
3280af22 2929 cx->blk_sub.savearray = GvAV(PL_defgv);
502c6561 2930 GvAV(PL_defgv) = MUTABLE_AV(SvREFCNT_inc_simple(av));
dd2155a4 2931 CX_CURPAD_SAVE(cx->blk_sub);
6d4ff0d2 2932 cx->blk_sub.argarray = av;
a0d0e21e
LW
2933
2934 if (items >= AvMAX(av) + 1) {
b37c2d43 2935 SV **ary = AvALLOC(av);
a0d0e21e
LW
2936 if (AvARRAY(av) != ary) {
2937 AvMAX(av) += AvARRAY(av) - AvALLOC(av);
9c6bc640 2938 AvARRAY(av) = ary;
a0d0e21e
LW
2939 }
2940 if (items >= AvMAX(av) + 1) {
2941 AvMAX(av) = items - 1;
2942 Renew(ary,items+1,SV*);
2943 AvALLOC(av) = ary;
9c6bc640 2944 AvARRAY(av) = ary;
a0d0e21e
LW
2945 }
2946 }
a45cdc79 2947 ++mark;
a0d0e21e 2948 Copy(mark,AvARRAY(av),items,SV*);
93965878 2949 AvFILLp(av) = items - 1;
d8b46c1b 2950 assert(!AvREAL(av));
b1464ded
DM
2951 if (reified) {
2952 /* transfer 'ownership' of refcnts to new @_ */
2953 AvREAL_on(av);
2954 AvREIFY_off(av);
2955 }
a0d0e21e
LW
2956 while (items--) {
2957 if (*mark)
2958 SvTEMP_off(*mark);
2959 mark++;
2960 }
2961 }
491527d0 2962 if (PERLDB_SUB) { /* Checking curstash breaks DProf. */
005a8a35 2963 Perl_get_db_sub(aTHX_ NULL, cv);
b37c2d43 2964 if (PERLDB_GOTO) {
b96d8cd9 2965 CV * const gotocv = get_cvs("DB::goto", 0);
b37c2d43
AL
2966 if (gotocv) {
2967 PUSHMARK( PL_stack_sp );
ad64d0ec 2968 call_sv(MUTABLE_SV(gotocv), G_SCALAR | G_NODEBUG);
b37c2d43
AL
2969 PL_stack_sp--;
2970 }
491527d0 2971 }
1ce6579f 2972 }
a0d0e21e
LW
2973 RETURNOP(CvSTART(cv));
2974 }
2975 }
1614b0e3 2976 else {
0510663f 2977 label = SvPV_nolen_const(sv);
1614b0e3 2978 if (!(do_dump || *label))
cea2e8a9 2979 DIE(aTHX_ must_have_label);
1614b0e3 2980 }
a0d0e21e 2981 }
533c011a 2982 else if (PL_op->op_flags & OPf_SPECIAL) {
a0d0e21e 2983 if (! do_dump)
cea2e8a9 2984 DIE(aTHX_ must_have_label);
a0d0e21e
LW
2985 }
2986 else
2987 label = cPVOP->op_pv;
2988
f410a211
NC
2989 PERL_ASYNC_CHECK();
2990
a0d0e21e 2991 if (label && *label) {
cbbf8932 2992 OP *gotoprobe = NULL;
3b2447bc 2993 bool leaving_eval = FALSE;
33d34e4c 2994 bool in_block = FALSE;
cbbf8932 2995 PERL_CONTEXT *last_eval_cx = NULL;
a0d0e21e
LW
2996
2997 /* find label */
2998
d4c19fe8 2999 PL_lastgotoprobe = NULL;
a0d0e21e
LW
3000 *enterops = 0;
3001 for (ix = cxstack_ix; ix >= 0; ix--) {
3002 cx = &cxstack[ix];
6b35e009 3003 switch (CxTYPE(cx)) {
a0d0e21e 3004 case CXt_EVAL:
3b2447bc 3005 leaving_eval = TRUE;
971ecbe6 3006 if (!CxTRYBLOCK(cx)) {
a4f3a277
RH
3007 gotoprobe = (last_eval_cx ?
3008 last_eval_cx->blk_eval.old_eval_root :
3009 PL_eval_root);
3010 last_eval_cx = cx;
9c5794fe
RH
3011 break;
3012 }
3013 /* else fall through */
c6fdafd0 3014 case CXt_LOOP_LAZYIV:
d01136d6 3015 case CXt_LOOP_LAZYSV:
3b719c58
NC
3016 case CXt_LOOP_FOR:
3017 case CXt_LOOP_PLAIN:
bb5aedc1
VP
3018 case CXt_GIVEN:
3019 case CXt_WHEN:
a0d0e21e
LW
3020 gotoprobe = cx->blk_oldcop->op_sibling;
3021 break;
3022 case CXt_SUBST:
3023 continue;
3024 case CXt_BLOCK:
33d34e4c 3025 if (ix) {
a0d0e21e 3026 gotoprobe = cx->blk_oldcop->op_sibling;
33d34e4c
AE
3027 in_block = TRUE;
3028 } else
3280af22 3029 gotoprobe = PL_main_root;
a0d0e21e 3030 break;
b3933176 3031 case CXt_SUB:
9850bf21 3032 if (CvDEPTH(cx->blk_sub.cv) && !CxMULTICALL(cx)) {
b3933176
CS
3033 gotoprobe = CvROOT(cx->blk_sub.cv);
3034 break;
3035 }
3036 /* FALL THROUGH */
7766f137 3037 case CXt_FORMAT:
0a753a76 3038 case CXt_NULL:
a651a37d 3039 DIE(aTHX_ "Can't \"goto\" out of a pseudo block");
a0d0e21e
LW
3040 default:
3041 if (ix)
cea2e8a9 3042 DIE(aTHX_ "panic: goto");
3280af22 3043 gotoprobe = PL_main_root;
a0d0e21e
LW
3044 break;
3045 }
2b597662
GS
3046 if (gotoprobe) {
3047 retop = dofindlabel(gotoprobe, label,
3048 enterops, enterops + GOTO_DEPTH);
3049 if (retop)
3050 break;
eae48c89
Z
3051 if (gotoprobe->op_sibling &&
3052 gotoprobe->op_sibling->op_type == OP_UNSTACK &&
3053 gotoprobe->op_sibling->op_sibling) {
3054 retop = dofindlabel(gotoprobe->op_sibling->op_sibling,
3055 label, enterops, enterops + GOTO_DEPTH);
3056 if (retop)
3057 break;
3058 }
2b597662 3059 }
3280af22 3060 PL_lastgotoprobe = gotoprobe;
a0d0e21e
LW
3061 }
3062 if (!retop)
cea2e8a9 3063 DIE(aTHX_ "Can't find label %s", label);
a0d0e21e 3064
3b2447bc
RH
3065 /* if we're leaving an eval, check before we pop any frames
3066 that we're not going to punt, otherwise the error
3067 won't be caught */
3068
3069 if (leaving_eval && *enterops && enterops[1]) {
3070 I32 i;
3071 for (i = 1; enterops[i]; i++)
3072 if (enterops[i]->op_type == OP_ENTERITER)
3073 DIE(aTHX_ "Can't \"goto\" into the middle of a foreach loop");
3074 }
3075
b500e03b
GG
3076 if (*enterops && enterops[1]) {
3077 I32 i = enterops[1]->op_type == OP_ENTER && in_block ? 2 : 1;
3078 if (enterops[i])
3079 deprecate("\"goto\" to jump into a construct");
3080 }
3081
a0d0e21e
LW
3082 /* pop unwanted frames */
3083
3084 if (ix < cxstack_ix) {
3085 I32 oldsave;
3086
3087 if (ix < 0)
3088 ix = 0;
3089 dounwind(ix);
3090 TOPBLOCK(cx);
3280af22 3091 oldsave = PL_scopestack[PL_scopestack_ix];
a0d0e21e
LW
3092 LEAVE_SCOPE(oldsave);
3093 }
3094
3095 /* push wanted frames */
3096
748a9306 3097 if (*enterops && enterops[1]) {
0bd48802 3098 OP * const oldop = PL_op;
33d34e4c
AE
3099 ix = enterops[1]->op_type == OP_ENTER && in_block ? 2 : 1;
3100 for (; enterops[ix]; ix++) {
533c011a 3101 PL_op = enterops[ix];
84902520
TB
3102 /* Eventually we may want to stack the needed arguments
3103 * for each op. For now, we punt on the hard ones. */
533c011a 3104 if (PL_op->op_type == OP_ENTERITER)
894356b3 3105 DIE(aTHX_ "Can't \"goto\" into the middle of a foreach loop");
16c91539 3106 PL_op->op_ppaddr(aTHX);
a0d0e21e 3107 }
533c011a 3108 PL_op = oldop;
a0d0e21e
LW
3109 }
3110 }
3111
3112 if (do_dump) {
a5f75d66 3113#ifdef VMS
6b88bc9c 3114 if (!retop) retop = PL_main_start;
a5f75d66 3115#endif
3280af22
NIS
3116 PL_restartop = retop;
3117 PL_do_undump = TRUE;
a0d0e21e
LW
3118
3119 my_unexec();
3120
3280af22
NIS
3121 PL_restartop = 0; /* hmm, must be GNU unexec().. */
3122 PL_do_undump = FALSE;
a0d0e21e
LW
3123 }
3124
3125 RETURNOP(retop);
3126}
3127
3128PP(pp_exit)
3129{
97aff369 3130 dVAR;
39644a26 3131 dSP;
a0d0e21e
LW
3132 I32 anum;
3133
3134 if (MAXARG < 1)
3135 anum = 0;
9d3c658e
FC
3136 else if (!TOPs) {
3137 anum = 0; (void)POPs;
3138 }
ff0cee69 3139 else {
a0d0e21e 3140 anum = SvIVx(POPs);
d98f61e7
GS
3141#ifdef VMS
3142 if (anum == 1 && (PL_op->op_private & OPpEXIT_VMSISH))
ff0cee69 3143 anum = 0;
96e176bf 3144 VMSISH_HUSHED = VMSISH_HUSHED || (PL_op->op_private & OPpHUSH_VMSISH);
ff0cee69 3145#endif
3146 }
cc3604b1 3147 PL_exit_flags |= PERL_EXIT_EXPECTED;
81d86705
NC
3148#ifdef PERL_MAD
3149 /* KLUDGE: disable exit 0 in BEGIN blocks when we're just compiling */
3150 if (anum || !(PL_minus_c && PL_madskills))
3151 my_exit(anum);
3152#else
a0d0e21e 3153 my_exit(anum);
81d86705 3154#endif
3280af22 3155 PUSHs(&PL_sv_undef);
a0d0e21e
LW
3156 RETURN;
3157}
3158
a0d0e21e
LW
3159/* Eval. */
3160
0824fdcb 3161STATIC void
cea2e8a9 3162S_save_lines(pTHX_ AV *array, SV *sv)
a0d0e21e 3163{
504618e9 3164 const char *s = SvPVX_const(sv);
890ce7af 3165 const char * const send = SvPVX_const(sv) + SvCUR(sv);
504618e9 3166 I32 line = 1;
a0d0e21e 3167
7918f24d
NC
3168 PERL_ARGS_ASSERT_SAVE_LINES;
3169
a0d0e21e 3170 while (s && s < send) {
f54cb97a 3171 const char *t;
b9f83d2f 3172 SV * const tmpstr = newSV_type(SVt_PVMG);
a0d0e21e 3173
1d963ff3 3174 t = (const char *)memchr(s, '\n', send - s);
a0d0e21e
LW
3175 if (t)
3176 t++;
3177 else
3178 t = send;
3179
3180 sv_setpvn(tmpstr, s, t - s);
3181 av_store(array, line++, tmpstr);
3182 s = t;
3183 }
3184}
3185
22f16304
RU
3186/*
3187=for apidoc docatch
3188
3189Check for the cases 0 or 3 of cur_env.je_ret, only used inside an eval context.
3190
31910 is used as continue inside eval,
3192
31933 is used for a die caught by an inner eval - continue inner loop
3194
3195See cop.h: je_mustcatch, when set at any runlevel to TRUE, means eval ops must
3196establish a local jmpenv to handle exception traps.
3197
3198=cut
3199*/
0824fdcb 3200STATIC OP *
cea2e8a9 3201S_docatch(pTHX_ OP *o)
1e422769 3202{
97aff369 3203 dVAR;
6224f72b 3204 int ret;
06b5626a 3205 OP * const oldop = PL_op;
db36c5a1 3206 dJMPENV;
1e422769 3207
1e422769 3208#ifdef DEBUGGING
54310121 3209 assert(CATCH_GET == TRUE);
1e422769 3210#endif
312caa8e 3211 PL_op = o;
8bffa5f8 3212
14dd3ad8 3213 JMPENV_PUSH(ret);
6224f72b 3214 switch (ret) {
312caa8e 3215 case 0:
abd70938
DM
3216 assert(cxstack_ix >= 0);
3217 assert(CxTYPE(&cxstack[cxstack_ix]) == CXt_EVAL);
3218 cxstack[cxstack_ix].blk_eval.cur_top_env = PL_top_env;
14dd3ad8 3219 redo_body:
85aaa934 3220 CALLRUNOPS(aTHX);
312caa8e
CS
3221 break;
3222 case 3:
8bffa5f8 3223 /* die caught by an inner eval - continue inner loop */
febb3a6d
Z
3224 if (PL_restartop && PL_restartjmpenv == PL_top_env) {
3225 PL_restartjmpenv = NULL;
312caa8e
CS
3226 PL_op = PL_restartop;
3227 PL_restartop = 0;
3228 goto redo_body;
3229 }
3230 /* FALL THROUGH */
3231 default:
14dd3ad8 3232 JMPENV_POP;
533c011a 3233 PL_op = oldop;
6224f72b 3234 JMPENV_JUMP(ret);
1e422769 3235 /* NOTREACHED */
1e422769 3236 }
14dd3ad8 3237 JMPENV_POP;
533c011a 3238 PL_op = oldop;
5f66b61c 3239 return NULL;
1e422769 3240}
3241
ee23ad3b
NC
3242/* James Bond: Do you expect me to talk?
3243 Auric Goldfinger: No, Mr. Bond. I expect you to die.
3244
3245 This code is an ugly hack, doesn't work with lexicals in subroutines that are
3246 called more than once, and is only used by regcomp.c, for (?{}) blocks.
3247
3248 Currently it is not used outside the core code. Best if it stays that way.
d59a8b3e
NC
3249
3250 Hence it's now deprecated, and will be removed.
ee23ad3b 3251*/
c277df42 3252OP *
bfed75c6 3253Perl_sv_compile_2op(pTHX_ SV *sv, OP** startop, const char *code, PAD** padp)
c277df42
IZ
3254/* sv Text to convert to OP tree. */
3255/* startop op_free() this to undo. */
3256/* code Short string id of the caller. */
3257{
d59a8b3e
NC
3258 PERL_ARGS_ASSERT_SV_COMPILE_2OP;
3259 return Perl_sv_compile_2op_is_broken(aTHX_ sv, startop, code, padp);
3260}
3261
3262/* Don't use this. It will go away without warning once the regexp engine is
3263 refactored not to use it. */
3264OP *
3265Perl_sv_compile_2op_is_broken(pTHX_ SV *sv, OP **startop, const char *code,
3266 PAD **padp)
3267{
27da23d5 3268 dVAR; dSP; /* Make POPBLOCK work. */
c277df42
IZ
3269 PERL_CONTEXT *cx;
3270 SV **newsp;
b094c71d 3271 I32 gimme = G_VOID;
c277df42
IZ
3272 I32 optype;
3273 OP dummy;
83ee9e09
GS
3274 char tbuf[TYPE_DIGITS(long) + 12 + 10];
3275 char *tmpbuf = tbuf;
c277df42 3276 char *safestr;
a3985cdc 3277 int runtime;
601f1833 3278 CV* runcv = NULL; /* initialise to avoid compiler warnings */
f7997f86 3279 STRLEN len;
634d6919 3280 bool need_catch;
c277df42 3281
d59a8b3e 3282 PERL_ARGS_ASSERT_SV_COMPILE_2OP_IS_BROKEN;
7918f24d 3283
d343c3ef 3284 ENTER_with_name("eval");
27fcb6ee 3285 lex_start(sv, NULL, LEX_START_SAME_FILTER);
c277df42
IZ
3286 SAVETMPS;
3287 /* switch to eval mode */
3288
923e4eb5 3289 if (IN_PERL_COMPILETIME) {
f4dd75d9 3290 SAVECOPSTASH_FREE(&PL_compiling);
11faa288 3291 CopSTASH_set(&PL_compiling, PL_curstash);
cbce877f 3292 }
83ee9e09 3293 if (PERLDB_NAMEEVAL && CopLINE(PL_curcop)) {
9d4ba2ae 3294 SV * const sv = sv_newmortal();
83ee9e09
GS
3295 Perl_sv_setpvf(aTHX_ sv, "_<(%.10seval %lu)[%s:%"IVdf"]",
3296 code, (unsigned long)++PL_evalseq,
3297 CopFILE(PL_curcop), (IV)CopLINE(PL_curcop));
3298 tmpbuf = SvPVX(sv);
fc009855 3299 len = SvCUR(sv);
83ee9e09
GS
3300 }
3301 else
d9fad198
JH
3302 len = my_snprintf(tmpbuf, sizeof(tbuf), "_<(%.10s_eval %lu)", code,
3303 (unsigned long)++PL_evalseq);
f4dd75d9 3304 SAVECOPFILE_FREE(&PL_compiling);
57843af0 3305 CopFILE_set(&PL_compiling, tmpbuf+2);
f4dd75d9 3306 SAVECOPLINE(&PL_compiling);
57843af0 3307 CopLINE_set(&PL_compiling, 1);
c277df42
IZ
3308 /* XXX For C<eval "...">s within BEGIN {} blocks, this ends up
3309 deleting the eval's FILEGV from the stash before gv_check() runs
3310 (i.e. before run-time proper). To work around the coredump that
3311 ensues, we always turn GvMULTI_on for any globals that were
3312 introduced within evals. See force_ident(). GSAR 96-10-12 */
f7997f86
NC
3313 safestr = savepvn(tmpbuf, len);
3314 SAVEDELETE(PL_defstash, safestr, len);
b3ac6de7 3315 SAVEHINTS();
d1ca3daa 3316#ifdef OP_IN_REGISTER
6b88bc9c 3317 PL_opsave = op;
d1ca3daa 3318#else
7766f137 3319 SAVEVPTR(PL_op);
d1ca3daa 3320#endif
c277df42 3321
a3985cdc 3322 /* we get here either during compilation, or via pp_regcomp at runtime */
923e4eb5 3323 runtime = IN_PERL_RUNTIME;
a3985cdc 3324 if (runtime)
558b4424 3325 {
d819b83a 3326 runcv = find_runcv(NULL);
a3985cdc 3327
558b4424
FC
3328 /* At run time, we have to fetch the hints from PL_curcop. */
3329 PL_hints = PL_curcop->cop_hints;
3330 if (PL_hints & HINT_LOCALIZE_HH) {
3331 /* SAVEHINTS created a new HV in PL_hintgv, which we
3332 need to GC */
3333 SvREFCNT_dec(GvHV(PL_hintgv));
3334 GvHV(PL_hintgv) =
3335 refcounted_he_chain_2hv(PL_curcop->cop_hints_hash, 0);
3336 hv_magic(GvHV(PL_hintgv), NULL, PERL_MAGIC_hints);
3337 }
3338 SAVECOMPILEWARNINGS();
3339 PL_compiling.cop_warnings = DUP_WARNINGS(PL_curcop->cop_warnings);
3340 cophh_free(CopHINTHASH_get(&PL_compiling));
3341 /* XXX Does this need to avoid copying a label? */
3342 PL_compiling.cop_hints_hash
3343 = cophh_copy(PL_curcop->cop_hints_hash);
3344 }
3345
533c011a 3346 PL_op = &dummy;
13b51b79 3347 PL_op->op_type = OP_ENTEREVAL;
533c011a 3348 PL_op->op_flags = 0; /* Avoid uninit warning. */
923e4eb5 3349 PUSHBLOCK(cx, CXt_EVAL|(IN_PERL_COMPILETIME ? 0 : CXp_REAL), SP);
6b75f042 3350 PUSHEVAL(cx, 0);
634d6919
GG
3351 need_catch = CATCH_GET;
3352 CATCH_SET(TRUE);
a3985cdc
DM
3353
3354 if (runtime)
f45b078d 3355 (void) doeval(G_SCALAR, startop, runcv, PL_curcop->cop_seq, NULL);
a3985cdc 3356 else
f45b078d 3357 (void) doeval(G_SCALAR, startop, PL_compcv, PL_cop_seqmax, NULL);
634d6919 3358 CATCH_SET(need_catch);
13b51b79 3359 POPBLOCK(cx,PL_curpm);
e84b9f1f 3360 POPEVAL(cx);
c277df42
IZ
3361
3362 (*startop)->op_type = OP_NULL;
22c35a8c 3363 (*startop)->op_ppaddr = PL_ppaddr[OP_NULL];
f3548bdc 3364 /* XXX DAPM do this properly one year */
502c6561 3365 *padp = MUTABLE_AV(SvREFCNT_inc_simple(PL_comppad));
d343c3ef 3366 LEAVE_with_name("eval");
923e4eb5 3367 if (IN_PERL_COMPILETIME)
623e6609 3368 CopHINTS_set(&PL_compiling, PL_hints);
d1ca3daa 3369#ifdef OP_IN_REGISTER
6b88bc9c 3370 op = PL_opsave;
d1ca3daa 3371#endif
9d4ba2ae
AL
3372 PERL_UNUSED_VAR(newsp);
3373 PERL_UNUSED_VAR(optype);
3374
410be5db 3375 return PL_eval_start;
c277df42
IZ
3376}
3377
a3985cdc
DM
3378
3379/*
3380=for apidoc find_runcv
3381
3382Locate the CV corresponding to the currently executing sub or eval.
d819b83a
DM
3383If db_seqp is non_null, skip CVs that are in the DB package and populate
3384*db_seqp with the cop sequence number at the point that the DB:: code was
3385entered. (allows debuggers to eval in the scope of the breakpoint rather
cf525c36 3386than in the scope of the debugger itself).
a3985cdc
DM
3387
3388=cut
3389*/
3390
3391CV*
d819b83a 3392Perl_find_runcv(pTHX_ U32 *db_seqp)
a3985cdc 3393{
97aff369 3394 dVAR;
a3985cdc 3395 PERL_SI *si;
a3985cdc 3396
d819b83a
DM
3397 if (db_seqp)
3398 *db_seqp = PL_curcop->cop_seq;
a3985cdc 3399 for (si = PL_curstackinfo; si; si = si->si_prev) {
06b5626a 3400 I32 ix;
a3985cdc 3401 for (ix = si->si_cxix; ix >= 0; ix--) {
06b5626a 3402 const PERL_CONTEXT *cx = &(si->si_cxstack[ix]);
d819b83a 3403 if (CxTYPE(cx) == CXt_SUB || CxTYPE(cx) == CXt_FORMAT) {
1b6737cc 3404 CV * const cv = cx->blk_sub.cv;
d819b83a
DM
3405 /* skip DB:: code */
3406 if (db_seqp && PL_debstash && CvSTASH(cv) == PL_debstash) {
3407 *db_seqp = cx->blk_oldcop->cop_seq;
3408 continue;
3409 }
3410 return cv;
3411 }
a3985cdc 3412 else if (CxTYPE(cx) == CXt_EVAL && !CxTRYBLOCK(cx))
676a678a 3413 return cx->blk_eval.cv;
a3985cdc
DM
3414 }
3415 }
3416 return PL_main_cv;
3417}
3418
3419
27e90453
DM
3420/* Run yyparse() in a setjmp wrapper. Returns:
3421 * 0: yyparse() successful
3422 * 1: yyparse() failed
3423 * 3: yyparse() died
3424 */
3425STATIC int
28ac2b49 3426S_try_yyparse(pTHX_ int gramtype)
27e90453
DM
3427{
3428 int ret;
3429 dJMPENV;
3430
3431 assert(CxTYPE(&cxstack[cxstack_ix]) == CXt_EVAL);
3432 JMPENV_PUSH(ret);
3433 switch (ret) {
3434 case 0:
28ac2b49 3435 ret = yyparse(gramtype) ? 1 : 0;
27e90453
DM
3436 break;
3437 case 3:
3438 break;
3439 default:
3440 JMPENV_POP;
3441 JMPENV_JUMP(ret);
3442 /* NOTREACHED */
3443 }
3444 JMPENV_POP;
3445 return ret;
3446}
3447
3448
a3985cdc
DM
3449/* Compile a require/do, an eval '', or a /(?{...})/.
3450 * In the last case, startop is non-null, and contains the address of
3451 * a pointer that should be set to the just-compiled code.
3452 * outside is the lexically enclosing CV (if any) that invoked us.
410be5db
DM
3453 * Returns a bool indicating whether the compile was successful; if so,
3454 * PL_eval_start contains the first op of the compiled ocde; otherwise,
3455 * pushes undef (also croaks if startop != NULL).
a3985cdc
DM
3456 */
3457
7d116edc
FC
3458/* This function is called from three places, sv_compile_2op, pp_return
3459 * and pp_entereval. These can be distinguished as follows:
3460 * sv_compile_2op - startop is non-null
3461 * pp_require - startop is null; in_require is true
3462 * pp_entereval - stortop is null; in_require is false
3463 */
3464
410be5db 3465STATIC bool
f45b078d 3466S_doeval(pTHX_ int gimme, OP** startop, CV* outside, U32 seq, HV *hh)
a0d0e21e 3467{
27da23d5 3468 dVAR; dSP;
46c461b5 3469 OP * const saveop = PL_op;
f45b078d 3470 COP * const oldcurcop = PL_curcop;
27e90453
DM
3471 bool in_require = (saveop && saveop->op_type == OP_REQUIRE);
3472 int yystatus;
676a678a 3473 CV *evalcv;
a0d0e21e 3474
27e90453 3475 PL_in_eval = (in_require
6dc8a9e4
IZ
3476 ? (EVAL_INREQUIRE | (PL_in_eval & EVAL_INEVAL))
3477 : EVAL_INEVAL);
a0d0e21e 3478
1ce6579f 3479 PUSHMARK(SP);
3480
676a678a
Z
3481 evalcv = MUTABLE_CV(newSV_type(SVt_PVCV));
3482 CvEVAL_on(evalcv);
2090ab20 3483 assert(CxTYPE(&cxstack[cxstack_ix]) == CXt_EVAL);
676a678a 3484 cxstack[cxstack_ix].blk_eval.cv = evalcv;
86a64801 3485 cxstack[cxstack_ix].blk_gimme = gimme;
2090ab20 3486
676a678a
Z
3487 CvOUTSIDE_SEQ(evalcv) = seq;
3488 CvOUTSIDE(evalcv) = MUTABLE_CV(SvREFCNT_inc_simple(outside));
a3985cdc 3489
dd2155a4 3490 /* set up a scratch pad */
a0d0e21e 3491
676a678a 3492 CvPADLIST(evalcv) = pad_new(padnew_SAVE);
cecbe010 3493 PL_op = NULL; /* avoid PL_op and PL_curpad referring to different CVs */
2c05e328 3494
07055b4c 3495
81d86705 3496 if (!PL_madskills)
676a678a 3497 SAVEMORTALIZESV(evalcv); /* must remain until end of current statement */
748a9306 3498
a0d0e21e
LW
3499 /* make sure we compile in the right package */
3500
ed094faf 3501 if (CopSTASH_ne(PL_curcop, PL_curstash)) {
03d9f026
FC
3502 SAVEGENERICSV(PL_curstash);
3503 PL_curstash = (HV *)SvREFCNT_inc_simple(CopSTASH(PL_curcop));
a0d0e21e 3504 }
3c10abe3 3505 /* XXX:ajgo do we really need to alloc an AV for begin/checkunit */
3280af22
NIS
3506 SAVESPTR(PL_beginav);
3507 PL_beginav = newAV();
3508 SAVEFREESV(PL_beginav);
3c10abe3
AG
3509 SAVESPTR(PL_unitcheckav);
3510 PL_unitcheckav = newAV();
3511 SAVEFREESV(PL_unitcheckav);
a0d0e21e 3512
81d86705 3513#ifdef PERL_MAD
9da243ce 3514 SAVEBOOL(PL_madskills);
81d86705
NC
3515 PL_madskills = 0;
3516#endif
3517
676a678a
Z
3518 if (!startop) ENTER_with_name("evalcomp");
3519 SAVESPTR(PL_compcv);
3520 PL_compcv = evalcv;
3521
a0d0e21e
LW
3522 /* try to compile it */
3523
5f66b61c 3524 PL_eval_root = NULL;
3280af22 3525 PL_curcop = &PL_compiling;
5f66b61c 3526 if (saveop && (saveop->op_type != OP_REQUIRE) && (saveop->op_flags & OPf_SPECIAL))
faef0170 3527 PL_in_eval |= EVAL_KEEPERR;
ab69dbc2
RGS
3528 else
3529 CLEAR_ERRSV();
27e90453 3530
f45b078d 3531 if (!startop) {
f45b078d
FC
3532 SAVEHINTS();
3533 if (in_require) {
3534 PL_hints = 0;
3535 hv_clear(GvHV(PL_hintgv));
3536 }
3537 else {
3538 PL_hints = saveop->op_private & OPpEVAL_COPHH
3539 ? oldcurcop->cop_hints : saveop->op_targ;
3540 if (hh) {
3541 /* SAVEHINTS created a new HV in PL_hintgv, which we need to GC */
3542 SvREFCNT_dec(GvHV(PL_hintgv));
3543 GvHV(PL_hintgv) = hh;
3544 }
3545 }
3546 SAVECOMPILEWARNINGS();
3547 if (in_require) {
3548 if (PL_dowarn & G_WARN_ALL_ON)
3549 PL_compiling.cop_warnings = pWARN_ALL ;
3550 else if (PL_dowarn & G_WARN_ALL_OFF)
3551 PL_compiling.cop_warnings = pWARN_NONE ;
3552 else
3553 PL_compiling.cop_warnings = pWARN_STD ;
3554 }
3555 else {
3556 PL_compiling.cop_warnings =
3557 DUP_WARNINGS(oldcurcop->cop_warnings);
3558 cophh_free(CopHINTHASH_get(&PL_compiling));
3559 if (Perl_cop_fetch_label(aTHX_ oldcurcop, NULL, NULL)) {
3560 /* The label, if present, is the first entry on the chain. So rather
3561 than writing a blank label in front of it (which involves an
3562 allocation), just use the next entry in the chain. */
3563 PL_compiling.cop_hints_hash
3564 = cophh_copy(oldcurcop->cop_hints_hash->refcounted_he_next);
3565 /* Check the assumption that this removed the label. */
3566 assert(Perl_cop_fetch_label(aTHX_ &PL_compiling, NULL, NULL) == NULL);
3567 }
3568 else
3569 PL_compiling.cop_hints_hash = cophh_copy(oldcurcop->cop_hints_hash);
3570 }
3571 }
3572
a88d97bf 3573 CALL_BLOCK_HOOKS(bhk_eval, saveop);
52db365a 3574
27e90453
DM
3575 /* note that yyparse() may raise an exception, e.g. C<BEGIN{die}>,
3576 * so honour CATCH_GET and trap it here if necessary */
3577
28ac2b49 3578 yystatus = (!in_require && CATCH_GET) ? S_try_yyparse(aTHX_ GRAMPROG) : yyparse(GRAMPROG);
27e90453 3579
f45b078d
FC
3580 if (!startop && yystatus != 3) LEAVE_with_name("evalcomp");
3581
27e90453 3582 if (yystatus || PL_parser->error_count || !PL_eval_root) {
0c58d367 3583 SV **newsp; /* Used by POPBLOCK. */
d164302a 3584 PERL_CONTEXT *cx;
27e90453 3585 I32 optype; /* Used by POPEVAL. */
d164302a 3586 SV *namesv;
bfed75c6 3587
d164302a
GG
3588 cx = NULL;
3589 namesv = NULL;
27e90453
DM
3590 PERL_UNUSED_VAR(newsp);
3591 PERL_UNUSED_VAR(optype);
3592
c86ffc32
DM
3593 /* note that if yystatus == 3, then the EVAL CX block has already
3594 * been popped, and various vars restored */
533c011a 3595 PL_op = saveop;
27e90453 3596 if (yystatus != 3) {
c86ffc32
DM
3597 if (PL_eval_root) {
3598 op_free(PL_eval_root);
3599 PL_eval_root = NULL;
3600 }
27e90453
DM
3601 SP = PL_stack_base + POPMARK; /* pop original mark */
3602 if (!startop) {
3603 POPBLOCK(cx,PL_curpm);
3604 POPEVAL(cx);
b6494f15 3605 namesv = cx->blk_eval.old_namesv;
27e90453 3606 }
27e90453 3607 LEAVE_with_name("eval"); /* pp_entereval knows about this LEAVE. */
cd6472fc 3608 }
9d4ba2ae 3609
27e90453 3610 if (in_require) {
b6494f15
VP
3611 if (!cx) {
3612 /* If cx is still NULL, it means that we didn't go in the
3613 * POPEVAL branch. */
3614 cx = &cxstack[cxstack_ix];
3615 assert(CxTYPE(cx) == CXt_EVAL);
3616 namesv = cx->blk_eval.old_namesv;
3617 }
3618 (void)hv_store(GvHVn(PL_incgv),
ecad31f0 3619 SvPVX_const(namesv),
c60dbbc3 3620 SvUTF8(namesv) ? -(I32)SvCUR(namesv) : (I32)SvCUR(namesv),
b6494f15 3621 &PL_sv_undef, 0);
ecad31f0
BF
3622 Perl_croak(aTHX_ "%"SVf"Compilation failed in require",
3623 SVfARG(ERRSV
3624 ? ERRSV
3625 : newSVpvs_flags("Unknown error\n", SVs_TEMP)));
5a844595
GS
3626 }
3627 else if (startop) {
27e90453
DM
3628 if (yystatus != 3) {
3629 POPBLOCK(cx,PL_curpm);
3630 POPEVAL(cx);
3631 }
ecad31f0
BF
3632 Perl_croak(aTHX_ "%"SVf"Compilation failed in regexp",
3633 SVfARG(ERRSV
3634 ? ERRSV
3635 : newSVpvs_flags("Unknown error\n", SVs_TEMP)));
7a2e2cd6 3636 }
9d7f88dd 3637 else {
ecad31f0 3638 if (!*(SvPVx_nolen_const(ERRSV))) {
6502358f 3639 sv_setpvs(ERRSV, "Compilation error");
9d7f88dd
SR
3640 }
3641 }
410be5db
DM
3642 PUSHs(&PL_sv_undef);
3643 PUTBACK;
3644 return FALSE;
a0d0e21e 3645 }
57843af0 3646 CopLINE_set(&PL_compiling, 0);
c277df42 3647 if (startop) {
3280af22 3648 *startop = PL_eval_root;
c277df42 3649 } else
3280af22 3650 SAVEFREEOP(PL_eval_root);
0c58d367 3651
a0d0e21e
LW
3652 DEBUG_x(dump_eval());
3653
55497cff 3654 /* Register with debugger: */
6482a30d 3655 if (PERLDB_INTER && saveop && saveop->op_type == OP_REQUIRE) {
b96d8cd9 3656 CV * const cv = get_cvs("DB::postponed", 0);
55497cff 3657 if (cv) {
3658 dSP;
924508f0 3659 PUSHMARK(SP);
ad64d0ec 3660 XPUSHs(MUTABLE_SV(CopFILEGV(&PL_compiling)));
55497cff 3661 PUTBACK;
ad64d0ec 3662 call_sv(MUTABLE_SV(cv), G_DISCARD);
55497cff 3663 }
3664 }
3665
8ed49485
FC
3666 if (PL_unitcheckav) {
3667 OP *es = PL_eval_start;
3c10abe3 3668 call_list(PL_scopestack_ix, PL_unitcheckav);
8ed49485
FC
3669 PL_eval_start = es;
3670 }
3c10abe3 3671
a0d0e21e
LW
3672 /* compiled okay, so do it */
3673
676a678a 3674 CvDEPTH(evalcv) = 1;
3280af22 3675 SP = PL_stack_base + POPMARK; /* pop original mark */
533c011a 3676 PL_op = saveop; /* The caller may need it. */
bc177e6b 3677 PL_parser->lex_state = LEX_NOTPARSING; /* $^S needs this. */
5dc0d613 3678
410be5db
DM
3679 PUTBACK;
3680 return TRUE;
a0d0e21e
LW
3681}
3682
a6c40364 3683STATIC PerlIO *
282b29ee 3684S_check_type_and_open(pTHX_ SV *name)
ce8abf5f
SP
3685{
3686 Stat_t st;
282b29ee
NC
3687 const char *p = SvPV_nolen_const(name);
3688 const int st_rc = PerlLIO_stat(p, &st);
df528165 3689
7918f24d
NC
3690 PERL_ARGS_ASSERT_CHECK_TYPE_AND_OPEN;
3691
6b845e56 3692 if (st_rc < 0 || S_ISDIR(st.st_mode) || S_ISBLK(st.st_mode)) {
4608196e 3693 return NULL;
ce8abf5f
SP
3694 }
3695
ccb84406 3696#if !defined(PERLIO_IS_STDIO) && !defined(USE_SFIO)
639dfab0 3697 return PerlIO_openn(aTHX_ ":", PERL_SCRIPT_MODE, -1, 0, 0, NULL, 1, &name);
ccb84406 3698#else
282b29ee 3699 return PerlIO_open(p, PERL_SCRIPT_MODE);
ccb84406 3700#endif
ce8abf5f
SP
3701}
3702
75c20bac 3703#ifndef PERL_DISABLE_PMC
ce8abf5f 3704STATIC PerlIO *
282b29ee 3705S_doopen_pm(pTHX_ SV *name)
b295d113 3706{
282b29ee
NC
3707 STRLEN namelen;
3708 const char *p = SvPV_const(name, namelen);
b295d113 3709
7918f24d
NC
3710 PERL_ARGS_ASSERT_DOOPEN_PM;
3711
282b29ee 3712 if (namelen > 3 && memEQs(p + namelen - 3, 3, ".pm")) {
eb70bb4a 3713 SV *const pmcsv = sv_newmortal();
a6c40364 3714 Stat_t pmcstat;
50b8ed39 3715
eb70bb4a 3716 SvSetSV_nosteal(pmcsv,name);
282b29ee 3717 sv_catpvn(pmcsv, "c", 1);
50b8ed39 3718
282b29ee
NC
3719 if (PerlLIO_stat(SvPV_nolen_const(pmcsv), &pmcstat) >= 0)
3720 return check_type_and_open(pmcsv);
a6c40364 3721 }
282b29ee 3722 return check_type_and_open(name);
75c20bac 3723}
7925835c 3724#else
282b29ee 3725# define doopen_pm(name) check_type_and_open(name)
7925835c 3726#endif /* !PERL_DISABLE_PMC */
b295d113 3727
a0d0e21e
LW
3728PP(pp_require)
3729{
27da23d5 3730 dVAR; dSP;
c09156bb 3731 register PERL_CONTEXT *cx;
a0d0e21e 3732 SV *sv;
5c144d81 3733 const char *name;
6132ea6c 3734 STRLEN len;
4492be7a
JM
3735 char * unixname;
3736 STRLEN unixlen;
62f5ad7a 3737#ifdef VMS
4492be7a 3738 int vms_unixname = 0;
62f5ad7a 3739#endif
c445ea15
AL
3740 const char *tryname = NULL;
3741 SV *namesv = NULL;
f54cb97a 3742 const I32 gimme = GIMME_V;
bbed91b5 3743 int filter_has_file = 0;
c445ea15 3744 PerlIO *tryrsfp = NULL;
34113e50 3745 SV *filter_cache = NULL;
c445ea15
AL
3746 SV *filter_state = NULL;
3747 SV *filter_sub = NULL;
3748 SV *hook_sv = NULL;
6ec9efec
JH
3749 SV *encoding;
3750 OP *op;
a0d0e21e
LW
3751
3752 sv = POPs;
d7aa5382 3753 if ( (SvNIOKp(sv) || SvVOK(sv)) && PL_op->op_type != OP_DOFILE) {
d086148c 3754 sv = sv_2mortal(new_version(sv));
d7aa5382 3755 if (!sv_derived_from(PL_patchlevel, "version"))
ac0e6a2f 3756 upg_version(PL_patchlevel, TRUE);
149c1637 3757 if (cUNOP->op_first->op_type == OP_CONST && cUNOP->op_first->op_private & OPpCONST_NOVER) {
3cacfbb9 3758 if ( vcmp(sv,PL_patchlevel) <= 0 )
468aa647 3759 DIE(aTHX_ "Perls since %"SVf" too modern--this is %"SVf", stopped",
e753e3b1
FC
3760 SVfARG(sv_2mortal(vnormal(sv))),
3761 SVfARG(sv_2mortal(vnormal(PL_patchlevel)))
3762 );
468aa647
RGS
3763 }
3764 else {
d1029faa
JP
3765 if ( vcmp(sv,PL_patchlevel) > 0 ) {
3766 I32 first = 0;
3767 AV *lav;
3768 SV * const req = SvRV(sv);
85fbaab2 3769 SV * const pv = *hv_fetchs(MUTABLE_HV(req), "original", FALSE);
d1029faa
JP
3770
3771 /* get the left hand term */
502c6561 3772 lav = MUTABLE_AV(SvRV(*hv_fetchs(MUTABLE_HV(req), "version", FALSE)));
d1029faa
JP
3773
3774 first = SvIV(*av_fetch(lav,0,0));
3775 if ( first > (int)PERL_REVISION /* probably 'use 6.0' */
85fbaab2 3776 || hv_exists(MUTABLE_HV(req), "qv", 2 ) /* qv style */
d1029faa
JP
3777 || av_len(lav) > 1 /* FP with > 3 digits */
3778 || strstr(SvPVX(pv),".0") /* FP with leading 0 */
3779 ) {
3780 DIE(aTHX_ "Perl %"SVf" required--this is only "
9d056fb0
FC
3781 "%"SVf", stopped",
3782 SVfARG(sv_2mortal(vnormal(req))),
3783 SVfARG(sv_2mortal(vnormal(PL_patchlevel)))
3784 );
d1029faa
JP
3785 }
3786 else { /* probably 'use 5.10' or 'use 5.8' */
af61dbfd 3787 SV *hintsv;
d1029faa
JP
3788 I32 second = 0;
3789
3790 if (av_len(lav)>=1)
3791 second = SvIV(*av_fetch(lav,1,0));
3792
3793 second /= second >= 600 ? 100 : 10;
af61dbfd
NC
3794 hintsv = Perl_newSVpvf(aTHX_ "v%d.%d.0",
3795 (int)first, (int)second);
d1029faa
JP
3796 upg_version(hintsv, TRUE);
3797
3798 DIE(aTHX_ "Perl %"SVf" required (did you mean %"SVf"?)"
3799 "--this is only %"SVf", stopped",
1be7d6f3
FC
3800 SVfARG(sv_2mortal(vnormal(req))),
3801 SVfARG(sv_2mortal(vnormal(sv_2mortal(hintsv)))),
3802 SVfARG(sv_2mortal(vnormal(PL_patchlevel)))
3803 );
d1029faa
JP
3804 }
3805 }
468aa647 3806 }
d7aa5382 3807
7dfde25d 3808 RETPUSHYES;
a0d0e21e 3809 }
5c144d81 3810 name = SvPV_const(sv, len);
6132ea6c 3811 if (!(name && len > 0 && *name))
cea2e8a9 3812 DIE(aTHX_ "Null filename used");
4633a7c4 3813 TAINT_PROPER("require");
4492be7a
JM
3814
3815
3816#ifdef VMS
3817 /* The key in the %ENV hash is in the syntax of file passed as the argument
3818 * usually this is in UNIX format, but sometimes in VMS format, which
3819 * can result in a module being pulled in more than once.
3820 * To prevent this, the key must be stored in UNIX format if the VMS
3821 * name can be translated to UNIX.
3822 */
3823 if ((unixname = tounixspec(name, NULL)) != NULL) {
3824 unixlen = strlen(unixname);
3825 vms_unixname = 1;
3826 }
3827 else
3828#endif
3829 {
3830 /* if not VMS or VMS name can not be translated to UNIX, pass it
3831 * through.
3832 */
3833 unixname = (char *) name;
3834 unixlen = len;
3835 }
44f8325f 3836 if (PL_op->op_type == OP_REQUIRE) {
4492be7a
JM
3837 SV * const * const svp = hv_fetch(GvHVn(PL_incgv),
3838 unixname, unixlen, 0);
44f8325f
AL
3839 if ( svp ) {
3840 if (*svp != &PL_sv_undef)
3841 RETPUSHYES;
3842 else
087b5369
RD
3843 DIE(aTHX_ "Attempt to reload %s aborted.\n"
3844 "Compilation failed in require", unixname);
44f8325f 3845 }
4d8b06f1 3846 }
a0d0e21e
LW
3847
3848 /* prepare to compile file */
3849
be4b629d 3850 if (path_is_absolute(name)) {
282b29ee 3851 /* At this point, name is SvPVX(sv) */
46fc3d4c 3852 tryname = name;
282b29ee 3853 tryrsfp = doopen_pm(sv);
bf4acbe4 3854 }
be4b629d 3855 if (!tryrsfp) {
44f8325f 3856 AV * const ar = GvAVn(PL_incgv);
a0d0e21e 3857 I32 i;
748a9306 3858#ifdef VMS
4492be7a 3859 if (vms_unixname)
46fc3d4c 3860#endif
3861 {
d0328fd7 3862 namesv = newSV_type(SVt_PV);
46fc3d4c 3863 for (i = 0; i <= AvFILL(ar); i++) {
df528165 3864 SV * const dirsv = *av_fetch(ar, i, TRUE);
bbed91b5 3865
ad64d0ec 3866 if (SvTIED_mg((const SV *)ar, PERL_MAGIC_tied))
c38a6530 3867 mg_get(dirsv);
bbed91b5
KF
3868 if (SvROK(dirsv)) {
3869 int count;
a3b58a99 3870 SV **svp;
bbed91b5
KF
3871 SV *loader = dirsv;
3872
e14e2dc8
NC
3873 if (SvTYPE(SvRV(loader)) == SVt_PVAV
3874 && !sv_isobject(loader))
3875 {
502c6561 3876 loader = *av_fetch(MUTABLE_AV(SvRV(loader)), 0, TRUE);
bbed91b5
KF
3877 }
3878
b900a521 3879 Perl_sv_setpvf(aTHX_ namesv, "/loader/0x%"UVxf"/%s",
44f0be63 3880 PTR2UV(SvRV(dirsv)), name);
349d4f2f 3881 tryname = SvPVX_const(namesv);
c445ea15 3882 tryrsfp = NULL;
bbed91b5 3883
d343c3ef 3884 ENTER_with_name("call_INC");
bbed91b5
KF
3885 SAVETMPS;
3886 EXTEND(SP, 2);
3887
3888 PUSHMARK(SP);
3889 PUSHs(dirsv);
3890 PUSHs(sv);
3891 PUTBACK;
e982885c
NC
3892 if (sv_isobject(loader))
3893 count = call_method("INC", G_ARRAY);
3894 else
3895 count = call_sv(loader, G_ARRAY);
bbed91b5
KF
3896 SPAGAIN;
3897
3898 if (count > 0) {
3899 int i = 0;
3900 SV *arg;
3901
3902 SP -= count - 1;
3903 arg = SP[i++];
3904
34113e50
NC
3905 if (SvROK(arg) && (SvTYPE(SvRV(arg)) <= SVt_PVLV)
3906 && !isGV_with_GP(SvRV(arg))) {
3907 filter_cache = SvRV(arg);
74c765eb 3908 SvREFCNT_inc_simple_void_NN(filter_cache);
34113e50
NC
3909
3910 if (i < count) {
3911 arg = SP[i++];
3912 }
3913 }
3914
6e592b3a 3915 if (SvROK(arg) && isGV_with_GP(SvRV(arg))) {
bbed91b5
KF
3916 arg = SvRV(arg);
3917 }
3918
6e592b3a 3919 if (isGV_with_GP(arg)) {
159b6efe 3920 IO * const io = GvIO((const GV *)arg);
bbed91b5
KF
3921
3922 ++filter_has_file;
3923
3924 if (io) {
3925 tryrsfp = IoIFP(io);
0f7de14d
NC
3926 if (IoOFP(io) && IoOFP(io) != IoIFP(io)) {
3927 PerlIO_close(IoOFP(io));
bbed91b5 3928 }
0f7de14d
NC
3929 IoIFP(io) = NULL;
3930 IoOFP(io) = NULL;
bbed91b5
KF
3931 }
3932
3933 if (i < count) {
3934 arg = SP[i++];
3935 }
3936 }
3937
3938 if (SvROK(arg) && SvTYPE(SvRV(arg)) == SVt_PVCV) {
3939 filter_sub = arg;
74c765eb 3940 SvREFCNT_inc_simple_void_NN(filter_sub);
bbed91b5
KF
3941
3942 if (i < count) {
3943 filter_state = SP[i];
b37c2d43 3944 SvREFCNT_inc_simple_void(filter_state);
bbed91b5 3945 }
34113e50 3946 }
bbed91b5 3947
34113e50
NC
3948 if (!tryrsfp && (filter_cache || filter_sub)) {
3949 tryrsfp = PerlIO_open(BIT_BUCKET,
3950 PERL_SCRIPT_MODE);
bbed91b5 3951 }
1d06aecd 3952 SP--;
bbed91b5
KF
3953 }
3954
3955 PUTBACK;
3956 FREETMPS;
d343c3ef 3957 LEAVE_with_name("call_INC");
bbed91b5 3958
c5f55552
NC
3959 /* Adjust file name if the hook has set an %INC entry.
3960 This needs to happen after the FREETMPS above. */
3961 svp = hv_fetch(GvHVn(PL_incgv), name, len, 0);
3962 if (svp)
3963 tryname = SvPV_nolen_const(*svp);
3964
bbed91b5 3965 if (tryrsfp) {
89ccab8c 3966 hook_sv = dirsv;
bbed91b5
KF
3967 break;
3968 }
3969
3970 filter_has_file = 0;
34113e50
NC
3971 if (filter_cache) {
3972 SvREFCNT_dec(filter_cache);
3973 filter_cache = NULL;
3974 }
bbed91b5
KF
3975 if (filter_state) {
3976 SvREFCNT_dec(filter_state);
c445ea15 3977 filter_state = NULL;
bbed91b5
KF
3978 }
3979 if (filter_sub) {
3980 SvREFCNT_dec(filter_sub);
c445ea15 3981 filter_sub = NULL;
bbed91b5
KF
3982 }
3983 }
3984 else {
be4b629d 3985 if (!path_is_absolute(name)
be4b629d 3986 ) {
b640a14a
NC
3987 const char *dir;
3988 STRLEN dirlen;
3989
3990 if (SvOK(dirsv)) {
3991 dir = SvPV_const(dirsv, dirlen);
3992 } else {
3993 dir = "";
3994 dirlen = 0;
3995 }
3996
e37778c2 3997#ifdef VMS
bbed91b5 3998 char *unixdir;
c445ea15 3999 if ((unixdir = tounixpath(dir, NULL)) == NULL)
bbed91b5
KF
4000 continue;
4001 sv_setpv(namesv, unixdir);
4002 sv_catpv(namesv, unixname);
e37778c2
NC
4003#else
4004# ifdef __SYMBIAN32__
27da23d5
JH
4005 if (PL_origfilename[0] &&
4006 PL_origfilename[1] == ':' &&
4007 !(dir[0] && dir[1] == ':'))
4008 Perl_sv_setpvf(aTHX_ namesv,
4009 "%c:%s\\%s",
4010 PL_origfilename[0],
4011 dir, name);
4012 else
4013 Perl_sv_setpvf(aTHX_ namesv,
4014 "%s\\%s",
4015 dir, name);
e37778c2 4016# else
b640a14a
NC
4017 /* The equivalent of
4018 Perl_sv_setpvf(aTHX_ namesv, "%s/%s", dir, name);
4019 but without the need to parse the format string, or
4020 call strlen on either pointer, and with the correct
4021 allocation up front. */
4022 {
4023 char *tmp = SvGROW(namesv, dirlen + len + 2);
4024
4025 memcpy(tmp, dir, dirlen);
4026 tmp +=dirlen;
4027 *tmp++ = '/';
4028 /* name came from an SV, so it will have a '\0' at the
4029 end that we can copy as part of this memcpy(). */
4030 memcpy(tmp, name, len + 1);
4031
4032 SvCUR_set(namesv, dirlen + len + 1);
282b29ee 4033 SvPOK_on(namesv);
b640a14a 4034 }
27da23d5 4035# endif
bf4acbe4 4036#endif
bbed91b5 4037 TAINT_PROPER("require");
349d4f2f 4038 tryname = SvPVX_const(namesv);
282b29ee 4039 tryrsfp = doopen_pm(namesv);
bbed91b5 4040 if (tryrsfp) {
e63be746
RGS
4041 if (tryname[0] == '.' && tryname[1] == '/') {
4042 ++tryname;
4043 while (*++tryname == '/');
4044 }
bbed91b5
KF
4045 break;
4046 }
ff806af2
DM
4047 else if (errno == EMFILE)
4048 /* no point in trying other paths if out of handles */
4049 break;
be4b629d 4050 }
46fc3d4c 4051 }
a0d0e21e
LW
4052 }
4053 }
4054 }
b2ef6d44 4055 sv_2mortal(namesv);
a0d0e21e 4056 if (!tryrsfp) {
533c011a 4057 if (PL_op->op_type == OP_REQUIRE) {
e31de809 4058 if(errno == EMFILE) {
c9d5e35e
NC
4059 /* diag_listed_as: Can't locate %s */
4060 DIE(aTHX_ "Can't locate %s: %s", name, Strerror(errno));
e31de809
SP
4061 } else {
4062 if (namesv) { /* did we lookup @INC? */
44f8325f 4063 AV * const ar = GvAVn(PL_incgv);
e31de809 4064 I32 i;
c9d5e35e
NC
4065 SV *const inc = newSVpvs_flags("", SVs_TEMP);
4066 for (i = 0; i <= AvFILL(ar); i++) {
4067 sv_catpvs(inc, " ");
4068 sv_catsv(inc, *av_fetch(ar, i, TRUE));
4069 }
4070
4071 /* diag_listed_as: Can't locate %s */
4072 DIE(aTHX_
4073 "Can't locate %s in @INC%s%s (@INC contains:%" SVf ")",
4074 name,
686c4ca0
NC
4075 (memEQ(name + len - 2, ".h", 3)
4076 ? " (change .h to .ph maybe?) (did you run h2ph?)" : ""),
4077 (memEQ(name + len - 3, ".ph", 4)
c9d5e35e
NC
4078 ? " (did you run h2ph?)" : ""),
4079 inc
4080 );
4081 }
2683423c 4082 }
c9d5e35e 4083 DIE(aTHX_ "Can't locate %s", name);
a0d0e21e
LW
4084 }
4085
4086 RETPUSHUNDEF;
4087 }
d8bfb8bd 4088 else
93189314 4089 SETERRNO(0, SS_NORMAL);
a0d0e21e
LW
4090
4091 /* Assume success here to prevent recursive requirement. */
238d24b4 4092 /* name is never assigned to again, so len is still strlen(name) */
d3a4e64e 4093 /* Check whether a hook in @INC has already filled %INC */
44f8325f 4094 if (!hook_sv) {
4492be7a 4095 (void)hv_store(GvHVn(PL_incgv),
b2ef6d44 4096 unixname, unixlen, newSVpv(tryname,0),0);
44f8325f 4097 } else {
4492be7a 4098 SV** const svp = hv_fetch(GvHVn(PL_incgv), unixname, unixlen, 0);
44f8325f 4099 if (!svp)
4492be7a
JM
4100 (void)hv_store(GvHVn(PL_incgv),
4101 unixname, unixlen, SvREFCNT_inc_simple(hook_sv), 0 );
d3a4e64e 4102 }
a0d0e21e 4103
d343c3ef 4104 ENTER_with_name("eval");
a0d0e21e 4105 SAVETMPS;
b2ef6d44
FC
4106 SAVECOPFILE_FREE(&PL_compiling);
4107 CopFILE_set(&PL_compiling, tryname);
8eaa0acf 4108 lex_start(NULL, tryrsfp, 0);
e50aee73 4109
34113e50 4110 if (filter_sub || filter_cache) {
4464f08e
NC
4111 /* We can use the SvPV of the filter PVIO itself as our cache, rather
4112 than hanging another SV from it. In turn, filter_add() optionally
4113 takes the SV to use as the filter (or creates a new SV if passed
4114 NULL), so simply pass in whatever value filter_cache has. */
4115 SV * const datasv = filter_add(S_run_user_filter, filter_cache);
bbed91b5 4116 IoLINES(datasv) = filter_has_file;
159b6efe
NC
4117 IoTOP_GV(datasv) = MUTABLE_GV(filter_state);
4118 IoBOTTOM_GV(datasv) = MUTABLE_GV(filter_sub);
bbed91b5
KF
4119 }
4120
4121 /* switch to eval mode */
a0d0e21e 4122 PUSHBLOCK(cx, CXt_EVAL, SP);
6b75f042 4123 PUSHEVAL(cx, name);
f39bc417 4124 cx->blk_eval.retop = PL_op->op_next;
a0d0e21e 4125
57843af0
GS
4126 SAVECOPLINE(&PL_compiling);
4127 CopLINE_set(&PL_compiling, 0);
a0d0e21e
LW
4128
4129 PUTBACK;
6ec9efec
JH
4130
4131 /* Store and reset encoding. */
4132 encoding = PL_encoding;
c445ea15 4133 PL_encoding = NULL;
6ec9efec 4134
f45b078d 4135 if (doeval(gimme, NULL, NULL, PL_curcop->cop_seq, NULL))
410be5db
DM
4136 op = DOCATCH(PL_eval_start);
4137 else
4138 op = PL_op->op_next;
bfed75c6 4139
6ec9efec
JH
4140 /* Restore encoding. */
4141 PL_encoding = encoding;
4142
4143 return op;
a0d0e21e
LW
4144}
4145
996c9baa
VP
4146/* This is a op added to hold the hints hash for
4147 pp_entereval. The hash can be modified by the code
4148 being eval'ed, so we return a copy instead. */
4149
4150PP(pp_hintseval)
4151{
4152 dVAR;
4153 dSP;
defdfed5 4154 mXPUSHs(MUTABLE_SV(hv_copy_hints_hv(MUTABLE_HV(cSVOP_sv))));
996c9baa
VP
4155 RETURN;
4156}
4157
4158
a0d0e21e
LW
4159PP(pp_entereval)
4160{
27da23d5 4161 dVAR; dSP;
c09156bb 4162 register PERL_CONTEXT *cx;
0d863452 4163 SV *sv;
890ce7af 4164 const I32 gimme = GIMME_V;
fd06b02c 4165 const U32 was = PL_breakable_sub_gen;
83ee9e09 4166 char tbuf[TYPE_DIGITS(long) + 12];
78da7625 4167 bool saved_delete = FALSE;
83ee9e09 4168 char *tmpbuf = tbuf;
a0d0e21e 4169 STRLEN len;
a3985cdc 4170 CV* runcv;
0abcdfa4 4171 U32 seq, lex_flags = 0;
c445ea15 4172 HV *saved_hh = NULL;
60d63348 4173 const bool bytes = PL_op->op_private & OPpEVAL_BYTES;
e389bba9 4174
0d863452 4175 if (PL_op->op_private & OPpEVAL_HAS_HH) {
85fbaab2 4176 saved_hh = MUTABLE_HV(SvREFCNT_inc(POPs));
0d863452 4177 }
bc344123
FC
4178 else if (PL_hints & HINT_LOCALIZE_HH || (
4179 PL_op->op_private & OPpEVAL_COPHH
4180 && PL_curcop->cop_hints & HINT_LOCALIZE_HH
4181 )) {
7d789282
FC
4182 saved_hh = cop_hints_2hv(PL_curcop, 0);
4183 hv_magic(saved_hh, NULL, PERL_MAGIC_hints);
4184 }
0d863452 4185 sv = POPs;
895b760f
DM
4186 if (!SvPOK(sv)) {
4187 /* make sure we've got a plain PV (no overload etc) before testing
4188 * for taint. Making a copy here is probably overkill, but better
4189 * safe than sorry */
0479a84a
NC
4190 STRLEN len;
4191 const char * const p = SvPV_const(sv, len);
4192
4193 sv = newSVpvn_flags(p, len, SVs_TEMP | SvUTF8(sv));
0abcdfa4 4194 lex_flags |= LEX_START_COPIED;
7d789282 4195
60d63348 4196 if (bytes && SvUTF8(sv))
7d789282
FC
4197 SvPVbyte_force(sv, len);
4198 }
60d63348 4199 else if (bytes && SvUTF8(sv)) {
e1fa07e3 4200 /* Don't modify someone else's scalar */
7d789282
FC
4201 STRLEN len;
4202 sv = newSVsv(sv);
5cefc8c1 4203 (void)sv_2mortal(sv);
7d789282 4204 SvPVbyte_force(sv,len);
0abcdfa4 4205 lex_flags |= LEX_START_COPIED;
895b760f 4206 }
a0d0e21e 4207
af2d3def 4208 TAINT_IF(SvTAINTED(sv));
748a9306 4209 TAINT_PROPER("eval");
a0d0e21e 4210
d343c3ef 4211 ENTER_with_name("eval");
0abcdfa4 4212 lex_start(sv, NULL, lex_flags | (PL_op->op_private & OPpEVAL_UNICODE
60d63348
FC
4213 ? LEX_IGNORE_UTF8_HINTS
4214 : bytes ? LEX_EVALBYTES : LEX_START_SAME_FILTER
0abcdfa4 4215 )
60d63348 4216 );
748a9306 4217 SAVETMPS;
ac27b0f5 4218
a0d0e21e
LW
4219 /* switch to eval mode */
4220
83ee9e09 4221 if (PERLDB_NAMEEVAL && CopLINE(PL_curcop)) {
8b38226b
AL
4222 SV * const temp_sv = sv_newmortal();
4223 Perl_sv_setpvf(aTHX_ temp_sv, "_<(eval %lu)[%s:%"IVdf"]",
83ee9e09
GS
4224 (unsigned long)++PL_evalseq,
4225 CopFILE(PL_curcop), (IV)CopLINE(PL_curcop));
8b38226b
AL
4226 tmpbuf = SvPVX(temp_sv);
4227 len = SvCUR(temp_sv);
83ee9e09
GS
4228 }
4229 else
d9fad198 4230 len = my_snprintf(tmpbuf, sizeof(tbuf), "_<(eval %lu)", (unsigned long)++PL_evalseq);
f4dd75d9 4231 SAVECOPFILE_FREE(&PL_compiling);
57843af0 4232 CopFILE_set(&PL_compiling, tmpbuf+2);
f4dd75d9 4233 SAVECOPLINE(&PL_compiling);
57843af0 4234 CopLINE_set(&PL_compiling, 1);
d819b83a
DM
4235 /* special case: an eval '' executed within the DB package gets lexically
4236 * placed in the first non-DB CV rather than the current CV - this
4237 * allows the debugger to execute code, find lexicals etc, in the
4238 * scope of the code being debugged. Passing &seq gets find_runcv
4239 * to do the dirty work for us */
4240 runcv = find_runcv(&seq);
a0d0e21e 4241
6b35e009 4242 PUSHBLOCK(cx, (CXt_EVAL|CXp_REAL), SP);
6b75f042 4243 PUSHEVAL(cx, 0);
f39bc417 4244 cx->blk_eval.retop = PL_op->op_next;
a0d0e21e
LW
4245
4246 /* prepare to compile string */
4247
a44e3ce2 4248 if ((PERLDB_LINE || PERLDB_SAVESRC) && PL_curstash != PL_debstash)
bdc0bf6f 4249 save_lines(CopFILEAV(&PL_compiling), PL_parser->linestr);
78da7625 4250 else {
c8cb8d55
FC
4251 /* XXX For C<eval "...">s within BEGIN {} blocks, this ends up
4252 deleting the eval's FILEGV from the stash before gv_check() runs
4253 (i.e. before run-time proper). To work around the coredump that
4254 ensues, we always turn GvMULTI_on for any globals that were
4255 introduced within evals. See force_ident(). GSAR 96-10-12 */
78da7625
FC
4256 char *const safestr = savepvn(tmpbuf, len);
4257 SAVEDELETE(PL_defstash, safestr, len);
4258 saved_delete = TRUE;
4259 }
4260
a0d0e21e 4261 PUTBACK;
f9bddea7 4262
f45b078d 4263 if (doeval(gimme, NULL, runcv, seq, saved_hh)) {
f9bddea7
NC
4264 if (was != PL_breakable_sub_gen /* Some subs defined here. */
4265 ? (PERLDB_LINE || PERLDB_SAVESRC)
4266 : PERLDB_SAVESRC_NOSUBS) {
4267 /* Retain the filegv we created. */
78da7625 4268 } else if (!saved_delete) {
f9bddea7
NC
4269 char *const safestr = savepvn(tmpbuf, len);
4270 SAVEDELETE(PL_defstash, safestr, len);
4271 }
4272 return DOCATCH(PL_eval_start);
4273 } else {
486ec47a 4274 /* We have already left the scope set up earlier thanks to the LEAVE
f9bddea7 4275 in doeval(). */
eb044b10
NC
4276 if (was != PL_breakable_sub_gen /* Some subs defined here. */
4277 ? (PERLDB_LINE || PERLDB_SAVESRC)
4278 : PERLDB_SAVESRC_INVALID) {
f9bddea7 4279 /* Retain the filegv we created. */
7857f360 4280 } else if (!saved_delete) {
f9bddea7
NC
4281 (void)hv_delete(PL_defstash, tmpbuf, len, G_DISCARD);
4282 }
4283 return PL_op->op_next;
4284 }
a0d0e21e
LW
4285}
4286
4287PP(pp_leaveeval)
4288{
27da23d5 4289 dVAR; dSP;
a0d0e21e
LW
4290 SV **newsp;
4291 PMOP *newpm;
4292 I32 gimme;
c09156bb 4293 register PERL_CONTEXT *cx;
a0d0e21e 4294 OP *retop;
06b5626a 4295 const U8 save_flags = PL_op -> op_flags;
a0d0e21e 4296 I32 optype;
b6494f15 4297 SV *namesv;
676a678a 4298 CV *evalcv;
a0d0e21e 4299
011c3814 4300 PERL_ASYNC_CHECK();
a0d0e21e
LW
4301 POPBLOCK(cx,newpm);
4302 POPEVAL(cx);
b6494f15 4303 namesv = cx->blk_eval.old_namesv;
f39bc417 4304 retop = cx->blk_eval.retop;
676a678a 4305 evalcv = cx->blk_eval.cv;
a0d0e21e 4306
a1f49e72 4307 TAINT_NOT;
b9d76716
VP
4308 SP = adjust_stack_on_leave((gimme == G_VOID) ? SP : newsp, SP, newsp,
4309 gimme, SVs_TEMP);
3280af22 4310 PL_curpm = newpm; /* Don't pop $1 et al till now */
a0d0e21e 4311
4fdae800 4312#ifdef DEBUGGING
676a678a 4313 assert(CvDEPTH(evalcv) == 1);
4fdae800 4314#endif
676a678a 4315 CvDEPTH(evalcv) = 0;
4fdae800 4316
1ce6579f 4317 if (optype == OP_REQUIRE &&
924508f0 4318 !(gimme == G_SCALAR ? SvTRUE(*SP) : SP > newsp))
54310121 4319 {
1ce6579f 4320 /* Unassume the success we assumed earlier. */
b6494f15 4321 (void)hv_delete(GvHVn(PL_incgv),
ecad31f0 4322 SvPVX_const(namesv),
c60dbbc3 4323 SvUTF8(namesv) ? -(I32)SvCUR(namesv) : (I32)SvCUR(namesv),
b6494f15
VP
4324 G_DISCARD);
4325 retop = Perl_die(aTHX_ "%"SVf" did not return a true value",
4326 SVfARG(namesv));
c5df3096 4327 /* die_unwind() did LEAVE, or we won't be here */
f46d017c
GS
4328 }
4329 else {
d343c3ef 4330 LEAVE_with_name("eval");
8433848b 4331 if (!(save_flags & OPf_SPECIAL)) {
ab69dbc2 4332 CLEAR_ERRSV();
8433848b 4333 }
a0d0e21e 4334 }
a0d0e21e
LW
4335
4336 RETURNOP(retop);
4337}
4338
edb2152a
NC
4339/* Common code for Perl_call_sv and Perl_fold_constants, put here to keep it
4340 close to the related Perl_create_eval_scope. */
4341void
4342Perl_delete_eval_scope(pTHX)
a0d0e21e 4343{
edb2152a
NC
4344 SV **newsp;
4345 PMOP *newpm;
4346 I32 gimme;
c09156bb 4347 register PERL_CONTEXT *cx;
edb2152a
NC
4348 I32 optype;
4349
4350 POPBLOCK(cx,newpm);
4351 POPEVAL(cx);
4352 PL_curpm = newpm;
d343c3ef 4353 LEAVE_with_name("eval_scope");
edb2152a
NC
4354 PERL_UNUSED_VAR(newsp);
4355 PERL_UNUSED_VAR(gimme);
4356 PERL_UNUSED_VAR(optype);
4357}
a0d0e21e 4358
edb2152a
NC
4359/* Common-ish code salvaged from Perl_call_sv and pp_entertry, because it was
4360 also needed by Perl_fold_constants. */
4361PERL_CONTEXT *
4362Perl_create_eval_scope(pTHX_ U32 flags)
4363{
4364 PERL_CONTEXT *cx;
4365 const I32 gimme = GIMME_V;
4366
d343c3ef 4367 ENTER_with_name("eval_scope");
a0d0e21e
LW
4368 SAVETMPS;
4369
edb2152a 4370 PUSHBLOCK(cx, (CXt_EVAL|CXp_TRYBLOCK), PL_stack_sp);
6b75f042 4371 PUSHEVAL(cx, 0);
a0d0e21e 4372
faef0170 4373 PL_in_eval = EVAL_INEVAL;
edb2152a
NC
4374 if (flags & G_KEEPERR)
4375 PL_in_eval |= EVAL_KEEPERR;
ab69dbc2
RGS
4376 else
4377 CLEAR_ERRSV();
edb2152a
NC
4378 if (flags & G_FAKINGEVAL) {
4379 PL_eval_root = PL_op; /* Only needed so that goto works right. */
4380 }
4381 return cx;
4382}
4383
4384PP(pp_entertry)
4385{
4386 dVAR;
df528165 4387 PERL_CONTEXT * const cx = create_eval_scope(0);
edb2152a 4388 cx->blk_eval.retop = cLOGOP->op_other->op_next;
533c011a 4389 return DOCATCH(PL_op->op_next);
a0d0e21e
LW
4390}
4391
4392PP(pp_leavetry)
4393{
27da23d5 4394 dVAR; dSP;
a0d0e21e
LW
4395 SV **newsp;
4396 PMOP *newpm;
4397 I32 gimme;
c09156bb 4398 register PERL_CONTEXT *cx;
a0d0e21e
LW
4399 I32 optype;
4400
011c3814 4401 PERL_ASYNC_CHECK();
a0d0e21e
LW
4402 POPBLOCK(cx,newpm);
4403 POPEVAL(cx);
9d4ba2ae 4404 PERL_UNUSED_VAR(optype);
a0d0e21e 4405
a1f49e72 4406 TAINT_NOT;
b9d76716 4407 SP = adjust_stack_on_leave(newsp, SP, newsp, gimme, SVs_PADTMP|SVs_TEMP);
3280af22 4408 PL_curpm = newpm; /* Don't pop $1 et al till now */
a0d0e21e 4409
d343c3ef 4410 LEAVE_with_name("eval_scope");
ab69dbc2 4411 CLEAR_ERRSV();
745cf2ff 4412 RETURN;
a0d0e21e
LW
4413}
4414
0d863452
RH
4415PP(pp_entergiven)
4416{
4417 dVAR; dSP;
4418 register PERL_CONTEXT *cx;
4419 const I32 gimme = GIMME_V;
4420
d343c3ef 4421 ENTER_with_name("given");
0d863452
RH
4422 SAVETMPS;
4423
87e4a53a 4424 SAVECLEARSV(PAD_SVl(PL_op->op_targ));
f7010667 4425 sv_setsv_mg(PAD_SV(PL_op->op_targ), POPs);
0d863452
RH
4426
4427 PUSHBLOCK(cx, CXt_GIVEN, SP);
4428 PUSHGIVEN(cx);
4429
4430 RETURN;
4431}
4432
4433PP(pp_leavegiven)
4434{
4435 dVAR; dSP;
4436 register PERL_CONTEXT *cx;
4437 I32 gimme;
4438 SV **newsp;
4439 PMOP *newpm;
96a5add6 4440 PERL_UNUSED_CONTEXT;
0d863452
RH
4441
4442 POPBLOCK(cx,newpm);
4443 assert(CxTYPE(cx) == CXt_GIVEN);
0d863452 4444
25b991bf 4445 TAINT_NOT;
b9d76716 4446 SP = adjust_stack_on_leave(newsp, SP, newsp, gimme, SVs_PADTMP|SVs_TEMP);
25b991bf 4447 PL_curpm = newpm; /* Don't pop $1 et al till now */
0d863452 4448
d343c3ef 4449 LEAVE_with_name("given");
25b991bf 4450 RETURN;
0d863452
RH
4451}
4452
4453/* Helper routines used by pp_smartmatch */
4136a0f7 4454STATIC PMOP *
84679df5 4455S_make_matcher(pTHX_ REGEXP *re)
0d863452 4456{
97aff369 4457 dVAR;
0d863452 4458 PMOP *matcher = (PMOP *) newPMOP(OP_MATCH, OPf_WANT_SCALAR | OPf_STACKED);
7918f24d
NC
4459
4460 PERL_ARGS_ASSERT_MAKE_MATCHER;
4461
d6106309 4462 PM_SETRE(matcher, ReREFCNT_inc(re));
7918f24d 4463
0d863452 4464 SAVEFREEOP((OP *) matcher);
d343c3ef 4465 ENTER_with_name("matcher"); SAVETMPS;
0d863452
RH
4466 SAVEOP();
4467 return matcher;
4468}
4469
4136a0f7 4470STATIC bool
0d863452
RH
4471S_matcher_matches_sv(pTHX_ PMOP *matcher, SV *sv)
4472{
97aff369 4473 dVAR;
0d863452 4474 dSP;
7918f24d
NC
4475
4476 PERL_ARGS_ASSERT_MATCHER_MATCHES_SV;
0d863452
RH
4477
4478 PL_op = (OP *) matcher;
4479 XPUSHs(sv);
4480 PUTBACK;
897d3989 4481 (void) Perl_pp_match(aTHX);
0d863452
RH
4482 SPAGAIN;
4483 return (SvTRUEx(POPs));
4484}
4485
4136a0f7 4486STATIC void
0d863452
RH
4487S_destroy_matcher(pTHX_ PMOP *matcher)
4488{
97aff369 4489 dVAR;
7918f24d
NC
4490
4491 PERL_ARGS_ASSERT_DESTROY_MATCHER;
0d863452 4492 PERL_UNUSED_ARG(matcher);
7918f24d 4493
0d863452 4494 FREETMPS;
d343c3ef 4495 LEAVE_with_name("matcher");
0d863452
RH
4496}
4497
4498/* Do a smart match */
4499PP(pp_smartmatch)
4500{
d7c0d282 4501 DEBUG_M(Perl_deb(aTHX_ "Starting smart match resolution\n"));
be88a5c3 4502 return do_smartmatch(NULL, NULL, 0);
0d863452
RH
4503}
4504
4b021f5f
RGS
4505/* This version of do_smartmatch() implements the
4506 * table of smart matches that is found in perlsyn.
0d863452 4507 */
4136a0f7 4508STATIC OP *
be88a5c3 4509S_do_smartmatch(pTHX_ HV *seen_this, HV *seen_other, const bool copied)
0d863452 4510{
97aff369 4511 dVAR;
0d863452
RH
4512 dSP;
4513
41e726ac 4514 bool object_on_left = FALSE;
0d863452
RH
4515 SV *e = TOPs; /* e is for 'expression' */
4516 SV *d = TOPm1s; /* d is for 'default', as in PL_defgv */
a566f585 4517
6f1401dc
DM
4518 /* Take care only to invoke mg_get() once for each argument.
4519 * Currently we do this by copying the SV if it's magical. */
4520 if (d) {
be88a5c3 4521 if (!copied && SvGMAGICAL(d))
6f1401dc
DM
4522 d = sv_mortalcopy(d);
4523 }
4524 else
4525 d = &PL_sv_undef;
4526
4527 assert(e);
4528 if (SvGMAGICAL(e))
4529 e = sv_mortalcopy(e);
4530
2c9d2554 4531 /* First of all, handle overload magic of the rightmost argument */
6d743019 4532 if (SvAMAGIC(e)) {
d7c0d282
DM
4533 SV * tmpsv;
4534 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-Object\n"));
4535 DEBUG_M(Perl_deb(aTHX_ " attempting overload\n"));
4536
4537 tmpsv = amagic_call(d, e, smart_amg, 0);
7c41e62e
RGS
4538 if (tmpsv) {
4539 SPAGAIN;
4540 (void)POPs;
4541 SETs(tmpsv);
4542 RETURN;
4543 }
d7c0d282 4544 DEBUG_M(Perl_deb(aTHX_ " failed to run overload method; continuing...\n"));
7c41e62e 4545 }
62ec5f58 4546
0d863452
RH
4547 SP -= 2; /* Pop the values */
4548
0d863452 4549
b0138e99 4550 /* ~~ undef */
62ec5f58 4551 if (!SvOK(e)) {
d7c0d282 4552 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-undef\n"));
62ec5f58 4553 if (SvOK(d))
33570f8b
RGS
4554 RETPUSHNO;
4555 else
62ec5f58 4556 RETPUSHYES;
33570f8b 4557 }
e67b97bd 4558
d7c0d282
DM
4559 if (sv_isobject(e) && (SvTYPE(SvRV(e)) != SVt_REGEXP)) {
4560 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-Object\n"));
62ec5f58 4561 Perl_croak(aTHX_ "Smart matching a non-overloaded object breaks encapsulation");
d7c0d282 4562 }
41e726ac
RGS
4563 if (sv_isobject(d) && (SvTYPE(SvRV(d)) != SVt_REGEXP))
4564 object_on_left = TRUE;
62ec5f58 4565
b0138e99 4566 /* ~~ sub */
a4a197da 4567 if (SvROK(e) && SvTYPE(SvRV(e)) == SVt_PVCV) {
0d863452 4568 I32 c;
41e726ac
RGS
4569 if (object_on_left) {
4570 goto sm_any_sub; /* Treat objects like scalars */
4571 }
4572 else if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVHV) {
a4a197da
RGS
4573 /* Test sub truth for each key */
4574 HE *he;
4575 bool andedresults = TRUE;
4576 HV *hv = (HV*) SvRV(d);
168ff818 4577 I32 numkeys = hv_iterinit(hv);
d7c0d282 4578 DEBUG_M(Perl_deb(aTHX_ " applying rule Hash-CodeRef\n"));
168ff818 4579 if (numkeys == 0)
07edf497 4580 RETPUSHYES;
a4a197da 4581 while ( (he = hv_iternext(hv)) ) {
d7c0d282 4582 DEBUG_M(Perl_deb(aTHX_ " testing hash key...\n"));
d343c3ef 4583 ENTER_with_name("smartmatch_hash_key_test");
a4a197da
RGS
4584 SAVETMPS;
4585 PUSHMARK(SP);
4586 PUSHs(hv_iterkeysv(he));
4587 PUTBACK;
4588 c = call_sv(e, G_SCALAR);
4589 SPAGAIN;
4590 if (c == 0)
4591 andedresults = FALSE;
4592 else
4593 andedresults = SvTRUEx(POPs) && andedresults;
4594 FREETMPS;
d343c3ef 4595 LEAVE_with_name("smartmatch_hash_key_test");
a4a197da
RGS
4596 }
4597 if (andedresults)
4598 RETPUSHYES;
4599 else
4600 RETPUSHNO;
4601 }
4602 else if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVAV) {
4603 /* Test sub truth for each element */
4604 I32 i;
4605 bool andedresults = TRUE;
4606 AV *av = (AV*) SvRV(d);
4607 const I32 len = av_len(av);
d7c0d282 4608 DEBUG_M(Perl_deb(aTHX_ " applying rule Array-CodeRef\n"));
168ff818 4609 if (len == -1)
07edf497 4610 RETPUSHYES;
a4a197da
RGS
4611 for (i = 0; i <= len; ++i) {
4612 SV * const * const svp = av_fetch(av, i, FALSE);
d7c0d282 4613 DEBUG_M(Perl_deb(aTHX_ " testing array element...\n"));
d343c3ef 4614 ENTER_with_name("smartmatch_array_elem_test");
a4a197da
RGS
4615 SAVETMPS;
4616 PUSHMARK(SP);
4617 if (svp)
4618 PUSHs(*svp);
4619 PUTBACK;
4620 c = call_sv(e, G_SCALAR);
4621 SPAGAIN;
4622 if (c == 0)
4623 andedresults = FALSE;
4624 else
4625 andedresults = SvTRUEx(POPs) && andedresults;
4626 FREETMPS;
d343c3ef 4627 LEAVE_with_name("smartmatch_array_elem_test");
a4a197da
RGS
4628 }
4629 if (andedresults)
4630 RETPUSHYES;
4631 else
4632 RETPUSHNO;
4633 }
4634 else {
41e726ac 4635 sm_any_sub:
d7c0d282 4636 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-CodeRef\n"));
d343c3ef 4637 ENTER_with_name("smartmatch_coderef");
a4a197da
RGS
4638 SAVETMPS;
4639 PUSHMARK(SP);
4640 PUSHs(d);
4641 PUTBACK;
4642 c = call_sv(e, G_SCALAR);
4643 SPAGAIN;
4644 if (c == 0)
4645 PUSHs(&PL_sv_no);
4646 else if (SvTEMP(TOPs))
4647 SvREFCNT_inc_void(TOPs);
4648 FREETMPS;
d343c3ef 4649 LEAVE_with_name("smartmatch_coderef");
a4a197da
RGS
4650 RETURN;
4651 }
0d863452 4652 }
b0138e99 4653 /* ~~ %hash */
61a621c6 4654 else if (SvROK(e) && SvTYPE(SvRV(e)) == SVt_PVHV) {
41e726ac
RGS
4655 if (object_on_left) {
4656 goto sm_any_hash; /* Treat objects like scalars */
4657 }
4658 else if (!SvOK(d)) {
d7c0d282 4659 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-Hash ($a undef)\n"));
61a621c6
RGS
4660 RETPUSHNO;
4661 }
4662 else if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVHV) {
0d863452
RH
4663 /* Check that the key-sets are identical */
4664 HE *he;
61a621c6 4665 HV *other_hv = MUTABLE_HV(SvRV(d));
0d863452
RH
4666 bool tied = FALSE;
4667 bool other_tied = FALSE;
4668 U32 this_key_count = 0,
4669 other_key_count = 0;
33ed63a2 4670 HV *hv = MUTABLE_HV(SvRV(e));
d7c0d282
DM
4671
4672 DEBUG_M(Perl_deb(aTHX_ " applying rule Hash-Hash\n"));
0d863452 4673 /* Tied hashes don't know how many keys they have. */
33ed63a2 4674 if (SvTIED_mg((SV*)hv, PERL_MAGIC_tied)) {
0d863452
RH
4675 tied = TRUE;
4676 }
ad64d0ec 4677 else if (SvTIED_mg((const SV *)other_hv, PERL_MAGIC_tied)) {
c445ea15 4678 HV * const temp = other_hv;
33ed63a2
RGS
4679 other_hv = hv;
4680 hv = temp;
0d863452
RH
4681 tied = TRUE;
4682 }
ad64d0ec 4683 if (SvTIED_mg((const SV *)other_hv, PERL_MAGIC_tied))
0d863452
RH
4684 other_tied = TRUE;
4685
33ed63a2 4686 if (!tied && HvUSEDKEYS((const HV *) hv) != HvUSEDKEYS(other_hv))
0d863452
RH
4687 RETPUSHNO;
4688
4689 /* The hashes have the same number of keys, so it suffices
4690 to check that one is a subset of the other. */
33ed63a2
RGS
4691 (void) hv_iterinit(hv);
4692 while ( (he = hv_iternext(hv)) ) {
b15feb55 4693 SV *key = hv_iterkeysv(he);
d7c0d282
DM
4694
4695 DEBUG_M(Perl_deb(aTHX_ " comparing hash key...\n"));
0d863452
RH
4696 ++ this_key_count;
4697
b15feb55 4698 if(!hv_exists_ent(other_hv, key, 0)) {
33ed63a2 4699 (void) hv_iterinit(hv); /* reset iterator */
0d863452
RH
4700 RETPUSHNO;
4701 }
4702 }
4703
4704 if (other_tied) {
4705 (void) hv_iterinit(other_hv);
4706 while ( hv_iternext(other_hv) )
4707 ++other_key_count;
4708 }
4709 else
4710 other_key_count = HvUSEDKEYS(other_hv);
4711
4712 if (this_key_count != other_key_count)
4713 RETPUSHNO;
4714 else
4715 RETPUSHYES;
4716 }
61a621c6
RGS
4717 else if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVAV) {
4718 AV * const other_av = MUTABLE_AV(SvRV(d));
c445ea15 4719 const I32 other_len = av_len(other_av) + 1;
0d863452 4720 I32 i;
33ed63a2 4721 HV *hv = MUTABLE_HV(SvRV(e));
71b0fb34 4722
d7c0d282 4723 DEBUG_M(Perl_deb(aTHX_ " applying rule Array-Hash\n"));
71b0fb34 4724 for (i = 0; i < other_len; ++i) {
c445ea15 4725 SV ** const svp = av_fetch(other_av, i, FALSE);
d7c0d282 4726 DEBUG_M(Perl_deb(aTHX_ " checking for key existence...\n"));
71b0fb34 4727 if (svp) { /* ??? When can this not happen? */
b15feb55 4728 if (hv_exists_ent(hv, *svp, 0))
71b0fb34
DK
4729 RETPUSHYES;
4730 }
0d863452 4731 }
71b0fb34 4732 RETPUSHNO;
0d863452 4733 }
a566f585 4734 else if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_REGEXP) {
d7c0d282 4735 DEBUG_M(Perl_deb(aTHX_ " applying rule Regex-Hash\n"));
ea0c2dbd
RGS
4736 sm_regex_hash:
4737 {
4738 PMOP * const matcher = make_matcher((REGEXP*) SvRV(d));
4739 HE *he;
4740 HV *hv = MUTABLE_HV(SvRV(e));
4741
4742 (void) hv_iterinit(hv);
4743 while ( (he = hv_iternext(hv)) ) {
d7c0d282 4744 DEBUG_M(Perl_deb(aTHX_ " testing key against pattern...\n"));
ea0c2dbd
RGS
4745 if (matcher_matches_sv(matcher, hv_iterkeysv(he))) {
4746 (void) hv_iterinit(hv);
4747 destroy_matcher(matcher);
4748 RETPUSHYES;
4749 }
0d863452 4750 }
ea0c2dbd
RGS
4751 destroy_matcher(matcher);
4752 RETPUSHNO;
0d863452 4753 }
0d863452
RH
4754 }
4755 else {
41e726ac 4756 sm_any_hash:
d7c0d282 4757 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-Hash\n"));
61a621c6 4758 if (hv_exists_ent(MUTABLE_HV(SvRV(e)), d, 0))
0d863452
RH
4759 RETPUSHYES;
4760 else
4761 RETPUSHNO;
4762 }
4763 }
b0138e99
RGS
4764 /* ~~ @array */
4765 else if (SvROK(e) && SvTYPE(SvRV(e)) == SVt_PVAV) {
41e726ac
RGS
4766 if (object_on_left) {
4767 goto sm_any_array; /* Treat objects like scalars */
4768 }
4769 else if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVHV) {
b0138e99
RGS
4770 AV * const other_av = MUTABLE_AV(SvRV(e));
4771 const I32 other_len = av_len(other_av) + 1;
4772 I32 i;
4773
d7c0d282 4774 DEBUG_M(Perl_deb(aTHX_ " applying rule Hash-Array\n"));
b0138e99
RGS
4775 for (i = 0; i < other_len; ++i) {
4776 SV ** const svp = av_fetch(other_av, i, FALSE);
d7c0d282
DM
4777
4778 DEBUG_M(Perl_deb(aTHX_ " testing for key existence...\n"));
b0138e99 4779 if (svp) { /* ??? When can this not happen? */
b15feb55 4780 if (hv_exists_ent(MUTABLE_HV(SvRV(d)), *svp, 0))
b0138e99
RGS
4781 RETPUSHYES;
4782 }
4783 }
4784 RETPUSHNO;
4785 }
4786 if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVAV) {
4787 AV *other_av = MUTABLE_AV(SvRV(d));
d7c0d282 4788 DEBUG_M(Perl_deb(aTHX_ " applying rule Array-Array\n"));
b0138e99 4789 if (av_len(MUTABLE_AV(SvRV(e))) != av_len(other_av))
0d863452
RH
4790 RETPUSHNO;
4791 else {
4792 I32 i;
c445ea15 4793 const I32 other_len = av_len(other_av);
0d863452 4794
a0714e2c 4795 if (NULL == seen_this) {
0d863452 4796 seen_this = newHV();
ad64d0ec 4797 (void) sv_2mortal(MUTABLE_SV(seen_this));
0d863452 4798 }
a0714e2c 4799 if (NULL == seen_other) {
6bc991bf 4800 seen_other = newHV();
ad64d0ec 4801 (void) sv_2mortal(MUTABLE_SV(seen_other));
0d863452
RH
4802 }
4803 for(i = 0; i <= other_len; ++i) {
b0138e99 4804 SV * const * const this_elem = av_fetch(MUTABLE_AV(SvRV(e)), i, FALSE);
c445ea15
AL
4805 SV * const * const other_elem = av_fetch(other_av, i, FALSE);
4806
0d863452 4807 if (!this_elem || !other_elem) {
69c3dccf
RGS
4808 if ((this_elem && SvOK(*this_elem))
4809 || (other_elem && SvOK(*other_elem)))
0d863452
RH
4810 RETPUSHNO;
4811 }
365c4e3d
RGS
4812 else if (hv_exists_ent(seen_this,
4813 sv_2mortal(newSViv(PTR2IV(*this_elem))), 0) ||
4814 hv_exists_ent(seen_other,
4815 sv_2mortal(newSViv(PTR2IV(*other_elem))), 0))
0d863452
RH
4816 {
4817 if (*this_elem != *other_elem)
4818 RETPUSHNO;
4819 }
4820 else {
04fe65b0
RGS
4821 (void)hv_store_ent(seen_this,
4822 sv_2mortal(newSViv(PTR2IV(*this_elem))),
4823 &PL_sv_undef, 0);
4824 (void)hv_store_ent(seen_other,
4825 sv_2mortal(newSViv(PTR2IV(*other_elem))),
4826 &PL_sv_undef, 0);
0d863452 4827 PUSHs(*other_elem);
a566f585 4828 PUSHs(*this_elem);
0d863452
RH
4829
4830 PUTBACK;
d7c0d282 4831 DEBUG_M(Perl_deb(aTHX_ " recursively comparing array element...\n"));
be88a5c3 4832 (void) do_smartmatch(seen_this, seen_other, 0);
0d863452 4833 SPAGAIN;
d7c0d282 4834 DEBUG_M(Perl_deb(aTHX_ " recursion finished\n"));
0d863452
RH
4835
4836 if (!SvTRUEx(POPs))
4837 RETPUSHNO;
4838 }
4839 }
4840 RETPUSHYES;
4841 }
4842 }
a566f585 4843 else if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_REGEXP) {
d7c0d282 4844 DEBUG_M(Perl_deb(aTHX_ " applying rule Regex-Array\n"));
ea0c2dbd
RGS
4845 sm_regex_array:
4846 {
4847 PMOP * const matcher = make_matcher((REGEXP*) SvRV(d));
4848 const I32 this_len = av_len(MUTABLE_AV(SvRV(e)));
4849 I32 i;
0d863452 4850
ea0c2dbd
RGS
4851 for(i = 0; i <= this_len; ++i) {
4852 SV * const * const svp = av_fetch(MUTABLE_AV(SvRV(e)), i, FALSE);
d7c0d282 4853 DEBUG_M(Perl_deb(aTHX_ " testing element against pattern...\n"));
ea0c2dbd
RGS
4854 if (svp && matcher_matches_sv(matcher, *svp)) {
4855 destroy_matcher(matcher);
4856 RETPUSHYES;
4857 }
0d863452 4858 }
ea0c2dbd
RGS
4859 destroy_matcher(matcher);
4860 RETPUSHNO;
0d863452 4861 }
0d863452 4862 }
015eb7b9
RGS
4863 else if (!SvOK(d)) {
4864 /* undef ~~ array */
4865 const I32 this_len = av_len(MUTABLE_AV(SvRV(e)));
0d863452
RH
4866 I32 i;
4867
d7c0d282 4868 DEBUG_M(Perl_deb(aTHX_ " applying rule Undef-Array\n"));
015eb7b9 4869 for (i = 0; i <= this_len; ++i) {
b0138e99 4870 SV * const * const svp = av_fetch(MUTABLE_AV(SvRV(e)), i, FALSE);
d7c0d282 4871 DEBUG_M(Perl_deb(aTHX_ " testing for undef element...\n"));
015eb7b9 4872 if (!svp || !SvOK(*svp))
0d863452
RH
4873 RETPUSHYES;
4874 }
4875 RETPUSHNO;
4876 }
015eb7b9 4877 else {
41e726ac
RGS
4878 sm_any_array:
4879 {
4880 I32 i;
4881 const I32 this_len = av_len(MUTABLE_AV(SvRV(e)));
0d863452 4882
d7c0d282 4883 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-Array\n"));
41e726ac
RGS
4884 for (i = 0; i <= this_len; ++i) {
4885 SV * const * const svp = av_fetch(MUTABLE_AV(SvRV(e)), i, FALSE);
4886 if (!svp)
4887 continue;
015eb7b9 4888
41e726ac
RGS
4889 PUSHs(d);
4890 PUSHs(*svp);
4891 PUTBACK;
4892 /* infinite recursion isn't supposed to happen here */
d7c0d282 4893 DEBUG_M(Perl_deb(aTHX_ " recursively testing array element...\n"));
be88a5c3 4894 (void) do_smartmatch(NULL, NULL, 1);
41e726ac 4895 SPAGAIN;
d7c0d282 4896 DEBUG_M(Perl_deb(aTHX_ " recursion finished\n"));
41e726ac
RGS
4897 if (SvTRUEx(POPs))
4898 RETPUSHYES;
4899 }
4900 RETPUSHNO;
0d863452 4901 }
0d863452
RH
4902 }
4903 }
b0138e99 4904 /* ~~ qr// */
a566f585 4905 else if (SvROK(e) && SvTYPE(SvRV(e)) == SVt_REGEXP) {
ea0c2dbd
RGS
4906 if (!object_on_left && SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVHV) {
4907 SV *t = d; d = e; e = t;
d7c0d282 4908 DEBUG_M(Perl_deb(aTHX_ " applying rule Hash-Regex\n"));
ea0c2dbd
RGS
4909 goto sm_regex_hash;
4910 }
4911 else if (!object_on_left && SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVAV) {
4912 SV *t = d; d = e; e = t;
d7c0d282 4913 DEBUG_M(Perl_deb(aTHX_ " applying rule Array-Regex\n"));
ea0c2dbd
RGS
4914 goto sm_regex_array;
4915 }
4916 else {
4917 PMOP * const matcher = make_matcher((REGEXP*) SvRV(e));
0d863452 4918
d7c0d282 4919 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-Regex\n"));
ea0c2dbd
RGS
4920 PUTBACK;
4921 PUSHs(matcher_matches_sv(matcher, d)
4922 ? &PL_sv_yes
4923 : &PL_sv_no);
4924 destroy_matcher(matcher);
4925 RETURN;
4926 }
0d863452 4927 }
b0138e99 4928 /* ~~ scalar */
2c9d2554
RGS
4929 /* See if there is overload magic on left */
4930 else if (object_on_left && SvAMAGIC(d)) {
4931 SV *tmpsv;
d7c0d282
DM
4932 DEBUG_M(Perl_deb(aTHX_ " applying rule Object-Any\n"));
4933 DEBUG_M(Perl_deb(aTHX_ " attempting overload\n"));
2c9d2554
RGS
4934 PUSHs(d); PUSHs(e);
4935 PUTBACK;
4936 tmpsv = amagic_call(d, e, smart_amg, AMGf_noright);
4937 if (tmpsv) {
4938 SPAGAIN;
4939 (void)POPs;
4940 SETs(tmpsv);
4941 RETURN;
4942 }
4943 SP -= 2;
d7c0d282 4944 DEBUG_M(Perl_deb(aTHX_ " failed to run overload method; falling back...\n"));
2c9d2554
RGS
4945 goto sm_any_scalar;
4946 }
fb51372e
RGS
4947 else if (!SvOK(d)) {
4948 /* undef ~~ scalar ; we already know that the scalar is SvOK */
d7c0d282 4949 DEBUG_M(Perl_deb(aTHX_ " applying rule undef-Any\n"));
fb51372e
RGS
4950 RETPUSHNO;
4951 }
2c9d2554
RGS
4952 else
4953 sm_any_scalar:
4954 if (SvNIOK(e) || (SvPOK(e) && looks_like_number(e) && SvNIOK(d))) {
d7c0d282
DM
4955 DEBUG_M(if (SvNIOK(e))
4956 Perl_deb(aTHX_ " applying rule Any-Num\n");
4957 else
4958 Perl_deb(aTHX_ " applying rule Num-numish\n");
4959 );
33ed63a2 4960 /* numeric comparison */
0d863452
RH
4961 PUSHs(d); PUSHs(e);
4962 PUTBACK;
a98fe34d 4963 if (CopHINTS_get(PL_curcop) & HINT_INTEGER)
897d3989 4964 (void) Perl_pp_i_eq(aTHX);
0d863452 4965 else
897d3989 4966 (void) Perl_pp_eq(aTHX);
0d863452
RH
4967 SPAGAIN;
4968 if (SvTRUEx(POPs))
4969 RETPUSHYES;
4970 else
4971 RETPUSHNO;
4972 }
4973
4974 /* As a last resort, use string comparison */
d7c0d282 4975 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-Any\n"));
0d863452
RH
4976 PUSHs(d); PUSHs(e);
4977 PUTBACK;
897d3989 4978 return Perl_pp_seq(aTHX);
0d863452
RH
4979}
4980
4981PP(pp_enterwhen)
4982{
4983 dVAR; dSP;
4984 register PERL_CONTEXT *cx;
4985 const I32 gimme = GIMME_V;
4986
4987 /* This is essentially an optimization: if the match
4988 fails, we don't want to push a context and then
4989 pop it again right away, so we skip straight
4990 to the op that follows the leavewhen.
25b991bf 4991 RETURNOP calls PUTBACK which restores the stack pointer after the POPs.
0d863452
RH
4992 */
4993 if ((0 == (PL_op->op_flags & OPf_SPECIAL)) && !SvTRUEx(POPs))
25b991bf 4994 RETURNOP(cLOGOP->op_other->op_next);
0d863452 4995
c08f093b 4996 ENTER_with_name("when");
0d863452
RH
4997 SAVETMPS;
4998
4999 PUSHBLOCK(cx, CXt_WHEN, SP);
5000 PUSHWHEN(cx);
5001
5002 RETURN;
5003}
5004
5005PP(pp_leavewhen)
5006{
5007 dVAR; dSP;
c08f093b 5008 I32 cxix;
0d863452 5009 register PERL_CONTEXT *cx;
c08f093b 5010 I32 gimme;
0d863452
RH
5011 SV **newsp;
5012 PMOP *newpm;
5013
c08f093b
VP
5014 cxix = dopoptogiven(cxstack_ix);
5015 if (cxix < 0)
5016 DIE(aTHX_ "Can't use when() outside a topicalizer");
5017
0d863452
RH
5018 POPBLOCK(cx,newpm);
5019 assert(CxTYPE(cx) == CXt_WHEN);
5020
c08f093b
VP
5021 TAINT_NOT;
5022 SP = adjust_stack_on_leave(newsp, SP, newsp, gimme, SVs_PADTMP|SVs_TEMP);
0d863452
RH
5023 PL_curpm = newpm; /* pop $1 et al */
5024
c08f093b
VP
5025 LEAVE_with_name("when");
5026
5027 if (cxix < cxstack_ix)
5028 dounwind(cxix);
5029
5030 cx = &cxstack[cxix];
5031
5032 if (CxFOREACH(cx)) {
5033 /* clear off anything above the scope we're re-entering */
5034 I32 inner = PL_scopestack_ix;
5035
5036 TOPBLOCK(cx);
5037 if (PL_scopestack_ix < inner)
5038 leave_scope(PL_scopestack[PL_scopestack_ix]);
5039 PL_curcop = cx->blk_oldcop;
5040
5041 return cx->blk_loop.my_op->op_nextop;
5042 }
5043 else
b1b5a4ae 5044 RETURNOP(cx->blk_givwhen.leave_op);
0d863452
RH
5045}
5046
5047PP(pp_continue)
5048{
c08f093b 5049 dVAR; dSP;
0d863452
RH
5050 I32 cxix;
5051 register PERL_CONTEXT *cx;
c08f093b
VP
5052 I32 gimme;
5053 SV **newsp;
5054 PMOP *newpm;
7be5bd17
FR
5055
5056 PERL_UNUSED_VAR(gimme);
0d863452
RH
5057
5058 cxix = dopoptowhen(cxstack_ix);
5059 if (cxix < 0)
5060 DIE(aTHX_ "Can't \"continue\" outside a when block");
c08f093b 5061
0d863452
RH
5062 if (cxix < cxstack_ix)
5063 dounwind(cxix);
5064
c08f093b
VP
5065 POPBLOCK(cx,newpm);
5066 assert(CxTYPE(cx) == CXt_WHEN);
5067
5068 SP = newsp;
5069 PL_curpm = newpm; /* pop $1 et al */
5070
5071 LEAVE_with_name("when");
5072 RETURNOP(cx->blk_givwhen.leave_op->op_next);
0d863452
RH
5073}
5074
5075PP(pp_break)
5076{
5077 dVAR;
5078 I32 cxix;
5079 register PERL_CONTEXT *cx;
25b991bf 5080
0d863452 5081 cxix = dopoptogiven(cxstack_ix);
c08f093b
VP
5082 if (cxix < 0)
5083 DIE(aTHX_ "Can't \"break\" outside a given block");
5084
5085 cx = &cxstack[cxix];
5086 if (CxFOREACH(cx))
0d863452
RH
5087 DIE(aTHX_ "Can't \"break\" in a loop topicalizer");
5088
5089 if (cxix < cxstack_ix)
5090 dounwind(cxix);
0d863452 5091
0787ea8a
VP
5092 /* Restore the sp at the time we entered the given block */
5093 TOPBLOCK(cx);
5094
c08f093b 5095 return cx->blk_givwhen.leave_op;
0d863452
RH
5096}
5097
74e0ddf7 5098static MAGIC *
cea2e8a9 5099S_doparseform(pTHX_ SV *sv)
a0d0e21e
LW
5100{
5101 STRLEN len;
37ffbfcc 5102 register char *s = SvPV(sv, len);
3808a683 5103 register char *send;
086b26f3
DM
5104 register char *base = NULL; /* start of current field */
5105 register I32 skipspaces = 0; /* number of contiguous spaces seen */
5106 bool noblank = FALSE; /* ~ or ~~ seen on this line */
5107 bool repeat = FALSE; /* ~~ seen on this line */
5108 bool postspace = FALSE; /* a text field may need right padding */
dea28490
JJ
5109 U32 *fops;
5110 register U32 *fpc;
086b26f3 5111 U32 *linepc = NULL; /* position of last FF_LINEMARK */
a0d0e21e 5112 register I32 arg;
086b26f3
DM
5113 bool ischop; /* it's a ^ rather than a @ */
5114 bool unchopnum = FALSE; /* at least one @ (i.e. non-chop) num field seen */
a1b95068 5115 int maxops = 12; /* FF_LINEMARK + FF_END + 10 (\0 without preceding \n) */
3808a683
DM
5116 MAGIC *mg = NULL;
5117 SV *sv_copy;
a0d0e21e 5118
7918f24d
NC
5119 PERL_ARGS_ASSERT_DOPARSEFORM;
5120
55497cff 5121 if (len == 0)
cea2e8a9 5122 Perl_croak(aTHX_ "Null picture in formline");
ac27b0f5 5123
3808a683
DM
5124 if (SvTYPE(sv) >= SVt_PVMG) {
5125 /* This might, of course, still return NULL. */
5126 mg = mg_find(sv, PERL_MAGIC_fm);
5127 } else {
5128 sv_upgrade(sv, SVt_PVMG);
5129 }
5130
5131 if (mg) {
5132 /* still the same as previously-compiled string? */
5133 SV *old = mg->mg_obj;
5134 if ( !(!!SvUTF8(old) ^ !!SvUTF8(sv))
5135 && len == SvCUR(old)
5136 && strnEQ(SvPVX(old), SvPVX(sv), len)
b57b1734
DM
5137 ) {
5138 DEBUG_f(PerlIO_printf(Perl_debug_log,"Re-using compiled format\n"));
3808a683 5139 return mg;
b57b1734 5140 }
3808a683 5141
b57b1734 5142 DEBUG_f(PerlIO_printf(Perl_debug_log, "Re-compiling format\n"));
3808a683
DM
5143 Safefree(mg->mg_ptr);
5144 mg->mg_ptr = NULL;
5145 SvREFCNT_dec(old);
5146 mg->mg_obj = NULL;
5147 }
b57b1734
DM
5148 else {
5149 DEBUG_f(PerlIO_printf(Perl_debug_log, "Compiling format\n"));
3808a683 5150 mg = sv_magicext(sv, NULL, PERL_MAGIC_fm, &PL_vtbl_fm, NULL, 0);
b57b1734 5151 }
3808a683
DM
5152
5153 sv_copy = newSVpvn_utf8(s, len, SvUTF8(sv));
5154 s = SvPV(sv_copy, len); /* work on the copy, not the original */
5155 send = s + len;
5156
5157
815f25c6
DM
5158 /* estimate the buffer size needed */
5159 for (base = s; s <= send; s++) {
a1b95068 5160 if (*s == '\n' || *s == '@' || *s == '^')
815f25c6
DM
5161 maxops += 10;
5162 }
5163 s = base;
c445ea15 5164 base = NULL;
815f25c6 5165
a02a5408 5166 Newx(fops, maxops, U32);
a0d0e21e
LW
5167 fpc = fops;
5168
5169 if (s < send) {
5170 linepc = fpc;
5171 *fpc++ = FF_LINEMARK;
5172 noblank = repeat = FALSE;
5173 base = s;
5174 }
5175
5176 while (s <= send) {
5177 switch (*s++) {
5178 default:
5179 skipspaces = 0;
5180 continue;
5181
5182 case '~':
5183 if (*s == '~') {
5184 repeat = TRUE;
b57b1734
DM
5185 skipspaces++;
5186 s++;
a0d0e21e
LW
5187 }
5188 noblank = TRUE;
a0d0e21e
LW
5189 /* FALL THROUGH */
5190 case ' ': case '\t':
5191 skipspaces++;
5192 continue;
a1b95068
WL
5193 case 0:
5194 if (s < send) {
5195 skipspaces = 0;
5196 continue;
5197 } /* else FALL THROUGH */
5198 case '\n':
a0d0e21e
LW
5199 arg = s - base;
5200 skipspaces++;
5201 arg -= skipspaces;
5202 if (arg) {
5f05dabc 5203 if (postspace)
a0d0e21e 5204 *fpc++ = FF_SPACE;
a0d0e21e 5205 *fpc++ = FF_LITERAL;
76912796 5206 *fpc++ = (U32)arg;
a0d0e21e 5207 }
5f05dabc 5208 postspace = FALSE;
a0d0e21e
LW
5209 if (s <= send)
5210 skipspaces--;
5211 if (skipspaces) {
5212 *fpc++ = FF_SKIP;
76912796 5213 *fpc++ = (U32)skipspaces;
a0d0e21e
LW
5214 }
5215 skipspaces = 0;
5216 if (s <= send)
5217 *fpc++ = FF_NEWLINE;
5218 if (noblank) {
5219 *fpc++ = FF_BLANK;
5220 if (repeat)
5221 arg = fpc - linepc + 1;
5222 else
5223 arg = 0;
76912796 5224 *fpc++ = (U32)arg;
a0d0e21e
LW
5225 }
5226 if (s < send) {
5227 linepc = fpc;
5228 *fpc++ = FF_LINEMARK;
5229 noblank = repeat = FALSE;
5230 base = s;
5231 }
5232 else
5233 s++;
5234 continue;
5235
5236 case '@':
5237 case '^':
5238 ischop = s[-1] == '^';
5239
5240 if (postspace) {
5241 *fpc++ = FF_SPACE;
5242 postspace = FALSE;
5243 }
5244 arg = (s - base) - 1;
5245 if (arg) {
5246 *fpc++ = FF_LITERAL;
76912796 5247 *fpc++ = (U32)arg;
a0d0e21e
LW
5248 }
5249
5250 base = s - 1;
5251 *fpc++ = FF_FETCH;
086b26f3 5252 if (*s == '*') { /* @* or ^* */
a0d0e21e 5253 s++;
a1b95068
WL
5254 *fpc++ = 2; /* skip the @* or ^* */
5255 if (ischop) {
5256 *fpc++ = FF_LINESNGL;
5257 *fpc++ = FF_CHOP;
5258 } else
5259 *fpc++ = FF_LINEGLOB;
a0d0e21e 5260 }
086b26f3 5261 else if (*s == '#' || (*s == '.' && s[1] == '#')) { /* @###, ^### */
a701009a 5262 arg = ischop ? FORM_NUM_BLANK : 0;
a0d0e21e
LW
5263 base = s - 1;
5264 while (*s == '#')
5265 s++;
5266 if (*s == '.') {
06b5626a 5267 const char * const f = ++s;
a0d0e21e
LW
5268 while (*s == '#')
5269 s++;
a701009a 5270 arg |= FORM_NUM_POINT + (s - f);
a0d0e21e
LW
5271 }
5272 *fpc++ = s - base; /* fieldsize for FETCH */
5273 *fpc++ = FF_DECIMAL;
76912796 5274 *fpc++ = (U32)arg;
a1b95068 5275 unchopnum |= ! ischop;
784707d5
JP
5276 }
5277 else if (*s == '0' && s[1] == '#') { /* Zero padded decimals */
a701009a 5278 arg = ischop ? FORM_NUM_BLANK : 0;
784707d5
JP
5279 base = s - 1;
5280 s++; /* skip the '0' first */
5281 while (*s == '#')
5282 s++;
5283 if (*s == '.') {
06b5626a 5284 const char * const f = ++s;
784707d5
JP
5285 while (*s == '#')
5286 s++;
a701009a 5287 arg |= FORM_NUM_POINT + (s - f);
784707d5
JP
5288 }
5289 *fpc++ = s - base; /* fieldsize for FETCH */
5290 *fpc++ = FF_0DECIMAL;
76912796 5291 *fpc++ = (U32)arg;
a1b95068 5292 unchopnum |= ! ischop;
a0d0e21e 5293 }
086b26f3 5294 else { /* text field */
a0d0e21e
LW
5295 I32 prespace = 0;
5296 bool ismore = FALSE;
5297
5298 if (*s == '>') {
5299 while (*++s == '>') ;
5300 prespace = FF_SPACE;
5301 }
5302 else if (*s == '|') {
5303 while (*++s == '|') ;
5304 prespace = FF_HALFSPACE;
5305 postspace = TRUE;
5306 }
5307 else {
5308 if (*s == '<')
5309 while (*++s == '<') ;
5310 postspace = TRUE;
5311 }
5312 if (*s == '.' && s[1] == '.' && s[2] == '.') {
5313 s += 3;
5314 ismore = TRUE;
5315 }
5316 *fpc++ = s - base; /* fieldsize for FETCH */
5317
5318 *fpc++ = ischop ? FF_CHECKCHOP : FF_CHECKNL;
5319
5320 if (prespace)
76912796 5321 *fpc++ = (U32)prespace; /* add SPACE or HALFSPACE */
a0d0e21e
LW
5322 *fpc++ = FF_ITEM;
5323 if (ismore)
5324 *fpc++ = FF_MORE;
5325 if (ischop)
5326 *fpc++ = FF_CHOP;
5327 }
5328 base = s;
5329 skipspaces = 0;
5330 continue;
5331 }
5332 }
5333 *fpc++ = FF_END;
5334
815f25c6 5335 assert (fpc <= fops + maxops); /* ensure our buffer estimate was valid */
a0d0e21e 5336 arg = fpc - fops;
74e0ddf7 5337
3808a683 5338 mg->mg_ptr = (char *) fops;
74e0ddf7 5339 mg->mg_len = arg * sizeof(U32);
3808a683
DM
5340 mg->mg_obj = sv_copy;
5341 mg->mg_flags |= MGf_REFCOUNTED;
a1b95068 5342
bfed75c6 5343 if (unchopnum && repeat)
75f63940 5344 Perl_die(aTHX_ "Repeated format line will never terminate (~~ and @#)");
74e0ddf7
NC
5345
5346 return mg;
a1b95068
WL
5347}
5348
5349
5350STATIC bool
5351S_num_overflow(NV value, I32 fldsize, I32 frcsize)
5352{
5353 /* Can value be printed in fldsize chars, using %*.*f ? */
5354 NV pwr = 1;
5355 NV eps = 0.5;
5356 bool res = FALSE;
5357 int intsize = fldsize - (value < 0 ? 1 : 0);
5358
a701009a 5359 if (frcsize & FORM_NUM_POINT)
a1b95068 5360 intsize--;
a701009a 5361 frcsize &= ~(FORM_NUM_POINT|FORM_NUM_BLANK);
a1b95068
WL
5362 intsize -= frcsize;
5363
5364 while (intsize--) pwr *= 10.0;
5365 while (frcsize--) eps /= 10.0;
5366
5367 if( value >= 0 ){
5368 if (value + eps >= pwr)
5369 res = TRUE;
5370 } else {
5371 if (value - eps <= -pwr)
5372 res = TRUE;
5373 }
5374 return res;
a0d0e21e 5375}
4e35701f 5376
bbed91b5 5377static I32
0bd48802 5378S_run_user_filter(pTHX_ int idx, SV *buf_sv, int maxlen)
bbed91b5 5379{
27da23d5 5380 dVAR;
0bd48802 5381 SV * const datasv = FILTER_DATA(idx);
504618e9 5382 const int filter_has_file = IoLINES(datasv);
ad64d0ec
NC
5383 SV * const filter_state = MUTABLE_SV(IoTOP_GV(datasv));
5384 SV * const filter_sub = MUTABLE_SV(IoBOTTOM_GV(datasv));
941a98a0 5385 int status = 0;
ec0b63d7 5386 SV *upstream;
941a98a0 5387 STRLEN got_len;
162177c1
Z
5388 char *got_p = NULL;
5389 char *prune_from = NULL;
34113e50 5390 bool read_from_cache = FALSE;
bb7a0f54
MHM
5391 STRLEN umaxlen;
5392
7918f24d
NC
5393 PERL_ARGS_ASSERT_RUN_USER_FILTER;
5394
bb7a0f54
MHM
5395 assert(maxlen >= 0);
5396 umaxlen = maxlen;
5675696b 5397
bbed91b5
KF
5398 /* I was having segfault trouble under Linux 2.2.5 after a
5399 parse error occured. (Had to hack around it with a test
13765c85 5400 for PL_parser->error_count == 0.) Solaris doesn't segfault --
bbed91b5
KF
5401 not sure where the trouble is yet. XXX */
5402
4464f08e
NC
5403 {
5404 SV *const cache = datasv;
937b367d
NC
5405 if (SvOK(cache)) {
5406 STRLEN cache_len;
5407 const char *cache_p = SvPV(cache, cache_len);
941a98a0
NC
5408 STRLEN take = 0;
5409
bb7a0f54 5410 if (umaxlen) {
941a98a0
NC
5411 /* Running in block mode and we have some cached data already.
5412 */
bb7a0f54 5413 if (cache_len >= umaxlen) {
941a98a0
NC
5414 /* In fact, so much data we don't even need to call
5415 filter_read. */
bb7a0f54 5416 take = umaxlen;
941a98a0
NC
5417 }
5418 } else {
10edeb5d
JH
5419 const char *const first_nl =
5420 (const char *)memchr(cache_p, '\n', cache_len);
941a98a0
NC
5421 if (first_nl) {
5422 take = first_nl + 1 - cache_p;
5423 }
5424 }
5425 if (take) {
5426 sv_catpvn(buf_sv, cache_p, take);
5427 sv_chop(cache, cache_p + take);
486ec47a 5428 /* Definitely not EOF */
937b367d
NC
5429 return 1;
5430 }
941a98a0 5431
937b367d 5432 sv_catsv(buf_sv, cache);
bb7a0f54
MHM
5433 if (umaxlen) {
5434 umaxlen -= cache_len;
941a98a0 5435 }
937b367d 5436 SvOK_off(cache);
34113e50 5437 read_from_cache = TRUE;
937b367d
NC
5438 }
5439 }
ec0b63d7 5440
34113e50
NC
5441 /* Filter API says that the filter appends to the contents of the buffer.
5442 Usually the buffer is "", so the details don't matter. But if it's not,
5443 then clearly what it contains is already filtered by this filter, so we
5444 don't want to pass it in a second time.
5445 I'm going to use a mortal in case the upstream filter croaks. */
ec0b63d7
NC
5446 upstream = ((SvOK(buf_sv) && sv_len(buf_sv)) || SvGMAGICAL(buf_sv))
5447 ? sv_newmortal() : buf_sv;
5448 SvUPGRADE(upstream, SVt_PV);
937b367d 5449
bbed91b5 5450 if (filter_has_file) {
67e70b33 5451 status = FILTER_READ(idx+1, upstream, 0);
bbed91b5
KF
5452 }
5453
34113e50 5454 if (filter_sub && status >= 0) {
39644a26 5455 dSP;
bbed91b5
KF
5456 int count;
5457
d343c3ef 5458 ENTER_with_name("call_filter_sub");
339c6c60
FC
5459 save_gp(PL_defgv, 0);
5460 GvINTRO_off(PL_defgv);
d34a6664 5461 SAVEGENERICSV(GvSV(PL_defgv));
bbed91b5
KF
5462 SAVETMPS;
5463 EXTEND(SP, 2);
5464
414bf5ae 5465 DEFSV_set(upstream);
d34a6664 5466 SvREFCNT_inc_simple_void_NN(upstream);
bbed91b5 5467 PUSHMARK(SP);
6e449a3a 5468 mPUSHi(0);
bbed91b5
KF
5469 if (filter_state) {
5470 PUSHs(filter_state);
5471 }
5472 PUTBACK;
5473 count = call_sv(filter_sub, G_SCALAR);
5474 SPAGAIN;
5475
5476 if (count > 0) {
5477 SV *out = POPs;
5478 if (SvOK(out)) {
941a98a0 5479 status = SvIV(out);
bbed91b5
KF
5480 }
5481 }
5482
5483 PUTBACK;
5484 FREETMPS;
d343c3ef 5485 LEAVE_with_name("call_filter_sub");
bbed91b5
KF
5486 }
5487
941a98a0
NC
5488 if(SvOK(upstream)) {
5489 got_p = SvPV(upstream, got_len);
bb7a0f54
MHM
5490 if (umaxlen) {
5491 if (got_len > umaxlen) {
5492 prune_from = got_p + umaxlen;
937b367d 5493 }
941a98a0 5494 } else {
162177c1 5495 char *const first_nl = (char *)memchr(got_p, '\n', got_len);
941a98a0
NC
5496 if (first_nl && first_nl + 1 < got_p + got_len) {
5497 /* There's a second line here... */
5498 prune_from = first_nl + 1;
937b367d 5499 }
937b367d
NC
5500 }
5501 }
941a98a0
NC
5502 if (prune_from) {
5503 /* Oh. Too long. Stuff some in our cache. */
5504 STRLEN cached_len = got_p + got_len - prune_from;
4464f08e 5505 SV *const cache = datasv;
941a98a0 5506
4464f08e 5507 if (SvOK(cache)) {
941a98a0
NC
5508 /* Cache should be empty. */
5509 assert(!SvCUR(cache));
5510 }
5511
5512 sv_setpvn(cache, prune_from, cached_len);
5513 /* If you ask for block mode, you may well split UTF-8 characters.
5514 "If it breaks, you get to keep both parts"
5515 (Your code is broken if you don't put them back together again
5516 before something notices.) */
5517 if (SvUTF8(upstream)) {
5518 SvUTF8_on(cache);
5519 }
5520 SvCUR_set(upstream, got_len - cached_len);
162177c1 5521 *prune_from = 0;
941a98a0
NC
5522 /* Can't yet be EOF */
5523 if (status == 0)
5524 status = 1;
5525 }
937b367d 5526
34113e50
NC
5527 /* If they are at EOF but buf_sv has something in it, then they may never
5528 have touched the SV upstream, so it may be undefined. If we naively
5529 concatenate it then we get a warning about use of uninitialised value.
5530 */
5531 if (upstream != buf_sv && (SvOK(upstream) || SvGMAGICAL(upstream))) {
937b367d
NC
5532 sv_catsv(buf_sv, upstream);
5533 }
5534
941a98a0 5535 if (status <= 0) {
bbed91b5 5536 IoLINES(datasv) = 0;
bbed91b5
KF
5537 if (filter_state) {
5538 SvREFCNT_dec(filter_state);
a0714e2c 5539 IoTOP_GV(datasv) = NULL;
bbed91b5
KF
5540 }
5541 if (filter_sub) {
5542 SvREFCNT_dec(filter_sub);
a0714e2c 5543 IoBOTTOM_GV(datasv) = NULL;
bbed91b5 5544 }
0bd48802 5545 filter_del(S_run_user_filter);
bbed91b5 5546 }
34113e50
NC
5547 if (status == 0 && read_from_cache) {
5548 /* If we read some data from the cache (and by getting here it implies
5549 that we emptied the cache) then we aren't yet at EOF, and mustn't
5550 report that to our caller. */
5551 return 1;
5552 }
941a98a0 5553 return status;
bbed91b5 5554}
84d4ea48 5555
be4b629d
CN
5556/* perhaps someone can come up with a better name for
5557 this? it is not really "absolute", per se ... */
cf42f822 5558static bool
5f66b61c 5559S_path_is_absolute(const char *name)
be4b629d 5560{
7918f24d
NC
5561 PERL_ARGS_ASSERT_PATH_IS_ABSOLUTE;
5562
be4b629d 5563 if (PERL_FILE_IS_ABSOLUTE(name)
3f66cd94 5564#ifdef WIN32
36f064bc
CL
5565 || (*name == '.' && ((name[1] == '/' ||
5566 (name[1] == '.' && name[2] == '/'))
5567 || (name[1] == '\\' ||
5568 ( name[1] == '.' && name[2] == '\\')))
5569 )
5570#else
be4b629d 5571 || (*name == '.' && (name[1] == '/' ||
0bd48802 5572 (name[1] == '.' && name[2] == '/')))
36f064bc 5573#endif
0bd48802 5574 )
be4b629d
CN
5575 {
5576 return TRUE;
5577 }
5578 else
5579 return FALSE;
5580}
241d1a3b
NC
5581
5582/*
5583 * Local variables:
5584 * c-indentation-style: bsd
5585 * c-basic-offset: 4
5586 * indent-tabs-mode: t
5587 * End:
5588 *
37442d52
RGS
5589 * ex: set ts=8 sts=4 sw=4 noet:
5590 */