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