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