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