This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
mention perlivp in release_managers_guide
[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
37#ifndef WORD_ALIGN
dea28490 38#define WORD_ALIGN sizeof(U32)
a0d0e21e
LW
39#endif
40
54310121 41#define DOCATCH(o) ((CATCH_GET == TRUE) ? docatch(o) : (o))
1e422769 42
94fcd414
NC
43#define dopoptosub(plop) dopoptosub_at(cxstack, (plop))
44
a0d0e21e
LW
45PP(pp_wantarray)
46{
97aff369 47 dVAR;
39644a26 48 dSP;
a0d0e21e
LW
49 I32 cxix;
50 EXTEND(SP, 1);
51
52 cxix = dopoptosub(cxstack_ix);
53 if (cxix < 0)
54 RETPUSHUNDEF;
55
54310121 56 switch (cxstack[cxix].blk_gimme) {
57 case G_ARRAY:
a0d0e21e 58 RETPUSHYES;
54310121 59 case G_SCALAR:
a0d0e21e 60 RETPUSHNO;
54310121 61 default:
62 RETPUSHUNDEF;
63 }
a0d0e21e
LW
64}
65
2cd61cdb
IZ
66PP(pp_regcreset)
67{
97aff369 68 dVAR;
2cd61cdb
IZ
69 /* XXXX Should store the old value to allow for tie/overload - and
70 restore in regcomp, where marked with XXXX. */
3280af22 71 PL_reginterp_cnt = 0;
0b4182de 72 TAINT_NOT;
2cd61cdb
IZ
73 return NORMAL;
74}
75
b3eb6a9b
GS
76PP(pp_regcomp)
77{
97aff369 78 dVAR;
39644a26 79 dSP;
a0d0e21e 80 register PMOP *pm = (PMOP*)cLOGOP->op_other;
a0d0e21e 81 SV *tmpstr;
84679df5 82 REGEXP *re = NULL;
bfed75c6 83
4b5a0d1c 84 /* prevent recompiling under /o and ithreads. */
3db8f154 85#if defined(USE_ITHREADS)
131b3ad0
DM
86 if (pm->op_pmflags & PMf_KEEP && PM_GETRE(pm)) {
87 if (PL_op->op_flags & OPf_STACKED) {
88 dMARK;
89 SP = MARK;
90 }
91 else
92 (void)POPs;
93 RETURN;
94 }
513629ba 95#endif
131b3ad0
DM
96 if (PL_op->op_flags & OPf_STACKED) {
97 /* multiple args; concatentate them */
98 dMARK; dORIGMARK;
99 tmpstr = PAD_SV(ARGTARG);
76f68e9b 100 sv_setpvs(tmpstr, "");
131b3ad0
DM
101 while (++MARK <= SP) {
102 if (PL_amagic_generation) {
103 SV *sv;
104 if ((SvAMAGIC(tmpstr) || SvAMAGIC(*MARK)) &&
105 (sv = amagic_call(tmpstr, *MARK, concat_amg, AMGf_assign)))
106 {
107 sv_setsv(tmpstr, sv);
108 continue;
109 }
110 }
111 sv_catsv(tmpstr, *MARK);
112 }
113 SvSETMAGIC(tmpstr);
114 SP = ORIGMARK;
115 }
116 else
117 tmpstr = POPs;
513629ba 118
b3eb6a9b 119 if (SvROK(tmpstr)) {
d8f6592e 120 SV * const sv = SvRV(tmpstr);
5c35adbb 121 if (SvTYPE(sv) == SVt_REGEXP)
d2f13c59 122 re = (REGEXP*) sv;
c277df42 123 }
5c35adbb
NC
124 if (re) {
125 re = reg_temp_copy(re);
aaa362c4 126 ReREFCNT_dec(PM_GETRE(pm));
28d8d7f4 127 PM_SETRE(pm, re);
c277df42
IZ
128 }
129 else {
e62f0680 130 STRLEN len;
3ab4a224 131 const char *t = SvOK(tmpstr) ? SvPV_const(tmpstr, len) : "";
c737faaf 132 re = PM_GETRE(pm);
14a49a24 133 assert (re != (REGEXP*) &PL_sv_undef);
c277df42 134
20408e3c 135 /* Check against the last compiled regexp. */
a11c8683 136 if (!re || !RX_PRECOMP(re) || RX_PRELEN(re) != len ||
220fc49f 137 memNE(RX_PRECOMP(re), t, len))
85aff577 138 {
07bc277f 139 const regexp_engine *eng = re ? RX_ENGINE(re) : NULL;
c737faaf 140 U32 pm_flags = pm->op_pmflags & PMf_COMPILETIME;
d8f6592e
AL
141 if (re) {
142 ReREFCNT_dec(re);
14a49a24
NC
143#ifdef USE_ITHREADS
144 PM_SETRE(pm, (REGEXP*) &PL_sv_undef);
145#else
4608196e 146 PM_SETRE(pm, NULL); /* crucial if regcomp aborts */
14a49a24 147#endif
1e2e3d02
YO
148 } else if (PL_curcop->cop_hints_hash) {
149 SV *ptr = Perl_refcounted_he_fetch(aTHX_ PL_curcop->cop_hints_hash, 0,
150 "regcomp", 7, 0, 0);
151 if (ptr && SvIOK(ptr) && SvIV(ptr))
152 eng = INT2PTR(regexp_engine*,SvIV(ptr));
c277df42 153 }
664e119d 154
533c011a 155 if (PL_op->op_flags & OPf_SPECIAL)
3280af22 156 PL_reginterp_cnt = I32_MAX; /* Mark as safe. */
a0d0e21e 157
b9ad30b4
NC
158 if (DO_UTF8(tmpstr)) {
159 assert (SvUTF8(tmpstr));
160 } else if (SvUTF8(tmpstr)) {
161 /* Not doing UTF-8, despite what the SV says. Is this only if
162 we're trapped in use 'bytes'? */
163 /* Make a copy of the octet sequence, but without the flag on,
164 as the compiler now honours the SvUTF8 flag on tmpstr. */
165 STRLEN len;
166 const char *const p = SvPV(tmpstr, len);
167 tmpstr = newSVpvn_flags(p, len, SVs_TEMP);
168 }
c737faaf 169
3ab4a224
AB
170 if (eng)
171 PM_SETRE(pm, CALLREGCOMP_ENG(eng, tmpstr, pm_flags));
172 else
173 PM_SETRE(pm, CALLREGCOMP(tmpstr, pm_flags));
c737faaf 174
f86aaa29 175 PL_reginterp_cnt = 0; /* XXXX Be extra paranoid - needed
2cd61cdb 176 inside tie/overload accessors. */
c277df42 177 }
4633a7c4 178 }
c737faaf
YO
179
180 re = PM_GETRE(pm);
a0d0e21e 181
72311751 182#ifndef INCOMPLETE_TAINTS
3280af22
NIS
183 if (PL_tainting) {
184 if (PL_tainted)
07bc277f 185 RX_EXTFLAGS(re) |= RXf_TAINTED;
72311751 186 else
07bc277f 187 RX_EXTFLAGS(re) &= ~RXf_TAINTED;
72311751
GS
188 }
189#endif
190
220fc49f 191 if (!RX_PRELEN(PM_GETRE(pm)) && PL_curpm)
3280af22 192 pm = PL_curpm;
a0d0e21e 193
c737faaf
YO
194
195#if !defined(USE_ITHREADS)
196 /* can't change the optree at runtime either */
197 /* PMf_KEEP is handled differently under threads to avoid these problems */
a0d0e21e 198 if (pm->op_pmflags & PMf_KEEP) {
c90c0ff4 199 pm->op_private &= ~OPpRUNTIME; /* no point compiling again */
533c011a 200 cLOGOP->op_first->op_next = PL_op->op_next;
a0d0e21e 201 }
c737faaf 202#endif
a0d0e21e
LW
203 RETURN;
204}
205
206PP(pp_substcont)
207{
97aff369 208 dVAR;
39644a26 209 dSP;
c09156bb 210 register PERL_CONTEXT *cx = &cxstack[cxstack_ix];
901017d6
AL
211 register PMOP * const pm = (PMOP*) cLOGOP->op_other;
212 register SV * const dstr = cx->sb_dstr;
a0d0e21e
LW
213 register char *s = cx->sb_s;
214 register char *m = cx->sb_m;
215 char *orig = cx->sb_orig;
901017d6 216 register REGEXP * const rx = cx->sb_rx;
c445ea15 217 SV *nsv = NULL;
988e6e7e
AE
218 REGEXP *old = PM_GETRE(pm);
219 if(old != rx) {
bfed75c6 220 if(old)
988e6e7e 221 ReREFCNT_dec(old);
d6106309 222 PM_SETRE(pm,ReREFCNT_inc(rx));
d8f2cf8a
AB
223 }
224
d9f97599 225 rxres_restore(&cx->sb_rxres, rx);
01b35787 226 RX_MATCH_UTF8_set(rx, DO_UTF8(cx->sb_targ));
c90c0ff4 227
a0d0e21e 228 if (cx->sb_iters++) {
a3b680e6 229 const I32 saviters = cx->sb_iters;
a0d0e21e 230 if (cx->sb_iters > cx->sb_maxiters)
cea2e8a9 231 DIE(aTHX_ "Substitution loop");
a0d0e21e 232
48c036b1
GS
233 if (!(cx->sb_rxtainted & 2) && SvTAINTED(TOPs))
234 cx->sb_rxtainted |= 2;
a0d0e21e 235 sv_catsv(dstr, POPs);
a0d0e21e
LW
236
237 /* Are we done */
c5bed6a7 238 if (CxONCE(cx) || !CALLREGEXEC(rx, s, cx->sb_strend, orig,
9661b544 239 s == m, cx->sb_targ, NULL,
22e551b9 240 ((cx->sb_rflags & REXEC_COPY_STR)
cf93c79d
IZ
241 ? (REXEC_IGNOREPOS|REXEC_NOT_FIRST)
242 : (REXEC_COPY_STR|REXEC_IGNOREPOS|REXEC_NOT_FIRST))))
a0d0e21e 243 {
823a54a3 244 SV * const targ = cx->sb_targ;
748a9306 245
078c425b
JH
246 assert(cx->sb_strend >= s);
247 if(cx->sb_strend > s) {
248 if (DO_UTF8(dstr) && !SvUTF8(targ))
249 sv_catpvn_utf8_upgrade(dstr, s, cx->sb_strend - s, nsv);
250 else
251 sv_catpvn(dstr, s, cx->sb_strend - s);
252 }
48c036b1 253 cx->sb_rxtainted |= RX_MATCH_TAINTED(rx);
9212bbba 254
f8c7b90f 255#ifdef PERL_OLD_COPY_ON_WRITE
ed252734
NC
256 if (SvIsCOW(targ)) {
257 sv_force_normal_flags(targ, SV_COW_DROP_PV);
258 } else
259#endif
260 {
8bd4d4c5 261 SvPV_free(targ);
ed252734 262 }
f880fe2f 263 SvPV_set(targ, SvPVX(dstr));
748a9306
LW
264 SvCUR_set(targ, SvCUR(dstr));
265 SvLEN_set(targ, SvLEN(dstr));
1aa99e6b
IH
266 if (DO_UTF8(dstr))
267 SvUTF8_on(targ);
6136c704 268 SvPV_set(dstr, NULL);
48c036b1
GS
269
270 TAINT_IF(cx->sb_rxtainted & 1);
6e449a3a 271 mPUSHi(saviters - 1);
48c036b1 272
ffc61ed2 273 (void)SvPOK_only_UTF8(targ);
48c036b1 274 TAINT_IF(cx->sb_rxtainted);
a0d0e21e 275 SvSETMAGIC(targ);
9212bbba 276 SvTAINT(targ);
5cd24f17 277
4633a7c4 278 LEAVE_SCOPE(cx->sb_oldsave);
a0d0e21e
LW
279 POPSUBST(cx);
280 RETURNOP(pm->op_next);
281 }
8e5e9ebe 282 cx->sb_iters = saviters;
a0d0e21e 283 }
07bc277f 284 if (RX_MATCH_COPIED(rx) && RX_SUBBEG(rx) != orig) {
a0d0e21e
LW
285 m = s;
286 s = orig;
07bc277f 287 cx->sb_orig = orig = RX_SUBBEG(rx);
a0d0e21e
LW
288 s = orig + (m - s);
289 cx->sb_strend = s + (cx->sb_strend - m);
290 }
07bc277f 291 cx->sb_m = m = RX_OFFS(rx)[0].start + orig;
db79b45b 292 if (m > s) {
bfed75c6 293 if (DO_UTF8(dstr) && !SvUTF8(cx->sb_targ))
db79b45b
JH
294 sv_catpvn_utf8_upgrade(dstr, s, m - s, nsv);
295 else
296 sv_catpvn(dstr, s, m-s);
297 }
07bc277f 298 cx->sb_s = RX_OFFS(rx)[0].end + orig;
084916e3 299 { /* Update the pos() information. */
44f8325f 300 SV * const sv = cx->sb_targ;
084916e3 301 MAGIC *mg;
7a7f3e45 302 SvUPGRADE(sv, SVt_PVMG);
14befaf4 303 if (!(mg = mg_find(sv, PERL_MAGIC_regex_global))) {
d83f0a82 304#ifdef PERL_OLD_COPY_ON_WRITE
51a9ea20 305 if (SvIsCOW(sv))
d83f0a82
NC
306 sv_force_normal_flags(sv, 0);
307#endif
308 mg = sv_magicext(sv, NULL, PERL_MAGIC_regex_global, &PL_vtbl_mglob,
309 NULL, 0);
084916e3 310 }
ce474962 311 mg->mg_len = m - orig;
084916e3 312 }
988e6e7e 313 if (old != rx)
d6106309 314 (void)ReREFCNT_inc(rx);
d9f97599
GS
315 cx->sb_rxtainted |= RX_MATCH_TAINTED(rx);
316 rxres_save(&cx->sb_rxres, rx);
29f2e912 317 RETURNOP(pm->op_pmstashstartu.op_pmreplstart);
a0d0e21e
LW
318}
319
c90c0ff4 320void
864dbfa3 321Perl_rxres_save(pTHX_ void **rsp, REGEXP *rx)
c90c0ff4 322{
323 UV *p = (UV*)*rsp;
324 U32 i;
7918f24d
NC
325
326 PERL_ARGS_ASSERT_RXRES_SAVE;
96a5add6 327 PERL_UNUSED_CONTEXT;
c90c0ff4 328
07bc277f 329 if (!p || p[1] < RX_NPARENS(rx)) {
f8c7b90f 330#ifdef PERL_OLD_COPY_ON_WRITE
07bc277f 331 i = 7 + RX_NPARENS(rx) * 2;
ed252734 332#else
07bc277f 333 i = 6 + RX_NPARENS(rx) * 2;
ed252734 334#endif
c90c0ff4 335 if (!p)
a02a5408 336 Newx(p, i, UV);
c90c0ff4 337 else
338 Renew(p, i, UV);
339 *rsp = (void*)p;
340 }
341
07bc277f 342 *p++ = PTR2UV(RX_MATCH_COPIED(rx) ? RX_SUBBEG(rx) : NULL);
cf93c79d 343 RX_MATCH_COPIED_off(rx);
c90c0ff4 344
f8c7b90f 345#ifdef PERL_OLD_COPY_ON_WRITE
bdd9a1b1
NC
346 *p++ = PTR2UV(RX_SAVED_COPY(rx));
347 RX_SAVED_COPY(rx) = NULL;
ed252734
NC
348#endif
349
07bc277f 350 *p++ = RX_NPARENS(rx);
c90c0ff4 351
07bc277f
NC
352 *p++ = PTR2UV(RX_SUBBEG(rx));
353 *p++ = (UV)RX_SUBLEN(rx);
354 for (i = 0; i <= RX_NPARENS(rx); ++i) {
355 *p++ = (UV)RX_OFFS(rx)[i].start;
356 *p++ = (UV)RX_OFFS(rx)[i].end;
c90c0ff4 357 }
358}
359
9c105995
NC
360static void
361S_rxres_restore(pTHX_ void **rsp, REGEXP *rx)
c90c0ff4 362{
363 UV *p = (UV*)*rsp;
364 U32 i;
7918f24d
NC
365
366 PERL_ARGS_ASSERT_RXRES_RESTORE;
96a5add6 367 PERL_UNUSED_CONTEXT;
c90c0ff4 368
ed252734 369 RX_MATCH_COPY_FREE(rx);
cf93c79d 370 RX_MATCH_COPIED_set(rx, *p);
c90c0ff4 371 *p++ = 0;
372
f8c7b90f 373#ifdef PERL_OLD_COPY_ON_WRITE
bdd9a1b1
NC
374 if (RX_SAVED_COPY(rx))
375 SvREFCNT_dec (RX_SAVED_COPY(rx));
376 RX_SAVED_COPY(rx) = INT2PTR(SV*,*p);
ed252734
NC
377 *p++ = 0;
378#endif
379
07bc277f 380 RX_NPARENS(rx) = *p++;
c90c0ff4 381
07bc277f
NC
382 RX_SUBBEG(rx) = INT2PTR(char*,*p++);
383 RX_SUBLEN(rx) = (I32)(*p++);
384 for (i = 0; i <= RX_NPARENS(rx); ++i) {
385 RX_OFFS(rx)[i].start = (I32)(*p++);
386 RX_OFFS(rx)[i].end = (I32)(*p++);
c90c0ff4 387 }
388}
389
9c105995
NC
390static void
391S_rxres_free(pTHX_ void **rsp)
c90c0ff4 392{
44f8325f 393 UV * const p = (UV*)*rsp;
7918f24d
NC
394
395 PERL_ARGS_ASSERT_RXRES_FREE;
96a5add6 396 PERL_UNUSED_CONTEXT;
c90c0ff4 397
398 if (p) {
94010e71
NC
399#ifdef PERL_POISON
400 void *tmp = INT2PTR(char*,*p);
401 Safefree(tmp);
402 if (*p)
7e337ee0 403 PoisonFree(*p, 1, sizeof(*p));
94010e71 404#else
56431972 405 Safefree(INT2PTR(char*,*p));
94010e71 406#endif
f8c7b90f 407#ifdef PERL_OLD_COPY_ON_WRITE
ed252734
NC
408 if (p[1]) {
409 SvREFCNT_dec (INT2PTR(SV*,p[1]));
410 }
411#endif
c90c0ff4 412 Safefree(p);
4608196e 413 *rsp = NULL;
c90c0ff4 414 }
415}
416
a0d0e21e
LW
417PP(pp_formline)
418{
97aff369 419 dVAR; dSP; dMARK; dORIGMARK;
823a54a3 420 register SV * const tmpForm = *++MARK;
dea28490 421 register U32 *fpc;
a0d0e21e 422 register char *t;
245d4a47 423 const char *f;
a0d0e21e 424 register I32 arg;
c445ea15
AL
425 register SV *sv = NULL;
426 const char *item = NULL;
9c5ffd7c
JH
427 I32 itemsize = 0;
428 I32 fieldsize = 0;
a0d0e21e 429 I32 lines = 0;
c445ea15
AL
430 bool chopspace = (strchr(PL_chopset, ' ') != NULL);
431 const char *chophere = NULL;
432 char *linemark = NULL;
65202027 433 NV value;
9c5ffd7c 434 bool gotsome = FALSE;
a0d0e21e 435 STRLEN len;
823a54a3 436 const STRLEN fudge = SvPOK(tmpForm)
24c89738 437 ? (SvCUR(tmpForm) * (IN_BYTES ? 1 : 3) + 1) : 0;
1bd51a4c
IH
438 bool item_is_utf8 = FALSE;
439 bool targ_is_utf8 = FALSE;
c445ea15 440 SV * nsv = NULL;
cbbf8932 441 OP * parseres = NULL;
bfed75c6 442 const char *fmt;
a0d0e21e 443
76e3520e 444 if (!SvMAGICAL(tmpForm) || !SvCOMPILED(tmpForm)) {
445b3f51
GS
445 if (SvREADONLY(tmpForm)) {
446 SvREADONLY_off(tmpForm);
a1b95068 447 parseres = doparseform(tmpForm);
445b3f51
GS
448 SvREADONLY_on(tmpForm);
449 }
450 else
a1b95068
WL
451 parseres = doparseform(tmpForm);
452 if (parseres)
453 return parseres;
a0d0e21e 454 }
3280af22 455 SvPV_force(PL_formtarget, len);
1bd51a4c
IH
456 if (DO_UTF8(PL_formtarget))
457 targ_is_utf8 = TRUE;
a0ed51b3 458 t = SvGROW(PL_formtarget, len + fudge + 1); /* XXX SvCUR bad */
a0d0e21e 459 t += len;
245d4a47 460 f = SvPV_const(tmpForm, len);
a0d0e21e 461 /* need to jump to the next word */
245d4a47 462 fpc = (U32*)(f + len + WORD_ALIGN - SvCUR(tmpForm) % WORD_ALIGN);
a0d0e21e
LW
463
464 for (;;) {
465 DEBUG_f( {
bfed75c6 466 const char *name = "???";
a0d0e21e
LW
467 arg = -1;
468 switch (*fpc) {
469 case FF_LITERAL: arg = fpc[1]; name = "LITERAL"; break;
470 case FF_BLANK: arg = fpc[1]; name = "BLANK"; break;
471 case FF_SKIP: arg = fpc[1]; name = "SKIP"; break;
472 case FF_FETCH: arg = fpc[1]; name = "FETCH"; break;
473 case FF_DECIMAL: arg = fpc[1]; name = "DECIMAL"; break;
474
475 case FF_CHECKNL: name = "CHECKNL"; break;
476 case FF_CHECKCHOP: name = "CHECKCHOP"; break;
477 case FF_SPACE: name = "SPACE"; break;
478 case FF_HALFSPACE: name = "HALFSPACE"; break;
479 case FF_ITEM: name = "ITEM"; break;
480 case FF_CHOP: name = "CHOP"; break;
481 case FF_LINEGLOB: name = "LINEGLOB"; break;
482 case FF_NEWLINE: name = "NEWLINE"; break;
483 case FF_MORE: name = "MORE"; break;
484 case FF_LINEMARK: name = "LINEMARK"; break;
485 case FF_END: name = "END"; break;
bfed75c6 486 case FF_0DECIMAL: name = "0DECIMAL"; break;
a1b95068 487 case FF_LINESNGL: name = "LINESNGL"; break;
a0d0e21e
LW
488 }
489 if (arg >= 0)
bf49b057 490 PerlIO_printf(Perl_debug_log, "%-16s%ld\n", name, (long) arg);
a0d0e21e 491 else
bf49b057 492 PerlIO_printf(Perl_debug_log, "%-16s\n", name);
5f80b19c 493 } );
a0d0e21e
LW
494 switch (*fpc++) {
495 case FF_LINEMARK:
496 linemark = t;
a0d0e21e
LW
497 lines++;
498 gotsome = FALSE;
499 break;
500
501 case FF_LITERAL:
502 arg = *fpc++;
1bd51a4c 503 if (targ_is_utf8 && !SvUTF8(tmpForm)) {
b15aece3 504 SvCUR_set(PL_formtarget, t - SvPVX_const(PL_formtarget));
78da4d13
JH
505 *t = '\0';
506 sv_catpvn_utf8_upgrade(PL_formtarget, f, arg, nsv);
507 t = SvEND(PL_formtarget);
f3f2f1a3 508 f += arg;
1bd51a4c
IH
509 break;
510 }
511 if (!targ_is_utf8 && DO_UTF8(tmpForm)) {
b15aece3 512 SvCUR_set(PL_formtarget, t - SvPVX_const(PL_formtarget));
1bd51a4c 513 *t = '\0';
7bf79863 514 sv_utf8_upgrade_flags_grow(PL_formtarget, SV_GMAGIC, fudge + 1);
1bd51a4c
IH
515 t = SvEND(PL_formtarget);
516 targ_is_utf8 = TRUE;
517 }
a0d0e21e
LW
518 while (arg--)
519 *t++ = *f++;
520 break;
521
522 case FF_SKIP:
523 f += *fpc++;
524 break;
525
526 case FF_FETCH:
527 arg = *fpc++;
528 f += arg;
529 fieldsize = arg;
530
531 if (MARK < SP)
532 sv = *++MARK;
533 else {
3280af22 534 sv = &PL_sv_no;
599cee73 535 if (ckWARN(WARN_SYNTAX))
9014280d 536 Perl_warner(aTHX_ packWARN(WARN_SYNTAX), "Not enough format arguments");
a0d0e21e
LW
537 }
538 break;
539
540 case FF_CHECKNL:
5a34cab7
NC
541 {
542 const char *send;
543 const char *s = item = SvPV_const(sv, len);
544 itemsize = len;
545 if (DO_UTF8(sv)) {
546 itemsize = sv_len_utf8(sv);
547 if (itemsize != (I32)len) {
548 I32 itembytes;
549 if (itemsize > fieldsize) {
550 itemsize = fieldsize;
551 itembytes = itemsize;
552 sv_pos_u2b(sv, &itembytes, 0);
553 }
554 else
555 itembytes = len;
556 send = chophere = s + itembytes;
557 while (s < send) {
558 if (*s & ~31)
559 gotsome = TRUE;
560 else if (*s == '\n')
561 break;
562 s++;
563 }
564 item_is_utf8 = TRUE;
565 itemsize = s - item;
566 sv_pos_b2u(sv, &itemsize);
567 break;
a0ed51b3 568 }
a0ed51b3 569 }
5a34cab7
NC
570 item_is_utf8 = FALSE;
571 if (itemsize > fieldsize)
572 itemsize = fieldsize;
573 send = chophere = s + itemsize;
574 while (s < send) {
575 if (*s & ~31)
576 gotsome = TRUE;
577 else if (*s == '\n')
578 break;
579 s++;
580 }
581 itemsize = s - item;
582 break;
a0ed51b3 583 }
a0d0e21e
LW
584
585 case FF_CHECKCHOP:
5a34cab7
NC
586 {
587 const char *s = item = SvPV_const(sv, len);
588 itemsize = len;
589 if (DO_UTF8(sv)) {
590 itemsize = sv_len_utf8(sv);
591 if (itemsize != (I32)len) {
592 I32 itembytes;
593 if (itemsize <= fieldsize) {
594 const char *send = chophere = s + itemsize;
595 while (s < send) {
596 if (*s == '\r') {
597 itemsize = s - item;
a0ed51b3 598 chophere = s;
a0ed51b3 599 break;
5a34cab7
NC
600 }
601 if (*s++ & ~31)
a0ed51b3 602 gotsome = TRUE;
a0ed51b3 603 }
a0ed51b3 604 }
5a34cab7
NC
605 else {
606 const char *send;
607 itemsize = fieldsize;
608 itembytes = itemsize;
609 sv_pos_u2b(sv, &itembytes, 0);
610 send = chophere = s + itembytes;
611 while (s < send || (s == send && isSPACE(*s))) {
612 if (isSPACE(*s)) {
613 if (chopspace)
614 chophere = s;
615 if (*s == '\r')
616 break;
617 }
618 else {
619 if (*s & ~31)
620 gotsome = TRUE;
621 if (strchr(PL_chopset, *s))
622 chophere = s + 1;
623 }
624 s++;
625 }
626 itemsize = chophere - item;
627 sv_pos_b2u(sv, &itemsize);
628 }
629 item_is_utf8 = TRUE;
a0d0e21e
LW
630 break;
631 }
a0d0e21e 632 }
5a34cab7
NC
633 item_is_utf8 = FALSE;
634 if (itemsize <= fieldsize) {
635 const char *const send = chophere = s + itemsize;
636 while (s < send) {
637 if (*s == '\r') {
638 itemsize = s - item;
a0d0e21e 639 chophere = s;
a0d0e21e 640 break;
5a34cab7
NC
641 }
642 if (*s++ & ~31)
a0d0e21e 643 gotsome = TRUE;
a0d0e21e 644 }
a0d0e21e 645 }
5a34cab7
NC
646 else {
647 const char *send;
648 itemsize = fieldsize;
649 send = chophere = s + itemsize;
650 while (s < send || (s == send && isSPACE(*s))) {
651 if (isSPACE(*s)) {
652 if (chopspace)
653 chophere = s;
654 if (*s == '\r')
655 break;
656 }
657 else {
658 if (*s & ~31)
659 gotsome = TRUE;
660 if (strchr(PL_chopset, *s))
661 chophere = s + 1;
662 }
663 s++;
664 }
665 itemsize = chophere - item;
666 }
667 break;
a0d0e21e 668 }
a0d0e21e
LW
669
670 case FF_SPACE:
671 arg = fieldsize - itemsize;
672 if (arg) {
673 fieldsize -= arg;
674 while (arg-- > 0)
675 *t++ = ' ';
676 }
677 break;
678
679 case FF_HALFSPACE:
680 arg = fieldsize - itemsize;
681 if (arg) {
682 arg /= 2;
683 fieldsize -= arg;
684 while (arg-- > 0)
685 *t++ = ' ';
686 }
687 break;
688
689 case FF_ITEM:
5a34cab7
NC
690 {
691 const char *s = item;
692 arg = itemsize;
693 if (item_is_utf8) {
694 if (!targ_is_utf8) {
695 SvCUR_set(PL_formtarget, t - SvPVX_const(PL_formtarget));
696 *t = '\0';
7bf79863
KW
697 sv_utf8_upgrade_flags_grow(PL_formtarget, SV_GMAGIC,
698 fudge + 1);
5a34cab7
NC
699 t = SvEND(PL_formtarget);
700 targ_is_utf8 = TRUE;
a0ed51b3 701 }
5a34cab7
NC
702 while (arg--) {
703 if (UTF8_IS_CONTINUED(*s)) {
704 STRLEN skip = UTF8SKIP(s);
705 switch (skip) {
706 default:
707 Move(s,t,skip,char);
708 s += skip;
709 t += skip;
710 break;
711 case 7: *t++ = *s++;
712 case 6: *t++ = *s++;
713 case 5: *t++ = *s++;
714 case 4: *t++ = *s++;
715 case 3: *t++ = *s++;
716 case 2: *t++ = *s++;
717 case 1: *t++ = *s++;
718 }
719 }
720 else {
721 if ( !((*t++ = *s++) & ~31) )
722 t[-1] = ' ';
723 }
a0ed51b3 724 }
5a34cab7 725 break;
a0ed51b3 726 }
5a34cab7
NC
727 if (targ_is_utf8 && !item_is_utf8) {
728 SvCUR_set(PL_formtarget, t - SvPVX_const(PL_formtarget));
729 *t = '\0';
730 sv_catpvn_utf8_upgrade(PL_formtarget, s, arg, nsv);
731 for (; t < SvEND(PL_formtarget); t++) {
78da4d13 732#ifdef EBCDIC
901017d6 733 const int ch = *t;
5a34cab7 734 if (iscntrl(ch))
78da4d13 735#else
5a34cab7 736 if (!(*t & ~31))
78da4d13 737#endif
5a34cab7
NC
738 *t = ' ';
739 }
740 break;
78da4d13 741 }
5a34cab7 742 while (arg--) {
9d116dd7 743#ifdef EBCDIC
901017d6 744 const int ch = *t++ = *s++;
5a34cab7 745 if (iscntrl(ch))
a0d0e21e 746#else
5a34cab7 747 if ( !((*t++ = *s++) & ~31) )
a0d0e21e 748#endif
5a34cab7
NC
749 t[-1] = ' ';
750 }
751 break;
a0d0e21e 752 }
a0d0e21e
LW
753
754 case FF_CHOP:
5a34cab7
NC
755 {
756 const char *s = chophere;
757 if (chopspace) {
af68e756 758 while (isSPACE(*s))
5a34cab7
NC
759 s++;
760 }
761 sv_chop(sv,s);
762 SvSETMAGIC(sv);
763 break;
a0d0e21e 764 }
a0d0e21e 765
a1b95068
WL
766 case FF_LINESNGL:
767 chopspace = 0;
a0d0e21e 768 case FF_LINEGLOB:
5a34cab7 769 {
e32383e2 770 const bool oneline = fpc[-1] == FF_LINESNGL;
5a34cab7 771 const char *s = item = SvPV_const(sv, len);
f3f2f1a3 772 item_is_utf8 = DO_UTF8(sv);
5a34cab7 773 itemsize = len;
5a34cab7 774 if (itemsize) {
e8e72d41 775 STRLEN to_copy = itemsize;
5a34cab7 776 const char *const send = s + len;
35c6393c 777 const U8 *source = (const U8 *) s;
e8e72d41
NC
778 U8 *tmp = NULL;
779
5a34cab7
NC
780 gotsome = TRUE;
781 chophere = s + itemsize;
782 while (s < send) {
783 if (*s++ == '\n') {
784 if (oneline) {
e8e72d41 785 to_copy = s - SvPVX_const(sv) - 1;
5a34cab7
NC
786 chophere = s;
787 break;
788 } else {
789 if (s == send) {
790 itemsize--;
e8e72d41 791 to_copy--;
5a34cab7
NC
792 } else
793 lines++;
794 }
1bd51a4c 795 }
a0d0e21e 796 }
e8e72d41 797 if (targ_is_utf8 && !item_is_utf8) {
35c6393c 798 source = tmp = bytes_to_utf8(source, &to_copy);
e8e72d41
NC
799 SvCUR_set(PL_formtarget,
800 t - SvPVX_const(PL_formtarget));
801 } else {
802 if (item_is_utf8 && !targ_is_utf8) {
803 /* Upgrade targ to UTF8, and then we reduce it to
804 a problem we have a simple solution for. */
805 SvCUR_set(PL_formtarget,
806 t - SvPVX_const(PL_formtarget));
807 targ_is_utf8 = TRUE;
808 /* Don't need get magic. */
7bf79863 809 sv_utf8_upgrade_nomg(PL_formtarget);
e8e72d41
NC
810 } else {
811 SvCUR_set(PL_formtarget,
812 t - SvPVX_const(PL_formtarget));
813 }
e8e72d41
NC
814
815 /* Easy. They agree. */
816 assert (item_is_utf8 == targ_is_utf8);
817 }
818 SvGROW(PL_formtarget,
819 SvCUR(PL_formtarget) + to_copy + fudge + 1);
5a34cab7 820 t = SvPVX(PL_formtarget) + SvCUR(PL_formtarget);
e8e72d41
NC
821
822 Copy(source, t, to_copy, char);
823 t += to_copy;
824 SvCUR_set(PL_formtarget, SvCUR(PL_formtarget) + to_copy);
f3f2f1a3 825 if (item_is_utf8) {
e8e72d41
NC
826 if (SvGMAGICAL(sv)) {
827 /* Mustn't call sv_pos_b2u() as it does a second
828 mg_get(). Is this a bug? Do we need a _flags()
829 variant? */
830 itemsize = utf8_length(source, source + itemsize);
831 } else {
832 sv_pos_b2u(sv, &itemsize);
833 }
834 assert(!tmp);
835 } else if (tmp) {
836 Safefree(tmp);
f3f2f1a3 837 }
a0d0e21e 838 }
5a34cab7 839 break;
a0d0e21e 840 }
a0d0e21e 841
a1b95068
WL
842 case FF_0DECIMAL:
843 arg = *fpc++;
844#if defined(USE_LONG_DOUBLE)
10edeb5d
JH
845 fmt = (const char *)
846 ((arg & 256) ?
847 "%#0*.*" PERL_PRIfldbl : "%0*.*" PERL_PRIfldbl);
a1b95068 848#else
10edeb5d
JH
849 fmt = (const char *)
850 ((arg & 256) ?
851 "%#0*.*f" : "%0*.*f");
a1b95068
WL
852#endif
853 goto ff_dec;
a0d0e21e 854 case FF_DECIMAL:
a0d0e21e 855 arg = *fpc++;
65202027 856#if defined(USE_LONG_DOUBLE)
10edeb5d
JH
857 fmt = (const char *)
858 ((arg & 256) ? "%#*.*" PERL_PRIfldbl : "%*.*" PERL_PRIfldbl);
65202027 859#else
10edeb5d
JH
860 fmt = (const char *)
861 ((arg & 256) ? "%#*.*f" : "%*.*f");
65202027 862#endif
a1b95068 863 ff_dec:
784707d5
JP
864 /* If the field is marked with ^ and the value is undefined,
865 blank it out. */
784707d5
JP
866 if ((arg & 512) && !SvOK(sv)) {
867 arg = fieldsize;
868 while (arg--)
869 *t++ = ' ';
870 break;
871 }
872 gotsome = TRUE;
873 value = SvNV(sv);
a1b95068 874 /* overflow evidence */
bfed75c6 875 if (num_overflow(value, fieldsize, arg)) {
a1b95068
WL
876 arg = fieldsize;
877 while (arg--)
878 *t++ = '#';
879 break;
880 }
784707d5
JP
881 /* Formats aren't yet marked for locales, so assume "yes". */
882 {
883 STORE_NUMERIC_STANDARD_SET_LOCAL();
d9fad198 884 my_snprintf(t, SvLEN(PL_formtarget) - (t - SvPVX(PL_formtarget)), fmt, (int) fieldsize, (int) arg & 255, value);
784707d5
JP
885 RESTORE_NUMERIC_STANDARD();
886 }
887 t += fieldsize;
888 break;
a1b95068 889
a0d0e21e
LW
890 case FF_NEWLINE:
891 f++;
892 while (t-- > linemark && *t == ' ') ;
893 t++;
894 *t++ = '\n';
895 break;
896
897 case FF_BLANK:
898 arg = *fpc++;
899 if (gotsome) {
900 if (arg) { /* repeat until fields exhausted? */
901 *t = '\0';
b15aece3 902 SvCUR_set(PL_formtarget, t - SvPVX_const(PL_formtarget));
3280af22 903 lines += FmLINES(PL_formtarget);
a0d0e21e
LW
904 if (lines == 200) {
905 arg = t - linemark;
906 if (strnEQ(linemark, linemark - arg, arg))
cea2e8a9 907 DIE(aTHX_ "Runaway format");
a0d0e21e 908 }
1bd51a4c
IH
909 if (targ_is_utf8)
910 SvUTF8_on(PL_formtarget);
3280af22 911 FmLINES(PL_formtarget) = lines;
a0d0e21e
LW
912 SP = ORIGMARK;
913 RETURNOP(cLISTOP->op_first);
914 }
915 }
916 else {
917 t = linemark;
918 lines--;
919 }
920 break;
921
922 case FF_MORE:
5a34cab7
NC
923 {
924 const char *s = chophere;
925 const char *send = item + len;
926 if (chopspace) {
af68e756 927 while (isSPACE(*s) && (s < send))
5a34cab7 928 s++;
a0d0e21e 929 }
5a34cab7
NC
930 if (s < send) {
931 char *s1;
932 arg = fieldsize - itemsize;
933 if (arg) {
934 fieldsize -= arg;
935 while (arg-- > 0)
936 *t++ = ' ';
937 }
938 s1 = t - 3;
939 if (strnEQ(s1," ",3)) {
940 while (s1 > SvPVX_const(PL_formtarget) && isSPACE(s1[-1]))
941 s1--;
942 }
943 *s1++ = '.';
944 *s1++ = '.';
945 *s1++ = '.';
a0d0e21e 946 }
5a34cab7 947 break;
a0d0e21e 948 }
a0d0e21e
LW
949 case FF_END:
950 *t = '\0';
b15aece3 951 SvCUR_set(PL_formtarget, t - SvPVX_const(PL_formtarget));
1bd51a4c
IH
952 if (targ_is_utf8)
953 SvUTF8_on(PL_formtarget);
3280af22 954 FmLINES(PL_formtarget) += lines;
a0d0e21e
LW
955 SP = ORIGMARK;
956 RETPUSHYES;
957 }
958 }
959}
960
961PP(pp_grepstart)
962{
27da23d5 963 dVAR; dSP;
a0d0e21e
LW
964 SV *src;
965
3280af22 966 if (PL_stack_base + *PL_markstack_ptr == SP) {
a0d0e21e 967 (void)POPMARK;
54310121 968 if (GIMME_V == G_SCALAR)
6e449a3a 969 mXPUSHi(0);
533c011a 970 RETURNOP(PL_op->op_next->op_next);
a0d0e21e 971 }
3280af22 972 PL_stack_sp = PL_stack_base + *PL_markstack_ptr + 1;
cea2e8a9
GS
973 pp_pushmark(); /* push dst */
974 pp_pushmark(); /* push src */
a0d0e21e
LW
975 ENTER; /* enter outer scope */
976
977 SAVETMPS;
59f00321
RGS
978 if (PL_op->op_private & OPpGREP_LEX)
979 SAVESPTR(PAD_SVl(PL_op->op_targ));
980 else
981 SAVE_DEFSV;
a0d0e21e 982 ENTER; /* enter inner scope */
7766f137 983 SAVEVPTR(PL_curpm);
a0d0e21e 984
3280af22 985 src = PL_stack_base[*PL_markstack_ptr];
a0d0e21e 986 SvTEMP_off(src);
59f00321
RGS
987 if (PL_op->op_private & OPpGREP_LEX)
988 PAD_SVl(PL_op->op_targ) = src;
989 else
414bf5ae 990 DEFSV_set(src);
a0d0e21e
LW
991
992 PUTBACK;
533c011a 993 if (PL_op->op_type == OP_MAPSTART)
cea2e8a9 994 pp_pushmark(); /* push top */
533c011a 995 return ((LOGOP*)PL_op->op_next)->op_other;
a0d0e21e
LW
996}
997
a0d0e21e
LW
998PP(pp_mapwhile)
999{
27da23d5 1000 dVAR; dSP;
f54cb97a 1001 const I32 gimme = GIMME_V;
544f3153 1002 I32 items = (SP - PL_stack_base) - *PL_markstack_ptr; /* how many new items */
a0d0e21e
LW
1003 I32 count;
1004 I32 shift;
1005 SV** src;
ac27b0f5 1006 SV** dst;
a0d0e21e 1007
544f3153 1008 /* first, move source pointer to the next item in the source list */
3280af22 1009 ++PL_markstack_ptr[-1];
544f3153
GS
1010
1011 /* if there are new items, push them into the destination list */
4c90a460 1012 if (items && gimme != G_VOID) {
544f3153
GS
1013 /* might need to make room back there first */
1014 if (items > PL_markstack_ptr[-1] - PL_markstack_ptr[-2]) {
1015 /* XXX this implementation is very pessimal because the stack
1016 * is repeatedly extended for every set of items. Is possible
1017 * to do this without any stack extension or copying at all
1018 * by maintaining a separate list over which the map iterates
18ef8bea 1019 * (like foreach does). --gsar */
544f3153
GS
1020
1021 /* everything in the stack after the destination list moves
1022 * towards the end the stack by the amount of room needed */
1023 shift = items - (PL_markstack_ptr[-1] - PL_markstack_ptr[-2]);
1024
1025 /* items to shift up (accounting for the moved source pointer) */
1026 count = (SP - PL_stack_base) - (PL_markstack_ptr[-1] - 1);
18ef8bea
BT
1027
1028 /* This optimization is by Ben Tilly and it does
1029 * things differently from what Sarathy (gsar)
1030 * is describing. The downside of this optimization is
1031 * that leaves "holes" (uninitialized and hopefully unused areas)
1032 * to the Perl stack, but on the other hand this
1033 * shouldn't be a problem. If Sarathy's idea gets
1034 * implemented, this optimization should become
1035 * irrelevant. --jhi */
1036 if (shift < count)
1037 shift = count; /* Avoid shifting too often --Ben Tilly */
bfed75c6 1038
924508f0
GS
1039 EXTEND(SP,shift);
1040 src = SP;
1041 dst = (SP += shift);
3280af22
NIS
1042 PL_markstack_ptr[-1] += shift;
1043 *PL_markstack_ptr += shift;
544f3153 1044 while (count--)
a0d0e21e
LW
1045 *dst-- = *src--;
1046 }
544f3153 1047 /* copy the new items down to the destination list */
ac27b0f5 1048 dst = PL_stack_base + (PL_markstack_ptr[-2] += items) - 1;
22023b26
TP
1049 if (gimme == G_ARRAY) {
1050 while (items-- > 0)
1051 *dst-- = SvTEMP(TOPs) ? POPs : sv_mortalcopy(POPs);
1052 }
bfed75c6 1053 else {
22023b26
TP
1054 /* scalar context: we don't care about which values map returns
1055 * (we use undef here). And so we certainly don't want to do mortal
1056 * copies of meaningless values. */
1057 while (items-- > 0) {
b988aa42 1058 (void)POPs;
22023b26
TP
1059 *dst-- = &PL_sv_undef;
1060 }
1061 }
a0d0e21e
LW
1062 }
1063 LEAVE; /* exit inner scope */
1064
1065 /* All done yet? */
3280af22 1066 if (PL_markstack_ptr[-1] > *PL_markstack_ptr) {
a0d0e21e
LW
1067
1068 (void)POPMARK; /* pop top */
1069 LEAVE; /* exit outer scope */
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 if (PL_op->op_private & OPpGREP_LEX) {
1076 SV* sv = sv_newmortal();
1077 sv_setiv(sv, items);
1078 PUSHs(sv);
1079 }
1080 else {
1081 dTARGET;
1082 XPUSHi(items);
1083 }
a0d0e21e 1084 }
54310121 1085 else if (gimme == G_ARRAY)
1086 SP += items;
a0d0e21e
LW
1087 RETURN;
1088 }
1089 else {
1090 SV *src;
1091
1092 ENTER; /* enter inner scope */
7766f137 1093 SAVEVPTR(PL_curpm);
a0d0e21e 1094
544f3153 1095 /* set $_ to the new source item */
3280af22 1096 src = PL_stack_base[PL_markstack_ptr[-1]];
a0d0e21e 1097 SvTEMP_off(src);
59f00321
RGS
1098 if (PL_op->op_private & OPpGREP_LEX)
1099 PAD_SVl(PL_op->op_targ) = src;
1100 else
414bf5ae 1101 DEFSV_set(src);
a0d0e21e
LW
1102
1103 RETURNOP(cLOGOP->op_other);
1104 }
1105}
1106
a0d0e21e
LW
1107/* Range stuff. */
1108
1109PP(pp_range)
1110{
97aff369 1111 dVAR;
a0d0e21e 1112 if (GIMME == G_ARRAY)
1a67a97c 1113 return NORMAL;
538573f7 1114 if (SvTRUEx(PAD_SV(PL_op->op_targ)))
1a67a97c 1115 return cLOGOP->op_other;
538573f7 1116 else
1a67a97c 1117 return NORMAL;
a0d0e21e
LW
1118}
1119
1120PP(pp_flip)
1121{
97aff369 1122 dVAR;
39644a26 1123 dSP;
a0d0e21e
LW
1124
1125 if (GIMME == G_ARRAY) {
1a67a97c 1126 RETURNOP(((LOGOP*)cUNOP->op_first)->op_other);
a0d0e21e
LW
1127 }
1128 else {
1129 dTOPss;
44f8325f 1130 SV * const targ = PAD_SV(PL_op->op_targ);
bfed75c6 1131 int flip = 0;
790090df 1132
bfed75c6 1133 if (PL_op->op_private & OPpFLIP_LINENUM) {
4e3399f9
YST
1134 if (GvIO(PL_last_in_gv)) {
1135 flip = SvIV(sv) == (IV)IoLINES(GvIOp(PL_last_in_gv));
1136 }
1137 else {
fafc274c 1138 GV * const gv = gv_fetchpvs(".", GV_ADD|GV_NOTQUAL, SVt_PV);
44f8325f
AL
1139 if (gv && GvSV(gv))
1140 flip = SvIV(sv) == SvIV(GvSV(gv));
4e3399f9 1141 }
bfed75c6
AL
1142 } else {
1143 flip = SvTRUE(sv);
1144 }
1145 if (flip) {
a0d0e21e 1146 sv_setiv(PAD_SV(cUNOP->op_first->op_targ), 1);
533c011a 1147 if (PL_op->op_flags & OPf_SPECIAL) {
a0d0e21e 1148 sv_setiv(targ, 1);
3e3baf6d 1149 SETs(targ);
a0d0e21e
LW
1150 RETURN;
1151 }
1152 else {
1153 sv_setiv(targ, 0);
924508f0 1154 SP--;
1a67a97c 1155 RETURNOP(((LOGOP*)cUNOP->op_first)->op_other);
a0d0e21e
LW
1156 }
1157 }
76f68e9b 1158 sv_setpvs(TARG, "");
a0d0e21e
LW
1159 SETs(targ);
1160 RETURN;
1161 }
1162}
1163
8e9bbdb9
RGS
1164/* This code tries to decide if "$left .. $right" should use the
1165 magical string increment, or if the range is numeric (we make
1166 an exception for .."0" [#18165]). AMS 20021031. */
1167
1168#define RANGE_IS_NUMERIC(left,right) ( \
b0e74086
RGS
1169 SvNIOKp(left) || (SvOK(left) && !SvPOKp(left)) || \
1170 SvNIOKp(right) || (SvOK(right) && !SvPOKp(right)) || \
e0ab1c0e 1171 (((!SvOK(left) && SvOK(right)) || ((!SvOK(left) || \
b15aece3 1172 looks_like_number(left)) && SvPOKp(left) && *SvPVX_const(left) != '0')) \
e0ab1c0e 1173 && (!SvOK(right) || looks_like_number(right))))
8e9bbdb9 1174
a0d0e21e
LW
1175PP(pp_flop)
1176{
97aff369 1177 dVAR; dSP;
a0d0e21e
LW
1178
1179 if (GIMME == G_ARRAY) {
1180 dPOPPOPssrl;
86cb7173 1181
5b295bef
RD
1182 SvGETMAGIC(left);
1183 SvGETMAGIC(right);
a0d0e21e 1184
8e9bbdb9 1185 if (RANGE_IS_NUMERIC(left,right)) {
901017d6
AL
1186 register IV i, j;
1187 IV max;
4fe3f0fa
MHM
1188 if ((SvOK(left) && SvNV(left) < IV_MIN) ||
1189 (SvOK(right) && SvNV(right) > IV_MAX))
d470f89e 1190 DIE(aTHX_ "Range iterator outside integer range");
a0d0e21e
LW
1191 i = SvIV(left);
1192 max = SvIV(right);
bbce6d69 1193 if (max >= i) {
c1ab3db2
AK
1194 j = max - i + 1;
1195 EXTEND_MORTAL(j);
1196 EXTEND(SP, j);
bbce6d69 1197 }
c1ab3db2
AK
1198 else
1199 j = 0;
1200 while (j--) {
901017d6 1201 SV * const sv = sv_2mortal(newSViv(i++));
a0d0e21e
LW
1202 PUSHs(sv);
1203 }
1204 }
1205 else {
44f8325f 1206 SV * const final = sv_mortalcopy(right);
13c5b33c 1207 STRLEN len;
823a54a3 1208 const char * const tmps = SvPV_const(final, len);
a0d0e21e 1209
901017d6 1210 SV *sv = sv_mortalcopy(left);
13c5b33c 1211 SvPV_force_nolen(sv);
89ea2908 1212 while (!SvNIOKp(sv) && SvCUR(sv) <= len) {
a0d0e21e 1213 XPUSHs(sv);
b15aece3 1214 if (strEQ(SvPVX_const(sv),tmps))
89ea2908 1215 break;
a0d0e21e
LW
1216 sv = sv_2mortal(newSVsv(sv));
1217 sv_inc(sv);
1218 }
a0d0e21e
LW
1219 }
1220 }
1221 else {
1222 dTOPss;
901017d6 1223 SV * const targ = PAD_SV(cUNOP->op_first->op_targ);
4e3399f9 1224 int flop = 0;
a0d0e21e 1225 sv_inc(targ);
4e3399f9
YST
1226
1227 if (PL_op->op_private & OPpFLIP_LINENUM) {
1228 if (GvIO(PL_last_in_gv)) {
1229 flop = SvIV(sv) == (IV)IoLINES(GvIOp(PL_last_in_gv));
1230 }
1231 else {
fafc274c 1232 GV * const gv = gv_fetchpvs(".", GV_ADD|GV_NOTQUAL, SVt_PV);
4e3399f9
YST
1233 if (gv && GvSV(gv)) flop = SvIV(sv) == SvIV(GvSV(gv));
1234 }
1235 }
1236 else {
1237 flop = SvTRUE(sv);
1238 }
1239
1240 if (flop) {
a0d0e21e 1241 sv_setiv(PAD_SV(((UNOP*)cUNOP->op_first)->op_first->op_targ), 0);
396482e1 1242 sv_catpvs(targ, "E0");
a0d0e21e
LW
1243 }
1244 SETs(targ);
1245 }
1246
1247 RETURN;
1248}
1249
1250/* Control. */
1251
27da23d5 1252static const char * const context_name[] = {
515afda2 1253 "pseudo-block",
f31522f3 1254 NULL, /* CXt_WHEN never actually needs "block" */
76753e7f 1255 NULL, /* CXt_BLOCK never actually needs "block" */
f31522f3 1256 NULL, /* CXt_GIVEN never actually needs "block" */
76753e7f
NC
1257 NULL, /* CXt_LOOP_FOR never actually needs "loop" */
1258 NULL, /* CXt_LOOP_PLAIN never actually needs "loop" */
1259 NULL, /* CXt_LOOP_LAZYSV never actually needs "loop" */
1260 NULL, /* CXt_LOOP_LAZYIV never actually needs "loop" */
515afda2 1261 "subroutine",
76753e7f 1262 "format",
515afda2 1263 "eval",
515afda2 1264 "substitution",
515afda2
NC
1265};
1266
76e3520e 1267STATIC I32
06b5626a 1268S_dopoptolabel(pTHX_ const char *label)
a0d0e21e 1269{
97aff369 1270 dVAR;
a0d0e21e 1271 register I32 i;
a0d0e21e 1272
7918f24d
NC
1273 PERL_ARGS_ASSERT_DOPOPTOLABEL;
1274
a0d0e21e 1275 for (i = cxstack_ix; i >= 0; i--) {
901017d6 1276 register const PERL_CONTEXT * const cx = &cxstack[i];
6b35e009 1277 switch (CxTYPE(cx)) {
a0d0e21e 1278 case CXt_SUBST:
a0d0e21e 1279 case CXt_SUB:
7766f137 1280 case CXt_FORMAT:
a0d0e21e 1281 case CXt_EVAL:
0a753a76 1282 case CXt_NULL:
e476b1b5 1283 if (ckWARN(WARN_EXITING))
515afda2
NC
1284 Perl_warner(aTHX_ packWARN(WARN_EXITING), "Exiting %s via %s",
1285 context_name[CxTYPE(cx)], OP_NAME(PL_op));
1286 if (CxTYPE(cx) == CXt_NULL)
1287 return -1;
1288 break;
c6fdafd0 1289 case CXt_LOOP_LAZYIV:
d01136d6 1290 case CXt_LOOP_LAZYSV:
3b719c58
NC
1291 case CXt_LOOP_FOR:
1292 case CXt_LOOP_PLAIN:
a61a7064 1293 if ( !CxLABEL(cx) || strNE(label, CxLABEL(cx)) ) {
cea2e8a9 1294 DEBUG_l(Perl_deb(aTHX_ "(Skipping label #%ld %s)\n",
a61a7064 1295 (long)i, CxLABEL(cx)));
a0d0e21e
LW
1296 continue;
1297 }
cea2e8a9 1298 DEBUG_l( Perl_deb(aTHX_ "(Found label #%ld %s)\n", (long)i, label));
a0d0e21e
LW
1299 return i;
1300 }
1301 }
1302 return i;
1303}
1304
0d863452
RH
1305
1306
e50aee73 1307I32
864dbfa3 1308Perl_dowantarray(pTHX)
e50aee73 1309{
97aff369 1310 dVAR;
f54cb97a 1311 const I32 gimme = block_gimme();
54310121 1312 return (gimme == G_VOID) ? G_SCALAR : gimme;
1313}
1314
1315I32
864dbfa3 1316Perl_block_gimme(pTHX)
54310121 1317{
97aff369 1318 dVAR;
06b5626a 1319 const I32 cxix = dopoptosub(cxstack_ix);
e50aee73 1320 if (cxix < 0)
46fc3d4c 1321 return G_VOID;
e50aee73 1322
54310121 1323 switch (cxstack[cxix].blk_gimme) {
d2719217
GS
1324 case G_VOID:
1325 return G_VOID;
54310121 1326 case G_SCALAR:
e50aee73 1327 return G_SCALAR;
54310121 1328 case G_ARRAY:
1329 return G_ARRAY;
1330 default:
cea2e8a9 1331 Perl_croak(aTHX_ "panic: bad gimme: %d\n", cxstack[cxix].blk_gimme);
d2719217
GS
1332 /* NOTREACHED */
1333 return 0;
54310121 1334 }
e50aee73
AD
1335}
1336
78f9721b
SM
1337I32
1338Perl_is_lvalue_sub(pTHX)
1339{
97aff369 1340 dVAR;
06b5626a 1341 const I32 cxix = dopoptosub(cxstack_ix);
78f9721b
SM
1342 assert(cxix >= 0); /* We should only be called from inside subs */
1343
bafb2adc
NC
1344 if (CxLVAL(cxstack + cxix) && CvLVALUE(cxstack[cxix].blk_sub.cv))
1345 return CxLVAL(cxstack + cxix);
78f9721b
SM
1346 else
1347 return 0;
1348}
1349
76e3520e 1350STATIC I32
901017d6 1351S_dopoptosub_at(pTHX_ const PERL_CONTEXT *cxstk, I32 startingblock)
2c375eb9 1352{
97aff369 1353 dVAR;
a0d0e21e 1354 I32 i;
7918f24d
NC
1355
1356 PERL_ARGS_ASSERT_DOPOPTOSUB_AT;
1357
a0d0e21e 1358 for (i = startingblock; i >= 0; i--) {
901017d6 1359 register const PERL_CONTEXT * const cx = &cxstk[i];
6b35e009 1360 switch (CxTYPE(cx)) {
a0d0e21e
LW
1361 default:
1362 continue;
1363 case CXt_EVAL:
1364 case CXt_SUB:
7766f137 1365 case CXt_FORMAT:
cea2e8a9 1366 DEBUG_l( Perl_deb(aTHX_ "(Found sub #%ld)\n", (long)i));
a0d0e21e
LW
1367 return i;
1368 }
1369 }
1370 return i;
1371}
1372
76e3520e 1373STATIC I32
cea2e8a9 1374S_dopoptoeval(pTHX_ I32 startingblock)
a0d0e21e 1375{
97aff369 1376 dVAR;
a0d0e21e 1377 I32 i;
a0d0e21e 1378 for (i = startingblock; i >= 0; i--) {
06b5626a 1379 register const PERL_CONTEXT *cx = &cxstack[i];
6b35e009 1380 switch (CxTYPE(cx)) {
a0d0e21e
LW
1381 default:
1382 continue;
1383 case CXt_EVAL:
cea2e8a9 1384 DEBUG_l( Perl_deb(aTHX_ "(Found eval #%ld)\n", (long)i));
a0d0e21e
LW
1385 return i;
1386 }
1387 }
1388 return i;
1389}
1390
76e3520e 1391STATIC I32
cea2e8a9 1392S_dopoptoloop(pTHX_ I32 startingblock)
a0d0e21e 1393{
97aff369 1394 dVAR;
a0d0e21e 1395 I32 i;
a0d0e21e 1396 for (i = startingblock; i >= 0; i--) {
901017d6 1397 register const PERL_CONTEXT * const cx = &cxstack[i];
6b35e009 1398 switch (CxTYPE(cx)) {
a0d0e21e 1399 case CXt_SUBST:
a0d0e21e 1400 case CXt_SUB:
7766f137 1401 case CXt_FORMAT:
a0d0e21e 1402 case CXt_EVAL:
0a753a76 1403 case CXt_NULL:
e476b1b5 1404 if (ckWARN(WARN_EXITING))
515afda2
NC
1405 Perl_warner(aTHX_ packWARN(WARN_EXITING), "Exiting %s via %s",
1406 context_name[CxTYPE(cx)], OP_NAME(PL_op));
1407 if ((CxTYPE(cx)) == CXt_NULL)
1408 return -1;
1409 break;
c6fdafd0 1410 case CXt_LOOP_LAZYIV:
d01136d6 1411 case CXt_LOOP_LAZYSV:
3b719c58
NC
1412 case CXt_LOOP_FOR:
1413 case CXt_LOOP_PLAIN:
cea2e8a9 1414 DEBUG_l( Perl_deb(aTHX_ "(Found loop #%ld)\n", (long)i));
a0d0e21e
LW
1415 return i;
1416 }
1417 }
1418 return i;
1419}
1420
0d863452
RH
1421STATIC I32
1422S_dopoptogiven(pTHX_ I32 startingblock)
1423{
97aff369 1424 dVAR;
0d863452
RH
1425 I32 i;
1426 for (i = startingblock; i >= 0; i--) {
1427 register const PERL_CONTEXT *cx = &cxstack[i];
1428 switch (CxTYPE(cx)) {
1429 default:
1430 continue;
1431 case CXt_GIVEN:
1432 DEBUG_l( Perl_deb(aTHX_ "(Found given #%ld)\n", (long)i));
1433 return i;
3b719c58
NC
1434 case CXt_LOOP_PLAIN:
1435 assert(!CxFOREACHDEF(cx));
1436 break;
c6fdafd0 1437 case CXt_LOOP_LAZYIV:
d01136d6 1438 case CXt_LOOP_LAZYSV:
3b719c58 1439 case CXt_LOOP_FOR:
0d863452
RH
1440 if (CxFOREACHDEF(cx)) {
1441 DEBUG_l( Perl_deb(aTHX_ "(Found foreach #%ld)\n", (long)i));
1442 return i;
1443 }
1444 }
1445 }
1446 return i;
1447}
1448
1449STATIC I32
1450S_dopoptowhen(pTHX_ I32 startingblock)
1451{
97aff369 1452 dVAR;
0d863452
RH
1453 I32 i;
1454 for (i = startingblock; i >= 0; i--) {
1455 register const PERL_CONTEXT *cx = &cxstack[i];
1456 switch (CxTYPE(cx)) {
1457 default:
1458 continue;
1459 case CXt_WHEN:
1460 DEBUG_l( Perl_deb(aTHX_ "(Found when #%ld)\n", (long)i));
1461 return i;
1462 }
1463 }
1464 return i;
1465}
1466
a0d0e21e 1467void
864dbfa3 1468Perl_dounwind(pTHX_ I32 cxix)
a0d0e21e 1469{
97aff369 1470 dVAR;
a0d0e21e
LW
1471 I32 optype;
1472
1473 while (cxstack_ix > cxix) {
b0d9ce38 1474 SV *sv;
06b5626a 1475 register PERL_CONTEXT *cx = &cxstack[cxstack_ix];
c90c0ff4 1476 DEBUG_l(PerlIO_printf(Perl_debug_log, "Unwinding block %ld, type %s\n",
22c35a8c 1477 (long) cxstack_ix, PL_block_type[CxTYPE(cx)]));
a0d0e21e 1478 /* Note: we don't need to restore the base context info till the end. */
6b35e009 1479 switch (CxTYPE(cx)) {
c90c0ff4 1480 case CXt_SUBST:
1481 POPSUBST(cx);
1482 continue; /* not break */
a0d0e21e 1483 case CXt_SUB:
b0d9ce38
GS
1484 POPSUB(cx,sv);
1485 LEAVESUB(sv);
a0d0e21e
LW
1486 break;
1487 case CXt_EVAL:
1488 POPEVAL(cx);
1489 break;
c6fdafd0 1490 case CXt_LOOP_LAZYIV:
d01136d6 1491 case CXt_LOOP_LAZYSV:
3b719c58
NC
1492 case CXt_LOOP_FOR:
1493 case CXt_LOOP_PLAIN:
a0d0e21e
LW
1494 POPLOOP(cx);
1495 break;
0a753a76 1496 case CXt_NULL:
a0d0e21e 1497 break;
7766f137
GS
1498 case CXt_FORMAT:
1499 POPFORMAT(cx);
1500 break;
a0d0e21e 1501 }
c90c0ff4 1502 cxstack_ix--;
a0d0e21e 1503 }
1b6737cc 1504 PERL_UNUSED_VAR(optype);
a0d0e21e
LW
1505}
1506
5a844595
GS
1507void
1508Perl_qerror(pTHX_ SV *err)
1509{
97aff369 1510 dVAR;
7918f24d
NC
1511
1512 PERL_ARGS_ASSERT_QERROR;
1513
5a844595
GS
1514 if (PL_in_eval)
1515 sv_catsv(ERRSV, err);
1516 else if (PL_errors)
1517 sv_catsv(PL_errors, err);
1518 else
be2597df 1519 Perl_warn(aTHX_ "%"SVf, SVfARG(err));
13765c85
DM
1520 if (PL_parser)
1521 ++PL_parser->error_count;
5a844595
GS
1522}
1523
a0d0e21e 1524OP *
35a4481c 1525Perl_die_where(pTHX_ const char *message, STRLEN msglen)
a0d0e21e 1526{
27da23d5 1527 dVAR;
87582a92 1528
3280af22 1529 if (PL_in_eval) {
a0d0e21e 1530 I32 cxix;
a0d0e21e 1531 I32 gimme;
a0d0e21e 1532
4e6ea2c3 1533 if (message) {
faef0170 1534 if (PL_in_eval & EVAL_KEEPERR) {
bfed75c6 1535 static const char prefix[] = "\t(in cleanup) ";
2d03de9c 1536 SV * const err = ERRSV;
c445ea15 1537 const char *e = NULL;
98eae8f5 1538 if (!SvPOK(err))
76f68e9b 1539 sv_setpvs(err,"");
98eae8f5 1540 else if (SvCUR(err) >= sizeof(prefix)+msglen-1) {
0510663f 1541 STRLEN len;
349d4f2f 1542 e = SvPV_const(err, len);
0510663f 1543 e += len - msglen;
98eae8f5 1544 if (*e != *message || strNE(e,message))
c445ea15 1545 e = NULL;
98eae8f5
GS
1546 }
1547 if (!e) {
1548 SvGROW(err, SvCUR(err)+sizeof(prefix)+msglen);
1549 sv_catpvn(err, prefix, sizeof(prefix)-1);
1550 sv_catpvn(err, message, msglen);
e476b1b5 1551 if (ckWARN(WARN_MISC)) {
504618e9 1552 const STRLEN start = SvCUR(err)-msglen-sizeof(prefix)+1;
f1f66076
RGS
1553 Perl_warner(aTHX_ packWARN(WARN_MISC), "%s",
1554 SvPVX_const(err)+start);
4e6ea2c3 1555 }
4633a7c4 1556 }
4633a7c4 1557 }
1aa99e6b 1558 else {
06bf62c7 1559 sv_setpvn(ERRSV, message, msglen);
1aa99e6b 1560 }
4633a7c4 1561 }
4e6ea2c3 1562
5a844595
GS
1563 while ((cxix = dopoptoeval(cxstack_ix)) < 0
1564 && PL_curstackinfo->si_prev)
1565 {
bac4b2ad 1566 dounwind(-1);
d3acc0f7 1567 POPSTACK;
bac4b2ad 1568 }
e336de0d 1569
a0d0e21e
LW
1570 if (cxix >= 0) {
1571 I32 optype;
35a4481c 1572 register PERL_CONTEXT *cx;
901017d6 1573 SV **newsp;
a0d0e21e
LW
1574
1575 if (cxix < cxstack_ix)
1576 dounwind(cxix);
1577
3280af22 1578 POPBLOCK(cx,PL_curpm);
6b35e009 1579 if (CxTYPE(cx) != CXt_EVAL) {
16869676 1580 if (!message)
349d4f2f 1581 message = SvPVx_const(ERRSV, msglen);
10edeb5d 1582 PerlIO_write(Perl_error_log, (const char *)"panic: die ", 11);
bf49b057 1583 PerlIO_write(Perl_error_log, message, msglen);
a0d0e21e
LW
1584 my_exit(1);
1585 }
1586 POPEVAL(cx);
1587
1588 if (gimme == G_SCALAR)
3280af22
NIS
1589 *++newsp = &PL_sv_undef;
1590 PL_stack_sp = newsp;
a0d0e21e
LW
1591
1592 LEAVE;
748a9306 1593
7fb6a879
GS
1594 /* LEAVE could clobber PL_curcop (see save_re_context())
1595 * XXX it might be better to find a way to avoid messing with
1596 * PL_curcop in save_re_context() instead, but this is a more
1597 * minimal fix --GSAR */
1598 PL_curcop = cx->blk_oldcop;
1599
7a2e2cd6 1600 if (optype == OP_REQUIRE) {
44f8325f 1601 const char* const msg = SvPVx_nolen_const(ERRSV);
901017d6 1602 SV * const nsv = cx->blk_eval.old_namesv;
b15aece3 1603 (void)hv_store(GvHVn(PL_incgv), SvPVX_const(nsv), SvCUR(nsv),
27bcc0a7 1604 &PL_sv_undef, 0);
5a844595
GS
1605 DIE(aTHX_ "%sCompilation failed in require",
1606 *msg ? msg : "Unknown error\n");
7a2e2cd6 1607 }
f39bc417
DM
1608 assert(CxTYPE(cx) == CXt_EVAL);
1609 return cx->blk_eval.retop;
a0d0e21e
LW
1610 }
1611 }
9cc2fdd3 1612 if (!message)
349d4f2f 1613 message = SvPVx_const(ERRSV, msglen);
87582a92 1614
7ff03255 1615 write_to_stderr(message, msglen);
f86702cc 1616 my_failure_exit();
1617 /* NOTREACHED */
a0d0e21e
LW
1618 return 0;
1619}
1620
1621PP(pp_xor)
1622{
97aff369 1623 dVAR; dSP; dPOPTOPssrl;
a0d0e21e
LW
1624 if (SvTRUE(left) != SvTRUE(right))
1625 RETSETYES;
1626 else
1627 RETSETNO;
1628}
1629
a0d0e21e
LW
1630PP(pp_caller)
1631{
97aff369 1632 dVAR;
39644a26 1633 dSP;
a0d0e21e 1634 register I32 cxix = dopoptosub(cxstack_ix);
901017d6
AL
1635 register const PERL_CONTEXT *cx;
1636 register const PERL_CONTEXT *ccstack = cxstack;
1637 const PERL_SI *top_si = PL_curstackinfo;
54310121 1638 I32 gimme;
06b5626a 1639 const char *stashname;
a0d0e21e
LW
1640 I32 count = 0;
1641
1642 if (MAXARG)
1643 count = POPi;
27d41816 1644
a0d0e21e 1645 for (;;) {
2c375eb9
GS
1646 /* we may be in a higher stacklevel, so dig down deeper */
1647 while (cxix < 0 && top_si->si_type != PERLSI_MAIN) {
1648 top_si = top_si->si_prev;
1649 ccstack = top_si->si_cxstack;
1650 cxix = dopoptosub_at(ccstack, top_si->si_cxix);
1651 }
a0d0e21e 1652 if (cxix < 0) {
27d41816
DM
1653 if (GIMME != G_ARRAY) {
1654 EXTEND(SP, 1);
a0d0e21e 1655 RETPUSHUNDEF;
27d41816 1656 }
a0d0e21e
LW
1657 RETURN;
1658 }
f2a7f298
DG
1659 /* caller() should not report the automatic calls to &DB::sub */
1660 if (PL_DBsub && GvCV(PL_DBsub) && cxix >= 0 &&
3280af22 1661 ccstack[cxix].blk_sub.cv == GvCV(PL_DBsub))
a0d0e21e
LW
1662 count++;
1663 if (!count--)
1664 break;
2c375eb9 1665 cxix = dopoptosub_at(ccstack, cxix - 1);
a0d0e21e 1666 }
2c375eb9
GS
1667
1668 cx = &ccstack[cxix];
7766f137 1669 if (CxTYPE(cx) == CXt_SUB || CxTYPE(cx) == CXt_FORMAT) {
f54cb97a 1670 const I32 dbcxix = dopoptosub_at(ccstack, cxix - 1);
2c375eb9 1671 /* We expect that ccstack[dbcxix] is CXt_SUB, anyway, the
06a5b730 1672 field below is defined for any cx. */
f2a7f298
DG
1673 /* caller() should not report the automatic calls to &DB::sub */
1674 if (PL_DBsub && GvCV(PL_DBsub) && dbcxix >= 0 && ccstack[dbcxix].blk_sub.cv == GvCV(PL_DBsub))
2c375eb9 1675 cx = &ccstack[dbcxix];
06a5b730 1676 }
1677
ed094faf 1678 stashname = CopSTASHPV(cx->blk_oldcop);
a0d0e21e 1679 if (GIMME != G_ARRAY) {
27d41816 1680 EXTEND(SP, 1);
ed094faf 1681 if (!stashname)
3280af22 1682 PUSHs(&PL_sv_undef);
49d8d3a1
MB
1683 else {
1684 dTARGET;
ed094faf 1685 sv_setpv(TARG, stashname);
49d8d3a1
MB
1686 PUSHs(TARG);
1687 }
a0d0e21e
LW
1688 RETURN;
1689 }
a0d0e21e 1690
b3ca2e83 1691 EXTEND(SP, 11);
27d41816 1692
ed094faf 1693 if (!stashname)
3280af22 1694 PUSHs(&PL_sv_undef);
49d8d3a1 1695 else
6e449a3a
MHM
1696 mPUSHs(newSVpv(stashname, 0));
1697 mPUSHs(newSVpv(OutCopFILE(cx->blk_oldcop), 0));
1698 mPUSHi((I32)CopLINE(cx->blk_oldcop));
a0d0e21e
LW
1699 if (!MAXARG)
1700 RETURN;
7766f137 1701 if (CxTYPE(cx) == CXt_SUB || CxTYPE(cx) == CXt_FORMAT) {
0bd48802 1702 GV * const cvgv = CvGV(ccstack[cxix].blk_sub.cv);
7766f137 1703 /* So is ccstack[dbcxix]. */
07b8c804 1704 if (isGV(cvgv)) {
561b68a9 1705 SV * const sv = newSV(0);
c445ea15 1706 gv_efullname3(sv, cvgv, NULL);
6e449a3a 1707 mPUSHs(sv);
bf38a478 1708 PUSHs(boolSV(CxHASARGS(cx)));
07b8c804
RGS
1709 }
1710 else {
84bafc02 1711 PUSHs(newSVpvs_flags("(unknown)", SVs_TEMP));
bf38a478 1712 PUSHs(boolSV(CxHASARGS(cx)));
07b8c804 1713 }
a0d0e21e
LW
1714 }
1715 else {
84bafc02 1716 PUSHs(newSVpvs_flags("(eval)", SVs_TEMP));
6e449a3a 1717 mPUSHi(0);
a0d0e21e 1718 }
54310121 1719 gimme = (I32)cx->blk_gimme;
1720 if (gimme == G_VOID)
3280af22 1721 PUSHs(&PL_sv_undef);
54310121 1722 else
98625aca 1723 PUSHs(boolSV((gimme & G_WANT) == G_ARRAY));
6b35e009 1724 if (CxTYPE(cx) == CXt_EVAL) {
811a4de9 1725 /* eval STRING */
85a64632 1726 if (CxOLD_OP_TYPE(cx) == OP_ENTEREVAL) {
4633a7c4 1727 PUSHs(cx->blk_eval.cur_text);
3280af22 1728 PUSHs(&PL_sv_no);
0f79a09d 1729 }
811a4de9 1730 /* require */
0f79a09d 1731 else if (cx->blk_eval.old_namesv) {
6e449a3a 1732 mPUSHs(newSVsv(cx->blk_eval.old_namesv));
3280af22 1733 PUSHs(&PL_sv_yes);
06a5b730 1734 }
811a4de9
GS
1735 /* eval BLOCK (try blocks have old_namesv == 0) */
1736 else {
1737 PUSHs(&PL_sv_undef);
1738 PUSHs(&PL_sv_undef);
1739 }
4633a7c4 1740 }
a682de96
GS
1741 else {
1742 PUSHs(&PL_sv_undef);
1743 PUSHs(&PL_sv_undef);
1744 }
bafb2adc 1745 if (CxTYPE(cx) == CXt_SUB && CxHASARGS(cx)
ed094faf 1746 && CopSTASH_eq(PL_curcop, PL_debstash))
4633a7c4 1747 {
66a1b24b
AL
1748 AV * const ary = cx->blk_sub.argarray;
1749 const int off = AvARRAY(ary) - AvALLOC(ary);
a0d0e21e 1750
3280af22 1751 if (!PL_dbargs) {
af3885a0
NC
1752 PL_dbargs = GvAV(gv_AVadd(gv_fetchpvs("DB::args", GV_ADDMULTI,
1753 SVt_PVAV)));
3ddcf04c 1754 AvREAL_off(PL_dbargs); /* XXX should be REIFY (see av.h) */
a0d0e21e
LW
1755 }
1756
3280af22
NIS
1757 if (AvMAX(PL_dbargs) < AvFILLp(ary) + off)
1758 av_extend(PL_dbargs, AvFILLp(ary) + off);
1759 Copy(AvALLOC(ary), AvARRAY(PL_dbargs), AvFILLp(ary) + 1 + off, SV*);
1760 AvFILLp(PL_dbargs) = AvFILLp(ary) + off;
a0d0e21e 1761 }
f3aa04c2
GS
1762 /* XXX only hints propagated via op_private are currently
1763 * visible (others are not easily accessible, since they
1764 * use the global PL_hints) */
6e449a3a 1765 mPUSHi(CopHINTS_get(cx->blk_oldcop));
e476b1b5
GS
1766 {
1767 SV * mask ;
72dc9ed5 1768 STRLEN * const old_warnings = cx->blk_oldcop->cop_warnings ;
114bafba 1769
ac27b0f5 1770 if (old_warnings == pWARN_NONE ||
114bafba 1771 (old_warnings == pWARN_STD && (PL_dowarn & G_WARN_ON) == 0))
e476b1b5 1772 mask = newSVpvn(WARN_NONEstring, WARNsize) ;
ac27b0f5 1773 else if (old_warnings == pWARN_ALL ||
75b6c4ca
RGS
1774 (old_warnings == pWARN_STD && PL_dowarn & G_WARN_ON)) {
1775 /* Get the bit mask for $warnings::Bits{all}, because
1776 * it could have been extended by warnings::register */
1777 SV **bits_all;
6673a63c 1778 HV * const bits = get_hv("warnings::Bits", 0);
017a3ce5 1779 if (bits && (bits_all=hv_fetchs(bits, "all", FALSE))) {
75b6c4ca
RGS
1780 mask = newSVsv(*bits_all);
1781 }
1782 else {
1783 mask = newSVpvn(WARN_ALLstring, WARNsize) ;
1784 }
1785 }
e476b1b5 1786 else
72dc9ed5 1787 mask = newSVpvn((char *) (old_warnings + 1), old_warnings[0]);
6e449a3a 1788 mPUSHs(mask);
e476b1b5 1789 }
b3ca2e83 1790
c28fe1ec 1791 PUSHs(cx->blk_oldcop->cop_hints_hash ?
b3ca2e83 1792 sv_2mortal(newRV_noinc(
ad64d0ec
NC
1793 MUTABLE_SV(Perl_refcounted_he_chain_2hv(aTHX_
1794 cx->blk_oldcop->cop_hints_hash))))
b3ca2e83 1795 : &PL_sv_undef);
a0d0e21e
LW
1796 RETURN;
1797}
1798
a0d0e21e
LW
1799PP(pp_reset)
1800{
97aff369 1801 dVAR;
39644a26 1802 dSP;
10edeb5d 1803 const char * const tmps = (MAXARG < 1) ? (const char *)"" : POPpconstx;
11faa288 1804 sv_reset(tmps, CopSTASH(PL_curcop));
3280af22 1805 PUSHs(&PL_sv_yes);
a0d0e21e
LW
1806 RETURN;
1807}
1808
dd2155a4
DM
1809/* like pp_nextstate, but used instead when the debugger is active */
1810
a0d0e21e
LW
1811PP(pp_dbstate)
1812{
27da23d5 1813 dVAR;
533c011a 1814 PL_curcop = (COP*)PL_op;
a0d0e21e 1815 TAINT_NOT; /* Each statement is presumed innocent */
3280af22 1816 PL_stack_sp = PL_stack_base + cxstack[cxstack_ix].blk_oldsp;
a0d0e21e
LW
1817 FREETMPS;
1818
5df8de69
DM
1819 if (PL_op->op_flags & OPf_SPECIAL /* breakpoint */
1820 || SvIV(PL_DBsingle) || SvIV(PL_DBsignal) || SvIV(PL_DBtrace))
a0d0e21e 1821 {
39644a26 1822 dSP;
c09156bb 1823 register PERL_CONTEXT *cx;
f54cb97a 1824 const I32 gimme = G_ARRAY;
eb160463 1825 U8 hasargs;
0bd48802
AL
1826 GV * const gv = PL_DBgv;
1827 register CV * const cv = GvCV(gv);
a0d0e21e 1828
a0d0e21e 1829 if (!cv)
cea2e8a9 1830 DIE(aTHX_ "No DB::DB routine defined");
a0d0e21e 1831
aea4f609
DM
1832 if (CvDEPTH(cv) >= 1 && !(PL_debug & DEBUG_DB_RECURSE_FLAG))
1833 /* don't do recursive DB::DB call */
a0d0e21e 1834 return NORMAL;
748a9306 1835
4633a7c4
LW
1836 ENTER;
1837 SAVETMPS;
1838
3280af22 1839 SAVEI32(PL_debug);
55497cff 1840 SAVESTACK_POS();
3280af22 1841 PL_debug = 0;
748a9306 1842 hasargs = 0;
924508f0 1843 SPAGAIN;
748a9306 1844
aed2304a 1845 if (CvISXSUB(cv)) {
c127bd3a
SF
1846 CvDEPTH(cv)++;
1847 PUSHMARK(SP);
1848 (void)(*CvXSUB(cv))(aTHX_ cv);
1849 CvDEPTH(cv)--;
1850 FREETMPS;
1851 LEAVE;
1852 return NORMAL;
1853 }
1854 else {
1855 PUSHBLOCK(cx, CXt_SUB, SP);
1856 PUSHSUB_DB(cx);
1857 cx->blk_sub.retop = PL_op->op_next;
1858 CvDEPTH(cv)++;
1859 SAVECOMPPAD();
1860 PAD_SET_CUR_NOSAVE(CvPADLIST(cv), 1);
1861 RETURNOP(CvSTART(cv));
1862 }
a0d0e21e
LW
1863 }
1864 else
1865 return NORMAL;
1866}
1867
a0d0e21e
LW
1868PP(pp_enteriter)
1869{
27da23d5 1870 dVAR; dSP; dMARK;
c09156bb 1871 register PERL_CONTEXT *cx;
f54cb97a 1872 const I32 gimme = GIMME_V;
a0d0e21e 1873 SV **svp;
840fe433 1874 U8 cxtype = CXt_LOOP_FOR;
7766f137 1875#ifdef USE_ITHREADS
e846cb92 1876 PAD *iterdata;
7766f137 1877#endif
a0d0e21e 1878
4633a7c4
LW
1879 ENTER;
1880 SAVETMPS;
1881
533c011a 1882 if (PL_op->op_targ) {
14f338dc
DM
1883 if (PL_op->op_private & OPpLVAL_INTRO) { /* for my $x (...) */
1884 SvPADSTALE_off(PAD_SVl(PL_op->op_targ));
1885 SAVESETSVFLAGS(PAD_SVl(PL_op->op_targ),
1886 SVs_PADSTALE, SVs_PADSTALE);
1887 }
09edbca0 1888 SAVEPADSVANDMORTALIZE(PL_op->op_targ);
c3564e5c 1889#ifndef USE_ITHREADS
dd2155a4 1890 svp = &PAD_SVl(PL_op->op_targ); /* "my" variable */
c3564e5c 1891#else
e846cb92 1892 iterdata = NULL;
7766f137 1893#endif
54b9620d
MB
1894 }
1895 else {
159b6efe 1896 GV * const gv = MUTABLE_GV(POPs);
7766f137 1897 svp = &GvSV(gv); /* symbol table variable */
0214ae40 1898 SAVEGENERICSV(*svp);
561b68a9 1899 *svp = newSV(0);
7766f137 1900#ifdef USE_ITHREADS
e846cb92 1901 iterdata = (PAD*)gv;
7766f137 1902#endif
54b9620d 1903 }
4633a7c4 1904
0d863452
RH
1905 if (PL_op->op_private & OPpITER_DEF)
1906 cxtype |= CXp_FOR_DEF;
1907
a0d0e21e
LW
1908 ENTER;
1909
7766f137
GS
1910 PUSHBLOCK(cx, cxtype, SP);
1911#ifdef USE_ITHREADS
e846cb92 1912 PUSHLOOP_FOR(cx, iterdata, MARK, PL_op->op_targ);
7766f137 1913#else
52d1f6fb 1914 PUSHLOOP_FOR(cx, svp, MARK, 0);
7766f137 1915#endif
533c011a 1916 if (PL_op->op_flags & OPf_STACKED) {
d01136d6
BS
1917 SV *maybe_ary = POPs;
1918 if (SvTYPE(maybe_ary) != SVt_PVAV) {
89ea2908 1919 dPOPss;
d01136d6 1920 SV * const right = maybe_ary;
984a4bea
RD
1921 SvGETMAGIC(sv);
1922 SvGETMAGIC(right);
4fe3f0fa 1923 if (RANGE_IS_NUMERIC(sv,right)) {
d01136d6 1924 cx->cx_type &= ~CXTYPEMASK;
c6fdafd0
NC
1925 cx->cx_type |= CXt_LOOP_LAZYIV;
1926 /* Make sure that no-one re-orders cop.h and breaks our
1927 assumptions */
1928 assert(CxTYPE(cx) == CXt_LOOP_LAZYIV);
a2309040
JH
1929#ifdef NV_PRESERVES_UV
1930 if ((SvOK(sv) && ((SvNV(sv) < (NV)IV_MIN) ||
1931 (SvNV(sv) > (NV)IV_MAX)))
1932 ||
1933 (SvOK(right) && ((SvNV(right) > (NV)IV_MAX) ||
1934 (SvNV(right) < (NV)IV_MIN))))
1935#else
1936 if ((SvOK(sv) && ((SvNV(sv) <= (NV)IV_MIN)
1937 ||
1938 ((SvNV(sv) > 0) &&
1939 ((SvUV(sv) > (UV)IV_MAX) ||
1940 (SvNV(sv) > (NV)UV_MAX)))))
1941 ||
1942 (SvOK(right) && ((SvNV(right) <= (NV)IV_MIN)
1943 ||
1944 ((SvNV(right) > 0) &&
1945 ((SvUV(right) > (UV)IV_MAX) ||
1946 (SvNV(right) > (NV)UV_MAX))))))
1947#endif
076d9a11 1948 DIE(aTHX_ "Range iterator outside integer range");
d01136d6
BS
1949 cx->blk_loop.state_u.lazyiv.cur = SvIV(sv);
1950 cx->blk_loop.state_u.lazyiv.end = SvIV(right);
d4665a05
DM
1951#ifdef DEBUGGING
1952 /* for correct -Dstv display */
1953 cx->blk_oldsp = sp - PL_stack_base;
1954#endif
89ea2908 1955 }
3f63a782 1956 else {
d01136d6
BS
1957 cx->cx_type &= ~CXTYPEMASK;
1958 cx->cx_type |= CXt_LOOP_LAZYSV;
1959 /* Make sure that no-one re-orders cop.h and breaks our
1960 assumptions */
1961 assert(CxTYPE(cx) == CXt_LOOP_LAZYSV);
1962 cx->blk_loop.state_u.lazysv.cur = newSVsv(sv);
1963 cx->blk_loop.state_u.lazysv.end = right;
1964 SvREFCNT_inc(right);
1965 (void) SvPV_force_nolen(cx->blk_loop.state_u.lazysv.cur);
267cc4a8
NC
1966 /* This will do the upgrade to SVt_PV, and warn if the value
1967 is uninitialised. */
10516c54 1968 (void) SvPV_nolen_const(right);
267cc4a8
NC
1969 /* Doing this avoids a check every time in pp_iter in pp_hot.c
1970 to replace !SvOK() with a pointer to "". */
1971 if (!SvOK(right)) {
1972 SvREFCNT_dec(right);
d01136d6 1973 cx->blk_loop.state_u.lazysv.end = &PL_sv_no;
267cc4a8 1974 }
3f63a782 1975 }
89ea2908 1976 }
d01136d6 1977 else /* SvTYPE(maybe_ary) == SVt_PVAV */ {
502c6561 1978 cx->blk_loop.state_u.ary.ary = MUTABLE_AV(maybe_ary);
d01136d6
BS
1979 SvREFCNT_inc(maybe_ary);
1980 cx->blk_loop.state_u.ary.ix =
1981 (PL_op->op_private & OPpITER_REVERSED) ?
1982 AvFILL(cx->blk_loop.state_u.ary.ary) + 1 :
1983 -1;
ef3e5ea9 1984 }
89ea2908 1985 }
d01136d6
BS
1986 else { /* iterating over items on the stack */
1987 cx->blk_loop.state_u.ary.ary = NULL; /* means to use the stack */
ef3e5ea9 1988 if (PL_op->op_private & OPpITER_REVERSED) {
d01136d6 1989 cx->blk_loop.state_u.ary.ix = cx->blk_oldsp + 1;
ef3e5ea9
NC
1990 }
1991 else {
d01136d6 1992 cx->blk_loop.state_u.ary.ix = MARK - PL_stack_base;
ef3e5ea9 1993 }
4633a7c4 1994 }
a0d0e21e
LW
1995
1996 RETURN;
1997}
1998
1999PP(pp_enterloop)
2000{
27da23d5 2001 dVAR; dSP;
c09156bb 2002 register PERL_CONTEXT *cx;
f54cb97a 2003 const I32 gimme = GIMME_V;
a0d0e21e
LW
2004
2005 ENTER;
2006 SAVETMPS;
2007 ENTER;
2008
3b719c58
NC
2009 PUSHBLOCK(cx, CXt_LOOP_PLAIN, SP);
2010 PUSHLOOP_PLAIN(cx, SP);
a0d0e21e
LW
2011
2012 RETURN;
2013}
2014
2015PP(pp_leaveloop)
2016{
27da23d5 2017 dVAR; dSP;
c09156bb 2018 register PERL_CONTEXT *cx;
a0d0e21e
LW
2019 I32 gimme;
2020 SV **newsp;
2021 PMOP *newpm;
2022 SV **mark;
2023
2024 POPBLOCK(cx,newpm);
3b719c58 2025 assert(CxTYPE_is_LOOP(cx));
4fdae800 2026 mark = newsp;
a8bba7fa 2027 newsp = PL_stack_base + cx->blk_loop.resetsp;
f86702cc 2028
a1f49e72 2029 TAINT_NOT;
54310121 2030 if (gimme == G_VOID)
6f207bd3 2031 NOOP;
54310121 2032 else if (gimme == G_SCALAR) {
2033 if (mark < SP)
2034 *++newsp = sv_mortalcopy(*SP);
2035 else
3280af22 2036 *++newsp = &PL_sv_undef;
a0d0e21e
LW
2037 }
2038 else {
a1f49e72 2039 while (mark < SP) {
a0d0e21e 2040 *++newsp = sv_mortalcopy(*++mark);
a1f49e72
CS
2041 TAINT_NOT; /* Each item is independent */
2042 }
a0d0e21e 2043 }
f86702cc 2044 SP = newsp;
2045 PUTBACK;
2046
a8bba7fa 2047 POPLOOP(cx); /* Stack values are safe: release loop vars ... */
3280af22 2048 PL_curpm = newpm; /* ... and pop $1 et al */
f86702cc 2049
a0d0e21e
LW
2050 LEAVE;
2051 LEAVE;
2052
f86702cc 2053 return NORMAL;
a0d0e21e
LW
2054}
2055
2056PP(pp_return)
2057{
27da23d5 2058 dVAR; dSP; dMARK;
c09156bb 2059 register PERL_CONTEXT *cx;
f86702cc 2060 bool popsub2 = FALSE;
b45de488 2061 bool clear_errsv = FALSE;
a0d0e21e
LW
2062 I32 gimme;
2063 SV **newsp;
2064 PMOP *newpm;
2065 I32 optype = 0;
b0d9ce38 2066 SV *sv;
f39bc417 2067 OP *retop;
a0d0e21e 2068
0bd48802
AL
2069 const I32 cxix = dopoptosub(cxstack_ix);
2070
9850bf21
RH
2071 if (cxix < 0) {
2072 if (CxMULTICALL(cxstack)) { /* In this case we must be in a
2073 * sort block, which is a CXt_NULL
2074 * not a CXt_SUB */
2075 dounwind(0);
d7507f74
RH
2076 PL_stack_base[1] = *PL_stack_sp;
2077 PL_stack_sp = PL_stack_base + 1;
a0d0e21e
LW
2078 return 0;
2079 }
9850bf21
RH
2080 else
2081 DIE(aTHX_ "Can't return outside a subroutine");
a0d0e21e 2082 }
a0d0e21e
LW
2083 if (cxix < cxstack_ix)
2084 dounwind(cxix);
2085
d7507f74
RH
2086 if (CxMULTICALL(&cxstack[cxix])) {
2087 gimme = cxstack[cxix].blk_gimme;
2088 if (gimme == G_VOID)
2089 PL_stack_sp = PL_stack_base;
2090 else if (gimme == G_SCALAR) {
2091 PL_stack_base[1] = *PL_stack_sp;
2092 PL_stack_sp = PL_stack_base + 1;
2093 }
9850bf21 2094 return 0;
d7507f74 2095 }
9850bf21 2096
a0d0e21e 2097 POPBLOCK(cx,newpm);
6b35e009 2098 switch (CxTYPE(cx)) {
a0d0e21e 2099 case CXt_SUB:
f86702cc 2100 popsub2 = TRUE;
f39bc417 2101 retop = cx->blk_sub.retop;
5dd42e15 2102 cxstack_ix++; /* preserve cx entry on stack for use by POPSUB */
a0d0e21e
LW
2103 break;
2104 case CXt_EVAL:
b45de488
GS
2105 if (!(PL_in_eval & EVAL_KEEPERR))
2106 clear_errsv = TRUE;
a0d0e21e 2107 POPEVAL(cx);
f39bc417 2108 retop = cx->blk_eval.retop;
1d76a5c3
GS
2109 if (CxTRYBLOCK(cx))
2110 break;
067f92a0 2111 lex_end();
748a9306
LW
2112 if (optype == OP_REQUIRE &&
2113 (MARK == SP || (gimme == G_SCALAR && !SvTRUE(*SP))) )
2114 {
54310121 2115 /* Unassume the success we assumed earlier. */
901017d6 2116 SV * const nsv = cx->blk_eval.old_namesv;
b15aece3 2117 (void)hv_delete(GvHVn(PL_incgv), SvPVX_const(nsv), SvCUR(nsv), G_DISCARD);
be2597df 2118 DIE(aTHX_ "%"SVf" did not return a true value", SVfARG(nsv));
748a9306 2119 }
a0d0e21e 2120 break;
7766f137
GS
2121 case CXt_FORMAT:
2122 POPFORMAT(cx);
f39bc417 2123 retop = cx->blk_sub.retop;
7766f137 2124 break;
a0d0e21e 2125 default:
cea2e8a9 2126 DIE(aTHX_ "panic: return");
a0d0e21e
LW
2127 }
2128
a1f49e72 2129 TAINT_NOT;
a0d0e21e 2130 if (gimme == G_SCALAR) {
a29cdaf0
IZ
2131 if (MARK < SP) {
2132 if (popsub2) {
a8bba7fa 2133 if (cx->blk_sub.cv && CvDEPTH(cx->blk_sub.cv) > 1) {
a29cdaf0
IZ
2134 if (SvTEMP(TOPs)) {
2135 *++newsp = SvREFCNT_inc(*SP);
2136 FREETMPS;
2137 sv_2mortal(*newsp);
959e3673
GS
2138 }
2139 else {
2140 sv = SvREFCNT_inc(*SP); /* FREETMPS could clobber it */
a29cdaf0 2141 FREETMPS;
959e3673
GS
2142 *++newsp = sv_mortalcopy(sv);
2143 SvREFCNT_dec(sv);
a29cdaf0 2144 }
959e3673
GS
2145 }
2146 else
a29cdaf0 2147 *++newsp = (SvTEMP(*SP)) ? *SP : sv_mortalcopy(*SP);
959e3673
GS
2148 }
2149 else
a29cdaf0 2150 *++newsp = sv_mortalcopy(*SP);
959e3673
GS
2151 }
2152 else
3280af22 2153 *++newsp = &PL_sv_undef;
a0d0e21e 2154 }
54310121 2155 else if (gimme == G_ARRAY) {
a1f49e72 2156 while (++MARK <= SP) {
f86702cc 2157 *++newsp = (popsub2 && SvTEMP(*MARK))
2158 ? *MARK : sv_mortalcopy(*MARK);
a1f49e72
CS
2159 TAINT_NOT; /* Each item is independent */
2160 }
a0d0e21e 2161 }
3280af22 2162 PL_stack_sp = newsp;
a0d0e21e 2163
5dd42e15 2164 LEAVE;
f86702cc 2165 /* Stack values are safe: */
2166 if (popsub2) {
5dd42e15 2167 cxstack_ix--;
b0d9ce38 2168 POPSUB(cx,sv); /* release CV and @_ ... */
f86702cc 2169 }
b0d9ce38 2170 else
c445ea15 2171 sv = NULL;
3280af22 2172 PL_curpm = newpm; /* ... and pop $1 et al */
f86702cc 2173
b0d9ce38 2174 LEAVESUB(sv);
8433848b 2175 if (clear_errsv) {
ab69dbc2 2176 CLEAR_ERRSV();
8433848b 2177 }
f39bc417 2178 return retop;
a0d0e21e
LW
2179}
2180
2181PP(pp_last)
2182{
27da23d5 2183 dVAR; dSP;
a0d0e21e 2184 I32 cxix;
c09156bb 2185 register PERL_CONTEXT *cx;
f86702cc 2186 I32 pop2 = 0;
a0d0e21e 2187 I32 gimme;
8772537c 2188 I32 optype;
a0d0e21e
LW
2189 OP *nextop;
2190 SV **newsp;
2191 PMOP *newpm;
a8bba7fa 2192 SV **mark;
c445ea15 2193 SV *sv = NULL;
9d4ba2ae 2194
a0d0e21e 2195
533c011a 2196 if (PL_op->op_flags & OPf_SPECIAL) {
a0d0e21e
LW
2197 cxix = dopoptoloop(cxstack_ix);
2198 if (cxix < 0)
a651a37d 2199 DIE(aTHX_ "Can't \"last\" outside a loop block");
a0d0e21e
LW
2200 }
2201 else {
2202 cxix = dopoptolabel(cPVOP->op_pv);
2203 if (cxix < 0)
cea2e8a9 2204 DIE(aTHX_ "Label not found for \"last %s\"", cPVOP->op_pv);
a0d0e21e
LW
2205 }
2206 if (cxix < cxstack_ix)
2207 dounwind(cxix);
2208
2209 POPBLOCK(cx,newpm);
5dd42e15 2210 cxstack_ix++; /* temporarily protect top context */
a8bba7fa 2211 mark = newsp;
6b35e009 2212 switch (CxTYPE(cx)) {
c6fdafd0 2213 case CXt_LOOP_LAZYIV:
d01136d6 2214 case CXt_LOOP_LAZYSV:
3b719c58
NC
2215 case CXt_LOOP_FOR:
2216 case CXt_LOOP_PLAIN:
2217 pop2 = CxTYPE(cx);
a8bba7fa 2218 newsp = PL_stack_base + cx->blk_loop.resetsp;
022eaa24 2219 nextop = cx->blk_loop.my_op->op_lastop->op_next;
a0d0e21e 2220 break;
f86702cc 2221 case CXt_SUB:
f86702cc 2222 pop2 = CXt_SUB;
f39bc417 2223 nextop = cx->blk_sub.retop;
a0d0e21e 2224 break;
f86702cc 2225 case CXt_EVAL:
2226 POPEVAL(cx);
f39bc417 2227 nextop = cx->blk_eval.retop;
a0d0e21e 2228 break;
7766f137
GS
2229 case CXt_FORMAT:
2230 POPFORMAT(cx);
f39bc417 2231 nextop = cx->blk_sub.retop;
7766f137 2232 break;
a0d0e21e 2233 default:
cea2e8a9 2234 DIE(aTHX_ "panic: last");
a0d0e21e
LW
2235 }
2236
a1f49e72 2237 TAINT_NOT;
a0d0e21e 2238 if (gimme == G_SCALAR) {
f86702cc 2239 if (MARK < SP)
2240 *++newsp = ((pop2 == CXt_SUB) && SvTEMP(*SP))
2241 ? *SP : sv_mortalcopy(*SP);
a0d0e21e 2242 else
3280af22 2243 *++newsp = &PL_sv_undef;
a0d0e21e 2244 }
54310121 2245 else if (gimme == G_ARRAY) {
a1f49e72 2246 while (++MARK <= SP) {
f86702cc 2247 *++newsp = ((pop2 == CXt_SUB) && SvTEMP(*MARK))
2248 ? *MARK : sv_mortalcopy(*MARK);
a1f49e72
CS
2249 TAINT_NOT; /* Each item is independent */
2250 }
f86702cc 2251 }
2252 SP = newsp;
2253 PUTBACK;
2254
5dd42e15
DM
2255 LEAVE;
2256 cxstack_ix--;
f86702cc 2257 /* Stack values are safe: */
2258 switch (pop2) {
c6fdafd0 2259 case CXt_LOOP_LAZYIV:
3b719c58 2260 case CXt_LOOP_PLAIN:
d01136d6 2261 case CXt_LOOP_LAZYSV:
3b719c58 2262 case CXt_LOOP_FOR:
a8bba7fa 2263 POPLOOP(cx); /* release loop vars ... */
4fdae800 2264 LEAVE;
f86702cc 2265 break;
2266 case CXt_SUB:
b0d9ce38 2267 POPSUB(cx,sv); /* release CV and @_ ... */
f86702cc 2268 break;
a0d0e21e 2269 }
3280af22 2270 PL_curpm = newpm; /* ... and pop $1 et al */
a0d0e21e 2271
b0d9ce38 2272 LEAVESUB(sv);
9d4ba2ae
AL
2273 PERL_UNUSED_VAR(optype);
2274 PERL_UNUSED_VAR(gimme);
f86702cc 2275 return nextop;
a0d0e21e
LW
2276}
2277
2278PP(pp_next)
2279{
27da23d5 2280 dVAR;
a0d0e21e 2281 I32 cxix;
c09156bb 2282 register PERL_CONTEXT *cx;
85538317 2283 I32 inner;
a0d0e21e 2284
533c011a 2285 if (PL_op->op_flags & OPf_SPECIAL) {
a0d0e21e
LW
2286 cxix = dopoptoloop(cxstack_ix);
2287 if (cxix < 0)
a651a37d 2288 DIE(aTHX_ "Can't \"next\" outside a loop block");
a0d0e21e
LW
2289 }
2290 else {
2291 cxix = dopoptolabel(cPVOP->op_pv);
2292 if (cxix < 0)
cea2e8a9 2293 DIE(aTHX_ "Label not found for \"next %s\"", cPVOP->op_pv);
a0d0e21e
LW
2294 }
2295 if (cxix < cxstack_ix)
2296 dounwind(cxix);
2297
85538317
GS
2298 /* clear off anything above the scope we're re-entering, but
2299 * save the rest until after a possible continue block */
2300 inner = PL_scopestack_ix;
1ba6ee2b 2301 TOPBLOCK(cx);
85538317
GS
2302 if (PL_scopestack_ix < inner)
2303 leave_scope(PL_scopestack[PL_scopestack_ix]);
3a1b2b9e 2304 PL_curcop = cx->blk_oldcop;
022eaa24 2305 return CX_LOOP_NEXTOP_GET(cx);
a0d0e21e
LW
2306}
2307
2308PP(pp_redo)
2309{
27da23d5 2310 dVAR;
a0d0e21e 2311 I32 cxix;
c09156bb 2312 register PERL_CONTEXT *cx;
a0d0e21e 2313 I32 oldsave;
a034e688 2314 OP* redo_op;
a0d0e21e 2315
533c011a 2316 if (PL_op->op_flags & OPf_SPECIAL) {
a0d0e21e
LW
2317 cxix = dopoptoloop(cxstack_ix);
2318 if (cxix < 0)
a651a37d 2319 DIE(aTHX_ "Can't \"redo\" outside a loop block");
a0d0e21e
LW
2320 }
2321 else {
2322 cxix = dopoptolabel(cPVOP->op_pv);
2323 if (cxix < 0)
cea2e8a9 2324 DIE(aTHX_ "Label not found for \"redo %s\"", cPVOP->op_pv);
a0d0e21e
LW
2325 }
2326 if (cxix < cxstack_ix)
2327 dounwind(cxix);
2328
022eaa24 2329 redo_op = cxstack[cxix].blk_loop.my_op->op_redoop;
a034e688
DM
2330 if (redo_op->op_type == OP_ENTER) {
2331 /* pop one less context to avoid $x being freed in while (my $x..) */
2332 cxstack_ix++;
2333 assert(CxTYPE(&cxstack[cxstack_ix]) == CXt_BLOCK);
2334 redo_op = redo_op->op_next;
2335 }
2336
a0d0e21e 2337 TOPBLOCK(cx);
3280af22 2338 oldsave = PL_scopestack[PL_scopestack_ix - 1];
a0d0e21e 2339 LEAVE_SCOPE(oldsave);
936c78b5 2340 FREETMPS;
3a1b2b9e 2341 PL_curcop = cx->blk_oldcop;
a034e688 2342 return redo_op;
a0d0e21e
LW
2343}
2344
0824fdcb 2345STATIC OP *
bfed75c6 2346S_dofindlabel(pTHX_ OP *o, const char *label, OP **opstack, OP **oplimit)
a0d0e21e 2347{
97aff369 2348 dVAR;
a0d0e21e 2349 OP **ops = opstack;
bfed75c6 2350 static const char too_deep[] = "Target of goto is too deeply nested";
a0d0e21e 2351
7918f24d
NC
2352 PERL_ARGS_ASSERT_DOFINDLABEL;
2353
fc36a67e 2354 if (ops >= oplimit)
cea2e8a9 2355 Perl_croak(aTHX_ too_deep);
11343788
MB
2356 if (o->op_type == OP_LEAVE ||
2357 o->op_type == OP_SCOPE ||
2358 o->op_type == OP_LEAVELOOP ||
33d34e4c 2359 o->op_type == OP_LEAVESUB ||
11343788 2360 o->op_type == OP_LEAVETRY)
fc36a67e 2361 {
5dc0d613 2362 *ops++ = cUNOPo->op_first;
fc36a67e 2363 if (ops >= oplimit)
cea2e8a9 2364 Perl_croak(aTHX_ too_deep);
fc36a67e 2365 }
c4aa4e48 2366 *ops = 0;
11343788 2367 if (o->op_flags & OPf_KIDS) {
aec46f14 2368 OP *kid;
a0d0e21e 2369 /* First try all the kids at this level, since that's likeliest. */
11343788 2370 for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) {
c4aa4e48 2371 if ((kid->op_type == OP_NEXTSTATE || kid->op_type == OP_DBSTATE) &&
4b65a919 2372 CopLABEL(kCOP) && strEQ(CopLABEL(kCOP), label))
a0d0e21e
LW
2373 return kid;
2374 }
11343788 2375 for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) {
3280af22 2376 if (kid == PL_lastgotoprobe)
a0d0e21e 2377 continue;
ed8d0fe2
SM
2378 if (kid->op_type == OP_NEXTSTATE || kid->op_type == OP_DBSTATE) {
2379 if (ops == opstack)
2380 *ops++ = kid;
2381 else if (ops[-1]->op_type == OP_NEXTSTATE ||
2382 ops[-1]->op_type == OP_DBSTATE)
2383 ops[-1] = kid;
2384 else
2385 *ops++ = kid;
2386 }
155aba94 2387 if ((o = dofindlabel(kid, label, ops, oplimit)))
11343788 2388 return o;
a0d0e21e
LW
2389 }
2390 }
c4aa4e48 2391 *ops = 0;
a0d0e21e
LW
2392 return 0;
2393}
2394
a0d0e21e
LW
2395PP(pp_goto)
2396{
27da23d5 2397 dVAR; dSP;
cbbf8932 2398 OP *retop = NULL;
a0d0e21e 2399 I32 ix;
c09156bb 2400 register PERL_CONTEXT *cx;
fc36a67e 2401#define GOTO_DEPTH 64
2402 OP *enterops[GOTO_DEPTH];
cbbf8932 2403 const char *label = NULL;
bfed75c6
AL
2404 const bool do_dump = (PL_op->op_type == OP_DUMP);
2405 static const char must_have_label[] = "goto must have label";
a0d0e21e 2406
533c011a 2407 if (PL_op->op_flags & OPf_STACKED) {
9d4ba2ae 2408 SV * const sv = POPs;
a0d0e21e
LW
2409
2410 /* This egregious kludge implements goto &subroutine */
2411 if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVCV) {
2412 I32 cxix;
c09156bb 2413 register PERL_CONTEXT *cx;
ea726b52 2414 CV *cv = MUTABLE_CV(SvRV(sv));
a0d0e21e
LW
2415 SV** mark;
2416 I32 items = 0;
2417 I32 oldsave;
b1464ded 2418 bool reified = 0;
a0d0e21e 2419
e8f7dd13 2420 retry:
4aa0a1f7 2421 if (!CvROOT(cv) && !CvXSUB(cv)) {
7fc63493 2422 const GV * const gv = CvGV(cv);
e8f7dd13 2423 if (gv) {
7fc63493 2424 GV *autogv;
e8f7dd13
GS
2425 SV *tmpstr;
2426 /* autoloaded stub? */
2427 if (cv != GvCV(gv) && (cv = GvCV(gv)))
2428 goto retry;
2429 autogv = gv_autoload4(GvSTASH(gv), GvNAME(gv),
2430 GvNAMELEN(gv), FALSE);
2431 if (autogv && (cv = GvCV(autogv)))
2432 goto retry;
2433 tmpstr = sv_newmortal();
c445ea15 2434 gv_efullname3(tmpstr, gv, NULL);
be2597df 2435 DIE(aTHX_ "Goto undefined subroutine &%"SVf"", SVfARG(tmpstr));
4aa0a1f7 2436 }
cea2e8a9 2437 DIE(aTHX_ "Goto undefined subroutine");
4aa0a1f7
AD
2438 }
2439
a0d0e21e 2440 /* First do some returnish stuff. */
b37c2d43 2441 SvREFCNT_inc_simple_void(cv); /* avoid premature free during unwind */
71fc2216 2442 FREETMPS;
a0d0e21e
LW
2443 cxix = dopoptosub(cxstack_ix);
2444 if (cxix < 0)
cea2e8a9 2445 DIE(aTHX_ "Can't goto subroutine outside a subroutine");
a0d0e21e
LW
2446 if (cxix < cxstack_ix)
2447 dounwind(cxix);
2448 TOPBLOCK(cx);
2d43a17f 2449 SPAGAIN;
564abe23 2450 /* ban goto in eval: see <20050521150056.GC20213@iabyn.com> */
2d43a17f 2451 if (CxTYPE(cx) == CXt_EVAL) {
c74ace89
DM
2452 if (CxREALEVAL(cx))
2453 DIE(aTHX_ "Can't goto subroutine from an eval-string");
2454 else
2455 DIE(aTHX_ "Can't goto subroutine from an eval-block");
2d43a17f 2456 }
9850bf21
RH
2457 else if (CxMULTICALL(cx))
2458 DIE(aTHX_ "Can't goto subroutine from a sort sub (or similar callback)");
bafb2adc 2459 if (CxTYPE(cx) == CXt_SUB && CxHASARGS(cx)) {
d8b46c1b 2460 /* put @_ back onto stack */
a0d0e21e 2461 AV* av = cx->blk_sub.argarray;
bfed75c6 2462
93965878 2463 items = AvFILLp(av) + 1;
a45cdc79
DM
2464 EXTEND(SP, items+1); /* @_ could have been extended. */
2465 Copy(AvARRAY(av), SP + 1, items, SV*);
3280af22
NIS
2466 SvREFCNT_dec(GvAV(PL_defgv));
2467 GvAV(PL_defgv) = cx->blk_sub.savearray;
b1464ded 2468 CLEAR_ARGARRAY(av);
d8b46c1b 2469 /* abandon @_ if it got reified */
62b1ebc2 2470 if (AvREAL(av)) {
b1464ded
DM
2471 reified = 1;
2472 SvREFCNT_dec(av);
d8b46c1b
GS
2473 av = newAV();
2474 av_extend(av, items-1);
11ca45c0 2475 AvREIFY_only(av);
ad64d0ec 2476 PAD_SVl(0) = MUTABLE_SV(cx->blk_sub.argarray = av);
62b1ebc2 2477 }
a0d0e21e 2478 }
aed2304a 2479 else if (CvISXSUB(cv)) { /* put GvAV(defgv) back onto stack */
890ce7af 2480 AV* const av = GvAV(PL_defgv);
1fa4e549 2481 items = AvFILLp(av) + 1;
a45cdc79
DM
2482 EXTEND(SP, items+1); /* @_ could have been extended. */
2483 Copy(AvARRAY(av), SP + 1, items, SV*);
1fa4e549 2484 }
a45cdc79
DM
2485 mark = SP;
2486 SP += items;
6b35e009 2487 if (CxTYPE(cx) == CXt_SUB &&
b150fb22 2488 !(CvDEPTH(cx->blk_sub.cv) = cx->blk_sub.olddepth))
a0d0e21e 2489 SvREFCNT_dec(cx->blk_sub.cv);
3280af22 2490 oldsave = PL_scopestack[PL_scopestack_ix - 1];
a0d0e21e
LW
2491 LEAVE_SCOPE(oldsave);
2492
2493 /* Now do some callish stuff. */
2494 SAVETMPS;
5023d17a 2495 SAVEFREESV(cv); /* later, undo the 'avoid premature free' hack */
aed2304a 2496 if (CvISXSUB(cv)) {
b37c2d43 2497 OP* const retop = cx->blk_sub.retop;
f73ef291
NC
2498 SV **newsp;
2499 I32 gimme;
b1464ded
DM
2500 if (reified) {
2501 I32 index;
2502 for (index=0; index<items; index++)
2503 sv_2mortal(SP[-index]);
2504 }
1fa4e549 2505
b37c2d43
AL
2506 /* XS subs don't have a CxSUB, so pop it */
2507 POPBLOCK(cx, PL_curpm);
2508 /* Push a mark for the start of arglist */
2509 PUSHMARK(mark);
2510 PUTBACK;
2511 (void)(*CvXSUB(cv))(aTHX_ cv);
a0d0e21e 2512 LEAVE;
5eff7df7 2513 return retop;
a0d0e21e
LW
2514 }
2515 else {
b37c2d43 2516 AV* const padlist = CvPADLIST(cv);
6b35e009 2517 if (CxTYPE(cx) == CXt_EVAL) {
85a64632 2518 PL_in_eval = CxOLD_IN_EVAL(cx);
3280af22 2519 PL_eval_root = cx->blk_eval.old_eval_root;
b150fb22 2520 cx->cx_type = CXt_SUB;
b150fb22 2521 }
a0d0e21e 2522 cx->blk_sub.cv = cv;
1a5b3db4 2523 cx->blk_sub.olddepth = CvDEPTH(cv);
dd2155a4 2524
a0d0e21e
LW
2525 CvDEPTH(cv)++;
2526 if (CvDEPTH(cv) < 2)
74c765eb 2527 SvREFCNT_inc_simple_void_NN(cv);
dd2155a4 2528 else {
2b9dff67 2529 if (CvDEPTH(cv) == PERL_SUB_DEPTH_WARN && ckWARN(WARN_RECURSION))
44a8e56a 2530 sub_crush_depth(cv);
26019298 2531 pad_push(padlist, CvDEPTH(cv));
a0d0e21e 2532 }
fd617465
DM
2533 SAVECOMPPAD();
2534 PAD_SET_CUR_NOSAVE(padlist, CvDEPTH(cv));
bafb2adc 2535 if (CxHASARGS(cx))
6d4ff0d2 2536 {
502c6561 2537 AV *const av = MUTABLE_AV(PAD_SVl(0));
a0d0e21e 2538
3280af22 2539 cx->blk_sub.savearray = GvAV(PL_defgv);
502c6561 2540 GvAV(PL_defgv) = MUTABLE_AV(SvREFCNT_inc_simple(av));
dd2155a4 2541 CX_CURPAD_SAVE(cx->blk_sub);
6d4ff0d2 2542 cx->blk_sub.argarray = av;
a0d0e21e
LW
2543
2544 if (items >= AvMAX(av) + 1) {
b37c2d43 2545 SV **ary = AvALLOC(av);
a0d0e21e
LW
2546 if (AvARRAY(av) != ary) {
2547 AvMAX(av) += AvARRAY(av) - AvALLOC(av);
9c6bc640 2548 AvARRAY(av) = ary;
a0d0e21e
LW
2549 }
2550 if (items >= AvMAX(av) + 1) {
2551 AvMAX(av) = items - 1;
2552 Renew(ary,items+1,SV*);
2553 AvALLOC(av) = ary;
9c6bc640 2554 AvARRAY(av) = ary;
a0d0e21e
LW
2555 }
2556 }
a45cdc79 2557 ++mark;
a0d0e21e 2558 Copy(mark,AvARRAY(av),items,SV*);
93965878 2559 AvFILLp(av) = items - 1;
d8b46c1b 2560 assert(!AvREAL(av));
b1464ded
DM
2561 if (reified) {
2562 /* transfer 'ownership' of refcnts to new @_ */
2563 AvREAL_on(av);
2564 AvREIFY_off(av);
2565 }
a0d0e21e
LW
2566 while (items--) {
2567 if (*mark)
2568 SvTEMP_off(*mark);
2569 mark++;
2570 }
2571 }
491527d0 2572 if (PERLDB_SUB) { /* Checking curstash breaks DProf. */
005a8a35 2573 Perl_get_db_sub(aTHX_ NULL, cv);
b37c2d43 2574 if (PERLDB_GOTO) {
b96d8cd9 2575 CV * const gotocv = get_cvs("DB::goto", 0);
b37c2d43
AL
2576 if (gotocv) {
2577 PUSHMARK( PL_stack_sp );
ad64d0ec 2578 call_sv(MUTABLE_SV(gotocv), G_SCALAR | G_NODEBUG);
b37c2d43
AL
2579 PL_stack_sp--;
2580 }
491527d0 2581 }
1ce6579f 2582 }
a0d0e21e
LW
2583 RETURNOP(CvSTART(cv));
2584 }
2585 }
1614b0e3 2586 else {
0510663f 2587 label = SvPV_nolen_const(sv);
1614b0e3 2588 if (!(do_dump || *label))
cea2e8a9 2589 DIE(aTHX_ must_have_label);
1614b0e3 2590 }
a0d0e21e 2591 }
533c011a 2592 else if (PL_op->op_flags & OPf_SPECIAL) {
a0d0e21e 2593 if (! do_dump)
cea2e8a9 2594 DIE(aTHX_ must_have_label);
a0d0e21e
LW
2595 }
2596 else
2597 label = cPVOP->op_pv;
2598
2599 if (label && *label) {
cbbf8932 2600 OP *gotoprobe = NULL;
3b2447bc 2601 bool leaving_eval = FALSE;
33d34e4c 2602 bool in_block = FALSE;
cbbf8932 2603 PERL_CONTEXT *last_eval_cx = NULL;
a0d0e21e
LW
2604
2605 /* find label */
2606
d4c19fe8 2607 PL_lastgotoprobe = NULL;
a0d0e21e
LW
2608 *enterops = 0;
2609 for (ix = cxstack_ix; ix >= 0; ix--) {
2610 cx = &cxstack[ix];
6b35e009 2611 switch (CxTYPE(cx)) {
a0d0e21e 2612 case CXt_EVAL:
3b2447bc 2613 leaving_eval = TRUE;
971ecbe6 2614 if (!CxTRYBLOCK(cx)) {
a4f3a277
RH
2615 gotoprobe = (last_eval_cx ?
2616 last_eval_cx->blk_eval.old_eval_root :
2617 PL_eval_root);
2618 last_eval_cx = cx;
9c5794fe
RH
2619 break;
2620 }
2621 /* else fall through */
c6fdafd0 2622 case CXt_LOOP_LAZYIV:
d01136d6 2623 case CXt_LOOP_LAZYSV:
3b719c58
NC
2624 case CXt_LOOP_FOR:
2625 case CXt_LOOP_PLAIN:
bb5aedc1
VP
2626 case CXt_GIVEN:
2627 case CXt_WHEN:
a0d0e21e
LW
2628 gotoprobe = cx->blk_oldcop->op_sibling;
2629 break;
2630 case CXt_SUBST:
2631 continue;
2632 case CXt_BLOCK:
33d34e4c 2633 if (ix) {
a0d0e21e 2634 gotoprobe = cx->blk_oldcop->op_sibling;
33d34e4c
AE
2635 in_block = TRUE;
2636 } else
3280af22 2637 gotoprobe = PL_main_root;
a0d0e21e 2638 break;
b3933176 2639 case CXt_SUB:
9850bf21 2640 if (CvDEPTH(cx->blk_sub.cv) && !CxMULTICALL(cx)) {
b3933176
CS
2641 gotoprobe = CvROOT(cx->blk_sub.cv);
2642 break;
2643 }
2644 /* FALL THROUGH */
7766f137 2645 case CXt_FORMAT:
0a753a76 2646 case CXt_NULL:
a651a37d 2647 DIE(aTHX_ "Can't \"goto\" out of a pseudo block");
a0d0e21e
LW
2648 default:
2649 if (ix)
cea2e8a9 2650 DIE(aTHX_ "panic: goto");
3280af22 2651 gotoprobe = PL_main_root;
a0d0e21e
LW
2652 break;
2653 }
2b597662
GS
2654 if (gotoprobe) {
2655 retop = dofindlabel(gotoprobe, label,
2656 enterops, enterops + GOTO_DEPTH);
2657 if (retop)
2658 break;
2659 }
3280af22 2660 PL_lastgotoprobe = gotoprobe;
a0d0e21e
LW
2661 }
2662 if (!retop)
cea2e8a9 2663 DIE(aTHX_ "Can't find label %s", label);
a0d0e21e 2664
3b2447bc
RH
2665 /* if we're leaving an eval, check before we pop any frames
2666 that we're not going to punt, otherwise the error
2667 won't be caught */
2668
2669 if (leaving_eval && *enterops && enterops[1]) {
2670 I32 i;
2671 for (i = 1; enterops[i]; i++)
2672 if (enterops[i]->op_type == OP_ENTERITER)
2673 DIE(aTHX_ "Can't \"goto\" into the middle of a foreach loop");
2674 }
2675
a0d0e21e
LW
2676 /* pop unwanted frames */
2677
2678 if (ix < cxstack_ix) {
2679 I32 oldsave;
2680
2681 if (ix < 0)
2682 ix = 0;
2683 dounwind(ix);
2684 TOPBLOCK(cx);
3280af22 2685 oldsave = PL_scopestack[PL_scopestack_ix];
a0d0e21e
LW
2686 LEAVE_SCOPE(oldsave);
2687 }
2688
2689 /* push wanted frames */
2690
748a9306 2691 if (*enterops && enterops[1]) {
0bd48802 2692 OP * const oldop = PL_op;
33d34e4c
AE
2693 ix = enterops[1]->op_type == OP_ENTER && in_block ? 2 : 1;
2694 for (; enterops[ix]; ix++) {
533c011a 2695 PL_op = enterops[ix];
84902520
TB
2696 /* Eventually we may want to stack the needed arguments
2697 * for each op. For now, we punt on the hard ones. */
533c011a 2698 if (PL_op->op_type == OP_ENTERITER)
894356b3 2699 DIE(aTHX_ "Can't \"goto\" into the middle of a foreach loop");
fc0dc3b3 2700 CALL_FPTR(PL_op->op_ppaddr)(aTHX);
a0d0e21e 2701 }
533c011a 2702 PL_op = oldop;
a0d0e21e
LW
2703 }
2704 }
2705
2706 if (do_dump) {
a5f75d66 2707#ifdef VMS
6b88bc9c 2708 if (!retop) retop = PL_main_start;
a5f75d66 2709#endif
3280af22
NIS
2710 PL_restartop = retop;
2711 PL_do_undump = TRUE;
a0d0e21e
LW
2712
2713 my_unexec();
2714
3280af22
NIS
2715 PL_restartop = 0; /* hmm, must be GNU unexec().. */
2716 PL_do_undump = FALSE;
a0d0e21e
LW
2717 }
2718
2719 RETURNOP(retop);
2720}
2721
2722PP(pp_exit)
2723{
97aff369 2724 dVAR;
39644a26 2725 dSP;
a0d0e21e
LW
2726 I32 anum;
2727
2728 if (MAXARG < 1)
2729 anum = 0;
ff0cee69 2730 else {
a0d0e21e 2731 anum = SvIVx(POPs);
d98f61e7
GS
2732#ifdef VMS
2733 if (anum == 1 && (PL_op->op_private & OPpEXIT_VMSISH))
ff0cee69 2734 anum = 0;
96e176bf 2735 VMSISH_HUSHED = VMSISH_HUSHED || (PL_op->op_private & OPpHUSH_VMSISH);
ff0cee69 2736#endif
2737 }
cc3604b1 2738 PL_exit_flags |= PERL_EXIT_EXPECTED;
81d86705
NC
2739#ifdef PERL_MAD
2740 /* KLUDGE: disable exit 0 in BEGIN blocks when we're just compiling */
2741 if (anum || !(PL_minus_c && PL_madskills))
2742 my_exit(anum);
2743#else
a0d0e21e 2744 my_exit(anum);
81d86705 2745#endif
3280af22 2746 PUSHs(&PL_sv_undef);
a0d0e21e
LW
2747 RETURN;
2748}
2749
a0d0e21e
LW
2750/* Eval. */
2751
0824fdcb 2752STATIC void
cea2e8a9 2753S_save_lines(pTHX_ AV *array, SV *sv)
a0d0e21e 2754{
504618e9 2755 const char *s = SvPVX_const(sv);
890ce7af 2756 const char * const send = SvPVX_const(sv) + SvCUR(sv);
504618e9 2757 I32 line = 1;
a0d0e21e 2758
7918f24d
NC
2759 PERL_ARGS_ASSERT_SAVE_LINES;
2760
a0d0e21e 2761 while (s && s < send) {
f54cb97a 2762 const char *t;
b9f83d2f 2763 SV * const tmpstr = newSV_type(SVt_PVMG);
a0d0e21e 2764
1d963ff3 2765 t = (const char *)memchr(s, '\n', send - s);
a0d0e21e
LW
2766 if (t)
2767 t++;
2768 else
2769 t = send;
2770
2771 sv_setpvn(tmpstr, s, t - s);
2772 av_store(array, line++, tmpstr);
2773 s = t;
2774 }
2775}
2776
0824fdcb 2777STATIC OP *
cea2e8a9 2778S_docatch(pTHX_ OP *o)
1e422769 2779{
97aff369 2780 dVAR;
6224f72b 2781 int ret;
06b5626a 2782 OP * const oldop = PL_op;
db36c5a1 2783 dJMPENV;
1e422769 2784
1e422769 2785#ifdef DEBUGGING
54310121 2786 assert(CATCH_GET == TRUE);
1e422769 2787#endif
312caa8e 2788 PL_op = o;
8bffa5f8 2789
14dd3ad8 2790 JMPENV_PUSH(ret);
6224f72b 2791 switch (ret) {
312caa8e 2792 case 0:
abd70938
DM
2793 assert(cxstack_ix >= 0);
2794 assert(CxTYPE(&cxstack[cxstack_ix]) == CXt_EVAL);
2795 cxstack[cxstack_ix].blk_eval.cur_top_env = PL_top_env;
14dd3ad8 2796 redo_body:
85aaa934 2797 CALLRUNOPS(aTHX);
312caa8e
CS
2798 break;
2799 case 3:
8bffa5f8 2800 /* die caught by an inner eval - continue inner loop */
abd70938
DM
2801
2802 /* NB XXX we rely on the old popped CxEVAL still being at the top
2803 * of the stack; the way die_where() currently works, this
2804 * assumption is valid. In theory The cur_top_env value should be
2805 * returned in another global, the way retop (aka PL_restartop)
2806 * is. */
2807 assert(CxTYPE(&cxstack[cxstack_ix+1]) == CXt_EVAL);
2808
2809 if (PL_restartop
2810 && cxstack[cxstack_ix+1].blk_eval.cur_top_env == PL_top_env)
2811 {
312caa8e
CS
2812 PL_op = PL_restartop;
2813 PL_restartop = 0;
2814 goto redo_body;
2815 }
2816 /* FALL THROUGH */
2817 default:
14dd3ad8 2818 JMPENV_POP;
533c011a 2819 PL_op = oldop;
6224f72b 2820 JMPENV_JUMP(ret);
1e422769 2821 /* NOTREACHED */
1e422769 2822 }
14dd3ad8 2823 JMPENV_POP;
533c011a 2824 PL_op = oldop;
5f66b61c 2825 return NULL;
1e422769 2826}
2827
c277df42 2828OP *
bfed75c6 2829Perl_sv_compile_2op(pTHX_ SV *sv, OP** startop, const char *code, PAD** padp)
c277df42
IZ
2830/* sv Text to convert to OP tree. */
2831/* startop op_free() this to undo. */
2832/* code Short string id of the caller. */
2833{
f7997f86 2834 /* FIXME - how much of this code is common with pp_entereval? */
27da23d5 2835 dVAR; dSP; /* Make POPBLOCK work. */
c277df42
IZ
2836 PERL_CONTEXT *cx;
2837 SV **newsp;
b094c71d 2838 I32 gimme = G_VOID;
c277df42
IZ
2839 I32 optype;
2840 OP dummy;
83ee9e09
GS
2841 char tbuf[TYPE_DIGITS(long) + 12 + 10];
2842 char *tmpbuf = tbuf;
c277df42 2843 char *safestr;
a3985cdc 2844 int runtime;
601f1833 2845 CV* runcv = NULL; /* initialise to avoid compiler warnings */
f7997f86 2846 STRLEN len;
c277df42 2847
7918f24d
NC
2848 PERL_ARGS_ASSERT_SV_COMPILE_2OP;
2849
c277df42 2850 ENTER;
5486870f 2851 lex_start(sv, NULL, FALSE);
c277df42
IZ
2852 SAVETMPS;
2853 /* switch to eval mode */
2854
923e4eb5 2855 if (IN_PERL_COMPILETIME) {
f4dd75d9 2856 SAVECOPSTASH_FREE(&PL_compiling);
11faa288 2857 CopSTASH_set(&PL_compiling, PL_curstash);
cbce877f 2858 }
83ee9e09 2859 if (PERLDB_NAMEEVAL && CopLINE(PL_curcop)) {
9d4ba2ae 2860 SV * const sv = sv_newmortal();
83ee9e09
GS
2861 Perl_sv_setpvf(aTHX_ sv, "_<(%.10seval %lu)[%s:%"IVdf"]",
2862 code, (unsigned long)++PL_evalseq,
2863 CopFILE(PL_curcop), (IV)CopLINE(PL_curcop));
2864 tmpbuf = SvPVX(sv);
fc009855 2865 len = SvCUR(sv);
83ee9e09
GS
2866 }
2867 else
d9fad198
JH
2868 len = my_snprintf(tmpbuf, sizeof(tbuf), "_<(%.10s_eval %lu)", code,
2869 (unsigned long)++PL_evalseq);
f4dd75d9 2870 SAVECOPFILE_FREE(&PL_compiling);
57843af0 2871 CopFILE_set(&PL_compiling, tmpbuf+2);
f4dd75d9 2872 SAVECOPLINE(&PL_compiling);
57843af0 2873 CopLINE_set(&PL_compiling, 1);
c277df42
IZ
2874 /* XXX For C<eval "...">s within BEGIN {} blocks, this ends up
2875 deleting the eval's FILEGV from the stash before gv_check() runs
2876 (i.e. before run-time proper). To work around the coredump that
2877 ensues, we always turn GvMULTI_on for any globals that were
2878 introduced within evals. See force_ident(). GSAR 96-10-12 */
f7997f86
NC
2879 safestr = savepvn(tmpbuf, len);
2880 SAVEDELETE(PL_defstash, safestr, len);
b3ac6de7 2881 SAVEHINTS();
d1ca3daa 2882#ifdef OP_IN_REGISTER
6b88bc9c 2883 PL_opsave = op;
d1ca3daa 2884#else
7766f137 2885 SAVEVPTR(PL_op);
d1ca3daa 2886#endif
c277df42 2887
a3985cdc 2888 /* we get here either during compilation, or via pp_regcomp at runtime */
923e4eb5 2889 runtime = IN_PERL_RUNTIME;
a3985cdc 2890 if (runtime)
d819b83a 2891 runcv = find_runcv(NULL);
a3985cdc 2892
533c011a 2893 PL_op = &dummy;
13b51b79 2894 PL_op->op_type = OP_ENTEREVAL;
533c011a 2895 PL_op->op_flags = 0; /* Avoid uninit warning. */
923e4eb5 2896 PUSHBLOCK(cx, CXt_EVAL|(IN_PERL_COMPILETIME ? 0 : CXp_REAL), SP);
6b75f042 2897 PUSHEVAL(cx, 0);
a3985cdc
DM
2898
2899 if (runtime)
410be5db 2900 (void) doeval(G_SCALAR, startop, runcv, PL_curcop->cop_seq);
a3985cdc 2901 else
410be5db 2902 (void) doeval(G_SCALAR, startop, PL_compcv, PL_cop_seqmax);
13b51b79 2903 POPBLOCK(cx,PL_curpm);
e84b9f1f 2904 POPEVAL(cx);
c277df42
IZ
2905
2906 (*startop)->op_type = OP_NULL;
22c35a8c 2907 (*startop)->op_ppaddr = PL_ppaddr[OP_NULL];
c277df42 2908 lex_end();
f3548bdc 2909 /* XXX DAPM do this properly one year */
502c6561 2910 *padp = MUTABLE_AV(SvREFCNT_inc_simple(PL_comppad));
c277df42 2911 LEAVE;
923e4eb5 2912 if (IN_PERL_COMPILETIME)
623e6609 2913 CopHINTS_set(&PL_compiling, PL_hints);
d1ca3daa 2914#ifdef OP_IN_REGISTER
6b88bc9c 2915 op = PL_opsave;
d1ca3daa 2916#endif
9d4ba2ae
AL
2917 PERL_UNUSED_VAR(newsp);
2918 PERL_UNUSED_VAR(optype);
2919
410be5db 2920 return PL_eval_start;
c277df42
IZ
2921}
2922
a3985cdc
DM
2923
2924/*
2925=for apidoc find_runcv
2926
2927Locate the CV corresponding to the currently executing sub or eval.
d819b83a
DM
2928If db_seqp is non_null, skip CVs that are in the DB package and populate
2929*db_seqp with the cop sequence number at the point that the DB:: code was
2930entered. (allows debuggers to eval in the scope of the breakpoint rather
cf525c36 2931than in the scope of the debugger itself).
a3985cdc
DM
2932
2933=cut
2934*/
2935
2936CV*
d819b83a 2937Perl_find_runcv(pTHX_ U32 *db_seqp)
a3985cdc 2938{
97aff369 2939 dVAR;
a3985cdc 2940 PERL_SI *si;
a3985cdc 2941
d819b83a
DM
2942 if (db_seqp)
2943 *db_seqp = PL_curcop->cop_seq;
a3985cdc 2944 for (si = PL_curstackinfo; si; si = si->si_prev) {
06b5626a 2945 I32 ix;
a3985cdc 2946 for (ix = si->si_cxix; ix >= 0; ix--) {
06b5626a 2947 const PERL_CONTEXT *cx = &(si->si_cxstack[ix]);
d819b83a 2948 if (CxTYPE(cx) == CXt_SUB || CxTYPE(cx) == CXt_FORMAT) {
1b6737cc 2949 CV * const cv = cx->blk_sub.cv;
d819b83a
DM
2950 /* skip DB:: code */
2951 if (db_seqp && PL_debstash && CvSTASH(cv) == PL_debstash) {
2952 *db_seqp = cx->blk_oldcop->cop_seq;
2953 continue;
2954 }
2955 return cv;
2956 }
a3985cdc
DM
2957 else if (CxTYPE(cx) == CXt_EVAL && !CxTRYBLOCK(cx))
2958 return PL_compcv;
2959 }
2960 }
2961 return PL_main_cv;
2962}
2963
2964
2965/* Compile a require/do, an eval '', or a /(?{...})/.
2966 * In the last case, startop is non-null, and contains the address of
2967 * a pointer that should be set to the just-compiled code.
2968 * outside is the lexically enclosing CV (if any) that invoked us.
410be5db
DM
2969 * Returns a bool indicating whether the compile was successful; if so,
2970 * PL_eval_start contains the first op of the compiled ocde; otherwise,
2971 * pushes undef (also croaks if startop != NULL).
a3985cdc
DM
2972 */
2973
410be5db 2974STATIC bool
a3985cdc 2975S_doeval(pTHX_ int gimme, OP** startop, CV* outside, U32 seq)
a0d0e21e 2976{
27da23d5 2977 dVAR; dSP;
46c461b5 2978 OP * const saveop = PL_op;
a0d0e21e 2979
6dc8a9e4
IZ
2980 PL_in_eval = ((saveop && saveop->op_type == OP_REQUIRE)
2981 ? (EVAL_INREQUIRE | (PL_in_eval & EVAL_INEVAL))
2982 : EVAL_INEVAL);
a0d0e21e 2983
1ce6579f 2984 PUSHMARK(SP);
2985
3280af22 2986 SAVESPTR(PL_compcv);
ea726b52 2987 PL_compcv = MUTABLE_CV(newSV_type(SVt_PVCV));
1aff0e91 2988 CvEVAL_on(PL_compcv);
2090ab20
JH
2989 assert(CxTYPE(&cxstack[cxstack_ix]) == CXt_EVAL);
2990 cxstack[cxstack_ix].blk_eval.cv = PL_compcv;
2991
a3985cdc 2992 CvOUTSIDE_SEQ(PL_compcv) = seq;
ea726b52 2993 CvOUTSIDE(PL_compcv) = MUTABLE_CV(SvREFCNT_inc_simple(outside));
a3985cdc 2994
dd2155a4 2995 /* set up a scratch pad */
a0d0e21e 2996
dd2155a4 2997 CvPADLIST(PL_compcv) = pad_new(padnew_SAVE);
cecbe010 2998 PL_op = NULL; /* avoid PL_op and PL_curpad referring to different CVs */
2c05e328 2999
07055b4c 3000
81d86705
NC
3001 if (!PL_madskills)
3002 SAVEMORTALIZESV(PL_compcv); /* must remain until end of current statement */
748a9306 3003
a0d0e21e
LW
3004 /* make sure we compile in the right package */
3005
ed094faf 3006 if (CopSTASH_ne(PL_curcop, PL_curstash)) {
3280af22 3007 SAVESPTR(PL_curstash);
ed094faf 3008 PL_curstash = CopSTASH(PL_curcop);
a0d0e21e 3009 }
3c10abe3 3010 /* XXX:ajgo do we really need to alloc an AV for begin/checkunit */
3280af22
NIS
3011 SAVESPTR(PL_beginav);
3012 PL_beginav = newAV();
3013 SAVEFREESV(PL_beginav);
3c10abe3
AG
3014 SAVESPTR(PL_unitcheckav);
3015 PL_unitcheckav = newAV();
3016 SAVEFREESV(PL_unitcheckav);
a0d0e21e 3017
81d86705 3018#ifdef PERL_MAD
9da243ce 3019 SAVEBOOL(PL_madskills);
81d86705
NC
3020 PL_madskills = 0;
3021#endif
3022
a0d0e21e
LW
3023 /* try to compile it */
3024
5f66b61c 3025 PL_eval_root = NULL;
3280af22 3026 PL_curcop = &PL_compiling;
fc15ae8f 3027 CopARYBASE_set(PL_curcop, 0);
5f66b61c 3028 if (saveop && (saveop->op_type != OP_REQUIRE) && (saveop->op_flags & OPf_SPECIAL))
faef0170 3029 PL_in_eval |= EVAL_KEEPERR;
ab69dbc2
RGS
3030 else
3031 CLEAR_ERRSV();
13765c85 3032 if (yyparse() || PL_parser->error_count || !PL_eval_root) {
0c58d367 3033 SV **newsp; /* Used by POPBLOCK. */
9d4ba2ae 3034 PERL_CONTEXT *cx = &cxstack[cxstack_ix];
c277df42 3035 I32 optype = 0; /* Might be reset by POPEVAL. */
9d4ba2ae 3036 const char *msg;
bfed75c6 3037
533c011a 3038 PL_op = saveop;
3280af22
NIS
3039 if (PL_eval_root) {
3040 op_free(PL_eval_root);
5f66b61c 3041 PL_eval_root = NULL;
a0d0e21e 3042 }
3280af22 3043 SP = PL_stack_base + POPMARK; /* pop original mark */
c277df42 3044 if (!startop) {
3280af22 3045 POPBLOCK(cx,PL_curpm);
c277df42 3046 POPEVAL(cx);
c277df42 3047 }
a0d0e21e 3048 lex_end();
f9bddea7 3049 LEAVE; /* pp_entereval knows about this LEAVE. */
9d4ba2ae
AL
3050
3051 msg = SvPVx_nolen_const(ERRSV);
7a2e2cd6 3052 if (optype == OP_REQUIRE) {
b464bac0 3053 const SV * const nsv = cx->blk_eval.old_namesv;
504618e9 3054 (void)hv_store(GvHVn(PL_incgv), SvPVX_const(nsv), SvCUR(nsv),
27bcc0a7 3055 &PL_sv_undef, 0);
58d3fd3b
SH
3056 Perl_croak(aTHX_ "%sCompilation failed in require",
3057 *msg ? msg : "Unknown error\n");
5a844595
GS
3058 }
3059 else if (startop) {
3280af22 3060 POPBLOCK(cx,PL_curpm);
c277df42 3061 POPEVAL(cx);
5a844595
GS
3062 Perl_croak(aTHX_ "%sCompilation failed in regexp",
3063 (*msg ? msg : "Unknown error\n"));
7a2e2cd6 3064 }
9d7f88dd 3065 else {
9d7f88dd 3066 if (!*msg) {
6502358f 3067 sv_setpvs(ERRSV, "Compilation error");
9d7f88dd
SR
3068 }
3069 }
9d4ba2ae 3070 PERL_UNUSED_VAR(newsp);
410be5db
DM
3071 PUSHs(&PL_sv_undef);
3072 PUTBACK;
3073 return FALSE;
a0d0e21e 3074 }
57843af0 3075 CopLINE_set(&PL_compiling, 0);
c277df42 3076 if (startop) {
3280af22 3077 *startop = PL_eval_root;
c277df42 3078 } else
3280af22 3079 SAVEFREEOP(PL_eval_root);
0c58d367
RGS
3080
3081 /* Set the context for this new optree.
3082 * If the last op is an OP_REQUIRE, force scalar context.
3083 * Otherwise, propagate the context from the eval(). */
3084 if (PL_eval_root->op_type == OP_LEAVEEVAL
3085 && cUNOPx(PL_eval_root)->op_first->op_type == OP_LINESEQ
3086 && cLISTOPx(cUNOPx(PL_eval_root)->op_first)->op_last->op_type
3087 == OP_REQUIRE)
3088 scalar(PL_eval_root);
7df0357e 3089 else if ((gimme & G_WANT) == G_VOID)
3280af22 3090 scalarvoid(PL_eval_root);
7df0357e 3091 else if ((gimme & G_WANT) == G_ARRAY)
3280af22 3092 list(PL_eval_root);
a0d0e21e 3093 else
3280af22 3094 scalar(PL_eval_root);
a0d0e21e
LW
3095
3096 DEBUG_x(dump_eval());
3097
55497cff 3098 /* Register with debugger: */
6482a30d 3099 if (PERLDB_INTER && saveop && saveop->op_type == OP_REQUIRE) {
b96d8cd9 3100 CV * const cv = get_cvs("DB::postponed", 0);
55497cff 3101 if (cv) {
3102 dSP;
924508f0 3103 PUSHMARK(SP);
ad64d0ec 3104 XPUSHs(MUTABLE_SV(CopFILEGV(&PL_compiling)));
55497cff 3105 PUTBACK;
ad64d0ec 3106 call_sv(MUTABLE_SV(cv), G_DISCARD);
55497cff 3107 }
3108 }
3109
3c10abe3
AG
3110 if (PL_unitcheckav)
3111 call_list(PL_scopestack_ix, PL_unitcheckav);
3112
a0d0e21e
LW
3113 /* compiled okay, so do it */
3114
3280af22
NIS
3115 CvDEPTH(PL_compcv) = 1;
3116 SP = PL_stack_base + POPMARK; /* pop original mark */
533c011a 3117 PL_op = saveop; /* The caller may need it. */
bc177e6b 3118 PL_parser->lex_state = LEX_NOTPARSING; /* $^S needs this. */
5dc0d613 3119
410be5db
DM
3120 PUTBACK;
3121 return TRUE;
a0d0e21e
LW
3122}
3123
a6c40364 3124STATIC PerlIO *
0786552a 3125S_check_type_and_open(pTHX_ const char *name)
ce8abf5f
SP
3126{
3127 Stat_t st;
c445ea15 3128 const int st_rc = PerlLIO_stat(name, &st);
df528165 3129
7918f24d
NC
3130 PERL_ARGS_ASSERT_CHECK_TYPE_AND_OPEN;
3131
6b845e56 3132 if (st_rc < 0 || S_ISDIR(st.st_mode) || S_ISBLK(st.st_mode)) {
4608196e 3133 return NULL;
ce8abf5f
SP
3134 }
3135
0786552a 3136 return PerlIO_open(name, PERL_SCRIPT_MODE);
ce8abf5f
SP
3137}
3138
75c20bac 3139#ifndef PERL_DISABLE_PMC
ce8abf5f 3140STATIC PerlIO *
0786552a 3141S_doopen_pm(pTHX_ const char *name, const STRLEN namelen)
b295d113 3142{
b295d113
TH
3143 PerlIO *fp;
3144
7918f24d
NC
3145 PERL_ARGS_ASSERT_DOOPEN_PM;
3146
ce9440c8 3147 if (namelen > 3 && memEQs(name + namelen - 3, 3, ".pm")) {
50b8ed39
NC
3148 SV *const pmcsv = newSV(namelen + 2);
3149 char *const pmc = SvPVX(pmcsv);
a6c40364 3150 Stat_t pmcstat;
50b8ed39
NC
3151
3152 memcpy(pmc, name, namelen);
3153 pmc[namelen] = 'c';
3154 pmc[namelen + 1] = '\0';
3155
a6c40364 3156 if (PerlLIO_stat(pmc, &pmcstat) < 0) {
0786552a 3157 fp = check_type_and_open(name);
a6c40364
GS
3158 }
3159 else {
0786552a 3160 fp = check_type_and_open(pmc);
b295d113 3161 }
a6c40364
GS
3162 SvREFCNT_dec(pmcsv);
3163 }
3164 else {
0786552a 3165 fp = check_type_and_open(name);
b295d113 3166 }
b295d113 3167 return fp;
75c20bac 3168}
7925835c 3169#else
75c20bac 3170# define doopen_pm(name, namelen) check_type_and_open(name)
7925835c 3171#endif /* !PERL_DISABLE_PMC */
b295d113 3172
a0d0e21e
LW
3173PP(pp_require)
3174{
27da23d5 3175 dVAR; dSP;
c09156bb 3176 register PERL_CONTEXT *cx;
a0d0e21e 3177 SV *sv;
5c144d81 3178 const char *name;
6132ea6c 3179 STRLEN len;
4492be7a
JM
3180 char * unixname;
3181 STRLEN unixlen;
62f5ad7a 3182#ifdef VMS
4492be7a 3183 int vms_unixname = 0;
62f5ad7a 3184#endif
c445ea15
AL
3185 const char *tryname = NULL;
3186 SV *namesv = NULL;
f54cb97a 3187 const I32 gimme = GIMME_V;
bbed91b5 3188 int filter_has_file = 0;
c445ea15 3189 PerlIO *tryrsfp = NULL;
34113e50 3190 SV *filter_cache = NULL;
c445ea15
AL
3191 SV *filter_state = NULL;
3192 SV *filter_sub = NULL;
3193 SV *hook_sv = NULL;
6ec9efec
JH
3194 SV *encoding;
3195 OP *op;
a0d0e21e
LW
3196
3197 sv = POPs;
d7aa5382 3198 if ( (SvNIOKp(sv) || SvVOK(sv)) && PL_op->op_type != OP_DOFILE) {
d7aa5382
JP
3199 sv = new_version(sv);
3200 if (!sv_derived_from(PL_patchlevel, "version"))
ac0e6a2f 3201 upg_version(PL_patchlevel, TRUE);
149c1637 3202 if (cUNOP->op_first->op_type == OP_CONST && cUNOP->op_first->op_private & OPpCONST_NOVER) {
3cacfbb9 3203 if ( vcmp(sv,PL_patchlevel) <= 0 )
468aa647 3204 DIE(aTHX_ "Perls since %"SVf" too modern--this is %"SVf", stopped",
be2597df 3205 SVfARG(vnormal(sv)), SVfARG(vnormal(PL_patchlevel)));
468aa647
RGS
3206 }
3207 else {
d1029faa
JP
3208 if ( vcmp(sv,PL_patchlevel) > 0 ) {
3209 I32 first = 0;
3210 AV *lav;
3211 SV * const req = SvRV(sv);
85fbaab2 3212 SV * const pv = *hv_fetchs(MUTABLE_HV(req), "original", FALSE);
d1029faa
JP
3213
3214 /* get the left hand term */
502c6561 3215 lav = MUTABLE_AV(SvRV(*hv_fetchs(MUTABLE_HV(req), "version", FALSE)));
d1029faa
JP
3216
3217 first = SvIV(*av_fetch(lav,0,0));
3218 if ( first > (int)PERL_REVISION /* probably 'use 6.0' */
85fbaab2 3219 || hv_exists(MUTABLE_HV(req), "qv", 2 ) /* qv style */
d1029faa
JP
3220 || av_len(lav) > 1 /* FP with > 3 digits */
3221 || strstr(SvPVX(pv),".0") /* FP with leading 0 */
3222 ) {
3223 DIE(aTHX_ "Perl %"SVf" required--this is only "
3224 "%"SVf", stopped", SVfARG(vnormal(req)),
3225 SVfARG(vnormal(PL_patchlevel)));
3226 }
3227 else { /* probably 'use 5.10' or 'use 5.8' */
3228 SV * hintsv = newSV(0);
3229 I32 second = 0;
3230
3231 if (av_len(lav)>=1)
3232 second = SvIV(*av_fetch(lav,1,0));
3233
3234 second /= second >= 600 ? 100 : 10;
3235 hintsv = Perl_newSVpvf(aTHX_ "v%d.%d.%d",
3236 (int)first, (int)second,0);
3237 upg_version(hintsv, TRUE);
3238
3239 DIE(aTHX_ "Perl %"SVf" required (did you mean %"SVf"?)"
3240 "--this is only %"SVf", stopped",
3241 SVfARG(vnormal(req)),
3242 SVfARG(vnormal(hintsv)),
3243 SVfARG(vnormal(PL_patchlevel)));
3244 }
3245 }
468aa647 3246 }
d7aa5382 3247
fbc891ce
RB
3248 /* We do this only with use, not require. */
3249 if (PL_compcv &&
fbc891ce
RB
3250 /* If we request a version >= 5.9.5, load feature.pm with the
3251 * feature bundle that corresponds to the required version. */
2e8342de 3252 vcmp(sv, sv_2mortal(upg_version(newSVnv(5.009005), FALSE))) >= 0) {
7dfde25d
RGS
3253 SV *const importsv = vnormal(sv);
3254 *SvPVX_mutable(importsv) = ':';
3255 ENTER;
3256 Perl_load_module(aTHX_ 0, newSVpvs("feature"), NULL, importsv, NULL);
3257 LEAVE;
3258 }
53eb19dd
S
3259 /* If a version >= 5.11.0 is requested, strictures are on by default! */
3260 if (PL_compcv &&
3261 vcmp(sv, sv_2mortal(upg_version(newSVnv(5.011000), FALSE))) >= 0) {
5cc917d6 3262 PL_hints |= (HINT_STRICT_REFS | HINT_STRICT_SUBS | HINT_STRICT_VARS);
53eb19dd
S
3263 }
3264
7dfde25d 3265 RETPUSHYES;
a0d0e21e 3266 }
5c144d81 3267 name = SvPV_const(sv, len);
6132ea6c 3268 if (!(name && len > 0 && *name))
cea2e8a9 3269 DIE(aTHX_ "Null filename used");
4633a7c4 3270 TAINT_PROPER("require");
4492be7a
JM
3271
3272
3273#ifdef VMS
3274 /* The key in the %ENV hash is in the syntax of file passed as the argument
3275 * usually this is in UNIX format, but sometimes in VMS format, which
3276 * can result in a module being pulled in more than once.
3277 * To prevent this, the key must be stored in UNIX format if the VMS
3278 * name can be translated to UNIX.
3279 */
3280 if ((unixname = tounixspec(name, NULL)) != NULL) {
3281 unixlen = strlen(unixname);
3282 vms_unixname = 1;
3283 }
3284 else
3285#endif
3286 {
3287 /* if not VMS or VMS name can not be translated to UNIX, pass it
3288 * through.
3289 */
3290 unixname = (char *) name;
3291 unixlen = len;
3292 }
44f8325f 3293 if (PL_op->op_type == OP_REQUIRE) {
4492be7a
JM
3294 SV * const * const svp = hv_fetch(GvHVn(PL_incgv),
3295 unixname, unixlen, 0);
44f8325f
AL
3296 if ( svp ) {
3297 if (*svp != &PL_sv_undef)
3298 RETPUSHYES;
3299 else
087b5369
RD
3300 DIE(aTHX_ "Attempt to reload %s aborted.\n"
3301 "Compilation failed in require", unixname);
44f8325f 3302 }
4d8b06f1 3303 }
a0d0e21e
LW
3304
3305 /* prepare to compile file */
3306
be4b629d 3307 if (path_is_absolute(name)) {
46fc3d4c 3308 tryname = name;
0786552a 3309 tryrsfp = doopen_pm(name, len);
bf4acbe4 3310 }
be4b629d 3311 if (!tryrsfp) {
44f8325f 3312 AV * const ar = GvAVn(PL_incgv);
a0d0e21e 3313 I32 i;
748a9306 3314#ifdef VMS
4492be7a 3315 if (vms_unixname)
46fc3d4c 3316#endif
3317 {
d0328fd7 3318 namesv = newSV_type(SVt_PV);
46fc3d4c 3319 for (i = 0; i <= AvFILL(ar); i++) {
df528165 3320 SV * const dirsv = *av_fetch(ar, i, TRUE);
bbed91b5 3321
ad64d0ec 3322 if (SvTIED_mg((const SV *)ar, PERL_MAGIC_tied))
c38a6530 3323 mg_get(dirsv);
bbed91b5
KF
3324 if (SvROK(dirsv)) {
3325 int count;
a3b58a99 3326 SV **svp;
bbed91b5
KF
3327 SV *loader = dirsv;
3328
e14e2dc8
NC
3329 if (SvTYPE(SvRV(loader)) == SVt_PVAV
3330 && !sv_isobject(loader))
3331 {
502c6561 3332 loader = *av_fetch(MUTABLE_AV(SvRV(loader)), 0, TRUE);
bbed91b5
KF
3333 }
3334
b900a521 3335 Perl_sv_setpvf(aTHX_ namesv, "/loader/0x%"UVxf"/%s",
44f0be63 3336 PTR2UV(SvRV(dirsv)), name);
349d4f2f 3337 tryname = SvPVX_const(namesv);
c445ea15 3338 tryrsfp = NULL;
bbed91b5
KF
3339
3340 ENTER;
3341 SAVETMPS;
3342 EXTEND(SP, 2);
3343
3344 PUSHMARK(SP);
3345 PUSHs(dirsv);
3346 PUSHs(sv);
3347 PUTBACK;
e982885c
NC
3348 if (sv_isobject(loader))
3349 count = call_method("INC", G_ARRAY);
3350 else
3351 count = call_sv(loader, G_ARRAY);
bbed91b5
KF
3352 SPAGAIN;
3353
a3b58a99
RGS
3354 /* Adjust file name if the hook has set an %INC entry */
3355 svp = hv_fetch(GvHVn(PL_incgv), name, len, 0);
3356 if (svp)
3357 tryname = SvPVX_const(*svp);
3358
bbed91b5
KF
3359 if (count > 0) {
3360 int i = 0;
3361 SV *arg;
3362
3363 SP -= count - 1;
3364 arg = SP[i++];
3365
34113e50
NC
3366 if (SvROK(arg) && (SvTYPE(SvRV(arg)) <= SVt_PVLV)
3367 && !isGV_with_GP(SvRV(arg))) {
3368 filter_cache = SvRV(arg);
74c765eb 3369 SvREFCNT_inc_simple_void_NN(filter_cache);
34113e50
NC
3370
3371 if (i < count) {
3372 arg = SP[i++];
3373 }
3374 }
3375
6e592b3a 3376 if (SvROK(arg) && isGV_with_GP(SvRV(arg))) {
bbed91b5
KF
3377 arg = SvRV(arg);
3378 }
3379
6e592b3a 3380 if (isGV_with_GP(arg)) {
159b6efe 3381 IO * const io = GvIO((const GV *)arg);
bbed91b5
KF
3382
3383 ++filter_has_file;
3384
3385 if (io) {
3386 tryrsfp = IoIFP(io);
0f7de14d
NC
3387 if (IoOFP(io) && IoOFP(io) != IoIFP(io)) {
3388 PerlIO_close(IoOFP(io));
bbed91b5 3389 }
0f7de14d
NC
3390 IoIFP(io) = NULL;
3391 IoOFP(io) = NULL;
bbed91b5
KF
3392 }
3393
3394 if (i < count) {
3395 arg = SP[i++];
3396 }
3397 }
3398
3399 if (SvROK(arg) && SvTYPE(SvRV(arg)) == SVt_PVCV) {
3400 filter_sub = arg;
74c765eb 3401 SvREFCNT_inc_simple_void_NN(filter_sub);
bbed91b5
KF
3402
3403 if (i < count) {
3404 filter_state = SP[i];
b37c2d43 3405 SvREFCNT_inc_simple_void(filter_state);
bbed91b5 3406 }
34113e50 3407 }
bbed91b5 3408
34113e50
NC
3409 if (!tryrsfp && (filter_cache || filter_sub)) {
3410 tryrsfp = PerlIO_open(BIT_BUCKET,
3411 PERL_SCRIPT_MODE);
bbed91b5 3412 }
1d06aecd 3413 SP--;
bbed91b5
KF
3414 }
3415
3416 PUTBACK;
3417 FREETMPS;
3418 LEAVE;
3419
3420 if (tryrsfp) {
89ccab8c 3421 hook_sv = dirsv;
bbed91b5
KF
3422 break;
3423 }
3424
3425 filter_has_file = 0;
34113e50
NC
3426 if (filter_cache) {
3427 SvREFCNT_dec(filter_cache);
3428 filter_cache = NULL;
3429 }
bbed91b5
KF
3430 if (filter_state) {
3431 SvREFCNT_dec(filter_state);
c445ea15 3432 filter_state = NULL;
bbed91b5
KF
3433 }
3434 if (filter_sub) {
3435 SvREFCNT_dec(filter_sub);
c445ea15 3436 filter_sub = NULL;
bbed91b5
KF
3437 }
3438 }
3439 else {
be4b629d 3440 if (!path_is_absolute(name)
be4b629d 3441 ) {
b640a14a
NC
3442 const char *dir;
3443 STRLEN dirlen;
3444
3445 if (SvOK(dirsv)) {
3446 dir = SvPV_const(dirsv, dirlen);
3447 } else {
3448 dir = "";
3449 dirlen = 0;
3450 }
3451
e37778c2 3452#ifdef VMS
bbed91b5 3453 char *unixdir;
c445ea15 3454 if ((unixdir = tounixpath(dir, NULL)) == NULL)
bbed91b5
KF
3455 continue;
3456 sv_setpv(namesv, unixdir);
3457 sv_catpv(namesv, unixname);
e37778c2
NC
3458#else
3459# ifdef __SYMBIAN32__
27da23d5
JH
3460 if (PL_origfilename[0] &&
3461 PL_origfilename[1] == ':' &&
3462 !(dir[0] && dir[1] == ':'))
3463 Perl_sv_setpvf(aTHX_ namesv,
3464 "%c:%s\\%s",
3465 PL_origfilename[0],
3466 dir, name);
3467 else
3468 Perl_sv_setpvf(aTHX_ namesv,
3469 "%s\\%s",
3470 dir, name);
e37778c2 3471# else
b640a14a
NC
3472 /* The equivalent of
3473 Perl_sv_setpvf(aTHX_ namesv, "%s/%s", dir, name);
3474 but without the need to parse the format string, or
3475 call strlen on either pointer, and with the correct
3476 allocation up front. */
3477 {
3478 char *tmp = SvGROW(namesv, dirlen + len + 2);
3479
3480 memcpy(tmp, dir, dirlen);
3481 tmp +=dirlen;
3482 *tmp++ = '/';
3483 /* name came from an SV, so it will have a '\0' at the
3484 end that we can copy as part of this memcpy(). */
3485 memcpy(tmp, name, len + 1);
3486
3487 SvCUR_set(namesv, dirlen + len + 1);
3488
3489 /* Don't even actually have to turn SvPOK_on() as we
3490 access it directly with SvPVX() below. */
3491 }
27da23d5 3492# endif
bf4acbe4 3493#endif
bbed91b5 3494 TAINT_PROPER("require");
349d4f2f 3495 tryname = SvPVX_const(namesv);
0786552a 3496 tryrsfp = doopen_pm(tryname, SvCUR(namesv));
bbed91b5 3497 if (tryrsfp) {
e63be746
RGS
3498 if (tryname[0] == '.' && tryname[1] == '/') {
3499 ++tryname;
3500 while (*++tryname == '/');
3501 }
bbed91b5
KF
3502 break;
3503 }
ff806af2
DM
3504 else if (errno == EMFILE)
3505 /* no point in trying other paths if out of handles */
3506 break;
be4b629d 3507 }
46fc3d4c 3508 }
a0d0e21e
LW
3509 }
3510 }
3511 }
f4dd75d9 3512 SAVECOPFILE_FREE(&PL_compiling);
57843af0 3513 CopFILE_set(&PL_compiling, tryrsfp ? tryname : name);
46fc3d4c 3514 SvREFCNT_dec(namesv);
a0d0e21e 3515 if (!tryrsfp) {
533c011a 3516 if (PL_op->op_type == OP_REQUIRE) {
5c144d81 3517 const char *msgstr = name;
e31de809 3518 if(errno == EMFILE) {
b9b739dc
NC
3519 SV * const msg
3520 = sv_2mortal(Perl_newSVpvf(aTHX_ "%s: %s", msgstr,
3521 Strerror(errno)));
349d4f2f 3522 msgstr = SvPV_nolen_const(msg);
e31de809
SP
3523 } else {
3524 if (namesv) { /* did we lookup @INC? */
44f8325f 3525 AV * const ar = GvAVn(PL_incgv);
e31de809 3526 I32 i;
b8f04b1b
NC
3527 SV * const msg = sv_2mortal(Perl_newSVpvf(aTHX_
3528 "%s in @INC%s%s (@INC contains:",
3529 msgstr,
3530 (instr(msgstr, ".h ")
3531 ? " (change .h to .ph maybe?)" : ""),
3532 (instr(msgstr, ".ph ")
3533 ? " (did you run h2ph?)" : "")
3534 ));
3535
e31de809 3536 for (i = 0; i <= AvFILL(ar); i++) {
396482e1 3537 sv_catpvs(msg, " ");
b8f04b1b 3538 sv_catsv(msg, *av_fetch(ar, i, TRUE));
e31de809 3539 }
396482e1 3540 sv_catpvs(msg, ")");
e31de809
SP
3541 msgstr = SvPV_nolen_const(msg);
3542 }
2683423c 3543 }
ea071790 3544 DIE(aTHX_ "Can't locate %s", msgstr);
a0d0e21e
LW
3545 }
3546
3547 RETPUSHUNDEF;
3548 }
d8bfb8bd 3549 else
93189314 3550 SETERRNO(0, SS_NORMAL);
a0d0e21e
LW
3551
3552 /* Assume success here to prevent recursive requirement. */
238d24b4 3553 /* name is never assigned to again, so len is still strlen(name) */
d3a4e64e 3554 /* Check whether a hook in @INC has already filled %INC */
44f8325f 3555 if (!hook_sv) {
4492be7a
JM
3556 (void)hv_store(GvHVn(PL_incgv),
3557 unixname, unixlen, newSVpv(CopFILE(&PL_compiling),0),0);
44f8325f 3558 } else {
4492be7a 3559 SV** const svp = hv_fetch(GvHVn(PL_incgv), unixname, unixlen, 0);
44f8325f 3560 if (!svp)
4492be7a
JM
3561 (void)hv_store(GvHVn(PL_incgv),
3562 unixname, unixlen, SvREFCNT_inc_simple(hook_sv), 0 );
d3a4e64e 3563 }
a0d0e21e
LW
3564
3565 ENTER;
3566 SAVETMPS;
5486870f 3567 lex_start(NULL, tryrsfp, TRUE);
e50aee73 3568
b3ac6de7 3569 SAVEHINTS();
3280af22 3570 PL_hints = 0;
f747ebd6 3571 hv_clear(GvHV(PL_hintgv));
27eaf14c 3572
68da3b2f 3573 SAVECOMPILEWARNINGS();
0453d815 3574 if (PL_dowarn & G_WARN_ALL_ON)
d3a7d8c7 3575 PL_compiling.cop_warnings = pWARN_ALL ;
0453d815 3576 else if (PL_dowarn & G_WARN_ALL_OFF)
d3a7d8c7 3577 PL_compiling.cop_warnings = pWARN_NONE ;
ac27b0f5 3578 else
d3a7d8c7 3579 PL_compiling.cop_warnings = pWARN_STD ;
a0d0e21e 3580
34113e50 3581 if (filter_sub || filter_cache) {
c445ea15 3582 SV * const datasv = filter_add(S_run_user_filter, NULL);
bbed91b5 3583 IoLINES(datasv) = filter_has_file;
159b6efe
NC
3584 IoTOP_GV(datasv) = MUTABLE_GV(filter_state);
3585 IoBOTTOM_GV(datasv) = MUTABLE_GV(filter_sub);
3586 IoFMT_GV(datasv) = MUTABLE_GV(filter_cache);
bbed91b5
KF
3587 }
3588
3589 /* switch to eval mode */
a0d0e21e 3590 PUSHBLOCK(cx, CXt_EVAL, SP);
6b75f042 3591 PUSHEVAL(cx, name);
f39bc417 3592 cx->blk_eval.retop = PL_op->op_next;
a0d0e21e 3593
57843af0
GS
3594 SAVECOPLINE(&PL_compiling);
3595 CopLINE_set(&PL_compiling, 0);
a0d0e21e
LW
3596
3597 PUTBACK;
6ec9efec
JH
3598
3599 /* Store and reset encoding. */
3600 encoding = PL_encoding;
c445ea15 3601 PL_encoding = NULL;
6ec9efec 3602
410be5db
DM
3603 if (doeval(gimme, NULL, NULL, PL_curcop->cop_seq))
3604 op = DOCATCH(PL_eval_start);
3605 else
3606 op = PL_op->op_next;
bfed75c6 3607
6ec9efec
JH
3608 /* Restore encoding. */
3609 PL_encoding = encoding;
3610
3611 return op;
a0d0e21e
LW
3612}
3613
996c9baa
VP
3614/* This is a op added to hold the hints hash for
3615 pp_entereval. The hash can be modified by the code
3616 being eval'ed, so we return a copy instead. */
3617
3618PP(pp_hintseval)
3619{
3620 dVAR;
3621 dSP;
ad64d0ec 3622 mXPUSHs(MUTABLE_SV(Perl_hv_copy_hints_hv(aTHX_ MUTABLE_HV(cSVOP_sv))));
996c9baa
VP
3623 RETURN;
3624}
3625
3626
a0d0e21e
LW
3627PP(pp_entereval)
3628{
27da23d5 3629 dVAR; dSP;
c09156bb 3630 register PERL_CONTEXT *cx;
0d863452 3631 SV *sv;
890ce7af 3632 const I32 gimme = GIMME_V;
fd06b02c 3633 const U32 was = PL_breakable_sub_gen;
83ee9e09
GS
3634 char tbuf[TYPE_DIGITS(long) + 12];
3635 char *tmpbuf = tbuf;
a0d0e21e 3636 STRLEN len;
a3985cdc 3637 CV* runcv;
d819b83a 3638 U32 seq;
c445ea15 3639 HV *saved_hh = NULL;
e389bba9 3640
0d863452 3641 if (PL_op->op_private & OPpEVAL_HAS_HH) {
85fbaab2 3642 saved_hh = MUTABLE_HV(SvREFCNT_inc(POPs));
0d863452
RH
3643 }
3644 sv = POPs;
a0d0e21e 3645
af2d3def 3646 TAINT_IF(SvTAINTED(sv));
748a9306 3647 TAINT_PROPER("eval");
a0d0e21e
LW
3648
3649 ENTER;
5486870f 3650 lex_start(sv, NULL, FALSE);
748a9306 3651 SAVETMPS;
ac27b0f5 3652
a0d0e21e
LW
3653 /* switch to eval mode */
3654
83ee9e09 3655 if (PERLDB_NAMEEVAL && CopLINE(PL_curcop)) {
8b38226b
AL
3656 SV * const temp_sv = sv_newmortal();
3657 Perl_sv_setpvf(aTHX_ temp_sv, "_<(eval %lu)[%s:%"IVdf"]",
83ee9e09
GS
3658 (unsigned long)++PL_evalseq,
3659 CopFILE(PL_curcop), (IV)CopLINE(PL_curcop));
8b38226b
AL
3660 tmpbuf = SvPVX(temp_sv);
3661 len = SvCUR(temp_sv);
83ee9e09
GS
3662 }
3663 else
d9fad198 3664 len = my_snprintf(tmpbuf, sizeof(tbuf), "_<(eval %lu)", (unsigned long)++PL_evalseq);
f4dd75d9 3665 SAVECOPFILE_FREE(&PL_compiling);
57843af0 3666 CopFILE_set(&PL_compiling, tmpbuf+2);
f4dd75d9 3667 SAVECOPLINE(&PL_compiling);
57843af0 3668 CopLINE_set(&PL_compiling, 1);
55497cff 3669 /* XXX For C<eval "...">s within BEGIN {} blocks, this ends up
3670 deleting the eval's FILEGV from the stash before gv_check() runs
3671 (i.e. before run-time proper). To work around the coredump that
3672 ensues, we always turn GvMULTI_on for any globals that were
3673 introduced within evals. See force_ident(). GSAR 96-10-12 */
b3ac6de7 3674 SAVEHINTS();
533c011a 3675 PL_hints = PL_op->op_targ;
cda55376
AV
3676 if (saved_hh) {
3677 /* SAVEHINTS created a new HV in PL_hintgv, which we need to GC */
3678 SvREFCNT_dec(GvHV(PL_hintgv));
0d863452 3679 GvHV(PL_hintgv) = saved_hh;
cda55376 3680 }
68da3b2f 3681 SAVECOMPILEWARNINGS();
72dc9ed5 3682 PL_compiling.cop_warnings = DUP_WARNINGS(PL_curcop->cop_warnings);
c28fe1ec
NC
3683 if (PL_compiling.cop_hints_hash) {
3684 Perl_refcounted_he_free(aTHX_ PL_compiling.cop_hints_hash);
a24d89c9 3685 }
c28fe1ec
NC
3686 PL_compiling.cop_hints_hash = PL_curcop->cop_hints_hash;
3687 if (PL_compiling.cop_hints_hash) {
cbb1fbea 3688 HINTS_REFCNT_LOCK;
c28fe1ec 3689 PL_compiling.cop_hints_hash->refcounted_he_refcnt++;
cbb1fbea 3690 HINTS_REFCNT_UNLOCK;
a24d89c9 3691 }
d819b83a
DM
3692 /* special case: an eval '' executed within the DB package gets lexically
3693 * placed in the first non-DB CV rather than the current CV - this
3694 * allows the debugger to execute code, find lexicals etc, in the
3695 * scope of the code being debugged. Passing &seq gets find_runcv
3696 * to do the dirty work for us */
3697 runcv = find_runcv(&seq);
a0d0e21e 3698
6b35e009 3699 PUSHBLOCK(cx, (CXt_EVAL|CXp_REAL), SP);
6b75f042 3700 PUSHEVAL(cx, 0);
f39bc417 3701 cx->blk_eval.retop = PL_op->op_next;
a0d0e21e
LW
3702
3703 /* prepare to compile string */
3704
a44e3ce2 3705 if ((PERLDB_LINE || PERLDB_SAVESRC) && PL_curstash != PL_debstash)
bdc0bf6f 3706 save_lines(CopFILEAV(&PL_compiling), PL_parser->linestr);
a0d0e21e 3707 PUTBACK;
f9bddea7
NC
3708
3709 if (doeval(gimme, NULL, runcv, seq)) {
3710 if (was != PL_breakable_sub_gen /* Some subs defined here. */
3711 ? (PERLDB_LINE || PERLDB_SAVESRC)
3712 : PERLDB_SAVESRC_NOSUBS) {
3713 /* Retain the filegv we created. */
3714 } else {
3715 char *const safestr = savepvn(tmpbuf, len);
3716 SAVEDELETE(PL_defstash, safestr, len);
3717 }
3718 return DOCATCH(PL_eval_start);
3719 } else {
3720 /* We have already left the scope set up earler thanks to the LEAVE
3721 in doeval(). */
eb044b10
NC
3722 if (was != PL_breakable_sub_gen /* Some subs defined here. */
3723 ? (PERLDB_LINE || PERLDB_SAVESRC)
3724 : PERLDB_SAVESRC_INVALID) {
f9bddea7
NC
3725 /* Retain the filegv we created. */
3726 } else {
3727 (void)hv_delete(PL_defstash, tmpbuf, len, G_DISCARD);
3728 }
3729 return PL_op->op_next;
3730 }
a0d0e21e
LW
3731}
3732
3733PP(pp_leaveeval)
3734{
27da23d5 3735 dVAR; dSP;
a0d0e21e
LW
3736 register SV **mark;
3737 SV **newsp;
3738 PMOP *newpm;
3739 I32 gimme;
c09156bb 3740 register PERL_CONTEXT *cx;
a0d0e21e 3741 OP *retop;
06b5626a 3742 const U8 save_flags = PL_op -> op_flags;
a0d0e21e
LW
3743 I32 optype;
3744
3745 POPBLOCK(cx,newpm);
3746 POPEVAL(cx);
f39bc417 3747 retop = cx->blk_eval.retop;
a0d0e21e 3748
a1f49e72 3749 TAINT_NOT;
54310121 3750 if (gimme == G_VOID)
3751 MARK = newsp;
3752 else if (gimme == G_SCALAR) {
3753 MARK = newsp + 1;
3754 if (MARK <= SP) {
3755 if (SvFLAGS(TOPs) & SVs_TEMP)
3756 *MARK = TOPs;
3757 else
3758 *MARK = sv_mortalcopy(TOPs);
3759 }
a0d0e21e 3760 else {
54310121 3761 MEXTEND(mark,0);
3280af22 3762 *MARK = &PL_sv_undef;
a0d0e21e 3763 }
a7ec2b44 3764 SP = MARK;
a0d0e21e
LW
3765 }
3766 else {
a1f49e72
CS
3767 /* in case LEAVE wipes old return values */
3768 for (mark = newsp + 1; mark <= SP; mark++) {
3769 if (!(SvFLAGS(*mark) & SVs_TEMP)) {
a0d0e21e 3770 *mark = sv_mortalcopy(*mark);
a1f49e72
CS
3771 TAINT_NOT; /* Each item is independent */
3772 }
3773 }
a0d0e21e 3774 }
3280af22 3775 PL_curpm = newpm; /* Don't pop $1 et al till now */
a0d0e21e 3776
4fdae800 3777#ifdef DEBUGGING
3280af22 3778 assert(CvDEPTH(PL_compcv) == 1);
4fdae800 3779#endif
3280af22 3780 CvDEPTH(PL_compcv) = 0;
f46d017c 3781 lex_end();
4fdae800 3782
1ce6579f 3783 if (optype == OP_REQUIRE &&
924508f0 3784 !(gimme == G_SCALAR ? SvTRUE(*SP) : SP > newsp))
54310121 3785 {
1ce6579f 3786 /* Unassume the success we assumed earlier. */
901017d6 3787 SV * const nsv = cx->blk_eval.old_namesv;
b15aece3 3788 (void)hv_delete(GvHVn(PL_incgv), SvPVX_const(nsv), SvCUR(nsv), G_DISCARD);
be2597df 3789 retop = Perl_die(aTHX_ "%"SVf" did not return a true value", SVfARG(nsv));
f46d017c
GS
3790 /* die_where() did LEAVE, or we won't be here */
3791 }
3792 else {
3793 LEAVE;
8433848b 3794 if (!(save_flags & OPf_SPECIAL)) {
ab69dbc2 3795 CLEAR_ERRSV();
8433848b 3796 }
a0d0e21e 3797 }
a0d0e21e
LW
3798
3799 RETURNOP(retop);
3800}
3801
edb2152a
NC
3802/* Common code for Perl_call_sv and Perl_fold_constants, put here to keep it
3803 close to the related Perl_create_eval_scope. */
3804void
3805Perl_delete_eval_scope(pTHX)
a0d0e21e 3806{
edb2152a
NC
3807 SV **newsp;
3808 PMOP *newpm;
3809 I32 gimme;
c09156bb 3810 register PERL_CONTEXT *cx;
edb2152a
NC
3811 I32 optype;
3812
3813 POPBLOCK(cx,newpm);
3814 POPEVAL(cx);
3815 PL_curpm = newpm;
3816 LEAVE;
3817 PERL_UNUSED_VAR(newsp);
3818 PERL_UNUSED_VAR(gimme);
3819 PERL_UNUSED_VAR(optype);
3820}
a0d0e21e 3821
edb2152a
NC
3822/* Common-ish code salvaged from Perl_call_sv and pp_entertry, because it was
3823 also needed by Perl_fold_constants. */
3824PERL_CONTEXT *
3825Perl_create_eval_scope(pTHX_ U32 flags)
3826{
3827 PERL_CONTEXT *cx;
3828 const I32 gimme = GIMME_V;
3829
a0d0e21e
LW
3830 ENTER;
3831 SAVETMPS;
3832
edb2152a 3833 PUSHBLOCK(cx, (CXt_EVAL|CXp_TRYBLOCK), PL_stack_sp);
6b75f042 3834 PUSHEVAL(cx, 0);
a0d0e21e 3835
faef0170 3836 PL_in_eval = EVAL_INEVAL;
edb2152a
NC
3837 if (flags & G_KEEPERR)
3838 PL_in_eval |= EVAL_KEEPERR;
ab69dbc2
RGS
3839 else
3840 CLEAR_ERRSV();
edb2152a
NC
3841 if (flags & G_FAKINGEVAL) {
3842 PL_eval_root = PL_op; /* Only needed so that goto works right. */
3843 }
3844 return cx;
3845}
3846
3847PP(pp_entertry)
3848{
3849 dVAR;
df528165 3850 PERL_CONTEXT * const cx = create_eval_scope(0);
edb2152a 3851 cx->blk_eval.retop = cLOGOP->op_other->op_next;
533c011a 3852 return DOCATCH(PL_op->op_next);
a0d0e21e
LW
3853}
3854
3855PP(pp_leavetry)
3856{
27da23d5 3857 dVAR; dSP;
a0d0e21e
LW
3858 SV **newsp;
3859 PMOP *newpm;
3860 I32 gimme;
c09156bb 3861 register PERL_CONTEXT *cx;
a0d0e21e
LW
3862 I32 optype;
3863
3864 POPBLOCK(cx,newpm);
3865 POPEVAL(cx);
9d4ba2ae 3866 PERL_UNUSED_VAR(optype);
a0d0e21e 3867
a1f49e72 3868 TAINT_NOT;
54310121 3869 if (gimme == G_VOID)
3870 SP = newsp;
3871 else if (gimme == G_SCALAR) {
c445ea15 3872 register SV **mark;
54310121 3873 MARK = newsp + 1;
3874 if (MARK <= SP) {
3875 if (SvFLAGS(TOPs) & (SVs_PADTMP|SVs_TEMP))
3876 *MARK = TOPs;
3877 else
3878 *MARK = sv_mortalcopy(TOPs);
3879 }
a0d0e21e 3880 else {
54310121 3881 MEXTEND(mark,0);
3280af22 3882 *MARK = &PL_sv_undef;
a0d0e21e
LW
3883 }
3884 SP = MARK;
3885 }
3886 else {
a1f49e72 3887 /* in case LEAVE wipes old return values */
c445ea15 3888 register SV **mark;
a1f49e72
CS
3889 for (mark = newsp + 1; mark <= SP; mark++) {
3890 if (!(SvFLAGS(*mark) & (SVs_PADTMP|SVs_TEMP))) {
a0d0e21e 3891 *mark = sv_mortalcopy(*mark);
a1f49e72
CS
3892 TAINT_NOT; /* Each item is independent */
3893 }
3894 }
a0d0e21e 3895 }
3280af22 3896 PL_curpm = newpm; /* Don't pop $1 et al till now */
a0d0e21e
LW
3897
3898 LEAVE;
ab69dbc2 3899 CLEAR_ERRSV();
745cf2ff 3900 RETURN;
a0d0e21e
LW
3901}
3902
0d863452
RH
3903PP(pp_entergiven)
3904{
3905 dVAR; dSP;
3906 register PERL_CONTEXT *cx;
3907 const I32 gimme = GIMME_V;
3908
3909 ENTER;
3910 SAVETMPS;
3911
bb74b0ee 3912 sv_setsv(PAD_SV(PL_op->op_targ), POPs);
0d863452
RH
3913
3914 PUSHBLOCK(cx, CXt_GIVEN, SP);
3915 PUSHGIVEN(cx);
3916
3917 RETURN;
3918}
3919
3920PP(pp_leavegiven)
3921{
3922 dVAR; dSP;
3923 register PERL_CONTEXT *cx;
3924 I32 gimme;
3925 SV **newsp;
3926 PMOP *newpm;
96a5add6 3927 PERL_UNUSED_CONTEXT;
0d863452
RH
3928
3929 POPBLOCK(cx,newpm);
3930 assert(CxTYPE(cx) == CXt_GIVEN);
0d863452
RH
3931
3932 SP = newsp;
3933 PUTBACK;
3934
3935 PL_curpm = newpm; /* pop $1 et al */
3936
3937 LEAVE;
3938
3939 return NORMAL;
3940}
3941
3942/* Helper routines used by pp_smartmatch */
4136a0f7 3943STATIC PMOP *
84679df5 3944S_make_matcher(pTHX_ REGEXP *re)
0d863452 3945{
97aff369 3946 dVAR;
0d863452 3947 PMOP *matcher = (PMOP *) newPMOP(OP_MATCH, OPf_WANT_SCALAR | OPf_STACKED);
7918f24d
NC
3948
3949 PERL_ARGS_ASSERT_MAKE_MATCHER;
3950
d6106309 3951 PM_SETRE(matcher, ReREFCNT_inc(re));
7918f24d 3952
0d863452
RH
3953 SAVEFREEOP((OP *) matcher);
3954 ENTER; SAVETMPS;
3955 SAVEOP();
3956 return matcher;
3957}
3958
4136a0f7 3959STATIC bool
0d863452
RH
3960S_matcher_matches_sv(pTHX_ PMOP *matcher, SV *sv)
3961{
97aff369 3962 dVAR;
0d863452 3963 dSP;
7918f24d
NC
3964
3965 PERL_ARGS_ASSERT_MATCHER_MATCHES_SV;
0d863452
RH
3966
3967 PL_op = (OP *) matcher;
3968 XPUSHs(sv);
3969 PUTBACK;
3970 (void) pp_match();
3971 SPAGAIN;
3972 return (SvTRUEx(POPs));
3973}
3974
4136a0f7 3975STATIC void
0d863452
RH
3976S_destroy_matcher(pTHX_ PMOP *matcher)
3977{
97aff369 3978 dVAR;
7918f24d
NC
3979
3980 PERL_ARGS_ASSERT_DESTROY_MATCHER;
0d863452 3981 PERL_UNUSED_ARG(matcher);
7918f24d 3982
0d863452
RH
3983 FREETMPS;
3984 LEAVE;
3985}
3986
3987/* Do a smart match */
3988PP(pp_smartmatch)
3989{
d7c0d282 3990 DEBUG_M(Perl_deb(aTHX_ "Starting smart match resolution\n"));
a0714e2c 3991 return do_smartmatch(NULL, NULL);
0d863452
RH
3992}
3993
4b021f5f
RGS
3994/* This version of do_smartmatch() implements the
3995 * table of smart matches that is found in perlsyn.
0d863452 3996 */
4136a0f7 3997STATIC OP *
0d863452
RH
3998S_do_smartmatch(pTHX_ HV *seen_this, HV *seen_other)
3999{
97aff369 4000 dVAR;
0d863452
RH
4001 dSP;
4002
41e726ac 4003 bool object_on_left = FALSE;
0d863452
RH
4004 SV *e = TOPs; /* e is for 'expression' */
4005 SV *d = TOPm1s; /* d is for 'default', as in PL_defgv */
a566f585 4006
2c9d2554 4007 /* First of all, handle overload magic of the rightmost argument */
6d743019 4008 if (SvAMAGIC(e)) {
d7c0d282
DM
4009 SV * tmpsv;
4010 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-Object\n"));
4011 DEBUG_M(Perl_deb(aTHX_ " attempting overload\n"));
4012
4013 tmpsv = amagic_call(d, e, smart_amg, 0);
7c41e62e
RGS
4014 if (tmpsv) {
4015 SPAGAIN;
4016 (void)POPs;
4017 SETs(tmpsv);
4018 RETURN;
4019 }
d7c0d282 4020 DEBUG_M(Perl_deb(aTHX_ " failed to run overload method; continuing...\n"));
7c41e62e 4021 }
62ec5f58 4022
0d863452
RH
4023 SP -= 2; /* Pop the values */
4024
4025 /* Take care only to invoke mg_get() once for each argument.
4026 * Currently we do this by copying the SV if it's magical. */
4027 if (d) {
4028 if (SvGMAGICAL(d))
4029 d = sv_mortalcopy(d);
4030 }
4031 else
4032 d = &PL_sv_undef;
4033
4034 assert(e);
4035 if (SvGMAGICAL(e))
4036 e = sv_mortalcopy(e);
4037
b0138e99 4038 /* ~~ undef */
62ec5f58 4039 if (!SvOK(e)) {
d7c0d282 4040 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-undef\n"));
62ec5f58 4041 if (SvOK(d))
33570f8b
RGS
4042 RETPUSHNO;
4043 else
62ec5f58 4044 RETPUSHYES;
33570f8b 4045 }
e67b97bd 4046
d7c0d282
DM
4047 if (sv_isobject(e) && (SvTYPE(SvRV(e)) != SVt_REGEXP)) {
4048 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-Object\n"));
62ec5f58 4049 Perl_croak(aTHX_ "Smart matching a non-overloaded object breaks encapsulation");
d7c0d282 4050 }
41e726ac
RGS
4051 if (sv_isobject(d) && (SvTYPE(SvRV(d)) != SVt_REGEXP))
4052 object_on_left = TRUE;
62ec5f58 4053
b0138e99 4054 /* ~~ sub */
a4a197da 4055 if (SvROK(e) && SvTYPE(SvRV(e)) == SVt_PVCV) {
0d863452 4056 I32 c;
41e726ac
RGS
4057 if (object_on_left) {
4058 goto sm_any_sub; /* Treat objects like scalars */
4059 }
4060 else if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVHV) {
a4a197da
RGS
4061 /* Test sub truth for each key */
4062 HE *he;
4063 bool andedresults = TRUE;
4064 HV *hv = (HV*) SvRV(d);
168ff818 4065 I32 numkeys = hv_iterinit(hv);
d7c0d282 4066 DEBUG_M(Perl_deb(aTHX_ " applying rule Hash-CodeRef\n"));
168ff818 4067 if (numkeys == 0)
07edf497 4068 RETPUSHYES;
a4a197da 4069 while ( (he = hv_iternext(hv)) ) {
d7c0d282 4070 DEBUG_M(Perl_deb(aTHX_ " testing hash key...\n"));
a4a197da
RGS
4071 ENTER;
4072 SAVETMPS;
4073 PUSHMARK(SP);
4074 PUSHs(hv_iterkeysv(he));
4075 PUTBACK;
4076 c = call_sv(e, G_SCALAR);
4077 SPAGAIN;
4078 if (c == 0)
4079 andedresults = FALSE;
4080 else
4081 andedresults = SvTRUEx(POPs) && andedresults;
4082 FREETMPS;
4083 LEAVE;
4084 }
4085 if (andedresults)
4086 RETPUSHYES;
4087 else
4088 RETPUSHNO;
4089 }
4090 else if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVAV) {
4091 /* Test sub truth for each element */
4092 I32 i;
4093 bool andedresults = TRUE;
4094 AV *av = (AV*) SvRV(d);
4095 const I32 len = av_len(av);
d7c0d282 4096 DEBUG_M(Perl_deb(aTHX_ " applying rule Array-CodeRef\n"));
168ff818 4097 if (len == -1)
07edf497 4098 RETPUSHYES;
a4a197da
RGS
4099 for (i = 0; i <= len; ++i) {
4100 SV * const * const svp = av_fetch(av, i, FALSE);
d7c0d282 4101 DEBUG_M(Perl_deb(aTHX_ " testing array element...\n"));
a4a197da
RGS
4102 ENTER;
4103 SAVETMPS;
4104 PUSHMARK(SP);
4105 if (svp)
4106 PUSHs(*svp);
4107 PUTBACK;
4108 c = call_sv(e, G_SCALAR);
4109 SPAGAIN;
4110 if (c == 0)
4111 andedresults = FALSE;
4112 else
4113 andedresults = SvTRUEx(POPs) && andedresults;
4114 FREETMPS;
4115 LEAVE;
4116 }
4117 if (andedresults)
4118 RETPUSHYES;
4119 else
4120 RETPUSHNO;
4121 }
4122 else {
41e726ac 4123 sm_any_sub:
d7c0d282 4124 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-CodeRef\n"));
a4a197da
RGS
4125 ENTER;
4126 SAVETMPS;
4127 PUSHMARK(SP);
4128 PUSHs(d);
4129 PUTBACK;
4130 c = call_sv(e, G_SCALAR);
4131 SPAGAIN;
4132 if (c == 0)
4133 PUSHs(&PL_sv_no);
4134 else if (SvTEMP(TOPs))
4135 SvREFCNT_inc_void(TOPs);
4136 FREETMPS;
4137 LEAVE;
4138 RETURN;
4139 }
0d863452 4140 }
b0138e99 4141 /* ~~ %hash */
61a621c6 4142 else if (SvROK(e) && SvTYPE(SvRV(e)) == SVt_PVHV) {
41e726ac
RGS
4143 if (object_on_left) {
4144 goto sm_any_hash; /* Treat objects like scalars */
4145 }
4146 else if (!SvOK(d)) {
d7c0d282 4147 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-Hash ($a undef)\n"));
61a621c6
RGS
4148 RETPUSHNO;
4149 }
4150 else if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVHV) {
0d863452
RH
4151 /* Check that the key-sets are identical */
4152 HE *he;
61a621c6 4153 HV *other_hv = MUTABLE_HV(SvRV(d));
0d863452
RH
4154 bool tied = FALSE;
4155 bool other_tied = FALSE;
4156 U32 this_key_count = 0,
4157 other_key_count = 0;
33ed63a2 4158 HV *hv = MUTABLE_HV(SvRV(e));
d7c0d282
DM
4159
4160 DEBUG_M(Perl_deb(aTHX_ " applying rule Hash-Hash\n"));
0d863452 4161 /* Tied hashes don't know how many keys they have. */
33ed63a2 4162 if (SvTIED_mg((SV*)hv, PERL_MAGIC_tied)) {
0d863452
RH
4163 tied = TRUE;
4164 }
ad64d0ec 4165 else if (SvTIED_mg((const SV *)other_hv, PERL_MAGIC_tied)) {
c445ea15 4166 HV * const temp = other_hv;
33ed63a2
RGS
4167 other_hv = hv;
4168 hv = temp;
0d863452
RH
4169 tied = TRUE;
4170 }
ad64d0ec 4171 if (SvTIED_mg((const SV *)other_hv, PERL_MAGIC_tied))
0d863452
RH
4172 other_tied = TRUE;
4173
33ed63a2 4174 if (!tied && HvUSEDKEYS((const HV *) hv) != HvUSEDKEYS(other_hv))
0d863452
RH
4175 RETPUSHNO;
4176
4177 /* The hashes have the same number of keys, so it suffices
4178 to check that one is a subset of the other. */
33ed63a2
RGS
4179 (void) hv_iterinit(hv);
4180 while ( (he = hv_iternext(hv)) ) {
b15feb55 4181 SV *key = hv_iterkeysv(he);
d7c0d282
DM
4182
4183 DEBUG_M(Perl_deb(aTHX_ " comparing hash key...\n"));
0d863452
RH
4184 ++ this_key_count;
4185
b15feb55 4186 if(!hv_exists_ent(other_hv, key, 0)) {
33ed63a2 4187 (void) hv_iterinit(hv); /* reset iterator */
0d863452
RH
4188 RETPUSHNO;
4189 }
4190 }
4191
4192 if (other_tied) {
4193 (void) hv_iterinit(other_hv);
4194 while ( hv_iternext(other_hv) )
4195 ++other_key_count;
4196 }
4197 else
4198 other_key_count = HvUSEDKEYS(other_hv);
4199
4200 if (this_key_count != other_key_count)
4201 RETPUSHNO;
4202 else
4203 RETPUSHYES;
4204 }
61a621c6
RGS
4205 else if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVAV) {
4206 AV * const other_av = MUTABLE_AV(SvRV(d));
c445ea15 4207 const I32 other_len = av_len(other_av) + 1;
0d863452 4208 I32 i;
33ed63a2 4209 HV *hv = MUTABLE_HV(SvRV(e));
71b0fb34 4210
d7c0d282 4211 DEBUG_M(Perl_deb(aTHX_ " applying rule Array-Hash\n"));
71b0fb34 4212 for (i = 0; i < other_len; ++i) {
c445ea15 4213 SV ** const svp = av_fetch(other_av, i, FALSE);
d7c0d282 4214 DEBUG_M(Perl_deb(aTHX_ " checking for key existence...\n"));
71b0fb34 4215 if (svp) { /* ??? When can this not happen? */
b15feb55 4216 if (hv_exists_ent(hv, *svp, 0))
71b0fb34
DK
4217 RETPUSHYES;
4218 }
0d863452 4219 }
71b0fb34 4220 RETPUSHNO;
0d863452 4221 }
a566f585 4222 else if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_REGEXP) {
d7c0d282 4223 DEBUG_M(Perl_deb(aTHX_ " applying rule Regex-Hash\n"));
ea0c2dbd
RGS
4224 sm_regex_hash:
4225 {
4226 PMOP * const matcher = make_matcher((REGEXP*) SvRV(d));
4227 HE *he;
4228 HV *hv = MUTABLE_HV(SvRV(e));
4229
4230 (void) hv_iterinit(hv);
4231 while ( (he = hv_iternext(hv)) ) {
d7c0d282 4232 DEBUG_M(Perl_deb(aTHX_ " testing key against pattern...\n"));
ea0c2dbd
RGS
4233 if (matcher_matches_sv(matcher, hv_iterkeysv(he))) {
4234 (void) hv_iterinit(hv);
4235 destroy_matcher(matcher);
4236 RETPUSHYES;
4237 }
0d863452 4238 }
ea0c2dbd
RGS
4239 destroy_matcher(matcher);
4240 RETPUSHNO;
0d863452 4241 }
0d863452
RH
4242 }
4243 else {
41e726ac 4244 sm_any_hash:
d7c0d282 4245 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-Hash\n"));
61a621c6 4246 if (hv_exists_ent(MUTABLE_HV(SvRV(e)), d, 0))
0d863452
RH
4247 RETPUSHYES;
4248 else
4249 RETPUSHNO;
4250 }
4251 }
b0138e99
RGS
4252 /* ~~ @array */
4253 else if (SvROK(e) && SvTYPE(SvRV(e)) == SVt_PVAV) {
41e726ac
RGS
4254 if (object_on_left) {
4255 goto sm_any_array; /* Treat objects like scalars */
4256 }
4257 else if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVHV) {
b0138e99
RGS
4258 AV * const other_av = MUTABLE_AV(SvRV(e));
4259 const I32 other_len = av_len(other_av) + 1;
4260 I32 i;
4261
d7c0d282 4262 DEBUG_M(Perl_deb(aTHX_ " applying rule Hash-Array\n"));
b0138e99
RGS
4263 for (i = 0; i < other_len; ++i) {
4264 SV ** const svp = av_fetch(other_av, i, FALSE);
d7c0d282
DM
4265
4266 DEBUG_M(Perl_deb(aTHX_ " testing for key existence...\n"));
b0138e99 4267 if (svp) { /* ??? When can this not happen? */
b15feb55 4268 if (hv_exists_ent(MUTABLE_HV(SvRV(d)), *svp, 0))
b0138e99
RGS
4269 RETPUSHYES;
4270 }
4271 }
4272 RETPUSHNO;
4273 }
4274 if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVAV) {
4275 AV *other_av = MUTABLE_AV(SvRV(d));
d7c0d282 4276 DEBUG_M(Perl_deb(aTHX_ " applying rule Array-Array\n"));
b0138e99 4277 if (av_len(MUTABLE_AV(SvRV(e))) != av_len(other_av))
0d863452
RH
4278 RETPUSHNO;
4279 else {
4280 I32 i;
c445ea15 4281 const I32 other_len = av_len(other_av);
0d863452 4282
a0714e2c 4283 if (NULL == seen_this) {
0d863452 4284 seen_this = newHV();
ad64d0ec 4285 (void) sv_2mortal(MUTABLE_SV(seen_this));
0d863452 4286 }
a0714e2c 4287 if (NULL == seen_other) {
0d863452 4288 seen_this = newHV();
ad64d0ec 4289 (void) sv_2mortal(MUTABLE_SV(seen_other));
0d863452
RH
4290 }
4291 for(i = 0; i <= other_len; ++i) {
b0138e99 4292 SV * const * const this_elem = av_fetch(MUTABLE_AV(SvRV(e)), i, FALSE);
c445ea15
AL
4293 SV * const * const other_elem = av_fetch(other_av, i, FALSE);
4294
0d863452
RH
4295 if (!this_elem || !other_elem) {
4296 if (this_elem || other_elem)
4297 RETPUSHNO;
4298 }
365c4e3d
RGS
4299 else if (hv_exists_ent(seen_this,
4300 sv_2mortal(newSViv(PTR2IV(*this_elem))), 0) ||
4301 hv_exists_ent(seen_other,
4302 sv_2mortal(newSViv(PTR2IV(*other_elem))), 0))
0d863452
RH
4303 {
4304 if (*this_elem != *other_elem)
4305 RETPUSHNO;
4306 }
4307 else {
04fe65b0
RGS
4308 (void)hv_store_ent(seen_this,
4309 sv_2mortal(newSViv(PTR2IV(*this_elem))),
4310 &PL_sv_undef, 0);
4311 (void)hv_store_ent(seen_other,
4312 sv_2mortal(newSViv(PTR2IV(*other_elem))),
4313 &PL_sv_undef, 0);
0d863452 4314 PUSHs(*other_elem);
a566f585 4315 PUSHs(*this_elem);
0d863452
RH
4316
4317 PUTBACK;
d7c0d282 4318 DEBUG_M(Perl_deb(aTHX_ " recursively comparing array element...\n"));
0d863452
RH
4319 (void) do_smartmatch(seen_this, seen_other);
4320 SPAGAIN;
d7c0d282 4321 DEBUG_M(Perl_deb(aTHX_ " recursion finished\n"));
0d863452
RH
4322
4323 if (!SvTRUEx(POPs))
4324 RETPUSHNO;
4325 }
4326 }
4327 RETPUSHYES;
4328 }
4329 }
a566f585 4330 else if (SvROK(d) && SvTYPE(SvRV(d)) == SVt_REGEXP) {
d7c0d282 4331 DEBUG_M(Perl_deb(aTHX_ " applying rule Regex-Array\n"));
ea0c2dbd
RGS
4332 sm_regex_array:
4333 {
4334 PMOP * const matcher = make_matcher((REGEXP*) SvRV(d));
4335 const I32 this_len = av_len(MUTABLE_AV(SvRV(e)));
4336 I32 i;
0d863452 4337
ea0c2dbd
RGS
4338 for(i = 0; i <= this_len; ++i) {
4339 SV * const * const svp = av_fetch(MUTABLE_AV(SvRV(e)), i, FALSE);
d7c0d282 4340 DEBUG_M(Perl_deb(aTHX_ " testing element against pattern...\n"));
ea0c2dbd
RGS
4341 if (svp && matcher_matches_sv(matcher, *svp)) {
4342 destroy_matcher(matcher);
4343 RETPUSHYES;
4344 }
0d863452 4345 }
ea0c2dbd
RGS
4346 destroy_matcher(matcher);
4347 RETPUSHNO;
0d863452 4348 }
0d863452 4349 }
015eb7b9
RGS
4350 else if (!SvOK(d)) {
4351 /* undef ~~ array */
4352 const I32 this_len = av_len(MUTABLE_AV(SvRV(e)));
0d863452
RH
4353 I32 i;
4354
d7c0d282 4355 DEBUG_M(Perl_deb(aTHX_ " applying rule Undef-Array\n"));
015eb7b9 4356 for (i = 0; i <= this_len; ++i) {
b0138e99 4357 SV * const * const svp = av_fetch(MUTABLE_AV(SvRV(e)), i, FALSE);
d7c0d282 4358 DEBUG_M(Perl_deb(aTHX_ " testing for undef element...\n"));
015eb7b9 4359 if (!svp || !SvOK(*svp))
0d863452
RH
4360 RETPUSHYES;
4361 }
4362 RETPUSHNO;
4363 }
015eb7b9 4364 else {
41e726ac
RGS
4365 sm_any_array:
4366 {
4367 I32 i;
4368 const I32 this_len = av_len(MUTABLE_AV(SvRV(e)));
0d863452 4369
d7c0d282 4370 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-Array\n"));
41e726ac
RGS
4371 for (i = 0; i <= this_len; ++i) {
4372 SV * const * const svp = av_fetch(MUTABLE_AV(SvRV(e)), i, FALSE);
4373 if (!svp)
4374 continue;
015eb7b9 4375
41e726ac
RGS
4376 PUSHs(d);
4377 PUSHs(*svp);
4378 PUTBACK;
4379 /* infinite recursion isn't supposed to happen here */
d7c0d282 4380 DEBUG_M(Perl_deb(aTHX_ " recursively testing array element...\n"));
41e726ac
RGS
4381 (void) do_smartmatch(NULL, NULL);
4382 SPAGAIN;
d7c0d282 4383 DEBUG_M(Perl_deb(aTHX_ " recursion finished\n"));
41e726ac
RGS
4384 if (SvTRUEx(POPs))
4385 RETPUSHYES;
4386 }
4387 RETPUSHNO;
0d863452 4388 }
0d863452
RH
4389 }
4390 }
b0138e99 4391 /* ~~ qr// */
a566f585 4392 else if (SvROK(e) && SvTYPE(SvRV(e)) == SVt_REGEXP) {
ea0c2dbd
RGS
4393 if (!object_on_left && SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVHV) {
4394 SV *t = d; d = e; e = t;
d7c0d282 4395 DEBUG_M(Perl_deb(aTHX_ " applying rule Hash-Regex\n"));
ea0c2dbd
RGS
4396 goto sm_regex_hash;
4397 }
4398 else if (!object_on_left && SvROK(d) && SvTYPE(SvRV(d)) == SVt_PVAV) {
4399 SV *t = d; d = e; e = t;
d7c0d282 4400 DEBUG_M(Perl_deb(aTHX_ " applying rule Array-Regex\n"));
ea0c2dbd
RGS
4401 goto sm_regex_array;
4402 }
4403 else {
4404 PMOP * const matcher = make_matcher((REGEXP*) SvRV(e));
0d863452 4405
d7c0d282 4406 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-Regex\n"));
ea0c2dbd
RGS
4407 PUTBACK;
4408 PUSHs(matcher_matches_sv(matcher, d)
4409 ? &PL_sv_yes
4410 : &PL_sv_no);
4411 destroy_matcher(matcher);
4412 RETURN;
4413 }
0d863452 4414 }
b0138e99 4415 /* ~~ scalar */
2c9d2554
RGS
4416 /* See if there is overload magic on left */
4417 else if (object_on_left && SvAMAGIC(d)) {
4418 SV *tmpsv;
d7c0d282
DM
4419 DEBUG_M(Perl_deb(aTHX_ " applying rule Object-Any\n"));
4420 DEBUG_M(Perl_deb(aTHX_ " attempting overload\n"));
2c9d2554
RGS
4421 PUSHs(d); PUSHs(e);
4422 PUTBACK;
4423 tmpsv = amagic_call(d, e, smart_amg, AMGf_noright);
4424 if (tmpsv) {
4425 SPAGAIN;
4426 (void)POPs;
4427 SETs(tmpsv);
4428 RETURN;
4429 }
4430 SP -= 2;
d7c0d282 4431 DEBUG_M(Perl_deb(aTHX_ " failed to run overload method; falling back...\n"));
2c9d2554
RGS
4432 goto sm_any_scalar;
4433 }
fb51372e
RGS
4434 else if (!SvOK(d)) {
4435 /* undef ~~ scalar ; we already know that the scalar is SvOK */
d7c0d282 4436 DEBUG_M(Perl_deb(aTHX_ " applying rule undef-Any\n"));
fb51372e
RGS
4437 RETPUSHNO;
4438 }
2c9d2554
RGS
4439 else
4440 sm_any_scalar:
4441 if (SvNIOK(e) || (SvPOK(e) && looks_like_number(e) && SvNIOK(d))) {
d7c0d282
DM
4442 DEBUG_M(if (SvNIOK(e))
4443 Perl_deb(aTHX_ " applying rule Any-Num\n");
4444 else
4445 Perl_deb(aTHX_ " applying rule Num-numish\n");
4446 );
33ed63a2 4447 /* numeric comparison */
0d863452
RH
4448 PUSHs(d); PUSHs(e);
4449 PUTBACK;
a98fe34d 4450 if (CopHINTS_get(PL_curcop) & HINT_INTEGER)
0d863452
RH
4451 (void) pp_i_eq();
4452 else
4453 (void) pp_eq();
4454 SPAGAIN;
4455 if (SvTRUEx(POPs))
4456 RETPUSHYES;
4457 else
4458 RETPUSHNO;
4459 }
4460
4461 /* As a last resort, use string comparison */
d7c0d282 4462 DEBUG_M(Perl_deb(aTHX_ " applying rule Any-Any\n"));
0d863452
RH
4463 PUSHs(d); PUSHs(e);
4464 PUTBACK;
4465 return pp_seq();
4466}
4467
4468PP(pp_enterwhen)
4469{
4470 dVAR; dSP;
4471 register PERL_CONTEXT *cx;
4472 const I32 gimme = GIMME_V;
4473
4474 /* This is essentially an optimization: if the match
4475 fails, we don't want to push a context and then
4476 pop it again right away, so we skip straight
4477 to the op that follows the leavewhen.
4478 */
4479 if ((0 == (PL_op->op_flags & OPf_SPECIAL)) && !SvTRUEx(POPs))
4480 return cLOGOP->op_other->op_next;
4481
4482 ENTER;
4483 SAVETMPS;
4484
4485 PUSHBLOCK(cx, CXt_WHEN, SP);
4486 PUSHWHEN(cx);
4487
4488 RETURN;
4489}
4490
4491PP(pp_leavewhen)
4492{
4493 dVAR; dSP;
4494 register PERL_CONTEXT *cx;
4495 I32 gimme;
4496 SV **newsp;
4497 PMOP *newpm;
4498
4499 POPBLOCK(cx,newpm);
4500 assert(CxTYPE(cx) == CXt_WHEN);
4501
4502 SP = newsp;
4503 PUTBACK;
4504
4505 PL_curpm = newpm; /* pop $1 et al */
4506
4507 LEAVE;
4508 return NORMAL;
4509}
4510
4511PP(pp_continue)
4512{
4513 dVAR;
4514 I32 cxix;
4515 register PERL_CONTEXT *cx;
4516 I32 inner;
4517
4518 cxix = dopoptowhen(cxstack_ix);
4519 if (cxix < 0)
4520 DIE(aTHX_ "Can't \"continue\" outside a when block");
4521 if (cxix < cxstack_ix)
4522 dounwind(cxix);
4523
4524 /* clear off anything above the scope we're re-entering */
4525 inner = PL_scopestack_ix;
4526 TOPBLOCK(cx);
4527 if (PL_scopestack_ix < inner)
4528 leave_scope(PL_scopestack[PL_scopestack_ix]);
4529 PL_curcop = cx->blk_oldcop;
4530 return cx->blk_givwhen.leave_op;
4531}
4532
4533PP(pp_break)
4534{
4535 dVAR;
4536 I32 cxix;
4537 register PERL_CONTEXT *cx;
4538 I32 inner;
4539
4540 cxix = dopoptogiven(cxstack_ix);
4541 if (cxix < 0) {
4542 if (PL_op->op_flags & OPf_SPECIAL)
4543 DIE(aTHX_ "Can't use when() outside a topicalizer");
4544 else
4545 DIE(aTHX_ "Can't \"break\" outside a given block");
4546 }
4547 if (CxFOREACH(&cxstack[cxix]) && (0 == (PL_op->op_flags & OPf_SPECIAL)))
4548 DIE(aTHX_ "Can't \"break\" in a loop topicalizer");
4549
4550 if (cxix < cxstack_ix)
4551 dounwind(cxix);
4552
4553 /* clear off anything above the scope we're re-entering */
4554 inner = PL_scopestack_ix;
4555 TOPBLOCK(cx);
4556 if (PL_scopestack_ix < inner)
4557 leave_scope(PL_scopestack[PL_scopestack_ix]);
4558 PL_curcop = cx->blk_oldcop;
4559
4560 if (CxFOREACH(cx))
022eaa24 4561 return CX_LOOP_NEXTOP_GET(cx);
0d863452
RH
4562 else
4563 return cx->blk_givwhen.leave_op;
4564}
4565
a1b95068 4566STATIC OP *
cea2e8a9 4567S_doparseform(pTHX_ SV *sv)
a0d0e21e
LW
4568{
4569 STRLEN len;
4570 register char *s = SvPV_force(sv, len);
c445ea15
AL
4571 register char * const send = s + len;
4572 register char *base = NULL;
a0d0e21e 4573 register I32 skipspaces = 0;
9c5ffd7c
JH
4574 bool noblank = FALSE;
4575 bool repeat = FALSE;
a0d0e21e 4576 bool postspace = FALSE;
dea28490
JJ
4577 U32 *fops;
4578 register U32 *fpc;
cbbf8932 4579 U32 *linepc = NULL;
a0d0e21e
LW
4580 register I32 arg;
4581 bool ischop;
a1b95068
WL
4582 bool unchopnum = FALSE;
4583 int maxops = 12; /* FF_LINEMARK + FF_END + 10 (\0 without preceding \n) */
a0d0e21e 4584
7918f24d
NC
4585 PERL_ARGS_ASSERT_DOPARSEFORM;
4586
55497cff 4587 if (len == 0)
cea2e8a9 4588 Perl_croak(aTHX_ "Null picture in formline");
ac27b0f5 4589
815f25c6
DM
4590 /* estimate the buffer size needed */
4591 for (base = s; s <= send; s++) {
a1b95068 4592 if (*s == '\n' || *s == '@' || *s == '^')
815f25c6
DM
4593 maxops += 10;
4594 }
4595 s = base;
c445ea15 4596 base = NULL;
815f25c6 4597
a02a5408 4598 Newx(fops, maxops, U32);
a0d0e21e
LW
4599 fpc = fops;
4600
4601 if (s < send) {
4602 linepc = fpc;
4603 *fpc++ = FF_LINEMARK;
4604 noblank = repeat = FALSE;
4605 base = s;
4606 }
4607
4608 while (s <= send) {
4609 switch (*s++) {
4610 default:
4611 skipspaces = 0;
4612 continue;
4613
4614 case '~':
4615 if (*s == '~') {
4616 repeat = TRUE;
4617 *s = ' ';
4618 }
4619 noblank = TRUE;
4620 s[-1] = ' ';
4621 /* FALL THROUGH */
4622 case ' ': case '\t':
4623 skipspaces++;
4624 continue;
a1b95068
WL
4625 case 0:
4626 if (s < send) {
4627 skipspaces = 0;
4628 continue;
4629 } /* else FALL THROUGH */
4630 case '\n':
a0d0e21e
LW
4631 arg = s - base;
4632 skipspaces++;
4633 arg -= skipspaces;
4634 if (arg) {
5f05dabc 4635 if (postspace)
a0d0e21e 4636 *fpc++ = FF_SPACE;
a0d0e21e 4637 *fpc++ = FF_LITERAL;
eb160463 4638 *fpc++ = (U16)arg;
a0d0e21e 4639 }
5f05dabc 4640 postspace = FALSE;
a0d0e21e
LW
4641 if (s <= send)
4642 skipspaces--;
4643 if (skipspaces) {
4644 *fpc++ = FF_SKIP;
eb160463 4645 *fpc++ = (U16)skipspaces;
a0d0e21e
LW
4646 }
4647 skipspaces = 0;
4648 if (s <= send)
4649 *fpc++ = FF_NEWLINE;
4650 if (noblank) {
4651 *fpc++ = FF_BLANK;
4652 if (repeat)
4653 arg = fpc - linepc + 1;
4654 else
4655 arg = 0;
eb160463 4656 *fpc++ = (U16)arg;
a0d0e21e
LW
4657 }
4658 if (s < send) {
4659 linepc = fpc;
4660 *fpc++ = FF_LINEMARK;
4661 noblank = repeat = FALSE;
4662 base = s;
4663 }
4664 else
4665 s++;
4666 continue;
4667
4668 case '@':
4669 case '^':
4670 ischop = s[-1] == '^';
4671
4672 if (postspace) {
4673 *fpc++ = FF_SPACE;
4674 postspace = FALSE;
4675 }
4676 arg = (s - base) - 1;
4677 if (arg) {
4678 *fpc++ = FF_LITERAL;
eb160463 4679 *fpc++ = (U16)arg;
a0d0e21e
LW
4680 }
4681
4682 base = s - 1;
4683 *fpc++ = FF_FETCH;
4684 if (*s == '*') {
4685 s++;
a1b95068
WL
4686 *fpc++ = 2; /* skip the @* or ^* */
4687 if (ischop) {
4688 *fpc++ = FF_LINESNGL;
4689 *fpc++ = FF_CHOP;
4690 } else
4691 *fpc++ = FF_LINEGLOB;
a0d0e21e
LW
4692 }
4693 else if (*s == '#' || (*s == '.' && s[1] == '#')) {
4694 arg = ischop ? 512 : 0;
4695 base = s - 1;
4696 while (*s == '#')
4697 s++;
4698 if (*s == '.') {
06b5626a 4699 const char * const f = ++s;
a0d0e21e
LW
4700 while (*s == '#')
4701 s++;
4702 arg |= 256 + (s - f);
4703 }
4704 *fpc++ = s - base; /* fieldsize for FETCH */
4705 *fpc++ = FF_DECIMAL;
eb160463 4706 *fpc++ = (U16)arg;
a1b95068 4707 unchopnum |= ! ischop;
784707d5
JP
4708 }
4709 else if (*s == '0' && s[1] == '#') { /* Zero padded decimals */
4710 arg = ischop ? 512 : 0;
4711 base = s - 1;
4712 s++; /* skip the '0' first */
4713 while (*s == '#')
4714 s++;
4715 if (*s == '.') {
06b5626a 4716 const char * const f = ++s;
784707d5
JP
4717 while (*s == '#')
4718 s++;
4719 arg |= 256 + (s - f);
4720 }
4721 *fpc++ = s - base; /* fieldsize for FETCH */
4722 *fpc++ = FF_0DECIMAL;
eb160463 4723 *fpc++ = (U16)arg;
a1b95068 4724 unchopnum |= ! ischop;
a0d0e21e
LW
4725 }
4726 else {
4727 I32 prespace = 0;
4728 bool ismore = FALSE;
4729
4730 if (*s == '>') {
4731 while (*++s == '>') ;
4732 prespace = FF_SPACE;
4733 }
4734 else if (*s == '|') {
4735 while (*++s == '|') ;
4736 prespace = FF_HALFSPACE;
4737 postspace = TRUE;
4738 }
4739 else {
4740 if (*s == '<')
4741 while (*++s == '<') ;
4742 postspace = TRUE;
4743 }
4744 if (*s == '.' && s[1] == '.' && s[2] == '.') {
4745 s += 3;
4746 ismore = TRUE;
4747 }
4748 *fpc++ = s - base; /* fieldsize for FETCH */
4749
4750 *fpc++ = ischop ? FF_CHECKCHOP : FF_CHECKNL;
4751
4752 if (prespace)
eb160463 4753 *fpc++ = (U16)prespace;
a0d0e21e
LW
4754 *fpc++ = FF_ITEM;
4755 if (ismore)
4756 *fpc++ = FF_MORE;
4757 if (ischop)
4758 *fpc++ = FF_CHOP;
4759 }
4760 base = s;
4761 skipspaces = 0;
4762 continue;
4763 }
4764 }
4765 *fpc++ = FF_END;
4766
815f25c6 4767 assert (fpc <= fops + maxops); /* ensure our buffer estimate was valid */
a0d0e21e
LW
4768 arg = fpc - fops;
4769 { /* need to jump to the next word */
4770 int z;
4771 z = WORD_ALIGN - SvCUR(sv) % WORD_ALIGN;
dea28490 4772 SvGROW(sv, SvCUR(sv) + z + arg * sizeof(U32) + 4);
a0d0e21e
LW
4773 s = SvPVX(sv) + SvCUR(sv) + z;
4774 }
dea28490 4775 Copy(fops, s, arg, U32);
a0d0e21e 4776 Safefree(fops);
c445ea15 4777 sv_magic(sv, NULL, PERL_MAGIC_fm, NULL, 0);
a0d0e21e 4778 SvCOMPILED_on(sv);
a1b95068 4779
bfed75c6 4780 if (unchopnum && repeat)
a1b95068
WL
4781 DIE(aTHX_ "Repeated format line will never terminate (~~ and @#)");
4782 return 0;
4783}
4784
4785
4786STATIC bool
4787S_num_overflow(NV value, I32 fldsize, I32 frcsize)
4788{
4789 /* Can value be printed in fldsize chars, using %*.*f ? */
4790 NV pwr = 1;
4791 NV eps = 0.5;
4792 bool res = FALSE;
4793 int intsize = fldsize - (value < 0 ? 1 : 0);
4794
4795 if (frcsize & 256)
4796 intsize--;
4797 frcsize &= 255;
4798 intsize -= frcsize;
4799
4800 while (intsize--) pwr *= 10.0;
4801 while (frcsize--) eps /= 10.0;
4802
4803 if( value >= 0 ){
4804 if (value + eps >= pwr)
4805 res = TRUE;
4806 } else {
4807 if (value - eps <= -pwr)
4808 res = TRUE;
4809 }
4810 return res;
a0d0e21e 4811}
4e35701f 4812
bbed91b5 4813static I32
0bd48802 4814S_run_user_filter(pTHX_ int idx, SV *buf_sv, int maxlen)
bbed91b5 4815{
27da23d5 4816 dVAR;
0bd48802 4817 SV * const datasv = FILTER_DATA(idx);
504618e9 4818 const int filter_has_file = IoLINES(datasv);
ad64d0ec
NC
4819 SV * const filter_state = MUTABLE_SV(IoTOP_GV(datasv));
4820 SV * const filter_sub = MUTABLE_SV(IoBOTTOM_GV(datasv));
941a98a0 4821 int status = 0;
ec0b63d7 4822 SV *upstream;
941a98a0 4823 STRLEN got_len;
95b63a38 4824 const char *got_p = NULL;
941a98a0 4825 const char *prune_from = NULL;
34113e50 4826 bool read_from_cache = FALSE;
bb7a0f54
MHM
4827 STRLEN umaxlen;
4828
7918f24d
NC
4829 PERL_ARGS_ASSERT_RUN_USER_FILTER;
4830
bb7a0f54
MHM
4831 assert(maxlen >= 0);
4832 umaxlen = maxlen;
5675696b 4833
bbed91b5
KF
4834 /* I was having segfault trouble under Linux 2.2.5 after a
4835 parse error occured. (Had to hack around it with a test
13765c85 4836 for PL_parser->error_count == 0.) Solaris doesn't segfault --
bbed91b5
KF
4837 not sure where the trouble is yet. XXX */
4838
941a98a0 4839 if (IoFMT_GV(datasv)) {
ad64d0ec 4840 SV *const cache = MUTABLE_SV(IoFMT_GV(datasv));
937b367d
NC
4841 if (SvOK(cache)) {
4842 STRLEN cache_len;
4843 const char *cache_p = SvPV(cache, cache_len);
941a98a0
NC
4844 STRLEN take = 0;
4845
bb7a0f54 4846 if (umaxlen) {
941a98a0
NC
4847 /* Running in block mode and we have some cached data already.
4848 */
bb7a0f54 4849 if (cache_len >= umaxlen) {
941a98a0
NC
4850 /* In fact, so much data we don't even need to call
4851 filter_read. */
bb7a0f54 4852 take = umaxlen;
941a98a0
NC
4853 }
4854 } else {
10edeb5d
JH
4855 const char *const first_nl =
4856 (const char *)memchr(cache_p, '\n', cache_len);
941a98a0
NC
4857 if (first_nl) {
4858 take = first_nl + 1 - cache_p;
4859 }
4860 }
4861 if (take) {
4862 sv_catpvn(buf_sv, cache_p, take);
4863 sv_chop(cache, cache_p + take);
937b367d
NC
4864 /* Definately not EOF */
4865 return 1;
4866 }
941a98a0 4867
937b367d 4868 sv_catsv(buf_sv, cache);
bb7a0f54
MHM
4869 if (umaxlen) {
4870 umaxlen -= cache_len;
941a98a0 4871 }
937b367d 4872 SvOK_off(cache);
34113e50 4873 read_from_cache = TRUE;
937b367d
NC
4874 }
4875 }
ec0b63d7 4876
34113e50
NC
4877 /* Filter API says that the filter appends to the contents of the buffer.
4878 Usually the buffer is "", so the details don't matter. But if it's not,
4879 then clearly what it contains is already filtered by this filter, so we
4880 don't want to pass it in a second time.
4881 I'm going to use a mortal in case the upstream filter croaks. */
ec0b63d7
NC
4882 upstream = ((SvOK(buf_sv) && sv_len(buf_sv)) || SvGMAGICAL(buf_sv))
4883 ? sv_newmortal() : buf_sv;
4884 SvUPGRADE(upstream, SVt_PV);
937b367d 4885
bbed91b5 4886 if (filter_has_file) {
67e70b33 4887 status = FILTER_READ(idx+1, upstream, 0);
bbed91b5
KF
4888 }
4889
34113e50 4890 if (filter_sub && status >= 0) {
39644a26 4891 dSP;
bbed91b5
KF
4892 int count;
4893
4894 ENTER;
4895 SAVE_DEFSV;
4896 SAVETMPS;
4897 EXTEND(SP, 2);
4898
414bf5ae 4899 DEFSV_set(upstream);
bbed91b5 4900 PUSHMARK(SP);
6e449a3a 4901 mPUSHi(0);
bbed91b5
KF
4902 if (filter_state) {
4903 PUSHs(filter_state);
4904 }
4905 PUTBACK;
4906 count = call_sv(filter_sub, G_SCALAR);
4907 SPAGAIN;
4908
4909 if (count > 0) {
4910 SV *out = POPs;
4911 if (SvOK(out)) {
941a98a0 4912 status = SvIV(out);
bbed91b5
KF
4913 }
4914 }
4915
4916 PUTBACK;
4917 FREETMPS;
4918 LEAVE;
4919 }
4920
941a98a0
NC
4921 if(SvOK(upstream)) {
4922 got_p = SvPV(upstream, got_len);
bb7a0f54
MHM
4923 if (umaxlen) {
4924 if (got_len > umaxlen) {
4925 prune_from = got_p + umaxlen;
937b367d 4926 }
941a98a0 4927 } else {
10edeb5d
JH
4928 const char *const first_nl =
4929 (const char *)memchr(got_p, '\n', got_len);
941a98a0
NC
4930 if (first_nl && first_nl + 1 < got_p + got_len) {
4931 /* There's a second line here... */
4932 prune_from = first_nl + 1;
937b367d 4933 }
937b367d
NC
4934 }
4935 }
941a98a0
NC
4936 if (prune_from) {
4937 /* Oh. Too long. Stuff some in our cache. */
4938 STRLEN cached_len = got_p + got_len - prune_from;
ad64d0ec 4939 SV *cache = MUTABLE_SV(IoFMT_GV(datasv));
941a98a0
NC
4940
4941 if (!cache) {
159b6efe 4942 IoFMT_GV(datasv) = MUTABLE_GV((cache = newSV(got_len - umaxlen)));
941a98a0
NC
4943 } else if (SvOK(cache)) {
4944 /* Cache should be empty. */
4945 assert(!SvCUR(cache));
4946 }
4947
4948 sv_setpvn(cache, prune_from, cached_len);
4949 /* If you ask for block mode, you may well split UTF-8 characters.
4950 "If it breaks, you get to keep both parts"
4951 (Your code is broken if you don't put them back together again
4952 before something notices.) */
4953 if (SvUTF8(upstream)) {
4954 SvUTF8_on(cache);
4955 }
4956 SvCUR_set(upstream, got_len - cached_len);
4957 /* Can't yet be EOF */
4958 if (status == 0)
4959 status = 1;
4960 }
937b367d 4961
34113e50
NC
4962 /* If they are at EOF but buf_sv has something in it, then they may never
4963 have touched the SV upstream, so it may be undefined. If we naively
4964 concatenate it then we get a warning about use of uninitialised value.
4965 */
4966 if (upstream != buf_sv && (SvOK(upstream) || SvGMAGICAL(upstream))) {
937b367d
NC
4967 sv_catsv(buf_sv, upstream);
4968 }
4969
941a98a0 4970 if (status <= 0) {
bbed91b5 4971 IoLINES(datasv) = 0;
937b367d 4972 SvREFCNT_dec(IoFMT_GV(datasv));
bbed91b5
KF
4973 if (filter_state) {
4974 SvREFCNT_dec(filter_state);
a0714e2c 4975 IoTOP_GV(datasv) = NULL;
bbed91b5
KF
4976 }
4977 if (filter_sub) {
4978 SvREFCNT_dec(filter_sub);
a0714e2c 4979 IoBOTTOM_GV(datasv) = NULL;
bbed91b5 4980 }
0bd48802 4981 filter_del(S_run_user_filter);
bbed91b5 4982 }
34113e50
NC
4983 if (status == 0 && read_from_cache) {
4984 /* If we read some data from the cache (and by getting here it implies
4985 that we emptied the cache) then we aren't yet at EOF, and mustn't
4986 report that to our caller. */
4987 return 1;
4988 }
941a98a0 4989 return status;
bbed91b5 4990}
84d4ea48 4991
be4b629d
CN
4992/* perhaps someone can come up with a better name for
4993 this? it is not really "absolute", per se ... */
cf42f822 4994static bool
5f66b61c 4995S_path_is_absolute(const char *name)
be4b629d 4996{
7918f24d
NC
4997 PERL_ARGS_ASSERT_PATH_IS_ABSOLUTE;
4998
be4b629d 4999 if (PERL_FILE_IS_ABSOLUTE(name)
3f66cd94 5000#ifdef WIN32
36f064bc
CL
5001 || (*name == '.' && ((name[1] == '/' ||
5002 (name[1] == '.' && name[2] == '/'))
5003 || (name[1] == '\\' ||
5004 ( name[1] == '.' && name[2] == '\\')))
5005 )
5006#else
be4b629d 5007 || (*name == '.' && (name[1] == '/' ||
0bd48802 5008 (name[1] == '.' && name[2] == '/')))
36f064bc 5009#endif
0bd48802 5010 )
be4b629d
CN
5011 {
5012 return TRUE;
5013 }
5014 else
5015 return FALSE;
5016}
241d1a3b
NC
5017
5018/*
5019 * Local variables:
5020 * c-indentation-style: bsd
5021 * c-basic-offset: 4
5022 * indent-tabs-mode: t
5023 * End:
5024 *
37442d52
RGS
5025 * ex: set ts=8 sts=4 sw=4 noet:
5026 */