This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update Scalar-List-utils to CPAN version 1.36
[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 3674 char *unixdir;
62f5ad7a 3675#endif
c445ea15
AL
3676 const char *tryname = NULL;
3677 SV *namesv = NULL;
f54cb97a 3678 const I32 gimme = GIMME_V;
bbed91b5 3679 int filter_has_file = 0;
c445ea15 3680 PerlIO *tryrsfp = NULL;
34113e50 3681 SV *filter_cache = NULL;
c445ea15
AL
3682 SV *filter_state = NULL;
3683 SV *filter_sub = NULL;
3684 SV *hook_sv = NULL;
6ec9efec
JH
3685 SV *encoding;
3686 OP *op;
83b195e4 3687 int saved_errno;
511712dc 3688 bool path_searchable;
a0d0e21e
LW
3689
3690 sv = POPs;
d7aa5382 3691 if ( (SvNIOKp(sv) || SvVOK(sv)) && PL_op->op_type != OP_DOFILE) {
d086148c 3692 sv = sv_2mortal(new_version(sv));
88010bae 3693 if (!Perl_sv_derived_from_pvn(aTHX_ PL_patchlevel, STR_WITH_LEN("version"), 0))
ac0e6a2f 3694 upg_version(PL_patchlevel, TRUE);
149c1637 3695 if (cUNOP->op_first->op_type == OP_CONST && cUNOP->op_first->op_private & OPpCONST_NOVER) {
3cacfbb9 3696 if ( vcmp(sv,PL_patchlevel) <= 0 )
468aa647 3697 DIE(aTHX_ "Perls since %"SVf" too modern--this is %"SVf", stopped",
e753e3b1
FC
3698 SVfARG(sv_2mortal(vnormal(sv))),
3699 SVfARG(sv_2mortal(vnormal(PL_patchlevel)))
3700 );
468aa647
RGS
3701 }
3702 else {
d1029faa
JP
3703 if ( vcmp(sv,PL_patchlevel) > 0 ) {
3704 I32 first = 0;
3705 AV *lav;
3706 SV * const req = SvRV(sv);
85fbaab2 3707 SV * const pv = *hv_fetchs(MUTABLE_HV(req), "original", FALSE);
d1029faa
JP
3708
3709 /* get the left hand term */
502c6561 3710 lav = MUTABLE_AV(SvRV(*hv_fetchs(MUTABLE_HV(req), "version", FALSE)));
d1029faa
JP
3711
3712 first = SvIV(*av_fetch(lav,0,0));
3713 if ( first > (int)PERL_REVISION /* probably 'use 6.0' */
85fbaab2 3714 || hv_exists(MUTABLE_HV(req), "qv", 2 ) /* qv style */
d1029faa
JP
3715 || av_len(lav) > 1 /* FP with > 3 digits */
3716 || strstr(SvPVX(pv),".0") /* FP with leading 0 */
3717 ) {
3718 DIE(aTHX_ "Perl %"SVf" required--this is only "
9d056fb0
FC
3719 "%"SVf", stopped",
3720 SVfARG(sv_2mortal(vnormal(req))),
3721 SVfARG(sv_2mortal(vnormal(PL_patchlevel)))
3722 );
d1029faa
JP
3723 }
3724 else { /* probably 'use 5.10' or 'use 5.8' */
af61dbfd 3725 SV *hintsv;
d1029faa
JP
3726 I32 second = 0;
3727
3728 if (av_len(lav)>=1)
3729 second = SvIV(*av_fetch(lav,1,0));
3730
3731 second /= second >= 600 ? 100 : 10;
af61dbfd
NC
3732 hintsv = Perl_newSVpvf(aTHX_ "v%d.%d.0",
3733 (int)first, (int)second);
d1029faa
JP
3734 upg_version(hintsv, TRUE);
3735
3736 DIE(aTHX_ "Perl %"SVf" required (did you mean %"SVf"?)"
3737 "--this is only %"SVf", stopped",
1be7d6f3
FC
3738 SVfARG(sv_2mortal(vnormal(req))),
3739 SVfARG(sv_2mortal(vnormal(sv_2mortal(hintsv)))),
3740 SVfARG(sv_2mortal(vnormal(PL_patchlevel)))
3741 );
d1029faa
JP
3742 }
3743 }
468aa647 3744 }
d7aa5382 3745
7dfde25d 3746 RETPUSHYES;
a0d0e21e 3747 }
5c144d81 3748 name = SvPV_const(sv, len);
6132ea6c 3749 if (!(name && len > 0 && *name))
cea2e8a9 3750 DIE(aTHX_ "Null filename used");
41188aa0 3751 if (!IS_SAFE_PATHNAME(name, len, "require")) {
c8028aa6
TC
3752 DIE(aTHX_ "Can't locate %s: %s",
3753 pv_escape(newSVpvs_flags("",SVs_TEMP),SvPVX(sv),SvCUR(sv),
3754 SvCUR(sv)*2,NULL, SvUTF8(sv)?PERL_PV_ESCAPE_UNI:0),
3755 Strerror(ENOENT));
3756 }
4633a7c4 3757 TAINT_PROPER("require");
4492be7a 3758
511712dc 3759 path_searchable = path_is_searchable(name);
4492be7a
JM
3760
3761#ifdef VMS
3762 /* The key in the %ENV hash is in the syntax of file passed as the argument
3763 * usually this is in UNIX format, but sometimes in VMS format, which
3764 * can result in a module being pulled in more than once.
3765 * To prevent this, the key must be stored in UNIX format if the VMS
3766 * name can be translated to UNIX.
3767 */
155f4c25 3768
8de90695
FC
3769 if ((unixname =
3770 tounixspec(name, SvPVX(sv_2mortal(newSVpv("", VMS_MAXRSS-1)))))
3771 != NULL) {
4492be7a
JM
3772 unixlen = strlen(unixname);
3773 vms_unixname = 1;
3774 }
3775 else
3776#endif
3777 {
3778 /* if not VMS or VMS name can not be translated to UNIX, pass it
3779 * through.
3780 */
3781 unixname = (char *) name;
3782 unixlen = len;
3783 }
44f8325f 3784 if (PL_op->op_type == OP_REQUIRE) {
4492be7a
JM
3785 SV * const * const svp = hv_fetch(GvHVn(PL_incgv),
3786 unixname, unixlen, 0);
44f8325f
AL
3787 if ( svp ) {
3788 if (*svp != &PL_sv_undef)
3789 RETPUSHYES;
3790 else
087b5369
RD
3791 DIE(aTHX_ "Attempt to reload %s aborted.\n"
3792 "Compilation failed in require", unixname);
44f8325f 3793 }
4d8b06f1 3794 }
a0d0e21e 3795
32aeab29
SM
3796 LOADING_FILE_PROBE(unixname);
3797
a0d0e21e
LW
3798 /* prepare to compile file */
3799
511712dc 3800 if (!path_searchable) {
282b29ee 3801 /* At this point, name is SvPVX(sv) */
46fc3d4c 3802 tryname = name;
282b29ee 3803 tryrsfp = doopen_pm(sv);
bf4acbe4 3804 }
511712dc 3805 if (!tryrsfp && !(errno == EACCES && !path_searchable)) {
44f8325f 3806 AV * const ar = GvAVn(PL_incgv);
c70927a6 3807 SSize_t i;
748a9306 3808#ifdef VMS
4492be7a 3809 if (vms_unixname)
46fc3d4c 3810#endif
3811 {
9ffd39ab 3812 SV *nsv = sv;
d0328fd7 3813 namesv = newSV_type(SVt_PV);
46fc3d4c 3814 for (i = 0; i <= AvFILL(ar); i++) {
df528165 3815 SV * const dirsv = *av_fetch(ar, i, TRUE);
bbed91b5 3816
6567ce24 3817 SvGETMAGIC(dirsv);
bbed91b5
KF
3818 if (SvROK(dirsv)) {
3819 int count;
a3b58a99 3820 SV **svp;
bbed91b5
KF
3821 SV *loader = dirsv;
3822
e14e2dc8 3823 if (SvTYPE(SvRV(loader)) == SVt_PVAV
6567ce24 3824 && !SvOBJECT(SvRV(loader)))
e14e2dc8 3825 {
502c6561 3826 loader = *av_fetch(MUTABLE_AV(SvRV(loader)), 0, TRUE);
6567ce24 3827 SvGETMAGIC(loader);
bbed91b5
KF
3828 }
3829
b900a521 3830 Perl_sv_setpvf(aTHX_ namesv, "/loader/0x%"UVxf"/%s",
44f0be63 3831 PTR2UV(SvRV(dirsv)), name);
349d4f2f 3832 tryname = SvPVX_const(namesv);
c445ea15 3833 tryrsfp = NULL;
bbed91b5 3834
9ffd39ab
FC
3835 if (SvPADTMP(nsv)) {
3836 nsv = sv_newmortal();
3837 SvSetSV_nosteal(nsv,sv);
3838 }
901ee108
FC
3839
3840 ENTER_with_name("call_INC");
3841 SAVETMPS;
bbed91b5
KF
3842 EXTEND(SP, 2);
3843
3844 PUSHMARK(SP);
3845 PUSHs(dirsv);
9ffd39ab 3846 PUSHs(nsv);
bbed91b5 3847 PUTBACK;
6567ce24
FC
3848 if (SvGMAGICAL(loader)) {
3849 SV *l = sv_newmortal();
3850 sv_setsv_nomg(l, loader);
3851 loader = l;
3852 }
e982885c
NC
3853 if (sv_isobject(loader))
3854 count = call_method("INC", G_ARRAY);
3855 else
3856 count = call_sv(loader, G_ARRAY);
bbed91b5
KF
3857 SPAGAIN;
3858
3859 if (count > 0) {
3860 int i = 0;
3861 SV *arg;
3862
3863 SP -= count - 1;
3864 arg = SP[i++];
3865
34113e50
NC
3866 if (SvROK(arg) && (SvTYPE(SvRV(arg)) <= SVt_PVLV)
3867 && !isGV_with_GP(SvRV(arg))) {
3868 filter_cache = SvRV(arg);
34113e50
NC
3869
3870 if (i < count) {
3871 arg = SP[i++];
3872 }
3873 }
3874
6e592b3a 3875 if (SvROK(arg) && isGV_with_GP(SvRV(arg))) {
bbed91b5
KF
3876 arg = SvRV(arg);
3877 }
3878
6e592b3a 3879 if (isGV_with_GP(arg)) {
159b6efe 3880 IO * const io = GvIO((const GV *)arg);
bbed91b5
KF
3881
3882 ++filter_has_file;
3883
3884 if (io) {
3885 tryrsfp = IoIFP(io);
0f7de14d
NC
3886 if (IoOFP(io) && IoOFP(io) != IoIFP(io)) {
3887 PerlIO_close(IoOFP(io));
bbed91b5 3888 }
0f7de14d
NC
3889 IoIFP(io) = NULL;
3890 IoOFP(io) = NULL;
bbed91b5
KF
3891 }
3892
3893 if (i < count) {
3894 arg = SP[i++];
3895 }
3896 }
3897
3898 if (SvROK(arg) && SvTYPE(SvRV(arg)) == SVt_PVCV) {
3899 filter_sub = arg;
74c765eb 3900 SvREFCNT_inc_simple_void_NN(filter_sub);
bbed91b5
KF
3901
3902 if (i < count) {
3903 filter_state = SP[i];
b37c2d43 3904 SvREFCNT_inc_simple_void(filter_state);
bbed91b5 3905 }
34113e50 3906 }
bbed91b5 3907
34113e50
NC
3908 if (!tryrsfp && (filter_cache || filter_sub)) {
3909 tryrsfp = PerlIO_open(BIT_BUCKET,
3910 PERL_SCRIPT_MODE);
bbed91b5 3911 }
1d06aecd 3912 SP--;
bbed91b5
KF
3913 }
3914
c39fcc09
FC
3915 /* FREETMPS may free our filter_cache */
3916 SvREFCNT_inc_simple_void(filter_cache);
3917
bbed91b5
KF
3918 PUTBACK;
3919 FREETMPS;
d343c3ef 3920 LEAVE_with_name("call_INC");
bbed91b5 3921
c39fcc09
FC
3922 /* Now re-mortalize it. */
3923 sv_2mortal(filter_cache);
3924
c5f55552
NC
3925 /* Adjust file name if the hook has set an %INC entry.
3926 This needs to happen after the FREETMPS above. */
3927 svp = hv_fetch(GvHVn(PL_incgv), name, len, 0);
3928 if (svp)
3929 tryname = SvPV_nolen_const(*svp);
3930
bbed91b5 3931 if (tryrsfp) {
89ccab8c 3932 hook_sv = dirsv;
bbed91b5
KF
3933 break;
3934 }
3935
3936 filter_has_file = 0;
9b7d7782 3937 filter_cache = NULL;
bbed91b5
KF
3938 if (filter_state) {
3939 SvREFCNT_dec(filter_state);
c445ea15 3940 filter_state = NULL;
bbed91b5
KF
3941 }
3942 if (filter_sub) {
3943 SvREFCNT_dec(filter_sub);
c445ea15 3944 filter_sub = NULL;
bbed91b5
KF
3945 }
3946 }
3947 else {
511712dc 3948 if (path_searchable) {
b640a14a
NC
3949 const char *dir;
3950 STRLEN dirlen;
3951
3952 if (SvOK(dirsv)) {
6567ce24 3953 dir = SvPV_nomg_const(dirsv, dirlen);
b640a14a
NC
3954 } else {
3955 dir = "";
3956 dirlen = 0;
3957 }
3958
ddc65b67
CB
3959 if (!IS_SAFE_SYSCALL(dir, dirlen, "@INC entry", "require"))
3960 continue;
e37778c2 3961#ifdef VMS
8de90695
FC
3962 if ((unixdir =
3963 tounixpath(dir, SvPVX(sv_2mortal(newSVpv("", VMS_MAXRSS-1)))))
3964 == NULL)
bbed91b5
KF
3965 continue;
3966 sv_setpv(namesv, unixdir);
3967 sv_catpv(namesv, unixname);
e37778c2
NC
3968#else
3969# ifdef __SYMBIAN32__
27da23d5
JH
3970 if (PL_origfilename[0] &&
3971 PL_origfilename[1] == ':' &&
3972 !(dir[0] && dir[1] == ':'))
3973 Perl_sv_setpvf(aTHX_ namesv,
3974 "%c:%s\\%s",
3975 PL_origfilename[0],
3976 dir, name);
3977 else
3978 Perl_sv_setpvf(aTHX_ namesv,
3979 "%s\\%s",
3980 dir, name);
e37778c2 3981# else
b640a14a
NC
3982 /* The equivalent of
3983 Perl_sv_setpvf(aTHX_ namesv, "%s/%s", dir, name);
3984 but without the need to parse the format string, or
3985 call strlen on either pointer, and with the correct
3986 allocation up front. */
3987 {
3988 char *tmp = SvGROW(namesv, dirlen + len + 2);
3989
3990 memcpy(tmp, dir, dirlen);
3991 tmp +=dirlen;
6b0bdd7f
MH
3992
3993 /* Avoid '<dir>//<file>' */
3994 if (!dirlen || *(tmp-1) != '/') {
3995 *tmp++ = '/';
3996 }
3997
b640a14a
NC
3998 /* name came from an SV, so it will have a '\0' at the
3999 end that we can copy as part of this memcpy(). */
4000 memcpy(tmp, name, len + 1);
4001
4002 SvCUR_set(namesv, dirlen + len + 1);
282b29ee 4003 SvPOK_on(namesv);
b640a14a 4004 }
27da23d5 4005# endif
bf4acbe4 4006#endif
bbed91b5 4007 TAINT_PROPER("require");
349d4f2f 4008 tryname = SvPVX_const(namesv);
282b29ee 4009 tryrsfp = doopen_pm(namesv);
bbed91b5 4010 if (tryrsfp) {
e63be746
RGS
4011 if (tryname[0] == '.' && tryname[1] == '/') {
4012 ++tryname;
4910606a 4013 while (*++tryname == '/') {}
e63be746 4014 }
bbed91b5
KF
4015 break;
4016 }
2433d39e
BF
4017 else if (errno == EMFILE || errno == EACCES) {
4018 /* no point in trying other paths if out of handles;
4019 * on the other hand, if we couldn't open one of the
4020 * files, then going on with the search could lead to
4021 * unexpected results; see perl #113422
4022 */
4023 break;
4024 }
be4b629d 4025 }
46fc3d4c 4026 }
a0d0e21e
LW
4027 }
4028 }
4029 }
83b195e4 4030 saved_errno = errno; /* sv_2mortal can realloc things */
b2ef6d44 4031 sv_2mortal(namesv);
a0d0e21e 4032 if (!tryrsfp) {
533c011a 4033 if (PL_op->op_type == OP_REQUIRE) {
83b195e4 4034 if(saved_errno == EMFILE || saved_errno == EACCES) {
c9d5e35e 4035 /* diag_listed_as: Can't locate %s */
83b195e4 4036 DIE(aTHX_ "Can't locate %s: %s", name, Strerror(saved_errno));
e31de809
SP
4037 } else {
4038 if (namesv) { /* did we lookup @INC? */
44f8325f 4039 AV * const ar = GvAVn(PL_incgv);
c70927a6 4040 SSize_t i;
1e5f02b3 4041 SV *const msg = newSVpvs_flags("", SVs_TEMP);
c9d5e35e
NC
4042 SV *const inc = newSVpvs_flags("", SVs_TEMP);
4043 for (i = 0; i <= AvFILL(ar); i++) {
4044 sv_catpvs(inc, " ");
4045 sv_catsv(inc, *av_fetch(ar, i, TRUE));
4046 }
f7ee53b5
PJ
4047 if (len >= 4 && memEQ(name + len - 3, ".pm", 4)) {
4048 const char *c, *e = name + len - 3;
4049 sv_catpv(msg, " (you may need to install the ");
4050 for (c = name; c < e; c++) {
4051 if (*c == '/') {
4052 sv_catpvn(msg, "::", 2);
4053 }
4054 else {
4055 sv_catpvn(msg, c, 1);
4056 }
4057 }
4058 sv_catpv(msg, " module)");
4059 }
4060 else if (len >= 2 && memEQ(name + len - 2, ".h", 3)) {
4061 sv_catpv(msg, " (change .h to .ph maybe?) (did you run h2ph?)");
4062 }
4063 else if (len >= 3 && memEQ(name + len - 3, ".ph", 4)) {
4064 sv_catpv(msg, " (did you run h2ph?)");
4065 }
c9d5e35e
NC
4066
4067 /* diag_listed_as: Can't locate %s */
4068 DIE(aTHX_
f7ee53b5
PJ
4069 "Can't locate %s in @INC%" SVf " (@INC contains:%" SVf ")",
4070 name, msg, inc);
c9d5e35e 4071 }
2683423c 4072 }
c9d5e35e 4073 DIE(aTHX_ "Can't locate %s", name);
a0d0e21e
LW
4074 }
4075
a3ff80c1 4076 CLEAR_ERRSV();
a0d0e21e
LW
4077 RETPUSHUNDEF;
4078 }
d8bfb8bd 4079 else
93189314 4080 SETERRNO(0, SS_NORMAL);
a0d0e21e
LW
4081
4082 /* Assume success here to prevent recursive requirement. */
238d24b4 4083 /* name is never assigned to again, so len is still strlen(name) */
d3a4e64e 4084 /* Check whether a hook in @INC has already filled %INC */
44f8325f 4085 if (!hook_sv) {
4492be7a 4086 (void)hv_store(GvHVn(PL_incgv),
b2ef6d44 4087 unixname, unixlen, newSVpv(tryname,0),0);
44f8325f 4088 } else {
4492be7a 4089 SV** const svp = hv_fetch(GvHVn(PL_incgv), unixname, unixlen, 0);
44f8325f 4090 if (!svp)
4492be7a
JM
4091 (void)hv_store(GvHVn(PL_incgv),
4092 unixname, unixlen, SvREFCNT_inc_simple(hook_sv), 0 );
d3a4e64e 4093 }
a0d0e21e 4094
d343c3ef 4095 ENTER_with_name("eval");
a0d0e21e 4096 SAVETMPS;
b2ef6d44
FC
4097 SAVECOPFILE_FREE(&PL_compiling);
4098 CopFILE_set(&PL_compiling, tryname);
8eaa0acf 4099 lex_start(NULL, tryrsfp, 0);
e50aee73 4100
34113e50 4101 if (filter_sub || filter_cache) {
4464f08e
NC
4102 /* We can use the SvPV of the filter PVIO itself as our cache, rather
4103 than hanging another SV from it. In turn, filter_add() optionally
4104 takes the SV to use as the filter (or creates a new SV if passed
4105 NULL), so simply pass in whatever value filter_cache has. */
9b7d7782
FC
4106 SV * const fc = filter_cache ? newSV(0) : NULL;
4107 SV *datasv;
4108 if (fc) sv_copypv(fc, filter_cache);
4109 datasv = filter_add(S_run_user_filter, fc);
bbed91b5 4110 IoLINES(datasv) = filter_has_file;
159b6efe
NC
4111 IoTOP_GV(datasv) = MUTABLE_GV(filter_state);
4112 IoBOTTOM_GV(datasv) = MUTABLE_GV(filter_sub);
bbed91b5
KF
4113 }
4114
4115 /* switch to eval mode */
a0d0e21e 4116 PUSHBLOCK(cx, CXt_EVAL, SP);
6b75f042 4117 PUSHEVAL(cx, name);
f39bc417 4118 cx->blk_eval.retop = PL_op->op_next;
a0d0e21e 4119
57843af0
GS
4120 SAVECOPLINE(&PL_compiling);
4121 CopLINE_set(&PL_compiling, 0);
a0d0e21e
LW
4122
4123 PUTBACK;
6ec9efec
JH
4124
4125 /* Store and reset encoding. */
4126 encoding = PL_encoding;
c445ea15 4127 PL_encoding = NULL;
6ec9efec 4128
104a8185 4129 if (doeval(gimme, NULL, PL_curcop->cop_seq, NULL))
410be5db
DM
4130 op = DOCATCH(PL_eval_start);
4131 else
4132 op = PL_op->op_next;
bfed75c6 4133
6ec9efec
JH
4134 /* Restore encoding. */
4135 PL_encoding = encoding;
4136
32aeab29
SM
4137 LOADED_FILE_PROBE(unixname);
4138
6ec9efec 4139 return op;
a0d0e21e
LW
4140}
4141
996c9baa
VP
4142/* This is a op added to hold the hints hash for
4143 pp_entereval. The hash can be modified by the code
4144 being eval'ed, so we return a copy instead. */
4145
4146PP(pp_hintseval)
4147{
4148 dVAR;
4149 dSP;
defdfed5 4150 mXPUSHs(MUTABLE_SV(hv_copy_hints_hv(MUTABLE_HV(cSVOP_sv))));
996c9baa
VP
4151 RETURN;
4152}
4153
4154
a0d0e21e
LW
4155PP(pp_entereval)
4156{
27da23d5 4157 dVAR; dSP;
eb578fdb 4158 PERL_CONTEXT *cx;
0d863452 4159 SV *sv;
890ce7af 4160 const I32 gimme = GIMME_V;
fd06b02c 4161 const U32 was = PL_breakable_sub_gen;
83ee9e09 4162 char tbuf[TYPE_DIGITS(long) + 12];
78da7625 4163 bool saved_delete = FALSE;
83ee9e09 4164 char *tmpbuf = tbuf;
a0d0e21e 4165 STRLEN len;
a3985cdc 4166 CV* runcv;
0abcdfa4 4167 U32 seq, lex_flags = 0;
c445ea15 4168 HV *saved_hh = NULL;
60d63348 4169 const bool bytes = PL_op->op_private & OPpEVAL_BYTES;
e389bba9 4170
0d863452 4171 if (PL_op->op_private & OPpEVAL_HAS_HH) {
85fbaab2 4172 saved_hh = MUTABLE_HV(SvREFCNT_inc(POPs));
0d863452 4173 }
bc344123
FC
4174 else if (PL_hints & HINT_LOCALIZE_HH || (
4175 PL_op->op_private & OPpEVAL_COPHH
4176 && PL_curcop->cop_hints & HINT_LOCALIZE_HH
4177 )) {
7d789282
FC
4178 saved_hh = cop_hints_2hv(PL_curcop, 0);
4179 hv_magic(saved_hh, NULL, PERL_MAGIC_hints);
4180 }
0d863452 4181 sv = POPs;
895b760f
DM
4182 if (!SvPOK(sv)) {
4183 /* make sure we've got a plain PV (no overload etc) before testing
4184 * for taint. Making a copy here is probably overkill, but better
4185 * safe than sorry */
0479a84a
NC
4186 STRLEN len;
4187 const char * const p = SvPV_const(sv, len);
4188
4189 sv = newSVpvn_flags(p, len, SVs_TEMP | SvUTF8(sv));
0abcdfa4 4190 lex_flags |= LEX_START_COPIED;
7d789282 4191
60d63348 4192 if (bytes && SvUTF8(sv))
7d789282
FC
4193 SvPVbyte_force(sv, len);
4194 }
60d63348 4195 else if (bytes && SvUTF8(sv)) {
e1fa07e3 4196 /* Don't modify someone else's scalar */
7d789282
FC
4197 STRLEN len;
4198 sv = newSVsv(sv);
5cefc8c1 4199 (void)sv_2mortal(sv);
7d789282 4200 SvPVbyte_force(sv,len);
0abcdfa4 4201 lex_flags |= LEX_START_COPIED;
895b760f 4202 }
a0d0e21e 4203
af2d3def 4204 TAINT_IF(SvTAINTED(sv));
748a9306 4205 TAINT_PROPER("eval");
a0d0e21e 4206
d343c3ef 4207 ENTER_with_name("eval");
0abcdfa4 4208 lex_start(sv, NULL, lex_flags | (PL_op->op_private & OPpEVAL_UNICODE
60d63348
FC
4209 ? LEX_IGNORE_UTF8_HINTS
4210 : bytes ? LEX_EVALBYTES : LEX_START_SAME_FILTER
0abcdfa4 4211 )
60d63348 4212 );
748a9306 4213 SAVETMPS;
ac27b0f5 4214
a0d0e21e
LW
4215 /* switch to eval mode */
4216
83ee9e09 4217 if (PERLDB_NAMEEVAL && CopLINE(PL_curcop)) {
8b38226b
AL
4218 SV * const temp_sv = sv_newmortal();
4219 Perl_sv_setpvf(aTHX_ temp_sv, "_<(eval %lu)[%s:%"IVdf"]",
83ee9e09
GS
4220 (unsigned long)++PL_evalseq,
4221 CopFILE(PL_curcop), (IV)CopLINE(PL_curcop));
8b38226b
AL
4222 tmpbuf = SvPVX(temp_sv);
4223 len = SvCUR(temp_sv);
83ee9e09
GS
4224 }
4225 else
d9fad198 4226 len = my_snprintf(tmpbuf, sizeof(tbuf), "_<(eval %lu)", (unsigned long)++PL_evalseq);
f4dd75d9 4227 SAVECOPFILE_FREE(&PL_compiling);
57843af0 4228 CopFILE_set(&PL_compiling, tmpbuf+2);
f4dd75d9 4229 SAVECOPLINE(&PL_compiling);
57843af0 4230 CopLINE_set(&PL_compiling, 1);
d819b83a
DM
4231 /* special case: an eval '' executed within the DB package gets lexically
4232 * placed in the first non-DB CV rather than the current CV - this
4233 * allows the debugger to execute code, find lexicals etc, in the
4234 * scope of the code being debugged. Passing &seq gets find_runcv
4235 * to do the dirty work for us */
4236 runcv = find_runcv(&seq);
a0d0e21e 4237
6b35e009 4238 PUSHBLOCK(cx, (CXt_EVAL|CXp_REAL), SP);
6b75f042 4239 PUSHEVAL(cx, 0);
f39bc417 4240 cx->blk_eval.retop = PL_op->op_next;
a0d0e21e
LW
4241
4242 /* prepare to compile string */
4243
a44e3ce2 4244 if ((PERLDB_LINE || PERLDB_SAVESRC) && PL_curstash != PL_debstash)
bdc0bf6f 4245 save_lines(CopFILEAV(&PL_compiling), PL_parser->linestr);
78da7625 4246 else {
c8cb8d55
FC
4247 /* XXX For C<eval "...">s within BEGIN {} blocks, this ends up
4248 deleting the eval's FILEGV from the stash before gv_check() runs
4249 (i.e. before run-time proper). To work around the coredump that
4250 ensues, we always turn GvMULTI_on for any globals that were
4251 introduced within evals. See force_ident(). GSAR 96-10-12 */
78da7625
FC
4252 char *const safestr = savepvn(tmpbuf, len);
4253 SAVEDELETE(PL_defstash, safestr, len);
4254 saved_delete = TRUE;
4255 }
4256
a0d0e21e 4257 PUTBACK;
f9bddea7 4258
104a8185 4259 if (doeval(gimme, runcv, seq, saved_hh)) {
f9bddea7
NC
4260 if (was != PL_breakable_sub_gen /* Some subs defined here. */
4261 ? (PERLDB_LINE || PERLDB_SAVESRC)
4262 : PERLDB_SAVESRC_NOSUBS) {
4263 /* Retain the filegv we created. */
78da7625 4264 } else if (!saved_delete) {
f9bddea7
NC
4265 char *const safestr = savepvn(tmpbuf, len);
4266 SAVEDELETE(PL_defstash, safestr, len);
4267 }
4268 return DOCATCH(PL_eval_start);
4269 } else {
486ec47a 4270 /* We have already left the scope set up earlier thanks to the LEAVE
f9bddea7 4271 in doeval(). */
eb044b10
NC
4272 if (was != PL_breakable_sub_gen /* Some subs defined here. */
4273 ? (PERLDB_LINE || PERLDB_SAVESRC)
4274 : PERLDB_SAVESRC_INVALID) {
f9bddea7 4275 /* Retain the filegv we created. */
7857f360 4276 } else if (!saved_delete) {
f9bddea7
NC
4277 (void)hv_delete(PL_defstash, tmpbuf, len, G_DISCARD);
4278 }
4279 return PL_op->op_next;
4280 }
a0d0e21e
LW
4281}
4282
4283PP(pp_leaveeval)
4284{
27da23d5 4285 dVAR; dSP;
a0d0e21e
LW
4286 SV **newsp;
4287 PMOP *newpm;
4288 I32 gimme;
eb578fdb 4289 PERL_CONTEXT *cx;
a0d0e21e 4290 OP *retop;
06b5626a 4291 const U8 save_flags = PL_op -> op_flags;
a0d0e21e 4292 I32 optype;
b6494f15 4293 SV *namesv;
676a678a 4294 CV *evalcv;
a0d0e21e 4295
011c3814 4296 PERL_ASYNC_CHECK();
a0d0e21e
LW
4297 POPBLOCK(cx,newpm);
4298 POPEVAL(cx);
b6494f15 4299 namesv = cx->blk_eval.old_namesv;
f39bc417 4300 retop = cx->blk_eval.retop;
676a678a 4301 evalcv = cx->blk_eval.cv;
a0d0e21e 4302
a1f49e72 4303 TAINT_NOT;
b9d76716 4304 SP = adjust_stack_on_leave((gimme == G_VOID) ? SP : newsp, SP, newsp,
2ec7f6f2 4305 gimme, SVs_TEMP, FALSE);
3280af22 4306 PL_curpm = newpm; /* Don't pop $1 et al till now */
a0d0e21e 4307
4fdae800 4308#ifdef DEBUGGING
676a678a 4309 assert(CvDEPTH(evalcv) == 1);
4fdae800 4310#endif
676a678a 4311 CvDEPTH(evalcv) = 0;
4fdae800 4312
1ce6579f 4313 if (optype == OP_REQUIRE &&
924508f0 4314 !(gimme == G_SCALAR ? SvTRUE(*SP) : SP > newsp))
54310121 4315 {
1ce6579f 4316 /* Unassume the success we assumed earlier. */
b6494f15 4317 (void)hv_delete(GvHVn(PL_incgv),
ecad31f0 4318 SvPVX_const(namesv),
c60dbbc3 4319 SvUTF8(namesv) ? -(I32)SvCUR(namesv) : (I32)SvCUR(namesv),
b6494f15
VP
4320 G_DISCARD);
4321 retop = Perl_die(aTHX_ "%"SVf" did not return a true value",
4322 SVfARG(namesv));
c5df3096 4323 /* die_unwind() did LEAVE, or we won't be here */
f46d017c
GS
4324 }
4325 else {
d343c3ef 4326 LEAVE_with_name("eval");
8433848b 4327 if (!(save_flags & OPf_SPECIAL)) {
ab69dbc2 4328 CLEAR_ERRSV();
8433848b 4329 }
a0d0e21e 4330 }
a0d0e21e
LW
4331
4332 RETURNOP(retop);
4333}
4334
edb2152a
NC
4335/* Common code for Perl_call_sv and Perl_fold_constants, put here to keep it
4336 close to the related Perl_create_eval_scope. */
4337void
4338Perl_delete_eval_scope(pTHX)
a0d0e21e 4339{
edb2152a
NC
4340 SV **newsp;
4341 PMOP *newpm;
4342 I32 gimme;
eb578fdb 4343 PERL_CONTEXT *cx;
edb2152a
NC
4344 I32 optype;
4345
4346 POPBLOCK(cx,newpm);
4347 POPEVAL(cx);
4348 PL_curpm = newpm;
d343c3ef 4349 LEAVE_with_name("eval_scope");
edb2152a
NC
4350 PERL_UNUSED_VAR(newsp);
4351 PERL_UNUSED_VAR(gimme);
4352 PERL_UNUSED_VAR(optype);
4353}
a0d0e21e 4354
edb2152a
NC
4355/* Common-ish code salvaged from Perl_call_sv and pp_entertry, because it was
4356 also needed by Perl_fold_constants. */
4357PERL_CONTEXT *
4358Perl_create_eval_scope(pTHX_ U32 flags)
4359{
4360 PERL_CONTEXT *cx;
4361 const I32 gimme = GIMME_V;
4362
d343c3ef 4363 ENTER_with_name("eval_scope");
a0d0e21e
LW
4364 SAVETMPS;
4365
edb2152a 4366 PUSHBLOCK(cx, (CXt_EVAL|CXp_TRYBLOCK), PL_stack_sp);
6b75f042 4367 PUSHEVAL(cx, 0);
a0d0e21e 4368
faef0170 4369 PL_in_eval = EVAL_INEVAL;
edb2152a
NC
4370 if (flags & G_KEEPERR)
4371 PL_in_eval |= EVAL_KEEPERR;
ab69dbc2
RGS
4372 else
4373 CLEAR_ERRSV();
edb2152a
NC
4374 if (flags & G_FAKINGEVAL) {
4375 PL_eval_root = PL_op; /* Only needed so that goto works right. */
4376 }
4377 return cx;
4378}
4379
4380PP(pp_entertry)
4381{
4382 dVAR;
df528165 4383 PERL_CONTEXT * const cx = create_eval_scope(0);
edb2152a 4384 cx->blk_eval.retop = cLOGOP->op_other->op_next;
533c011a 4385 return DOCATCH(PL_op->op_next);
a0d0e21e
LW
4386}
4387
4388PP(pp_leavetry)
4389{
27da23d5 4390 dVAR; dSP;
a0d0e21e
LW
4391 SV **newsp;
4392 PMOP *newpm;
4393 I32 gimme;
eb578fdb 4394 PERL_CONTEXT *cx;
a0d0e21e
LW
4395 I32 optype;
4396
011c3814 4397 PERL_ASYNC_CHECK();
a0d0e21e
LW
4398 POPBLOCK(cx,newpm);
4399 POPEVAL(cx);
9d4ba2ae 4400 PERL_UNUSED_VAR(optype);
a0d0e21e 4401
a1f49e72 4402 TAINT_NOT;
2ec7f6f2
FC
4403 SP = adjust_stack_on_leave(newsp, SP, newsp, gimme,
4404 SVs_PADTMP|SVs_TEMP, FALSE);
3280af22 4405 PL_curpm = newpm; /* Don't pop $1 et al till now */
a0d0e21e 4406
d343c3ef 4407 LEAVE_with_name("eval_scope");
ab69dbc2 4408 CLEAR_ERRSV();
745cf2ff 4409 RETURN;
a0d0e21e
LW
4410}
4411
0d863452
RH
4412PP(pp_entergiven)
4413{
4414 dVAR; dSP;
eb578fdb 4415 PERL_CONTEXT *cx;
0d863452
RH
4416 const I32 gimme = GIMME_V;
4417
d343c3ef 4418 ENTER_with_name("given");
0d863452
RH
4419 SAVETMPS;
4420
b5a64814
FC
4421 if (PL_op->op_targ) {
4422 SAVEPADSVANDMORTALIZE(PL_op->op_targ);
4423 SvREFCNT_dec(PAD_SVl(PL_op->op_targ));
4424 PAD_SVl(PL_op->op_targ) = SvREFCNT_inc_NN(POPs);
4425 }
4426 else {
4427 SAVE_DEFSV;
4428 DEFSV_set(POPs);
4429 }
0d863452
RH
4430
4431 PUSHBLOCK(cx, CXt_GIVEN, SP);
4432 PUSHGIVEN(cx);
4433
4434 RETURN;
4435}
4436
4437PP(pp_leavegiven)
4438{
4439 dVAR; dSP;
eb578fdb 4440 PERL_CONTEXT *cx;
0d863452
RH
4441 I32 gimme;
4442 SV **newsp;
4443 PMOP *newpm;
96a5add6 4444 PERL_UNUSED_CONTEXT;
0d863452
RH
4445
4446 POPBLOCK(cx,newpm);
4447 assert(CxTYPE(cx) == CXt_GIVEN);
0d863452 4448
25b991bf 4449 TAINT_NOT;
2ec7f6f2
FC
4450 SP = adjust_stack_on_leave(newsp, SP, newsp, gimme,
4451 SVs_PADTMP|SVs_TEMP, FALSE);
25b991bf 4452 PL_curpm = newpm; /* Don't pop $1 et al till now */
0d863452 4453
d343c3ef 4454 LEAVE_with_name("given");
25b991bf 4455 RETURN;
0d863452
RH
4456}
4457
4458/* Helper routines used by pp_smartmatch */
4136a0f7 4459STATIC PMOP *
84679df5 4460S_make_matcher(pTHX_ REGEXP *re)
0d863452 4461{
97aff369 4462 dVAR;
0d863452 4463 PMOP *matcher = (PMOP *) newPMOP(OP_MATCH, OPf_WANT_SCALAR | OPf_STACKED);
7918f24d
NC
4464
4465 PERL_ARGS_ASSERT_MAKE_MATCHER;
4466
d6106309 4467 PM_SETRE(matcher, ReREFCNT_inc(re));
7918f24d 4468
0d863452 4469 SAVEFREEOP((OP *) matcher);
d343c3ef 4470 ENTER_with_name("matcher"); SAVETMPS;
0d863452
RH
4471 SAVEOP();
4472 return matcher;
4473}
4474
4136a0f7 4475STATIC bool
0d863452
RH
4476S_matcher_matches_sv(pTHX_ PMOP *matcher, SV *sv)
4477{
97aff369 4478 dVAR;
0d863452 4479 dSP;
7918f24d
NC
4480
4481 PERL_ARGS_ASSERT_MATCHER_MATCHES_SV;
0d863452
RH
4482
4483 PL_op = (OP *) matcher;
4484 XPUSHs(sv);
4485 PUTBACK;
897d3989 4486 (void) Perl_pp_match(aTHX);
0d863452
RH
4487 SPAGAIN;
4488 return (SvTRUEx(POPs));
4489}
4490
4136a0f7 4491STATIC void
0d863452
RH
4492S_destroy_matcher(pTHX_ PMOP *matcher)
4493{
97aff369 4494 dVAR;
7918f24d
NC
4495
4496 PERL_ARGS_ASSERT_DESTROY_MATCHER;
0d863452 4497 PERL_UNUSED_ARG(matcher);
7918f24d 4498
0d863452 4499 FREETMPS;
d343c3ef 4500 LEAVE_with_name("matcher");
0d863452
RH
4501}
4502
4503/* Do a smart match */
4504PP(pp_smartmatch)
4505{
d7c0d282 4506 DEBUG_M(Perl_deb(aTHX_ "Starting smart match resolution\n"));
be88a5c3 4507 return do_smartmatch(NULL, NULL, 0);
0d863452
RH
4508}
4509
4b021f5f
RGS
4510/* This version of do_smartmatch() implements the
4511 * table of smart matches that is found in perlsyn.
0d863452 4512 */
4136a0f7 4513STATIC OP *
be88a5c3 4514S_do_smartmatch(pTHX_ HV *seen_this, HV *seen_other, const bool copied)
0d863452 4515{
97aff369 4516 dVAR;
0d863452
RH
4517 dSP;
4518
41e726ac 4519 bool object_on_left = FALSE;
0d863452
RH
4520 SV *e = TOPs; /* e is for 'expression' */
4521 SV *d = TOPm1s; /* d is for 'default', as in PL_defgv */
a566f585 4522
6f1401dc
DM
4523 /* Take care only to invoke mg_get() once for each argument.
4524 * Currently we do this by copying the SV if it's magical. */
4525 if (d) {
be88a5c3 4526 if (!copied && SvGMAGICAL(d))
6f1401dc
DM
4527 d = sv_mortalcopy(d);
4528 }
4529 else
4530 d = &PL_sv_undef;
4531
4532 assert(e);
4533 if (SvGMAGICAL(e))
4534 e = sv_mortalcopy(e);
4535
2c9d2554 4536 /* First of all, handle overload magic of the rightmost argument */
6d743019 4537 if (SvAMAGIC(e)) {
d7c0d282
DM
4538 SV * tmpsv;
4539 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-Object\n"));
4540 DEBUG_M(Perl_deb(aTHX_ " attempting overload\n"));
4541
b900a653 4542 tmpsv = amagic_call(d, e, smart_amg, AMGf_noleft);
7c41e62e
RGS
4543 if (tmpsv) {
4544 SPAGAIN;
4545 (void)POPs;
4546 SETs(tmpsv);
4547 RETURN;
4548 }
d7c0d282 4549 DEBUG_M(Perl_deb(aTHX_ " failed to run overload method; continuing...\n"));
7c41e62e 4550 }
62ec5f58 4551
0d863452
RH
4552 SP -= 2; /* Pop the values */
4553
0d863452 4554
b0138e99 4555 /* ~~ undef */
62ec5f58 4556 if (!SvOK(e)) {
d7c0d282 4557 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-undef\n"));
62ec5f58 4558 if (SvOK(d))
33570f8b
RGS
4559 RETPUSHNO;
4560 else
62ec5f58 4561 RETPUSHYES;
33570f8b 4562 }
e67b97bd 4563
d7c0d282
DM
4564 if (sv_isobject(e) && (SvTYPE(SvRV(e)) != SVt_REGEXP)) {
4565 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-Object\n"));
62ec5f58 4566 Perl_croak(aTHX_ "Smart matching a non-overloaded object breaks encapsulation");
d7c0d282 4567 }
41e726ac
RGS
4568 if (sv_isobject(d) && (SvTYPE(SvRV(d)) != SVt_REGEXP))
4569 object_on_left = TRUE;
62ec5f58 4570
b0138e99 4571 /* ~~ sub */
a4a197da 4572 if (SvROK(e) && SvTYPE(SvRV(e)) == SVt_PVCV) {
0d863452 4573 I32 c;
41e726ac
RGS
4574 if (object_on_left) {
4575 goto sm_any_sub; /* Treat objects like scalars */
4576 }
4577 else if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVHV) {
a4a197da
RGS
4578 /* Test sub truth for each key */
4579 HE *he;
4580 bool andedresults = TRUE;
4581 HV *hv = (HV*) SvRV(d);
168ff818 4582 I32 numkeys = hv_iterinit(hv);
d7c0d282 4583 DEBUG_M(Perl_deb(aTHX_ " applying rule Hash-CodeRef\n"));
168ff818 4584 if (numkeys == 0)
07edf497 4585 RETPUSHYES;
a4a197da 4586 while ( (he = hv_iternext(hv)) ) {
d7c0d282 4587 DEBUG_M(Perl_deb(aTHX_ " testing hash key...\n"));
d343c3ef 4588 ENTER_with_name("smartmatch_hash_key_test");
a4a197da
RGS
4589 SAVETMPS;
4590 PUSHMARK(SP);
4591 PUSHs(hv_iterkeysv(he));
4592 PUTBACK;
4593 c = call_sv(e, G_SCALAR);
4594 SPAGAIN;
4595 if (c == 0)
4596 andedresults = FALSE;
4597 else
4598 andedresults = SvTRUEx(POPs) && andedresults;
4599 FREETMPS;
d343c3ef 4600 LEAVE_with_name("smartmatch_hash_key_test");
a4a197da
RGS
4601 }
4602 if (andedresults)
4603 RETPUSHYES;
4604 else
4605 RETPUSHNO;
4606 }
4607 else if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVAV) {
4608 /* Test sub truth for each element */
c70927a6 4609 SSize_t i;
a4a197da
RGS
4610 bool andedresults = TRUE;
4611 AV *av = (AV*) SvRV(d);
4612 const I32 len = av_len(av);
d7c0d282 4613 DEBUG_M(Perl_deb(aTHX_ " applying rule Array-CodeRef\n"));
168ff818 4614 if (len == -1)
07edf497 4615 RETPUSHYES;
a4a197da
RGS
4616 for (i = 0; i <= len; ++i) {
4617 SV * const * const svp = av_fetch(av, i, FALSE);
d7c0d282 4618 DEBUG_M(Perl_deb(aTHX_ " testing array element...\n"));
d343c3ef 4619 ENTER_with_name("smartmatch_array_elem_test");
a4a197da
RGS
4620 SAVETMPS;
4621 PUSHMARK(SP);
4622 if (svp)
4623 PUSHs(*svp);
4624 PUTBACK;
4625 c = call_sv(e, G_SCALAR);
4626 SPAGAIN;
4627 if (c == 0)
4628 andedresults = FALSE;
4629 else
4630 andedresults = SvTRUEx(POPs) && andedresults;
4631 FREETMPS;
d343c3ef 4632 LEAVE_with_name("smartmatch_array_elem_test");
a4a197da
RGS
4633 }
4634 if (andedresults)
4635 RETPUSHYES;
4636 else
4637 RETPUSHNO;
4638 }
4639 else {
41e726ac 4640 sm_any_sub:
d7c0d282 4641 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-CodeRef\n"));
d343c3ef 4642 ENTER_with_name("smartmatch_coderef");
a4a197da
RGS
4643 SAVETMPS;
4644 PUSHMARK(SP);
4645 PUSHs(d);
4646 PUTBACK;
4647 c = call_sv(e, G_SCALAR);
4648 SPAGAIN;
4649 if (c == 0)
4650 PUSHs(&PL_sv_no);
4651 else if (SvTEMP(TOPs))
4652 SvREFCNT_inc_void(TOPs);
4653 FREETMPS;
d343c3ef 4654 LEAVE_with_name("smartmatch_coderef");
a4a197da
RGS
4655 RETURN;
4656 }
0d863452 4657 }
b0138e99 4658 /* ~~ %hash */
61a621c6 4659 else if (SvROK(e) && SvTYPE(SvRV(e)) == SVt_PVHV) {
41e726ac
RGS
4660 if (object_on_left) {
4661 goto sm_any_hash; /* Treat objects like scalars */
4662 }
4663 else if (!SvOK(d)) {
d7c0d282 4664 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-Hash ($a undef)\n"));
61a621c6
RGS
4665 RETPUSHNO;
4666 }
4667 else if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVHV) {
0d863452
RH
4668 /* Check that the key-sets are identical */
4669 HE *he;
61a621c6 4670 HV *other_hv = MUTABLE_HV(SvRV(d));
0d863452
RH
4671 bool tied = FALSE;
4672 bool other_tied = FALSE;
4673 U32 this_key_count = 0,
4674 other_key_count = 0;
33ed63a2 4675 HV *hv = MUTABLE_HV(SvRV(e));
d7c0d282
DM
4676
4677 DEBUG_M(Perl_deb(aTHX_ " applying rule Hash-Hash\n"));
0d863452 4678 /* Tied hashes don't know how many keys they have. */
33ed63a2 4679 if (SvTIED_mg((SV*)hv, PERL_MAGIC_tied)) {
0d863452
RH
4680 tied = TRUE;
4681 }
ad64d0ec 4682 else if (SvTIED_mg((const SV *)other_hv, PERL_MAGIC_tied)) {
c445ea15 4683 HV * const temp = other_hv;
33ed63a2
RGS
4684 other_hv = hv;
4685 hv = temp;
0d863452
RH
4686 tied = TRUE;
4687 }
ad64d0ec 4688 if (SvTIED_mg((const SV *)other_hv, PERL_MAGIC_tied))
0d863452
RH
4689 other_tied = TRUE;
4690
33ed63a2 4691 if (!tied && HvUSEDKEYS((const HV *) hv) != HvUSEDKEYS(other_hv))
0d863452
RH
4692 RETPUSHNO;
4693
4694 /* The hashes have the same number of keys, so it suffices
4695 to check that one is a subset of the other. */
33ed63a2
RGS
4696 (void) hv_iterinit(hv);
4697 while ( (he = hv_iternext(hv)) ) {
b15feb55 4698 SV *key = hv_iterkeysv(he);
d7c0d282
DM
4699
4700 DEBUG_M(Perl_deb(aTHX_ " comparing hash key...\n"));
0d863452
RH
4701 ++ this_key_count;
4702
b15feb55 4703 if(!hv_exists_ent(other_hv, key, 0)) {
33ed63a2 4704 (void) hv_iterinit(hv); /* reset iterator */
0d863452
RH
4705 RETPUSHNO;
4706 }
4707 }
4708
4709 if (other_tied) {
4710 (void) hv_iterinit(other_hv);
4711 while ( hv_iternext(other_hv) )
4712 ++other_key_count;
4713 }
4714 else
4715 other_key_count = HvUSEDKEYS(other_hv);
4716
4717 if (this_key_count != other_key_count)
4718 RETPUSHNO;
4719 else
4720 RETPUSHYES;
4721 }
61a621c6
RGS
4722 else if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVAV) {
4723 AV * const other_av = MUTABLE_AV(SvRV(d));
c70927a6
FC
4724 const SSize_t other_len = av_len(other_av) + 1;
4725 SSize_t i;
33ed63a2 4726 HV *hv = MUTABLE_HV(SvRV(e));
71b0fb34 4727
d7c0d282 4728 DEBUG_M(Perl_deb(aTHX_ " applying rule Array-Hash\n"));
71b0fb34 4729 for (i = 0; i < other_len; ++i) {
c445ea15 4730 SV ** const svp = av_fetch(other_av, i, FALSE);
d7c0d282 4731 DEBUG_M(Perl_deb(aTHX_ " checking for key existence...\n"));
71b0fb34 4732 if (svp) { /* ??? When can this not happen? */
b15feb55 4733 if (hv_exists_ent(hv, *svp, 0))
71b0fb34
DK
4734 RETPUSHYES;
4735 }
0d863452 4736 }
71b0fb34 4737 RETPUSHNO;
0d863452 4738 }
a566f585 4739 else if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_REGEXP) {
d7c0d282 4740 DEBUG_M(Perl_deb(aTHX_ " applying rule Regex-Hash\n"));
ea0c2dbd
RGS
4741 sm_regex_hash:
4742 {
4743 PMOP * const matcher = make_matcher((REGEXP*) SvRV(d));
4744 HE *he;
4745 HV *hv = MUTABLE_HV(SvRV(e));
4746
4747 (void) hv_iterinit(hv);
4748 while ( (he = hv_iternext(hv)) ) {
d7c0d282 4749 DEBUG_M(Perl_deb(aTHX_ " testing key against pattern...\n"));
ea0c2dbd
RGS
4750 if (matcher_matches_sv(matcher, hv_iterkeysv(he))) {
4751 (void) hv_iterinit(hv);
4752 destroy_matcher(matcher);
4753 RETPUSHYES;
4754 }
0d863452 4755 }
ea0c2dbd
RGS
4756 destroy_matcher(matcher);
4757 RETPUSHNO;
0d863452 4758 }
0d863452
RH
4759 }
4760 else {
41e726ac 4761 sm_any_hash:
d7c0d282 4762 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-Hash\n"));
61a621c6 4763 if (hv_exists_ent(MUTABLE_HV(SvRV(e)), d, 0))
0d863452
RH
4764 RETPUSHYES;
4765 else
4766 RETPUSHNO;
4767 }
4768 }
b0138e99
RGS
4769 /* ~~ @array */
4770 else if (SvROK(e) && SvTYPE(SvRV(e)) == SVt_PVAV) {
41e726ac
RGS
4771 if (object_on_left) {
4772 goto sm_any_array; /* Treat objects like scalars */
4773 }
4774 else if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVHV) {
b0138e99 4775 AV * const other_av = MUTABLE_AV(SvRV(e));
c70927a6
FC
4776 const SSize_t other_len = av_len(other_av) + 1;
4777 SSize_t i;
b0138e99 4778
d7c0d282 4779 DEBUG_M(Perl_deb(aTHX_ " applying rule Hash-Array\n"));
b0138e99
RGS
4780 for (i = 0; i < other_len; ++i) {
4781 SV ** const svp = av_fetch(other_av, i, FALSE);
d7c0d282
DM
4782
4783 DEBUG_M(Perl_deb(aTHX_ " testing for key existence...\n"));
b0138e99 4784 if (svp) { /* ??? When can this not happen? */
b15feb55 4785 if (hv_exists_ent(MUTABLE_HV(SvRV(d)), *svp, 0))
b0138e99
RGS
4786 RETPUSHYES;
4787 }
4788 }
4789 RETPUSHNO;
4790 }
4791 if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVAV) {
4792 AV *other_av = MUTABLE_AV(SvRV(d));
d7c0d282 4793 DEBUG_M(Perl_deb(aTHX_ " applying rule Array-Array\n"));
b0138e99 4794 if (av_len(MUTABLE_AV(SvRV(e))) != av_len(other_av))
0d863452
RH
4795 RETPUSHNO;
4796 else {
c70927a6
FC
4797 SSize_t i;
4798 const SSize_t other_len = av_len(other_av);
0d863452 4799
a0714e2c 4800 if (NULL == seen_this) {
0d863452 4801 seen_this = newHV();
ad64d0ec 4802 (void) sv_2mortal(MUTABLE_SV(seen_this));
0d863452 4803 }
a0714e2c 4804 if (NULL == seen_other) {
6bc991bf 4805 seen_other = newHV();
ad64d0ec 4806 (void) sv_2mortal(MUTABLE_SV(seen_other));
0d863452
RH
4807 }
4808 for(i = 0; i <= other_len; ++i) {
b0138e99 4809 SV * const * const this_elem = av_fetch(MUTABLE_AV(SvRV(e)), i, FALSE);
c445ea15
AL
4810 SV * const * const other_elem = av_fetch(other_av, i, FALSE);
4811
0d863452 4812 if (!this_elem || !other_elem) {
69c3dccf
RGS
4813 if ((this_elem && SvOK(*this_elem))
4814 || (other_elem && SvOK(*other_elem)))
0d863452
RH
4815 RETPUSHNO;
4816 }
365c4e3d
RGS
4817 else if (hv_exists_ent(seen_this,
4818 sv_2mortal(newSViv(PTR2IV(*this_elem))), 0) ||
4819 hv_exists_ent(seen_other,
4820 sv_2mortal(newSViv(PTR2IV(*other_elem))), 0))
0d863452
RH
4821 {
4822 if (*this_elem != *other_elem)
4823 RETPUSHNO;
4824 }
4825 else {
04fe65b0
RGS
4826 (void)hv_store_ent(seen_this,
4827 sv_2mortal(newSViv(PTR2IV(*this_elem))),
4828 &PL_sv_undef, 0);
4829 (void)hv_store_ent(seen_other,
4830 sv_2mortal(newSViv(PTR2IV(*other_elem))),
4831 &PL_sv_undef, 0);
0d863452 4832 PUSHs(*other_elem);
a566f585 4833 PUSHs(*this_elem);
0d863452
RH
4834
4835 PUTBACK;
d7c0d282 4836 DEBUG_M(Perl_deb(aTHX_ " recursively comparing array element...\n"));
be88a5c3 4837 (void) do_smartmatch(seen_this, seen_other, 0);
0d863452 4838 SPAGAIN;
d7c0d282 4839 DEBUG_M(Perl_deb(aTHX_ " recursion finished\n"));
0d863452
RH
4840
4841 if (!SvTRUEx(POPs))
4842 RETPUSHNO;
4843 }
4844 }
4845 RETPUSHYES;
4846 }
4847 }
a566f585 4848 else if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_REGEXP) {
d7c0d282 4849 DEBUG_M(Perl_deb(aTHX_ " applying rule Regex-Array\n"));
ea0c2dbd
RGS
4850 sm_regex_array:
4851 {
4852 PMOP * const matcher = make_matcher((REGEXP*) SvRV(d));
c70927a6
FC
4853 const SSize_t this_len = av_len(MUTABLE_AV(SvRV(e)));
4854 SSize_t i;
0d863452 4855
ea0c2dbd
RGS
4856 for(i = 0; i <= this_len; ++i) {
4857 SV * const * const svp = av_fetch(MUTABLE_AV(SvRV(e)), i, FALSE);
d7c0d282 4858 DEBUG_M(Perl_deb(aTHX_ " testing element against pattern...\n"));
ea0c2dbd
RGS
4859 if (svp && matcher_matches_sv(matcher, *svp)) {
4860 destroy_matcher(matcher);
4861 RETPUSHYES;
4862 }
0d863452 4863 }
ea0c2dbd
RGS
4864 destroy_matcher(matcher);
4865 RETPUSHNO;
0d863452 4866 }
0d863452 4867 }
015eb7b9
RGS
4868 else if (!SvOK(d)) {
4869 /* undef ~~ array */
c70927a6
FC
4870 const SSize_t this_len = av_len(MUTABLE_AV(SvRV(e)));
4871 SSize_t i;
0d863452 4872
d7c0d282 4873 DEBUG_M(Perl_deb(aTHX_ " applying rule Undef-Array\n"));
015eb7b9 4874 for (i = 0; i <= this_len; ++i) {
b0138e99 4875 SV * const * const svp = av_fetch(MUTABLE_AV(SvRV(e)), i, FALSE);
d7c0d282 4876 DEBUG_M(Perl_deb(aTHX_ " testing for undef element...\n"));
015eb7b9 4877 if (!svp || !SvOK(*svp))
0d863452
RH
4878 RETPUSHYES;
4879 }
4880 RETPUSHNO;
4881 }
015eb7b9 4882 else {
41e726ac
RGS
4883 sm_any_array:
4884 {
c70927a6
FC
4885 SSize_t i;
4886 const SSize_t this_len = av_len(MUTABLE_AV(SvRV(e)));
0d863452 4887
d7c0d282 4888 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-Array\n"));
41e726ac
RGS
4889 for (i = 0; i <= this_len; ++i) {
4890 SV * const * const svp = av_fetch(MUTABLE_AV(SvRV(e)), i, FALSE);
4891 if (!svp)
4892 continue;
015eb7b9 4893
41e726ac
RGS
4894 PUSHs(d);
4895 PUSHs(*svp);
4896 PUTBACK;
4897 /* infinite recursion isn't supposed to happen here */
d7c0d282 4898 DEBUG_M(Perl_deb(aTHX_ " recursively testing array element...\n"));
be88a5c3 4899 (void) do_smartmatch(NULL, NULL, 1);
41e726ac 4900 SPAGAIN;
d7c0d282 4901 DEBUG_M(Perl_deb(aTHX_ " recursion finished\n"));
41e726ac
RGS
4902 if (SvTRUEx(POPs))
4903 RETPUSHYES;
4904 }
4905 RETPUSHNO;
0d863452 4906 }
0d863452
RH
4907 }
4908 }
b0138e99 4909 /* ~~ qr// */
a566f585 4910 else if (SvROK(e) && SvTYPE(SvRV(e)) == SVt_REGEXP) {
ea0c2dbd
RGS
4911 if (!object_on_left && SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVHV) {
4912 SV *t = d; d = e; e = t;
d7c0d282 4913 DEBUG_M(Perl_deb(aTHX_ " applying rule Hash-Regex\n"));
ea0c2dbd
RGS
4914 goto sm_regex_hash;
4915 }
4916 else if (!object_on_left && SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVAV) {
4917 SV *t = d; d = e; e = t;
d7c0d282 4918 DEBUG_M(Perl_deb(aTHX_ " applying rule Array-Regex\n"));
ea0c2dbd
RGS
4919 goto sm_regex_array;
4920 }
4921 else {
4922 PMOP * const matcher = make_matcher((REGEXP*) SvRV(e));
0d863452 4923
d7c0d282 4924 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-Regex\n"));
ea0c2dbd
RGS
4925 PUTBACK;
4926 PUSHs(matcher_matches_sv(matcher, d)
4927 ? &PL_sv_yes
4928 : &PL_sv_no);
4929 destroy_matcher(matcher);
4930 RETURN;
4931 }
0d863452 4932 }
b0138e99 4933 /* ~~ scalar */
2c9d2554
RGS
4934 /* See if there is overload magic on left */
4935 else if (object_on_left && SvAMAGIC(d)) {
4936 SV *tmpsv;
d7c0d282
DM
4937 DEBUG_M(Perl_deb(aTHX_ " applying rule Object-Any\n"));
4938 DEBUG_M(Perl_deb(aTHX_ " attempting overload\n"));
2c9d2554
RGS
4939 PUSHs(d); PUSHs(e);
4940 PUTBACK;
4941 tmpsv = amagic_call(d, e, smart_amg, AMGf_noright);
4942 if (tmpsv) {
4943 SPAGAIN;
4944 (void)POPs;
4945 SETs(tmpsv);
4946 RETURN;
4947 }
4948 SP -= 2;
d7c0d282 4949 DEBUG_M(Perl_deb(aTHX_ " failed to run overload method; falling back...\n"));
2c9d2554
RGS
4950 goto sm_any_scalar;
4951 }
fb51372e
RGS
4952 else if (!SvOK(d)) {
4953 /* undef ~~ scalar ; we already know that the scalar is SvOK */
d7c0d282 4954 DEBUG_M(Perl_deb(aTHX_ " applying rule undef-Any\n"));
fb51372e
RGS
4955 RETPUSHNO;
4956 }
2c9d2554
RGS
4957 else
4958 sm_any_scalar:
4959 if (SvNIOK(e) || (SvPOK(e) && looks_like_number(e) && SvNIOK(d))) {
d7c0d282
DM
4960 DEBUG_M(if (SvNIOK(e))
4961 Perl_deb(aTHX_ " applying rule Any-Num\n");
4962 else
4963 Perl_deb(aTHX_ " applying rule Num-numish\n");
4964 );
33ed63a2 4965 /* numeric comparison */
0d863452
RH
4966 PUSHs(d); PUSHs(e);
4967 PUTBACK;
a98fe34d 4968 if (CopHINTS_get(PL_curcop) & HINT_INTEGER)
897d3989 4969 (void) Perl_pp_i_eq(aTHX);
0d863452 4970 else
897d3989 4971 (void) Perl_pp_eq(aTHX);
0d863452
RH
4972 SPAGAIN;
4973 if (SvTRUEx(POPs))
4974 RETPUSHYES;
4975 else
4976 RETPUSHNO;
4977 }
4978
4979 /* As a last resort, use string comparison */
d7c0d282 4980 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-Any\n"));
0d863452
RH
4981 PUSHs(d); PUSHs(e);
4982 PUTBACK;
897d3989 4983 return Perl_pp_seq(aTHX);
0d863452
RH
4984}
4985
4986PP(pp_enterwhen)
4987{
4988 dVAR; dSP;
eb578fdb 4989 PERL_CONTEXT *cx;
0d863452
RH
4990 const I32 gimme = GIMME_V;
4991
4992 /* This is essentially an optimization: if the match
4993 fails, we don't want to push a context and then
4994 pop it again right away, so we skip straight
4995 to the op that follows the leavewhen.
25b991bf 4996 RETURNOP calls PUTBACK which restores the stack pointer after the POPs.
0d863452
RH
4997 */
4998 if ((0 == (PL_op->op_flags & OPf_SPECIAL)) && !SvTRUEx(POPs))
25b991bf 4999 RETURNOP(cLOGOP->op_other->op_next);
0d863452 5000
c08f093b 5001 ENTER_with_name("when");
0d863452
RH
5002 SAVETMPS;
5003
5004 PUSHBLOCK(cx, CXt_WHEN, SP);
5005 PUSHWHEN(cx);
5006
5007 RETURN;
5008}
5009
5010PP(pp_leavewhen)
5011{
5012 dVAR; dSP;
c08f093b 5013 I32 cxix;
eb578fdb 5014 PERL_CONTEXT *cx;
c08f093b 5015 I32 gimme;
0d863452
RH
5016 SV **newsp;
5017 PMOP *newpm;
5018
c08f093b
VP
5019 cxix = dopoptogiven(cxstack_ix);
5020 if (cxix < 0)
fc7debfb
FC
5021 /* diag_listed_as: Can't "when" outside a topicalizer */
5022 DIE(aTHX_ "Can't \"%s\" outside a topicalizer",
5023 PL_op->op_flags & OPf_SPECIAL ? "default" : "when");
c08f093b 5024
0d863452
RH
5025 POPBLOCK(cx,newpm);
5026 assert(CxTYPE(cx) == CXt_WHEN);
5027
c08f093b 5028 TAINT_NOT;
2ec7f6f2
FC
5029 SP = adjust_stack_on_leave(newsp, SP, newsp, gimme,
5030 SVs_PADTMP|SVs_TEMP, FALSE);
0d863452
RH
5031 PL_curpm = newpm; /* pop $1 et al */
5032
c08f093b
VP
5033 LEAVE_with_name("when");
5034
5035 if (cxix < cxstack_ix)
5036 dounwind(cxix);
5037
5038 cx = &cxstack[cxix];
5039
5040 if (CxFOREACH(cx)) {
5041 /* clear off anything above the scope we're re-entering */
5042 I32 inner = PL_scopestack_ix;
5043
5044 TOPBLOCK(cx);
5045 if (PL_scopestack_ix < inner)
5046 leave_scope(PL_scopestack[PL_scopestack_ix]);
5047 PL_curcop = cx->blk_oldcop;
5048
47c9d59f 5049 PERL_ASYNC_CHECK();
c08f093b
VP
5050 return cx->blk_loop.my_op->op_nextop;
5051 }
47c9d59f
NC
5052 else {
5053 PERL_ASYNC_CHECK();
b1b5a4ae 5054 RETURNOP(cx->blk_givwhen.leave_op);
47c9d59f 5055 }
0d863452
RH
5056}
5057
5058PP(pp_continue)
5059{
c08f093b 5060 dVAR; dSP;
0d863452 5061 I32 cxix;
eb578fdb 5062 PERL_CONTEXT *cx;
c08f093b
VP
5063 I32 gimme;
5064 SV **newsp;
5065 PMOP *newpm;
7be5bd17
FR
5066
5067 PERL_UNUSED_VAR(gimme);
0d863452
RH
5068
5069 cxix = dopoptowhen(cxstack_ix);
5070 if (cxix < 0)
5071 DIE(aTHX_ "Can't \"continue\" outside a when block");
c08f093b 5072
0d863452
RH
5073 if (cxix < cxstack_ix)
5074 dounwind(cxix);
5075
c08f093b
VP
5076 POPBLOCK(cx,newpm);
5077 assert(CxTYPE(cx) == CXt_WHEN);
5078
5079 SP = newsp;
5080 PL_curpm = newpm; /* pop $1 et al */
5081
5082 LEAVE_with_name("when");
5083 RETURNOP(cx->blk_givwhen.leave_op->op_next);
0d863452
RH
5084}
5085
5086PP(pp_break)
5087{
5088 dVAR;
5089 I32 cxix;
eb578fdb 5090 PERL_CONTEXT *cx;
25b991bf 5091
0d863452 5092 cxix = dopoptogiven(cxstack_ix);
c08f093b
VP
5093 if (cxix < 0)
5094 DIE(aTHX_ "Can't \"break\" outside a given block");
5095
5096 cx = &cxstack[cxix];
5097 if (CxFOREACH(cx))
0d863452
RH
5098 DIE(aTHX_ "Can't \"break\" in a loop topicalizer");
5099
5100 if (cxix < cxstack_ix)
5101 dounwind(cxix);
0d863452 5102
0787ea8a
VP
5103 /* Restore the sp at the time we entered the given block */
5104 TOPBLOCK(cx);
5105
c08f093b 5106 return cx->blk_givwhen.leave_op;
0d863452
RH
5107}
5108
74e0ddf7 5109static MAGIC *
cea2e8a9 5110S_doparseform(pTHX_ SV *sv)
a0d0e21e
LW
5111{
5112 STRLEN len;
eb578fdb
KW
5113 char *s = SvPV(sv, len);
5114 char *send;
5115 char *base = NULL; /* start of current field */
5116 I32 skipspaces = 0; /* number of contiguous spaces seen */
086b26f3
DM
5117 bool noblank = FALSE; /* ~ or ~~ seen on this line */
5118 bool repeat = FALSE; /* ~~ seen on this line */
5119 bool postspace = FALSE; /* a text field may need right padding */
dea28490 5120 U32 *fops;
eb578fdb 5121 U32 *fpc;
086b26f3 5122 U32 *linepc = NULL; /* position of last FF_LINEMARK */
eb578fdb 5123 I32 arg;
086b26f3
DM
5124 bool ischop; /* it's a ^ rather than a @ */
5125 bool unchopnum = FALSE; /* at least one @ (i.e. non-chop) num field seen */
a1b95068 5126 int maxops = 12; /* FF_LINEMARK + FF_END + 10 (\0 without preceding \n) */
3808a683
DM
5127 MAGIC *mg = NULL;
5128 SV *sv_copy;
a0d0e21e 5129
7918f24d
NC
5130 PERL_ARGS_ASSERT_DOPARSEFORM;
5131
55497cff 5132 if (len == 0)
cea2e8a9 5133 Perl_croak(aTHX_ "Null picture in formline");
ac27b0f5 5134
3808a683
DM
5135 if (SvTYPE(sv) >= SVt_PVMG) {
5136 /* This might, of course, still return NULL. */
5137 mg = mg_find(sv, PERL_MAGIC_fm);
5138 } else {
5139 sv_upgrade(sv, SVt_PVMG);
5140 }
5141
5142 if (mg) {
5143 /* still the same as previously-compiled string? */
5144 SV *old = mg->mg_obj;
5145 if ( !(!!SvUTF8(old) ^ !!SvUTF8(sv))
5146 && len == SvCUR(old)
5147 && strnEQ(SvPVX(old), SvPVX(sv), len)
b57b1734
DM
5148 ) {
5149 DEBUG_f(PerlIO_printf(Perl_debug_log,"Re-using compiled format\n"));
3808a683 5150 return mg;
b57b1734 5151 }
3808a683 5152
b57b1734 5153 DEBUG_f(PerlIO_printf(Perl_debug_log, "Re-compiling format\n"));
3808a683
DM
5154 Safefree(mg->mg_ptr);
5155 mg->mg_ptr = NULL;
5156 SvREFCNT_dec(old);
5157 mg->mg_obj = NULL;
5158 }
b57b1734
DM
5159 else {
5160 DEBUG_f(PerlIO_printf(Perl_debug_log, "Compiling format\n"));
3808a683 5161 mg = sv_magicext(sv, NULL, PERL_MAGIC_fm, &PL_vtbl_fm, NULL, 0);
b57b1734 5162 }
3808a683
DM
5163
5164 sv_copy = newSVpvn_utf8(s, len, SvUTF8(sv));
5165 s = SvPV(sv_copy, len); /* work on the copy, not the original */
5166 send = s + len;
5167
5168
815f25c6
DM
5169 /* estimate the buffer size needed */
5170 for (base = s; s <= send; s++) {
a1b95068 5171 if (*s == '\n' || *s == '@' || *s == '^')
815f25c6
DM
5172 maxops += 10;
5173 }
5174 s = base;
c445ea15 5175 base = NULL;
815f25c6 5176
a02a5408 5177 Newx(fops, maxops, U32);
a0d0e21e
LW
5178 fpc = fops;
5179
5180 if (s < send) {
5181 linepc = fpc;
5182 *fpc++ = FF_LINEMARK;
5183 noblank = repeat = FALSE;
5184 base = s;
5185 }
5186
5187 while (s <= send) {
5188 switch (*s++) {
5189 default:
5190 skipspaces = 0;
5191 continue;
5192
5193 case '~':
5194 if (*s == '~') {
5195 repeat = TRUE;
b57b1734
DM
5196 skipspaces++;
5197 s++;
a0d0e21e
LW
5198 }
5199 noblank = TRUE;
a0d0e21e
LW
5200 /* FALL THROUGH */
5201 case ' ': case '\t':
5202 skipspaces++;
5203 continue;
a1b95068
WL
5204 case 0:
5205 if (s < send) {
5206 skipspaces = 0;
5207 continue;
5208 } /* else FALL THROUGH */
5209 case '\n':
a0d0e21e
LW
5210 arg = s - base;
5211 skipspaces++;
5212 arg -= skipspaces;
5213 if (arg) {
5f05dabc 5214 if (postspace)
a0d0e21e 5215 *fpc++ = FF_SPACE;
a0d0e21e 5216 *fpc++ = FF_LITERAL;
76912796 5217 *fpc++ = (U32)arg;
a0d0e21e 5218 }
5f05dabc 5219 postspace = FALSE;
a0d0e21e
LW
5220 if (s <= send)
5221 skipspaces--;
5222 if (skipspaces) {
5223 *fpc++ = FF_SKIP;
76912796 5224 *fpc++ = (U32)skipspaces;
a0d0e21e
LW
5225 }
5226 skipspaces = 0;
5227 if (s <= send)
5228 *fpc++ = FF_NEWLINE;
5229 if (noblank) {
5230 *fpc++ = FF_BLANK;
5231 if (repeat)
5232 arg = fpc - linepc + 1;
5233 else
5234 arg = 0;
76912796 5235 *fpc++ = (U32)arg;
a0d0e21e
LW
5236 }
5237 if (s < send) {
5238 linepc = fpc;
5239 *fpc++ = FF_LINEMARK;
5240 noblank = repeat = FALSE;
5241 base = s;
5242 }
5243 else
5244 s++;
5245 continue;
5246
5247 case '@':
5248 case '^':
5249 ischop = s[-1] == '^';
5250
5251 if (postspace) {
5252 *fpc++ = FF_SPACE;
5253 postspace = FALSE;
5254 }
5255 arg = (s - base) - 1;
5256 if (arg) {
5257 *fpc++ = FF_LITERAL;
76912796 5258 *fpc++ = (U32)arg;
a0d0e21e
LW
5259 }
5260
5261 base = s - 1;
5262 *fpc++ = FF_FETCH;
086b26f3 5263 if (*s == '*') { /* @* or ^* */
a0d0e21e 5264 s++;
a1b95068
WL
5265 *fpc++ = 2; /* skip the @* or ^* */
5266 if (ischop) {
5267 *fpc++ = FF_LINESNGL;
5268 *fpc++ = FF_CHOP;
5269 } else
5270 *fpc++ = FF_LINEGLOB;
a0d0e21e 5271 }
086b26f3 5272 else if (*s == '#' || (*s == '.' && s[1] == '#')) { /* @###, ^### */
a701009a 5273 arg = ischop ? FORM_NUM_BLANK : 0;
a0d0e21e
LW
5274 base = s - 1;
5275 while (*s == '#')
5276 s++;
5277 if (*s == '.') {
06b5626a 5278 const char * const f = ++s;
a0d0e21e
LW
5279 while (*s == '#')
5280 s++;
a701009a 5281 arg |= FORM_NUM_POINT + (s - f);
a0d0e21e
LW
5282 }
5283 *fpc++ = s - base; /* fieldsize for FETCH */
5284 *fpc++ = FF_DECIMAL;
76912796 5285 *fpc++ = (U32)arg;
a1b95068 5286 unchopnum |= ! ischop;
784707d5
JP
5287 }
5288 else if (*s == '0' && s[1] == '#') { /* Zero padded decimals */
a701009a 5289 arg = ischop ? FORM_NUM_BLANK : 0;
784707d5
JP
5290 base = s - 1;
5291 s++; /* skip the '0' first */
5292 while (*s == '#')
5293 s++;
5294 if (*s == '.') {
06b5626a 5295 const char * const f = ++s;
784707d5
JP
5296 while (*s == '#')
5297 s++;
a701009a 5298 arg |= FORM_NUM_POINT + (s - f);
784707d5
JP
5299 }
5300 *fpc++ = s - base; /* fieldsize for FETCH */
5301 *fpc++ = FF_0DECIMAL;
76912796 5302 *fpc++ = (U32)arg;
a1b95068 5303 unchopnum |= ! ischop;
a0d0e21e 5304 }
086b26f3 5305 else { /* text field */
a0d0e21e
LW
5306 I32 prespace = 0;
5307 bool ismore = FALSE;
5308
5309 if (*s == '>') {
5310 while (*++s == '>') ;
5311 prespace = FF_SPACE;
5312 }
5313 else if (*s == '|') {
5314 while (*++s == '|') ;
5315 prespace = FF_HALFSPACE;
5316 postspace = TRUE;
5317 }
5318 else {
5319 if (*s == '<')
5320 while (*++s == '<') ;
5321 postspace = TRUE;
5322 }
5323 if (*s == '.' && s[1] == '.' && s[2] == '.') {
5324 s += 3;
5325 ismore = TRUE;
5326 }
5327 *fpc++ = s - base; /* fieldsize for FETCH */
5328
5329 *fpc++ = ischop ? FF_CHECKCHOP : FF_CHECKNL;
5330
5331 if (prespace)
76912796 5332 *fpc++ = (U32)prespace; /* add SPACE or HALFSPACE */
a0d0e21e
LW
5333 *fpc++ = FF_ITEM;
5334 if (ismore)
5335 *fpc++ = FF_MORE;
5336 if (ischop)
5337 *fpc++ = FF_CHOP;
5338 }
5339 base = s;
5340 skipspaces = 0;
5341 continue;
5342 }
5343 }
5344 *fpc++ = FF_END;
5345
815f25c6 5346 assert (fpc <= fops + maxops); /* ensure our buffer estimate was valid */
a0d0e21e 5347 arg = fpc - fops;
74e0ddf7 5348
3808a683 5349 mg->mg_ptr = (char *) fops;
74e0ddf7 5350 mg->mg_len = arg * sizeof(U32);
3808a683
DM
5351 mg->mg_obj = sv_copy;
5352 mg->mg_flags |= MGf_REFCOUNTED;
a1b95068 5353
bfed75c6 5354 if (unchopnum && repeat)
75f63940 5355 Perl_die(aTHX_ "Repeated format line will never terminate (~~ and @#)");
74e0ddf7
NC
5356
5357 return mg;
a1b95068
WL
5358}
5359
5360
5361STATIC bool
5362S_num_overflow(NV value, I32 fldsize, I32 frcsize)
5363{
5364 /* Can value be printed in fldsize chars, using %*.*f ? */
5365 NV pwr = 1;
5366 NV eps = 0.5;
5367 bool res = FALSE;
5368 int intsize = fldsize - (value < 0 ? 1 : 0);
5369
a701009a 5370 if (frcsize & FORM_NUM_POINT)
a1b95068 5371 intsize--;
a701009a 5372 frcsize &= ~(FORM_NUM_POINT|FORM_NUM_BLANK);
a1b95068
WL
5373 intsize -= frcsize;
5374
5375 while (intsize--) pwr *= 10.0;
5376 while (frcsize--) eps /= 10.0;
5377
5378 if( value >= 0 ){
5379 if (value + eps >= pwr)
5380 res = TRUE;
5381 } else {
5382 if (value - eps <= -pwr)
5383 res = TRUE;
5384 }
5385 return res;
a0d0e21e 5386}
4e35701f 5387
bbed91b5 5388static I32
0bd48802 5389S_run_user_filter(pTHX_ int idx, SV *buf_sv, int maxlen)
bbed91b5 5390{
27da23d5 5391 dVAR;
0bd48802 5392 SV * const datasv = FILTER_DATA(idx);
504618e9 5393 const int filter_has_file = IoLINES(datasv);
ad64d0ec
NC
5394 SV * const filter_state = MUTABLE_SV(IoTOP_GV(datasv));
5395 SV * const filter_sub = MUTABLE_SV(IoBOTTOM_GV(datasv));
941a98a0 5396 int status = 0;
ec0b63d7 5397 SV *upstream;
941a98a0 5398 STRLEN got_len;
162177c1
Z
5399 char *got_p = NULL;
5400 char *prune_from = NULL;
34113e50 5401 bool read_from_cache = FALSE;
bb7a0f54 5402 STRLEN umaxlen;
d60d2019 5403 SV *err = NULL;
bb7a0f54 5404
7918f24d
NC
5405 PERL_ARGS_ASSERT_RUN_USER_FILTER;
5406
bb7a0f54
MHM
5407 assert(maxlen >= 0);
5408 umaxlen = maxlen;
5675696b 5409
bbed91b5
KF
5410 /* I was having segfault trouble under Linux 2.2.5 after a
5411 parse error occured. (Had to hack around it with a test
13765c85 5412 for PL_parser->error_count == 0.) Solaris doesn't segfault --
bbed91b5
KF
5413 not sure where the trouble is yet. XXX */
5414
4464f08e
NC
5415 {
5416 SV *const cache = datasv;
937b367d
NC
5417 if (SvOK(cache)) {
5418 STRLEN cache_len;
5419 const char *cache_p = SvPV(cache, cache_len);
941a98a0
NC
5420 STRLEN take = 0;
5421
bb7a0f54 5422 if (umaxlen) {
941a98a0
NC
5423 /* Running in block mode and we have some cached data already.
5424 */
bb7a0f54 5425 if (cache_len >= umaxlen) {
941a98a0
NC
5426 /* In fact, so much data we don't even need to call
5427 filter_read. */
bb7a0f54 5428 take = umaxlen;
941a98a0
NC
5429 }
5430 } else {
10edeb5d
JH
5431 const char *const first_nl =
5432 (const char *)memchr(cache_p, '\n', cache_len);
941a98a0
NC
5433 if (first_nl) {
5434 take = first_nl + 1 - cache_p;
5435 }
5436 }
5437 if (take) {
5438 sv_catpvn(buf_sv, cache_p, take);
5439 sv_chop(cache, cache_p + take);
486ec47a 5440 /* Definitely not EOF */
937b367d
NC
5441 return 1;
5442 }
941a98a0 5443
937b367d 5444 sv_catsv(buf_sv, cache);
bb7a0f54
MHM
5445 if (umaxlen) {
5446 umaxlen -= cache_len;
941a98a0 5447 }
937b367d 5448 SvOK_off(cache);
34113e50 5449 read_from_cache = TRUE;
937b367d
NC
5450 }
5451 }
ec0b63d7 5452
34113e50
NC
5453 /* Filter API says that the filter appends to the contents of the buffer.
5454 Usually the buffer is "", so the details don't matter. But if it's not,
5455 then clearly what it contains is already filtered by this filter, so we
5456 don't want to pass it in a second time.
5457 I'm going to use a mortal in case the upstream filter croaks. */
ec0b63d7
NC
5458 upstream = ((SvOK(buf_sv) && sv_len(buf_sv)) || SvGMAGICAL(buf_sv))
5459 ? sv_newmortal() : buf_sv;
5460 SvUPGRADE(upstream, SVt_PV);
937b367d 5461
bbed91b5 5462 if (filter_has_file) {
67e70b33 5463 status = FILTER_READ(idx+1, upstream, 0);
bbed91b5
KF
5464 }
5465
34113e50 5466 if (filter_sub && status >= 0) {
39644a26 5467 dSP;
bbed91b5
KF
5468 int count;
5469
d343c3ef 5470 ENTER_with_name("call_filter_sub");
55b5114f 5471 SAVE_DEFSV;
bbed91b5
KF
5472 SAVETMPS;
5473 EXTEND(SP, 2);
5474
414bf5ae 5475 DEFSV_set(upstream);
bbed91b5 5476 PUSHMARK(SP);
6e449a3a 5477 mPUSHi(0);
bbed91b5
KF
5478 if (filter_state) {
5479 PUSHs(filter_state);
5480 }
5481 PUTBACK;
d60d2019 5482 count = call_sv(filter_sub, G_SCALAR|G_EVAL);
bbed91b5
KF
5483 SPAGAIN;
5484
5485 if (count > 0) {
5486 SV *out = POPs;
2e8409ad 5487 SvGETMAGIC(out);
bbed91b5 5488 if (SvOK(out)) {
941a98a0 5489 status = SvIV(out);
bbed91b5 5490 }
eed484f9
DD
5491 else {
5492 SV * const errsv = ERRSV;
5493 if (SvTRUE_NN(errsv))
5494 err = newSVsv(errsv);
d60d2019 5495 }
bbed91b5
KF
5496 }
5497
5498 PUTBACK;
5499 FREETMPS;
d343c3ef 5500 LEAVE_with_name("call_filter_sub");
bbed91b5
KF
5501 }
5502
536ac391
FC
5503 if (SvGMAGICAL(upstream)) {
5504 mg_get(upstream);
5505 if (upstream == buf_sv) mg_free(buf_sv);
5506 }
b68108d9 5507 if (SvIsCOW(upstream)) sv_force_normal(upstream);
d60d2019 5508 if(!err && SvOK(upstream)) {
536ac391 5509 got_p = SvPV_nomg(upstream, got_len);
bb7a0f54
MHM
5510 if (umaxlen) {
5511 if (got_len > umaxlen) {
5512 prune_from = got_p + umaxlen;
937b367d 5513 }
941a98a0 5514 } else {
162177c1 5515 char *const first_nl = (char *)memchr(got_p, '\n', got_len);
941a98a0
NC
5516 if (first_nl && first_nl + 1 < got_p + got_len) {
5517 /* There's a second line here... */
5518 prune_from = first_nl + 1;
937b367d 5519 }
937b367d
NC
5520 }
5521 }
d60d2019 5522 if (!err && prune_from) {
941a98a0
NC
5523 /* Oh. Too long. Stuff some in our cache. */
5524 STRLEN cached_len = got_p + got_len - prune_from;
4464f08e 5525 SV *const cache = datasv;
941a98a0 5526
4464f08e 5527 if (SvOK(cache)) {
941a98a0
NC
5528 /* Cache should be empty. */
5529 assert(!SvCUR(cache));
5530 }
5531
5532 sv_setpvn(cache, prune_from, cached_len);
5533 /* If you ask for block mode, you may well split UTF-8 characters.
5534 "If it breaks, you get to keep both parts"
5535 (Your code is broken if you don't put them back together again
5536 before something notices.) */
5537 if (SvUTF8(upstream)) {
5538 SvUTF8_on(cache);
5539 }
00752fe1
FC
5540 if (SvPOK(upstream)) SvCUR_set(upstream, got_len - cached_len);
5541 else
5542 /* Cannot just use sv_setpvn, as that could free the buffer
5543 before we have a chance to assign it. */
5544 sv_usepvn(upstream, savepvn(got_p, got_len - cached_len),
5545 got_len - cached_len);
162177c1 5546 *prune_from = 0;
941a98a0
NC
5547 /* Can't yet be EOF */
5548 if (status == 0)
5549 status = 1;
5550 }
937b367d 5551
34113e50
NC
5552 /* If they are at EOF but buf_sv has something in it, then they may never
5553 have touched the SV upstream, so it may be undefined. If we naively
5554 concatenate it then we get a warning about use of uninitialised value.
5555 */
d60d2019 5556 if (!err && upstream != buf_sv &&
dc423e96 5557 SvOK(upstream)) {
536ac391 5558 sv_catsv_nomg(buf_sv, upstream);
937b367d 5559 }
ae2c96ed 5560 else if (SvOK(upstream)) (void)SvPV_force_nolen(buf_sv);
937b367d 5561
941a98a0 5562 if (status <= 0) {
bbed91b5 5563 IoLINES(datasv) = 0;
bbed91b5
KF
5564 if (filter_state) {
5565 SvREFCNT_dec(filter_state);
a0714e2c 5566 IoTOP_GV(datasv) = NULL;
bbed91b5
KF
5567 }
5568 if (filter_sub) {
5569 SvREFCNT_dec(filter_sub);
a0714e2c 5570 IoBOTTOM_GV(datasv) = NULL;
bbed91b5 5571 }
0bd48802 5572 filter_del(S_run_user_filter);
bbed91b5 5573 }
d60d2019
JL
5574
5575 if (err)
5576 croak_sv(err);
5577
34113e50
NC
5578 if (status == 0 && read_from_cache) {
5579 /* If we read some data from the cache (and by getting here it implies
5580 that we emptied the cache) then we aren't yet at EOF, and mustn't
5581 report that to our caller. */
5582 return 1;
5583 }
941a98a0 5584 return status;
bbed91b5 5585}
84d4ea48 5586
241d1a3b
NC
5587/*
5588 * Local variables:
5589 * c-indentation-style: bsd
5590 * c-basic-offset: 4
14d04a33 5591 * indent-tabs-mode: nil
241d1a3b
NC
5592 * End:
5593 *
14d04a33 5594 * ex: set ts=8 sts=4 sw=4 et:
37442d52 5595 */