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