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